
    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_e73fc1dd864d643088b94dc4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_c8f5114ad666fc9ee9de68c1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_a5d2b436fdf067e9e10b72fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_963c35f46193553016ceb4ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_d7b836ca1df9b5497e4d47ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_c697c232d89dbca6b9193e41.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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);}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.798000px;}
.ls24{letter-spacing:-0.696000px;}
.ls12{letter-spacing:-0.579600px;}
.ls9{letter-spacing:-0.570000px;}
.ls32{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.533400px;}
.ls6{letter-spacing:-0.463800px;}
.lse{letter-spacing:-0.414000px;}
.lsd{letter-spacing:-0.326400px;}
.ls8{letter-spacing:-0.310800px;}
.ls10{letter-spacing:-0.240600px;}
.ls23{letter-spacing:-0.226800px;}
.ls1a{letter-spacing:-0.175800px;}
.ls5{letter-spacing:-0.164400px;}
.ls1d{letter-spacing:-0.115800px;}
.ls31{letter-spacing:-0.107400px;}
.ls2a{letter-spacing:-0.067200px;}
.ls26{letter-spacing:-0.064800px;}
.ls11{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.018720px;}
.ls25{letter-spacing:0.023760px;}
.ls4{letter-spacing:0.038880px;}
.lsc{letter-spacing:0.066000px;}
.ls20{letter-spacing:0.074880px;}
.ls17{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.150000px;}
.ls29{letter-spacing:0.174000px;}
.ls22{letter-spacing:0.175200px;}
.ls30{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.186600px;}
.lsa{letter-spacing:0.190200px;}
.ls2d{letter-spacing:0.195000px;}
.ls28{letter-spacing:0.195120px;}
.ls19{letter-spacing:0.209400px;}
.ls7{letter-spacing:0.256200px;}
.ls2e{letter-spacing:0.288600px;}
.ls14{letter-spacing:0.306000px;}
.ls1b{letter-spacing:0.309000px;}
.ls27{letter-spacing:0.338160px;}
.lsf{letter-spacing:0.348600px;}
.ls1c{letter-spacing:0.393600px;}
.ls1{letter-spacing:0.427680px;}
.ls1e{letter-spacing:0.493200px;}
.ls2b{letter-spacing:0.660000px;}
.ls2{letter-spacing:0.780000px;}
.ls21{letter-spacing:0.894000px;}
.ls13{letter-spacing:1.026000px;}
.ls33{letter-spacing:12.186720px;}
.ls2f{letter-spacing:42.426720px;}
.ls18{letter-spacing:46.026720px;}
.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:-19.077120px;}
.ws2{word-spacing:-16.272000px;}
.ws4{word-spacing:-15.226440px;}
.ws5{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.805840px;}
.ws6{word-spacing:-14.659440px;}
.ws3{word-spacing:-14.506440px;}
.ws16{word-spacing:-14.399760px;}
.ws1b{word-spacing:-14.165760px;}
.wsa{word-spacing:-13.854360px;}
.wsf{word-spacing:-13.811760px;}
.ws12{word-spacing:-13.715160px;}
.ws1c{word-spacing:-13.700760px;}
.ws11{word-spacing:-13.692360px;}
.ws17{word-spacing:-13.680960px;}
.ws15{word-spacing:-13.646160px;}
.ws9{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.447440px;}
.ws19{word-spacing:-13.440960px;}
.ws1a{word-spacing:-13.438560px;}
.ws1d{word-spacing:-13.398360px;}
.ws13{word-spacing:-13.389960px;}
.wsb{word-spacing:-13.265160px;}
.ws14{word-spacing:-13.179360px;}
.wsd{word-spacing:-12.926160px;}
.ws18{word-spacing:-12.809760px;}
.ws10{word-spacing:-12.707760px;}
.ws7{word-spacing:-9.437760px;}
.ws8{word-spacing:-8.786880px;}
.wse{word-spacing:0.000000px;}
._22{margin-left:-532.558560px;}
._24{margin-left:-525.220560px;}
._1{margin-left:-485.718240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-307.041120px;}
._16{margin-left:-292.890240px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._1c{margin-left:-248.137200px;}
._d{margin-left:-240.510240px;}
._1b{margin-left:-220.314240px;}
._26{margin-left:-217.808640px;}
._11{margin-left:-202.146240px;}
._1d{margin-left:-199.946880px;}
._25{margin-left:-188.893440px;}
._2b{margin-left:-172.182240px;}
._10{margin-left:-171.054720px;}
._f{margin-left:-165.490560px;}
._28{margin-left:-154.885440px;}
._b{margin-left:-153.774720px;}
._4{margin-left:-150.068400px;}
._c{margin-left:-148.690080px;}
._2a{margin-left:-142.858800px;}
._e{margin-left:-134.192160px;}
._13{margin-left:-121.106160px;}
._12{margin-left:-117.857760px;}
._15{margin-left:-115.522560px;}
._29{margin-left:-110.054880px;}
._21{margin-left:-102.349440px;}
._8{margin-left:-91.638240px;}
._27{margin-left:-87.567360px;}
._20{margin-left:-86.399760px;}
._1f{margin-left:-83.520000px;}
._17{margin-left:-81.979200px;}
._19{margin-left:-66.703680px;}
._14{margin-left:-61.344000px;}
._18{margin-left:-49.735920px;}
._1a{margin-left:-48.703680px;}
._1e{margin-left:-30.741360px;}
._2f{margin-left:-8.038800px;}
._42{margin-left:-6.496560px;}
._30{margin-left:-5.360400px;}
._2c{margin-left:-3.883440px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._23{width:1.082160px;}
._31{width:2.133840px;}
._2d{width:3.351600px;}
._2e{width:4.847520px;}
._36{width:5.877120px;}
._38{width:7.136640px;}
._32{width:8.529840px;}
._33{width:10.305840px;}
._34{width:11.308080px;}
._35{width:12.472800px;}
._37{width:15.037200px;}
._3b{width:16.236000px;}
._3f{width:17.509680px;}
._3e{width:18.585360px;}
._3a{width:20.064960px;}
._39{width:21.155040px;}
._3c{width:28.892160px;}
._3d{width:30.470880px;}
._41{width:36.740160px;}
._40{width:37.824480px;}
._43{width:1390.794240px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb0{bottom:6.660000px;}
.yc4{bottom:6.690000px;}
.yc6{bottom:10.440000px;}
.yb3{bottom:10.620000px;}
.y6{bottom:59.940000px;}
.y31{bottom:90.000000px;}
.ya2{bottom:100.260000px;}
.y108{bottom:102.960000px;}
.y83{bottom:104.220000px;}
.y107{bottom:108.000000px;}
.y30{bottom:111.060000px;}
.y64{bottom:113.220000px;}
.ydc{bottom:118.620000px;}
.ya1{bottom:121.320000px;}
.y82{bottom:125.280000px;}
.y106{bottom:129.060000px;}
.y2f{bottom:132.120000px;}
.y63{bottom:134.280000px;}
.ydb{bottom:139.680000px;}
.ya0{bottom:142.380000px;}
.y81{bottom:146.340000px;}
.y105{bottom:150.120000px;}
.y2e{bottom:153.210000px;}
.y62{bottom:155.370000px;}
.yda{bottom:160.770000px;}
.y9f{bottom:163.470000px;}
.y80{bottom:167.430000px;}
.y104{bottom:171.210000px;}
.y2d{bottom:174.270000px;}
.y61{bottom:176.430000px;}
.yd9{bottom:181.830000px;}
.y9e{bottom:184.530000px;}
.y7f{bottom:188.490000px;}
.y103{bottom:192.270000px;}
.y2c{bottom:195.330000px;}
.y60{bottom:197.490000px;}
.yd8{bottom:202.890000px;}
.y9d{bottom:205.590000px;}
.y7e{bottom:209.550000px;}
.y102{bottom:213.330000px;}
.y2b{bottom:216.390000px;}
.y5f{bottom:218.550000px;}
.yd7{bottom:223.950000px;}
.y9c{bottom:226.650000px;}
.y7d{bottom:230.610000px;}
.y101{bottom:234.390000px;}
.y2a{bottom:237.450000px;}
.y5e{bottom:239.610000px;}
.yd6{bottom:245.010000px;}
.y9b{bottom:247.710000px;}
.y7c{bottom:251.670000px;}
.y100{bottom:255.450000px;}
.y29{bottom:258.510000px;}
.y5d{bottom:260.670000px;}
.yd5{bottom:264.270000px;}
.y9a{bottom:268.770000px;}
.y7b{bottom:272.730000px;}
.yff{bottom:276.510000px;}
.y28{bottom:279.570000px;}
.y5c{bottom:281.730000px;}
.y99{bottom:289.830000px;}
.y7a{bottom:293.790000px;}
.yfe{bottom:297.570000px;}
.y27{bottom:300.630000px;}
.y5b{bottom:302.790000px;}
.y98{bottom:310.890000px;}
.y79{bottom:314.850000px;}
.yd4{bottom:315.390000px;}
.yfd{bottom:318.630000px;}
.y26{bottom:321.690000px;}
.y5a{bottom:323.850000px;}
.y97{bottom:331.950000px;}
.y78{bottom:335.910000px;}
.yfc{bottom:339.690000px;}
.y25{bottom:342.750000px;}
.y59{bottom:344.910000px;}
.yd3{bottom:347.970000px;}
.y96{bottom:353.010000px;}
.y77{bottom:356.970000px;}
.yfb{bottom:360.750000px;}
.y24{bottom:363.810000px;}
.y58{bottom:365.970000px;}
.yd2{bottom:369.030000px;}
.y95{bottom:374.070000px;}
.y76{bottom:378.030000px;}
.yfa{bottom:381.810000px;}
.y23{bottom:384.870000px;}
.y57{bottom:387.030000px;}
.yd1{bottom:390.090000px;}
.y94{bottom:395.130000px;}
.y75{bottom:399.090000px;}
.yf9{bottom:402.915000px;}
.y22{bottom:405.975000px;}
.y56{bottom:408.135000px;}
.yd0{bottom:411.195000px;}
.y93{bottom:416.235000px;}
.y74{bottom:420.195000px;}
.y21{bottom:427.035000px;}
.y55{bottom:429.195000px;}
.ycf{bottom:432.255000px;}
.yf8{bottom:432.975000px;}
.y92{bottom:437.295000px;}
.y73{bottom:441.255000px;}
.y20{bottom:448.095000px;}
.y54{bottom:450.255000px;}
.yce{bottom:453.315000px;}
.yf7{bottom:454.035000px;}
.y91{bottom:458.355000px;}
.y72{bottom:462.315000px;}
.y1f{bottom:469.155000px;}
.y53{bottom:471.315000px;}
.ycd{bottom:474.375000px;}
.yf6{bottom:475.095000px;}
.y90{bottom:479.415000px;}
.y71{bottom:483.375000px;}
.y52{bottom:492.375000px;}
.y1e{bottom:492.555000px;}
.ycc{bottom:495.435000px;}
.yf5{bottom:496.155000px;}
.y8f{bottom:500.475000px;}
.y70{bottom:504.435000px;}
.y1d{bottom:513.435000px;}
.ycb{bottom:516.495000px;}
.yf4{bottom:517.215000px;}
.y8e{bottom:521.535000px;}
.y6f{bottom:525.495000px;}
.y51{bottom:534.495000px;}
.yca{bottom:537.555000px;}
.yf3{bottom:538.275000px;}
.y8d{bottom:542.595000px;}
.y1c{bottom:543.495000px;}
.y6e{bottom:546.555000px;}
.y50{bottom:555.555000px;}
.yc9{bottom:558.615000px;}
.yf2{bottom:559.335000px;}
.y8c{bottom:563.655000px;}
.y1b{bottom:564.555000px;}
.y6d{bottom:567.615000px;}
.y4f{bottom:576.615000px;}
.yc8{bottom:579.675000px;}
.yf1{bottom:580.395000px;}
.y8b{bottom:584.715000px;}
.y1a{bottom:585.615000px;}
.y6c{bottom:588.675000px;}
.y4e{bottom:597.675000px;}
.yc7{bottom:600.735000px;}
.yf0{bottom:601.455000px;}
.y8a{bottom:605.775000px;}
.y19{bottom:606.675000px;}
.y6b{bottom:609.735000px;}
.y4d{bottom:618.735000px;}
.yc5{bottom:619.995000px;}
.yef{bottom:622.515000px;}
.y89{bottom:626.835000px;}
.y18{bottom:627.735000px;}
.y6a{bottom:630.795000px;}
.y4c{bottom:639.795000px;}
.yee{bottom:641.775000px;}
.yc3{bottom:645.555000px;}
.y88{bottom:647.895000px;}
.y17{bottom:648.795000px;}
.y69{bottom:651.885000px;}
.y4b{bottom:660.885000px;}
.yed{bottom:667.365000px;}
.y87{bottom:668.985000px;}
.y16{bottom:669.885000px;}
.yc2{bottom:671.865000px;}
.y68{bottom:672.945000px;}
.y4a{bottom:681.945000px;}
.y86{bottom:690.045000px;}
.y15{bottom:690.945000px;}
.yec{bottom:693.645000px;}
.y67{bottom:694.005000px;}
.y49{bottom:703.005000px;}
.yc1{bottom:704.445000px;}
.y85{bottom:711.105000px;}
.y14{bottom:712.005000px;}
.y66{bottom:715.065000px;}
.y48{bottom:724.065000px;}
.yc0{bottom:725.505000px;}
.yeb{bottom:726.225000px;}
.y84{bottom:728.745000px;}
.y13{bottom:733.065000px;}
.y65{bottom:736.125000px;}
.y47{bottom:745.125000px;}
.ybf{bottom:746.565000px;}
.yea{bottom:747.285000px;}
.y12{bottom:754.125000px;}
.ya5{bottom:757.005000px;}
.y46{bottom:766.005000px;}
.ybe{bottom:767.625000px;}
.ye9{bottom:768.345000px;}
.y11{bottom:775.185000px;}
.ya4{bottom:778.065000px;}
.y45{bottom:787.065000px;}
.ybd{bottom:788.685000px;}
.ye8{bottom:789.405000px;}
.y10{bottom:796.245000px;}
.ya3{bottom:799.125000px;}
.y44{bottom:808.125000px;}
.ybc{bottom:809.745000px;}
.ye7{bottom:810.465000px;}
.yf{bottom:817.305000px;}
.yae{bottom:820.185000px;}
.y43{bottom:829.185000px;}
.ybb{bottom:830.805000px;}
.ye6{bottom:831.525000px;}
.ye{bottom:838.545000px;}
.yad{bottom:841.245000px;}
.y42{bottom:850.245000px;}
.yba{bottom:851.865000px;}
.ye5{bottom:852.585000px;}
.yd{bottom:861.765000px;}
.yac{bottom:862.305000px;}
.y41{bottom:871.305000px;}
.yb9{bottom:872.925000px;}
.ye4{bottom:873.645000px;}
.yab{bottom:883.365000px;}
.yc{bottom:888.045000px;}
.y40{bottom:892.365000px;}
.yb8{bottom:893.985000px;}
.ye3{bottom:894.705000px;}
.yaa{bottom:904.470000px;}
.yb{bottom:909.150000px;}
.y3f{bottom:913.470000px;}
.yb7{bottom:915.090000px;}
.ye2{bottom:915.810000px;}
.ya9{bottom:925.530000px;}
.ya{bottom:925.710000px;}
.y3e{bottom:934.530000px;}
.yb6{bottom:936.150000px;}
.ye1{bottom:936.870000px;}
.ya8{bottom:946.590000px;}
.y9{bottom:948.030000px;}
.y3d{bottom:955.590000px;}
.yb5{bottom:957.210000px;}
.ye0{bottom:957.930000px;}
.ya7{bottom:967.650000px;}
.y8{bottom:973.230000px;}
.y3c{bottom:976.650000px;}
.ydf{bottom:977.190000px;}
.yb4{bottom:978.270000px;}
.ya6{bottom:988.710000px;}
.yb2{bottom:997.530000px;}
.y3b{bottom:997.710000px;}
.yde{bottom:1002.750000px;}
.y7{bottom:1007.070000px;}
.y3a{bottom:1018.770000px;}
.yb1{bottom:1023.090000px;}
.ydd{bottom:1028.310000px;}
.y39{bottom:1039.830000px;}
.y5{bottom:1047.030000px;}
.yaf{bottom:1049.370000px;}
.y38{bottom:1060.890000px;}
.y4{bottom:1079.250000px;}
.y37{bottom:1081.950000px;}
.y36{bottom:1103.010000px;}
.y3{bottom:1111.470000px;}
.y35{bottom:1124.070000px;}
.y2{bottom:1144.230000px;}
.y34{bottom:1145.130000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.ha{height:21.060000px;}
.hb{height:21.096000px;}
.h8{height:38.671172px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h3{height:71.613281px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:53.856000px;}
.we{width:58.500000px;}
.w4{width:58.536000px;}
.wf{width:65.340000px;}
.wd{width:73.476000px;}
.w5{width:78.840000px;}
.wa{width:85.500000px;}
.w10{width:92.376000px;}
.w7{width:93.420000px;}
.wb{width:93.600000px;}
.w11{width:95.976000px;}
.w6{width:126.036000px;}
.wc{width:316.875000px;}
.w3{width:340.950000px;}
.w8{width:347.610000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:1.260000px;}
.x6{left:53.999987px;}
.xb{left:56.699987px;}
.x19{left:59.400000px;}
.x1f{left:75.239987px;}
.x7{left:80.999987px;}
.x14{left:88.776000px;}
.xe{left:93.096000px;}
.x9{left:94.535987px;}
.x20{left:102.275987px;}
.x8{left:108.035987px;}
.xd{left:155.009987px;}
.x5{left:172.649987px;}
.x3{left:286.274987px;}
.x2{left:350.894987px;}
.x1a{left:378.435000px;}
.xc{left:392.474987px;}
.x4{left:418.214987px;}
.x10{left:436.395000px;}
.x15{left:438.735000px;}
.x1b{left:454.245000px;}
.x1{left:478.544987px;}
.x16{left:494.745000px;}
.x11{left:497.085000px;}
.x1c{left:514.905000px;}
.x12{left:578.085000px;}
.x17{left:582.585000px;}
.x1d{left:676.950000px;}
.x13{left:706.470000px;}
.x18{left:710.790000px;}
.x1e{left:737.790000px;}
.xa{left:831.419987px;}
.x21{left:839.339987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.709333pt;}
.ls24{letter-spacing:-0.618667pt;}
.ls12{letter-spacing:-0.515200pt;}
.ls9{letter-spacing:-0.506667pt;}
.ls32{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.474133pt;}
.ls6{letter-spacing:-0.412267pt;}
.lse{letter-spacing:-0.368000pt;}
.lsd{letter-spacing:-0.290133pt;}
.ls8{letter-spacing:-0.276267pt;}
.ls10{letter-spacing:-0.213867pt;}
.ls23{letter-spacing:-0.201600pt;}
.ls1a{letter-spacing:-0.156267pt;}
.ls5{letter-spacing:-0.146133pt;}
.ls1d{letter-spacing:-0.102933pt;}
.ls31{letter-spacing:-0.095467pt;}
.ls2a{letter-spacing:-0.059733pt;}
.ls26{letter-spacing:-0.057600pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.016640pt;}
.ls25{letter-spacing:0.021120pt;}
.ls4{letter-spacing:0.034560pt;}
.lsc{letter-spacing:0.058667pt;}
.ls20{letter-spacing:0.066560pt;}
.ls17{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133333pt;}
.ls29{letter-spacing:0.154667pt;}
.ls22{letter-spacing:0.155733pt;}
.ls30{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.165867pt;}
.lsa{letter-spacing:0.169067pt;}
.ls2d{letter-spacing:0.173333pt;}
.ls28{letter-spacing:0.173440pt;}
.ls19{letter-spacing:0.186133pt;}
.ls7{letter-spacing:0.227733pt;}
.ls2e{letter-spacing:0.256533pt;}
.ls14{letter-spacing:0.272000pt;}
.ls1b{letter-spacing:0.274667pt;}
.ls27{letter-spacing:0.300587pt;}
.lsf{letter-spacing:0.309867pt;}
.ls1c{letter-spacing:0.349867pt;}
.ls1{letter-spacing:0.380160pt;}
.ls1e{letter-spacing:0.438400pt;}
.ls2b{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.693333pt;}
.ls21{letter-spacing:0.794667pt;}
.ls13{letter-spacing:0.912000pt;}
.ls33{letter-spacing:10.832640pt;}
.ls2f{letter-spacing:37.712640pt;}
.ls18{letter-spacing:40.912640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws2{word-spacing:-14.464000pt;}
.ws4{word-spacing:-13.534613pt;}
.ws5{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.160747pt;}
.ws6{word-spacing:-13.030613pt;}
.ws3{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.799787pt;}
.ws1b{word-spacing:-12.591787pt;}
.wsa{word-spacing:-12.314987pt;}
.wsf{word-spacing:-12.277120pt;}
.ws12{word-spacing:-12.191253pt;}
.ws1c{word-spacing:-12.178453pt;}
.ws11{word-spacing:-12.170987pt;}
.ws17{word-spacing:-12.160853pt;}
.ws15{word-spacing:-12.129920pt;}
.ws9{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.953280pt;}
.ws19{word-spacing:-11.947520pt;}
.ws1a{word-spacing:-11.945387pt;}
.ws1d{word-spacing:-11.909653pt;}
.ws13{word-spacing:-11.902187pt;}
.wsb{word-spacing:-11.791253pt;}
.ws14{word-spacing:-11.714987pt;}
.wsd{word-spacing:-11.489920pt;}
.ws18{word-spacing:-11.386453pt;}
.ws10{word-spacing:-11.295787pt;}
.ws7{word-spacing:-8.389120pt;}
.ws8{word-spacing:-7.810560pt;}
.wse{word-spacing:0.000000pt;}
._22{margin-left:-473.385387pt;}
._24{margin-left:-466.862720pt;}
._1{margin-left:-431.749547pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-272.925440pt;}
._16{margin-left:-260.346880pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._1c{margin-left:-220.566400pt;}
._d{margin-left:-213.786880pt;}
._1b{margin-left:-195.834880pt;}
._26{margin-left:-193.607680pt;}
._11{margin-left:-179.685547pt;}
._1d{margin-left:-177.730560pt;}
._25{margin-left:-167.905280pt;}
._2b{margin-left:-153.050880pt;}
._10{margin-left:-152.048640pt;}
._f{margin-left:-147.102720pt;}
._28{margin-left:-137.675947pt;}
._b{margin-left:-136.688640pt;}
._4{margin-left:-133.394133pt;}
._c{margin-left:-132.168960pt;}
._2a{margin-left:-126.985600pt;}
._e{margin-left:-119.281920pt;}
._13{margin-left:-107.649920pt;}
._12{margin-left:-104.762453pt;}
._15{margin-left:-102.686720pt;}
._29{margin-left:-97.826560pt;}
._21{margin-left:-90.977280pt;}
._8{margin-left:-81.456213pt;}
._27{margin-left:-77.837653pt;}
._20{margin-left:-76.799787pt;}
._1f{margin-left:-74.240000pt;}
._17{margin-left:-72.870400pt;}
._19{margin-left:-59.292160pt;}
._14{margin-left:-54.528000pt;}
._18{margin-left:-44.209707pt;}
._1a{margin-left:-43.292160pt;}
._1e{margin-left:-27.325653pt;}
._2f{margin-left:-7.145600pt;}
._42{margin-left:-5.774720pt;}
._30{margin-left:-4.764800pt;}
._2c{margin-left:-3.451947pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._23{width:0.961920pt;}
._31{width:1.896747pt;}
._2d{width:2.979200pt;}
._2e{width:4.308907pt;}
._36{width:5.224107pt;}
._38{width:6.343680pt;}
._32{width:7.582080pt;}
._33{width:9.160747pt;}
._34{width:10.051627pt;}
._35{width:11.086933pt;}
._37{width:13.366400pt;}
._3b{width:14.432000pt;}
._3f{width:15.564160pt;}
._3e{width:16.520320pt;}
._3a{width:17.835520pt;}
._39{width:18.804480pt;}
._3c{width:25.681920pt;}
._3d{width:27.085227pt;}
._41{width:32.657920pt;}
._40{width:33.621760pt;}
._43{width:1236.261547pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:5.920000pt;}
.yc4{bottom:5.946667pt;}
.yc6{bottom:9.280000pt;}
.yb3{bottom:9.440000pt;}
.y6{bottom:53.280000pt;}
.y31{bottom:80.000000pt;}
.ya2{bottom:89.120000pt;}
.y108{bottom:91.520000pt;}
.y83{bottom:92.640000pt;}
.y107{bottom:96.000000pt;}
.y30{bottom:98.720000pt;}
.y64{bottom:100.640000pt;}
.ydc{bottom:105.440000pt;}
.ya1{bottom:107.840000pt;}
.y82{bottom:111.360000pt;}
.y106{bottom:114.720000pt;}
.y2f{bottom:117.440000pt;}
.y63{bottom:119.360000pt;}
.ydb{bottom:124.160000pt;}
.ya0{bottom:126.560000pt;}
.y81{bottom:130.080000pt;}
.y105{bottom:133.440000pt;}
.y2e{bottom:136.186667pt;}
.y62{bottom:138.106667pt;}
.yda{bottom:142.906667pt;}
.y9f{bottom:145.306667pt;}
.y80{bottom:148.826667pt;}
.y104{bottom:152.186667pt;}
.y2d{bottom:154.906667pt;}
.y61{bottom:156.826667pt;}
.yd9{bottom:161.626667pt;}
.y9e{bottom:164.026667pt;}
.y7f{bottom:167.546667pt;}
.y103{bottom:170.906667pt;}
.y2c{bottom:173.626667pt;}
.y60{bottom:175.546667pt;}
.yd8{bottom:180.346667pt;}
.y9d{bottom:182.746667pt;}
.y7e{bottom:186.266667pt;}
.y102{bottom:189.626667pt;}
.y2b{bottom:192.346667pt;}
.y5f{bottom:194.266667pt;}
.yd7{bottom:199.066667pt;}
.y9c{bottom:201.466667pt;}
.y7d{bottom:204.986667pt;}
.y101{bottom:208.346667pt;}
.y2a{bottom:211.066667pt;}
.y5e{bottom:212.986667pt;}
.yd6{bottom:217.786667pt;}
.y9b{bottom:220.186667pt;}
.y7c{bottom:223.706667pt;}
.y100{bottom:227.066667pt;}
.y29{bottom:229.786667pt;}
.y5d{bottom:231.706667pt;}
.yd5{bottom:234.906667pt;}
.y9a{bottom:238.906667pt;}
.y7b{bottom:242.426667pt;}
.yff{bottom:245.786667pt;}
.y28{bottom:248.506667pt;}
.y5c{bottom:250.426667pt;}
.y99{bottom:257.626667pt;}
.y7a{bottom:261.146667pt;}
.yfe{bottom:264.506667pt;}
.y27{bottom:267.226667pt;}
.y5b{bottom:269.146667pt;}
.y98{bottom:276.346667pt;}
.y79{bottom:279.866667pt;}
.yd4{bottom:280.346667pt;}
.yfd{bottom:283.226667pt;}
.y26{bottom:285.946667pt;}
.y5a{bottom:287.866667pt;}
.y97{bottom:295.066667pt;}
.y78{bottom:298.586667pt;}
.yfc{bottom:301.946667pt;}
.y25{bottom:304.666667pt;}
.y59{bottom:306.586667pt;}
.yd3{bottom:309.306667pt;}
.y96{bottom:313.786667pt;}
.y77{bottom:317.306667pt;}
.yfb{bottom:320.666667pt;}
.y24{bottom:323.386667pt;}
.y58{bottom:325.306667pt;}
.yd2{bottom:328.026667pt;}
.y95{bottom:332.506667pt;}
.y76{bottom:336.026667pt;}
.yfa{bottom:339.386667pt;}
.y23{bottom:342.106667pt;}
.y57{bottom:344.026667pt;}
.yd1{bottom:346.746667pt;}
.y94{bottom:351.226667pt;}
.y75{bottom:354.746667pt;}
.yf9{bottom:358.146667pt;}
.y22{bottom:360.866667pt;}
.y56{bottom:362.786667pt;}
.yd0{bottom:365.506667pt;}
.y93{bottom:369.986667pt;}
.y74{bottom:373.506667pt;}
.y21{bottom:379.586667pt;}
.y55{bottom:381.506667pt;}
.ycf{bottom:384.226667pt;}
.yf8{bottom:384.866667pt;}
.y92{bottom:388.706667pt;}
.y73{bottom:392.226667pt;}
.y20{bottom:398.306667pt;}
.y54{bottom:400.226667pt;}
.yce{bottom:402.946667pt;}
.yf7{bottom:403.586667pt;}
.y91{bottom:407.426667pt;}
.y72{bottom:410.946667pt;}
.y1f{bottom:417.026667pt;}
.y53{bottom:418.946667pt;}
.ycd{bottom:421.666667pt;}
.yf6{bottom:422.306667pt;}
.y90{bottom:426.146667pt;}
.y71{bottom:429.666667pt;}
.y52{bottom:437.666667pt;}
.y1e{bottom:437.826667pt;}
.ycc{bottom:440.386667pt;}
.yf5{bottom:441.026667pt;}
.y8f{bottom:444.866667pt;}
.y70{bottom:448.386667pt;}
.y1d{bottom:456.386667pt;}
.ycb{bottom:459.106667pt;}
.yf4{bottom:459.746667pt;}
.y8e{bottom:463.586667pt;}
.y6f{bottom:467.106667pt;}
.y51{bottom:475.106667pt;}
.yca{bottom:477.826667pt;}
.yf3{bottom:478.466667pt;}
.y8d{bottom:482.306667pt;}
.y1c{bottom:483.106667pt;}
.y6e{bottom:485.826667pt;}
.y50{bottom:493.826667pt;}
.yc9{bottom:496.546667pt;}
.yf2{bottom:497.186667pt;}
.y8c{bottom:501.026667pt;}
.y1b{bottom:501.826667pt;}
.y6d{bottom:504.546667pt;}
.y4f{bottom:512.546667pt;}
.yc8{bottom:515.266667pt;}
.yf1{bottom:515.906667pt;}
.y8b{bottom:519.746667pt;}
.y1a{bottom:520.546667pt;}
.y6c{bottom:523.266667pt;}
.y4e{bottom:531.266667pt;}
.yc7{bottom:533.986667pt;}
.yf0{bottom:534.626667pt;}
.y8a{bottom:538.466667pt;}
.y19{bottom:539.266667pt;}
.y6b{bottom:541.986667pt;}
.y4d{bottom:549.986667pt;}
.yc5{bottom:551.106667pt;}
.yef{bottom:553.346667pt;}
.y89{bottom:557.186667pt;}
.y18{bottom:557.986667pt;}
.y6a{bottom:560.706667pt;}
.y4c{bottom:568.706667pt;}
.yee{bottom:570.466667pt;}
.yc3{bottom:573.826667pt;}
.y88{bottom:575.906667pt;}
.y17{bottom:576.706667pt;}
.y69{bottom:579.453333pt;}
.y4b{bottom:587.453333pt;}
.yed{bottom:593.213333pt;}
.y87{bottom:594.653333pt;}
.y16{bottom:595.453333pt;}
.yc2{bottom:597.213333pt;}
.y68{bottom:598.173333pt;}
.y4a{bottom:606.173333pt;}
.y86{bottom:613.373333pt;}
.y15{bottom:614.173333pt;}
.yec{bottom:616.573333pt;}
.y67{bottom:616.893333pt;}
.y49{bottom:624.893333pt;}
.yc1{bottom:626.173333pt;}
.y85{bottom:632.093333pt;}
.y14{bottom:632.893333pt;}
.y66{bottom:635.613333pt;}
.y48{bottom:643.613333pt;}
.yc0{bottom:644.893333pt;}
.yeb{bottom:645.533333pt;}
.y84{bottom:647.773333pt;}
.y13{bottom:651.613333pt;}
.y65{bottom:654.333333pt;}
.y47{bottom:662.333333pt;}
.ybf{bottom:663.613333pt;}
.yea{bottom:664.253333pt;}
.y12{bottom:670.333333pt;}
.ya5{bottom:672.893333pt;}
.y46{bottom:680.893333pt;}
.ybe{bottom:682.333333pt;}
.ye9{bottom:682.973333pt;}
.y11{bottom:689.053333pt;}
.ya4{bottom:691.613333pt;}
.y45{bottom:699.613333pt;}
.ybd{bottom:701.053333pt;}
.ye8{bottom:701.693333pt;}
.y10{bottom:707.773333pt;}
.ya3{bottom:710.333333pt;}
.y44{bottom:718.333333pt;}
.ybc{bottom:719.773333pt;}
.ye7{bottom:720.413333pt;}
.yf{bottom:726.493333pt;}
.yae{bottom:729.053333pt;}
.y43{bottom:737.053333pt;}
.ybb{bottom:738.493333pt;}
.ye6{bottom:739.133333pt;}
.ye{bottom:745.373333pt;}
.yad{bottom:747.773333pt;}
.y42{bottom:755.773333pt;}
.yba{bottom:757.213333pt;}
.ye5{bottom:757.853333pt;}
.yd{bottom:766.013333pt;}
.yac{bottom:766.493333pt;}
.y41{bottom:774.493333pt;}
.yb9{bottom:775.933333pt;}
.ye4{bottom:776.573333pt;}
.yab{bottom:785.213333pt;}
.yc{bottom:789.373333pt;}
.y40{bottom:793.213333pt;}
.yb8{bottom:794.653333pt;}
.ye3{bottom:795.293333pt;}
.yaa{bottom:803.973333pt;}
.yb{bottom:808.133333pt;}
.y3f{bottom:811.973333pt;}
.yb7{bottom:813.413333pt;}
.ye2{bottom:814.053333pt;}
.ya9{bottom:822.693333pt;}
.ya{bottom:822.853333pt;}
.y3e{bottom:830.693333pt;}
.yb6{bottom:832.133333pt;}
.ye1{bottom:832.773333pt;}
.ya8{bottom:841.413333pt;}
.y9{bottom:842.693333pt;}
.y3d{bottom:849.413333pt;}
.yb5{bottom:850.853333pt;}
.ye0{bottom:851.493333pt;}
.ya7{bottom:860.133333pt;}
.y8{bottom:865.093333pt;}
.y3c{bottom:868.133333pt;}
.ydf{bottom:868.613333pt;}
.yb4{bottom:869.573333pt;}
.ya6{bottom:878.853333pt;}
.yb2{bottom:886.693333pt;}
.y3b{bottom:886.853333pt;}
.yde{bottom:891.333333pt;}
.y7{bottom:895.173333pt;}
.y3a{bottom:905.573333pt;}
.yb1{bottom:909.413333pt;}
.ydd{bottom:914.053333pt;}
.y39{bottom:924.293333pt;}
.y5{bottom:930.693333pt;}
.yaf{bottom:932.773333pt;}
.y38{bottom:943.013333pt;}
.y4{bottom:959.333333pt;}
.y37{bottom:961.733333pt;}
.y36{bottom:980.453333pt;}
.y3{bottom:987.973333pt;}
.y35{bottom:999.173333pt;}
.y2{bottom:1017.093333pt;}
.y34{bottom:1017.893333pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.ha{height:18.720000pt;}
.hb{height:18.752000pt;}
.h8{height:34.374375pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3{height:63.656250pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:47.872000pt;}
.we{width:52.000000pt;}
.w4{width:52.032000pt;}
.wf{width:58.080000pt;}
.wd{width:65.312000pt;}
.w5{width:70.080000pt;}
.wa{width:76.000000pt;}
.w10{width:82.112000pt;}
.w7{width:83.040000pt;}
.wb{width:83.200000pt;}
.w11{width:85.312000pt;}
.w6{width:112.032000pt;}
.wc{width:281.666667pt;}
.w3{width:303.066667pt;}
.w8{width:308.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:1.120000pt;}
.x6{left:47.999988pt;}
.xb{left:50.399988pt;}
.x19{left:52.800000pt;}
.x1f{left:66.879988pt;}
.x7{left:71.999988pt;}
.x14{left:78.912000pt;}
.xe{left:82.752000pt;}
.x9{left:84.031988pt;}
.x20{left:90.911988pt;}
.x8{left:96.031988pt;}
.xd{left:137.786655pt;}
.x5{left:153.466655pt;}
.x3{left:254.466655pt;}
.x2{left:311.906655pt;}
.x1a{left:336.386667pt;}
.xc{left:348.866655pt;}
.x4{left:371.746655pt;}
.x10{left:387.906667pt;}
.x15{left:389.986667pt;}
.x1b{left:403.773333pt;}
.x1{left:425.373322pt;}
.x16{left:439.773333pt;}
.x11{left:441.853333pt;}
.x1c{left:457.693333pt;}
.x12{left:513.853333pt;}
.x17{left:517.853333pt;}
.x1d{left:601.733333pt;}
.x13{left:627.973333pt;}
.x18{left:631.813333pt;}
.x1e{left:655.813333pt;}
.xa{left:739.039988pt;}
.x21{left:746.079988pt;}
}




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