
    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_e710195148b0fc687c13f8d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_3d05bc8f7c3b99e1afd7b453.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926270;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_93f25080d0d97c8d80791388.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_7fe20b017218e8427dcf558a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_9bc6d393dd8443dc73f4413a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104980;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_b8e6a79426295594183ec82f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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;}
.ls16{letter-spacing:-4.464000px;}
.ls19{letter-spacing:-4.446000px;}
.ls13{letter-spacing:-3.556800px;}
.ls6{letter-spacing:-0.014400px;}
.ls8{letter-spacing:-0.012000px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.009600px;}
.ls4{letter-spacing:0.012000px;}
.ls9{letter-spacing:0.013200px;}
.ls0{letter-spacing:0.014400px;}
.lsd{letter-spacing:0.172800px;}
.ls15{letter-spacing:0.228000px;}
.ls7{letter-spacing:0.230400px;}
.ls22{letter-spacing:0.273600px;}
.ls21{letter-spacing:0.295200px;}
.ls17{letter-spacing:0.336000px;}
.ls2c{letter-spacing:0.417600px;}
.ls2e{letter-spacing:0.460800px;}
.ls20{letter-spacing:0.475200px;}
.ls1b{letter-spacing:0.626400px;}
.ls1f{letter-spacing:0.993600px;}
.ls1e{letter-spacing:1.022400px;}
.ls1a{letter-spacing:1.218000px;}
.ls26{letter-spacing:1.317600px;}
.ls1{letter-spacing:1.418400px;}
.ls2{letter-spacing:1.490400px;}
.ls27{letter-spacing:1.548000px;}
.lsa{letter-spacing:1.776000px;}
.lsf{letter-spacing:1.857600px;}
.lse{letter-spacing:1.864800px;}
.ls28{letter-spacing:1.886400px;}
.ls23{letter-spacing:1.994400px;}
.ls1c{letter-spacing:2.148000px;}
.ls1d{letter-spacing:2.382000px;}
.lsc{letter-spacing:2.419200px;}
.ls3{letter-spacing:2.469600px;}
.ls2a{letter-spacing:2.707200px;}
.ls2b{letter-spacing:2.721600px;}
.ls2f{letter-spacing:2.894400px;}
.ls29{letter-spacing:2.973600px;}
.ls18{letter-spacing:4.014000px;}
.ls2d{letter-spacing:4.284000px;}
.ls14{letter-spacing:4.528800px;}
.lsb{letter-spacing:4.918620px;}
.ls11{letter-spacing:8.517600px;}
.ls25{letter-spacing:20.793600px;}
.ls24{letter-spacing:20.822400px;}
.ls10{letter-spacing:1492.751400px;}
.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;}
}
.ws11{word-spacing:-22.723200px;}
.ws10{word-spacing:-21.333600px;}
.wsf{word-spacing:-20.311200px;}
.ws6{word-spacing:-20.030400px;}
.wsb{word-spacing:-20.016000px;}
.wse{word-spacing:-20.001600px;}
.ws3{word-spacing:-18.348000px;}
.ws2{word-spacing:-16.692000px;}
.ws9{word-spacing:-16.680000px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:6.633360px;}
.ws7{word-spacing:6.637920px;}
.ws1{word-spacing:27.892800px;}
.wsc{word-spacing:33.319560px;}
.wsa{word-spacing:33.331560px;}
.wsd{word-spacing:33.374760px;}
.ws8{word-spacing:43.579200px;}
.ws4{word-spacing:75.816000px;}
._2d{margin-left:-20.808000px;}
._17{margin-left:-8.086800px;}
._3{margin-left:-6.224400px;}
._d{margin-left:-4.537200px;}
._2{margin-left:-3.166800px;}
._4{margin-left:-1.512000px;}
._7{width:1.411200px;}
._19{width:2.412000px;}
._a{width:3.506400px;}
._18{width:4.622400px;}
._1{width:6.358800px;}
._f{width:7.578420px;}
._11{width:8.611200px;}
._e{width:9.878400px;}
._1c{width:11.203200px;}
._c{width:12.585600px;}
._13{width:14.335200px;}
._1e{width:15.508800px;}
._b{width:16.560000px;}
._10{width:17.668800px;}
._15{width:18.720000px;}
._2c{width:20.592000px;}
._5{width:22.184400px;}
._14{width:23.187600px;}
._1d{width:24.501600px;}
._6{width:25.848000px;}
._2b{width:27.204000px;}
._25{width:28.812000px;}
._20{width:30.808800px;}
._12{width:31.975200px;}
._24{width:33.084000px;}
._16{width:34.093800px;}
._9{width:35.352000px;}
._8{width:36.690720px;}
._1a{width:37.713600px;}
._1b{width:38.721600px;}
._23{width:41.940000px;}
._22{width:42.997200px;}
._0{width:45.150000px;}
._28{width:51.950400px;}
._2a{width:53.188800px;}
._29{width:86.749800px;}
._1f{width:160.253400px;}
._21{width:297.384000px;}
._27{width:1022.484000px;}
._26{width:1260.684000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:40.000002px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y96{bottom:7.858800px;}
.y28{bottom:7.858890px;}
.y72{bottom:7.858950px;}
.yf4{bottom:9.178650px;}
.yf2{bottom:9.178800px;}
.y98{bottom:9.430650px;}
.y50{bottom:10.260270px;}
.y112{bottom:10.665450px;}
.y53{bottom:11.263800px;}
.y4{bottom:12.492300px;}
.ya6{bottom:13.728450px;}
.y99{bottom:13.728600px;}
.y75{bottom:14.270355px;}
.yf0{bottom:16.678800px;}
.yca{bottom:24.358800px;}
.y27{bottom:24.358890px;}
.y71{bottom:24.358950px;}
.y94{bottom:25.092750px;}
.y4e{bottom:25.092780px;}
.y9c{bottom:25.092900px;}
.yf8{bottom:25.678650px;}
.yf1{bottom:25.678800px;}
.y95{bottom:29.390550px;}
.y4f{bottom:29.390625px;}
.y9d{bottom:29.390700px;}
.y52{bottom:32.647050px;}
.y3{bottom:33.492300px;}
.y26{bottom:40.858860px;}
.yfd{bottom:40.858950px;}
.yab{bottom:41.592750px;}
.yea{bottom:41.592780px;}
.y6f{bottom:41.592900px;}
.yf7{bottom:42.178650px;}
.y73{bottom:43.029645px;}
.y2a{bottom:44.161665px;}
.yac{bottom:45.890550px;}
.yeb{bottom:45.890625px;}
.y70{bottom:45.890700px;}
.y29{bottom:46.093440px;}
.y74{bottom:47.074575px;}
.y108{bottom:49.394700px;}
.y25{bottom:57.358860px;}
.yfb{bottom:58.092900px;}
.yfc{bottom:62.390700px;}
.y107{bottom:68.296050px;}
.y23{bottom:73.858860px;}
.y24{bottom:77.440410px;}
.y2{bottom:78.855600px;}
.y15a{bottom:92.582400px;}
.y15d{bottom:97.536300px;}
.y4d{bottom:101.669820px;}
.y2c{bottom:106.350000px;}
.y153{bottom:107.741850px;}
.y122{bottom:113.556000px;}
.y22{bottom:114.905490px;}
.y4c{bottom:118.222050px;}
.y5{bottom:119.585670px;}
.y159{bottom:123.788100px;}
.y15c{bottom:128.741850px;}
.y152{bottom:138.947400px;}
.y21{bottom:141.561030px;}
.y121{bottom:144.761550px;}
.y4b{bottom:149.427600px;}
.y9b{bottom:153.679050px;}
.y158{bottom:154.993650px;}
.y20{bottom:165.622680px;}
.y6e{bottom:169.034700px;}
.y151{bottom:170.152950px;}
.ye9{bottom:170.179050px;}
.y54{bottom:173.715000px;}
.ydd{bottom:175.404750px;}
.y4a{bottom:180.633150px;}
.y157{bottom:186.199200px;}
.yc9{bottom:191.152950px;}
.y15b{bottom:191.153100px;}
.y120{bottom:198.634650px;}
.ye7{bottom:201.358650px;}
.y11c{bottom:205.476600px;}
.y9a{bottom:205.688400px;}
.ydc{bottom:206.610300px;}
.y49{bottom:211.838700px;}
.y144{bottom:213.386400px;}
.y1f{bottom:213.745980px;}
.y6d{bottom:216.815850px;}
.y11f{bottom:217.536000px;}
.ydf{bottom:221.044050px;}
.ye8{bottom:222.188400px;}
.yc7{bottom:222.358650px;}
.yc8{bottom:226.656450px;}
.ye6{bottom:232.564200px;}
.yaa{bottom:237.544050px;}
.y1e{bottom:237.807630px;}
.y6c{bottom:237.815850px;}
.y11b{bottom:239.472600px;}
.y48{bottom:243.044250px;}
.y143{bottom:244.591950px;}
.y156{bottom:248.610300px;}
.yc6{bottom:253.564200px;}
.yfa{bottom:254.044050px;}
.y97{bottom:256.761600px;}
.y1d{bottom:261.869280px;}
.ye5{bottom:263.769750px;}
.ydb{bottom:269.021400px;}
.yde{bottom:273.053250px;}
.y11a{bottom:273.468600px;}
.y47{bottom:274.249800px;}
.y141{bottom:275.797500px;}
.y155{bottom:279.815850px;}
.y142{bottom:280.095450px;}
.y92{bottom:281.251200px;}
.yc5{bottom:284.769750px;}
.y1c{bottom:285.930930px;}
.y93{bottom:293.108850px;}
.ye3{bottom:294.975300px;}
.ye4{bottom:299.273100px;}
.y6b{bottom:300.226950px;}
.y46{bottom:305.455350px;}
.ya9{bottom:306.053250px;}
.y140{bottom:307.003050px;}
.y119{bottom:307.464600px;}
.y1b{bottom:309.992580px;}
.y154{bottom:311.021400px;}
.y90{bottom:312.456750px;}
.yc4{bottom:315.975300px;}
.y91{bottom:316.754550px;}
.ye2{bottom:326.180850px;}
.yf9{bottom:331.296450px;}
.y6a{bottom:331.432500px;}
.y1a{bottom:334.054380px;}
.yda{bottom:335.730450px;}
.y45{bottom:336.660900px;}
.y13f{bottom:338.208750px;}
.y118{bottom:341.460600px;}
.ya3{bottom:342.226950px;}
.y8e{bottom:343.662300px;}
.ya4{bottom:346.524900px;}
.yc3{bottom:347.180850px;}
.y8f{bottom:347.960100px;}
.y150{bottom:357.386400px;}
.ya8{bottom:358.062600px;}
.y19{bottom:358.116030px;}
.yf6{bottom:360.805800px;}
.y69{bottom:362.638050px;}
.y44{bottom:367.866450px;}
.y13e{bottom:369.414300px;}
.ya2{bottom:373.432500px;}
.y8d{bottom:374.867850px;}
.y117{bottom:375.456600px;}
.yee{bottom:377.198700px;}
.yc1{bottom:378.386400px;}
.y18{bottom:382.177680px;}
.yc2{bottom:382.684200px;}
.y14f{bottom:388.591950px;}
.y68{bottom:393.843750px;}
.y43{bottom:399.072150px;}
.y13d{bottom:400.619850px;}
.ya1{bottom:404.638050px;}
.y8c{bottom:406.073400px;}
.y17{bottom:406.239330px;}
.y116{bottom:409.452600px;}
.yc0{bottom:409.591950px;}
.ya7{bottom:410.071950px;}
.y14e{bottom:419.797500px;}
.y12e{bottom:422.081550px;}
.yf5{bottom:423.315000px;}
.yd8{bottom:425.049300px;}
.yd9{bottom:429.347100px;}
.y41{bottom:430.277700px;}
.y16{bottom:430.300980px;}
.y13c{bottom:431.825400px;}
.y42{bottom:434.575500px;}
.ya0{bottom:435.843750px;}
.y8b{bottom:437.278950px;}
.yed{bottom:440.141550px;}
.ybf{bottom:440.797500px;}
.y115{bottom:443.448600px;}
.ye1{bottom:445.095450px;}
.y67{bottom:446.049300px;}
.y14d{bottom:451.003050px;}
.y12d{bottom:451.590900px;}
.yf3{bottom:452.824350px;}
.y15{bottom:454.362630px;}
.yd7{bottom:456.254850px;}
.ya5{bottom:461.145150px;}
.y40{bottom:461.483250px;}
.y13b{bottom:463.030950px;}
.y66{bottom:467.049300px;}
.y8a{bottom:468.484500px;}
.ybe{bottom:472.003050px;}
.y114{bottom:477.444600px;}
.y14{bottom:478.424280px;}
.y12c{bottom:481.100100px;}
.yef{bottom:481.583550px;}
.y14c{bottom:482.208750px;}
.yd6{bottom:487.460400px;}
.y148{bottom:491.758200px;}
.y3f{bottom:492.688800px;}
.y13a{bottom:494.236500px;}
.y65{bottom:498.254850px;}
.y88{bottom:499.690200px;}
.y13{bottom:502.485930px;}
.ybd{bottom:503.208750px;}
.y89{bottom:503.988000px;}
.y12b{bottom:510.609450px;}
.y113{bottom:511.440600px;}
.y14b{bottom:513.414300px;}
.yd5{bottom:518.665950px;}
.y3e{bottom:523.894350px;}
.y139{bottom:525.442050px;}
.y64{bottom:529.460400px;}
.y87{bottom:530.895750px;}
.ybc{bottom:534.414300px;}
.y12a{bottom:540.118650px;}
.y106{bottom:541.662750px;}
.y14a{bottom:544.619850px;}
.y111{bottom:545.436600px;}
.yd4{bottom:549.871500px;}
.y12{bottom:550.609380px;}
.y3d{bottom:555.099900px;}
.y63{bottom:560.665950px;}
.y86{bottom:562.101300px;}
.ybb{bottom:565.619850px;}
.y129{bottom:569.628000px;}
.y11{bottom:574.671030px;}
.y149{bottom:575.825400px;}
.y138{bottom:576.913800px;}
.y110{bottom:578.682600px;}
.yd3{bottom:581.077050px;}
.y105{bottom:584.102250px;}
.y62{bottom:591.871500px;}
.y85{bottom:593.306850px;}
.y137{bottom:593.413800px;}
.yba{bottom:596.825400px;}
.y10{bottom:598.732680px;}
.y128{bottom:599.137350px;}
.y136{bottom:609.913800px;}
.yd2{bottom:612.282600px;}
.y104{bottom:615.307800px;}
.y3c{bottom:617.511000px;}
.yf{bottom:622.794330px;}
.y61{bottom:623.077050px;}
.y84{bottom:624.512400px;}
.y135{bottom:626.413800px;}
.y9f{bottom:627.375000px;}
.yb9{bottom:628.030950px;}
.y127{bottom:628.646550px;}
.y134{bottom:642.913800px;}
.yd1{bottom:643.488150px;}
.y103{bottom:646.513350px;}
.ye{bottom:646.855980px;}
.y60{bottom:654.282600px;}
.y83{bottom:655.717950px;}
.y11e{bottom:658.048800px;}
.y126{bottom:658.155900px;}
.yb8{bottom:659.236500px;}
.y133{bottom:659.413800px;}
.ye0{bottom:663.534300px;}
.yd{bottom:670.917630px;}
.y3b{bottom:672.778350px;}
.yd0{bottom:674.693850px;}
.y132{bottom:675.913800px;}
.y102{bottom:677.718900px;}
.y5f{bottom:685.488150px;}
.y82{bottom:686.923500px;}
.yb7{bottom:690.442050px;}
.y131{bottom:692.413800px;}
.y3a{bottom:696.840000px;}
.ycf{bottom:705.899400px;}
.y130{bottom:708.913800px;}
.y101{bottom:708.924450px;}
.y5e{bottom:716.693850px;}
.y81{bottom:718.129050px;}
.y125{bottom:720.665100px;}
.yb6{bottom:721.647600px;}
.yc{bottom:726.184980px;}
.yce{bottom:737.104950px;}
.y100{bottom:740.130000px;}
.y39{bottom:744.963300px;}
.y5d{bottom:747.899400px;}
.y80{bottom:749.334600px;}
.y124{bottom:750.174450px;}
.ya{bottom:750.246630px;}
.yb5{bottom:752.853150px;}
.yb{bottom:754.544430px;}
.y12f{bottom:757.151100px;}
.ycd{bottom:768.310500px;}
.y38{bottom:769.024950px;}
.y147{bottom:772.608300px;}
.y123{bottom:778.933650px;}
.y5c{bottom:779.104950px;}
.y7f{bottom:780.540300px;}
.yb4{bottom:784.058850px;}
.y37{bottom:793.086600px;}
.yff{bottom:794.003100px;}
.y9{bottom:796.042080px;}
.y146{bottom:799.516050px;}
.y5b{bottom:810.310500px;}
.y7d{bottom:811.745850px;}
.yfe{bottom:812.904450px;}
.yb3{bottom:815.264400px;}
.y7e{bottom:816.043650px;}
.y36{bottom:817.148250px;}
.y8{bottom:820.042080px;}
.ycc{bottom:820.516050px;}
.y35{bottom:841.209900px;}
.y5a{bottom:841.516050px;}
.y7c{bottom:842.951400px;}
.y11d{bottom:845.813850px;}
.yb1{bottom:846.469950px;}
.yb2{bottom:850.767750px;}
.y145{bottom:851.721600px;}
.y34{bottom:865.271700px;}
.y7{bottom:868.042080px;}
.y59{bottom:872.721600px;}
.y7b{bottom:874.156950px;}
.y9e{bottom:877.019400px;}
.yb0{bottom:877.675500px;}
.y33{bottom:889.333350px;}
.y6{bottom:892.042080px;}
.y57{bottom:903.927150px;}
.y7a{bottom:905.362500px;}
.y58{bottom:908.225100px;}
.yaf{bottom:908.881050px;}
.y32{bottom:913.395000px;}
.y56{bottom:935.132700px;}
.y79{bottom:936.568050px;}
.y31{bottom:937.456650px;}
.ycb{bottom:939.430650px;}
.yae{bottom:940.086600px;}
.y10f{bottom:950.085000px;}
.y30{bottom:961.518300px;}
.y55{bottom:966.338250px;}
.y78{bottom:967.773600px;}
.yec{bottom:970.636200px;}
.yad{bottom:971.292150px;}
.y10e{bottom:979.594350px;}
.y2f{bottom:985.579950px;}
.y76{bottom:1002.497700px;}
.y77{bottom:1006.795650px;}
.y10d{bottom:1009.103550px;}
.y2e{bottom:1009.641600px;}
.y1{bottom:1021.812750px;}
.y2d{bottom:1033.703250px;}
.y10c{bottom:1038.612900px;}
.y10b{bottom:1068.122100px;}
.y10a{bottom:1097.631450px;}
.y109{bottom:1127.140650px;}
.y51{bottom:1151.919900px;}
.y2b{bottom:1159.735950px;}
.h1a{height:28.009275px;}
.h18{height:31.054695px;}
.h1e{height:32.496000px;}
.ha{height:35.859377px;}
.h7{height:43.031250px;}
.h17{height:43.989258px;}
.h19{height:44.509275px;}
.he{height:46.716795px;}
.h9{height:53.789062px;}
.h10{height:54.169922px;}
.hc{height:55.116360px;}
.h12{height:59.167969px;}
.h1b{height:61.009275px;}
.h11{height:62.932485px;}
.h15{height:63.216795px;}
.hf{height:64.094610px;}
.h14{height:64.406250px;}
.h2{height:64.546875px;}
.h6{height:65.003906px;}
.h5{height:75.140625px;}
.h4{height:75.837891px;}
.hb{height:77.593980px;}
.h1c{height:79.716795px;}
.h8{height:90.878910px;}
.h16{height:134.810295px;}
.h1{height:192.137250px;}
.h3{height:916.770150px;}
.h13{height:987.962400px;}
.h1d{height:1051.800000px;}
.hd{height:1055.327400px;}
.h0{height:1263.000000px;}
.w1a{width:77.607405px;}
.wa{width:91.429050px;}
.w15{width:91.816125px;}
.w8{width:93.896190px;}
.w9{width:96.363330px;}
.w12{width:103.029435px;}
.w11{width:103.178970px;}
.wd{width:104.362860px;}
.w16{width:107.964300px;}
.w18{width:109.011090px;}
.wc{width:115.128570px;}
.w14{width:122.995500px;}
.wb{width:125.670000px;}
.we{width:131.143215px;}
.w13{width:131.893215px;}
.wf{width:140.788635px;}
.w19{width:144.228075px;}
.w10{width:150.209700px;}
.w17{width:189.539100px;}
.w3{width:645.728850px;}
.w1{width:647.404650px;}
.w6{width:647.559900px;}
.w2{width:649.080450px;}
.w7{width:653.929800px;}
.w5{width:656.419500px;}
.w4{width:656.483850px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:4.189455px;}
.x5{left:5.865225px;}
.x2b{left:7.327050px;}
.x29{left:8.598495px;}
.x7{left:9.750978px;}
.xe{left:11.701169px;}
.x38{left:13.176120px;}
.x4d{left:14.361795px;}
.x2d{left:15.707100px;}
.x1c{left:18.374997px;}
.x4b{left:20.210175px;}
.x3b{left:21.525750px;}
.x2e{left:24.042150px;}
.x3c{left:25.279350px;}
.x33{left:26.513550px;}
.x3a{left:27.765900px;}
.xb{left:32.027340px;}
.x43{left:33.394650px;}
.x32{left:34.822950px;}
.x39{left:37.372200px;}
.x34{left:39.839250px;}
.x35{left:41.543400px;}
.x37{left:43.839150px;}
.x44{left:45.137100px;}
.x4c{left:46.719900px;}
.xf{left:48.765105px;}
.x49{left:50.334450px;}
.x36{left:53.393100px;}
.x3d{left:54.492750px;}
.x41{left:57.880950px;}
.x11{left:59.027340px;}
.x4a{left:63.771750px;}
.x3{left:67.184790px;}
.xc{left:68.852340px;}
.x23{left:70.048890px;}
.x1e{left:84.076140px;}
.x12{left:86.027340px;}
.x13{left:91.158630px;}
.x15{left:93.136230px;}
.x16{left:105.159630px;}
.x4{left:106.555440px;}
.xa{left:109.055790px;}
.x1{left:122.547660px;}
.x28{left:129.075000px;}
.x24{left:132.125940px;}
.x10{left:144.792690px;}
.x18{left:147.349290px;}
.x52{left:150.090840px;}
.x4e{left:175.127340px;}
.x20{left:199.133790px;}
.x2a{left:224.471250px;}
.x6{left:235.927725px;}
.x45{left:238.539300px;}
.xd{left:259.189440px;}
.x3e{left:261.718200px;}
.x17{left:263.007030px;}
.x1b{left:265.218690px;}
.x4f{left:279.193290px;}
.x2c{left:322.334550px;}
.x1f{left:353.143890px;}
.x27{left:403.936590px;}
.x50{left:407.871240px;}
.x2{left:410.096490px;}
.x2f{left:415.263600px;}
.x46{left:429.578400px;}
.x1a{left:450.202140px;}
.x51{left:469.933590px;}
.x21{left:471.313440px;}
.x9{left:499.771905px;}
.x26{left:504.431640px;}
.x42{left:535.900050px;}
.x47{left:540.089550px;}
.x30{left:542.433600px;}
.x3f{left:555.716550px;}
.x22{left:561.929490px;}
.x25{left:586.011540px;}
.x19{left:587.691540px;}
.x1d{left:603.360390px;}
.x14{left:612.012330px;}
.x31{left:659.062200px;}
.x40{left:660.395550px;}
.x48{left:685.817550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-3.968000pt;}
.ls19{letter-spacing:-3.952000pt;}
.ls13{letter-spacing:-3.161600pt;}
.ls6{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.008533pt;}
.ls4{letter-spacing:0.010667pt;}
.ls9{letter-spacing:0.011733pt;}
.ls0{letter-spacing:0.012800pt;}
.lsd{letter-spacing:0.153600pt;}
.ls15{letter-spacing:0.202667pt;}
.ls7{letter-spacing:0.204800pt;}
.ls22{letter-spacing:0.243200pt;}
.ls21{letter-spacing:0.262400pt;}
.ls17{letter-spacing:0.298667pt;}
.ls2c{letter-spacing:0.371200pt;}
.ls2e{letter-spacing:0.409600pt;}
.ls20{letter-spacing:0.422400pt;}
.ls1b{letter-spacing:0.556800pt;}
.ls1f{letter-spacing:0.883200pt;}
.ls1e{letter-spacing:0.908800pt;}
.ls1a{letter-spacing:1.082667pt;}
.ls26{letter-spacing:1.171200pt;}
.ls1{letter-spacing:1.260800pt;}
.ls2{letter-spacing:1.324800pt;}
.ls27{letter-spacing:1.376000pt;}
.lsa{letter-spacing:1.578667pt;}
.lsf{letter-spacing:1.651200pt;}
.lse{letter-spacing:1.657600pt;}
.ls28{letter-spacing:1.676800pt;}
.ls23{letter-spacing:1.772800pt;}
.ls1c{letter-spacing:1.909333pt;}
.ls1d{letter-spacing:2.117333pt;}
.lsc{letter-spacing:2.150400pt;}
.ls3{letter-spacing:2.195200pt;}
.ls2a{letter-spacing:2.406400pt;}
.ls2b{letter-spacing:2.419200pt;}
.ls2f{letter-spacing:2.572800pt;}
.ls29{letter-spacing:2.643200pt;}
.ls18{letter-spacing:3.568000pt;}
.ls2d{letter-spacing:3.808000pt;}
.ls14{letter-spacing:4.025600pt;}
.lsb{letter-spacing:4.372107pt;}
.ls11{letter-spacing:7.571200pt;}
.ls25{letter-spacing:18.483200pt;}
.ls24{letter-spacing:18.508800pt;}
.ls10{letter-spacing:1326.890133pt;}
.ws11{word-spacing:-20.198400pt;}
.ws10{word-spacing:-18.963200pt;}
.wsf{word-spacing:-18.054400pt;}
.ws6{word-spacing:-17.804800pt;}
.wsb{word-spacing:-17.792000pt;}
.wse{word-spacing:-17.779200pt;}
.ws3{word-spacing:-16.309333pt;}
.ws2{word-spacing:-14.837333pt;}
.ws9{word-spacing:-14.826667pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:5.896320pt;}
.ws7{word-spacing:5.900373pt;}
.ws1{word-spacing:24.793600pt;}
.wsc{word-spacing:29.617387pt;}
.wsa{word-spacing:29.628053pt;}
.wsd{word-spacing:29.666453pt;}
.ws8{word-spacing:38.737067pt;}
.ws4{word-spacing:67.392000pt;}
._2d{margin-left:-18.496000pt;}
._17{margin-left:-7.188267pt;}
._3{margin-left:-5.532800pt;}
._d{margin-left:-4.033067pt;}
._2{margin-left:-2.814933pt;}
._4{margin-left:-1.344000pt;}
._7{width:1.254400pt;}
._19{width:2.144000pt;}
._a{width:3.116800pt;}
._18{width:4.108800pt;}
._1{width:5.652267pt;}
._f{width:6.736373pt;}
._11{width:7.654400pt;}
._e{width:8.780800pt;}
._1c{width:9.958400pt;}
._c{width:11.187200pt;}
._13{width:12.742400pt;}
._1e{width:13.785600pt;}
._b{width:14.720000pt;}
._10{width:15.705600pt;}
._15{width:16.640000pt;}
._2c{width:18.304000pt;}
._5{width:19.719467pt;}
._14{width:20.611200pt;}
._1d{width:21.779200pt;}
._6{width:22.976000pt;}
._2b{width:24.181333pt;}
._25{width:25.610667pt;}
._20{width:27.385600pt;}
._12{width:28.422400pt;}
._24{width:29.408000pt;}
._16{width:30.305600pt;}
._9{width:31.424000pt;}
._8{width:32.613973pt;}
._1a{width:33.523200pt;}
._1b{width:34.419200pt;}
._23{width:37.280000pt;}
._22{width:38.219733pt;}
._0{width:40.133333pt;}
._28{width:46.178133pt;}
._2a{width:47.278933pt;}
._29{width:77.110933pt;}
._1f{width:142.447467pt;}
._21{width:264.341333pt;}
._27{width:908.874667pt;}
._26{width:1120.608000pt;}
.fs5{font-size:35.555557pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:6.985600pt;}
.y28{bottom:6.985680pt;}
.y72{bottom:6.985733pt;}
.yf4{bottom:8.158800pt;}
.yf2{bottom:8.158933pt;}
.y98{bottom:8.382800pt;}
.y50{bottom:9.120240pt;}
.y112{bottom:9.480400pt;}
.y53{bottom:10.012267pt;}
.y4{bottom:11.104267pt;}
.ya6{bottom:12.203067pt;}
.y99{bottom:12.203200pt;}
.y75{bottom:12.684760pt;}
.yf0{bottom:14.825600pt;}
.yca{bottom:21.652267pt;}
.y27{bottom:21.652347pt;}
.y71{bottom:21.652400pt;}
.y94{bottom:22.304667pt;}
.y4e{bottom:22.304693pt;}
.y9c{bottom:22.304800pt;}
.yf8{bottom:22.825467pt;}
.yf1{bottom:22.825600pt;}
.y95{bottom:26.124933pt;}
.y4f{bottom:26.125000pt;}
.y9d{bottom:26.125067pt;}
.y52{bottom:29.019600pt;}
.y3{bottom:29.770933pt;}
.y26{bottom:36.318987pt;}
.yfd{bottom:36.319067pt;}
.yab{bottom:36.971333pt;}
.yea{bottom:36.971360pt;}
.y6f{bottom:36.971467pt;}
.yf7{bottom:37.492133pt;}
.y73{bottom:38.248573pt;}
.y2a{bottom:39.254813pt;}
.yac{bottom:40.791600pt;}
.yeb{bottom:40.791667pt;}
.y70{bottom:40.791733pt;}
.y29{bottom:40.971947pt;}
.y74{bottom:41.844067pt;}
.y108{bottom:43.906400pt;}
.y25{bottom:50.985653pt;}
.yfb{bottom:51.638133pt;}
.yfc{bottom:55.458400pt;}
.y107{bottom:60.707600pt;}
.y23{bottom:65.652320pt;}
.y24{bottom:68.835920pt;}
.y2{bottom:70.093867pt;}
.y15a{bottom:82.295467pt;}
.y15d{bottom:86.698933pt;}
.y4d{bottom:90.373173pt;}
.y2c{bottom:94.533333pt;}
.y153{bottom:95.770533pt;}
.y122{bottom:100.938667pt;}
.y22{bottom:102.138213pt;}
.y4c{bottom:105.086267pt;}
.y5{bottom:106.298373pt;}
.y159{bottom:110.033867pt;}
.y15c{bottom:114.437200pt;}
.y152{bottom:123.508800pt;}
.y21{bottom:125.832027pt;}
.y121{bottom:128.676933pt;}
.y4b{bottom:132.824533pt;}
.y9b{bottom:136.603600pt;}
.y158{bottom:137.772133pt;}
.y20{bottom:147.220160pt;}
.y6e{bottom:150.253067pt;}
.y151{bottom:151.247067pt;}
.ye9{bottom:151.270267pt;}
.y54{bottom:154.413333pt;}
.ydd{bottom:155.915333pt;}
.y4a{bottom:160.562800pt;}
.y157{bottom:165.510400pt;}
.yc9{bottom:169.913733pt;}
.y15b{bottom:169.913867pt;}
.y120{bottom:176.564133pt;}
.ye7{bottom:178.985467pt;}
.y11c{bottom:182.645867pt;}
.y9a{bottom:182.834133pt;}
.ydc{bottom:183.653600pt;}
.y49{bottom:188.301067pt;}
.y144{bottom:189.676800pt;}
.y1f{bottom:189.996427pt;}
.y6d{bottom:192.725200pt;}
.y11f{bottom:193.365333pt;}
.ydf{bottom:196.483600pt;}
.ye8{bottom:197.500800pt;}
.yc7{bottom:197.652133pt;}
.yc8{bottom:201.472400pt;}
.ye6{bottom:206.723733pt;}
.yaa{bottom:211.150267pt;}
.y1e{bottom:211.384560pt;}
.y6c{bottom:211.391867pt;}
.y11b{bottom:212.864533pt;}
.y48{bottom:216.039333pt;}
.y143{bottom:217.415067pt;}
.y156{bottom:220.986933pt;}
.yc6{bottom:225.390400pt;}
.yfa{bottom:225.816933pt;}
.y97{bottom:228.232533pt;}
.y1d{bottom:232.772693pt;}
.ye5{bottom:234.462000pt;}
.ydb{bottom:239.130133pt;}
.yde{bottom:242.714000pt;}
.y11a{bottom:243.083200pt;}
.y47{bottom:243.777600pt;}
.y141{bottom:245.153333pt;}
.y155{bottom:248.725200pt;}
.y142{bottom:248.973733pt;}
.y92{bottom:250.001067pt;}
.yc5{bottom:253.128667pt;}
.y1c{bottom:254.160827pt;}
.y93{bottom:260.541200pt;}
.ye3{bottom:262.200267pt;}
.ye4{bottom:266.020533pt;}
.y6b{bottom:266.868400pt;}
.y46{bottom:271.515867pt;}
.ya9{bottom:272.047333pt;}
.y140{bottom:272.891600pt;}
.y119{bottom:273.301867pt;}
.y1b{bottom:275.548960pt;}
.y154{bottom:276.463467pt;}
.y90{bottom:277.739333pt;}
.yc4{bottom:280.866933pt;}
.y91{bottom:281.559600pt;}
.ye2{bottom:289.938533pt;}
.yf9{bottom:294.485733pt;}
.y6a{bottom:294.606667pt;}
.y1a{bottom:296.937227pt;}
.yda{bottom:298.427067pt;}
.y45{bottom:299.254133pt;}
.y13f{bottom:300.630000pt;}
.y118{bottom:303.520533pt;}
.ya3{bottom:304.201733pt;}
.y8e{bottom:305.477600pt;}
.ya4{bottom:308.022133pt;}
.yc3{bottom:308.605200pt;}
.y8f{bottom:309.297867pt;}
.y150{bottom:317.676800pt;}
.ya8{bottom:318.277867pt;}
.y19{bottom:318.325360pt;}
.yf6{bottom:320.716267pt;}
.y69{bottom:322.344933pt;}
.y44{bottom:326.992400pt;}
.y13e{bottom:328.368267pt;}
.ya2{bottom:331.940000pt;}
.y8d{bottom:333.215867pt;}
.y117{bottom:333.739200pt;}
.yee{bottom:335.287733pt;}
.yc1{bottom:336.343467pt;}
.y18{bottom:339.713493pt;}
.yc2{bottom:340.163733pt;}
.y14f{bottom:345.415067pt;}
.y68{bottom:350.083333pt;}
.y43{bottom:354.730800pt;}
.y13d{bottom:356.106533pt;}
.ya1{bottom:359.678267pt;}
.y8c{bottom:360.954133pt;}
.y17{bottom:361.101627pt;}
.y116{bottom:363.957867pt;}
.yc0{bottom:364.081733pt;}
.ya7{bottom:364.508400pt;}
.y14e{bottom:373.153333pt;}
.y12e{bottom:375.183600pt;}
.yf5{bottom:376.280000pt;}
.yd8{bottom:377.821600pt;}
.yd9{bottom:381.641867pt;}
.y41{bottom:382.469067pt;}
.y16{bottom:382.489760pt;}
.y13c{bottom:383.844800pt;}
.y42{bottom:386.289333pt;}
.ya0{bottom:387.416667pt;}
.y8b{bottom:388.692400pt;}
.yed{bottom:391.236933pt;}
.ybf{bottom:391.820000pt;}
.y115{bottom:394.176533pt;}
.ye1{bottom:395.640400pt;}
.y67{bottom:396.488267pt;}
.y14d{bottom:400.891600pt;}
.y12d{bottom:401.414133pt;}
.yf3{bottom:402.510533pt;}
.y15{bottom:403.877893pt;}
.yd7{bottom:405.559867pt;}
.ya5{bottom:409.906800pt;}
.y40{bottom:410.207333pt;}
.y13b{bottom:411.583067pt;}
.y66{bottom:415.154933pt;}
.y8a{bottom:416.430667pt;}
.ybe{bottom:419.558267pt;}
.y114{bottom:424.395200pt;}
.y14{bottom:425.266027pt;}
.y12c{bottom:427.644533pt;}
.yef{bottom:428.074267pt;}
.y14c{bottom:428.630000pt;}
.yd6{bottom:433.298133pt;}
.y148{bottom:437.118400pt;}
.y3f{bottom:437.945600pt;}
.y13a{bottom:439.321333pt;}
.y65{bottom:442.893200pt;}
.y88{bottom:444.169067pt;}
.y13{bottom:446.654160pt;}
.ybd{bottom:447.296667pt;}
.y89{bottom:447.989333pt;}
.y12b{bottom:453.875067pt;}
.y113{bottom:454.613867pt;}
.y14b{bottom:456.368267pt;}
.yd5{bottom:461.036400pt;}
.y3e{bottom:465.683867pt;}
.y139{bottom:467.059600pt;}
.y64{bottom:470.631467pt;}
.y87{bottom:471.907333pt;}
.ybc{bottom:475.034933pt;}
.y12a{bottom:480.105467pt;}
.y106{bottom:481.478000pt;}
.y14a{bottom:484.106533pt;}
.y111{bottom:484.832533pt;}
.yd4{bottom:488.774667pt;}
.y12{bottom:489.430560pt;}
.y3d{bottom:493.422133pt;}
.y63{bottom:498.369733pt;}
.y86{bottom:499.645600pt;}
.ybb{bottom:502.773200pt;}
.y129{bottom:506.336000pt;}
.y11{bottom:510.818693pt;}
.y149{bottom:511.844800pt;}
.y138{bottom:512.812267pt;}
.y110{bottom:514.384533pt;}
.yd3{bottom:516.512933pt;}
.y105{bottom:519.202000pt;}
.y62{bottom:526.108000pt;}
.y85{bottom:527.383867pt;}
.y137{bottom:527.478933pt;}
.yba{bottom:530.511467pt;}
.y10{bottom:532.206827pt;}
.y128{bottom:532.566533pt;}
.y136{bottom:542.145600pt;}
.yd2{bottom:544.251200pt;}
.y104{bottom:546.940267pt;}
.y3c{bottom:548.898667pt;}
.yf{bottom:553.594960pt;}
.y61{bottom:553.846267pt;}
.y84{bottom:555.122133pt;}
.y135{bottom:556.812267pt;}
.y9f{bottom:557.666667pt;}
.yb9{bottom:558.249733pt;}
.y127{bottom:558.796933pt;}
.y134{bottom:571.478933pt;}
.yd1{bottom:571.989467pt;}
.y103{bottom:574.678533pt;}
.ye{bottom:574.983093pt;}
.y60{bottom:581.584533pt;}
.y83{bottom:582.860400pt;}
.y11e{bottom:584.932267pt;}
.y126{bottom:585.027467pt;}
.yb8{bottom:585.988000pt;}
.y133{bottom:586.145600pt;}
.ye0{bottom:589.808267pt;}
.yd{bottom:596.371227pt;}
.y3b{bottom:598.025200pt;}
.yd0{bottom:599.727867pt;}
.y132{bottom:600.812267pt;}
.y102{bottom:602.416800pt;}
.y5f{bottom:609.322800pt;}
.y82{bottom:610.598667pt;}
.yb7{bottom:613.726267pt;}
.y131{bottom:615.478933pt;}
.y3a{bottom:619.413333pt;}
.ycf{bottom:627.466133pt;}
.y130{bottom:630.145600pt;}
.y101{bottom:630.155067pt;}
.y5e{bottom:637.061200pt;}
.y81{bottom:638.336933pt;}
.y125{bottom:640.591200pt;}
.yb6{bottom:641.464533pt;}
.yc{bottom:645.497760pt;}
.yce{bottom:655.204400pt;}
.y100{bottom:657.893333pt;}
.y39{bottom:662.189600pt;}
.y5d{bottom:664.799467pt;}
.y80{bottom:666.075200pt;}
.y124{bottom:666.821733pt;}
.ya{bottom:666.885893pt;}
.yb5{bottom:669.202800pt;}
.yb{bottom:670.706160pt;}
.y12f{bottom:673.023200pt;}
.ycd{bottom:682.942667pt;}
.y38{bottom:683.577733pt;}
.y147{bottom:686.762933pt;}
.y123{bottom:692.385467pt;}
.y5c{bottom:692.537733pt;}
.y7f{bottom:693.813600pt;}
.yb4{bottom:696.941200pt;}
.y37{bottom:704.965867pt;}
.yff{bottom:705.780533pt;}
.y9{bottom:707.592960pt;}
.y146{bottom:710.680933pt;}
.y5b{bottom:720.276000pt;}
.y7d{bottom:721.551867pt;}
.yfe{bottom:722.581733pt;}
.yb3{bottom:724.679467pt;}
.y7e{bottom:725.372133pt;}
.y36{bottom:726.354000pt;}
.y8{bottom:728.926293pt;}
.ycc{bottom:729.347600pt;}
.y35{bottom:747.742133pt;}
.y5a{bottom:748.014267pt;}
.y7c{bottom:749.290133pt;}
.y11d{bottom:751.834533pt;}
.yb1{bottom:752.417733pt;}
.yb2{bottom:756.238000pt;}
.y145{bottom:757.085867pt;}
.y34{bottom:769.130400pt;}
.y7{bottom:771.592960pt;}
.y59{bottom:775.752533pt;}
.y7b{bottom:777.028400pt;}
.y9e{bottom:779.572800pt;}
.yb0{bottom:780.156000pt;}
.y33{bottom:790.518533pt;}
.y6{bottom:792.926293pt;}
.y57{bottom:803.490800pt;}
.y7a{bottom:804.766667pt;}
.y58{bottom:807.311200pt;}
.yaf{bottom:807.894267pt;}
.y32{bottom:811.906667pt;}
.y56{bottom:831.229067pt;}
.y79{bottom:832.504933pt;}
.y31{bottom:833.294800pt;}
.ycb{bottom:835.049467pt;}
.yae{bottom:835.632533pt;}
.y10f{bottom:844.520000pt;}
.y30{bottom:854.682933pt;}
.y55{bottom:858.967333pt;}
.y78{bottom:860.243200pt;}
.yec{bottom:862.787733pt;}
.yad{bottom:863.370800pt;}
.y10e{bottom:870.750533pt;}
.y2f{bottom:876.071067pt;}
.y76{bottom:891.109067pt;}
.y77{bottom:894.929467pt;}
.y10d{bottom:896.980933pt;}
.y2e{bottom:897.459200pt;}
.y1{bottom:908.278000pt;}
.y2d{bottom:918.847333pt;}
.y10c{bottom:923.211467pt;}
.y10b{bottom:949.441867pt;}
.y10a{bottom:975.672400pt;}
.y109{bottom:1001.902800pt;}
.y51{bottom:1023.928800pt;}
.y2b{bottom:1030.876400pt;}
.h1a{height:24.897133pt;}
.h18{height:27.604173pt;}
.h1e{height:28.885333pt;}
.ha{height:31.875002pt;}
.h7{height:38.250000pt;}
.h17{height:39.101562pt;}
.h19{height:39.563800pt;}
.he{height:41.526040pt;}
.h9{height:47.812500pt;}
.h10{height:48.151042pt;}
.hc{height:48.992320pt;}
.h12{height:52.593750pt;}
.h1b{height:54.230467pt;}
.h11{height:55.939987pt;}
.h15{height:56.192707pt;}
.hf{height:56.972987pt;}
.h14{height:57.250000pt;}
.h2{height:57.375000pt;}
.h6{height:57.781250pt;}
.h5{height:66.791667pt;}
.h4{height:67.411458pt;}
.hb{height:68.972427pt;}
.h1c{height:70.859373pt;}
.h8{height:80.781253pt;}
.h16{height:119.831373pt;}
.h1{height:170.788667pt;}
.h3{height:814.906800pt;}
.h13{height:878.188800pt;}
.h1d{height:934.933333pt;}
.hd{height:938.068800pt;}
.h0{height:1122.666667pt;}
.w1a{width:68.984360pt;}
.wa{width:81.270267pt;}
.w15{width:81.614333pt;}
.w8{width:83.463280pt;}
.w9{width:85.656293pt;}
.w12{width:91.581720pt;}
.w11{width:91.714640pt;}
.wd{width:92.766987pt;}
.w16{width:95.968267pt;}
.w18{width:96.898747pt;}
.wc{width:102.336507pt;}
.w14{width:109.329333pt;}
.wb{width:111.706667pt;}
.we{width:116.571747pt;}
.w13{width:117.238413pt;}
.wf{width:125.145453pt;}
.w19{width:128.202733pt;}
.w10{width:133.519733pt;}
.w17{width:168.479200pt;}
.w3{width:573.981200pt;}
.w1{width:575.470800pt;}
.w6{width:575.608800pt;}
.w2{width:576.960400pt;}
.w7{width:581.270933pt;}
.w5{width:583.484000pt;}
.w4{width:583.541200pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:3.723960pt;}
.x5{left:5.213533pt;}
.x2b{left:6.512933pt;}
.x29{left:7.643107pt;}
.x7{left:8.667536pt;}
.xe{left:10.401039pt;}
.x38{left:11.712107pt;}
.x4d{left:12.766040pt;}
.x2d{left:13.961867pt;}
.x1c{left:16.333331pt;}
.x4b{left:17.964600pt;}
.x3b{left:19.134000pt;}
.x2e{left:21.370800pt;}
.x3c{left:22.470533pt;}
.x33{left:23.567600pt;}
.x3a{left:24.680800pt;}
.xb{left:28.468747pt;}
.x43{left:29.684133pt;}
.x32{left:30.953733pt;}
.x39{left:33.219733pt;}
.x34{left:35.412667pt;}
.x35{left:36.927467pt;}
.x37{left:38.968133pt;}
.x44{left:40.121867pt;}
.x4c{left:41.528800pt;}
.xf{left:43.346760pt;}
.x49{left:44.741733pt;}
.x36{left:47.460533pt;}
.x3d{left:48.438000pt;}
.x41{left:51.449733pt;}
.x11{left:52.468747pt;}
.x4a{left:56.686000pt;}
.x3{left:59.719813pt;}
.xc{left:61.202080pt;}
.x23{left:62.265680pt;}
.x1e{left:74.734347pt;}
.x12{left:76.468747pt;}
.x13{left:81.029893pt;}
.x15{left:82.787760pt;}
.x16{left:93.475227pt;}
.x4{left:94.715947pt;}
.xa{left:96.938480pt;}
.x1{left:108.931253pt;}
.x28{left:114.733333pt;}
.x24{left:117.445280pt;}
.x10{left:128.704613pt;}
.x18{left:130.977147pt;}
.x52{left:133.414080pt;}
.x4e{left:155.668747pt;}
.x20{left:177.007813pt;}
.x2a{left:199.530000pt;}
.x6{left:209.713533pt;}
.x45{left:212.034933pt;}
.xd{left:230.390613pt;}
.x3e{left:232.638400pt;}
.x17{left:233.784027pt;}
.x1b{left:235.749947pt;}
.x4f{left:248.171813pt;}
.x2c{left:286.519600pt;}
.x1f{left:313.905680pt;}
.x27{left:359.054747pt;}
.x50{left:362.552213pt;}
.x2{left:364.530213pt;}
.x2f{left:369.123200pt;}
.x46{left:381.847467pt;}
.x1a{left:400.179680pt;}
.x51{left:417.718747pt;}
.x21{left:418.945280pt;}
.x9{left:444.241693pt;}
.x26{left:448.383680pt;}
.x42{left:476.355600pt;}
.x47{left:480.079600pt;}
.x30{left:482.163200pt;}
.x3f{left:493.970267pt;}
.x22{left:499.492880pt;}
.x25{left:520.899147pt;}
.x19{left:522.392480pt;}
.x1d{left:536.320347pt;}
.x14{left:544.010960pt;}
.x31{left:585.833067pt;}
.x40{left:587.018267pt;}
.x48{left:609.615600pt;}
}




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