
    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_50d364a56611f8a623508563.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c3b990c00bec8e71614051b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4a3be351b8bf2b7e53375207.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dd25e720955634ac7bcad2bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1f{word-spacing:-40.536000px;}
.ws6{word-spacing:-38.657700px;}
.ws5{word-spacing:-38.647800px;}
.ws9{word-spacing:-38.445300px;}
.ws20{word-spacing:-38.377500px;}
.ws3{word-spacing:-38.374200px;}
.wsd3{word-spacing:-38.359800px;}
.ws16{word-spacing:-38.152800px;}
.ws13{word-spacing:-38.151900px;}
.ws27{word-spacing:-38.147400px;}
.ws21{word-spacing:-38.086200px;}
.ws15{word-spacing:-38.067300px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.wsb{word-spacing:-37.935000px;}
.ws2{word-spacing:-37.931400px;}
.wsca{word-spacing:-37.215000px;}
.wsa{word-spacing:-36.989100px;}
.ws8{word-spacing:-33.547800px;}
.ws22{word-spacing:-31.663800px;}
.ws29{word-spacing:-29.295600px;}
.ws17{word-spacing:-28.080000px;}
.ws1d{word-spacing:-27.341100px;}
.ws58{word-spacing:-23.258400px;}
.ws46{word-spacing:-23.254200px;}
.wsba{word-spacing:-23.252400px;}
.wsa6{word-spacing:-23.249700px;}
.ws14{word-spacing:-23.249400px;}
.ws71{word-spacing:-23.248800px;}
.ws28{word-spacing:-23.245200px;}
.ws9b{word-spacing:-23.243400px;}
.wsad{word-spacing:-23.241600px;}
.ws1c{word-spacing:-23.179200px;}
.ws33{word-spacing:-23.044200px;}
.ws5c{word-spacing:-23.032800px;}
.ws83{word-spacing:-23.029200px;}
.wsa4{word-spacing:-23.020200px;}
.ws61{word-spacing:-23.018400px;}
.ws2e{word-spacing:-22.758000px;}
.ws44{word-spacing:-22.754400px;}
.wsc{word-spacing:-22.752000px;}
.wsc6{word-spacing:-22.750800px;}
.wsa5{word-spacing:-22.748400px;}
.ws12{word-spacing:-22.746600px;}
.ws4c{word-spacing:-22.746000px;}
.wsb4{word-spacing:-22.743000px;}
.ws7a{word-spacing:-22.737600px;}
.ws9f{word-spacing:-22.731000px;}
.ws93{word-spacing:-22.725000px;}
.wsa8{word-spacing:-22.680000px;}
.ws59{word-spacing:-22.536000px;}
.ws39{word-spacing:-22.531200px;}
.ws3e{word-spacing:-22.527000px;}
.ws65{word-spacing:-22.525200px;}
.ws99{word-spacing:-22.521600px;}
.wsa2{word-spacing:-22.512600px;}
.ws7f{word-spacing:-22.318800px;}
.ws84{word-spacing:-22.316400px;}
.wsc9{word-spacing:-22.314600px;}
.ws8a{word-spacing:-22.310100px;}
.wsd{word-spacing:-22.308900px;}
.wsd2{word-spacing:-22.305600px;}
.ws6b{word-spacing:-22.289400px;}
.wsdb{word-spacing:-22.174200px;}
.ws37{word-spacing:-22.032000px;}
.ws26{word-spacing:-22.028400px;}
.ws36{word-spacing:-21.822000px;}
.wsd9{word-spacing:-21.816600px;}
.wsc4{word-spacing:-21.816000px;}
.wsa7{word-spacing:-21.811500px;}
.ws80{word-spacing:-21.807000px;}
.wsbf{word-spacing:-21.085200px;}
.ws96{word-spacing:-21.084600px;}
.wsb0{word-spacing:-21.077100px;}
.ws63{word-spacing:-21.072000px;}
.ws3c{word-spacing:-20.876400px;}
.ws3a{word-spacing:-20.866200px;}
.ws19{word-spacing:-20.510100px;}
.ws41{word-spacing:-20.368800px;}
.wsbe{word-spacing:-20.151000px;}
.wsc0{word-spacing:-20.149200px;}
.wsbd{word-spacing:-19.878000px;}
.wsbb{word-spacing:-19.800000px;}
.ws5e{word-spacing:-19.652400px;}
.wsa1{word-spacing:-19.650600px;}
.wscb{word-spacing:-19.645200px;}
.ws94{word-spacing:-19.435200px;}
.ws56{word-spacing:-19.434600px;}
.wsab{word-spacing:-19.158000px;}
.ws8c{word-spacing:-18.928800px;}
.ws25{word-spacing:-18.923400px;}
.ws7{word-spacing:-18.472500px;}
.wsc3{word-spacing:-18.216000px;}
.ws7c{word-spacing:-18.205200px;}
.ws7e{word-spacing:-17.995200px;}
.ws31{word-spacing:-17.712000px;}
.wsc8{word-spacing:-17.692200px;}
.wsd6{word-spacing:-17.496000px;}
.wsd1{word-spacing:-17.490600px;}
.wsb6{word-spacing:-17.489700px;}
.ws69{word-spacing:-17.485200px;}
.wsbc{word-spacing:-17.479800px;}
.ws78{word-spacing:-17.275200px;}
.ws35{word-spacing:-16.992000px;}
.ws23{word-spacing:-16.988400px;}
.ws7d{word-spacing:-16.975800px;}
.wsae{word-spacing:-16.771500px;}
.ws6d{word-spacing:-16.759200px;}
.ws32{word-spacing:-15.836400px;}
.ws60{word-spacing:-15.558000px;}
.wsaa{word-spacing:-15.330600px;}
.ws4b{word-spacing:-14.832000px;}
.ws9e{word-spacing:-14.603400px;}
.ws2a{word-spacing:-14.392800px;}
.wse{word-spacing:-14.381100px;}
.ws91{word-spacing:-14.118000px;}
.ws2f{word-spacing:-14.112000px;}
.wsdc{word-spacing:-13.902000px;}
.ws85{word-spacing:-13.893000px;}
.ws9a{word-spacing:-13.674600px;}
.wsb2{word-spacing:-13.388400px;}
.wsa3{word-spacing:-13.382400px;}
.ws4d{word-spacing:-13.173000px;}
.ws86{word-spacing:-13.165200px;}
.ws18{word-spacing:-12.888000px;}
.wsd0{word-spacing:-12.670800px;}
.ws1e{word-spacing:-12.456000px;}
.wsb3{word-spacing:-12.447600px;}
.wsb8{word-spacing:-12.227400px;}
.ws8f{word-spacing:-11.719200px;}
.ws24{word-spacing:-11.714400px;}
.wsb9{word-spacing:-11.232000px;}
.ws1a{word-spacing:-11.016000px;}
.wsc2{word-spacing:-10.506600px;}
.wsb1{word-spacing:-10.497300px;}
.ws10{word-spacing:-9.552600px;}
.ws5d{word-spacing:-9.359100px;}
.wsb7{word-spacing:-9.072000px;}
.wsd7{word-spacing:-9.053100px;}
.ws3b{word-spacing:-8.632800px;}
.ws76{word-spacing:-8.335800px;}
.ws66{word-spacing:-8.131200px;}
.wscf{word-spacing:-8.130600px;}
.ws57{word-spacing:-7.920000px;}
.ws53{word-spacing:-7.632000px;}
.wsda{word-spacing:-7.416000px;}
.wsc1{word-spacing:-7.401000px;}
.ws62{word-spacing:-7.396200px;}
.ws51{word-spacing:-7.192800px;}
.ws34{word-spacing:-6.906000px;}
.ws48{word-spacing:-6.192000px;}
.ws92{word-spacing:-5.758200px;}
.wsc7{word-spacing:-5.478000px;}
.ws4a{word-spacing:-5.472000px;}
.ws43{word-spacing:-5.036400px;}
.ws3d{word-spacing:-4.536000px;}
.ws5a{word-spacing:-4.532400px;}
.wsc5{word-spacing:-4.525800px;}
.ws40{word-spacing:-4.310400px;}
.ws3f{word-spacing:-4.038000px;}
.ws38{word-spacing:-3.805200px;}
.ws70{word-spacing:-3.803400px;}
.ws4f{word-spacing:-3.306000px;}
.ws7b{word-spacing:-3.083400px;}
.ws98{word-spacing:-3.078000px;}
.wsd4{word-spacing:-2.588400px;}
.ws74{word-spacing:-2.371200px;}
.ws6e{word-spacing:-2.361600px;}
.ws90{word-spacing:-1.872000px;}
.ws77{word-spacing:-1.656600px;}
.wsd5{word-spacing:-1.158000px;}
.ws68{word-spacing:-0.715200px;}
.ws79{word-spacing:-0.705600px;}
.ws54{word-spacing:-0.432000px;}
.ws9d{word-spacing:-0.413400px;}
.wsaf{word-spacing:-0.214800px;}
.ws2c{word-spacing:0.282000px;}
.ws5f{word-spacing:0.288000px;}
.ws52{word-spacing:1.014000px;}
.wsf{word-spacing:1.018800px;}
.ws49{word-spacing:1.231200px;}
.ws82{word-spacing:1.233000px;}
.ws75{word-spacing:1.443900px;}
.ws88{word-spacing:1.742400px;}
.ws47{word-spacing:1.939800px;}
.wscc{word-spacing:3.393000px;}
.wsa0{word-spacing:4.104000px;}
.ws89{word-spacing:4.329000px;}
.ws50{word-spacing:4.608000px;}
.wscd{word-spacing:4.840200px;}
.ws2d{word-spacing:6.042000px;}
.wsb5{word-spacing:6.067800px;}
.ws64{word-spacing:6.490800px;}
.ws6c{word-spacing:6.996600px;}
.wsd8{word-spacing:7.700700px;}
.ws72{word-spacing:7.708800px;}
.ws67{word-spacing:7.709400px;}
.ws8d{word-spacing:7.927200px;}
.ws6f{word-spacing:8.209800px;}
.wsac{word-spacing:8.424000px;}
.ws42{word-spacing:9.864000px;}
.ws81{word-spacing:9.882000px;}
.ws4e{word-spacing:10.807200px;}
.ws73{word-spacing:11.538000px;}
.ws6a{word-spacing:14.202000px;}
.ws87{word-spacing:14.418000px;}
.ws95{word-spacing:14.920800px;}
.ws5b{word-spacing:16.344000px;}
.ws1b{word-spacing:16.858800px;}
.wsa9{word-spacing:17.064300px;}
.ws55{word-spacing:17.787600px;}
.ws11{word-spacing:18.019800px;}
.ws97{word-spacing:18.288000px;}
.wsce{word-spacing:19.236600px;}
.ws45{word-spacing:19.960200px;}
.ws9c{word-spacing:23.625000px;}
.ws8b{word-spacing:24.493500px;}
.ws30{word-spacing:24.768000px;}
.ws2b{word-spacing:33.133200px;}
.ws8e{word-spacing:36.733200px;}
.ws1{word-spacing:455.092800px;}
._18{margin-left:-2.276400px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._d{width:19.940400px;}
._9{width:21.741000px;}
._20{width:22.794000px;}
._11{width:24.210600px;}
._b{width:25.248600px;}
._e{width:27.814800px;}
._1f{width:28.922400px;}
._c{width:30.133200px;}
._29{width:31.176000px;}
._7{width:32.256000px;}
._13{width:33.256800px;}
._17{width:34.772400px;}
._1{width:36.000000px;}
._12{width:37.789200px;}
._1d{width:38.806200px;}
._15{width:40.312800px;}
._1b{width:41.456400px;}
._5{width:42.821100px;}
._6{width:43.965900px;}
._2b{width:45.135000px;}
._16{width:46.257600px;}
._f{width:47.601600px;}
._19{width:48.916800px;}
._1a{width:49.968600px;}
._1e{width:51.534000px;}
._1c{width:55.926000px;}
._22{width:57.079200px;}
._a{width:58.531200px;}
._8{width:60.460200px;}
._14{width:61.887600px;}
._2a{width:63.201000px;}
._24{width:65.511000px;}
._10{width:66.532800px;}
._27{width:70.564800px;}
._21{width:78.394800px;}
._28{width:82.008000px;}
._23{width:118.158000px;}
._2d{width:122.400000px;}
._2c{width:158.400000px;}
._25{width:188.424000px;}
._26{width:206.424000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y97{bottom:99.975000px;}
.y76{bottom:100.696500px;}
.y88{bottom:100.875000px;}
.yb3{bottom:101.775000px;}
.y2b{bottom:120.675000px;}
.y75{bottom:121.396500px;}
.y87{bottom:121.575000px;}
.y51{bottom:121.936500px;}
.yb2{bottom:122.475000px;}
.y2a{bottom:141.375000px;}
.y74{bottom:142.096500px;}
.y86{bottom:142.275000px;}
.y50{bottom:142.636500px;}
.yb1{bottom:143.175000px;}
.y29{bottom:162.075000px;}
.y85{bottom:162.975000px;}
.y4f{bottom:163.336500px;}
.yb0{bottom:163.875000px;}
.y28{bottom:182.775000px;}
.y73{bottom:183.675000px;}
.y4e{bottom:184.036500px;}
.yaf{bottom:184.575000px;}
.y27{bottom:203.475000px;}
.y72{bottom:204.375000px;}
.y4d{bottom:204.736500px;}
.yae{bottom:205.275000px;}
.y26{bottom:224.175000px;}
.y96{bottom:224.536500px;}
.y71{bottom:225.075000px;}
.y4c{bottom:225.436500px;}
.yad{bottom:225.975000px;}
.y25{bottom:244.875000px;}
.y70{bottom:245.775000px;}
.y4b{bottom:246.136500px;}
.yac{bottom:246.675000px;}
.y24{bottom:265.575000px;}
.y95{bottom:266.295000px;}
.y6f{bottom:266.475000px;}
.y84{bottom:266.836500px;}
.yab{bottom:267.375000px;}
.y23{bottom:286.275000px;}
.y94{bottom:286.996500px;}
.y6e{bottom:287.175000px;}
.y83{bottom:287.536500px;}
.y4a{bottom:287.896500px;}
.yaa{bottom:288.075000px;}
.y22{bottom:306.975000px;}
.y93{bottom:307.696500px;}
.y82{bottom:308.236500px;}
.y49{bottom:308.596500px;}
.ya9{bottom:308.775000px;}
.y92{bottom:328.396500px;}
.y6d{bottom:328.936500px;}
.y48{bottom:329.295000px;}
.ya8{bottom:329.475000px;}
.y21{bottom:348.736500px;}
.y91{bottom:349.096500px;}
.y6c{bottom:349.636500px;}
.y47{bottom:349.996500px;}
.y90{bottom:369.795000px;}
.y6b{bottom:370.336500px;}
.y46{bottom:370.696500px;}
.ya7{bottom:371.236500px;}
.y20{bottom:390.496500px;}
.y6a{bottom:391.036500px;}
.y45{bottom:391.396500px;}
.y1f{bottom:411.196500px;}
.y69{bottom:411.736500px;}
.ya6{bottom:412.996500px;}
.y1e{bottom:431.896500px;}
.y8f{bottom:432.075000px;}
.y68{bottom:432.436500px;}
.y44{bottom:432.975000px;}
.ya5{bottom:433.696500px;}
.y1d{bottom:452.596500px;}
.y8e{bottom:452.775000px;}
.y43{bottom:453.675000px;}
.ya4{bottom:454.396500px;}
.y8d{bottom:473.475000px;}
.y67{bottom:474.196500px;}
.y42{bottom:474.375000px;}
.ya3{bottom:475.096500px;}
.y1c{bottom:494.175000px;}
.y66{bottom:494.896500px;}
.y41{bottom:495.075000px;}
.ya2{bottom:495.796500px;}
.y1b{bottom:514.875000px;}
.y65{bottom:515.596500px;}
.y40{bottom:515.775000px;}
.ya1{bottom:516.496500px;}
.y8c{bottom:535.575000px;}
.y64{bottom:536.296500px;}
.y81{bottom:536.836500px;}
.ya0{bottom:537.195000px;}
.y1a{bottom:556.636500px;}
.y63{bottom:556.996500px;}
.y3f{bottom:557.536500px;}
.y9f{bottom:557.896500px;}
.y19{bottom:577.336500px;}
.y62{bottom:577.695000px;}
.y3e{bottom:578.236500px;}
.y9e{bottom:578.596500px;}
.y80{bottom:598.936500px;}
.y9d{bottom:599.295000px;}
.y18{bottom:619.096500px;}
.y61{bottom:619.275000px;}
.y3d{bottom:619.996500px;}
.y17{bottom:639.795000px;}
.y60{bottom:639.975000px;}
.y3c{bottom:640.695000px;}
.y9c{bottom:640.875000px;}
.y16{bottom:660.496500px;}
.y5f{bottom:660.675000px;}
.y7f{bottom:661.396500px;}
.y9b{bottom:661.575000px;}
.y15{bottom:681.195000px;}
.y5e{bottom:681.375000px;}
.y7e{bottom:682.096500px;}
.y3b{bottom:682.275000px;}
.y14{bottom:701.896500px;}
.y8b{bottom:702.436500px;}
.y7d{bottom:702.795000px;}
.y3a{bottom:702.975000px;}
.y5d{bottom:723.136500px;}
.y39{bottom:723.675000px;}
.y9a{bottom:724.036500px;}
.y13{bottom:743.475000px;}
.y5c{bottom:743.836500px;}
.y8a{bottom:744.195000px;}
.y38{bottom:744.375000px;}
.y99{bottom:744.736500px;}
.y12{bottom:764.175000px;}
.y5b{bottom:764.536500px;}
.y7c{bottom:765.075000px;}
.y98{bottom:765.436500px;}
.y7b{bottom:785.775000px;}
.y37{bottom:786.136500px;}
.y11{bottom:805.936500px;}
.y5a{bottom:806.295000px;}
.y7a{bottom:806.475000px;}
.y36{bottom:806.836500px;}
.y59{bottom:826.996500px;}
.y35{bottom:827.536500px;}
.y10{bottom:847.695000px;}
.y79{bottom:848.236500px;}
.yf{bottom:868.395000px;}
.y58{bottom:868.575000px;}
.y78{bottom:868.936500px;}
.y34{bottom:869.295000px;}
.ye{bottom:889.095000px;}
.y57{bottom:889.275000px;}
.y77{bottom:889.636500px;}
.y33{bottom:889.995000px;}
.yd{bottom:909.795000px;}
.y89{bottom:910.336500px;}
.y32{bottom:910.695000px;}
.y56{bottom:931.036500px;}
.y31{bottom:931.395000px;}
.yc{bottom:951.375000px;}
.y55{bottom:951.736500px;}
.y30{bottom:952.095000px;}
.y54{bottom:972.436500px;}
.y2f{bottom:972.795000px;}
.yb6{bottom:972.975000px;}
.yb{bottom:993.136500px;}
.y2e{bottom:993.495000px;}
.yb5{bottom:993.675000px;}
.y53{bottom:1014.195000px;}
.yb4{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y2d{bottom:1035.075000px;}
.y52{bottom:1055.595000px;}
.y2c{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:63.457031px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.xb{left:128.880000px;}
.xd{left:132.120000px;}
.x9{left:148.320000px;}
.x4{left:177.660000px;}
.xa{left:301.680000px;}
.x5{left:346.500000px;}
.xc{left:365.400000px;}
.x7{left:377.820000px;}
.x3{left:461.625000px;}
.x6{left:556.200000px;}
.x8{left:641.160000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1f{word-spacing:-36.032000pt;}
.ws6{word-spacing:-34.362400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws9{word-spacing:-34.173600pt;}
.ws20{word-spacing:-34.113333pt;}
.ws3{word-spacing:-34.110400pt;}
.wsd3{word-spacing:-34.097600pt;}
.ws16{word-spacing:-33.913600pt;}
.ws13{word-spacing:-33.912800pt;}
.ws27{word-spacing:-33.908800pt;}
.ws21{word-spacing:-33.854400pt;}
.ws15{word-spacing:-33.837600pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.wsb{word-spacing:-33.720000pt;}
.ws2{word-spacing:-33.716800pt;}
.wsca{word-spacing:-33.080000pt;}
.wsa{word-spacing:-32.879200pt;}
.ws8{word-spacing:-29.820267pt;}
.ws22{word-spacing:-28.145600pt;}
.ws29{word-spacing:-26.040533pt;}
.ws17{word-spacing:-24.960000pt;}
.ws1d{word-spacing:-24.303200pt;}
.ws58{word-spacing:-20.674133pt;}
.ws46{word-spacing:-20.670400pt;}
.wsba{word-spacing:-20.668800pt;}
.wsa6{word-spacing:-20.666400pt;}
.ws14{word-spacing:-20.666133pt;}
.ws71{word-spacing:-20.665600pt;}
.ws28{word-spacing:-20.662400pt;}
.ws9b{word-spacing:-20.660800pt;}
.wsad{word-spacing:-20.659200pt;}
.ws1c{word-spacing:-20.603733pt;}
.ws33{word-spacing:-20.483733pt;}
.ws5c{word-spacing:-20.473600pt;}
.ws83{word-spacing:-20.470400pt;}
.wsa4{word-spacing:-20.462400pt;}
.ws61{word-spacing:-20.460800pt;}
.ws2e{word-spacing:-20.229333pt;}
.ws44{word-spacing:-20.226133pt;}
.wsc{word-spacing:-20.224000pt;}
.wsc6{word-spacing:-20.222933pt;}
.wsa5{word-spacing:-20.220800pt;}
.ws12{word-spacing:-20.219200pt;}
.ws4c{word-spacing:-20.218667pt;}
.wsb4{word-spacing:-20.216000pt;}
.ws7a{word-spacing:-20.211200pt;}
.ws9f{word-spacing:-20.205333pt;}
.ws93{word-spacing:-20.200000pt;}
.wsa8{word-spacing:-20.160000pt;}
.ws59{word-spacing:-20.032000pt;}
.ws39{word-spacing:-20.027733pt;}
.ws3e{word-spacing:-20.024000pt;}
.ws65{word-spacing:-20.022400pt;}
.ws99{word-spacing:-20.019200pt;}
.wsa2{word-spacing:-20.011200pt;}
.ws7f{word-spacing:-19.838933pt;}
.ws84{word-spacing:-19.836800pt;}
.wsc9{word-spacing:-19.835200pt;}
.ws8a{word-spacing:-19.831200pt;}
.wsd{word-spacing:-19.830133pt;}
.wsd2{word-spacing:-19.827200pt;}
.ws6b{word-spacing:-19.812800pt;}
.wsdb{word-spacing:-19.710400pt;}
.ws37{word-spacing:-19.584000pt;}
.ws26{word-spacing:-19.580800pt;}
.ws36{word-spacing:-19.397333pt;}
.wsd9{word-spacing:-19.392533pt;}
.wsc4{word-spacing:-19.392000pt;}
.wsa7{word-spacing:-19.388000pt;}
.ws80{word-spacing:-19.384000pt;}
.wsbf{word-spacing:-18.742400pt;}
.ws96{word-spacing:-18.741867pt;}
.wsb0{word-spacing:-18.735200pt;}
.ws63{word-spacing:-18.730667pt;}
.ws3c{word-spacing:-18.556800pt;}
.ws3a{word-spacing:-18.547733pt;}
.ws19{word-spacing:-18.231200pt;}
.ws41{word-spacing:-18.105600pt;}
.wsbe{word-spacing:-17.912000pt;}
.wsc0{word-spacing:-17.910400pt;}
.wsbd{word-spacing:-17.669333pt;}
.wsbb{word-spacing:-17.600000pt;}
.ws5e{word-spacing:-17.468800pt;}
.wsa1{word-spacing:-17.467200pt;}
.wscb{word-spacing:-17.462400pt;}
.ws94{word-spacing:-17.275733pt;}
.ws56{word-spacing:-17.275200pt;}
.wsab{word-spacing:-17.029333pt;}
.ws8c{word-spacing:-16.825600pt;}
.ws25{word-spacing:-16.820800pt;}
.ws7{word-spacing:-16.420000pt;}
.wsc3{word-spacing:-16.192000pt;}
.ws7c{word-spacing:-16.182400pt;}
.ws7e{word-spacing:-15.995733pt;}
.ws31{word-spacing:-15.744000pt;}
.wsc8{word-spacing:-15.726400pt;}
.wsd6{word-spacing:-15.552000pt;}
.wsd1{word-spacing:-15.547200pt;}
.wsb6{word-spacing:-15.546400pt;}
.ws69{word-spacing:-15.542400pt;}
.wsbc{word-spacing:-15.537600pt;}
.ws78{word-spacing:-15.355733pt;}
.ws35{word-spacing:-15.104000pt;}
.ws23{word-spacing:-15.100800pt;}
.ws7d{word-spacing:-15.089600pt;}
.wsae{word-spacing:-14.908000pt;}
.ws6d{word-spacing:-14.897067pt;}
.ws32{word-spacing:-14.076800pt;}
.ws60{word-spacing:-13.829333pt;}
.wsaa{word-spacing:-13.627200pt;}
.ws4b{word-spacing:-13.184000pt;}
.ws9e{word-spacing:-12.980800pt;}
.ws2a{word-spacing:-12.793600pt;}
.wse{word-spacing:-12.783200pt;}
.ws91{word-spacing:-12.549333pt;}
.ws2f{word-spacing:-12.544000pt;}
.wsdc{word-spacing:-12.357333pt;}
.ws85{word-spacing:-12.349333pt;}
.ws9a{word-spacing:-12.155200pt;}
.wsb2{word-spacing:-11.900800pt;}
.wsa3{word-spacing:-11.895467pt;}
.ws4d{word-spacing:-11.709333pt;}
.ws86{word-spacing:-11.702400pt;}
.ws18{word-spacing:-11.456000pt;}
.wsd0{word-spacing:-11.262933pt;}
.ws1e{word-spacing:-11.072000pt;}
.wsb3{word-spacing:-11.064533pt;}
.wsb8{word-spacing:-10.868800pt;}
.ws8f{word-spacing:-10.417067pt;}
.ws24{word-spacing:-10.412800pt;}
.wsb9{word-spacing:-9.984000pt;}
.ws1a{word-spacing:-9.792000pt;}
.wsc2{word-spacing:-9.339200pt;}
.wsb1{word-spacing:-9.330933pt;}
.ws10{word-spacing:-8.491200pt;}
.ws5d{word-spacing:-8.319200pt;}
.wsb7{word-spacing:-8.064000pt;}
.wsd7{word-spacing:-8.047200pt;}
.ws3b{word-spacing:-7.673600pt;}
.ws76{word-spacing:-7.409600pt;}
.ws66{word-spacing:-7.227733pt;}
.wscf{word-spacing:-7.227200pt;}
.ws57{word-spacing:-7.040000pt;}
.ws53{word-spacing:-6.784000pt;}
.wsda{word-spacing:-6.592000pt;}
.wsc1{word-spacing:-6.578667pt;}
.ws62{word-spacing:-6.574400pt;}
.ws51{word-spacing:-6.393600pt;}
.ws34{word-spacing:-6.138667pt;}
.ws48{word-spacing:-5.504000pt;}
.ws92{word-spacing:-5.118400pt;}
.wsc7{word-spacing:-4.869333pt;}
.ws4a{word-spacing:-4.864000pt;}
.ws43{word-spacing:-4.476800pt;}
.ws3d{word-spacing:-4.032000pt;}
.ws5a{word-spacing:-4.028800pt;}
.wsc5{word-spacing:-4.022933pt;}
.ws40{word-spacing:-3.831467pt;}
.ws3f{word-spacing:-3.589333pt;}
.ws38{word-spacing:-3.382400pt;}
.ws70{word-spacing:-3.380800pt;}
.ws4f{word-spacing:-2.938667pt;}
.ws7b{word-spacing:-2.740800pt;}
.ws98{word-spacing:-2.736000pt;}
.wsd4{word-spacing:-2.300800pt;}
.ws74{word-spacing:-2.107733pt;}
.ws6e{word-spacing:-2.099200pt;}
.ws90{word-spacing:-1.664000pt;}
.ws77{word-spacing:-1.472533pt;}
.wsd5{word-spacing:-1.029333pt;}
.ws68{word-spacing:-0.635733pt;}
.ws79{word-spacing:-0.627200pt;}
.ws54{word-spacing:-0.384000pt;}
.ws9d{word-spacing:-0.367467pt;}
.wsaf{word-spacing:-0.190933pt;}
.ws2c{word-spacing:0.250667pt;}
.ws5f{word-spacing:0.256000pt;}
.ws52{word-spacing:0.901333pt;}
.wsf{word-spacing:0.905600pt;}
.ws49{word-spacing:1.094400pt;}
.ws82{word-spacing:1.096000pt;}
.ws75{word-spacing:1.283467pt;}
.ws88{word-spacing:1.548800pt;}
.ws47{word-spacing:1.724267pt;}
.wscc{word-spacing:3.016000pt;}
.wsa0{word-spacing:3.648000pt;}
.ws89{word-spacing:3.848000pt;}
.ws50{word-spacing:4.096000pt;}
.wscd{word-spacing:4.302400pt;}
.ws2d{word-spacing:5.370667pt;}
.wsb5{word-spacing:5.393600pt;}
.ws64{word-spacing:5.769600pt;}
.ws6c{word-spacing:6.219200pt;}
.wsd8{word-spacing:6.845067pt;}
.ws72{word-spacing:6.852267pt;}
.ws67{word-spacing:6.852800pt;}
.ws8d{word-spacing:7.046400pt;}
.ws6f{word-spacing:7.297600pt;}
.wsac{word-spacing:7.488000pt;}
.ws42{word-spacing:8.768000pt;}
.ws81{word-spacing:8.784000pt;}
.ws4e{word-spacing:9.606400pt;}
.ws73{word-spacing:10.256000pt;}
.ws6a{word-spacing:12.624000pt;}
.ws87{word-spacing:12.816000pt;}
.ws95{word-spacing:13.262933pt;}
.ws5b{word-spacing:14.528000pt;}
.ws1b{word-spacing:14.985600pt;}
.wsa9{word-spacing:15.168267pt;}
.ws55{word-spacing:15.811200pt;}
.ws11{word-spacing:16.017600pt;}
.ws97{word-spacing:16.256000pt;}
.wsce{word-spacing:17.099200pt;}
.ws45{word-spacing:17.742400pt;}
.ws9c{word-spacing:21.000000pt;}
.ws8b{word-spacing:21.772000pt;}
.ws30{word-spacing:22.016000pt;}
.ws2b{word-spacing:29.451733pt;}
.ws8e{word-spacing:32.651733pt;}
.ws1{word-spacing:404.526933pt;}
._18{margin-left:-2.023467pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._d{width:17.724800pt;}
._9{width:19.325333pt;}
._20{width:20.261333pt;}
._11{width:21.520533pt;}
._b{width:22.443200pt;}
._e{width:24.724267pt;}
._1f{width:25.708800pt;}
._c{width:26.785067pt;}
._29{width:27.712000pt;}
._7{width:28.672000pt;}
._13{width:29.561600pt;}
._17{width:30.908800pt;}
._1{width:32.000000pt;}
._12{width:33.590400pt;}
._1d{width:34.494400pt;}
._15{width:35.833600pt;}
._1b{width:36.850133pt;}
._5{width:38.063200pt;}
._6{width:39.080800pt;}
._2b{width:40.120000pt;}
._16{width:41.117867pt;}
._f{width:42.312533pt;}
._19{width:43.481600pt;}
._1a{width:44.416533pt;}
._1e{width:45.808000pt;}
._1c{width:49.712000pt;}
._22{width:50.737067pt;}
._a{width:52.027733pt;}
._8{width:53.742400pt;}
._14{width:55.011200pt;}
._2a{width:56.178667pt;}
._24{width:58.232000pt;}
._10{width:59.140267pt;}
._27{width:62.724267pt;}
._21{width:69.684267pt;}
._28{width:72.896000pt;}
._23{width:105.029333pt;}
._2d{width:108.800000pt;}
._2c{width:140.800000pt;}
._25{width:167.488000pt;}
._26{width:183.488000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y97{bottom:88.866667pt;}
.y76{bottom:89.508000pt;}
.y88{bottom:89.666667pt;}
.yb3{bottom:90.466667pt;}
.y2b{bottom:107.266667pt;}
.y75{bottom:107.908000pt;}
.y87{bottom:108.066667pt;}
.y51{bottom:108.388000pt;}
.yb2{bottom:108.866667pt;}
.y2a{bottom:125.666667pt;}
.y74{bottom:126.308000pt;}
.y86{bottom:126.466667pt;}
.y50{bottom:126.788000pt;}
.yb1{bottom:127.266667pt;}
.y29{bottom:144.066667pt;}
.y85{bottom:144.866667pt;}
.y4f{bottom:145.188000pt;}
.yb0{bottom:145.666667pt;}
.y28{bottom:162.466667pt;}
.y73{bottom:163.266667pt;}
.y4e{bottom:163.588000pt;}
.yaf{bottom:164.066667pt;}
.y27{bottom:180.866667pt;}
.y72{bottom:181.666667pt;}
.y4d{bottom:181.988000pt;}
.yae{bottom:182.466667pt;}
.y26{bottom:199.266667pt;}
.y96{bottom:199.588000pt;}
.y71{bottom:200.066667pt;}
.y4c{bottom:200.388000pt;}
.yad{bottom:200.866667pt;}
.y25{bottom:217.666667pt;}
.y70{bottom:218.466667pt;}
.y4b{bottom:218.788000pt;}
.yac{bottom:219.266667pt;}
.y24{bottom:236.066667pt;}
.y95{bottom:236.706667pt;}
.y6f{bottom:236.866667pt;}
.y84{bottom:237.188000pt;}
.yab{bottom:237.666667pt;}
.y23{bottom:254.466667pt;}
.y94{bottom:255.108000pt;}
.y6e{bottom:255.266667pt;}
.y83{bottom:255.588000pt;}
.y4a{bottom:255.908000pt;}
.yaa{bottom:256.066667pt;}
.y22{bottom:272.866667pt;}
.y93{bottom:273.508000pt;}
.y82{bottom:273.988000pt;}
.y49{bottom:274.308000pt;}
.ya9{bottom:274.466667pt;}
.y92{bottom:291.908000pt;}
.y6d{bottom:292.388000pt;}
.y48{bottom:292.706667pt;}
.ya8{bottom:292.866667pt;}
.y21{bottom:309.988000pt;}
.y91{bottom:310.308000pt;}
.y6c{bottom:310.788000pt;}
.y47{bottom:311.108000pt;}
.y90{bottom:328.706667pt;}
.y6b{bottom:329.188000pt;}
.y46{bottom:329.508000pt;}
.ya7{bottom:329.988000pt;}
.y20{bottom:347.108000pt;}
.y6a{bottom:347.588000pt;}
.y45{bottom:347.908000pt;}
.y1f{bottom:365.508000pt;}
.y69{bottom:365.988000pt;}
.ya6{bottom:367.108000pt;}
.y1e{bottom:383.908000pt;}
.y8f{bottom:384.066667pt;}
.y68{bottom:384.388000pt;}
.y44{bottom:384.866667pt;}
.ya5{bottom:385.508000pt;}
.y1d{bottom:402.308000pt;}
.y8e{bottom:402.466667pt;}
.y43{bottom:403.266667pt;}
.ya4{bottom:403.908000pt;}
.y8d{bottom:420.866667pt;}
.y67{bottom:421.508000pt;}
.y42{bottom:421.666667pt;}
.ya3{bottom:422.308000pt;}
.y1c{bottom:439.266667pt;}
.y66{bottom:439.908000pt;}
.y41{bottom:440.066667pt;}
.ya2{bottom:440.708000pt;}
.y1b{bottom:457.666667pt;}
.y65{bottom:458.308000pt;}
.y40{bottom:458.466667pt;}
.ya1{bottom:459.108000pt;}
.y8c{bottom:476.066667pt;}
.y64{bottom:476.708000pt;}
.y81{bottom:477.188000pt;}
.ya0{bottom:477.506667pt;}
.y1a{bottom:494.788000pt;}
.y63{bottom:495.108000pt;}
.y3f{bottom:495.588000pt;}
.y9f{bottom:495.908000pt;}
.y19{bottom:513.188000pt;}
.y62{bottom:513.506667pt;}
.y3e{bottom:513.988000pt;}
.y9e{bottom:514.308000pt;}
.y80{bottom:532.388000pt;}
.y9d{bottom:532.706667pt;}
.y18{bottom:550.308000pt;}
.y61{bottom:550.466667pt;}
.y3d{bottom:551.108000pt;}
.y17{bottom:568.706667pt;}
.y60{bottom:568.866667pt;}
.y3c{bottom:569.506667pt;}
.y9c{bottom:569.666667pt;}
.y16{bottom:587.108000pt;}
.y5f{bottom:587.266667pt;}
.y7f{bottom:587.908000pt;}
.y9b{bottom:588.066667pt;}
.y15{bottom:605.506667pt;}
.y5e{bottom:605.666667pt;}
.y7e{bottom:606.308000pt;}
.y3b{bottom:606.466667pt;}
.y14{bottom:623.908000pt;}
.y8b{bottom:624.388000pt;}
.y7d{bottom:624.706667pt;}
.y3a{bottom:624.866667pt;}
.y5d{bottom:642.788000pt;}
.y39{bottom:643.266667pt;}
.y9a{bottom:643.588000pt;}
.y13{bottom:660.866667pt;}
.y5c{bottom:661.188000pt;}
.y8a{bottom:661.506667pt;}
.y38{bottom:661.666667pt;}
.y99{bottom:661.988000pt;}
.y12{bottom:679.266667pt;}
.y5b{bottom:679.588000pt;}
.y7c{bottom:680.066667pt;}
.y98{bottom:680.388000pt;}
.y7b{bottom:698.466667pt;}
.y37{bottom:698.788000pt;}
.y11{bottom:716.388000pt;}
.y5a{bottom:716.706667pt;}
.y7a{bottom:716.866667pt;}
.y36{bottom:717.188000pt;}
.y59{bottom:735.108000pt;}
.y35{bottom:735.588000pt;}
.y10{bottom:753.506667pt;}
.y79{bottom:753.988000pt;}
.yf{bottom:771.906667pt;}
.y58{bottom:772.066667pt;}
.y78{bottom:772.388000pt;}
.y34{bottom:772.706667pt;}
.ye{bottom:790.306667pt;}
.y57{bottom:790.466667pt;}
.y77{bottom:790.788000pt;}
.y33{bottom:791.106667pt;}
.yd{bottom:808.706667pt;}
.y89{bottom:809.188000pt;}
.y32{bottom:809.506667pt;}
.y56{bottom:827.588000pt;}
.y31{bottom:827.906667pt;}
.yc{bottom:845.666667pt;}
.y55{bottom:845.988000pt;}
.y30{bottom:846.306667pt;}
.y54{bottom:864.388000pt;}
.y2f{bottom:864.706667pt;}
.yb6{bottom:864.866667pt;}
.yb{bottom:882.788000pt;}
.y2e{bottom:883.106667pt;}
.yb5{bottom:883.266667pt;}
.y53{bottom:901.506667pt;}
.yb4{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y2d{bottom:920.066667pt;}
.y52{bottom:938.306667pt;}
.y2c{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:56.406250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.xb{left:114.560000pt;}
.xd{left:117.440000pt;}
.x9{left:131.840000pt;}
.x4{left:157.920000pt;}
.xa{left:268.160000pt;}
.x5{left:308.000000pt;}
.xc{left:324.800000pt;}
.x7{left:335.840000pt;}
.x3{left:410.333333pt;}
.x6{left:494.400000pt;}
.x8{left:569.920000pt;}
.x2{left:649.920000pt;}
}




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