
    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_9ab961d4df778d5190a2e6b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_95962d2baff55b1053ba3483.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fb890225043ebb90091fc446.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cdc8f664cf0a4424da48ab4f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_677fa61567d76e2444cc2783.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_d6cb8e657adea71c4307d8cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-69.120000px;}
.v6{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v7{vertical-align:-61.200000px;}
.v4{vertical-align:-23.760000px;}
.v5{vertical-align:-18.000000px;}
.v9{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.ls19{letter-spacing:-1.422000px;}
.ls18{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.262200px;}
.ls20{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.220800px;}
.ls11{letter-spacing:-0.126000px;}
.lsd{letter-spacing:-0.027360px;}
.ls1a{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.252000px;}
.ls12{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.576000px;}
.ls5{letter-spacing:2.340000px;}
.ls1f{letter-spacing:2.988000px;}
.ls6{letter-spacing:3.060000px;}
.ls4{letter-spacing:16.740000px;}
.ls1e{letter-spacing:30.348000px;}
.ls7{letter-spacing:52.560000px;}
.ls9{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls16{letter-spacing:687.180000px;}
.ls17{letter-spacing:849.360000px;}
.ls8{letter-spacing:1367.340000px;}
.ls1d{letter-spacing:1410.960000px;}
.ls14{letter-spacing:1470.720000px;}
.lsa{letter-spacing:1593.900000px;}
.ls15{letter-spacing:1593.960000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.824000px;}
.wsc{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.ws9{word-spacing:-13.374000px;}
.ws11{word-spacing:-13.248000px;}
.wsd{word-spacing:-13.140000px;}
.wse{word-spacing:-12.420000px;}
.wsf{word-spacing:-12.078000px;}
.ws7{word-spacing:-9.000000px;}
.wsa{word-spacing:0.000000px;}
._b{margin-left:-4.801680px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.078560px;}
._5{width:3.079440px;}
._6{width:4.143600px;}
._c{width:5.229120px;}
._a{width:6.331440px;}
._e{width:7.366080px;}
._d{width:9.425280px;}
._7{width:15.060000px;}
._8{width:16.092000px;}
._9{width:17.262000px;}
._10{width:382.435440px;}
._f{width:480.037440px;}
._3{width:765.060000px;}
._4{width:794.460000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(84,141,212);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:2.880000px;}
.yb9{bottom:3.240000px;}
.ybb{bottom:3.420000px;}
.yd0{bottom:7.920000px;}
.yc7{bottom:18.360000px;}
.yb2{bottom:18.540000px;}
.ybd{bottom:18.720000px;}
.yb8{bottom:18.900000px;}
.yc0{bottom:18.945000px;}
.yc9{bottom:33.840000px;}
.yb4{bottom:34.020000px;}
.yd8{bottom:34.065000px;}
.yb7{bottom:34.380000px;}
.yb5{bottom:49.500000px;}
.y3f{bottom:57.870000px;}
.y2{bottom:57.960000px;}
.yc8{bottom:64.980000px;}
.y3e{bottom:76.770000px;}
.y1{bottom:76.860000px;}
.y3d{bottom:95.850000px;}
.y7d{bottom:95.940000px;}
.y37{bottom:111.450000px;}
.y3c{bottom:114.750000px;}
.y7c{bottom:114.840000px;}
.y36{bottom:126.930000px;}
.y3b{bottom:133.650000px;}
.y7b{bottom:133.740000px;}
.y35{bottom:142.440000px;}
.y3a{bottom:152.760000px;}
.y7a{bottom:152.850000px;}
.y34{bottom:157.920000px;}
.y33{bottom:173.580000px;}
.yaf{bottom:174.450000px;}
.y77{bottom:175.620000px;}
.ydf{bottom:183.810000px;}
.y32{bottom:189.060000px;}
.y76{bottom:191.280000px;}
.yde{bottom:197.130000px;}
.y31{bottom:204.540000px;}
.yae{bottom:205.950000px;}
.y75{bottom:206.760000px;}
.y30{bottom:220.200000px;}
.yad{bottom:221.430000px;}
.y74{bottom:222.240000px;}
.y2f{bottom:235.680000px;}
.yac{bottom:237.090000px;}
.ydd{bottom:237.270000px;}
.y73{bottom:237.720000px;}
.y2e{bottom:251.160000px;}
.yab{bottom:252.570000px;}
.y72{bottom:253.380000px;}
.ydc{bottom:261.030000px;}
.y2d{bottom:266.640000px;}
.yaa{bottom:267.870000px;}
.y71{bottom:268.860000px;}
.ya9{bottom:283.530000px;}
.y70{bottom:284.160000px;}
.ydb{bottom:284.610000px;}
.y2c{bottom:297.600000px;}
.ya8{bottom:299.370000px;}
.y6f{bottom:299.640000px;}
.yda{bottom:308.190000px;}
.ya7{bottom:315.030000px;}
.y6e{bottom:315.300000px;}
.y2b{bottom:328.560000px;}
.ya6{bottom:330.510000px;}
.y6d{bottom:331.320000px;}
.yd9{bottom:331.770000px;}
.ya5{bottom:345.990000px;}
.y2a{bottom:346.740000px;}
.y6c{bottom:346.800000px;}
.ya4{bottom:361.290000px;}
.y6b{bottom:362.460000px;}
.yd7{bottom:363.630000px;}
.y6a{bottom:374.880000px;}
.y29{bottom:375.720000px;}
.ya3{bottom:376.950000px;}
.ya2{bottom:392.475000px;}
.y28{bottom:394.125000px;}
.y10d{bottom:396.795000px;}
.y27{bottom:409.785000px;}
.y10c{bottom:412.275000px;}
.ya1{bottom:423.795000px;}
.y10b{bottom:427.935000px;}
.yd6{bottom:429.915000px;}
.y26{bottom:432.105000px;}
.ya0{bottom:439.635000px;}
.y10a{bottom:443.415000px;}
.y69{bottom:444.045000px;}
.yd5{bottom:445.395000px;}
.y25{bottom:447.585000px;}
.y9f{bottom:455.115000px;}
.y109{bottom:458.895000px;}
.y68{bottom:459.525000px;}
.yd4{bottom:461.055000px;}
.y24{bottom:463.065000px;}
.y9e{bottom:470.775000px;}
.y108{bottom:474.375000px;}
.y67{bottom:475.185000px;}
.yd3{bottom:476.355000px;}
.y23{bottom:478.725000px;}
.y9d{bottom:486.075000px;}
.y66{bottom:487.425000px;}
.y107{bottom:490.035000px;}
.yd2{bottom:491.835000px;}
.y22{bottom:501.225000px;}
.y9c{bottom:501.555000px;}
.y106{bottom:505.515000px;}
.yd1{bottom:507.495000px;}
.y21{bottom:516.705000px;}
.y9b{bottom:517.575000px;}
.ycf{bottom:520.815000px;}
.y105{bottom:520.995000px;}
.y20{bottom:532.365000px;}
.y9a{bottom:533.055000px;}
.y104{bottom:536.475000px;}
.y99{bottom:548.715000px;}
.y103{bottom:552.135000px;}
.yce{bottom:552.675000px;}
.y1f{bottom:554.685000px;}
.y98{bottom:563.835000px;}
.y102{bottom:567.615000px;}
.y1e{bottom:570.345000px;}
.ycd{bottom:576.075000px;}
.y97{bottom:579.495000px;}
.y101{bottom:583.275000px;}
.y1d{bottom:592.665000px;}
.y96{bottom:595.515000px;}
.y100{bottom:598.395000px;}
.y65{bottom:598.485000px;}
.ycc{bottom:599.295000px;}
.y1c{bottom:608.325000px;}
.y95{bottom:610.995000px;}
.y64{bottom:614.325000px;}
.ycb{bottom:622.515000px;}
.y1b{bottom:623.805000px;}
.y94{bottom:626.655000px;}
.y63{bottom:629.985000px;}
.yff{bottom:630.075000px;}
.y1a{bottom:639.465000px;}
.y93{bottom:642.345000px;}
.yfe{bottom:645.225000px;}
.y62{bottom:645.495000px;}
.yca{bottom:645.765000px;}
.y92{bottom:654.585000px;}
.y61{bottom:660.975000px;}
.y19{bottom:661.635000px;}
.y60{bottom:676.455000px;}
.yfd{bottom:676.725000px;}
.yc6{bottom:677.625000px;}
.y18{bottom:688.275000px;}
.y5f{bottom:691.935000px;}
.yfc{bottom:692.205000px;}
.y17{bottom:703.755000px;}
.y5d{bottom:707.595000px;}
.yfb{bottom:707.865000px;}
.y16{bottom:719.415000px;}
.y5c{bottom:723.075000px;}
.yfa{bottom:723.165000px;}
.y5b{bottom:738.735000px;}
.y15{bottom:753.975000px;}
.y5a{bottom:754.215000px;}
.yf9{bottom:754.665000px;}
.y59{bottom:769.875000px;}
.yf8{bottom:770.145000px;}
.y14{bottom:774.135000px;}
.yc5{bottom:774.825000px;}
.y91{bottom:781.845000px;}
.y58{bottom:785.355000px;}
.yf7{bottom:785.625000px;}
.yc4{bottom:790.485000px;}
.y90{bottom:797.325000px;}
.y5e{bottom:798.780000px;}
.y57{bottom:800.835000px;}
.yf6{bottom:801.285000px;}
.yc3{bottom:805.965000px;}
.y13{bottom:806.535000px;}
.y8f{bottom:812.985000px;}
.y56{bottom:816.315000px;}
.yf5{bottom:816.765000px;}
.yc2{bottom:821.265000px;}
.y12{bottom:822.375000px;}
.y8e{bottom:828.465000px;}
.y55{bottom:831.975000px;}
.yf4{bottom:832.425000px;}
.yc1{bottom:834.585000px;}
.y8d{bottom:843.945000px;}
.y54{bottom:847.455000px;}
.yf3{bottom:847.905000px;}
.y8c{bottom:859.425000px;}
.y10{bottom:860.535000px;}
.y53{bottom:862.935000px;}
.yf2{bottom:863.385000px;}
.y11{bottom:866.475000px;}
.y8b{bottom:875.085000px;}
.y52{bottom:878.235000px;}
.yf1{bottom:878.865000px;}
.ybf{bottom:886.605000px;}
.y8a{bottom:890.565000px;}
.y51{bottom:893.940000px;}
.yf0{bottom:894.570000px;}
.yf{bottom:899.640000px;}
.y89{bottom:906.090000px;}
.y50{bottom:909.420000px;}
.yef{bottom:910.050000px;}
.y88{bottom:921.750000px;}
.ybe{bottom:922.470000px;}
.ye{bottom:923.940000px;}
.y4f{bottom:925.440000px;}
.yee{bottom:925.530000px;}
.y87{bottom:936.870000px;}
.y4e{bottom:940.920000px;}
.yed{bottom:941.190000px;}
.y86{bottom:952.530000px;}
.y4d{bottom:956.400000px;}
.yec{bottom:956.670000px;}
.ybc{bottom:958.290000px;}
.yd{bottom:966.240000px;}
.y85{bottom:968.550000px;}
.y4c{bottom:971.880000px;}
.yeb{bottom:972.150000px;}
.y84{bottom:984.030000px;}
.y4b{bottom:987.540000px;}
.yea{bottom:987.810000px;}
.yba{bottom:993.930000px;}
.y83{bottom:999.690000px;}
.yc{bottom:1000.620000px;}
.y4a{bottom:1003.020000px;}
.ye9{bottom:1003.290000px;}
.y82{bottom:1015.350000px;}
.y49{bottom:1018.500000px;}
.ye8{bottom:1018.770000px;}
.yb6{bottom:1029.750000px;}
.y81{bottom:1030.830000px;}
.y9{bottom:1034.100000px;}
.y48{bottom:1034.160000px;}
.ye7{bottom:1034.430000px;}
.yb{bottom:1039.320000px;}
.y80{bottom:1043.250000px;}
.y47{bottom:1049.640000px;}
.ye6{bottom:1049.910000px;}
.y8{bottom:1057.320000px;}
.y46{bottom:1065.300000px;}
.ye5{bottom:1065.390000px;}
.ya{bottom:1071.360000px;}
.yb1{bottom:1077.090000px;}
.y45{bottom:1080.420000px;}
.ye4{bottom:1081.050000px;}
.y7{bottom:1086.660000px;}
.y44{bottom:1096.080000px;}
.ye3{bottom:1096.530000px;}
.y6{bottom:1105.740000px;}
.y43{bottom:1112.100000px;}
.ye2{bottom:1112.190000px;}
.y5{bottom:1123.020000px;}
.y42{bottom:1127.220000px;}
.ye1{bottom:1127.670000px;}
.y4{bottom:1140.300000px;}
.y41{bottom:1142.880000px;}
.ye0{bottom:1142.970000px;}
.y7f{bottom:1143.330000px;}
.y3{bottom:1158.360000px;}
.y40{bottom:1158.570000px;}
.yb0{bottom:1158.660000px;}
.y7e{bottom:1159.020000px;}
.y39{bottom:1175.160000px;}
.y79{bottom:1175.220000px;}
.y38{bottom:1193.700000px;}
.y78{bottom:1193.760000px;}
.h1b{height:22.500000px;}
.h1a{height:22.536000px;}
.h1f{height:22.860000px;}
.h19{height:30.960000px;}
.h1c{height:31.140000px;}
.h15{height:34.920000px;}
.h14{height:35.100000px;}
.h16{height:35.136000px;}
.hc{height:35.314453px;}
.h1d{height:35.332031px;}
.hf{height:38.158594px;}
.h20{height:39.420000px;}
.ha{height:42.086250px;}
.h13{height:46.620000px;}
.h1e{height:46.656000px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.h17{height:51.300000px;}
.hb{height:52.971680px;}
.h11{height:52.998047px;}
.h21{height:53.332031px;}
.hd{height:54.421875px;}
.h22{height:55.503491px;}
.h7{height:55.796836px;}
.h8{height:58.621992px;}
.h3{height:60.226875px;}
.h12{height:62.100000px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h2{height:72.562500px;}
.h18{height:77.580000px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h0{height:1263.000000px;}
.wa{width:51.660000px;}
.w10{width:62.460000px;}
.w4{width:66.780000px;}
.w5{width:89.856000px;}
.wd{width:91.080000px;}
.w14{width:92.160000px;}
.w7{width:94.536000px;}
.w6{width:94.680000px;}
.w3{width:100.836000px;}
.w13{width:103.896000px;}
.w12{width:106.020000px;}
.wc{width:106.056000px;}
.w8{width:113.616000px;}
.we{width:124.236000px;}
.w2{width:134.640000px;}
.wb{width:197.670000px;}
.w11{width:201.675000px;}
.w15{width:567.645000px;}
.wf{width:678.570000px;}
.w9{width:697.110000px;}
.w1{width:893.999987px;}
.w0{width:894.000000px;}
.x13{left:-103.734000px;}
.x0{left:0.000000px;}
.x25{left:8.460000px;}
.x22{left:9.720000px;}
.x32{left:10.800000px;}
.x27{left:11.880000px;}
.x33{left:13.725000px;}
.x23{left:15.120000px;}
.x31{left:16.200000px;}
.x2f{left:17.325000px;}
.x1b{left:18.900000px;}
.x24{left:20.880000px;}
.x1f{left:22.185000px;}
.x2d{left:23.400000px;}
.x35{left:25.020000px;}
.x1e{left:26.505000px;}
.x2{left:29.940000px;}
.x42{left:30.960000px;}
.x3e{left:32.580000px;}
.x20{left:34.785000px;}
.x36{left:36.180000px;}
.x28{left:37.650000px;}
.x2e{left:38.700000px;}
.x2a{left:40.140000px;}
.x1c{left:44.820000px;}
.xe{left:46.635000px;}
.x12{left:47.661000px;}
.x34{left:48.954000px;}
.x8{left:50.280000px;}
.x4b{left:51.299987px;}
.x30{left:55.080000px;}
.x41{left:60.480000px;}
.x3b{left:68.940000px;}
.x40{left:70.200000px;}
.x9{left:75.030000px;}
.x48{left:83.025000px;}
.x4a{left:101.375987px;}
.x1a{left:104.616000px;}
.x39{left:113.796000px;}
.x3a{left:165.810000px;}
.x43{left:169.230000px;}
.x37{left:219.459000px;}
.x44{left:232.050000px;}
.x1d{left:239.610000px;}
.x5{left:244.050000px;}
.x3{left:270.090000px;}
.x19{left:276.734987px;}
.xb{left:280.950000px;}
.x4{left:290.610000px;}
.x14{left:296.916000px;}
.xa{left:327.240000px;}
.x21{left:340.815000px;}
.x38{left:348.549000px;}
.x11{left:355.605000px;}
.x3c{left:363.855000px;}
.x26{left:407.955000px;}
.xf{left:412.485000px;}
.x49{left:430.844987px;}
.x45{left:434.085000px;}
.x1{left:440.700000px;}
.xd{left:448.995000px;}
.x10{left:453.135000px;}
.x3d{left:470.265000px;}
.x6{left:478.845000px;}
.x29{left:498.165000px;}
.x7{left:506.340000px;}
.x16{left:530.391000px;}
.x46{left:540.465000px;}
.x17{left:560.804987px;}
.x2b{left:593.205000px;}
.x15{left:606.891000px;}
.xc{left:616.725000px;}
.x47{left:644.730000px;}
.x3f{left:668.130000px;}
.x2c{left:688.110000px;}
.x18{left:692.429987px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v6{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v7{vertical-align:-54.400000pt;}
.v4{vertical-align:-21.120000pt;}
.v5{vertical-align:-16.000000pt;}
.v9{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls19{letter-spacing:-1.264000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.233067pt;}
.ls20{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.196267pt;}
.ls11{letter-spacing:-0.112000pt;}
.lsd{letter-spacing:-0.024320pt;}
.ls1a{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.224000pt;}
.ls12{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls5{letter-spacing:2.080000pt;}
.ls1f{letter-spacing:2.656000pt;}
.ls6{letter-spacing:2.720000pt;}
.ls4{letter-spacing:14.880000pt;}
.ls1e{letter-spacing:26.976000pt;}
.ls7{letter-spacing:46.720000pt;}
.ls9{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls16{letter-spacing:610.826667pt;}
.ls17{letter-spacing:754.986667pt;}
.ls8{letter-spacing:1215.413333pt;}
.ls1d{letter-spacing:1254.186667pt;}
.ls14{letter-spacing:1307.306667pt;}
.lsa{letter-spacing:1416.800000pt;}
.ls15{letter-spacing:1416.853333pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.288000pt;}
.wsc{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.ws9{word-spacing:-11.888000pt;}
.ws11{word-spacing:-11.776000pt;}
.wsd{word-spacing:-11.680000pt;}
.wse{word-spacing:-11.040000pt;}
.wsf{word-spacing:-10.736000pt;}
.ws7{word-spacing:-8.000000pt;}
.wsa{word-spacing:0.000000pt;}
._b{margin-left:-4.268160pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.958720pt;}
._5{width:2.737280pt;}
._6{width:3.683200pt;}
._c{width:4.648107pt;}
._a{width:5.627947pt;}
._e{width:6.547627pt;}
._d{width:8.378027pt;}
._7{width:13.386667pt;}
._8{width:14.304000pt;}
._9{width:15.344000pt;}
._10{width:339.942613pt;}
._f{width:426.699947pt;}
._3{width:680.053333pt;}
._4{width:706.186667pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:2.560000pt;}
.yb9{bottom:2.880000pt;}
.ybb{bottom:3.040000pt;}
.yd0{bottom:7.040000pt;}
.yc7{bottom:16.320000pt;}
.yb2{bottom:16.480000pt;}
.ybd{bottom:16.640000pt;}
.yb8{bottom:16.800000pt;}
.yc0{bottom:16.840000pt;}
.yc9{bottom:30.080000pt;}
.yb4{bottom:30.240000pt;}
.yd8{bottom:30.280000pt;}
.yb7{bottom:30.560000pt;}
.yb5{bottom:44.000000pt;}
.y3f{bottom:51.440000pt;}
.y2{bottom:51.520000pt;}
.yc8{bottom:57.760000pt;}
.y3e{bottom:68.240000pt;}
.y1{bottom:68.320000pt;}
.y3d{bottom:85.200000pt;}
.y7d{bottom:85.280000pt;}
.y37{bottom:99.066667pt;}
.y3c{bottom:102.000000pt;}
.y7c{bottom:102.080000pt;}
.y36{bottom:112.826667pt;}
.y3b{bottom:118.800000pt;}
.y7b{bottom:118.880000pt;}
.y35{bottom:126.613333pt;}
.y3a{bottom:135.786667pt;}
.y7a{bottom:135.866667pt;}
.y34{bottom:140.373333pt;}
.y33{bottom:154.293333pt;}
.yaf{bottom:155.066667pt;}
.y77{bottom:156.106667pt;}
.ydf{bottom:163.386667pt;}
.y32{bottom:168.053333pt;}
.y76{bottom:170.026667pt;}
.yde{bottom:175.226667pt;}
.y31{bottom:181.813333pt;}
.yae{bottom:183.066667pt;}
.y75{bottom:183.786667pt;}
.y30{bottom:195.733333pt;}
.yad{bottom:196.826667pt;}
.y74{bottom:197.546667pt;}
.y2f{bottom:209.493333pt;}
.yac{bottom:210.746667pt;}
.ydd{bottom:210.906667pt;}
.y73{bottom:211.306667pt;}
.y2e{bottom:223.253333pt;}
.yab{bottom:224.506667pt;}
.y72{bottom:225.226667pt;}
.ydc{bottom:232.026667pt;}
.y2d{bottom:237.013333pt;}
.yaa{bottom:238.106667pt;}
.y71{bottom:238.986667pt;}
.ya9{bottom:252.026667pt;}
.y70{bottom:252.586667pt;}
.ydb{bottom:252.986667pt;}
.y2c{bottom:264.533333pt;}
.ya8{bottom:266.106667pt;}
.y6f{bottom:266.346667pt;}
.yda{bottom:273.946667pt;}
.ya7{bottom:280.026667pt;}
.y6e{bottom:280.266667pt;}
.y2b{bottom:292.053333pt;}
.ya6{bottom:293.786667pt;}
.y6d{bottom:294.506667pt;}
.yd9{bottom:294.906667pt;}
.ya5{bottom:307.546667pt;}
.y2a{bottom:308.213333pt;}
.y6c{bottom:308.266667pt;}
.ya4{bottom:321.146667pt;}
.y6b{bottom:322.186667pt;}
.yd7{bottom:323.226667pt;}
.y6a{bottom:333.226667pt;}
.y29{bottom:333.973333pt;}
.ya3{bottom:335.066667pt;}
.ya2{bottom:348.866667pt;}
.y28{bottom:350.333333pt;}
.y10d{bottom:352.706667pt;}
.y27{bottom:364.253333pt;}
.y10c{bottom:366.466667pt;}
.ya1{bottom:376.706667pt;}
.y10b{bottom:380.386667pt;}
.yd6{bottom:382.146667pt;}
.y26{bottom:384.093333pt;}
.ya0{bottom:390.786667pt;}
.y10a{bottom:394.146667pt;}
.y69{bottom:394.706667pt;}
.yd5{bottom:395.906667pt;}
.y25{bottom:397.853333pt;}
.y9f{bottom:404.546667pt;}
.y109{bottom:407.906667pt;}
.y68{bottom:408.466667pt;}
.yd4{bottom:409.826667pt;}
.y24{bottom:411.613333pt;}
.y9e{bottom:418.466667pt;}
.y108{bottom:421.666667pt;}
.y67{bottom:422.386667pt;}
.yd3{bottom:423.426667pt;}
.y23{bottom:425.533333pt;}
.y9d{bottom:432.066667pt;}
.y66{bottom:433.266667pt;}
.y107{bottom:435.586667pt;}
.yd2{bottom:437.186667pt;}
.y22{bottom:445.533333pt;}
.y9c{bottom:445.826667pt;}
.y106{bottom:449.346667pt;}
.yd1{bottom:451.106667pt;}
.y21{bottom:459.293333pt;}
.y9b{bottom:460.066667pt;}
.ycf{bottom:462.946667pt;}
.y105{bottom:463.106667pt;}
.y20{bottom:473.213333pt;}
.y9a{bottom:473.826667pt;}
.y104{bottom:476.866667pt;}
.y99{bottom:487.746667pt;}
.y103{bottom:490.786667pt;}
.yce{bottom:491.266667pt;}
.y1f{bottom:493.053333pt;}
.y98{bottom:501.186667pt;}
.y102{bottom:504.546667pt;}
.y1e{bottom:506.973333pt;}
.ycd{bottom:512.066667pt;}
.y97{bottom:515.106667pt;}
.y101{bottom:518.466667pt;}
.y1d{bottom:526.813333pt;}
.y96{bottom:529.346667pt;}
.y100{bottom:531.906667pt;}
.y65{bottom:531.986667pt;}
.ycc{bottom:532.706667pt;}
.y1c{bottom:540.733333pt;}
.y95{bottom:543.106667pt;}
.y64{bottom:546.066667pt;}
.ycb{bottom:553.346667pt;}
.y1b{bottom:554.493333pt;}
.y94{bottom:557.026667pt;}
.y63{bottom:559.986667pt;}
.yff{bottom:560.066667pt;}
.y1a{bottom:568.413333pt;}
.y93{bottom:570.973333pt;}
.yfe{bottom:573.533333pt;}
.y62{bottom:573.773333pt;}
.yca{bottom:574.013333pt;}
.y92{bottom:581.853333pt;}
.y61{bottom:587.533333pt;}
.y19{bottom:588.120000pt;}
.y60{bottom:601.293333pt;}
.yfd{bottom:601.533333pt;}
.yc6{bottom:602.333333pt;}
.y18{bottom:611.800000pt;}
.y5f{bottom:615.053333pt;}
.yfc{bottom:615.293333pt;}
.y17{bottom:625.560000pt;}
.y5d{bottom:628.973333pt;}
.yfb{bottom:629.213333pt;}
.y16{bottom:639.480000pt;}
.y5c{bottom:642.733333pt;}
.yfa{bottom:642.813333pt;}
.y5b{bottom:656.653333pt;}
.y15{bottom:670.200000pt;}
.y5a{bottom:670.413333pt;}
.yf9{bottom:670.813333pt;}
.y59{bottom:684.333333pt;}
.yf8{bottom:684.573333pt;}
.y14{bottom:688.120000pt;}
.yc5{bottom:688.733333pt;}
.y91{bottom:694.973333pt;}
.y58{bottom:698.093333pt;}
.yf7{bottom:698.333333pt;}
.yc4{bottom:702.653333pt;}
.y90{bottom:708.733333pt;}
.y5e{bottom:710.026667pt;}
.y57{bottom:711.853333pt;}
.yf6{bottom:712.253333pt;}
.yc3{bottom:716.413333pt;}
.y13{bottom:716.920000pt;}
.y8f{bottom:722.653333pt;}
.y56{bottom:725.613333pt;}
.yf5{bottom:726.013333pt;}
.yc2{bottom:730.013333pt;}
.y12{bottom:731.000000pt;}
.y8e{bottom:736.413333pt;}
.y55{bottom:739.533333pt;}
.yf4{bottom:739.933333pt;}
.yc1{bottom:741.853333pt;}
.y8d{bottom:750.173333pt;}
.y54{bottom:753.293333pt;}
.yf3{bottom:753.693333pt;}
.y8c{bottom:763.933333pt;}
.y10{bottom:764.920000pt;}
.y53{bottom:767.053333pt;}
.yf2{bottom:767.453333pt;}
.y11{bottom:770.200000pt;}
.y8b{bottom:777.853333pt;}
.y52{bottom:780.653333pt;}
.yf1{bottom:781.213333pt;}
.ybf{bottom:788.093333pt;}
.y8a{bottom:791.613333pt;}
.y51{bottom:794.613333pt;}
.yf0{bottom:795.173333pt;}
.yf{bottom:799.680000pt;}
.y89{bottom:805.413333pt;}
.y50{bottom:808.373333pt;}
.yef{bottom:808.933333pt;}
.y88{bottom:819.333333pt;}
.ybe{bottom:819.973333pt;}
.ye{bottom:821.280000pt;}
.y4f{bottom:822.613333pt;}
.yee{bottom:822.693333pt;}
.y87{bottom:832.773333pt;}
.y4e{bottom:836.373333pt;}
.yed{bottom:836.613333pt;}
.y86{bottom:846.693333pt;}
.y4d{bottom:850.133333pt;}
.yec{bottom:850.373333pt;}
.ybc{bottom:851.813333pt;}
.yd{bottom:858.880000pt;}
.y85{bottom:860.933333pt;}
.y4c{bottom:863.893333pt;}
.yeb{bottom:864.133333pt;}
.y84{bottom:874.693333pt;}
.y4b{bottom:877.813333pt;}
.yea{bottom:878.053333pt;}
.yba{bottom:883.493333pt;}
.y83{bottom:888.613333pt;}
.yc{bottom:889.440000pt;}
.y4a{bottom:891.573333pt;}
.ye9{bottom:891.813333pt;}
.y82{bottom:902.533333pt;}
.y49{bottom:905.333333pt;}
.ye8{bottom:905.573333pt;}
.yb6{bottom:915.333333pt;}
.y81{bottom:916.293333pt;}
.y9{bottom:919.200000pt;}
.y48{bottom:919.253333pt;}
.ye7{bottom:919.493333pt;}
.yb{bottom:923.840000pt;}
.y80{bottom:927.333333pt;}
.y47{bottom:933.013333pt;}
.ye6{bottom:933.253333pt;}
.y8{bottom:939.840000pt;}
.y46{bottom:946.933333pt;}
.ye5{bottom:947.013333pt;}
.ya{bottom:952.320000pt;}
.yb1{bottom:957.413333pt;}
.y45{bottom:960.373333pt;}
.ye4{bottom:960.933333pt;}
.y7{bottom:965.920000pt;}
.y44{bottom:974.293333pt;}
.ye3{bottom:974.693333pt;}
.y6{bottom:982.880000pt;}
.y43{bottom:988.533333pt;}
.ye2{bottom:988.613333pt;}
.y5{bottom:998.240000pt;}
.y42{bottom:1001.973333pt;}
.ye1{bottom:1002.373333pt;}
.y4{bottom:1013.600000pt;}
.y41{bottom:1015.893333pt;}
.ye0{bottom:1015.973333pt;}
.y7f{bottom:1016.293333pt;}
.y3{bottom:1029.653333pt;}
.y40{bottom:1029.840000pt;}
.yb0{bottom:1029.920000pt;}
.y7e{bottom:1030.240000pt;}
.y39{bottom:1044.586667pt;}
.y79{bottom:1044.640000pt;}
.y38{bottom:1061.066667pt;}
.y78{bottom:1061.120000pt;}
.h1b{height:20.000000pt;}
.h1a{height:20.032000pt;}
.h1f{height:20.320000pt;}
.h19{height:27.520000pt;}
.h1c{height:27.680000pt;}
.h15{height:31.040000pt;}
.h14{height:31.200000pt;}
.h16{height:31.232000pt;}
.hc{height:31.390625pt;}
.h1d{height:31.406250pt;}
.hf{height:33.918750pt;}
.h20{height:35.040000pt;}
.ha{height:37.410000pt;}
.h13{height:41.440000pt;}
.h1e{height:41.472000pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.h17{height:45.600000pt;}
.hb{height:47.085938pt;}
.h11{height:47.109375pt;}
.h21{height:47.406250pt;}
.hd{height:48.375000pt;}
.h22{height:49.336436pt;}
.h7{height:49.597187pt;}
.h8{height:52.108438pt;}
.h3{height:53.535000pt;}
.h12{height:55.200000pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h2{height:64.500000pt;}
.h18{height:68.960000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.666667pt;}
.wa{width:45.920000pt;}
.w10{width:55.520000pt;}
.w4{width:59.360000pt;}
.w5{width:79.872000pt;}
.wd{width:80.960000pt;}
.w14{width:81.920000pt;}
.w7{width:84.032000pt;}
.w6{width:84.160000pt;}
.w3{width:89.632000pt;}
.w13{width:92.352000pt;}
.w12{width:94.240000pt;}
.wc{width:94.272000pt;}
.w8{width:100.992000pt;}
.we{width:110.432000pt;}
.w2{width:119.680000pt;}
.wb{width:175.706667pt;}
.w11{width:179.266667pt;}
.w15{width:504.573333pt;}
.wf{width:603.173333pt;}
.w9{width:619.653333pt;}
.w1{width:794.666655pt;}
.w0{width:794.666667pt;}
.x13{left:-92.208000pt;}
.x0{left:0.000000pt;}
.x25{left:7.520000pt;}
.x22{left:8.640000pt;}
.x32{left:9.600000pt;}
.x27{left:10.560000pt;}
.x33{left:12.200000pt;}
.x23{left:13.440000pt;}
.x31{left:14.400000pt;}
.x2f{left:15.400000pt;}
.x1b{left:16.800000pt;}
.x24{left:18.560000pt;}
.x1f{left:19.720000pt;}
.x2d{left:20.800000pt;}
.x35{left:22.240000pt;}
.x1e{left:23.560000pt;}
.x2{left:26.613333pt;}
.x42{left:27.520000pt;}
.x3e{left:28.960000pt;}
.x20{left:30.920000pt;}
.x36{left:32.160000pt;}
.x28{left:33.466667pt;}
.x2e{left:34.400000pt;}
.x2a{left:35.680000pt;}
.x1c{left:39.840000pt;}
.xe{left:41.453333pt;}
.x12{left:42.365333pt;}
.x34{left:43.514667pt;}
.x8{left:44.693333pt;}
.x4b{left:45.599988pt;}
.x30{left:48.960000pt;}
.x41{left:53.760000pt;}
.x3b{left:61.280000pt;}
.x40{left:62.400000pt;}
.x9{left:66.693333pt;}
.x48{left:73.800000pt;}
.x4a{left:90.111988pt;}
.x1a{left:92.992000pt;}
.x39{left:101.152000pt;}
.x3a{left:147.386667pt;}
.x43{left:150.426667pt;}
.x37{left:195.074667pt;}
.x44{left:206.266667pt;}
.x1d{left:212.986667pt;}
.x5{left:216.933333pt;}
.x3{left:240.080000pt;}
.x19{left:245.986655pt;}
.xb{left:249.733333pt;}
.x4{left:258.320000pt;}
.x14{left:263.925333pt;}
.xa{left:290.880000pt;}
.x21{left:302.946667pt;}
.x38{left:309.821333pt;}
.x11{left:316.093333pt;}
.x3c{left:323.426667pt;}
.x26{left:362.626667pt;}
.xf{left:366.653333pt;}
.x49{left:382.973321pt;}
.x45{left:385.853333pt;}
.x1{left:391.733333pt;}
.xd{left:399.106667pt;}
.x10{left:402.786667pt;}
.x3d{left:418.013333pt;}
.x6{left:425.640000pt;}
.x29{left:442.813333pt;}
.x7{left:450.080000pt;}
.x16{left:471.458667pt;}
.x46{left:480.413333pt;}
.x17{left:498.493321pt;}
.x2b{left:527.293333pt;}
.x15{left:539.458667pt;}
.xc{left:548.200000pt;}
.x47{left:573.093333pt;}
.x3f{left:593.893333pt;}
.x2c{left:611.653333pt;}
.x18{left:615.493321pt;}
}




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