
    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_a49bc3e15d394481842907ae.woff')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_11ee14b1e7ccf8d703cf1627.woff')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_75ff0fd0eb28f546f304801e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_cc700226562428f23b0ce0a2.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2b53fea7b0452568e330c71a.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1406ea9c857e0fb8bda8591d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1577acb5ad3ccdf60fd67690.woff')format("woff");}.ff7{font-family:ff7;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8bb188291b728c49ed7dbff2.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls34{letter-spacing:-0.900000px;}
.ls36{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.378600px;}
.lsd{letter-spacing:-0.360000px;}
.ls40{letter-spacing:-0.243600px;}
.ls1f{letter-spacing:-0.180000px;}
.ls35{letter-spacing:-0.028080px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.028080px;}
.ls45{letter-spacing:0.037440px;}
.ls30{letter-spacing:0.053280px;}
.ls46{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.180000px;}
.ls42{letter-spacing:0.208080px;}
.ls2f{letter-spacing:0.259920px;}
.ls47{letter-spacing:0.288000px;}
.ls3f{letter-spacing:0.341400px;}
.lsc{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.378720px;}
.ls3e{letter-spacing:0.379920px;}
.ls32{letter-spacing:0.439920px;}
.ls38{letter-spacing:0.522720px;}
.ls2b{letter-spacing:0.558720px;}
.ls22{letter-spacing:1.260000px;}
.ls1{letter-spacing:1.440000px;}
.ls9{letter-spacing:2.700000px;}
.ls2{letter-spacing:2.880000px;}
.ls6{letter-spacing:4.140000px;}
.ls29{letter-spacing:4.350000px;}
.ls2e{letter-spacing:4.426560px;}
.ls2d{letter-spacing:4.500000px;}
.ls8{letter-spacing:4.836000px;}
.ls33{letter-spacing:6.660000px;}
.ls37{letter-spacing:6.996000px;}
.ls1a{letter-spacing:7.740000px;}
.ls5{letter-spacing:7.920000px;}
.ls12{letter-spacing:8.460000px;}
.lsf{letter-spacing:8.640000px;}
.ls3c{letter-spacing:8.820000px;}
.ls11{letter-spacing:9.180000px;}
.ls27{letter-spacing:9.360000px;}
.ls21{letter-spacing:9.900000px;}
.ls2c{letter-spacing:10.620000px;}
.ls19{letter-spacing:11.316000px;}
.ls10{letter-spacing:11.340000px;}
.ls3d{letter-spacing:11.700000px;}
.lsa{letter-spacing:13.500000px;}
.ls3a{letter-spacing:14.220000px;}
.ls31{letter-spacing:14.580000px;}
.ls1e{letter-spacing:15.660000px;}
.ls26{letter-spacing:16.380000px;}
.ls39{letter-spacing:17.100000px;}
.ls24{letter-spacing:19.260000px;}
.ls1b{letter-spacing:22.860000px;}
.ls13{letter-spacing:23.580000px;}
.ls25{letter-spacing:24.300000px;}
.ls14{letter-spacing:25.020000px;}
.ls7{letter-spacing:25.740000px;}
.lsb{letter-spacing:27.300000px;}
.ls18{letter-spacing:28.620000px;}
.ls1c{letter-spacing:29.340000px;}
.ls1d{letter-spacing:29.520000px;}
.ls16{letter-spacing:32.220000px;}
.ls41{letter-spacing:33.660000px;}
.ls3b{letter-spacing:35.820000px;}
.ls23{letter-spacing:40.140000px;}
.ls17{letter-spacing:40.860000px;}
.ls0{letter-spacing:43.200000px;}
.ls43{letter-spacing:43.740000px;}
.ls2a{letter-spacing:45.900000px;}
.lse{letter-spacing:59.700000px;}
.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;}
}
.ws8{word-spacing:-25.410000px;}
.ws7{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.097440px;}
.ws3{word-spacing:-21.060000px;}
.ws9{word-spacing:-21.031920px;}
.ws6{word-spacing:-20.681400px;}
.wsb{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._31{margin-left:-19.644000px;}
._2c{margin-left:-10.659360px;}
._26{margin-left:-8.758080px;}
._25{margin-left:-6.661440px;}
._28{margin-left:-5.614080px;}
._27{margin-left:-3.840480px;}
._24{margin-left:-2.772000px;}
._0{margin-left:-1.263600px;}
._1{width:1.191600px;}
._4{width:2.310000px;}
._a{width:3.384000px;}
._b{width:5.328000px;}
._10{width:7.056000px;}
._5{width:8.784000px;}
._f{width:10.008000px;}
._3{width:11.199600px;}
._2{width:12.600000px;}
._6{width:13.752000px;}
._7{width:14.904000px;}
._c{width:15.984000px;}
._16{width:17.143920px;}
._14{width:19.011600px;}
._8{width:20.160000px;}
._9{width:21.672000px;}
._19{width:23.277600px;}
._12{width:24.735600px;}
._11{width:26.208000px;}
._1d{width:27.780480px;}
._1b{width:28.894320px;}
._1c{width:29.905200px;}
._23{width:31.505760px;}
._1a{width:33.106320px;}
._17{width:34.953840px;}
._18{width:36.425520px;}
._15{width:38.214720px;}
._e{width:39.776400px;}
._d{width:41.151600px;}
._2f{width:42.200880px;}
._20{width:43.299360px;}
._1f{width:44.654160px;}
._1e{width:45.658080px;}
._30{width:46.921680px;}
._29{width:49.408560px;}
._2e{width:52.734240px;}
._2b{width:53.745120px;}
._2a{width:54.840240px;}
._21{width:59.136480px;}
._22{width:60.179520px;}
._2d{width:64.275120px;}
._13{width:77.332320px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(51,51,51);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ybf{bottom:3.960000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y5e{bottom:95.436000px;}
.y5d{bottom:100.656000px;}
.y88{bottom:107.496000px;}
.y5c{bottom:112.716000px;}
.y84{bottom:117.936000px;}
.ydf{bottom:118.656000px;}
.y5b{bottom:129.996000px;}
.y5a{bottom:135.216000px;}
.y30{bottom:137.016000px;}
.yde{bottom:146.556000px;}
.y59{bottom:147.276000px;}
.y58{bottom:152.490000px;}
.y2f{bottom:157.710000px;}
.y87{bottom:163.110000px;}
.y57{bottom:164.370000px;}
.y56{bottom:169.590000px;}
.ydd{bottom:174.270000px;}
.y2e{bottom:178.410000px;}
.y83{bottom:181.650000px;}
.y55{bottom:182.910000px;}
.y82{bottom:186.870000px;}
.y86{bottom:190.830000px;}
.ydc{bottom:193.890000px;}
.ya5{bottom:198.930000px;}
.y2d{bottom:199.110000px;}
.y81{bottom:200.190000px;}
.ya4{bottom:204.150000px;}
.y53{bottom:212.970000px;}
.ydb{bottom:214.590000px;}
.ya3{bottom:216.210000px;}
.y85{bottom:218.550000px;}
.y2c{bottom:219.810000px;}
.y54{bottom:220.530000px;}
.ya2{bottom:221.430000px;}
.ya1{bottom:233.490000px;}
.yda{bottom:235.290000px;}
.ya0{bottom:238.710000px;}
.y2b{bottom:240.510000px;}
.y52{bottom:240.690000px;}
.y7f{bottom:246.450000px;}
.y9f{bottom:250.770000px;}
.y80{bottom:254.010000px;}
.y9e{bottom:255.990000px;}
.y2a{bottom:261.210000px;}
.y9d{bottom:267.870000px;}
.y50{bottom:268.410000px;}
.y9c{bottom:273.090000px;}
.y7e{bottom:274.170000px;}
.y51{bottom:275.970000px;}
.yd9{bottom:276.690000px;}
.y29{bottom:281.955000px;}
.y9b{bottom:285.195000px;}
.y9a{bottom:290.415000px;}
.y4f{bottom:296.355000px;}
.yd8{bottom:297.435000px;}
.y7d{bottom:301.935000px;}
.y99{bottom:302.475000px;}
.y28{bottom:302.655000px;}
.y98{bottom:307.695000px;}
.yd7{bottom:318.135000px;}
.y97{bottom:319.755000px;}
.y27{bottom:323.355000px;}
.y4e{bottom:324.075000px;}
.y96{bottom:324.975000px;}
.y7c{bottom:329.655000px;}
.y95{bottom:337.035000px;}
.yd6{bottom:338.835000px;}
.y94{bottom:342.255000px;}
.y26{bottom:344.055000px;}
.y4d{bottom:351.795000px;}
.y93{bottom:354.135000px;}
.y7b{bottom:357.555000px;}
.y92{bottom:359.355000px;}
.yd5{bottom:359.535000px;}
.y25{bottom:364.755000px;}
.yb8{bottom:371.415000px;}
.y91{bottom:372.675000px;}
.yb7{bottom:376.635000px;}
.y4c{bottom:379.515000px;}
.yd4{bottom:380.235000px;}
.y7a{bottom:385.275000px;}
.y24{bottom:385.455000px;}
.yb6{bottom:388.695000px;}
.yb5{bottom:393.915000px;}
.yd3{bottom:400.935000px;}
.yb4{bottom:405.975000px;}
.y23{bottom:406.155000px;}
.y4b{bottom:407.415000px;}
.y78{bottom:412.995000px;}
.y79{bottom:420.555000px;}
.yd2{bottom:421.635000px;}
.yb3{bottom:423.255000px;}
.y22{bottom:426.855000px;}
.yb2{bottom:428.475000px;}
.y4a{bottom:435.135000px;}
.yb1{bottom:440.535000px;}
.y77{bottom:440.895000px;}
.ybd{bottom:441.795000px;}
.yd1{bottom:442.335000px;}
.yb0{bottom:445.755000px;}
.y21{bottom:447.555000px;}
.y90{bottom:448.455000px;}
.yaf{bottom:457.635000px;}
.y49{bottom:462.855000px;}
.yd0{bottom:463.035000px;}
.y20{bottom:468.255000px;}
.y76{bottom:468.615000px;}
.yae{bottom:474.915000px;}
.y8f{bottom:476.175000px;}
.yad{bottom:480.135000px;}
.ycf{bottom:483.735000px;}
.y1f{bottom:488.955000px;}
.y48{bottom:490.575000px;}
.yac{bottom:493.455000px;}
.y75{bottom:496.335000px;}
.y8e{bottom:503.895000px;}
.yce{bottom:504.435000px;}
.y1e{bottom:509.655000px;}
.y47{bottom:518.475000px;}
.y74{bottom:524.055000px;}
.ycd{bottom:525.135000px;}
.y1d{bottom:530.355000px;}
.y8d{bottom:531.615000px;}
.ycc{bottom:545.835000px;}
.y46{bottom:546.195000px;}
.y1c{bottom:551.055000px;}
.y73{bottom:551.955000px;}
.y8c{bottom:559.515000px;}
.ycb{bottom:566.565000px;}
.y1b{bottom:571.785000px;}
.y45{bottom:573.945000px;}
.y72{bottom:579.705000px;}
.y8b{bottom:587.265000px;}
.y1a{bottom:592.485000px;}
.y44{bottom:601.845000px;}
.y71{bottom:607.425000px;}
.yca{bottom:607.965000px;}
.y19{bottom:613.185000px;}
.y8a{bottom:614.985000px;}
.yc9{bottom:628.665000px;}
.y42{bottom:629.565000px;}
.y18{bottom:633.885000px;}
.y70{bottom:635.145000px;}
.y43{bottom:637.125000px;}
.y89{bottom:642.705000px;}
.yc8{bottom:649.365000px;}
.y17{bottom:654.585000px;}
.y40{bottom:657.285000px;}
.y6f{bottom:663.045000px;}
.y41{bottom:664.845000px;}
.yc7{bottom:670.065000px;}
.yab{bottom:670.605000px;}
.y16{bottom:675.285000px;}
.y3f{bottom:685.005000px;}
.y6e{bottom:690.765000px;}
.y15{bottom:695.985000px;}
.yaa{bottom:698.325000px;}
.yc6{bottom:711.465000px;}
.y3e{bottom:712.905000px;}
.y14{bottom:716.685000px;}
.y6d{bottom:718.485000px;}
.yc5{bottom:732.165000px;}
.y13{bottom:737.205000px;}
.y3d{bottom:740.625000px;}
.y6b{bottom:746.385000px;}
.yc4{bottom:752.865000px;}
.y6c{bottom:753.945000px;}
.y12{bottom:757.905000px;}
.y3c{bottom:768.345000px;}
.yc3{bottom:773.565000px;}
.y6a{bottom:774.105000px;}
.y11{bottom:778.605000px;}
.ya9{bottom:781.665000px;}
.yc2{bottom:794.265000px;}
.y3b{bottom:796.245000px;}
.y10{bottom:799.305000px;}
.y69{bottom:801.825000px;}
.ya8{bottom:809.385000px;}
.yc1{bottom:814.965000px;}
.yf{bottom:820.005000px;}
.y3a{bottom:823.965000px;}
.y68{bottom:829.545000px;}
.yc0{bottom:835.665000px;}
.ya7{bottom:837.105000px;}
.ye{bottom:840.705000px;}
.y39{bottom:851.730000px;}
.ybe{bottom:856.410000px;}
.y67{bottom:857.490000px;}
.y38{bottom:879.450000px;}
.yd{bottom:882.150000px;}
.y66{bottom:885.210000px;}
.ybc{bottom:892.770000px;}
.yc{bottom:902.850000px;}
.y37{bottom:907.350000px;}
.y64{bottom:912.930000px;}
.y65{bottom:920.490000px;}
.yb{bottom:923.550000px;}
.y36{bottom:935.070000px;}
.y63{bottom:940.830000px;}
.ya{bottom:944.250000px;}
.ybb{bottom:948.390000px;}
.y35{bottom:962.790000px;}
.y9{bottom:964.950000px;}
.y62{bottom:968.550000px;}
.yba{bottom:976.110000px;}
.y8{bottom:984.930000px;}
.y34{bottom:990.510000px;}
.y60{bottom:996.270000px;}
.y7{bottom:1003.470000px;}
.y61{bottom:1003.830000px;}
.y33{bottom:1016.070000px;}
.y5f{bottom:1023.990000px;}
.y6{bottom:1027.770000px;}
.yb9{bottom:1031.550000px;}
.y32{bottom:1034.070000px;}
.y5{bottom:1051.890000px;}
.y31{bottom:1054.770000px;}
.ya6{bottom:1059.450000px;}
.y1{bottom:1190.160000px;}
.h12{height:20.700000px;}
.h13{height:20.736000px;}
.h3{height:31.860000px;}
.h10{height:38.158594px;}
.h11{height:52.971680px;}
.he{height:52.998047px;}
.h6{height:58.651172px;}
.h8{height:61.171875px;}
.h9{height:70.628906px;}
.hb{height:70.664062px;}
.hd{height:71.571094px;}
.h7{height:72.562500px;}
.hc{height:74.244727px;}
.h5{height:74.820586px;}
.hf{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.ha{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w6{width:106.596000px;}
.w5{width:265.710000px;}
.w7{width:287.130000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x67{left:8.100000px;}
.x3{left:22.140000px;}
.x63{left:54.174000px;}
.x1{left:84.959987px;}
.x5{left:88.379987px;}
.x9{left:90.755987px;}
.x3b{left:94.715987px;}
.x4{left:97.415987px;}
.x15{left:106.235987px;}
.x66{left:111.240000px;}
.xf{left:114.155973px;}
.x62{left:116.856000px;}
.x10{left:120.995987px;}
.x4a{left:123.515973px;}
.x12{left:132.875973px;}
.xc{left:138.095987px;}
.x13{left:139.715987px;}
.x11{left:144.395987px;}
.x3c{left:146.915973px;}
.xd{left:158.429973px;}
.x3d{left:160.589987px;}
.xe{left:165.269987px;}
.x5b{left:170.129973px;}
.x5c{left:183.809987px;}
.x1a{left:218.009973px;}
.x2a{left:223.409973px;}
.x1b{left:224.849987px;}
.x1e{left:226.109973px;}
.x1f{left:232.949987px;}
.x2b{left:237.089987px;}
.x34{left:239.249973px;}
.x35{left:252.929987px;}
.x26{left:261.029973px;}
.x38{left:263.909973px;}
.x27{left:274.709987px;}
.x39{left:277.589987px;}
.x43{left:291.854987px;}
.x53{left:292.934973px;}
.x5f{left:297.254973px;}
.x14{left:301.034987px;}
.x54{left:306.614987px;}
.x6{left:307.874987px;}
.x22{left:309.674973px;}
.x60{left:310.934987px;}
.x57{left:314.534987px;}
.x2e{left:321.734987px;}
.x23{left:323.354987px;}
.x31{left:334.694973px;}
.x4f{left:344.594973px;}
.xb{left:348.374987px;}
.x50{left:358.274987px;}
.x8{left:366.914987px;}
.xa{left:368.894987px;}
.x64{left:382.575000px;}
.x3e{left:389.234973px;}
.x48{left:391.034973px;}
.x44{left:396.614973px;}
.x3f{left:402.914987px;}
.x49{left:404.714987px;}
.x2{left:409.035000px;}
.x45{left:410.294987px;}
.x7{left:446.474987px;}
.x1c{left:457.454973px;}
.x1d{left:464.294987px;}
.x61{left:470.264987px;}
.x5a{left:478.904987px;}
.x18{left:484.484973px;}
.x65{left:489.165000px;}
.x19{left:491.324987px;}
.x2c{left:530.924973px;}
.x4d{left:541.004973px;}
.x2d{left:544.604987px;}
.x4e{left:554.684987px;}
.x28{left:568.544973px;}
.x2f{left:575.744973px;}
.x29{left:582.224987px;}
.x30{left:589.424987px;}
.x55{left:590.864973px;}
.x51{left:595.724973px;}
.x24{left:603.464973px;}
.x56{left:604.544987px;}
.x52{left:609.404987px;}
.x5d{left:612.284973px;}
.x25{left:617.144987px;}
.x5e{left:625.964987px;}
.x3a{left:631.724987px;}
.x32{left:634.424973px;}
.x4b{left:636.584973px;}
.x42{left:644.864987px;}
.x33{left:648.104987px;}
.x4c{left:650.264987px;}
.x40{left:691.709973px;}
.x41{left:705.389987px;}
.x20{left:713.129973px;}
.x58{left:716.549973px;}
.x36{left:724.649973px;}
.x21{left:726.809987px;}
.x59{left:730.229987px;}
.x37{left:738.329987px;}
.x16{left:744.449973px;}
.x17{left:751.289987px;}
.x46{left:789.269973px;}
.x47{left:802.949987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls34{letter-spacing:-0.800000pt;}
.ls36{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.336533pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls40{letter-spacing:-0.216533pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls35{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.024960pt;}
.ls45{letter-spacing:0.033280pt;}
.ls30{letter-spacing:0.047360pt;}
.ls46{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.160000pt;}
.ls42{letter-spacing:0.184960pt;}
.ls2f{letter-spacing:0.231040pt;}
.ls47{letter-spacing:0.256000pt;}
.ls3f{letter-spacing:0.303467pt;}
.lsc{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.336640pt;}
.ls3e{letter-spacing:0.337707pt;}
.ls32{letter-spacing:0.391040pt;}
.ls38{letter-spacing:0.464640pt;}
.ls2b{letter-spacing:0.496640pt;}
.ls22{letter-spacing:1.120000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls9{letter-spacing:2.400000pt;}
.ls2{letter-spacing:2.560000pt;}
.ls6{letter-spacing:3.680000pt;}
.ls29{letter-spacing:3.866667pt;}
.ls2e{letter-spacing:3.934720pt;}
.ls2d{letter-spacing:4.000000pt;}
.ls8{letter-spacing:4.298667pt;}
.ls33{letter-spacing:5.920000pt;}
.ls37{letter-spacing:6.218667pt;}
.ls1a{letter-spacing:6.880000pt;}
.ls5{letter-spacing:7.040000pt;}
.ls12{letter-spacing:7.520000pt;}
.lsf{letter-spacing:7.680000pt;}
.ls3c{letter-spacing:7.840000pt;}
.ls11{letter-spacing:8.160000pt;}
.ls27{letter-spacing:8.320000pt;}
.ls21{letter-spacing:8.800000pt;}
.ls2c{letter-spacing:9.440000pt;}
.ls19{letter-spacing:10.058667pt;}
.ls10{letter-spacing:10.080000pt;}
.ls3d{letter-spacing:10.400000pt;}
.lsa{letter-spacing:12.000000pt;}
.ls3a{letter-spacing:12.640000pt;}
.ls31{letter-spacing:12.960000pt;}
.ls1e{letter-spacing:13.920000pt;}
.ls26{letter-spacing:14.560000pt;}
.ls39{letter-spacing:15.200000pt;}
.ls24{letter-spacing:17.120000pt;}
.ls1b{letter-spacing:20.320000pt;}
.ls13{letter-spacing:20.960000pt;}
.ls25{letter-spacing:21.600000pt;}
.ls14{letter-spacing:22.240000pt;}
.ls7{letter-spacing:22.880000pt;}
.lsb{letter-spacing:24.266667pt;}
.ls18{letter-spacing:25.440000pt;}
.ls1c{letter-spacing:26.080000pt;}
.ls1d{letter-spacing:26.240000pt;}
.ls16{letter-spacing:28.640000pt;}
.ls41{letter-spacing:29.920000pt;}
.ls3b{letter-spacing:31.840000pt;}
.ls23{letter-spacing:35.680000pt;}
.ls17{letter-spacing:36.320000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls43{letter-spacing:38.880000pt;}
.ls2a{letter-spacing:40.800000pt;}
.lse{letter-spacing:53.066667pt;}
.ws8{word-spacing:-22.586667pt;}
.ws7{word-spacing:-19.040000pt;}
.wsa{word-spacing:-18.753280pt;}
.ws3{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.695040pt;}
.ws6{word-spacing:-18.383467pt;}
.wsb{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._31{margin-left:-17.461333pt;}
._2c{margin-left:-9.474987pt;}
._26{margin-left:-7.784960pt;}
._25{margin-left:-5.921280pt;}
._28{margin-left:-4.990293pt;}
._27{margin-left:-3.413760pt;}
._24{margin-left:-2.464000pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.059200pt;}
._4{width:2.053333pt;}
._a{width:3.008000pt;}
._b{width:4.736000pt;}
._10{width:6.272000pt;}
._5{width:7.808000pt;}
._f{width:8.896000pt;}
._3{width:9.955200pt;}
._2{width:11.200000pt;}
._6{width:12.224000pt;}
._7{width:13.248000pt;}
._c{width:14.208000pt;}
._16{width:15.239040pt;}
._14{width:16.899200pt;}
._8{width:17.920000pt;}
._9{width:19.264000pt;}
._19{width:20.691200pt;}
._12{width:21.987200pt;}
._11{width:23.296000pt;}
._1d{width:24.693760pt;}
._1b{width:25.683840pt;}
._1c{width:26.582400pt;}
._23{width:28.005120pt;}
._1a{width:29.427840pt;}
._17{width:31.070080pt;}
._18{width:32.378240pt;}
._15{width:33.968640pt;}
._e{width:35.356800pt;}
._d{width:36.579200pt;}
._2f{width:37.511893pt;}
._20{width:38.488320pt;}
._1f{width:39.692587pt;}
._1e{width:40.584960pt;}
._30{width:41.708160pt;}
._29{width:43.918720pt;}
._2e{width:46.874880pt;}
._2b{width:47.773440pt;}
._2a{width:48.746880pt;}
._21{width:52.565760pt;}
._22{width:53.492907pt;}
._2d{width:57.133440pt;}
._13{width:68.739840pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:3.520000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y5e{bottom:84.832000pt;}
.y5d{bottom:89.472000pt;}
.y88{bottom:95.552000pt;}
.y5c{bottom:100.192000pt;}
.y84{bottom:104.832000pt;}
.ydf{bottom:105.472000pt;}
.y5b{bottom:115.552000pt;}
.y5a{bottom:120.192000pt;}
.y30{bottom:121.792000pt;}
.yde{bottom:130.272000pt;}
.y59{bottom:130.912000pt;}
.y58{bottom:135.546667pt;}
.y2f{bottom:140.186667pt;}
.y87{bottom:144.986667pt;}
.y57{bottom:146.106667pt;}
.y56{bottom:150.746667pt;}
.ydd{bottom:154.906667pt;}
.y2e{bottom:158.586667pt;}
.y83{bottom:161.466667pt;}
.y55{bottom:162.586667pt;}
.y82{bottom:166.106667pt;}
.y86{bottom:169.626667pt;}
.ydc{bottom:172.346667pt;}
.ya5{bottom:176.826667pt;}
.y2d{bottom:176.986667pt;}
.y81{bottom:177.946667pt;}
.ya4{bottom:181.466667pt;}
.y53{bottom:189.306667pt;}
.ydb{bottom:190.746667pt;}
.ya3{bottom:192.186667pt;}
.y85{bottom:194.266667pt;}
.y2c{bottom:195.386667pt;}
.y54{bottom:196.026667pt;}
.ya2{bottom:196.826667pt;}
.ya1{bottom:207.546667pt;}
.yda{bottom:209.146667pt;}
.ya0{bottom:212.186667pt;}
.y2b{bottom:213.786667pt;}
.y52{bottom:213.946667pt;}
.y7f{bottom:219.066667pt;}
.y9f{bottom:222.906667pt;}
.y80{bottom:225.786667pt;}
.y9e{bottom:227.546667pt;}
.y2a{bottom:232.186667pt;}
.y9d{bottom:238.106667pt;}
.y50{bottom:238.586667pt;}
.y9c{bottom:242.746667pt;}
.y7e{bottom:243.706667pt;}
.y51{bottom:245.306667pt;}
.yd9{bottom:245.946667pt;}
.y29{bottom:250.626667pt;}
.y9b{bottom:253.506667pt;}
.y9a{bottom:258.146667pt;}
.y4f{bottom:263.426667pt;}
.yd8{bottom:264.386667pt;}
.y7d{bottom:268.386667pt;}
.y99{bottom:268.866667pt;}
.y28{bottom:269.026667pt;}
.y98{bottom:273.506667pt;}
.yd7{bottom:282.786667pt;}
.y97{bottom:284.226667pt;}
.y27{bottom:287.426667pt;}
.y4e{bottom:288.066667pt;}
.y96{bottom:288.866667pt;}
.y7c{bottom:293.026667pt;}
.y95{bottom:299.586667pt;}
.yd6{bottom:301.186667pt;}
.y94{bottom:304.226667pt;}
.y26{bottom:305.826667pt;}
.y4d{bottom:312.706667pt;}
.y93{bottom:314.786667pt;}
.y7b{bottom:317.826667pt;}
.y92{bottom:319.426667pt;}
.yd5{bottom:319.586667pt;}
.y25{bottom:324.226667pt;}
.yb8{bottom:330.146667pt;}
.y91{bottom:331.266667pt;}
.yb7{bottom:334.786667pt;}
.y4c{bottom:337.346667pt;}
.yd4{bottom:337.986667pt;}
.y7a{bottom:342.466667pt;}
.y24{bottom:342.626667pt;}
.yb6{bottom:345.506667pt;}
.yb5{bottom:350.146667pt;}
.yd3{bottom:356.386667pt;}
.yb4{bottom:360.866667pt;}
.y23{bottom:361.026667pt;}
.y4b{bottom:362.146667pt;}
.y78{bottom:367.106667pt;}
.y79{bottom:373.826667pt;}
.yd2{bottom:374.786667pt;}
.yb3{bottom:376.226667pt;}
.y22{bottom:379.426667pt;}
.yb2{bottom:380.866667pt;}
.y4a{bottom:386.786667pt;}
.yb1{bottom:391.586667pt;}
.y77{bottom:391.906667pt;}
.ybd{bottom:392.706667pt;}
.yd1{bottom:393.186667pt;}
.yb0{bottom:396.226667pt;}
.y21{bottom:397.826667pt;}
.y90{bottom:398.626667pt;}
.yaf{bottom:406.786667pt;}
.y49{bottom:411.426667pt;}
.yd0{bottom:411.586667pt;}
.y20{bottom:416.226667pt;}
.y76{bottom:416.546667pt;}
.yae{bottom:422.146667pt;}
.y8f{bottom:423.266667pt;}
.yad{bottom:426.786667pt;}
.ycf{bottom:429.986667pt;}
.y1f{bottom:434.626667pt;}
.y48{bottom:436.066667pt;}
.yac{bottom:438.626667pt;}
.y75{bottom:441.186667pt;}
.y8e{bottom:447.906667pt;}
.yce{bottom:448.386667pt;}
.y1e{bottom:453.026667pt;}
.y47{bottom:460.866667pt;}
.y74{bottom:465.826667pt;}
.ycd{bottom:466.786667pt;}
.y1d{bottom:471.426667pt;}
.y8d{bottom:472.546667pt;}
.ycc{bottom:485.186667pt;}
.y46{bottom:485.506667pt;}
.y1c{bottom:489.826667pt;}
.y73{bottom:490.626667pt;}
.y8c{bottom:497.346667pt;}
.ycb{bottom:503.613333pt;}
.y1b{bottom:508.253333pt;}
.y45{bottom:510.173333pt;}
.y72{bottom:515.293333pt;}
.y8b{bottom:522.013333pt;}
.y1a{bottom:526.653333pt;}
.y44{bottom:534.973333pt;}
.y71{bottom:539.933333pt;}
.yca{bottom:540.413333pt;}
.y19{bottom:545.053333pt;}
.y8a{bottom:546.653333pt;}
.yc9{bottom:558.813333pt;}
.y42{bottom:559.613333pt;}
.y18{bottom:563.453333pt;}
.y70{bottom:564.573333pt;}
.y43{bottom:566.333333pt;}
.y89{bottom:571.293333pt;}
.yc8{bottom:577.213333pt;}
.y17{bottom:581.853333pt;}
.y40{bottom:584.253333pt;}
.y6f{bottom:589.373333pt;}
.y41{bottom:590.973333pt;}
.yc7{bottom:595.613333pt;}
.yab{bottom:596.093333pt;}
.y16{bottom:600.253333pt;}
.y3f{bottom:608.893333pt;}
.y6e{bottom:614.013333pt;}
.y15{bottom:618.653333pt;}
.yaa{bottom:620.733333pt;}
.yc6{bottom:632.413333pt;}
.y3e{bottom:633.693333pt;}
.y14{bottom:637.053333pt;}
.y6d{bottom:638.653333pt;}
.yc5{bottom:650.813333pt;}
.y13{bottom:655.293333pt;}
.y3d{bottom:658.333333pt;}
.y6b{bottom:663.453333pt;}
.yc4{bottom:669.213333pt;}
.y6c{bottom:670.173333pt;}
.y12{bottom:673.693333pt;}
.y3c{bottom:682.973333pt;}
.yc3{bottom:687.613333pt;}
.y6a{bottom:688.093333pt;}
.y11{bottom:692.093333pt;}
.ya9{bottom:694.813333pt;}
.yc2{bottom:706.013333pt;}
.y3b{bottom:707.773333pt;}
.y10{bottom:710.493333pt;}
.y69{bottom:712.733333pt;}
.ya8{bottom:719.453333pt;}
.yc1{bottom:724.413333pt;}
.yf{bottom:728.893333pt;}
.y3a{bottom:732.413333pt;}
.y68{bottom:737.373333pt;}
.yc0{bottom:742.813333pt;}
.ya7{bottom:744.093333pt;}
.ye{bottom:747.293333pt;}
.y39{bottom:757.093333pt;}
.ybe{bottom:761.253333pt;}
.y67{bottom:762.213333pt;}
.y38{bottom:781.733333pt;}
.yd{bottom:784.133333pt;}
.y66{bottom:786.853333pt;}
.ybc{bottom:793.573333pt;}
.yc{bottom:802.533333pt;}
.y37{bottom:806.533333pt;}
.y64{bottom:811.493333pt;}
.y65{bottom:818.213333pt;}
.yb{bottom:820.933333pt;}
.y36{bottom:831.173333pt;}
.y63{bottom:836.293333pt;}
.ya{bottom:839.333333pt;}
.ybb{bottom:843.013333pt;}
.y35{bottom:855.813333pt;}
.y9{bottom:857.733333pt;}
.y62{bottom:860.933333pt;}
.yba{bottom:867.653333pt;}
.y8{bottom:875.493333pt;}
.y34{bottom:880.453333pt;}
.y60{bottom:885.573333pt;}
.y7{bottom:891.973333pt;}
.y61{bottom:892.293333pt;}
.y33{bottom:903.173333pt;}
.y5f{bottom:910.213333pt;}
.y6{bottom:913.573333pt;}
.yb9{bottom:916.933333pt;}
.y32{bottom:919.173333pt;}
.y5{bottom:935.013333pt;}
.y31{bottom:937.573333pt;}
.ya6{bottom:941.733333pt;}
.y1{bottom:1057.920000pt;}
.h12{height:18.400000pt;}
.h13{height:18.432000pt;}
.h3{height:28.320000pt;}
.h10{height:33.918750pt;}
.h11{height:47.085938pt;}
.he{height:47.109375pt;}
.h6{height:52.134375pt;}
.h8{height:54.375000pt;}
.h9{height:62.781250pt;}
.hb{height:62.812500pt;}
.hd{height:63.618750pt;}
.h7{height:64.500000pt;}
.hc{height:65.995312pt;}
.h5{height:66.507188pt;}
.hf{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.ha{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w6{width:94.752000pt;}
.w5{width:236.186667pt;}
.w7{width:255.226667pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x67{left:7.200000pt;}
.x3{left:19.680000pt;}
.x63{left:48.154667pt;}
.x1{left:75.519988pt;}
.x5{left:78.559988pt;}
.x9{left:80.671988pt;}
.x3b{left:84.191988pt;}
.x4{left:86.591988pt;}
.x15{left:94.431988pt;}
.x66{left:98.880000pt;}
.xf{left:101.471976pt;}
.x62{left:103.872000pt;}
.x10{left:107.551988pt;}
.x4a{left:109.791976pt;}
.x12{left:118.111976pt;}
.xc{left:122.751988pt;}
.x13{left:124.191988pt;}
.x11{left:128.351988pt;}
.x3c{left:130.591976pt;}
.xd{left:140.826643pt;}
.x3d{left:142.746655pt;}
.xe{left:146.906655pt;}
.x5b{left:151.226643pt;}
.x5c{left:163.386655pt;}
.x1a{left:193.786643pt;}
.x2a{left:198.586643pt;}
.x1b{left:199.866655pt;}
.x1e{left:200.986643pt;}
.x1f{left:207.066655pt;}
.x2b{left:210.746655pt;}
.x34{left:212.666643pt;}
.x35{left:224.826655pt;}
.x26{left:232.026643pt;}
.x38{left:234.586643pt;}
.x27{left:244.186655pt;}
.x39{left:246.746655pt;}
.x43{left:259.426655pt;}
.x53{left:260.386643pt;}
.x5f{left:264.226643pt;}
.x14{left:267.586655pt;}
.x54{left:272.546655pt;}
.x6{left:273.666655pt;}
.x22{left:275.266643pt;}
.x60{left:276.386655pt;}
.x57{left:279.586655pt;}
.x2e{left:285.986655pt;}
.x23{left:287.426655pt;}
.x31{left:297.506643pt;}
.x4f{left:306.306643pt;}
.xb{left:309.666655pt;}
.x50{left:318.466655pt;}
.x8{left:326.146655pt;}
.xa{left:327.906655pt;}
.x64{left:340.066667pt;}
.x3e{left:345.986643pt;}
.x48{left:347.586643pt;}
.x44{left:352.546643pt;}
.x3f{left:358.146655pt;}
.x49{left:359.746655pt;}
.x2{left:363.586667pt;}
.x45{left:364.706655pt;}
.x7{left:396.866655pt;}
.x1c{left:406.626643pt;}
.x1d{left:412.706655pt;}
.x61{left:418.013322pt;}
.x5a{left:425.693322pt;}
.x18{left:430.653310pt;}
.x65{left:434.813333pt;}
.x19{left:436.733322pt;}
.x2c{left:471.933310pt;}
.x4d{left:480.893310pt;}
.x2d{left:484.093322pt;}
.x4e{left:493.053322pt;}
.x28{left:505.373310pt;}
.x2f{left:511.773310pt;}
.x29{left:517.533322pt;}
.x30{left:523.933322pt;}
.x55{left:525.213310pt;}
.x51{left:529.533310pt;}
.x24{left:536.413310pt;}
.x56{left:537.373322pt;}
.x52{left:541.693322pt;}
.x5d{left:544.253310pt;}
.x25{left:548.573322pt;}
.x5e{left:556.413322pt;}
.x3a{left:561.533322pt;}
.x32{left:563.933310pt;}
.x4b{left:565.853310pt;}
.x42{left:573.213322pt;}
.x33{left:576.093322pt;}
.x4c{left:578.013322pt;}
.x40{left:614.853310pt;}
.x41{left:627.013322pt;}
.x20{left:633.893310pt;}
.x58{left:636.933310pt;}
.x36{left:644.133310pt;}
.x21{left:646.053322pt;}
.x59{left:649.093322pt;}
.x37{left:656.293322pt;}
.x16{left:661.733310pt;}
.x17{left:667.813322pt;}
.x46{left:701.573310pt;}
.x47{left:713.733322pt;}
}




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