
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_a2055d0d0464fa242e53e822.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_704178b30844b42aa2650a8c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_f9af0df6db9ba62bcb14e0bc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_5d4df41b6a7daba8cce1b564.woff')format("woff");}.ff5{font-family:ff5;line-height:1.208008;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_b91e17ce26b90bf410ba30d4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_293d6d02309d8fb4a2c385f6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_55fced2fcc2928c04039c28a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b3973a814b3a960ea16adf80.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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;}
.m1{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,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);}
.m2{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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1b{letter-spacing:-0.444600px;}
.lsc{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.ls8{letter-spacing:-0.134400px;}
.lse{letter-spacing:-0.125400px;}
.ls6{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008760px;}
.ls1a{letter-spacing:0.024120px;}
.lsf{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.060600px;}
.ls10{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.116400px;}
.ls16{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls14{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.181200px;}
.ls19{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls17{letter-spacing:80.846640px;}
.ls11{letter-spacing:83.366640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-14.493600px;}
.ws22{word-spacing:-13.407600px;}
.ws1c{word-spacing:-13.399800px;}
.ws21{word-spacing:-13.342800px;}
.ws20{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws1f{word-spacing:-13.101000px;}
.ws1d{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws1e{word-spacing:-8.614200px;}
.ws15{word-spacing:-0.510000px;}
.wsf{word-spacing:-0.462000px;}
.ws18{word-spacing:-0.408000px;}
.ws14{word-spacing:-0.378000px;}
.wse{word-spacing:-0.354000px;}
.ws17{word-spacing:-0.318000px;}
.ws13{word-spacing:-0.312000px;}
.wsc{word-spacing:-0.300000px;}
.ws1b{word-spacing:-0.276000px;}
.wsb{word-spacing:-0.270000px;}
.wsd{word-spacing:-0.264000px;}
.ws10{word-spacing:-0.258000px;}
.ws11{word-spacing:-0.204000px;}
.ws12{word-spacing:-0.180000px;}
.wsa{word-spacing:-0.168000px;}
.ws19{word-spacing:-0.102000px;}
.ws8{word-spacing:-0.090000px;}
.ws7{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws16{word-spacing:0.156000px;}
.ws5{word-spacing:0.204000px;}
.ws9{word-spacing:0.210000px;}
.ws1a{word-spacing:0.216000px;}
.ws6{word-spacing:0.366000px;}
._e{margin-left:-3.879125px;}
._3{margin-left:-2.842080px;}
._0{margin-left:-1.110000px;}
._1{width:1.296000px;}
._9{width:2.299440px;}
._6{width:3.466560px;}
._4{width:4.864320px;}
._5{width:6.192600px;}
._2{width:8.056200px;}
._7{width:9.138000px;}
._d{width:10.160520px;}
._a{width:11.843400px;}
._8{width:14.609400px;}
._b{width:16.232400px;}
._c{width:17.583000px;}
._10{width:19.118160px;}
._14{width:20.981880px;}
._29{width:22.304520px;}
._1b{width:25.671240px;}
._2b{width:27.655200px;}
._3b{width:29.098080px;}
._31{width:30.661200px;}
._39{width:31.743360px;}
._19{width:33.541560px;}
._3e{width:36.853560px;}
._16{width:37.995840px;}
._20{width:41.001840px;}
._18{width:44.007840px;}
._36{width:46.653120px;}
._f{width:47.855520px;}
._2e{width:51.643080px;}
._38{width:55.310400px;}
._21{width:58.136040px;}
._23{width:59.999760px;}
._27{width:62.103960px;}
._3a{width:66.612960px;}
._15{width:77.735160px;}
._26{width:79.478640px;}
._2c{width:83.025720px;}
._22{width:86.813280px;}
._2f{width:88.075800px;}
._37{width:92.644920px;}
._3d{width:94.208040px;}
._32{width:98.356320px;}
._12{width:100.941480px;}
._1f{width:106.352280px;}
._34{width:109.298160px;}
._1c{width:113.205960px;}
._3f{width:126.672840px;}
._24{width:131.248080px;}
._1d{width:137.374200px;}
._30{width:151.322040px;}
._28{width:155.410200px;}
._2d{width:157.754880px;}
._17{width:164.127600px;}
._1a{width:169.358040px;}
._33{width:170.800920px;}
._1e{width:174.047400px;}
._25{width:190.219680px;}
._11{width:195.570360px;}
._2a{width:219.377880px;}
._13{width:230.079240px;}
._3c{width:235.129320px;}
._35{width:267.534000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs6{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y80{bottom:3.330000px;}
.y67{bottom:7.830000px;}
.y6f{bottom:7.920000px;}
.y7f{bottom:20.970000px;}
.y66{bottom:25.380000px;}
.y6d{bottom:25.470000px;}
.y7e{bottom:38.520000px;}
.y6a{bottom:43.020000px;}
.y75{bottom:43.110000px;}
.y95{bottom:43.140000px;}
.y7d{bottom:56.070000px;}
.y6c{bottom:60.570000px;}
.y69{bottom:60.600000px;}
.y71{bottom:60.660000px;}
.y84{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y97{bottom:78.210000px;}
.y78{bottom:78.240000px;}
.y77{bottom:95.790000px;}
.y1{bottom:101.640000px;}
.y91{bottom:123.690000px;}
.y10c{bottom:129.270000px;}
.y7c{bottom:130.530000px;}
.y23{bottom:139.350000px;}
.ye1{bottom:140.250000px;}
.y10b{bottom:146.910000px;}
.y62{bottom:154.740000px;}
.y22{bottom:156.990000px;}
.yb6{bottom:160.680000px;}
.ye0{bottom:167.160000px;}
.y10a{bottom:173.460000px;}
.y21{bottom:174.540000px;}
.yb5{bottom:178.320000px;}
.y61{bottom:190.290000px;}
.y109{bottom:191.100000px;}
.yb4{bottom:195.870000px;}
.y20{bottom:201.450000px;}
.y90{bottom:203.790000px;}
.ydf{bottom:204.150000px;}
.y7b{bottom:206.130000px;}
.y108{bottom:208.650000px;}
.y43{bottom:212.790000px;}
.yb3{bottom:213.510000px;}
.yde{bottom:221.700000px;}
.y60{bottom:225.840000px;}
.y42{bottom:230.340000px;}
.y107{bottom:235.200000px;}
.yb2{bottom:240.060000px;}
.y41{bottom:247.980000px;}
.ydd{bottom:248.610000px;}
.y1f{bottom:250.050000px;}
.y106{bottom:252.840000px;}
.y5f{bottom:261.480000px;}
.y40{bottom:265.530000px;}
.y7a{bottom:268.590000px;}
.y105{bottom:270.390000px;}
.yb1{bottom:275.610000px;}
.y5e{bottom:279.030000px;}
.y8f{bottom:283.890000px;}
.ydc{bottom:285.960000px;}
.y1e{bottom:287.040000px;}
.yb0{bottom:293.250000px;}
.y5d{bottom:296.670000px;}
.y104{bottom:296.940000px;}
.y3f{bottom:301.080000px;}
.y1d{bottom:304.680000px;}
.yaf{bottom:310.800000px;}
.y103{bottom:314.580000px;}
.y1c{bottom:322.230000px;}
.yae{bottom:328.440000px;}
.y5c{bottom:332.220000px;}
.y3e{bottom:333.300000px;}
.ydb{bottom:334.290000px;}
.y1b{bottom:339.870000px;}
.y102{bottom:341.130000px;}
.y8e{bottom:346.350000px;}
.y79{bottom:348.690000px;}
.y5b{bottom:350.580000px;}
.yda{bottom:351.840000px;}
.yad{bottom:354.990000px;}
.y101{bottom:358.770000px;}
.y5a{bottom:369.030000px;}
.yd9{bottom:370.290000px;}
.y1a{bottom:375.420000px;}
.y100{bottom:385.320000px;}
.y59{bottom:387.390000px;}
.yd8{bottom:387.840000px;}
.yac{bottom:390.540000px;}
.y19{bottom:392.970000px;}
.yff{bottom:402.870000px;}
.yd7{bottom:406.290000px;}
.yab{bottom:408.180000px;}
.y8d{bottom:408.900000px;}
.y18{bottom:410.610000px;}
.y76{bottom:411.240000px;}
.yfe{bottom:420.510000px;}
.y58{bottom:423.840000px;}
.yaa{bottom:425.730000px;}
.y17{bottom:428.160000px;}
.yd6{bottom:442.290000px;}
.ya9{bottom:443.370000px;}
.y16{bottom:445.800000px;}
.yfd{bottom:447.060000px;}
.y57{bottom:459.480000px;}
.yd5{bottom:459.840000px;}
.ya8{bottom:460.920000px;}
.y15{bottom:463.350000px;}
.yfc{bottom:464.700000px;}
.y8c{bottom:471.390000px;}
.y56{bottom:477.060000px;}
.yd4{bottom:478.320000px;}
.ya7{bottom:478.500000px;}
.y14{bottom:480.930000px;}
.yfb{bottom:491.280000px;}
.y55{bottom:494.700000px;}
.yd3{bottom:495.870000px;}
.y13{bottom:498.570000px;}
.ya6{bottom:505.140000px;}
.yfa{bottom:508.830000px;}
.y12{bottom:516.120000px;}
.y54{bottom:521.610000px;}
.y74{bottom:526.470000px;}
.yd2{bottom:532.230000px;}
.y11{bottom:533.670000px;}
.y8b{bottom:533.940000px;}
.yf9{bottom:535.470000px;}
.ya5{bottom:540.690000px;}
.yf8{bottom:553.020000px;}
.ya4{bottom:558.330000px;}
.yd1{bottom:567.870000px;}
.y10{bottom:569.310000px;}
.y53{bottom:569.850000px;}
.ya3{bottom:575.880000px;}
.yf7{bottom:579.660000px;}
.yd0{bottom:585.420000px;}
.yf{bottom:586.860000px;}
.y52{bottom:587.400000px;}
.ya2{bottom:593.430000px;}
.yf6{bottom:597.210000px;}
.ycf{bottom:603.060000px;}
.ye{bottom:604.500000px;}
.y73{bottom:606.570000px;}
.y124{bottom:610.620000px;}
.ya1{bottom:611.070000px;}
.y8a{bottom:614.040000px;}
.yce{bottom:620.610000px;}
.yf5{bottom:623.760000px;}
.y51{bottom:623.850000px;}
.y123{bottom:628.260000px;}
.ya0{bottom:637.620000px;}
.ycd{bottom:638.160000px;}
.yd{bottom:640.050000px;}
.y50{bottom:641.400000px;}
.y122{bottom:654.810000px;}
.ycc{bottom:655.800000px;}
.yc{bottom:657.600000px;}
.y89{bottom:658.950000px;}
.yf4{bottom:667.950000px;}
.y72{bottom:669.120000px;}
.y121{bottom:672.360000px;}
.y9f{bottom:673.260000px;}
.ycb{bottom:673.350000px;}
.y4f{bottom:677.850000px;}
.yf3{bottom:685.590000px;}
.y9e{bottom:690.810000px;}
.yca{bottom:690.990000px;}
.yb{bottom:693.240000px;}
.y4e{bottom:695.400000px;}
.y120{bottom:699.000000px;}
.y9d{bottom:708.360000px;}
.yc9{bottom:708.540000px;}
.ya{bottom:710.790000px;}
.yf2{bottom:712.140000px;}
.y11f{bottom:716.550000px;}
.y3d{bottom:717.000000px;}
.y88{bottom:721.410000px;}
.y4d{bottom:722.850000px;}
.y9c{bottom:726.000000px;}
.y9{bottom:728.430000px;}
.yf1{bottom:729.690000px;}
.y70{bottom:731.580000px;}
.y11e{bottom:734.190000px;}
.y3c{bottom:734.550000px;}
.yc8{bottom:735.450000px;}
.y9b{bottom:743.550000px;}
.y3b{bottom:752.190000px;}
.y8{bottom:755.340000px;}
.yf0{bottom:756.330000px;}
.y4c{bottom:758.400000px;}
.y11d{bottom:760.740000px;}
.y9a{bottom:761.100000px;}
.y3a{bottom:769.740000px;}
.yef{bottom:773.880000px;}
.y4b{bottom:776.040000px;}
.y11c{bottom:778.290000px;}
.yc7{bottom:783.690000px;}
.y87{bottom:783.960000px;}
.y99{bottom:787.740000px;}
.y4a{bottom:793.590000px;}
.y11b{bottom:795.930000px;}
.yee{bottom:800.520000px;}
.yc6{bottom:801.330000px;}
.y39{bottom:805.290000px;}
.y7{bottom:807.864000px;}
.y49{bottom:811.140000px;}
.y6e{bottom:811.680000px;}
.yed{bottom:818.070000px;}
.yc5{bottom:818.880000px;}
.y11a{bottom:822.480000px;}
.y38{bottom:822.930000px;}
.y98{bottom:823.650000px;}
.y48{bottom:828.780000px;}
.y86{bottom:828.870000px;}
.yc4{bottom:836.520000px;}
.y119{bottom:840.030000px;}
.y6{bottom:840.175500px;}
.y37{bottom:840.480000px;}
.yec{bottom:844.620000px;}
.yc3{bottom:854.070000px;}
.y47{bottom:855.330000px;}
.y36{bottom:858.030000px;}
.yeb{bottom:862.260000px;}
.y118{bottom:866.670000px;}
.y96{bottom:869.280000px;}
.yc2{bottom:871.620000px;}
.y5{bottom:872.487000px;}
.y6b{bottom:874.230000px;}
.y117{bottom:884.220000px;}
.yea{bottom:888.810000px;}
.y46{bottom:890.970000px;}
.y85{bottom:891.420000px;}
.y35{bottom:893.670000px;}
.y4{bottom:904.981500px;}
.ye9{bottom:906.450000px;}
.yc1{bottom:907.260000px;}
.y45{bottom:908.520000px;}
.y116{bottom:910.860000px;}
.y34{bottom:911.220000px;}
.yc0{bottom:924.810000px;}
.y115{bottom:928.410000px;}
.y33{bottom:928.860000px;}
.ye8{bottom:933.000000px;}
.y3{bottom:937.699500px;}
.y44{bottom:940.740000px;}
.ybf{bottom:942.450000px;}
.y32{bottom:946.410000px;}
.ye7{bottom:950.550000px;}
.y83{bottom:953.880000px;}
.y68{bottom:954.330000px;}
.y114{bottom:954.960000px;}
.ybe{bottom:960.000000px;}
.y31{bottom:963.960000px;}
.y94{bottom:966.930000px;}
.ye6{bottom:968.190000px;}
.y113{bottom:972.600000px;}
.y25{bottom:977.175000px;}
.ybd{bottom:977.550000px;}
.y30{bottom:981.600000px;}
.y112{bottom:990.150000px;}
.ye5{bottom:994.740000px;}
.ybc{bottom:995.190000px;}
.y24{bottom:1002.375000px;}
.ye4{bottom:1012.320000px;}
.ybb{bottom:1012.770000px;}
.y111{bottom:1016.820000px;}
.y2f{bottom:1017.180000px;}
.y93{bottom:1029.510000px;}
.yba{bottom:1030.320000px;}
.y82{bottom:1034.010000px;}
.y110{bottom:1034.370000px;}
.y65{bottom:1034.460000px;}
.y2e{bottom:1034.820000px;}
.ye3{bottom:1038.960000px;}
.yb9{bottom:1047.960000px;}
.y10f{bottom:1051.920000px;}
.y2d{bottom:1052.370000px;}
.ye2{bottom:1056.510000px;}
.yb8{bottom:1065.510000px;}
.y2c{bottom:1069.920000px;}
.y10e{bottom:1078.560000px;}
.yb7{bottom:1083.150000px;}
.y2b{bottom:1087.560000px;}
.y92{bottom:1091.970000px;}
.y10d{bottom:1096.110000px;}
.y64{bottom:1100.700000px;}
.y2a{bottom:1105.110000px;}
.y81{bottom:1114.110000px;}
.y29{bottom:1122.750000px;}
.y63{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h2{height:32.566289px;}
.h13{height:39.690000px;}
.hc{height:44.100000px;}
.h15{height:44.190000px;}
.h3{height:44.538574px;}
.h5{height:50.902383px;}
.h7{height:55.779258px;}
.h8{height:58.898438px;}
.h6{height:59.503535px;}
.hf{height:61.740000px;}
.h17{height:61.770000px;}
.ha{height:61.793886px;}
.h16{height:61.830000px;}
.h18{height:61.860000px;}
.h9{height:62.585859px;}
.hb{height:68.582109px;}
.h12{height:74.790000px;}
.he{height:79.290000px;}
.hd{height:79.320000px;}
.h10{height:79.380000px;}
.h14{height:79.410000px;}
.h4{height:80.324473px;}
.h19{height:96.930000px;}
.h11{height:114.510000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:37.710000px;}
.w5{width:48.690000px;}
.w8{width:66.060000px;}
.w7{width:105.510000px;}
.w4{width:109.020000px;}
.wa{width:117.090000px;}
.w9{width:120.240000px;}
.w6{width:145.980000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x1{left:68.040000px;}
.x2{left:69.639000px;}
.x3{left:72.270000px;}
.xc{left:78.659987px;}
.xa{left:81.899987px;}
.xe{left:85.589987px;}
.x4{left:90.360000px;}
.xf{left:95.039987px;}
.x18{left:98.459987px;}
.x11{left:107.280000px;}
.xd{left:110.609987px;}
.x19{left:125.459987px;}
.x5{left:202.799987px;}
.x12{left:217.110000px;}
.x13{left:266.520000px;}
.x8{left:312.239987px;}
.x14{left:413.310000px;}
.xb{left:414.839987px;}
.x15{left:519.630000px;}
.x16{left:586.410000px;}
.x7{left:643.559987px;}
.x9{left:680.639987px;}
.x17{left:707.370000px;}
.x6{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1b{letter-spacing:-0.395200pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls8{letter-spacing:-0.119467pt;}
.lse{letter-spacing:-0.111467pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007787pt;}
.ls1a{letter-spacing:0.021440pt;}
.lsf{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.053867pt;}
.ls10{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.103467pt;}
.ls16{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls14{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.161067pt;}
.ls19{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ls11{letter-spacing:74.103680pt;}
.ws2{word-spacing:-12.883200pt;}
.ws22{word-spacing:-11.917867pt;}
.ws1c{word-spacing:-11.910933pt;}
.ws21{word-spacing:-11.860267pt;}
.ws20{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws1f{word-spacing:-11.645333pt;}
.ws1d{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws1e{word-spacing:-7.657067pt;}
.ws15{word-spacing:-0.453333pt;}
.wsf{word-spacing:-0.410667pt;}
.ws18{word-spacing:-0.362667pt;}
.ws14{word-spacing:-0.336000pt;}
.wse{word-spacing:-0.314667pt;}
.ws17{word-spacing:-0.282667pt;}
.ws13{word-spacing:-0.277333pt;}
.wsc{word-spacing:-0.266667pt;}
.ws1b{word-spacing:-0.245333pt;}
.wsb{word-spacing:-0.240000pt;}
.wsd{word-spacing:-0.234667pt;}
.ws10{word-spacing:-0.229333pt;}
.ws11{word-spacing:-0.181333pt;}
.ws12{word-spacing:-0.160000pt;}
.wsa{word-spacing:-0.149333pt;}
.ws19{word-spacing:-0.090667pt;}
.ws8{word-spacing:-0.080000pt;}
.ws7{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws16{word-spacing:0.138667pt;}
.ws5{word-spacing:0.181333pt;}
.ws9{word-spacing:0.186667pt;}
.ws1a{word-spacing:0.192000pt;}
.ws6{word-spacing:0.325333pt;}
._e{margin-left:-3.448111pt;}
._3{margin-left:-2.526293pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.152000pt;}
._9{width:2.043947pt;}
._6{width:3.081387pt;}
._4{width:4.323840pt;}
._5{width:5.504534pt;}
._2{width:7.161067pt;}
._7{width:8.122666pt;}
._d{width:9.031574pt;}
._a{width:10.527466pt;}
._8{width:12.986134pt;}
._b{width:14.428800pt;}
._c{width:15.629334pt;}
._10{width:16.993920pt;}
._14{width:18.650560pt;}
._29{width:19.826240pt;}
._1b{width:22.818880pt;}
._2b{width:24.582400pt;}
._3b{width:25.864960pt;}
._31{width:27.254400pt;}
._39{width:28.216320pt;}
._19{width:29.814720pt;}
._3e{width:32.758720pt;}
._16{width:33.774080pt;}
._20{width:36.446080pt;}
._18{width:39.118080pt;}
._36{width:41.469440pt;}
._f{width:42.538240pt;}
._2e{width:45.904960pt;}
._38{width:49.164800pt;}
._21{width:51.676480pt;}
._23{width:53.333120pt;}
._27{width:55.203520pt;}
._3a{width:59.211520pt;}
._15{width:69.097920pt;}
._26{width:70.647680pt;}
._2c{width:73.800640pt;}
._22{width:77.167360pt;}
._2f{width:78.289600pt;}
._37{width:82.351040pt;}
._3d{width:83.740480pt;}
._32{width:87.427840pt;}
._12{width:89.725760pt;}
._1f{width:94.535360pt;}
._34{width:97.153920pt;}
._1c{width:100.627520pt;}
._3f{width:112.598080pt;}
._24{width:116.664960pt;}
._1d{width:122.110400pt;}
._30{width:134.508480pt;}
._28{width:138.142400pt;}
._2d{width:140.226560pt;}
._17{width:145.891200pt;}
._1a{width:150.540480pt;}
._33{width:151.823040pt;}
._1e{width:154.708800pt;}
._25{width:169.084160pt;}
._11{width:173.840320pt;}
._2a{width:195.002560pt;}
._13{width:204.514880pt;}
._3c{width:209.003840pt;}
._35{width:237.808000pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs6{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:2.960000pt;}
.y67{bottom:6.960000pt;}
.y6f{bottom:7.040000pt;}
.y7f{bottom:18.640000pt;}
.y66{bottom:22.560000pt;}
.y6d{bottom:22.640000pt;}
.y7e{bottom:34.240000pt;}
.y6a{bottom:38.240000pt;}
.y75{bottom:38.320000pt;}
.y95{bottom:38.346667pt;}
.y7d{bottom:49.840000pt;}
.y6c{bottom:53.840000pt;}
.y69{bottom:53.866667pt;}
.y71{bottom:53.920000pt;}
.y84{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y97{bottom:69.520000pt;}
.y78{bottom:69.546667pt;}
.y77{bottom:85.146667pt;}
.y1{bottom:90.346667pt;}
.y91{bottom:109.946667pt;}
.y10c{bottom:114.906667pt;}
.y7c{bottom:116.026667pt;}
.y23{bottom:123.866667pt;}
.ye1{bottom:124.666667pt;}
.y10b{bottom:130.586667pt;}
.y62{bottom:137.546667pt;}
.y22{bottom:139.546667pt;}
.yb6{bottom:142.826667pt;}
.ye0{bottom:148.586667pt;}
.y10a{bottom:154.186667pt;}
.y21{bottom:155.146667pt;}
.yb5{bottom:158.506667pt;}
.y61{bottom:169.146667pt;}
.y109{bottom:169.866667pt;}
.yb4{bottom:174.106667pt;}
.y20{bottom:179.066667pt;}
.y90{bottom:181.146667pt;}
.ydf{bottom:181.466667pt;}
.y7b{bottom:183.226667pt;}
.y108{bottom:185.466667pt;}
.y43{bottom:189.146667pt;}
.yb3{bottom:189.786667pt;}
.yde{bottom:197.066667pt;}
.y60{bottom:200.746667pt;}
.y42{bottom:204.746667pt;}
.y107{bottom:209.066667pt;}
.yb2{bottom:213.386667pt;}
.y41{bottom:220.426667pt;}
.ydd{bottom:220.986667pt;}
.y1f{bottom:222.266667pt;}
.y106{bottom:224.746667pt;}
.y5f{bottom:232.426667pt;}
.y40{bottom:236.026667pt;}
.y7a{bottom:238.746667pt;}
.y105{bottom:240.346667pt;}
.yb1{bottom:244.986667pt;}
.y5e{bottom:248.026667pt;}
.y8f{bottom:252.346667pt;}
.ydc{bottom:254.186667pt;}
.y1e{bottom:255.146667pt;}
.yb0{bottom:260.666667pt;}
.y5d{bottom:263.706667pt;}
.y104{bottom:263.946667pt;}
.y3f{bottom:267.626667pt;}
.y1d{bottom:270.826667pt;}
.yaf{bottom:276.266667pt;}
.y103{bottom:279.626667pt;}
.y1c{bottom:286.426667pt;}
.yae{bottom:291.946667pt;}
.y5c{bottom:295.306667pt;}
.y3e{bottom:296.266667pt;}
.ydb{bottom:297.146667pt;}
.y1b{bottom:302.106667pt;}
.y102{bottom:303.226667pt;}
.y8e{bottom:307.866667pt;}
.y79{bottom:309.946667pt;}
.y5b{bottom:311.626667pt;}
.yda{bottom:312.746667pt;}
.yad{bottom:315.546667pt;}
.y101{bottom:318.906667pt;}
.y5a{bottom:328.026667pt;}
.yd9{bottom:329.146667pt;}
.y1a{bottom:333.706667pt;}
.y100{bottom:342.506667pt;}
.y59{bottom:344.346667pt;}
.yd8{bottom:344.746667pt;}
.yac{bottom:347.146667pt;}
.y19{bottom:349.306667pt;}
.yff{bottom:358.106667pt;}
.yd7{bottom:361.146667pt;}
.yab{bottom:362.826667pt;}
.y8d{bottom:363.466667pt;}
.y18{bottom:364.986667pt;}
.y76{bottom:365.546667pt;}
.yfe{bottom:373.786667pt;}
.y58{bottom:376.746667pt;}
.yaa{bottom:378.426667pt;}
.y17{bottom:380.586667pt;}
.yd6{bottom:393.146667pt;}
.ya9{bottom:394.106667pt;}
.y16{bottom:396.266667pt;}
.yfd{bottom:397.386667pt;}
.y57{bottom:408.426667pt;}
.yd5{bottom:408.746667pt;}
.ya8{bottom:409.706667pt;}
.y15{bottom:411.866667pt;}
.yfc{bottom:413.066667pt;}
.y8c{bottom:419.013333pt;}
.y56{bottom:424.053333pt;}
.yd4{bottom:425.173333pt;}
.ya7{bottom:425.333333pt;}
.y14{bottom:427.493333pt;}
.yfb{bottom:436.693333pt;}
.y55{bottom:439.733333pt;}
.yd3{bottom:440.773333pt;}
.y13{bottom:443.173333pt;}
.ya6{bottom:449.013333pt;}
.yfa{bottom:452.293333pt;}
.y12{bottom:458.773333pt;}
.y54{bottom:463.653333pt;}
.y74{bottom:467.973333pt;}
.yd2{bottom:473.093333pt;}
.y11{bottom:474.373333pt;}
.y8b{bottom:474.613333pt;}
.yf9{bottom:475.973333pt;}
.ya5{bottom:480.613333pt;}
.yf8{bottom:491.573333pt;}
.ya4{bottom:496.293333pt;}
.yd1{bottom:504.773333pt;}
.y10{bottom:506.053333pt;}
.y53{bottom:506.533333pt;}
.ya3{bottom:511.893333pt;}
.yf7{bottom:515.253333pt;}
.yd0{bottom:520.373333pt;}
.yf{bottom:521.653333pt;}
.y52{bottom:522.133333pt;}
.ya2{bottom:527.493333pt;}
.yf6{bottom:530.853333pt;}
.ycf{bottom:536.053333pt;}
.ye{bottom:537.333333pt;}
.y73{bottom:539.173333pt;}
.y124{bottom:542.773333pt;}
.ya1{bottom:543.173333pt;}
.y8a{bottom:545.813333pt;}
.yce{bottom:551.653333pt;}
.yf5{bottom:554.453333pt;}
.y51{bottom:554.533333pt;}
.y123{bottom:558.453333pt;}
.ya0{bottom:566.773333pt;}
.ycd{bottom:567.253333pt;}
.yd{bottom:568.933333pt;}
.y50{bottom:570.133333pt;}
.y122{bottom:582.053333pt;}
.ycc{bottom:582.933333pt;}
.yc{bottom:584.533333pt;}
.y89{bottom:585.733333pt;}
.yf4{bottom:593.733333pt;}
.y72{bottom:594.773333pt;}
.y121{bottom:597.653333pt;}
.y9f{bottom:598.453333pt;}
.ycb{bottom:598.533333pt;}
.y4f{bottom:602.533333pt;}
.yf3{bottom:609.413333pt;}
.y9e{bottom:614.053333pt;}
.yca{bottom:614.213333pt;}
.yb{bottom:616.213333pt;}
.y4e{bottom:618.133333pt;}
.y120{bottom:621.333333pt;}
.y9d{bottom:629.653333pt;}
.yc9{bottom:629.813333pt;}
.ya{bottom:631.813333pt;}
.yf2{bottom:633.013333pt;}
.y11f{bottom:636.933333pt;}
.y3d{bottom:637.333333pt;}
.y88{bottom:641.253333pt;}
.y4d{bottom:642.533333pt;}
.y9c{bottom:645.333333pt;}
.y9{bottom:647.493333pt;}
.yf1{bottom:648.613333pt;}
.y70{bottom:650.293333pt;}
.y11e{bottom:652.613333pt;}
.y3c{bottom:652.933333pt;}
.yc8{bottom:653.733333pt;}
.y9b{bottom:660.933333pt;}
.y3b{bottom:668.613333pt;}
.y8{bottom:671.413333pt;}
.yf0{bottom:672.293333pt;}
.y4c{bottom:674.133333pt;}
.y11d{bottom:676.213333pt;}
.y9a{bottom:676.533333pt;}
.y3a{bottom:684.213333pt;}
.yef{bottom:687.893333pt;}
.y4b{bottom:689.813333pt;}
.y11c{bottom:691.813333pt;}
.yc7{bottom:696.613333pt;}
.y87{bottom:696.853333pt;}
.y99{bottom:700.213333pt;}
.y4a{bottom:705.413333pt;}
.y11b{bottom:707.493333pt;}
.yee{bottom:711.573333pt;}
.yc6{bottom:712.293333pt;}
.y39{bottom:715.813333pt;}
.y7{bottom:718.101333pt;}
.y49{bottom:721.013333pt;}
.y6e{bottom:721.493333pt;}
.yed{bottom:727.173333pt;}
.yc5{bottom:727.893333pt;}
.y11a{bottom:731.093333pt;}
.y38{bottom:731.493333pt;}
.y98{bottom:732.133333pt;}
.y48{bottom:736.693333pt;}
.y86{bottom:736.773333pt;}
.yc4{bottom:743.573333pt;}
.y119{bottom:746.693333pt;}
.y6{bottom:746.822667pt;}
.y37{bottom:747.093333pt;}
.yec{bottom:750.773333pt;}
.yc3{bottom:759.173333pt;}
.y47{bottom:760.293333pt;}
.y36{bottom:762.693333pt;}
.yeb{bottom:766.453333pt;}
.y118{bottom:770.373333pt;}
.y96{bottom:772.693333pt;}
.yc2{bottom:774.773333pt;}
.y5{bottom:775.544000pt;}
.y6b{bottom:777.093333pt;}
.y117{bottom:785.973333pt;}
.yea{bottom:790.053333pt;}
.y46{bottom:791.973333pt;}
.y85{bottom:792.373333pt;}
.y35{bottom:794.373333pt;}
.y4{bottom:804.428000pt;}
.ye9{bottom:805.733333pt;}
.yc1{bottom:806.453333pt;}
.y45{bottom:807.573333pt;}
.y116{bottom:809.653333pt;}
.y34{bottom:809.973333pt;}
.yc0{bottom:822.053333pt;}
.y115{bottom:825.253333pt;}
.y33{bottom:825.653333pt;}
.ye8{bottom:829.333333pt;}
.y3{bottom:833.510667pt;}
.y44{bottom:836.213333pt;}
.ybf{bottom:837.733333pt;}
.y32{bottom:841.253333pt;}
.ye7{bottom:844.933333pt;}
.y83{bottom:847.893333pt;}
.y68{bottom:848.293333pt;}
.y114{bottom:848.853333pt;}
.ybe{bottom:853.333333pt;}
.y31{bottom:856.853333pt;}
.y94{bottom:859.493333pt;}
.ye6{bottom:860.613333pt;}
.y113{bottom:864.533333pt;}
.y25{bottom:868.600000pt;}
.ybd{bottom:868.933333pt;}
.y30{bottom:872.533333pt;}
.y112{bottom:880.133333pt;}
.ye5{bottom:884.213333pt;}
.ybc{bottom:884.613333pt;}
.y24{bottom:891.000000pt;}
.ye4{bottom:899.840000pt;}
.ybb{bottom:900.240000pt;}
.y111{bottom:903.840000pt;}
.y2f{bottom:904.160000pt;}
.y93{bottom:915.120000pt;}
.yba{bottom:915.840000pt;}
.y82{bottom:919.120000pt;}
.y110{bottom:919.440000pt;}
.y65{bottom:919.520000pt;}
.y2e{bottom:919.840000pt;}
.ye3{bottom:923.520000pt;}
.yb9{bottom:931.520000pt;}
.y10f{bottom:935.040000pt;}
.y2d{bottom:935.440000pt;}
.ye2{bottom:939.120000pt;}
.yb8{bottom:947.120000pt;}
.y2c{bottom:951.040000pt;}
.y10e{bottom:958.720000pt;}
.yb7{bottom:962.800000pt;}
.y2b{bottom:966.720000pt;}
.y92{bottom:970.640000pt;}
.y10d{bottom:974.320000pt;}
.y64{bottom:978.400000pt;}
.y2a{bottom:982.320000pt;}
.y81{bottom:990.320000pt;}
.y29{bottom:998.000000pt;}
.y63{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h2{height:28.947812pt;}
.h13{height:35.280000pt;}
.hc{height:39.200000pt;}
.h15{height:39.280000pt;}
.h3{height:39.589844pt;}
.h5{height:45.246562pt;}
.h7{height:49.581562pt;}
.h8{height:52.354167pt;}
.h6{height:52.892031pt;}
.hf{height:54.880000pt;}
.h17{height:54.906667pt;}
.ha{height:54.927899pt;}
.h16{height:54.960000pt;}
.h18{height:54.986667pt;}
.h9{height:55.631875pt;}
.hb{height:60.961875pt;}
.h12{height:66.480000pt;}
.he{height:70.480000pt;}
.hd{height:70.506667pt;}
.h10{height:70.560000pt;}
.h14{height:70.586667pt;}
.h4{height:71.399531pt;}
.h19{height:86.160000pt;}
.h11{height:101.786667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:33.520000pt;}
.w5{width:43.280000pt;}
.w8{width:58.720000pt;}
.w7{width:93.786667pt;}
.w4{width:96.906667pt;}
.wa{width:104.080000pt;}
.w9{width:106.880000pt;}
.w6{width:129.760000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x1{left:60.480000pt;}
.x2{left:61.901333pt;}
.x3{left:64.240000pt;}
.xc{left:69.919988pt;}
.xa{left:72.799988pt;}
.xe{left:76.079988pt;}
.x4{left:80.320000pt;}
.xf{left:84.479988pt;}
.x18{left:87.519988pt;}
.x11{left:95.360000pt;}
.xd{left:98.319988pt;}
.x19{left:111.519988pt;}
.x5{left:180.266655pt;}
.x12{left:192.986667pt;}
.x13{left:236.906667pt;}
.x8{left:277.546655pt;}
.x14{left:367.386667pt;}
.xb{left:368.746655pt;}
.x15{left:461.893333pt;}
.x16{left:521.253333pt;}
.x7{left:572.053322pt;}
.x9{left:605.013322pt;}
.x17{left:628.773333pt;}
.x6{left:704.053322pt;}
}




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