
    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_67d3c13de95985da986250bc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_001885fb02d0eeae01d0a70d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.219727;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_a28a45ee45ff8dd31b612963.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_35922893743f013aee80b0fd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_33e9dbf9307d9c1d6e451d65.woff')format("woff");}.ff5{font-family:ff5;line-height:1.157715;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_50d6111087f82bde9a4bb395.woff')format("woff");}.ff6{font-family:ff6;line-height:1.105957;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_2744018ec7c06c9845640005.woff')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.947200px;}
.ls3b{letter-spacing:-19.389000px;}
.ls45{letter-spacing:-5.100000px;}
.ls19{letter-spacing:-4.209000px;}
.ls1a{letter-spacing:-3.864000px;}
.lsf{letter-spacing:-3.243000px;}
.ls10{letter-spacing:-3.174000px;}
.lse{letter-spacing:-2.898000px;}
.ls43{letter-spacing:-2.520000px;}
.ls12{letter-spacing:-2.484000px;}
.ls38{letter-spacing:-2.415000px;}
.ls47{letter-spacing:-2.340000px;}
.ls18{letter-spacing:-2.001000px;}
.ls48{letter-spacing:-1.740000px;}
.ls14{letter-spacing:-1.656000px;}
.ls1e{letter-spacing:-1.449000px;}
.ls49{letter-spacing:-1.380000px;}
.ls46{letter-spacing:-1.200000px;}
.ls4{letter-spacing:-1.176000px;}
.ls20{letter-spacing:-1.173000px;}
.ls21{letter-spacing:-0.828000px;}
.ls3a{letter-spacing:-0.690000px;}
.ls3{letter-spacing:-0.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.276000px;}
.ls36{letter-spacing:0.296700px;}
.ls33{letter-spacing:0.317400px;}
.ls32{letter-spacing:0.338100px;}
.ls29{letter-spacing:0.345000px;}
.ls2a{letter-spacing:0.414000px;}
.ls3e{letter-spacing:0.567000px;}
.ls35{letter-spacing:1.035000px;}
.ls1d{letter-spacing:1.173000px;}
.ls3d{letter-spacing:1.701000px;}
.ls2e{letter-spacing:1.863000px;}
.ls42{letter-spacing:2.331000px;}
.ls9{letter-spacing:2.400000px;}
.ls13{letter-spacing:2.484000px;}
.ls2c{letter-spacing:2.967000px;}
.lsa{letter-spacing:3.300000px;}
.ls23{letter-spacing:3.429300px;}
.ls22{letter-spacing:3.657000px;}
.ls44{letter-spacing:3.840000px;}
.ls6{letter-spacing:4.200000px;}
.ls3f{letter-spacing:4.888800px;}
.ls2d{letter-spacing:4.899000px;}
.ls31{letter-spacing:4.950000px;}
.ls26{letter-spacing:5.382000px;}
.ls2b{letter-spacing:5.400000px;}
.ls1f{letter-spacing:5.589000px;}
.ls7{letter-spacing:5.760000px;}
.ls5{letter-spacing:5.880000px;}
.ls1{letter-spacing:6.000000px;}
.ls8{letter-spacing:6.300000px;}
.ls17{letter-spacing:6.561900px;}
.ls11{letter-spacing:6.693000px;}
.ls2f{letter-spacing:7.107000px;}
.ls28{letter-spacing:7.383000px;}
.ls24{letter-spacing:8.142000px;}
.ls25{letter-spacing:8.169600px;}
.ls2{letter-spacing:8.400000px;}
.ls30{letter-spacing:8.763000px;}
.ls40{letter-spacing:8.946000px;}
.ls37{letter-spacing:9.177000px;}
.ls15{letter-spacing:9.377100px;}
.ls27{letter-spacing:9.660000px;}
.lsc{letter-spacing:11.247000px;}
.ls39{letter-spacing:11.316000px;}
.ls16{letter-spacing:15.249000px;}
.ls3c{letter-spacing:16.317000px;}
.ls1c{letter-spacing:18.002100px;}
.ls1b{letter-spacing:18.009000px;}
.lsd{letter-spacing:20.451600px;}
.ls41{letter-spacing:25.767000px;}
.lsb{letter-spacing:35.535000px;}
.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;}
}
.ws1a{word-spacing:-26.475000px;}
.ws1d{word-spacing:-26.025000px;}
.ws8{word-spacing:-24.375000px;}
.ws28{word-spacing:-24.003000px;}
.ws2d{word-spacing:-22.860000px;}
.ws1{word-spacing:-22.740000px;}
.ws2{word-spacing:-22.620000px;}
.ws0{word-spacing:-22.428000px;}
.ws24{word-spacing:-19.404000px;}
.wsb{word-spacing:-19.389000px;}
.ws9{word-spacing:-18.102000px;}
.ws29{word-spacing:-17.703000px;}
.ws1e{word-spacing:-17.388000px;}
.wsc{word-spacing:-17.043000px;}
.ws30{word-spacing:-16.860000px;}
.ws22{word-spacing:-16.353000px;}
.ws17{word-spacing:-15.594000px;}
.ws25{word-spacing:-15.561000px;}
.ws10{word-spacing:-15.387000px;}
.ws14{word-spacing:-15.042000px;}
.ws2f{word-spacing:-14.820000px;}
.ws1f{word-spacing:-14.628000px;}
.wsd{word-spacing:-14.145000px;}
.wse{word-spacing:-13.800000px;}
.ws32{word-spacing:-13.440000px;}
.ws16{word-spacing:-13.179000px;}
.ws15{word-spacing:-12.834000px;}
.ws31{word-spacing:-12.480000px;}
.ws2e{word-spacing:-12.300000px;}
.ws5{word-spacing:-8.400000px;}
.ws26{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.ws7{word-spacing:-4.200000px;}
.ws21{word-spacing:-3.105000px;}
.ws13{word-spacing:-2.484000px;}
.wsa{word-spacing:-2.400000px;}
.ws2a{word-spacing:-2.331000px;}
.ws12{word-spacing:-2.139000px;}
.ws1b{word-spacing:-1.863000px;}
.ws27{word-spacing:-0.567000px;}
.ws20{word-spacing:-0.345000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.240000px;}
.ws19{word-spacing:0.828000px;}
.ws18{word-spacing:1.173000px;}
.ws34{word-spacing:1.200000px;}
.ws35{word-spacing:1.740000px;}
.ws1c{word-spacing:2.139000px;}
.ws11{word-spacing:2.484000px;}
.ws2b{word-spacing:2.520000px;}
.wsf{word-spacing:3.174000px;}
.ws33{word-spacing:5.100000px;}
.ws2c{word-spacing:15.057000px;}
.ws23{word-spacing:19.389000px;}
._2c{margin-left:-19.945500px;}
._23{margin-left:-17.081700px;}
._26{margin-left:-9.584100px;}
._25{margin-left:-8.487000px;}
._d{margin-left:-7.299600px;}
._c{margin-left:-6.194400px;}
._3{margin-left:-5.172300px;}
._4{margin-left:-3.880200px;}
._9{margin-left:-2.355000px;}
._6{margin-left:-1.203300px;}
._5{width:1.234800px;}
._1{width:2.400000px;}
._b{width:3.517200px;}
._7{width:5.295600px;}
._8{width:6.363600px;}
._a{width:7.605600px;}
._11{width:9.378000px;}
._18{width:10.853700px;}
._17{width:11.941200px;}
._19{width:13.147200px;}
._22{width:14.426700px;}
._1e{width:15.525000px;}
._13{width:16.765830px;}
._27{width:17.843400px;}
._30{width:18.996600px;}
._10{width:21.066900px;}
._f{width:22.068000px;}
._1d{width:23.377200px;}
._2a{width:24.743400px;}
._33{width:25.798200px;}
._2f{width:27.314400px;}
._28{width:28.773000px;}
._1b{width:31.184400px;}
._2e{width:33.024600px;}
._1c{width:35.562600px;}
._21{width:37.225500px;}
._16{width:38.688300px;}
._31{width:41.706000px;}
._12{width:43.445160px;}
._32{width:46.859400px;}
._1f{width:48.106800px;}
._15{width:85.554000px;}
._e{width:260.610000px;}
._2b{width:456.202200px;}
._2d{width:457.382400px;}
._20{width:458.497200px;}
._14{width:460.756800px;}
._0{width:578.400000px;}
._1a{width:956.206200px;}
._24{width:958.831200px;}
._29{width:962.881200px;}
._2{width:964.861200px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs6{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:62.964000px;}
.fs2{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y7e{bottom:106.165350px;}
.ye8{bottom:106.181850px;}
.y127{bottom:106.229100px;}
.y107{bottom:106.244850px;}
.ya4{bottom:106.268850px;}
.y3f{bottom:106.279650px;}
.y1d{bottom:106.293300px;}
.y56{bottom:109.145550px;}
.y146{bottom:120.154500px;}
.y1c{bottom:123.546300px;}
.y7d{bottom:126.589350px;}
.y126{bottom:126.641100px;}
.ya3{bottom:127.227600px;}
.ye7{bottom:127.649100px;}
.y3e{bottom:127.824900px;}
.y106{bottom:127.853850px;}
.y55{bottom:129.397050px;}
.y145{bottom:140.404500px;}
.y1b{bottom:143.794800px;}
.y7c{bottom:147.013350px;}
.y125{bottom:147.053100px;}
.ya2{bottom:148.186350px;}
.ye6{bottom:149.116350px;}
.y3d{bottom:149.370150px;}
.y54{bottom:149.648550px;}
.y105{bottom:157.967850px;}
.y144{bottom:160.654500px;}
.y7b{bottom:167.437350px;}
.ya1{bottom:169.145100px;}
.y53{bottom:169.900050px;}
.ye5{bottom:170.583600px;}
.y3c{bottom:170.915400px;}
.yc8{bottom:173.647350px;}
.y124{bottom:175.954350px;}
.y104{bottom:179.576850px;}
.y143{bottom:180.904500px;}
.y1a{bottom:187.829250px;}
.y7a{bottom:187.861350px;}
.ya0{bottom:190.103850px;}
.y52{bottom:190.151550px;}
.y3b{bottom:192.460650px;}
.yc7{bottom:193.898850px;}
.y123{bottom:196.366350px;}
.ye4{bottom:200.555850px;}
.y142{bottom:201.154500px;}
.y79{bottom:208.285350px;}
.y19{bottom:208.799250px;}
.y103{bottom:209.690850px;}
.y51{bottom:210.403050px;}
.y9f{bottom:211.062600px;}
.y3a{bottom:214.005900px;}
.yc6{bottom:214.150350px;}
.y122{bottom:216.778350px;}
.ye3{bottom:222.023100px;}
.y78{bottom:228.709350px;}
.y18{bottom:229.769250px;}
.y50{bottom:230.654550px;}
.y102{bottom:231.299850px;}
.y9e{bottom:232.021350px;}
.y141{bottom:234.154500px;}
.yc5{bottom:234.401850px;}
.y39{bottom:235.551150px;}
.y121{bottom:237.190350px;}
.y77{bottom:249.133350px;}
.y17{bottom:250.739250px;}
.y4f{bottom:250.906050px;}
.ye2{bottom:251.995350px;}
.y9d{bottom:252.980100px;}
.yc4{bottom:254.653350px;}
.y38{bottom:257.096400px;}
.y101{bottom:261.413850px;}
.y120{bottom:266.091600px;}
.y76{bottom:269.557350px;}
.y4e{bottom:271.157550px;}
.ye1{bottom:273.462600px;}
.y9c{bottom:273.938850px;}
.yc3{bottom:274.904850px;}
.y140{bottom:275.659500px;}
.y37{bottom:278.641650px;}
.y100{bottom:283.022850px;}
.y16{bottom:284.459250px;}
.y11f{bottom:286.503600px;}
.y75{bottom:289.981350px;}
.y4d{bottom:291.409050px;}
.y9b{bottom:294.897600px;}
.yc2{bottom:295.156350px;}
.y13f{bottom:295.159500px;}
.y36{bottom:300.186900px;}
.ye0{bottom:303.434850px;}
.y11e{bottom:306.915600px;}
.y74{bottom:310.405350px;}
.y4c{bottom:311.660550px;}
.yff{bottom:313.136850px;}
.y13e{bottom:314.659500px;}
.yc1{bottom:315.407850px;}
.y9a{bottom:315.856350px;}
.y35{bottom:321.732150px;}
.ydf{bottom:324.902100px;}
.y73{bottom:330.829350px;}
.y4b{bottom:331.912050px;}
.y13d{bottom:334.159500px;}
.y15{bottom:335.189250px;}
.yc0{bottom:335.659350px;}
.y11d{bottom:335.816850px;}
.y99{bottom:336.815100px;}
.yfe{bottom:343.250850px;}
.y34{bottom:343.277400px;}
.yde{bottom:346.369350px;}
.y72{bottom:351.253350px;}
.y4a{bottom:352.163550px;}
.y13c{bottom:353.659500px;}
.ybf{bottom:355.910850px;}
.y11c{bottom:356.228850px;}
.y14{bottom:357.674100px;}
.y98{bottom:357.773850px;}
.y33{bottom:364.822650px;}
.y71{bottom:371.677350px;}
.y49{bottom:372.415050px;}
.y13b{bottom:373.159500px;}
.yfd{bottom:373.364850px;}
.ybe{bottom:376.162350px;}
.ydd{bottom:376.341600px;}
.y11b{bottom:376.640850px;}
.y13{bottom:378.644100px;}
.y97{bottom:378.732600px;}
.y32{bottom:386.367900px;}
.y70{bottom:392.101350px;}
.y13a{bottom:392.659500px;}
.y48{bottom:392.666550px;}
.yfc{bottom:394.973850px;}
.ybd{bottom:396.413850px;}
.ydc{bottom:397.808850px;}
.y12{bottom:399.614100px;}
.y96{bottom:399.691350px;}
.y11a{bottom:405.542100px;}
.y31{bottom:407.913150px;}
.y139{bottom:412.159500px;}
.y6f{bottom:412.525350px;}
.y47{bottom:412.918050px;}
.ybc{bottom:416.665350px;}
.y11{bottom:420.584100px;}
.y95{bottom:420.650100px;}
.yfb{bottom:425.087850px;}
.y119{bottom:425.954100px;}
.ydb{bottom:427.781100px;}
.y30{bottom:429.458400px;}
.y138{bottom:431.659500px;}
.y6e{bottom:432.949350px;}
.y46{bottom:433.169550px;}
.ybb{bottom:436.916850px;}
.y10{bottom:441.554100px;}
.y94{bottom:441.608850px;}
.yfa{bottom:446.696850px;}
.yda{bottom:449.248350px;}
.y2f{bottom:451.003650px;}
.y137{bottom:451.159500px;}
.y6d{bottom:453.373350px;}
.y45{bottom:453.421050px;}
.y118{bottom:454.855350px;}
.yba{bottom:457.168350px;}
.yf{bottom:462.524100px;}
.y93{bottom:462.567600px;}
.y136{bottom:470.659500px;}
.y2e{bottom:472.548900px;}
.y44{bottom:473.672550px;}
.y6c{bottom:473.797350px;}
.y117{bottom:475.267350px;}
.yf9{bottom:476.810850px;}
.yb9{bottom:477.419850px;}
.yd9{bottom:479.220600px;}
.y92{bottom:483.526350px;}
.y135{bottom:490.159500px;}
.y43{bottom:493.924050px;}
.y2d{bottom:494.094150px;}
.y6b{bottom:494.221350px;}
.ye{bottom:496.244100px;}
.yb8{bottom:497.671350px;}
.yf8{bottom:498.419850px;}
.yd8{bottom:500.687850px;}
.y116{bottom:504.168600px;}
.y91{bottom:504.485100px;}
.y42{bottom:514.175550px;}
.y6a{bottom:514.645350px;}
.y2c{bottom:515.639400px;}
.yb7{bottom:517.922850px;}
.yd7{bottom:522.155100px;}
.y134{bottom:522.409500px;}
.y115{bottom:524.580600px;}
.y90{bottom:525.443850px;}
.yf7{bottom:528.533850px;}
.y41{bottom:534.427050px;}
.y69{bottom:535.069350px;}
.y2b{bottom:537.184650px;}
.yb6{bottom:538.174350px;}
.y8f{bottom:546.402600px;}
.yf6{bottom:550.142850px;}
.yd6{bottom:552.127350px;}
.y114{bottom:553.481850px;}
.y40{bottom:554.678550px;}
.yd{bottom:555.478500px;}
.y68{bottom:555.493350px;}
.yb5{bottom:558.425850px;}
.y2a{bottom:558.729900px;}
.y8e{bottom:567.361350px;}
.yd5{bottom:573.594600px;}
.y113{bottom:573.893850px;}
.y67{bottom:575.917350px;}
.yb4{bottom:578.677350px;}
.y133{bottom:580.171350px;}
.yf5{bottom:580.256850px;}
.y29{bottom:580.275150px;}
.yc{bottom:583.954500px;}
.y8d{bottom:588.320100px;}
.y66{bottom:596.341350px;}
.yb3{bottom:598.928850px;}
.y28{bottom:601.820400px;}
.yf4{bottom:601.865850px;}
.y112{bottom:602.795100px;}
.yd4{bottom:603.566850px;}
.y132{bottom:607.177350px;}
.y8c{bottom:609.278850px;}
.y65{bottom:616.765350px;}
.yb2{bottom:619.180350px;}
.y111{bottom:623.207100px;}
.y27{bottom:623.365650px;}
.yd3{bottom:625.034100px;}
.y8b{bottom:630.237600px;}
.yf3{bottom:631.979850px;}
.yb{bottom:633.689850px;}
.y64{bottom:637.189350px;}
.yb1{bottom:639.431850px;}
.y110{bottom:643.619100px;}
.y26{bottom:644.910900px;}
.y8a{bottom:651.196350px;}
.yf2{bottom:653.588850px;}
.yd2{bottom:655.006350px;}
.y63{bottom:657.613350px;}
.yb0{bottom:659.683350px;}
.y25{bottom:666.456150px;}
.ya{bottom:666.656850px;}
.y89{bottom:672.155100px;}
.y10f{bottom:672.520350px;}
.y131{bottom:675.638850px;}
.yd1{bottom:676.473600px;}
.y62{bottom:678.037350px;}
.yaf{bottom:679.934850px;}
.yf1{bottom:683.702850px;}
.y24{bottom:688.001400px;}
.y88{bottom:693.113850px;}
.y130{bottom:695.893350px;}
.yd0{bottom:697.940850px;}
.y61{bottom:698.461350px;}
.yae{bottom:700.186350px;}
.yf0{bottom:705.311850px;}
.y23{bottom:709.546650px;}
.y87{bottom:714.072600px;}
.y12f{bottom:716.147850px;}
.y60{bottom:718.885350px;}
.yad{bottom:720.437850px;}
.ycf{bottom:727.913100px;}
.y9{bottom:729.397650px;}
.y86{bottom:735.031350px;}
.yef{bottom:735.425850px;}
.y12e{bottom:736.402350px;}
.y5f{bottom:739.309350px;}
.yac{bottom:740.689350px;}
.y10e{bottom:743.836350px;}
.yce{bottom:749.380350px;}
.y85{bottom:755.990100px;}
.yee{bottom:757.034850px;}
.y5e{bottom:759.733350px;}
.y8{bottom:760.372650px;}
.yab{bottom:760.940850px;}
.y10d{bottom:764.248350px;}
.y12d{bottom:765.161850px;}
.y84{bottom:776.948850px;}
.yed{bottom:778.643850px;}
.ycd{bottom:779.352600px;}
.y5d{bottom:780.157350px;}
.yaa{bottom:781.192350px;}
.y7{bottom:782.842650px;}
.y12c{bottom:785.416350px;}
.y10c{bottom:793.149600px;}
.y83{bottom:797.907600px;}
.y5c{bottom:800.581350px;}
.ycc{bottom:800.819850px;}
.ya9{bottom:801.443850px;}
.y6{bottom:805.312650px;}
.yec{bottom:808.757850px;}
.y10b{bottom:813.561600px;}
.y12b{bottom:814.175850px;}
.y82{bottom:818.866350px;}
.y5b{bottom:821.005350px;}
.ya8{bottom:821.695350px;}
.ycb{bottom:822.287100px;}
.yeb{bottom:830.366850px;}
.y10a{bottom:833.973600px;}
.y12a{bottom:834.430350px;}
.y5{bottom:836.287650px;}
.y22{bottom:838.818600px;}
.y81{bottom:839.825100px;}
.y5a{bottom:841.429350px;}
.ya7{bottom:841.946850px;}
.yea{bottom:851.975850px;}
.yca{bottom:852.259350px;}
.y129{bottom:854.684850px;}
.y4{bottom:858.757650px;}
.y80{bottom:860.783850px;}
.y21{bottom:861.108600px;}
.y59{bottom:861.853350px;}
.ya6{bottom:862.198350px;}
.y109{bottom:862.874850px;}
.yc9{bottom:873.726600px;}
.y3{bottom:881.227650px;}
.y7f{bottom:881.742600px;}
.ye9{bottom:882.089850px;}
.y58{bottom:882.277350px;}
.ya5{bottom:882.449850px;}
.y108{bottom:883.286850px;}
.y20{bottom:883.407750px;}
.y128{bottom:883.444350px;}
.y57{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1f{bottom:904.197750px;}
.y1e{bottom:948.189000px;}
.h8{height:37.983820px;}
.hc{height:41.396484px;}
.ha{height:44.414062px;}
.h9{height:49.965820px;}
.h4{height:55.517578px;}
.h7{height:57.744141px;}
.h3{height:58.293457px;}
.he{height:60.631348px;}
.hb{height:63.845215px;}
.hd{height:66.405762px;}
.h2{height:69.396973px;}
.h6{height:77.724609px;}
.h5{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:80.575650px;}
.x7{left:82.214250px;}
.x9{left:83.475600px;}
.x1{left:85.039350px;}
.x8{left:104.020350px;}
.x5{left:105.030600px;}
.x6{left:106.364250px;}
.x4{left:230.608200px;}
.x2{left:232.076250px;}
.x3{left:233.451900px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.619733pt;}
.ls3b{letter-spacing:-17.234667pt;}
.ls45{letter-spacing:-4.533333pt;}
.ls19{letter-spacing:-3.741333pt;}
.ls1a{letter-spacing:-3.434667pt;}
.lsf{letter-spacing:-2.882667pt;}
.ls10{letter-spacing:-2.821333pt;}
.lse{letter-spacing:-2.576000pt;}
.ls43{letter-spacing:-2.240000pt;}
.ls12{letter-spacing:-2.208000pt;}
.ls38{letter-spacing:-2.146667pt;}
.ls47{letter-spacing:-2.080000pt;}
.ls18{letter-spacing:-1.778667pt;}
.ls48{letter-spacing:-1.546667pt;}
.ls14{letter-spacing:-1.472000pt;}
.ls1e{letter-spacing:-1.288000pt;}
.ls49{letter-spacing:-1.226667pt;}
.ls46{letter-spacing:-1.066667pt;}
.ls4{letter-spacing:-1.045333pt;}
.ls20{letter-spacing:-1.042667pt;}
.ls21{letter-spacing:-0.736000pt;}
.ls3a{letter-spacing:-0.613333pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.245333pt;}
.ls36{letter-spacing:0.263733pt;}
.ls33{letter-spacing:0.282133pt;}
.ls32{letter-spacing:0.300533pt;}
.ls29{letter-spacing:0.306667pt;}
.ls2a{letter-spacing:0.368000pt;}
.ls3e{letter-spacing:0.504000pt;}
.ls35{letter-spacing:0.920000pt;}
.ls1d{letter-spacing:1.042667pt;}
.ls3d{letter-spacing:1.512000pt;}
.ls2e{letter-spacing:1.656000pt;}
.ls42{letter-spacing:2.072000pt;}
.ls9{letter-spacing:2.133333pt;}
.ls13{letter-spacing:2.208000pt;}
.ls2c{letter-spacing:2.637333pt;}
.lsa{letter-spacing:2.933333pt;}
.ls23{letter-spacing:3.048267pt;}
.ls22{letter-spacing:3.250667pt;}
.ls44{letter-spacing:3.413333pt;}
.ls6{letter-spacing:3.733333pt;}
.ls3f{letter-spacing:4.345600pt;}
.ls2d{letter-spacing:4.354667pt;}
.ls31{letter-spacing:4.400000pt;}
.ls26{letter-spacing:4.784000pt;}
.ls2b{letter-spacing:4.800000pt;}
.ls1f{letter-spacing:4.968000pt;}
.ls7{letter-spacing:5.120000pt;}
.ls5{letter-spacing:5.226667pt;}
.ls1{letter-spacing:5.333333pt;}
.ls8{letter-spacing:5.600000pt;}
.ls17{letter-spacing:5.832800pt;}
.ls11{letter-spacing:5.949333pt;}
.ls2f{letter-spacing:6.317333pt;}
.ls28{letter-spacing:6.562667pt;}
.ls24{letter-spacing:7.237333pt;}
.ls25{letter-spacing:7.261867pt;}
.ls2{letter-spacing:7.466667pt;}
.ls30{letter-spacing:7.789333pt;}
.ls40{letter-spacing:7.952000pt;}
.ls37{letter-spacing:8.157333pt;}
.ls15{letter-spacing:8.335200pt;}
.ls27{letter-spacing:8.586667pt;}
.lsc{letter-spacing:9.997333pt;}
.ls39{letter-spacing:10.058667pt;}
.ls16{letter-spacing:13.554667pt;}
.ls3c{letter-spacing:14.504000pt;}
.ls1c{letter-spacing:16.001867pt;}
.ls1b{letter-spacing:16.008000pt;}
.lsd{letter-spacing:18.179200pt;}
.ls41{letter-spacing:22.904000pt;}
.lsb{letter-spacing:31.586667pt;}
.ws1a{word-spacing:-23.533333pt;}
.ws1d{word-spacing:-23.133333pt;}
.ws8{word-spacing:-21.666667pt;}
.ws28{word-spacing:-21.336000pt;}
.ws2d{word-spacing:-20.320000pt;}
.ws1{word-spacing:-20.213333pt;}
.ws2{word-spacing:-20.106667pt;}
.ws0{word-spacing:-19.936000pt;}
.ws24{word-spacing:-17.248000pt;}
.wsb{word-spacing:-17.234667pt;}
.ws9{word-spacing:-16.090667pt;}
.ws29{word-spacing:-15.736000pt;}
.ws1e{word-spacing:-15.456000pt;}
.wsc{word-spacing:-15.149333pt;}
.ws30{word-spacing:-14.986667pt;}
.ws22{word-spacing:-14.536000pt;}
.ws17{word-spacing:-13.861333pt;}
.ws25{word-spacing:-13.832000pt;}
.ws10{word-spacing:-13.677333pt;}
.ws14{word-spacing:-13.370667pt;}
.ws2f{word-spacing:-13.173333pt;}
.ws1f{word-spacing:-13.002667pt;}
.wsd{word-spacing:-12.573333pt;}
.wse{word-spacing:-12.266667pt;}
.ws32{word-spacing:-11.946667pt;}
.ws16{word-spacing:-11.714667pt;}
.ws15{word-spacing:-11.408000pt;}
.ws31{word-spacing:-11.093333pt;}
.ws2e{word-spacing:-10.933333pt;}
.ws5{word-spacing:-7.466667pt;}
.ws26{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.ws7{word-spacing:-3.733333pt;}
.ws21{word-spacing:-2.760000pt;}
.ws13{word-spacing:-2.208000pt;}
.wsa{word-spacing:-2.133333pt;}
.ws2a{word-spacing:-2.072000pt;}
.ws12{word-spacing:-1.901333pt;}
.ws1b{word-spacing:-1.656000pt;}
.ws27{word-spacing:-0.504000pt;}
.ws20{word-spacing:-0.306667pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.213333pt;}
.ws19{word-spacing:0.736000pt;}
.ws18{word-spacing:1.042667pt;}
.ws34{word-spacing:1.066667pt;}
.ws35{word-spacing:1.546667pt;}
.ws1c{word-spacing:1.901333pt;}
.ws11{word-spacing:2.208000pt;}
.ws2b{word-spacing:2.240000pt;}
.wsf{word-spacing:2.821333pt;}
.ws33{word-spacing:4.533333pt;}
.ws2c{word-spacing:13.384000pt;}
.ws23{word-spacing:17.234667pt;}
._2c{margin-left:-17.729333pt;}
._23{margin-left:-15.183733pt;}
._26{margin-left:-8.519200pt;}
._25{margin-left:-7.544000pt;}
._d{margin-left:-6.488533pt;}
._c{margin-left:-5.506133pt;}
._3{margin-left:-4.597600pt;}
._4{margin-left:-3.449067pt;}
._9{margin-left:-2.093333pt;}
._6{margin-left:-1.069600pt;}
._5{width:1.097600pt;}
._1{width:2.133333pt;}
._b{width:3.126400pt;}
._7{width:4.707200pt;}
._8{width:5.656533pt;}
._a{width:6.760533pt;}
._11{width:8.336000pt;}
._18{width:9.647733pt;}
._17{width:10.614400pt;}
._19{width:11.686400pt;}
._22{width:12.823733pt;}
._1e{width:13.800000pt;}
._13{width:14.902960pt;}
._27{width:15.860800pt;}
._30{width:16.885867pt;}
._10{width:18.726133pt;}
._f{width:19.616000pt;}
._1d{width:20.779733pt;}
._2a{width:21.994133pt;}
._33{width:22.931733pt;}
._2f{width:24.279467pt;}
._28{width:25.576000pt;}
._1b{width:27.719467pt;}
._2e{width:29.355200pt;}
._1c{width:31.611200pt;}
._21{width:33.089333pt;}
._16{width:34.389600pt;}
._31{width:37.072000pt;}
._12{width:38.617920pt;}
._32{width:41.652800pt;}
._1f{width:42.761600pt;}
._15{width:76.048000pt;}
._e{width:231.653333pt;}
._2b{width:405.513067pt;}
._2d{width:406.562133pt;}
._20{width:407.553067pt;}
._14{width:409.561600pt;}
._0{width:514.133333pt;}
._1a{width:849.961067pt;}
._24{width:852.294400pt;}
._29{width:855.894400pt;}
._2{width:857.654400pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:55.968000pt;}
.fs2{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y7e{bottom:94.369200pt;}
.ye8{bottom:94.383867pt;}
.y127{bottom:94.425867pt;}
.y107{bottom:94.439867pt;}
.ya4{bottom:94.461200pt;}
.y3f{bottom:94.470800pt;}
.y1d{bottom:94.482933pt;}
.y56{bottom:97.018267pt;}
.y146{bottom:106.804000pt;}
.y1c{bottom:109.818933pt;}
.y7d{bottom:112.523867pt;}
.y126{bottom:112.569867pt;}
.ya3{bottom:113.091200pt;}
.ye7{bottom:113.465867pt;}
.y3e{bottom:113.622133pt;}
.y106{bottom:113.647867pt;}
.y55{bottom:115.019600pt;}
.y145{bottom:124.804000pt;}
.y1b{bottom:127.817600pt;}
.y7c{bottom:130.678533pt;}
.y125{bottom:130.713867pt;}
.ya2{bottom:131.721200pt;}
.ye6{bottom:132.547867pt;}
.y3d{bottom:132.773467pt;}
.y54{bottom:133.020933pt;}
.y105{bottom:140.415867pt;}
.y144{bottom:142.804000pt;}
.y7b{bottom:148.833200pt;}
.ya1{bottom:150.351200pt;}
.y53{bottom:151.022267pt;}
.ye5{bottom:151.629867pt;}
.y3c{bottom:151.924800pt;}
.yc8{bottom:154.353200pt;}
.y124{bottom:156.403867pt;}
.y104{bottom:159.623867pt;}
.y143{bottom:160.804000pt;}
.y1a{bottom:166.959333pt;}
.y7a{bottom:166.987867pt;}
.ya0{bottom:168.981200pt;}
.y52{bottom:169.023600pt;}
.y3b{bottom:171.076133pt;}
.yc7{bottom:172.354533pt;}
.y123{bottom:174.547867pt;}
.ye4{bottom:178.271867pt;}
.y142{bottom:178.804000pt;}
.y79{bottom:185.142533pt;}
.y19{bottom:185.599333pt;}
.y103{bottom:186.391867pt;}
.y51{bottom:187.024933pt;}
.y9f{bottom:187.611200pt;}
.y3a{bottom:190.227467pt;}
.yc6{bottom:190.355867pt;}
.y122{bottom:192.691867pt;}
.ye3{bottom:197.353867pt;}
.y78{bottom:203.297200pt;}
.y18{bottom:204.239333pt;}
.y50{bottom:205.026267pt;}
.y102{bottom:205.599867pt;}
.y9e{bottom:206.241200pt;}
.y141{bottom:208.137333pt;}
.yc5{bottom:208.357200pt;}
.y39{bottom:209.378800pt;}
.y121{bottom:210.835867pt;}
.y77{bottom:221.451867pt;}
.y17{bottom:222.879333pt;}
.y4f{bottom:223.027600pt;}
.ye2{bottom:223.995867pt;}
.y9d{bottom:224.871200pt;}
.yc4{bottom:226.358533pt;}
.y38{bottom:228.530133pt;}
.y101{bottom:232.367867pt;}
.y120{bottom:236.525867pt;}
.y76{bottom:239.606533pt;}
.y4e{bottom:241.028933pt;}
.ye1{bottom:243.077867pt;}
.y9c{bottom:243.501200pt;}
.yc3{bottom:244.359867pt;}
.y140{bottom:245.030667pt;}
.y37{bottom:247.681467pt;}
.y100{bottom:251.575867pt;}
.y16{bottom:252.852667pt;}
.y11f{bottom:254.669867pt;}
.y75{bottom:257.761200pt;}
.y4d{bottom:259.030267pt;}
.y9b{bottom:262.131200pt;}
.yc2{bottom:262.361200pt;}
.y13f{bottom:262.364000pt;}
.y36{bottom:266.832800pt;}
.ye0{bottom:269.719867pt;}
.y11e{bottom:272.813867pt;}
.y74{bottom:275.915867pt;}
.y4c{bottom:277.031600pt;}
.yff{bottom:278.343867pt;}
.y13e{bottom:279.697333pt;}
.yc1{bottom:280.362533pt;}
.y9a{bottom:280.761200pt;}
.y35{bottom:285.984133pt;}
.ydf{bottom:288.801867pt;}
.y73{bottom:294.070533pt;}
.y4b{bottom:295.032933pt;}
.y13d{bottom:297.030667pt;}
.y15{bottom:297.946000pt;}
.yc0{bottom:298.363867pt;}
.y11d{bottom:298.503867pt;}
.y99{bottom:299.391200pt;}
.yfe{bottom:305.111867pt;}
.y34{bottom:305.135467pt;}
.yde{bottom:307.883867pt;}
.y72{bottom:312.225200pt;}
.y4a{bottom:313.034267pt;}
.y13c{bottom:314.364000pt;}
.ybf{bottom:316.365200pt;}
.y11c{bottom:316.647867pt;}
.y14{bottom:317.932533pt;}
.y98{bottom:318.021200pt;}
.y33{bottom:324.286800pt;}
.y71{bottom:330.379867pt;}
.y49{bottom:331.035600pt;}
.y13b{bottom:331.697333pt;}
.yfd{bottom:331.879867pt;}
.ybe{bottom:334.366533pt;}
.ydd{bottom:334.525867pt;}
.y11b{bottom:334.791867pt;}
.y13{bottom:336.572533pt;}
.y97{bottom:336.651200pt;}
.y32{bottom:343.438133pt;}
.y70{bottom:348.534533pt;}
.y13a{bottom:349.030667pt;}
.y48{bottom:349.036933pt;}
.yfc{bottom:351.087867pt;}
.ybd{bottom:352.367867pt;}
.ydc{bottom:353.607867pt;}
.y12{bottom:355.212533pt;}
.y96{bottom:355.281200pt;}
.y11a{bottom:360.481867pt;}
.y31{bottom:362.589467pt;}
.y139{bottom:366.364000pt;}
.y6f{bottom:366.689200pt;}
.y47{bottom:367.038267pt;}
.ybc{bottom:370.369200pt;}
.y11{bottom:373.852533pt;}
.y95{bottom:373.911200pt;}
.yfb{bottom:377.855867pt;}
.y119{bottom:378.625867pt;}
.ydb{bottom:380.249867pt;}
.y30{bottom:381.740800pt;}
.y138{bottom:383.697333pt;}
.y6e{bottom:384.843867pt;}
.y46{bottom:385.039600pt;}
.ybb{bottom:388.370533pt;}
.y10{bottom:392.492533pt;}
.y94{bottom:392.541200pt;}
.yfa{bottom:397.063867pt;}
.yda{bottom:399.331867pt;}
.y2f{bottom:400.892133pt;}
.y137{bottom:401.030667pt;}
.y6d{bottom:402.998533pt;}
.y45{bottom:403.040933pt;}
.y118{bottom:404.315867pt;}
.yba{bottom:406.371867pt;}
.yf{bottom:411.132533pt;}
.y93{bottom:411.171200pt;}
.y136{bottom:418.364000pt;}
.y2e{bottom:420.043467pt;}
.y44{bottom:421.042267pt;}
.y6c{bottom:421.153200pt;}
.y117{bottom:422.459867pt;}
.yf9{bottom:423.831867pt;}
.yb9{bottom:424.373200pt;}
.yd9{bottom:425.973867pt;}
.y92{bottom:429.801200pt;}
.y135{bottom:435.697333pt;}
.y43{bottom:439.043600pt;}
.y2d{bottom:439.194800pt;}
.y6b{bottom:439.307867pt;}
.ye{bottom:441.105867pt;}
.yb8{bottom:442.374533pt;}
.yf8{bottom:443.039867pt;}
.yd8{bottom:445.055867pt;}
.y116{bottom:448.149867pt;}
.y91{bottom:448.431200pt;}
.y42{bottom:457.044933pt;}
.y6a{bottom:457.462533pt;}
.y2c{bottom:458.346133pt;}
.yb7{bottom:460.375867pt;}
.yd7{bottom:464.137867pt;}
.y134{bottom:464.364000pt;}
.y115{bottom:466.293867pt;}
.y90{bottom:467.061200pt;}
.yf7{bottom:469.807867pt;}
.y41{bottom:475.046267pt;}
.y69{bottom:475.617200pt;}
.y2b{bottom:477.497467pt;}
.yb6{bottom:478.377200pt;}
.y8f{bottom:485.691200pt;}
.yf6{bottom:489.015867pt;}
.yd6{bottom:490.779867pt;}
.y114{bottom:491.983867pt;}
.y40{bottom:493.047600pt;}
.yd{bottom:493.758667pt;}
.y68{bottom:493.771867pt;}
.yb5{bottom:496.378533pt;}
.y2a{bottom:496.648800pt;}
.y8e{bottom:504.321200pt;}
.yd5{bottom:509.861867pt;}
.y113{bottom:510.127867pt;}
.y67{bottom:511.926533pt;}
.yb4{bottom:514.379867pt;}
.y133{bottom:515.707867pt;}
.yf5{bottom:515.783867pt;}
.y29{bottom:515.800133pt;}
.yc{bottom:519.070667pt;}
.y8d{bottom:522.951200pt;}
.y66{bottom:530.081200pt;}
.yb3{bottom:532.381200pt;}
.y28{bottom:534.951467pt;}
.yf4{bottom:534.991867pt;}
.y112{bottom:535.817867pt;}
.yd4{bottom:536.503867pt;}
.y132{bottom:539.713200pt;}
.y8c{bottom:541.581200pt;}
.y65{bottom:548.235867pt;}
.yb2{bottom:550.382533pt;}
.y111{bottom:553.961867pt;}
.y27{bottom:554.102800pt;}
.yd3{bottom:555.585867pt;}
.y8b{bottom:560.211200pt;}
.yf3{bottom:561.759867pt;}
.yb{bottom:563.279867pt;}
.y64{bottom:566.390533pt;}
.yb1{bottom:568.383867pt;}
.y110{bottom:572.105867pt;}
.y26{bottom:573.254133pt;}
.y8a{bottom:578.841200pt;}
.yf2{bottom:580.967867pt;}
.yd2{bottom:582.227867pt;}
.y63{bottom:584.545200pt;}
.yb0{bottom:586.385200pt;}
.y25{bottom:592.405467pt;}
.ya{bottom:592.583867pt;}
.y89{bottom:597.471200pt;}
.y10f{bottom:597.795867pt;}
.y131{bottom:600.567867pt;}
.yd1{bottom:601.309867pt;}
.y62{bottom:602.699867pt;}
.yaf{bottom:604.386533pt;}
.yf1{bottom:607.735867pt;}
.y24{bottom:611.556800pt;}
.y88{bottom:616.101200pt;}
.y130{bottom:618.571867pt;}
.yd0{bottom:620.391867pt;}
.y61{bottom:620.854533pt;}
.yae{bottom:622.387867pt;}
.yf0{bottom:626.943867pt;}
.y23{bottom:630.708133pt;}
.y87{bottom:634.731200pt;}
.y12f{bottom:636.575867pt;}
.y60{bottom:639.009200pt;}
.yad{bottom:640.389200pt;}
.ycf{bottom:647.033867pt;}
.y9{bottom:648.353467pt;}
.y86{bottom:653.361200pt;}
.yef{bottom:653.711867pt;}
.y12e{bottom:654.579867pt;}
.y5f{bottom:657.163867pt;}
.yac{bottom:658.390533pt;}
.y10e{bottom:661.187867pt;}
.yce{bottom:666.115867pt;}
.y85{bottom:671.991200pt;}
.yee{bottom:672.919867pt;}
.y5e{bottom:675.318533pt;}
.y8{bottom:675.886800pt;}
.yab{bottom:676.391867pt;}
.y10d{bottom:679.331867pt;}
.y12d{bottom:680.143867pt;}
.y84{bottom:690.621200pt;}
.yed{bottom:692.127867pt;}
.ycd{bottom:692.757867pt;}
.y5d{bottom:693.473200pt;}
.yaa{bottom:694.393200pt;}
.y7{bottom:695.860133pt;}
.y12c{bottom:698.147867pt;}
.y10c{bottom:705.021867pt;}
.y83{bottom:709.251200pt;}
.y5c{bottom:711.627867pt;}
.ycc{bottom:711.839867pt;}
.ya9{bottom:712.394533pt;}
.y6{bottom:715.833467pt;}
.yec{bottom:718.895867pt;}
.y10b{bottom:723.165867pt;}
.y12b{bottom:723.711867pt;}
.y82{bottom:727.881200pt;}
.y5b{bottom:729.782533pt;}
.ya8{bottom:730.395867pt;}
.ycb{bottom:730.921867pt;}
.yeb{bottom:738.103867pt;}
.y10a{bottom:741.309867pt;}
.y12a{bottom:741.715867pt;}
.y5{bottom:743.366800pt;}
.y22{bottom:745.616533pt;}
.y81{bottom:746.511200pt;}
.y5a{bottom:747.937200pt;}
.ya7{bottom:748.397200pt;}
.yea{bottom:757.311867pt;}
.yca{bottom:757.563867pt;}
.y129{bottom:759.719867pt;}
.y4{bottom:763.340133pt;}
.y80{bottom:765.141200pt;}
.y21{bottom:765.429867pt;}
.y59{bottom:766.091867pt;}
.ya6{bottom:766.398533pt;}
.y109{bottom:766.999867pt;}
.yc9{bottom:776.645867pt;}
.y3{bottom:783.313467pt;}
.y7f{bottom:783.771200pt;}
.ye9{bottom:784.079867pt;}
.y58{bottom:784.246533pt;}
.ya5{bottom:784.399867pt;}
.y108{bottom:785.143867pt;}
.y20{bottom:785.251333pt;}
.y128{bottom:785.283867pt;}
.y57{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1f{bottom:803.731333pt;}
.y1e{bottom:842.834667pt;}
.h8{height:33.763396pt;}
.hc{height:36.796875pt;}
.ha{height:39.479167pt;}
.h9{height:44.414062pt;}
.h4{height:49.348958pt;}
.h7{height:51.328125pt;}
.h3{height:51.816406pt;}
.he{height:53.894531pt;}
.hb{height:56.751302pt;}
.hd{height:59.027344pt;}
.h2{height:61.686198pt;}
.h6{height:69.088542pt;}
.h5{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:71.622800pt;}
.x7{left:73.079333pt;}
.x9{left:74.200533pt;}
.x1{left:75.590533pt;}
.x8{left:92.462533pt;}
.x5{left:93.360533pt;}
.x6{left:94.546000pt;}
.x4{left:204.985067pt;}
.x2{left:206.290000pt;}
.x3{left:207.512800pt;}
}




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