
    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_e14682a88dcf98da90065b3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934082;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_a45ea954d43116c9077ecdd8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_2c1a519ccbda97f8378434ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a45ac46d478d98616d3c5131.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_36bce3f47951bf231dd9b87a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_65be3e8688ed6d0db5226a7b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_0ad4c1bd9a451477d05881bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.034560px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.lsf{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:33.984000px;}
.lsb{letter-spacing:38.304000px;}
.lse{letter-spacing:198.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-40.608000px;}
.ws6{word-spacing:-33.704640px;}
.wsd{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.712000px;}
.ws4{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws2{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws8{word-spacing:0.000000px;}
._21{margin-left:-5.173680px;}
._10{margin-left:-4.075920px;}
._6{margin-left:-2.565600px;}
._0{margin-left:-1.523520px;}
._2{width:1.068240px;}
._3{width:2.166720px;}
._f{width:3.174720px;}
._8{width:4.608960px;}
._7{width:5.916240px;}
._b{width:7.178640px;}
._e{width:8.373840px;}
._11{width:9.651360px;}
._5{width:10.697040px;}
._4{width:11.772720px;}
._15{width:13.273200px;}
._14{width:15.225600px;}
._c{width:16.296960px;}
._12{width:18.174480px;}
._d{width:20.082240px;}
._16{width:21.816000px;}
._17{width:22.919520px;}
._9{width:24.748080px;}
._a{width:26.125680px;}
._1a{width:27.292800px;}
._1e{width:29.232000px;}
._1d{width:30.384000px;}
._23{width:33.143280px;}
._24{width:35.723520px;}
._1b{width:36.936000px;}
._1c{width:38.016000px;}
._18{width:39.456000px;}
._19{width:41.184000px;}
._1f{width:46.632000px;}
._20{width:47.664000px;}
._25{width:49.104000px;}
._26{width:50.544000px;}
._29{width:59.544000px;}
._13{width:157.222080px;}
._22{width:197.976000px;}
._27{width:309.312000px;}
._28{width:310.500000px;}
._1{width:1100.038080px;}
.fc5{color:rgb(27,28,29);}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:3.960000px;}
.yd1{bottom:4.005000px;}
.y9d{bottom:4.140000px;}
.yc0{bottom:6.120000px;}
.yc4{bottom:6.660000px;}
.y9f{bottom:6.840000px;}
.ya2{bottom:9.180000px;}
.y2{bottom:10.620000px;}
.y41{bottom:42.300000px;}
.y4{bottom:57.960000px;}
.y40{bottom:78.696000px;}
.y74{bottom:120.096000px;}
.ydb{bottom:120.636000px;}
.y3e{bottom:123.156000px;}
.y123{bottom:131.256000px;}
.y10a{bottom:133.056000px;}
.yb0{bottom:133.956000px;}
.y3d{bottom:140.436000px;}
.y73{bottom:140.796000px;}
.yda{bottom:141.336000px;}
.y122{bottom:151.950000px;}
.y109{bottom:153.750000px;}
.y3c{bottom:157.710000px;}
.y72{bottom:161.490000px;}
.yd9{bottom:162.030000px;}
.y121{bottom:172.650000px;}
.yaf{bottom:173.550000px;}
.y108{bottom:174.450000px;}
.y3b{bottom:174.990000px;}
.y71{bottom:182.190000px;}
.yd8{bottom:182.730000px;}
.y3a{bottom:192.270000px;}
.y120{bottom:193.350000px;}
.y107{bottom:195.150000px;}
.y70{bottom:202.890000px;}
.yd7{bottom:203.430000px;}
.y39{bottom:209.370000px;}
.yae{bottom:213.150000px;}
.y11f{bottom:214.050000px;}
.y106{bottom:215.850000px;}
.y6f{bottom:223.590000px;}
.yd6{bottom:224.130000px;}
.y38{bottom:226.650000px;}
.y11e{bottom:234.750000px;}
.y105{bottom:236.550000px;}
.y37{bottom:243.930000px;}
.y6e{bottom:244.290000px;}
.yd5{bottom:244.830000px;}
.yad{bottom:252.750000px;}
.y11d{bottom:255.450000px;}
.y104{bottom:257.250000px;}
.y36{bottom:261.210000px;}
.y6d{bottom:264.990000px;}
.yd4{bottom:265.530000px;}
.y11c{bottom:276.150000px;}
.y103{bottom:277.950000px;}
.y35{bottom:278.490000px;}
.y6c{bottom:285.690000px;}
.yd3{bottom:286.230000px;}
.yac{bottom:287.310000px;}
.y34{bottom:295.590000px;}
.y11b{bottom:296.850000px;}
.y102{bottom:298.650000px;}
.y6b{bottom:306.390000px;}
.yd2{bottom:306.930000px;}
.yab{bottom:308.010000px;}
.y33{bottom:312.870000px;}
.y11a{bottom:317.550000px;}
.y101{bottom:319.350000px;}
.y6a{bottom:327.090000px;}
.yaa{bottom:328.710000px;}
.y32{bottom:330.150000px;}
.yd0{bottom:332.670000px;}
.y119{bottom:338.295000px;}
.y100{bottom:340.095000px;}
.y31{bottom:347.475000px;}
.y69{bottom:347.835000px;}
.ya9{bottom:349.455000px;}
.y98{bottom:353.595000px;}
.y118{bottom:358.995000px;}
.yff{bottom:360.795000px;}
.y30{bottom:364.755000px;}
.y68{bottom:368.535000px;}
.ycf{bottom:369.795000px;}
.ya8{bottom:369.975000px;}
.y97{bottom:374.295000px;}
.y117{bottom:379.695000px;}
.yfe{bottom:381.495000px;}
.y2f{bottom:382.035000px;}
.y67{bottom:389.235000px;}
.ya7{bottom:390.675000px;}
.y96{bottom:394.995000px;}
.y2e{bottom:399.135000px;}
.y116{bottom:400.395000px;}
.yfd{bottom:402.195000px;}
.yce{bottom:407.055000px;}
.y66{bottom:409.935000px;}
.ya6{bottom:411.375000px;}
.y95{bottom:415.695000px;}
.y2d{bottom:416.415000px;}
.y115{bottom:421.095000px;}
.y65{bottom:430.635000px;}
.ya5{bottom:432.075000px;}
.y2c{bottom:433.695000px;}
.y94{bottom:436.395000px;}
.ycd{bottom:440.715000px;}
.yfc{bottom:440.895000px;}
.y114{bottom:441.795000px;}
.y2b{bottom:450.975000px;}
.y64{bottom:451.335000px;}
.ya4{bottom:452.775000px;}
.y93{bottom:457.095000px;}
.ycc{bottom:461.415000px;}
.yfb{bottom:461.595000px;}
.y113{bottom:462.495000px;}
.y2a{bottom:468.255000px;}
.y63{bottom:472.035000px;}
.ya3{bottom:473.475000px;}
.y92{bottom:477.795000px;}
.ycb{bottom:482.115000px;}
.yfa{bottom:482.295000px;}
.y112{bottom:483.195000px;}
.y29{bottom:485.535000px;}
.y62{bottom:492.555000px;}
.ya1{bottom:500.115000px;}
.y28{bottom:502.635000px;}
.yca{bottom:502.815000px;}
.yf9{bottom:502.995000px;}
.y91{bottom:503.535000px;}
.y111{bottom:503.895000px;}
.y61{bottom:513.255000px;}
.y27{bottom:519.915000px;}
.yc9{bottom:523.515000px;}
.yf8{bottom:523.695000px;}
.y110{bottom:524.595000px;}
.y60{bottom:533.955000px;}
.y26{bottom:537.195000px;}
.y90{bottom:540.615000px;}
.yc8{bottom:544.215000px;}
.yf7{bottom:544.395000px;}
.ya0{bottom:544.935000px;}
.y10f{bottom:545.295000px;}
.y25{bottom:554.475000px;}
.y5f{bottom:554.655000px;}
.yc7{bottom:564.915000px;}
.yf6{bottom:565.095000px;}
.y10e{bottom:565.995000px;}
.y24{bottom:571.755000px;}
.y5e{bottom:575.355000px;}
.y8f{bottom:577.875000px;}
.y9e{bottom:584.535000px;}
.yc6{bottom:585.615000px;}
.yf5{bottom:585.795000px;}
.y10d{bottom:586.695000px;}
.y23{bottom:589.035000px;}
.y5d{bottom:596.055000px;}
.y22{bottom:606.165000px;}
.yc5{bottom:606.345000px;}
.yf4{bottom:606.525000px;}
.y10c{bottom:607.425000px;}
.y8d{bottom:615.165000px;}
.y5c{bottom:616.785000px;}
.y21{bottom:623.445000px;}
.y9c{bottom:627.045000px;}
.yf3{bottom:627.225000px;}
.y10b{bottom:628.125000px;}
.y5b{bottom:637.485000px;}
.y20{bottom:640.725000px;}
.yf2{bottom:647.925000px;}
.y8c{bottom:648.825000px;}
.yc3{bottom:653.685000px;}
.y1f{bottom:658.005000px;}
.y5a{bottom:658.185000px;}
.y9b{bottom:666.825000px;}
.yf1{bottom:668.625000px;}
.y8b{bottom:669.525000px;}
.y1e{bottom:675.285000px;}
.y59{bottom:678.885000px;}
.yf0{bottom:689.325000px;}
.y8a{bottom:690.225000px;}
.y1d{bottom:692.385000px;}
.yc2{bottom:695.985000px;}
.y58{bottom:699.585000px;}
.y9a{bottom:706.425000px;}
.y1c{bottom:709.665000px;}
.yef{bottom:710.025000px;}
.y89{bottom:710.925000px;}
.y57{bottom:720.285000px;}
.y1b{bottom:726.945000px;}
.yee{bottom:730.725000px;}
.y88{bottom:731.625000px;}
.yc1{bottom:740.805000px;}
.y56{bottom:740.985000px;}
.y1a{bottom:744.225000px;}
.yed{bottom:751.425000px;}
.y87{bottom:752.325000px;}
.y19{bottom:761.505000px;}
.y55{bottom:761.685000px;}
.yec{bottom:772.125000px;}
.y86{bottom:773.025000px;}
.y18{bottom:778.785000px;}
.ybf{bottom:780.405000px;}
.y54{bottom:782.385000px;}
.yeb{bottom:792.825000px;}
.y85{bottom:793.725000px;}
.y17{bottom:796.605000px;}
.y53{bottom:803.085000px;}
.yea{bottom:813.525000px;}
.y84{bottom:814.425000px;}
.y16{bottom:816.585000px;}
.ybe{bottom:822.165000px;}
.y52{bottom:823.785000px;}
.y15{bottom:833.865000px;}
.ye9{bottom:834.225000px;}
.y83{bottom:835.125000px;}
.y51{bottom:844.485000px;}
.y14{bottom:851.145000px;}
.ye8{bottom:854.925000px;}
.y82{bottom:855.825000px;}
.ybd{bottom:856.725000px;}
.y50{bottom:865.185000px;}
.y13{bottom:868.425000px;}
.ye7{bottom:875.670000px;}
.y81{bottom:876.570000px;}
.ybc{bottom:877.470000px;}
.y99{bottom:881.970000px;}
.y12{bottom:885.750000px;}
.y4f{bottom:885.930000px;}
.ye6{bottom:896.370000px;}
.y80{bottom:897.270000px;}
.ybb{bottom:898.170000px;}
.y11{bottom:903.030000px;}
.y4e{bottom:906.630000px;}
.ye5{bottom:917.070000px;}
.y7f{bottom:917.970000px;}
.yba{bottom:918.870000px;}
.y10{bottom:920.850000px;}
.y4d{bottom:927.330000px;}
.ye4{bottom:937.770000px;}
.y7e{bottom:938.670000px;}
.yb9{bottom:939.570000px;}
.yf{bottom:941.550000px;}
.y4c{bottom:948.030000px;}
.ye3{bottom:958.470000px;}
.y7d{bottom:959.370000px;}
.yb8{bottom:960.270000px;}
.ye{bottom:962.250000px;}
.y4b{bottom:968.730000px;}
.ye2{bottom:979.170000px;}
.y7c{bottom:980.070000px;}
.yb7{bottom:980.790000px;}
.yd{bottom:981.510000px;}
.y4a{bottom:989.430000px;}
.yc{bottom:996.990000px;}
.ye1{bottom:999.870000px;}
.y7b{bottom:1000.590000px;}
.yb6{bottom:1001.490000px;}
.y49{bottom:1010.130000px;}
.yb{bottom:1019.490000px;}
.ye0{bottom:1020.570000px;}
.y7a{bottom:1021.290000px;}
.yb5{bottom:1022.190000px;}
.y48{bottom:1029.390000px;}
.ya{bottom:1041.270000px;}
.y79{bottom:1041.990000px;}
.yb4{bottom:1042.890000px;}
.y47{bottom:1043.250000px;}
.y46{bottom:1057.830000px;}
.y9{bottom:1058.370000px;}
.ydf{bottom:1061.970000px;}
.y78{bottom:1062.690000px;}
.yb3{bottom:1063.590000px;}
.y45{bottom:1074.930000px;}
.y8{bottom:1075.650000px;}
.yde{bottom:1082.670000px;}
.y77{bottom:1083.390000px;}
.yb2{bottom:1084.290000px;}
.y44{bottom:1092.210000px;}
.y7{bottom:1092.930000px;}
.ydd{bottom:1103.370000px;}
.y76{bottom:1104.090000px;}
.y43{bottom:1109.490000px;}
.y6{bottom:1110.390000px;}
.yb1{bottom:1110.930000px;}
.ydc{bottom:1124.070000px;}
.y75{bottom:1124.790000px;}
.y42{bottom:1126.770000px;}
.y5{bottom:1127.670000px;}
.y3f{bottom:1163.340000px;}
.y3{bottom:1164.060000px;}
.y1{bottom:1179.720000px;}
.h12{height:20.700000px;}
.h18{height:20.736000px;}
.h13{height:20.880000px;}
.h16{height:22.860000px;}
.h17{height:23.400000px;}
.h14{height:23.616000px;}
.h15{height:25.920000px;}
.h2{height:30.060000px;}
.hb{height:33.683203px;}
.hf{height:34.036523px;}
.h5{height:39.760312px;}
.h8{height:41.726953px;}
.h6{height:42.164648px;}
.h7{height:42.446953px;}
.he{height:49.255313px;}
.h3{height:50.068125px;}
.hd{height:50.273438px;}
.hc{height:50.800781px;}
.h11{height:52.417969px;}
.ha{height:54.864844px;}
.h10{height:59.343750px;}
.h9{height:63.104063px;}
.h4{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:59.940000px;}
.w8{width:61.020000px;}
.w2{width:61.200000px;}
.w10{width:76.680000px;}
.w12{width:128.556000px;}
.we{width:149.976000px;}
.wa{width:151.050000px;}
.w6{width:155.010000px;}
.w7{width:155.160000px;}
.w5{width:155.190000px;}
.wb{width:162.210000px;}
.wf{width:199.290000px;}
.wd{width:221.790000px;}
.w11{width:221.970000px;}
.w9{width:238.710000px;}
.w3{width:627.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:6.660000px;}
.x4{left:7.920000px;}
.x2{left:13.860000px;}
.x1d{left:19.620000px;}
.x22{left:22.320000px;}
.x23{left:26.100000px;}
.x37{left:27.360000px;}
.x33{left:30.060000px;}
.x3a{left:33.840000px;}
.x20{left:35.310000px;}
.x31{left:37.620000px;}
.x2e{left:40.860000px;}
.x3f{left:44.640000px;}
.x2c{left:46.110000px;}
.x2f{left:47.160000px;}
.x3d{left:49.860000px;}
.x3e{left:52.965000px;}
.x3b{left:55.110000px;}
.x1b{left:56.880000px;}
.x25{left:58.005000px;}
.x3c{left:59.610000px;}
.x27{left:62.505000px;}
.x15{left:64.260000px;}
.x2a{left:65.385000px;}
.x24{left:66.630000px;}
.x26{left:71.130000px;}
.x1a{left:73.080000px;}
.x35{left:79.425000px;}
.x34{left:81.945000px;}
.x32{left:83.925000px;}
.x30{left:88.425000px;}
.x1{left:108.036000px;}
.x7{left:111.455987px;}
.x6{left:128.375987px;}
.x11{left:139.895987px;}
.x40{left:150.509987px;}
.x36{left:153.930000px;}
.x12{left:155.369987px;}
.x10{left:161.129987px;}
.x14{left:163.470000px;}
.x3{left:169.230000px;}
.xa{left:180.929987px;}
.x29{left:182.369987px;}
.x28{left:214.229987px;}
.x13{left:216.029987px;}
.x9{left:223.049987px;}
.x1e{left:225.930000px;}
.xb{left:231.869987px;}
.xc{left:233.669987px;}
.x8{left:288.794987px;}
.x5{left:316.334987px;}
.x16{left:320.115000px;}
.xf{left:418.574987px;}
.xe{left:420.194987px;}
.x2b{left:438.555000px;}
.xd{left:446.474987px;}
.x38{left:454.395000px;}
.x1f{left:465.555000px;}
.x18{left:476.565000px;}
.x39{left:583.845000px;}
.x2d{left:589.425000px;}
.x21{left:617.505000px;}
.x19{left:633.345000px;}
.x1c{left:684.149987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.lsf{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:30.208000pt;}
.lsb{letter-spacing:34.048000pt;}
.lse{letter-spacing:176.000000pt;}
.wsa{word-spacing:-36.096000pt;}
.ws6{word-spacing:-29.959680pt;}
.wsd{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws8{word-spacing:0.000000pt;}
._21{margin-left:-4.598827pt;}
._10{margin-left:-3.623040pt;}
._6{margin-left:-2.280533pt;}
._0{margin-left:-1.354240pt;}
._2{width:0.949547pt;}
._3{width:1.925973pt;}
._f{width:2.821973pt;}
._8{width:4.096853pt;}
._7{width:5.258880pt;}
._b{width:6.381013pt;}
._e{width:7.443413pt;}
._11{width:8.578987pt;}
._5{width:9.508480pt;}
._4{width:10.464640pt;}
._15{width:11.798400pt;}
._14{width:13.533867pt;}
._c{width:14.486187pt;}
._12{width:16.155093pt;}
._d{width:17.850880pt;}
._16{width:19.392000pt;}
._17{width:20.372907pt;}
._9{width:21.998293pt;}
._a{width:23.222827pt;}
._1a{width:24.260267pt;}
._1e{width:25.984000pt;}
._1d{width:27.008000pt;}
._23{width:29.460693pt;}
._24{width:31.754240pt;}
._1b{width:32.832000pt;}
._1c{width:33.792000pt;}
._18{width:35.072000pt;}
._19{width:36.608000pt;}
._1f{width:41.450667pt;}
._20{width:42.368000pt;}
._25{width:43.648000pt;}
._26{width:44.928000pt;}
._29{width:52.928000pt;}
._13{width:139.752960pt;}
._22{width:175.978667pt;}
._27{width:274.944000pt;}
._28{width:276.000000pt;}
._1{width:977.811627pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:3.520000pt;}
.yd1{bottom:3.560000pt;}
.y9d{bottom:3.680000pt;}
.yc0{bottom:5.440000pt;}
.yc4{bottom:5.920000pt;}
.y9f{bottom:6.080000pt;}
.ya2{bottom:8.160000pt;}
.y2{bottom:9.440000pt;}
.y41{bottom:37.600000pt;}
.y4{bottom:51.520000pt;}
.y40{bottom:69.952000pt;}
.y74{bottom:106.752000pt;}
.ydb{bottom:107.232000pt;}
.y3e{bottom:109.472000pt;}
.y123{bottom:116.672000pt;}
.y10a{bottom:118.272000pt;}
.yb0{bottom:119.072000pt;}
.y3d{bottom:124.832000pt;}
.y73{bottom:125.152000pt;}
.yda{bottom:125.632000pt;}
.y122{bottom:135.066667pt;}
.y109{bottom:136.666667pt;}
.y3c{bottom:140.186667pt;}
.y72{bottom:143.546667pt;}
.yd9{bottom:144.026667pt;}
.y121{bottom:153.466667pt;}
.yaf{bottom:154.266667pt;}
.y108{bottom:155.066667pt;}
.y3b{bottom:155.546667pt;}
.y71{bottom:161.946667pt;}
.yd8{bottom:162.426667pt;}
.y3a{bottom:170.906667pt;}
.y120{bottom:171.866667pt;}
.y107{bottom:173.466667pt;}
.y70{bottom:180.346667pt;}
.yd7{bottom:180.826667pt;}
.y39{bottom:186.106667pt;}
.yae{bottom:189.466667pt;}
.y11f{bottom:190.266667pt;}
.y106{bottom:191.866667pt;}
.y6f{bottom:198.746667pt;}
.yd6{bottom:199.226667pt;}
.y38{bottom:201.466667pt;}
.y11e{bottom:208.666667pt;}
.y105{bottom:210.266667pt;}
.y37{bottom:216.826667pt;}
.y6e{bottom:217.146667pt;}
.yd5{bottom:217.626667pt;}
.yad{bottom:224.666667pt;}
.y11d{bottom:227.066667pt;}
.y104{bottom:228.666667pt;}
.y36{bottom:232.186667pt;}
.y6d{bottom:235.546667pt;}
.yd4{bottom:236.026667pt;}
.y11c{bottom:245.466667pt;}
.y103{bottom:247.066667pt;}
.y35{bottom:247.546667pt;}
.y6c{bottom:253.946667pt;}
.yd3{bottom:254.426667pt;}
.yac{bottom:255.386667pt;}
.y34{bottom:262.746667pt;}
.y11b{bottom:263.866667pt;}
.y102{bottom:265.466667pt;}
.y6b{bottom:272.346667pt;}
.yd2{bottom:272.826667pt;}
.yab{bottom:273.786667pt;}
.y33{bottom:278.106667pt;}
.y11a{bottom:282.266667pt;}
.y101{bottom:283.866667pt;}
.y6a{bottom:290.746667pt;}
.yaa{bottom:292.186667pt;}
.y32{bottom:293.466667pt;}
.yd0{bottom:295.706667pt;}
.y119{bottom:300.706667pt;}
.y100{bottom:302.306667pt;}
.y31{bottom:308.866667pt;}
.y69{bottom:309.186667pt;}
.ya9{bottom:310.626667pt;}
.y98{bottom:314.306667pt;}
.y118{bottom:319.106667pt;}
.yff{bottom:320.706667pt;}
.y30{bottom:324.226667pt;}
.y68{bottom:327.586667pt;}
.ycf{bottom:328.706667pt;}
.ya8{bottom:328.866667pt;}
.y97{bottom:332.706667pt;}
.y117{bottom:337.506667pt;}
.yfe{bottom:339.106667pt;}
.y2f{bottom:339.586667pt;}
.y67{bottom:345.986667pt;}
.ya7{bottom:347.266667pt;}
.y96{bottom:351.106667pt;}
.y2e{bottom:354.786667pt;}
.y116{bottom:355.906667pt;}
.yfd{bottom:357.506667pt;}
.yce{bottom:361.826667pt;}
.y66{bottom:364.386667pt;}
.ya6{bottom:365.666667pt;}
.y95{bottom:369.506667pt;}
.y2d{bottom:370.146667pt;}
.y115{bottom:374.306667pt;}
.y65{bottom:382.786667pt;}
.ya5{bottom:384.066667pt;}
.y2c{bottom:385.506667pt;}
.y94{bottom:387.906667pt;}
.ycd{bottom:391.746667pt;}
.yfc{bottom:391.906667pt;}
.y114{bottom:392.706667pt;}
.y2b{bottom:400.866667pt;}
.y64{bottom:401.186667pt;}
.ya4{bottom:402.466667pt;}
.y93{bottom:406.306667pt;}
.ycc{bottom:410.146667pt;}
.yfb{bottom:410.306667pt;}
.y113{bottom:411.106667pt;}
.y2a{bottom:416.226667pt;}
.y63{bottom:419.586667pt;}
.ya3{bottom:420.866667pt;}
.y92{bottom:424.706667pt;}
.ycb{bottom:428.546667pt;}
.yfa{bottom:428.706667pt;}
.y112{bottom:429.506667pt;}
.y29{bottom:431.586667pt;}
.y62{bottom:437.826667pt;}
.ya1{bottom:444.546667pt;}
.y28{bottom:446.786667pt;}
.yca{bottom:446.946667pt;}
.yf9{bottom:447.106667pt;}
.y91{bottom:447.586667pt;}
.y111{bottom:447.906667pt;}
.y61{bottom:456.226667pt;}
.y27{bottom:462.146667pt;}
.yc9{bottom:465.346667pt;}
.yf8{bottom:465.506667pt;}
.y110{bottom:466.306667pt;}
.y60{bottom:474.626667pt;}
.y26{bottom:477.506667pt;}
.y90{bottom:480.546667pt;}
.yc8{bottom:483.746667pt;}
.yf7{bottom:483.906667pt;}
.ya0{bottom:484.386667pt;}
.y10f{bottom:484.706667pt;}
.y25{bottom:492.866667pt;}
.y5f{bottom:493.026667pt;}
.yc7{bottom:502.146667pt;}
.yf6{bottom:502.306667pt;}
.y10e{bottom:503.106667pt;}
.y24{bottom:508.226667pt;}
.y5e{bottom:511.426667pt;}
.y8f{bottom:513.666667pt;}
.y9e{bottom:519.586667pt;}
.yc6{bottom:520.546667pt;}
.yf5{bottom:520.706667pt;}
.y10d{bottom:521.506667pt;}
.y23{bottom:523.586667pt;}
.y5d{bottom:529.826667pt;}
.y22{bottom:538.813333pt;}
.yc5{bottom:538.973333pt;}
.yf4{bottom:539.133333pt;}
.y10c{bottom:539.933333pt;}
.y8d{bottom:546.813333pt;}
.y5c{bottom:548.253333pt;}
.y21{bottom:554.173333pt;}
.y9c{bottom:557.373333pt;}
.yf3{bottom:557.533333pt;}
.y10b{bottom:558.333333pt;}
.y5b{bottom:566.653333pt;}
.y20{bottom:569.533333pt;}
.yf2{bottom:575.933333pt;}
.y8c{bottom:576.733333pt;}
.yc3{bottom:581.053333pt;}
.y1f{bottom:584.893333pt;}
.y5a{bottom:585.053333pt;}
.y9b{bottom:592.733333pt;}
.yf1{bottom:594.333333pt;}
.y8b{bottom:595.133333pt;}
.y1e{bottom:600.253333pt;}
.y59{bottom:603.453333pt;}
.yf0{bottom:612.733333pt;}
.y8a{bottom:613.533333pt;}
.y1d{bottom:615.453333pt;}
.yc2{bottom:618.653333pt;}
.y58{bottom:621.853333pt;}
.y9a{bottom:627.933333pt;}
.y1c{bottom:630.813333pt;}
.yef{bottom:631.133333pt;}
.y89{bottom:631.933333pt;}
.y57{bottom:640.253333pt;}
.y1b{bottom:646.173333pt;}
.yee{bottom:649.533333pt;}
.y88{bottom:650.333333pt;}
.yc1{bottom:658.493333pt;}
.y56{bottom:658.653333pt;}
.y1a{bottom:661.533333pt;}
.yed{bottom:667.933333pt;}
.y87{bottom:668.733333pt;}
.y19{bottom:676.893333pt;}
.y55{bottom:677.053333pt;}
.yec{bottom:686.333333pt;}
.y86{bottom:687.133333pt;}
.y18{bottom:692.253333pt;}
.ybf{bottom:693.693333pt;}
.y54{bottom:695.453333pt;}
.yeb{bottom:704.733333pt;}
.y85{bottom:705.533333pt;}
.y17{bottom:708.093333pt;}
.y53{bottom:713.853333pt;}
.yea{bottom:723.133333pt;}
.y84{bottom:723.933333pt;}
.y16{bottom:725.853333pt;}
.ybe{bottom:730.813333pt;}
.y52{bottom:732.253333pt;}
.y15{bottom:741.213333pt;}
.ye9{bottom:741.533333pt;}
.y83{bottom:742.333333pt;}
.y51{bottom:750.653333pt;}
.y14{bottom:756.573333pt;}
.ye8{bottom:759.933333pt;}
.y82{bottom:760.733333pt;}
.ybd{bottom:761.533333pt;}
.y50{bottom:769.053333pt;}
.y13{bottom:771.933333pt;}
.ye7{bottom:778.373333pt;}
.y81{bottom:779.173333pt;}
.ybc{bottom:779.973333pt;}
.y99{bottom:783.973333pt;}
.y12{bottom:787.333333pt;}
.y4f{bottom:787.493333pt;}
.ye6{bottom:796.773333pt;}
.y80{bottom:797.573333pt;}
.ybb{bottom:798.373333pt;}
.y11{bottom:802.693333pt;}
.y4e{bottom:805.893333pt;}
.ye5{bottom:815.173333pt;}
.y7f{bottom:815.973333pt;}
.yba{bottom:816.773333pt;}
.y10{bottom:818.533333pt;}
.y4d{bottom:824.293333pt;}
.ye4{bottom:833.573333pt;}
.y7e{bottom:834.373333pt;}
.yb9{bottom:835.173333pt;}
.yf{bottom:836.933333pt;}
.y4c{bottom:842.693333pt;}
.ye3{bottom:851.973333pt;}
.y7d{bottom:852.773333pt;}
.yb8{bottom:853.573333pt;}
.ye{bottom:855.333333pt;}
.y4b{bottom:861.093333pt;}
.ye2{bottom:870.373333pt;}
.y7c{bottom:871.173333pt;}
.yb7{bottom:871.813333pt;}
.yd{bottom:872.453333pt;}
.y4a{bottom:879.493333pt;}
.yc{bottom:886.213333pt;}
.ye1{bottom:888.773333pt;}
.y7b{bottom:889.413333pt;}
.yb6{bottom:890.213333pt;}
.y49{bottom:897.893333pt;}
.yb{bottom:906.213333pt;}
.ye0{bottom:907.173333pt;}
.y7a{bottom:907.813333pt;}
.yb5{bottom:908.613333pt;}
.y48{bottom:915.013333pt;}
.ya{bottom:925.573333pt;}
.y79{bottom:926.213333pt;}
.yb4{bottom:927.013333pt;}
.y47{bottom:927.333333pt;}
.y46{bottom:940.293333pt;}
.y9{bottom:940.773333pt;}
.ydf{bottom:943.973333pt;}
.y78{bottom:944.613333pt;}
.yb3{bottom:945.413333pt;}
.y45{bottom:955.493333pt;}
.y8{bottom:956.133333pt;}
.yde{bottom:962.373333pt;}
.y77{bottom:963.013333pt;}
.yb2{bottom:963.813333pt;}
.y44{bottom:970.853333pt;}
.y7{bottom:971.493333pt;}
.ydd{bottom:980.773333pt;}
.y76{bottom:981.413333pt;}
.y43{bottom:986.213333pt;}
.y6{bottom:987.013333pt;}
.yb1{bottom:987.493333pt;}
.ydc{bottom:999.173333pt;}
.y75{bottom:999.813333pt;}
.y42{bottom:1001.573333pt;}
.y5{bottom:1002.373333pt;}
.y3f{bottom:1034.080000pt;}
.y3{bottom:1034.720000pt;}
.y1{bottom:1048.640000pt;}
.h12{height:18.400000pt;}
.h18{height:18.432000pt;}
.h13{height:18.560000pt;}
.h16{height:20.320000pt;}
.h17{height:20.800000pt;}
.h14{height:20.992000pt;}
.h15{height:23.040000pt;}
.h2{height:26.720000pt;}
.hb{height:29.940625pt;}
.hf{height:30.254687pt;}
.h5{height:35.342500pt;}
.h8{height:37.090625pt;}
.h6{height:37.479688pt;}
.h7{height:37.730625pt;}
.he{height:43.782500pt;}
.h3{height:44.505000pt;}
.hd{height:44.687500pt;}
.hc{height:45.156250pt;}
.h11{height:46.593750pt;}
.ha{height:48.768750pt;}
.h10{height:52.750000pt;}
.h9{height:56.092500pt;}
.h4{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:53.280000pt;}
.w8{width:54.240000pt;}
.w2{width:54.400000pt;}
.w10{width:68.160000pt;}
.w12{width:114.272000pt;}
.we{width:133.312000pt;}
.wa{width:134.266667pt;}
.w6{width:137.786667pt;}
.w7{width:137.920000pt;}
.w5{width:137.946667pt;}
.wb{width:144.186667pt;}
.wf{width:177.146667pt;}
.wd{width:197.146667pt;}
.w11{width:197.306667pt;}
.w9{width:212.186667pt;}
.w3{width:557.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:5.920000pt;}
.x4{left:7.040000pt;}
.x2{left:12.320000pt;}
.x1d{left:17.440000pt;}
.x22{left:19.840000pt;}
.x23{left:23.200000pt;}
.x37{left:24.320000pt;}
.x33{left:26.720000pt;}
.x3a{left:30.080000pt;}
.x20{left:31.386667pt;}
.x31{left:33.440000pt;}
.x2e{left:36.320000pt;}
.x3f{left:39.680000pt;}
.x2c{left:40.986667pt;}
.x2f{left:41.920000pt;}
.x3d{left:44.320000pt;}
.x3e{left:47.080000pt;}
.x3b{left:48.986667pt;}
.x1b{left:50.560000pt;}
.x25{left:51.560000pt;}
.x3c{left:52.986667pt;}
.x27{left:55.560000pt;}
.x15{left:57.120000pt;}
.x2a{left:58.120000pt;}
.x24{left:59.226667pt;}
.x26{left:63.226667pt;}
.x1a{left:64.960000pt;}
.x35{left:70.600000pt;}
.x34{left:72.840000pt;}
.x32{left:74.600000pt;}
.x30{left:78.600000pt;}
.x1{left:96.032000pt;}
.x7{left:99.071988pt;}
.x6{left:114.111988pt;}
.x11{left:124.351988pt;}
.x40{left:133.786655pt;}
.x36{left:136.826667pt;}
.x12{left:138.106655pt;}
.x10{left:143.226655pt;}
.x14{left:145.306667pt;}
.x3{left:150.426667pt;}
.xa{left:160.826655pt;}
.x29{left:162.106655pt;}
.x28{left:190.426655pt;}
.x13{left:192.026655pt;}
.x9{left:198.266655pt;}
.x1e{left:200.826667pt;}
.xb{left:206.106655pt;}
.xc{left:207.706655pt;}
.x8{left:256.706655pt;}
.x5{left:281.186655pt;}
.x16{left:284.546667pt;}
.xf{left:372.066655pt;}
.xe{left:373.506655pt;}
.x2b{left:389.826667pt;}
.xd{left:396.866655pt;}
.x38{left:403.906667pt;}
.x1f{left:413.826667pt;}
.x18{left:423.613333pt;}
.x39{left:518.973333pt;}
.x2d{left:523.933333pt;}
.x21{left:548.893333pt;}
.x19{left:562.973333pt;}
.x1c{left:608.133322pt;}
}




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