
    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_1f2152f79effd83fe781b3cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_6b42c90a04a17112c2e849b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_0e5098f962c3cc14bb5a1d56.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_a1468f60671f3cded95a9da4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.063477;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_eafa4feaaeb7fb78eaf7ecbd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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:-20.880000px;}
.v5{vertical-align:-12.960000px;}
.vb{vertical-align:-9.360000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:12.960000px;}
.ve{vertical-align:18.720000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.vc{vertical-align:31.680000px;}
.v8{vertical-align:35.280000px;}
.v7{vertical-align:42.480000px;}
.v4{vertical-align:48.240000px;}
.va{vertical-align:50.400000px;}
.vd{vertical-align:90.720000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.541200px;}
.ls5{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.132600px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.089280px;}
.lsb{letter-spacing:0.132480px;}
.ls15{letter-spacing:0.178800px;}
.ls3{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.184200px;}
.ls7{letter-spacing:0.213120px;}
.ls19{letter-spacing:0.299400px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:2.808000px;}
.ls18{letter-spacing:7.036560px;}
.ls1d{letter-spacing:7.576560px;}
.ls1c{letter-spacing:13.870080px;}
.ls16{letter-spacing:13.990080px;}
.ls12{letter-spacing:16.750080px;}
.ls10{letter-spacing:16.925760px;}
.ls9{letter-spacing:17.470080px;}
.lse{letter-spacing:19.651680px;}
.ls11{letter-spacing:20.371680px;}
.ls8{letter-spacing:20.525760px;}
.lsf{letter-spacing:33.310080px;}
.ls17{letter-spacing:40.510080px;}
.lsa{letter-spacing:43.378560px;}
.ls14{letter-spacing:200.136000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws1f{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.139400px;}
.wsd{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws20{word-spacing:-14.220000px;}
.ws18{word-spacing:-14.123400px;}
.ws13{word-spacing:-14.118000px;}
.wse{word-spacing:-13.939200px;}
.ws21{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.806600px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.979200px;}
.ws4{word-spacing:-9.720000px;}
.ws12{word-spacing:-3.168000px;}
.ws15{word-spacing:-1.878720px;}
.ws14{word-spacing:-1.158480px;}
.ws1c{word-spacing:-0.603360px;}
.wsf{word-spacing:-0.138240px;}
.wsc{word-spacing:-0.069120px;}
.ws6{word-spacing:0.000000px;}
.ws1b{word-spacing:0.461520px;}
.ws17{word-spacing:1.721280px;}
.ws19{word-spacing:2.810880px;}
.wsb{word-spacing:3.530880px;}
.ws9{word-spacing:5.155200px;}
.ws1a{word-spacing:9.072000px;}
.ws16{word-spacing:19.721280px;}
.ws1d{word-spacing:37.721520px;}
.ws1e{word-spacing:39.656640px;}
._18{margin-left:-6.480000px;}
._7{margin-left:-4.362480px;}
._6{margin-left:-2.689200px;}
._0{margin-left:-1.324800px;}
._1{width:1.180800px;}
._3{width:2.211120px;}
._2{width:4.003920px;}
._1b{width:5.005440px;}
._8{width:6.035760px;}
._d{width:7.598880px;}
._c{width:8.697600px;}
._12{width:9.948960px;}
._a{width:11.115360px;}
._11{width:12.279600px;}
._1e{width:14.083200px;}
._16{width:15.102720px;}
._b{width:16.343280px;}
._e{width:19.182960px;}
._5{width:20.378160px;}
._4{width:21.573360px;}
._9{width:22.708800px;}
._10{width:23.906160px;}
._f{width:24.994080px;}
._14{width:27.224640px;}
._13{width:28.284480px;}
._15{width:29.334480px;}
._1f{width:42.134160px;}
._1d{width:52.109280px;}
._1c{width:53.424000px;}
._1a{width:147.830160px;}
._19{width:164.689440px;}
._17{width:200.136000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fsb{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fsc{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs9{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y30{bottom:3.240000px;}
.ya8{bottom:3.420000px;}
.y10{bottom:14.400000px;}
.y17{bottom:21.240000px;}
.y2f{bottom:29.520000px;}
.y16{bottom:38.550000px;}
.y2e{bottom:46.800000px;}
.y15{bottom:55.830000px;}
.y2d{bottom:64.080000px;}
.y14{bottom:73.110000px;}
.y2c{bottom:81.405000px;}
.y13{bottom:90.390000px;}
.y18{bottom:95.430000px;}
.y2b{bottom:98.685000px;}
.y12{bottom:105.330000px;}
.y2a{bottom:115.785000px;}
.y29{bottom:133.065000px;}
.y28{bottom:150.345000px;}
.yde{bottom:155.520000px;}
.yba{bottom:161.310000px;}
.y41{bottom:163.650000px;}
.y27{bottom:167.625000px;}
.y10c{bottom:168.690000px;}
.ydd{bottom:173.550000px;}
.y37{bottom:176.625000px;}
.yb9{bottom:179.490000px;}
.yad{bottom:182.550000px;}
.y40{bottom:182.910000px;}
.y26{bottom:184.905000px;}
.y10b{bottom:185.070000px;}
.y82{bottom:190.650000px;}
.y36{bottom:193.905000px;}
.yb8{bottom:197.670000px;}
.ydc{bottom:200.730000px;}
.y3f{bottom:201.810000px;}
.y25{bottom:202.005000px;}
.y10a{bottom:205.950000px;}
.yac{bottom:209.730000px;}
.y35{bottom:211.185000px;}
.yb7{bottom:215.670000px;}
.y81{bottom:217.830000px;}
.y24{bottom:219.285000px;}
.y3e{bottom:220.710000px;}
.y109{bottom:222.330000px;}
.y34{bottom:228.465000px;}
.ydb{bottom:228.630000px;}
.yb6{bottom:233.850000px;}
.y23{bottom:236.565000px;}
.yab{bottom:236.910000px;}
.y3d{bottom:239.790000px;}
.y108{bottom:243.210000px;}
.y80{bottom:244.830000px;}
.y33{bottom:245.745000px;}
.yca{bottom:248.250000px;}
.yb5{bottom:252.030000px;}
.yda{bottom:252.390000px;}
.y22{bottom:253.845000px;}
.y3c{bottom:258.690000px;}
.y107{bottom:259.590000px;}
.yaa{bottom:261.390000px;}
.y32{bottom:262.845000px;}
.y38{bottom:268.065000px;}
.y21{bottom:271.125000px;}
.y7f{bottom:272.010000px;}
.y106{bottom:275.970000px;}
.y3b{bottom:277.770000px;}
.y31{bottom:277.785000px;}
.yb4{bottom:279.210000px;}
.ya9{bottom:279.390000px;}
.y20{bottom:288.405000px;}
.y105{bottom:296.850000px;}
.ya7{bottom:298.290000px;}
.y7e{bottom:299.010000px;}
.y3a{bottom:305.490000px;}
.y1f{bottom:305.505000px;}
.yb3{bottom:306.930000px;}
.y7d{bottom:309.630000px;}
.y104{bottom:313.230000px;}
.y1e{bottom:322.815000px;}
.y39{bottom:324.210000px;}
.ya6{bottom:329.610000px;}
.yb2{bottom:330.690000px;}
.y1d{bottom:340.095000px;}
.y19{bottom:340.410000px;}
.y7c{bottom:346.710000px;}
.y103{bottom:350.490000px;}
.ya5{bottom:356.610000px;}
.y1c{bottom:357.375000px;}
.y7b{bottom:364.890000px;}
.y102{bottom:366.870000px;}
.y1b{bottom:374.655000px;}
.ya4{bottom:374.790000px;}
.y6b{bottom:377.850000px;}
.y101{bottom:387.750000px;}
.y1a{bottom:389.595000px;}
.y7a{bottom:391.890000px;}
.ya3{bottom:392.970000px;}
.y6a{bottom:396.030000px;}
.y100{bottom:404.130000px;}
.y69{bottom:414.255000px;}
.y79{bottom:415.515000px;}
.ya2{bottom:419.835000px;}
.yff{bottom:425.055000px;}
.y77{bottom:426.135000px;}
.ya1{bottom:430.455000px;}
.y68{bottom:432.435000px;}
.y78{bottom:443.955000px;}
.yfe{bottom:445.935000px;}
.y67{bottom:450.435000px;}
.yfd{bottom:462.315000px;}
.y76{bottom:465.735000px;}
.ya0{bottom:467.715000px;}
.y66{bottom:468.615000px;}
.yfc{bottom:483.195000px;}
.y9f{bottom:485.895000px;}
.y65{bottom:486.795000px;}
.y75{bottom:492.735000px;}
.yfb{bottom:499.575000px;}
.y9e{bottom:503.895000px;}
.y64{bottom:504.795000px;}
.y74{bottom:519.915000px;}
.yfa{bottom:520.455000px;}
.y9d{bottom:522.075000px;}
.y63{bottom:531.975000px;}
.yf9{bottom:536.835000px;}
.y9c{bottom:540.075000px;}
.y73{bottom:547.095000px;}
.yc9{bottom:554.295000px;}
.yf8{bottom:557.715000px;}
.y9b{bottom:558.255000px;}
.yd9{bottom:559.155000px;}
.y62{bottom:569.055000px;}
.y72{bottom:574.095000px;}
.y9a{bottom:576.435000px;}
.yd8{bottom:577.335000px;}
.yc8{bottom:578.055000px;}
.y71{bottom:584.715000px;}
.y61{bottom:588.135000px;}
.yf7{bottom:590.475000px;}
.yb1{bottom:591.555000px;}
.y99{bottom:594.435000px;}
.yd7{bottom:595.335000px;}
.y60{bottom:607.035000px;}
.yf6{bottom:611.535000px;}
.y98{bottom:612.615000px;}
.yd6{bottom:614.235000px;}
.yb0{bottom:615.315000px;}
.y70{bottom:621.795000px;}
.y11{bottom:624.675000px;}
.y5f{bottom:626.115000px;}
.yf5{bottom:627.915000px;}
.y97{bottom:630.615000px;}
.yf4{bottom:644.295000px;}
.y5e{bottom:645.015000px;}
.yd5{bottom:645.375000px;}
.y6f{bottom:648.795000px;}
.yf3{bottom:665.205000px;}
.y5d{bottom:668.445000px;}
.y6e{bottom:672.585000px;}
.y96{bottom:676.005000px;}
.yf2{bottom:681.585000px;}
.y5c{bottom:687.525000px;}
.yd4{bottom:690.765000px;}
.yf1{bottom:702.465000px;}
.y95{bottom:703.905000px;}
.y5b{bottom:706.425000px;}
.yd3{bottom:708.945000px;}
.yf0{bottom:718.845000px;}
.y5a{bottom:725.505000px;}
.yd2{bottom:726.945000px;}
.y94{bottom:731.805000px;}
.yf{bottom:736.485000px;}
.yef{bottom:739.725000px;}
.y59{bottom:744.405000px;}
.yd1{bottom:745.125000px;}
.y93{bottom:758.985000px;}
.yee{bottom:760.605000px;}
.yd0{bottom:763.305000px;}
.y58{bottom:763.485000px;}
.y6d{bottom:773.925000px;}
.ye{bottom:780.945000px;}
.ycf{bottom:781.305000px;}
.y57{bottom:782.385000px;}
.y92{bottom:785.985000px;}
.yed{bottom:795.345000px;}
.y6c{bottom:797.685000px;}
.yd{bottom:798.045000px;}
.yce{bottom:799.485000px;}
.y56{bottom:805.785000px;}
.y91{bottom:809.925000px;}
.yc{bottom:815.325000px;}
.y90{bottom:820.545000px;}
.yec{bottom:823.425000px;}
.y55{bottom:824.865000px;}
.ycd{bottom:826.665000px;}
.yb{bottom:832.785000px;}
.y54{bottom:843.765000px;}
.yeb{bottom:851.325000px;}
.ycc{bottom:854.385000px;}
.ya{bottom:856.185000px;}
.y8f{bottom:857.625000px;}
.yc7{bottom:857.805000px;}
.y53{bottom:862.845000px;}
.y9{bottom:874.185000px;}
.y8e{bottom:875.805000px;}
.yaf{bottom:875.985000px;}
.ycb{bottom:878.145000px;}
.yea{bottom:879.225000px;}
.y52{bottom:881.745000px;}
.yc6{bottom:894.885000px;}
.ye9{bottom:897.405000px;}
.yae{bottom:899.745000px;}
.y51{bottom:900.870000px;}
.y8d{bottom:902.850000px;}
.y8{bottom:905.730000px;}
.y50{bottom:924.090000px;}
.ye8{bottom:924.630000px;}
.yc5{bottom:926.070000px;}
.y8c{bottom:930.030000px;}
.y4f{bottom:943.170000px;}
.y7{bottom:944.430000px;}
.y117{bottom:945.150000px;}
.ye7{bottom:952.350000px;}
.yc4{bottom:953.250000px;}
.y8b{bottom:957.210000px;}
.y4e{bottom:962.250000px;}
.y6{bottom:965.130000px;}
.y116{bottom:969.450000px;}
.ye6{bottom:970.530000px;}
.yc3{bottom:971.430000px;}
.y4d{bottom:981.150000px;}
.y8a{bottom:983.310000px;}
.y115{bottom:985.830000px;}
.ye5{bottom:988.710000px;}
.yc2{bottom:989.430000px;}
.y89{bottom:991.230000px;}
.y4c{bottom:1000.230000px;}
.y5{bottom:1003.830000px;}
.y114{bottom:1006.710000px;}
.ye4{bottom:1006.890000px;}
.yc1{bottom:1007.610000px;}
.y4b{bottom:1019.130000px;}
.y88{bottom:1022.550000px;}
.y113{bottom:1023.090000px;}
.ye3{bottom:1024.890000px;}
.yc0{bottom:1025.790000px;}
.y4a{bottom:1038.030000px;}
.y4{bottom:1038.570000px;}
.y87{bottom:1040.730000px;}
.ye2{bottom:1043.070000px;}
.ybf{bottom:1043.790000px;}
.y112{bottom:1043.970000px;}
.y49{bottom:1057.110000px;}
.y86{bottom:1058.910000px;}
.y111{bottom:1060.350000px;}
.ye1{bottom:1061.070000px;}
.ybe{bottom:1067.550000px;}
.y48{bottom:1076.010000px;}
.ybd{bottom:1078.170000px;}
.ye0{bottom:1079.250000px;}
.y110{bottom:1081.230000px;}
.y85{bottom:1085.910000px;}
.y47{bottom:1095.090000px;}
.ydf{bottom:1097.430000px;}
.y10f{bottom:1102.110000px;}
.y84{bottom:1112.910000px;}
.y46{bottom:1113.990000px;}
.ybc{bottom:1115.430000px;}
.y10e{bottom:1118.490000px;}
.y83{bottom:1123.530000px;}
.y45{bottom:1132.890000px;}
.ybb{bottom:1133.610000px;}
.y10d{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y44{bottom:1169.460000px;}
.y43{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y42{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hc{height:17.657227px;}
.h1c{height:18.000000px;}
.h1d{height:18.036000px;}
.h1b{height:18.180000px;}
.h15{height:38.228203px;}
.h9{height:40.320000px;}
.h5{height:41.304375px;}
.h1a{height:44.240625px;}
.h14{height:53.398125px;}
.h1e{height:55.824609px;}
.hd{height:58.621992px;}
.h7{height:58.651172px;}
.hf{height:59.019609px;}
.h8{height:60.226875px;}
.h6{height:62.184375px;}
.h2{height:65.010937px;}
.ha{height:66.757500px;}
.h11{height:70.664062px;}
.h4{height:72.562500px;}
.h17{height:75.668203px;}
.h18{height:93.864375px;}
.h3{height:96.508125px;}
.h13{height:101.638125px;}
.h16{height:104.664375px;}
.hb{height:109.476000px;}
.h19{height:144.118125px;}
.h12{height:153.341016px;}
.h10{height:282.090000px;}
.he{height:393.735000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w7{width:151.740000px;}
.w9{width:167.610000px;}
.w8{width:172.650000px;}
.wb{width:180.750000px;}
.w6{width:185.250000px;}
.wc{width:188.130000px;}
.w3{width:237.990000px;}
.wa{width:266.970000px;}
.w5{width:406.875000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x2a{left:22.140000px;}
.x26{left:34.200000px;}
.x40{left:37.980000px;}
.x28{left:39.450000px;}
.x36{left:41.625000px;}
.x2b{left:54.180000px;}
.x3e{left:58.680000px;}
.x2d{left:62.145000px;}
.x42{left:64.800000px;}
.x2c{left:72.570000px;}
.x41{left:76.320000px;}
.x43{left:78.300000px;}
.x5{left:108.035987px;}
.x6{left:122.796000px;}
.x3d{left:128.736000px;}
.x2{left:131.255987px;}
.xc{left:158.249987px;}
.x32{left:174.089987px;}
.xa{left:185.250000px;}
.x3b{left:193.349987px;}
.x3c{left:195.689987px;}
.x33{left:206.129987px;}
.x2e{left:216.029987px;}
.x30{left:227.009987px;}
.x34{left:253.289987px;}
.x31{left:270.029987px;}
.x38{left:281.954987px;}
.x45{left:283.214987px;}
.x24{left:290.954987px;}
.x25{left:293.295000px;}
.x19{left:310.574987px;}
.x1b{left:311.834987px;}
.x3{left:314.354987px;}
.x1e{left:320.114987px;}
.x10{left:325.874987px;}
.x16{left:328.574987px;}
.x13{left:338.834987px;}
.x1d{left:343.874987px;}
.x1a{left:347.474987px;}
.x1c{left:349.274987px;}
.x11{left:356.114987px;}
.x1f{left:357.734987px;}
.x8{left:360.795000px;}
.x17{left:370.514987px;}
.x12{left:373.754987px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x15{left:385.274987px;}
.x20{left:386.354987px;}
.x14{left:396.614987px;}
.x18{left:401.474987px;}
.x21{left:406.874987px;}
.x27{left:445.035000px;}
.x35{left:494.384987px;}
.x22{left:526.784987px;}
.x3f{left:576.465000px;}
.xe{left:588.164987px;}
.x29{left:617.685000px;}
.x23{left:622.904987px;}
.x39{left:664.169987px;}
.x37{left:665.429987px;}
.xf{left:668.129987px;}
.x2f{left:671.009987px;}
.x3a{left:676.229987px;}
.x44{left:705.929987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-11.520000pt;}
.vb{vertical-align:-8.320000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:11.520000pt;}
.ve{vertical-align:16.640000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.vc{vertical-align:28.160000pt;}
.v8{vertical-align:31.360000pt;}
.v7{vertical-align:37.760000pt;}
.v4{vertical-align:42.880000pt;}
.va{vertical-align:44.800000pt;}
.vd{vertical-align:80.640000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.481067pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.117867pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.079360pt;}
.lsb{letter-spacing:0.117760pt;}
.ls15{letter-spacing:0.158933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.163733pt;}
.ls7{letter-spacing:0.189440pt;}
.ls19{letter-spacing:0.266133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:2.496000pt;}
.ls18{letter-spacing:6.254720pt;}
.ls1d{letter-spacing:6.734720pt;}
.ls1c{letter-spacing:12.328960pt;}
.ls16{letter-spacing:12.435627pt;}
.ls12{letter-spacing:14.888960pt;}
.ls10{letter-spacing:15.045120pt;}
.ls9{letter-spacing:15.528960pt;}
.lse{letter-spacing:17.468160pt;}
.ls11{letter-spacing:18.108160pt;}
.ls8{letter-spacing:18.245120pt;}
.lsf{letter-spacing:29.608960pt;}
.ls17{letter-spacing:36.008960pt;}
.lsa{letter-spacing:38.558720pt;}
.ls14{letter-spacing:177.898667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1f{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.346133pt;}
.wsd{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws20{word-spacing:-12.640000pt;}
.ws18{word-spacing:-12.554133pt;}
.ws13{word-spacing:-12.549333pt;}
.wse{word-spacing:-12.390400pt;}
.ws21{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.272533pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.870400pt;}
.ws4{word-spacing:-8.640000pt;}
.ws12{word-spacing:-2.816000pt;}
.ws15{word-spacing:-1.669973pt;}
.ws14{word-spacing:-1.029760pt;}
.ws1c{word-spacing:-0.536320pt;}
.wsf{word-spacing:-0.122880pt;}
.wsc{word-spacing:-0.061440pt;}
.ws6{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.410240pt;}
.ws17{word-spacing:1.530027pt;}
.ws19{word-spacing:2.498560pt;}
.wsb{word-spacing:3.138560pt;}
.ws9{word-spacing:4.582400pt;}
.ws1a{word-spacing:8.064000pt;}
.ws16{word-spacing:17.530027pt;}
.ws1d{word-spacing:33.530240pt;}
.ws1e{word-spacing:35.250347pt;}
._18{margin-left:-5.760000pt;}
._7{margin-left:-3.877760pt;}
._6{margin-left:-2.390400pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.049600pt;}
._3{width:1.965440pt;}
._2{width:3.559040pt;}
._1b{width:4.449280pt;}
._8{width:5.365120pt;}
._d{width:6.754560pt;}
._c{width:7.731200pt;}
._12{width:8.843520pt;}
._a{width:9.880320pt;}
._11{width:10.915200pt;}
._1e{width:12.518400pt;}
._16{width:13.424640pt;}
._b{width:14.527360pt;}
._e{width:17.051520pt;}
._5{width:18.113920pt;}
._4{width:19.176320pt;}
._9{width:20.185600pt;}
._10{width:21.249920pt;}
._f{width:22.216960pt;}
._14{width:24.199680pt;}
._13{width:25.141760pt;}
._15{width:26.075093pt;}
._1f{width:37.452587pt;}
._1d{width:46.319360pt;}
._1c{width:47.488000pt;}
._1a{width:131.404587pt;}
._19{width:146.390613pt;}
._17{width:177.898667pt;}
.fs7{font-size:16.000000pt;}
.fsb{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fsc{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs9{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:2.880000pt;}
.ya8{bottom:3.040000pt;}
.y10{bottom:12.800000pt;}
.y17{bottom:18.880000pt;}
.y2f{bottom:26.240000pt;}
.y16{bottom:34.266667pt;}
.y2e{bottom:41.600000pt;}
.y15{bottom:49.626667pt;}
.y2d{bottom:56.960000pt;}
.y14{bottom:64.986667pt;}
.y2c{bottom:72.360000pt;}
.y13{bottom:80.346667pt;}
.y18{bottom:84.826667pt;}
.y2b{bottom:87.720000pt;}
.y12{bottom:93.626667pt;}
.y2a{bottom:102.920000pt;}
.y29{bottom:118.280000pt;}
.y28{bottom:133.640000pt;}
.yde{bottom:138.240000pt;}
.yba{bottom:143.386667pt;}
.y41{bottom:145.466667pt;}
.y27{bottom:149.000000pt;}
.y10c{bottom:149.946667pt;}
.ydd{bottom:154.266667pt;}
.y37{bottom:157.000000pt;}
.yb9{bottom:159.546667pt;}
.yad{bottom:162.266667pt;}
.y40{bottom:162.586667pt;}
.y26{bottom:164.360000pt;}
.y10b{bottom:164.506667pt;}
.y82{bottom:169.466667pt;}
.y36{bottom:172.360000pt;}
.yb8{bottom:175.706667pt;}
.ydc{bottom:178.426667pt;}
.y3f{bottom:179.386667pt;}
.y25{bottom:179.560000pt;}
.y10a{bottom:183.066667pt;}
.yac{bottom:186.426667pt;}
.y35{bottom:187.720000pt;}
.yb7{bottom:191.706667pt;}
.y81{bottom:193.626667pt;}
.y24{bottom:194.920000pt;}
.y3e{bottom:196.186667pt;}
.y109{bottom:197.626667pt;}
.y34{bottom:203.080000pt;}
.ydb{bottom:203.226667pt;}
.yb6{bottom:207.866667pt;}
.y23{bottom:210.280000pt;}
.yab{bottom:210.586667pt;}
.y3d{bottom:213.146667pt;}
.y108{bottom:216.186667pt;}
.y80{bottom:217.626667pt;}
.y33{bottom:218.440000pt;}
.yca{bottom:220.666667pt;}
.yb5{bottom:224.026667pt;}
.yda{bottom:224.346667pt;}
.y22{bottom:225.640000pt;}
.y3c{bottom:229.946667pt;}
.y107{bottom:230.746667pt;}
.yaa{bottom:232.346667pt;}
.y32{bottom:233.640000pt;}
.y38{bottom:238.280000pt;}
.y21{bottom:241.000000pt;}
.y7f{bottom:241.786667pt;}
.y106{bottom:245.306667pt;}
.y3b{bottom:246.906667pt;}
.y31{bottom:246.920000pt;}
.yb4{bottom:248.186667pt;}
.ya9{bottom:248.346667pt;}
.y20{bottom:256.360000pt;}
.y105{bottom:263.866667pt;}
.ya7{bottom:265.146667pt;}
.y7e{bottom:265.786667pt;}
.y3a{bottom:271.546667pt;}
.y1f{bottom:271.560000pt;}
.yb3{bottom:272.826667pt;}
.y7d{bottom:275.226667pt;}
.y104{bottom:278.426667pt;}
.y1e{bottom:286.946667pt;}
.y39{bottom:288.186667pt;}
.ya6{bottom:292.986667pt;}
.yb2{bottom:293.946667pt;}
.y1d{bottom:302.306667pt;}
.y19{bottom:302.586667pt;}
.y7c{bottom:308.186667pt;}
.y103{bottom:311.546667pt;}
.ya5{bottom:316.986667pt;}
.y1c{bottom:317.666667pt;}
.y7b{bottom:324.346667pt;}
.y102{bottom:326.106667pt;}
.y1b{bottom:333.026667pt;}
.ya4{bottom:333.146667pt;}
.y6b{bottom:335.866667pt;}
.y101{bottom:344.666667pt;}
.y1a{bottom:346.306667pt;}
.y7a{bottom:348.346667pt;}
.ya3{bottom:349.306667pt;}
.y6a{bottom:352.026667pt;}
.y100{bottom:359.226667pt;}
.y69{bottom:368.226667pt;}
.y79{bottom:369.346667pt;}
.ya2{bottom:373.186667pt;}
.yff{bottom:377.826667pt;}
.y77{bottom:378.786667pt;}
.ya1{bottom:382.626667pt;}
.y68{bottom:384.386667pt;}
.y78{bottom:394.626667pt;}
.yfe{bottom:396.386667pt;}
.y67{bottom:400.386667pt;}
.yfd{bottom:410.946667pt;}
.y76{bottom:413.986667pt;}
.ya0{bottom:415.746667pt;}
.y66{bottom:416.546667pt;}
.yfc{bottom:429.506667pt;}
.y9f{bottom:431.906667pt;}
.y65{bottom:432.706667pt;}
.y75{bottom:437.986667pt;}
.yfb{bottom:444.066667pt;}
.y9e{bottom:447.906667pt;}
.y64{bottom:448.706667pt;}
.y74{bottom:462.146667pt;}
.yfa{bottom:462.626667pt;}
.y9d{bottom:464.066667pt;}
.y63{bottom:472.866667pt;}
.yf9{bottom:477.186667pt;}
.y9c{bottom:480.066667pt;}
.y73{bottom:486.306667pt;}
.yc9{bottom:492.706667pt;}
.yf8{bottom:495.746667pt;}
.y9b{bottom:496.226667pt;}
.yd9{bottom:497.026667pt;}
.y62{bottom:505.826667pt;}
.y72{bottom:510.306667pt;}
.y9a{bottom:512.386667pt;}
.yd8{bottom:513.186667pt;}
.yc8{bottom:513.826667pt;}
.y71{bottom:519.746667pt;}
.y61{bottom:522.786667pt;}
.yf7{bottom:524.866667pt;}
.yb1{bottom:525.826667pt;}
.y99{bottom:528.386667pt;}
.yd7{bottom:529.186667pt;}
.y60{bottom:539.586667pt;}
.yf6{bottom:543.586667pt;}
.y98{bottom:544.546667pt;}
.yd6{bottom:545.986667pt;}
.yb0{bottom:546.946667pt;}
.y70{bottom:552.706667pt;}
.y11{bottom:555.266667pt;}
.y5f{bottom:556.546667pt;}
.yf5{bottom:558.146667pt;}
.y97{bottom:560.546667pt;}
.yf4{bottom:572.706667pt;}
.y5e{bottom:573.346667pt;}
.yd5{bottom:573.666667pt;}
.y6f{bottom:576.706667pt;}
.yf3{bottom:591.293333pt;}
.y5d{bottom:594.173333pt;}
.y6e{bottom:597.853333pt;}
.y96{bottom:600.893333pt;}
.yf2{bottom:605.853333pt;}
.y5c{bottom:611.133333pt;}
.yd4{bottom:614.013333pt;}
.yf1{bottom:624.413333pt;}
.y95{bottom:625.693333pt;}
.y5b{bottom:627.933333pt;}
.yd3{bottom:630.173333pt;}
.yf0{bottom:638.973333pt;}
.y5a{bottom:644.893333pt;}
.yd2{bottom:646.173333pt;}
.y94{bottom:650.493333pt;}
.yf{bottom:654.653333pt;}
.yef{bottom:657.533333pt;}
.y59{bottom:661.693333pt;}
.yd1{bottom:662.333333pt;}
.y93{bottom:674.653333pt;}
.yee{bottom:676.093333pt;}
.yd0{bottom:678.493333pt;}
.y58{bottom:678.653333pt;}
.y6d{bottom:687.933333pt;}
.ye{bottom:694.173333pt;}
.ycf{bottom:694.493333pt;}
.y57{bottom:695.453333pt;}
.y92{bottom:698.653333pt;}
.yed{bottom:706.973333pt;}
.y6c{bottom:709.053333pt;}
.yd{bottom:709.373333pt;}
.yce{bottom:710.653333pt;}
.y56{bottom:716.253333pt;}
.y91{bottom:719.933333pt;}
.yc{bottom:724.733333pt;}
.y90{bottom:729.373333pt;}
.yec{bottom:731.933333pt;}
.y55{bottom:733.213333pt;}
.ycd{bottom:734.813333pt;}
.yb{bottom:740.253333pt;}
.y54{bottom:750.013333pt;}
.yeb{bottom:756.733333pt;}
.ycc{bottom:759.453333pt;}
.ya{bottom:761.053333pt;}
.y8f{bottom:762.333333pt;}
.yc7{bottom:762.493333pt;}
.y53{bottom:766.973333pt;}
.y9{bottom:777.053333pt;}
.y8e{bottom:778.493333pt;}
.yaf{bottom:778.653333pt;}
.ycb{bottom:780.573333pt;}
.yea{bottom:781.533333pt;}
.y52{bottom:783.773333pt;}
.yc6{bottom:795.453333pt;}
.ye9{bottom:797.693333pt;}
.yae{bottom:799.773333pt;}
.y51{bottom:800.773333pt;}
.y8d{bottom:802.533333pt;}
.y8{bottom:805.093333pt;}
.y50{bottom:821.413333pt;}
.ye8{bottom:821.893333pt;}
.yc5{bottom:823.173333pt;}
.y8c{bottom:826.693333pt;}
.y4f{bottom:838.373333pt;}
.y7{bottom:839.493333pt;}
.y117{bottom:840.133333pt;}
.ye7{bottom:846.533333pt;}
.yc4{bottom:847.333333pt;}
.y8b{bottom:850.853333pt;}
.y4e{bottom:855.333333pt;}
.y6{bottom:857.893333pt;}
.y116{bottom:861.733333pt;}
.ye6{bottom:862.693333pt;}
.yc3{bottom:863.493333pt;}
.y4d{bottom:872.133333pt;}
.y8a{bottom:874.053333pt;}
.y115{bottom:876.293333pt;}
.ye5{bottom:878.853333pt;}
.yc2{bottom:879.493333pt;}
.y89{bottom:881.093333pt;}
.y4c{bottom:889.093333pt;}
.y5{bottom:892.293333pt;}
.y114{bottom:894.853333pt;}
.ye4{bottom:895.013333pt;}
.yc1{bottom:895.653333pt;}
.y4b{bottom:905.893333pt;}
.y88{bottom:908.933333pt;}
.y113{bottom:909.413333pt;}
.ye3{bottom:911.013333pt;}
.yc0{bottom:911.813333pt;}
.y4a{bottom:922.693333pt;}
.y4{bottom:923.173333pt;}
.y87{bottom:925.093333pt;}
.ye2{bottom:927.173333pt;}
.ybf{bottom:927.813333pt;}
.y112{bottom:927.973333pt;}
.y49{bottom:939.653333pt;}
.y86{bottom:941.253333pt;}
.y111{bottom:942.533333pt;}
.ye1{bottom:943.173333pt;}
.ybe{bottom:948.933333pt;}
.y48{bottom:956.453333pt;}
.ybd{bottom:958.373333pt;}
.ye0{bottom:959.333333pt;}
.y110{bottom:961.093333pt;}
.y85{bottom:965.253333pt;}
.y47{bottom:973.413333pt;}
.ydf{bottom:975.493333pt;}
.y10f{bottom:979.653333pt;}
.y84{bottom:989.253333pt;}
.y46{bottom:990.213333pt;}
.ybc{bottom:991.493333pt;}
.y10e{bottom:994.213333pt;}
.y83{bottom:998.693333pt;}
.y45{bottom:1007.013333pt;}
.ybb{bottom:1007.653333pt;}
.y10d{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y44{bottom:1039.520000pt;}
.y43{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y42{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hc{height:15.695312pt;}
.h1c{height:16.000000pt;}
.h1d{height:16.032000pt;}
.h1b{height:16.160000pt;}
.h15{height:33.980625pt;}
.h9{height:35.840000pt;}
.h5{height:36.715000pt;}
.h1a{height:39.325000pt;}
.h14{height:47.465000pt;}
.h1e{height:49.621875pt;}
.hd{height:52.108438pt;}
.h7{height:52.134375pt;}
.hf{height:52.461875pt;}
.h8{height:53.535000pt;}
.h6{height:55.275000pt;}
.h2{height:57.787500pt;}
.ha{height:59.340000pt;}
.h11{height:62.812500pt;}
.h4{height:64.500000pt;}
.h17{height:67.260625pt;}
.h18{height:83.435000pt;}
.h3{height:85.785000pt;}
.h13{height:90.345000pt;}
.h16{height:93.035000pt;}
.hb{height:97.312000pt;}
.h19{height:128.105000pt;}
.h12{height:136.303125pt;}
.h10{height:250.746667pt;}
.he{height:349.986667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w7{width:134.880000pt;}
.w9{width:148.986667pt;}
.w8{width:153.466667pt;}
.wb{width:160.666667pt;}
.w6{width:164.666667pt;}
.wc{width:167.226667pt;}
.w3{width:211.546667pt;}
.wa{width:237.306667pt;}
.w5{width:361.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x2a{left:19.680000pt;}
.x26{left:30.400000pt;}
.x40{left:33.760000pt;}
.x28{left:35.066667pt;}
.x36{left:37.000000pt;}
.x2b{left:48.160000pt;}
.x3e{left:52.160000pt;}
.x2d{left:55.240000pt;}
.x42{left:57.600000pt;}
.x2c{left:64.506667pt;}
.x41{left:67.840000pt;}
.x43{left:69.600000pt;}
.x5{left:96.031988pt;}
.x6{left:109.152000pt;}
.x3d{left:114.432000pt;}
.x2{left:116.671988pt;}
.xc{left:140.666655pt;}
.x32{left:154.746655pt;}
.xa{left:164.666667pt;}
.x3b{left:171.866655pt;}
.x3c{left:173.946655pt;}
.x33{left:183.226655pt;}
.x2e{left:192.026655pt;}
.x30{left:201.786655pt;}
.x34{left:225.146655pt;}
.x31{left:240.026655pt;}
.x38{left:250.626655pt;}
.x45{left:251.746655pt;}
.x24{left:258.626655pt;}
.x25{left:260.706667pt;}
.x19{left:276.066655pt;}
.x1b{left:277.186655pt;}
.x3{left:279.426655pt;}
.x1e{left:284.546655pt;}
.x10{left:289.666655pt;}
.x16{left:292.066655pt;}
.x13{left:301.186655pt;}
.x1d{left:305.666655pt;}
.x1a{left:308.866655pt;}
.x1c{left:310.466655pt;}
.x11{left:316.546655pt;}
.x1f{left:317.986655pt;}
.x8{left:320.706667pt;}
.x17{left:329.346655pt;}
.x12{left:332.226655pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x15{left:342.466655pt;}
.x20{left:343.426655pt;}
.x14{left:352.546655pt;}
.x18{left:356.866655pt;}
.x21{left:361.666655pt;}
.x27{left:395.586667pt;}
.x35{left:439.453322pt;}
.x22{left:468.253322pt;}
.x3f{left:512.413333pt;}
.xe{left:522.813322pt;}
.x29{left:549.053333pt;}
.x23{left:553.693322pt;}
.x39{left:590.373322pt;}
.x37{left:591.493322pt;}
.xf{left:593.893322pt;}
.x2f{left:596.453322pt;}
.x3a{left:601.093322pt;}
.x44{left:627.493322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
}




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