
    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_584d1c61f61c41baf3811b0b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_13a40c53d9cdb891a998301f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_573a253e50949e5d812bf715.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_f6f5e42fc2e6fdb957581a90.woff')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_952f54be1c5485531ce48a1e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.lse{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.034560px;}
.ls10{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:3.060000px;}
.ls12{letter-spacing:25.308000px;}
.lsd{letter-spacing:52.668000px;}
.ls11{letter-spacing:52.812000px;}
.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;}
}
.ws6{word-spacing:-32.940000px;}
.ws4{word-spacing:-19.457280px;}
.ws3{word-spacing:-19.431360px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.608000px;}
.wsb{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.140000px;}
.ws1{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.072000px;}
.ws7{word-spacing:0.000000px;}
._8{margin-left:-3.288000px;}
._6{margin-left:-2.214000px;}
._1{margin-left:-1.080000px;}
._2{width:1.128000px;}
._d{width:2.352960px;}
._7{width:3.456000px;}
._b{width:5.292000px;}
._5{width:7.290000px;}
._4{width:8.478000px;}
._e{width:9.643680px;}
._c{width:11.574720px;}
._10{width:14.948640px;}
._f{width:16.209840px;}
._11{width:17.354640px;}
._12{width:18.900000px;}
._16{width:20.316000px;}
._a{width:22.482000px;}
._9{width:23.598000px;}
._1f{width:25.272000px;}
._1e{width:26.406000px;}
._15{width:27.558000px;}
._14{width:28.758000px;}
._19{width:32.670000px;}
._13{width:35.508000px;}
._1b{width:36.750000px;}
._1a{width:37.962000px;}
._18{width:41.958000px;}
._17{width:43.062000px;}
._1c{width:48.600000px;}
._1d{width:50.166000px;}
._3{width:183.060000px;}
._20{width:187.758000px;}
._21{width:188.892000px;}
._0{width:841.260000px;}
.fc8{color:transparent;}
.fc7{color:rgb(255,0,0);}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.fs9{font-size:131.760000px;}
.y42{bottom:-7.560000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y46{bottom:6.630000px;}
.y44{bottom:7.200000px;}
.y6a{bottom:9.720000px;}
.y7b{bottom:9.750000px;}
.y85{bottom:9.765000px;}
.y68{bottom:9.900000px;}
.y4{bottom:15.480000px;}
.y41{bottom:16.380000px;}
.y2{bottom:18.540000px;}
.y9a{bottom:27.540000px;}
.ybb{bottom:27.720000px;}
.y5{bottom:39.600000px;}
.y40{bottom:45.180000px;}
.y1{bottom:60.660000px;}
.y3f{bottom:64.980000px;}
.y3e{bottom:84.960000px;}
.y3d{bottom:104.760000px;}
.y90{bottom:105.300000px;}
.y33{bottom:110.160000px;}
.yb9{bottom:111.420000px;}
.y52{bottom:112.500000px;}
.yd1{bottom:116.100000px;}
.y3c{bottom:124.560000px;}
.y32{bottom:127.980000px;}
.yb8{bottom:129.420000px;}
.y51{bottom:130.320000px;}
.y8f{bottom:133.020000px;}
.yd0{bottom:133.920000px;}
.y65{bottom:141.480000px;}
.y3b{bottom:144.360000px;}
.y108{bottom:144.720000px;}
.y50{bottom:145.440000px;}
.y31{bottom:145.800000px;}
.ycf{bottom:151.920000px;}
.yb7{bottom:156.240000px;}
.y64{bottom:159.480000px;}
.y8e{bottom:160.560000px;}
.y107{bottom:162.540000px;}
.y30{bottom:163.620000px;}
.y3a{bottom:164.160000px;}
.yb6{bottom:169.560000px;}
.yce{bottom:169.740000px;}
.y63{bottom:177.330000px;}
.y106{bottom:180.390000px;}
.y2f{bottom:181.650000px;}
.y39{bottom:184.185000px;}
.y8d{bottom:188.130000px;}
.y62{bottom:195.150000px;}
.ycd{bottom:196.590000px;}
.yb5{bottom:197.130000px;}
.y105{bottom:198.210000px;}
.y2e{bottom:201.810000px;}
.y38{bottom:203.985000px;}
.ycc{bottom:210.630000px;}
.y61{bottom:212.970000px;}
.y8c{bottom:215.850000px;}
.y104{bottom:216.030000px;}
.y37{bottom:223.785000px;}
.yb4{bottom:224.850000px;}
.y60{bottom:230.790000px;}
.y11e{bottom:232.770000px;}
.y103{bottom:233.850000px;}
.y2d{bottom:234.210000px;}
.y8b{bottom:243.390000px;}
.y36{bottom:243.585000px;}
.y5f{bottom:248.610000px;}
.y102{bottom:251.850000px;}
.y2c{bottom:252.030000px;}
.y34{bottom:252.210000px;}
.yb3{bottom:252.390000px;}
.y11d{bottom:255.090000px;}
.y35{bottom:265.185000px;}
.y5e{bottom:266.610000px;}
.y101{bottom:269.670000px;}
.y2b{bottom:269.850000px;}
.y8a{bottom:270.930000px;}
.yb2{bottom:279.930000px;}
.y11c{bottom:282.630000px;}
.y5d{bottom:286.770000px;}
.y100{bottom:287.490000px;}
.y2a{bottom:287.850000px;}
.y89{bottom:298.650000px;}
.yff{bottom:305.310000px;}
.y29{bottom:305.670000px;}
.yb1{bottom:307.650000px;}
.y11b{bottom:310.350000px;}
.y5c{bottom:319.170000px;}
.yfe{bottom:323.130000px;}
.y28{bottom:323.490000px;}
.y88{bottom:326.190000px;}
.yb0{bottom:335.190000px;}
.y5b{bottom:336.990000px;}
.y11a{bottom:337.890000px;}
.yfd{bottom:341.130000px;}
.y27{bottom:341.310000px;}
.y87{bottom:353.730000px;}
.yfc{bottom:358.950000px;}
.y26{bottom:359.130000px;}
.yaf{bottom:362.730000px;}
.y5a{bottom:363.810000px;}
.y119{bottom:370.650000px;}
.yfb{bottom:376.770000px;}
.y25{bottom:377.130000px;}
.y86{bottom:381.450000px;}
.y59{bottom:381.810000px;}
.y118{bottom:388.650000px;}
.yae{bottom:390.450000px;}
.yfa{bottom:394.590000px;}
.y24{bottom:394.950000px;}
.y58{bottom:399.630000px;}
.y84{bottom:408.990000px;}
.y117{bottom:410.970000px;}
.yf9{bottom:412.410000px;}
.y57{bottom:417.495000px;}
.yad{bottom:418.035000px;}
.y4f{bottom:418.575000px;}
.y23{bottom:430.635000px;}
.yf8{bottom:432.795000px;}
.y56{bottom:435.315000px;}
.y4e{bottom:436.395000px;}
.y83{bottom:436.575000px;}
.y116{bottom:438.555000px;}
.yac{bottom:445.575000px;}
.y22{bottom:448.455000px;}
.y55{bottom:453.135000px;}
.y4d{bottom:454.215000px;}
.ycb{bottom:459.795000px;}
.y82{bottom:464.295000px;}
.yf7{bottom:465.195000px;}
.y115{bottom:466.095000px;}
.y21{bottom:468.255000px;}
.y54{bottom:470.955000px;}
.y4c{bottom:472.035000px;}
.yab{bottom:473.295000px;}
.yca{bottom:474.735000px;}
.yf6{bottom:483.015000px;}
.y53{bottom:488.955000px;}
.y81{bottom:491.835000px;}
.y20{bottom:492.015000px;}
.y4b{bottom:492.375000px;}
.y114{bottom:493.815000px;}
.yaa{bottom:500.835000px;}
.y1f{bottom:515.775000px;}
.yf5{bottom:518.655000px;}
.y80{bottom:519.375000px;}
.y113{bottom:526.575000px;}
.ya9{bottom:528.375000px;}
.y4a{bottom:533.775000px;}
.yf4{bottom:536.475000px;}
.y1e{bottom:538.815000px;}
.y112{bottom:544.575000px;}
.y7f{bottom:547.095000px;}
.y49{bottom:549.435000px;}
.yf3{bottom:554.475000px;}
.ya8{bottom:556.095000px;}
.y1d{bottom:565.095000px;}
.y111{bottom:571.395000px;}
.yf2{bottom:572.295000px;}
.y7e{bottom:574.635000px;}
.ya7{bottom:583.635000px;}
.y110{bottom:589.215000px;}
.yf1{bottom:590.115000px;}
.y1c{bottom:591.555000px;}
.y7d{bottom:602.355000px;}
.y10f{bottom:607.035000px;}
.yf0{bottom:607.935000px;}
.ya6{bottom:611.355000px;}
.y1b{bottom:622.335000px;}
.y10e{bottom:624.855000px;}
.y7c{bottom:629.895000px;}
.yef{bottom:634.755000px;}
.ya5{bottom:638.895000px;}
.y10d{bottom:642.675000px;}
.yee{bottom:652.755000px;}
.y7a{bottom:657.435000px;}
.y10c{bottom:660.705000px;}
.ya4{bottom:666.465000px;}
.yed{bottom:670.605000px;}
.y1a{bottom:672.585000px;}
.y10b{bottom:678.525000px;}
.y79{bottom:685.185000px;}
.yec{bottom:688.425000px;}
.ya3{bottom:694.185000px;}
.y10a{bottom:696.345000px;}
.y19{bottom:698.865000px;}
.yeb{bottom:708.585000px;}
.y78{bottom:712.725000px;}
.y109{bottom:714.165000px;}
.ya2{bottom:721.725000px;}
.y18{bottom:725.145000px;}
.yea{bottom:731.985000px;}
.y77{bottom:740.265000px;}
.ya1{bottom:749.265000px;}
.ye9{bottom:749.805000px;}
.yc9{bottom:758.985000px;}
.ye8{bottom:767.805000px;}
.y17{bottom:767.985000px;}
.ya0{bottom:776.985000px;}
.ye7{bottom:785.625000px;}
.yc8{bottom:786.705000px;}
.y76{bottom:795.525000px;}
.ye6{bottom:803.445000px;}
.y9f{bottom:804.525000px;}
.y16{bottom:809.565000px;}
.yc7{bottom:814.245000px;}
.ye5{bottom:821.265000px;}
.y75{bottom:823.065000px;}
.y9e{bottom:832.065000px;}
.y15{bottom:837.465000px;}
.ye4{bottom:839.085000px;}
.yc6{bottom:841.785000px;}
.y74{bottom:850.785000px;}
.ye3{bottom:857.085000px;}
.y9d{bottom:859.785000px;}
.yc5{bottom:869.505000px;}
.ye2{bottom:874.905000px;}
.y73{bottom:878.325000px;}
.y9c{bottom:887.325000px;}
.y14{bottom:887.865000px;}
.ye1{bottom:892.725000px;}
.yc4{bottom:897.045000px;}
.y72{bottom:905.910000px;}
.ye0{bottom:910.590000px;}
.y13{bottom:913.290000px;}
.y9b{bottom:914.910000px;}
.yc3{bottom:924.810000px;}
.ydf{bottom:928.410000px;}
.y12{bottom:933.090000px;}
.y71{bottom:933.630000px;}
.y99{bottom:942.630000px;}
.yde{bottom:946.230000px;}
.yc2{bottom:952.350000px;}
.y11{bottom:952.890000px;}
.y70{bottom:961.170000px;}
.ydd{bottom:964.230000px;}
.y10{bottom:972.690000px;}
.yc1{bottom:979.890000px;}
.ydc{bottom:982.050000px;}
.y98{bottom:987.990000px;}
.y6f{bottom:988.710000px;}
.yf{bottom:992.670000px;}
.ydb{bottom:999.870000px;}
.yc0{bottom:1007.610000px;}
.ye{bottom:1013.730000px;}
.y97{bottom:1015.710000px;}
.y6e{bottom:1016.430000px;}
.yda{bottom:1017.690000px;}
.yd{bottom:1032.810000px;}
.ybf{bottom:1035.150000px;}
.yd9{bottom:1035.510000px;}
.y96{bottom:1043.250000px;}
.y6d{bottom:1043.970000px;}
.yc{bottom:1044.870000px;}
.yd8{bottom:1053.510000px;}
.yb{bottom:1056.930000px;}
.ybe{bottom:1062.690000px;}
.ya{bottom:1068.990000px;}
.y95{bottom:1070.790000px;}
.yd7{bottom:1071.330000px;}
.y6c{bottom:1071.510000px;}
.y9{bottom:1083.570000px;}
.yd6{bottom:1089.150000px;}
.ybd{bottom:1090.410000px;}
.y94{bottom:1098.510000px;}
.y6b{bottom:1099.230000px;}
.yd5{bottom:1106.970000px;}
.y8{bottom:1109.130000px;}
.ybc{bottom:1117.950000px;}
.yd4{bottom:1124.790000px;}
.y93{bottom:1126.050000px;}
.y69{bottom:1126.770000px;}
.y7{bottom:1134.690000px;}
.y45{bottom:1136.160000px;}
.yd3{bottom:1142.640000px;}
.yba{bottom:1145.520000px;}
.y92{bottom:1153.620000px;}
.y67{bottom:1154.340000px;}
.yd2{bottom:1160.640000px;}
.y43{bottom:1173.600000px;}
.y6{bottom:1174.680000px;}
.y48{bottom:1178.460000px;}
.y91{bottom:1181.340000px;}
.y66{bottom:1187.280000px;}
.y47{bottom:1196.280000px;}
.h1e{height:25.136719px;}
.h1a{height:26.820000px;}
.h19{height:26.856000px;}
.h18{height:27.000000px;}
.h9{height:29.158594px;}
.h16{height:29.160000px;}
.h14{height:29.700000px;}
.h2{height:31.140000px;}
.h3{height:37.705078px;}
.h4{height:38.100586px;}
.h1f{height:39.313477px;}
.hb{height:41.726953px;}
.hc{height:42.164648px;}
.h1b{height:44.507812px;}
.h1c{height:44.640000px;}
.h1d{height:44.820000px;}
.h10{height:46.251562px;}
.hf{height:46.736719px;}
.h20{height:47.671875px;}
.h13{height:49.255313px;}
.ha{height:50.800781px;}
.he{height:53.224453px;}
.h11{height:54.864844px;}
.hd{height:58.819922px;}
.h7{height:59.436914px;}
.h8{height:63.500977px;}
.h5{height:65.884219px;}
.h6{height:75.410156px;}
.h17{height:77.342344px;}
.h15{height:92.965430px;}
.h12{height:283.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:36.720000px;}
.w12{width:44.100000px;}
.w13{width:48.420000px;}
.w15{width:53.280000px;}
.wf{width:59.796000px;}
.we{width:63.720000px;}
.w18{width:66.816000px;}
.w17{width:70.560000px;}
.w3{width:78.480000px;}
.w14{width:94.176000px;}
.w16{width:109.836000px;}
.w19{width:114.120000px;}
.wd{width:114.516000px;}
.w10{width:115.740000px;}
.wa{width:119.700000px;}
.w11{width:120.456000px;}
.w7{width:182.700000px;}
.wb{width:186.690000px;}
.w9{width:430.665000px;}
.w2{width:706.650000px;}
.w6{width:755.460000px;}
.wc{width:776.130000px;}
.w5{width:813.750000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x17{left:-1.185000px;}
.x0{left:0.000000px;}
.x34{left:4.500000px;}
.x1f{left:7.560000px;}
.x2{left:8.640000px;}
.x14{left:10.800000px;}
.x24{left:18.540000px;}
.x22{left:20.520000px;}
.x29{left:23.040000px;}
.x28{left:25.020000px;}
.x20{left:26.280000px;}
.x27{left:28.440000px;}
.x31{left:36.720000px;}
.x13{left:39.240000px;}
.x26{left:46.620000px;}
.x2a{left:51.120000px;}
.x1{left:54.000000px;}
.x30{left:55.080000px;}
.x1a{left:58.500000px;}
.x15{left:67.860000px;}
.x2e{left:80.999987px;}
.xe{left:86.039987px;}
.x1b{left:95.940000px;}
.xb{left:106.415987px;}
.x2f{left:108.035987px;}
.x1c{left:141.690000px;}
.xf{left:155.909987px;}
.x35{left:165.630000px;}
.x21{left:174.090000px;}
.x32{left:176.250000px;}
.x33{left:221.070000px;}
.x36{left:236.910000px;}
.x23{left:238.530000px;}
.xd{left:255.629987px;}
.x3{left:263.775000px;}
.x10{left:271.289987px;}
.x8{left:290.009987px;}
.x25{left:299.055000px;}
.x9{left:300.314987px;}
.x37{left:304.455000px;}
.x7{left:307.874987px;}
.x11{left:314.354987px;}
.x16{left:354.420000px;}
.x6{left:365.294987px;}
.xa{left:378.794987px;}
.xc{left:394.634987px;}
.x2c{left:413.534987px;}
.x2b{left:415.514987px;}
.x19{left:425.234987px;}
.x5{left:446.474987px;}
.x12{left:473.474987px;}
.x2d{left:500.504987px;}
.x1d{left:527.325000px;}
.x1e{left:647.925000px;}
.x4{left:760.650000px;}
.x18{left:812.489987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.030720pt;}
.ls10{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:2.720000pt;}
.ls12{letter-spacing:22.496000pt;}
.lsd{letter-spacing:46.816000pt;}
.ls11{letter-spacing:46.944000pt;}
.ws6{word-spacing:-29.280000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws3{word-spacing:-17.272320pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.096000pt;}
.wsb{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws1{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.064000pt;}
.ws7{word-spacing:0.000000pt;}
._8{margin-left:-2.922667pt;}
._6{margin-left:-1.968000pt;}
._1{margin-left:-0.960000pt;}
._2{width:1.002667pt;}
._d{width:2.091520pt;}
._7{width:3.072000pt;}
._b{width:4.704000pt;}
._5{width:6.480000pt;}
._4{width:7.536000pt;}
._e{width:8.572160pt;}
._c{width:10.288640pt;}
._10{width:13.287680pt;}
._f{width:14.408747pt;}
._11{width:15.426347pt;}
._12{width:16.800000pt;}
._16{width:18.058667pt;}
._a{width:19.984000pt;}
._9{width:20.976000pt;}
._1f{width:22.464000pt;}
._1e{width:23.472000pt;}
._15{width:24.496000pt;}
._14{width:25.562667pt;}
._19{width:29.040000pt;}
._13{width:31.562667pt;}
._1b{width:32.666667pt;}
._1a{width:33.744000pt;}
._18{width:37.296000pt;}
._17{width:38.277333pt;}
._1c{width:43.200000pt;}
._1d{width:44.592000pt;}
._3{width:162.720000pt;}
._20{width:166.896000pt;}
._21{width:167.904000pt;}
._0{width:747.786667pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.fs9{font-size:117.120000pt;}
.y42{bottom:-6.720000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y46{bottom:5.893333pt;}
.y44{bottom:6.400000pt;}
.y6a{bottom:8.640000pt;}
.y7b{bottom:8.666667pt;}
.y85{bottom:8.680000pt;}
.y68{bottom:8.800000pt;}
.y4{bottom:13.760000pt;}
.y41{bottom:14.560000pt;}
.y2{bottom:16.480000pt;}
.y9a{bottom:24.480000pt;}
.ybb{bottom:24.640000pt;}
.y5{bottom:35.200000pt;}
.y40{bottom:40.160000pt;}
.y1{bottom:53.920000pt;}
.y3f{bottom:57.760000pt;}
.y3e{bottom:75.520000pt;}
.y3d{bottom:93.120000pt;}
.y90{bottom:93.600000pt;}
.y33{bottom:97.920000pt;}
.yb9{bottom:99.040000pt;}
.y52{bottom:100.000000pt;}
.yd1{bottom:103.200000pt;}
.y3c{bottom:110.720000pt;}
.y32{bottom:113.760000pt;}
.yb8{bottom:115.040000pt;}
.y51{bottom:115.840000pt;}
.y8f{bottom:118.240000pt;}
.yd0{bottom:119.040000pt;}
.y65{bottom:125.760000pt;}
.y3b{bottom:128.320000pt;}
.y108{bottom:128.640000pt;}
.y50{bottom:129.280000pt;}
.y31{bottom:129.600000pt;}
.ycf{bottom:135.040000pt;}
.yb7{bottom:138.880000pt;}
.y64{bottom:141.760000pt;}
.y8e{bottom:142.720000pt;}
.y107{bottom:144.480000pt;}
.y30{bottom:145.440000pt;}
.y3a{bottom:145.920000pt;}
.yb6{bottom:150.720000pt;}
.yce{bottom:150.880000pt;}
.y63{bottom:157.626667pt;}
.y106{bottom:160.346667pt;}
.y2f{bottom:161.466667pt;}
.y39{bottom:163.720000pt;}
.y8d{bottom:167.226667pt;}
.y62{bottom:173.466667pt;}
.ycd{bottom:174.746667pt;}
.yb5{bottom:175.226667pt;}
.y105{bottom:176.186667pt;}
.y2e{bottom:179.386667pt;}
.y38{bottom:181.320000pt;}
.ycc{bottom:187.226667pt;}
.y61{bottom:189.306667pt;}
.y8c{bottom:191.866667pt;}
.y104{bottom:192.026667pt;}
.y37{bottom:198.920000pt;}
.yb4{bottom:199.866667pt;}
.y60{bottom:205.146667pt;}
.y11e{bottom:206.906667pt;}
.y103{bottom:207.866667pt;}
.y2d{bottom:208.186667pt;}
.y8b{bottom:216.346667pt;}
.y36{bottom:216.520000pt;}
.y5f{bottom:220.986667pt;}
.y102{bottom:223.866667pt;}
.y2c{bottom:224.026667pt;}
.y34{bottom:224.186667pt;}
.yb3{bottom:224.346667pt;}
.y11d{bottom:226.746667pt;}
.y35{bottom:235.720000pt;}
.y5e{bottom:236.986667pt;}
.y101{bottom:239.706667pt;}
.y2b{bottom:239.866667pt;}
.y8a{bottom:240.826667pt;}
.yb2{bottom:248.826667pt;}
.y11c{bottom:251.226667pt;}
.y5d{bottom:254.906667pt;}
.y100{bottom:255.546667pt;}
.y2a{bottom:255.866667pt;}
.y89{bottom:265.466667pt;}
.yff{bottom:271.386667pt;}
.y29{bottom:271.706667pt;}
.yb1{bottom:273.466667pt;}
.y11b{bottom:275.866667pt;}
.y5c{bottom:283.706667pt;}
.yfe{bottom:287.226667pt;}
.y28{bottom:287.546667pt;}
.y88{bottom:289.946667pt;}
.yb0{bottom:297.946667pt;}
.y5b{bottom:299.546667pt;}
.y11a{bottom:300.346667pt;}
.yfd{bottom:303.226667pt;}
.y27{bottom:303.386667pt;}
.y87{bottom:314.426667pt;}
.yfc{bottom:319.066667pt;}
.y26{bottom:319.226667pt;}
.yaf{bottom:322.426667pt;}
.y5a{bottom:323.386667pt;}
.y119{bottom:329.466667pt;}
.yfb{bottom:334.906667pt;}
.y25{bottom:335.226667pt;}
.y86{bottom:339.066667pt;}
.y59{bottom:339.386667pt;}
.y118{bottom:345.466667pt;}
.yae{bottom:347.066667pt;}
.yfa{bottom:350.746667pt;}
.y24{bottom:351.066667pt;}
.y58{bottom:355.226667pt;}
.y84{bottom:363.546667pt;}
.y117{bottom:365.306667pt;}
.yf9{bottom:366.586667pt;}
.y57{bottom:371.106667pt;}
.yad{bottom:371.586667pt;}
.y4f{bottom:372.066667pt;}
.y23{bottom:382.786667pt;}
.yf8{bottom:384.706667pt;}
.y56{bottom:386.946667pt;}
.y4e{bottom:387.906667pt;}
.y83{bottom:388.066667pt;}
.y116{bottom:389.826667pt;}
.yac{bottom:396.066667pt;}
.y22{bottom:398.626667pt;}
.y55{bottom:402.786667pt;}
.y4d{bottom:403.746667pt;}
.ycb{bottom:408.706667pt;}
.y82{bottom:412.706667pt;}
.yf7{bottom:413.506667pt;}
.y115{bottom:414.306667pt;}
.y21{bottom:416.226667pt;}
.y54{bottom:418.626667pt;}
.y4c{bottom:419.586667pt;}
.yab{bottom:420.706667pt;}
.yca{bottom:421.986667pt;}
.yf6{bottom:429.346667pt;}
.y53{bottom:434.626667pt;}
.y81{bottom:437.186667pt;}
.y20{bottom:437.346667pt;}
.y4b{bottom:437.666667pt;}
.y114{bottom:438.946667pt;}
.yaa{bottom:445.186667pt;}
.y1f{bottom:458.466667pt;}
.yf5{bottom:461.026667pt;}
.y80{bottom:461.666667pt;}
.y113{bottom:468.066667pt;}
.ya9{bottom:469.666667pt;}
.y4a{bottom:474.466667pt;}
.yf4{bottom:476.866667pt;}
.y1e{bottom:478.946667pt;}
.y112{bottom:484.066667pt;}
.y7f{bottom:486.306667pt;}
.y49{bottom:488.386667pt;}
.yf3{bottom:492.866667pt;}
.ya8{bottom:494.306667pt;}
.y1d{bottom:502.306667pt;}
.y111{bottom:507.906667pt;}
.yf2{bottom:508.706667pt;}
.y7e{bottom:510.786667pt;}
.ya7{bottom:518.786667pt;}
.y110{bottom:523.746667pt;}
.yf1{bottom:524.546667pt;}
.y1c{bottom:525.826667pt;}
.y7d{bottom:535.426667pt;}
.y10f{bottom:539.586667pt;}
.yf0{bottom:540.386667pt;}
.ya6{bottom:543.426667pt;}
.y1b{bottom:553.186667pt;}
.y10e{bottom:555.426667pt;}
.y7c{bottom:559.906667pt;}
.yef{bottom:564.226667pt;}
.ya5{bottom:567.906667pt;}
.y10d{bottom:571.266667pt;}
.yee{bottom:580.226667pt;}
.y7a{bottom:584.386667pt;}
.y10c{bottom:587.293333pt;}
.ya4{bottom:592.413333pt;}
.yed{bottom:596.093333pt;}
.y1a{bottom:597.853333pt;}
.y10b{bottom:603.133333pt;}
.y79{bottom:609.053333pt;}
.yec{bottom:611.933333pt;}
.ya3{bottom:617.053333pt;}
.y10a{bottom:618.973333pt;}
.y19{bottom:621.213333pt;}
.yeb{bottom:629.853333pt;}
.y78{bottom:633.533333pt;}
.y109{bottom:634.813333pt;}
.ya2{bottom:641.533333pt;}
.y18{bottom:644.573333pt;}
.yea{bottom:650.653333pt;}
.y77{bottom:658.013333pt;}
.ya1{bottom:666.013333pt;}
.ye9{bottom:666.493333pt;}
.yc9{bottom:674.653333pt;}
.ye8{bottom:682.493333pt;}
.y17{bottom:682.653333pt;}
.ya0{bottom:690.653333pt;}
.ye7{bottom:698.333333pt;}
.yc8{bottom:699.293333pt;}
.y76{bottom:707.133333pt;}
.ye6{bottom:714.173333pt;}
.y9f{bottom:715.133333pt;}
.y16{bottom:719.613333pt;}
.yc7{bottom:723.773333pt;}
.ye5{bottom:730.013333pt;}
.y75{bottom:731.613333pt;}
.y9e{bottom:739.613333pt;}
.y15{bottom:744.413333pt;}
.ye4{bottom:745.853333pt;}
.yc6{bottom:748.253333pt;}
.y74{bottom:756.253333pt;}
.ye3{bottom:761.853333pt;}
.y9d{bottom:764.253333pt;}
.yc5{bottom:772.893333pt;}
.ye2{bottom:777.693333pt;}
.y73{bottom:780.733333pt;}
.y9c{bottom:788.733333pt;}
.y14{bottom:789.213333pt;}
.ye1{bottom:793.533333pt;}
.yc4{bottom:797.373333pt;}
.y72{bottom:805.253333pt;}
.ye0{bottom:809.413333pt;}
.y13{bottom:811.813333pt;}
.y9b{bottom:813.253333pt;}
.yc3{bottom:822.053333pt;}
.ydf{bottom:825.253333pt;}
.y12{bottom:829.413333pt;}
.y71{bottom:829.893333pt;}
.y99{bottom:837.893333pt;}
.yde{bottom:841.093333pt;}
.yc2{bottom:846.533333pt;}
.y11{bottom:847.013333pt;}
.y70{bottom:854.373333pt;}
.ydd{bottom:857.093333pt;}
.y10{bottom:864.613333pt;}
.yc1{bottom:871.013333pt;}
.ydc{bottom:872.933333pt;}
.y98{bottom:878.213333pt;}
.y6f{bottom:878.853333pt;}
.yf{bottom:882.373333pt;}
.ydb{bottom:888.773333pt;}
.yc0{bottom:895.653333pt;}
.ye{bottom:901.093333pt;}
.y97{bottom:902.853333pt;}
.y6e{bottom:903.493333pt;}
.yda{bottom:904.613333pt;}
.yd{bottom:918.053333pt;}
.ybf{bottom:920.133333pt;}
.yd9{bottom:920.453333pt;}
.y96{bottom:927.333333pt;}
.y6d{bottom:927.973333pt;}
.yc{bottom:928.773333pt;}
.yd8{bottom:936.453333pt;}
.yb{bottom:939.493333pt;}
.ybe{bottom:944.613333pt;}
.ya{bottom:950.213333pt;}
.y95{bottom:951.813333pt;}
.yd7{bottom:952.293333pt;}
.y6c{bottom:952.453333pt;}
.y9{bottom:963.173333pt;}
.yd6{bottom:968.133333pt;}
.ybd{bottom:969.253333pt;}
.y94{bottom:976.453333pt;}
.y6b{bottom:977.093333pt;}
.yd5{bottom:983.973333pt;}
.y8{bottom:985.893333pt;}
.ybc{bottom:993.733333pt;}
.yd4{bottom:999.813333pt;}
.y93{bottom:1000.933333pt;}
.y69{bottom:1001.573333pt;}
.y7{bottom:1008.613333pt;}
.y45{bottom:1009.920000pt;}
.yd3{bottom:1015.680000pt;}
.yba{bottom:1018.240000pt;}
.y92{bottom:1025.440000pt;}
.y67{bottom:1026.080000pt;}
.yd2{bottom:1031.680000pt;}
.y43{bottom:1043.200000pt;}
.y6{bottom:1044.160000pt;}
.y48{bottom:1047.520000pt;}
.y91{bottom:1050.080000pt;}
.y66{bottom:1055.360000pt;}
.y47{bottom:1063.360000pt;}
.h1e{height:22.343750pt;}
.h1a{height:23.840000pt;}
.h19{height:23.872000pt;}
.h18{height:24.000000pt;}
.h9{height:25.918750pt;}
.h16{height:25.920000pt;}
.h14{height:26.400000pt;}
.h2{height:27.680000pt;}
.h3{height:33.515625pt;}
.h4{height:33.867188pt;}
.h1f{height:34.945312pt;}
.hb{height:37.090625pt;}
.hc{height:37.479688pt;}
.h1b{height:39.562500pt;}
.h1c{height:39.680000pt;}
.h1d{height:39.840000pt;}
.h10{height:41.112500pt;}
.hf{height:41.543750pt;}
.h20{height:42.375000pt;}
.h13{height:43.782500pt;}
.ha{height:45.156250pt;}
.he{height:47.310625pt;}
.h11{height:48.768750pt;}
.hd{height:52.284375pt;}
.h7{height:52.832812pt;}
.h8{height:56.445312pt;}
.h5{height:58.563750pt;}
.h6{height:67.031250pt;}
.h17{height:68.748750pt;}
.h15{height:82.635937pt;}
.h12{height:251.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:32.640000pt;}
.w12{width:39.200000pt;}
.w13{width:43.040000pt;}
.w15{width:47.360000pt;}
.wf{width:53.152000pt;}
.we{width:56.640000pt;}
.w18{width:59.392000pt;}
.w17{width:62.720000pt;}
.w3{width:69.760000pt;}
.w14{width:83.712000pt;}
.w16{width:97.632000pt;}
.w19{width:101.440000pt;}
.wd{width:101.792000pt;}
.w10{width:102.880000pt;}
.wa{width:106.400000pt;}
.w11{width:107.072000pt;}
.w7{width:162.400000pt;}
.wb{width:165.946667pt;}
.w9{width:382.813333pt;}
.w2{width:628.133333pt;}
.w6{width:671.520000pt;}
.wc{width:689.893333pt;}
.w5{width:723.333333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x17{left:-1.053333pt;}
.x0{left:0.000000pt;}
.x34{left:4.000000pt;}
.x1f{left:6.720000pt;}
.x2{left:7.680000pt;}
.x14{left:9.600000pt;}
.x24{left:16.480000pt;}
.x22{left:18.240000pt;}
.x29{left:20.480000pt;}
.x28{left:22.240000pt;}
.x20{left:23.360000pt;}
.x27{left:25.280000pt;}
.x31{left:32.640000pt;}
.x13{left:34.880000pt;}
.x26{left:41.440000pt;}
.x2a{left:45.440000pt;}
.x1{left:48.000000pt;}
.x30{left:48.960000pt;}
.x1a{left:52.000000pt;}
.x15{left:60.320000pt;}
.x2e{left:71.999988pt;}
.xe{left:76.479988pt;}
.x1b{left:85.280000pt;}
.xb{left:94.591988pt;}
.x2f{left:96.031988pt;}
.x1c{left:125.946667pt;}
.xf{left:138.586655pt;}
.x35{left:147.226667pt;}
.x21{left:154.746667pt;}
.x32{left:156.666667pt;}
.x33{left:196.506667pt;}
.x36{left:210.586667pt;}
.x23{left:212.026667pt;}
.xd{left:227.226655pt;}
.x3{left:234.466667pt;}
.x10{left:241.146655pt;}
.x8{left:257.786655pt;}
.x25{left:265.826667pt;}
.x9{left:266.946655pt;}
.x37{left:270.626667pt;}
.x7{left:273.666655pt;}
.x11{left:279.426655pt;}
.x16{left:315.040000pt;}
.x6{left:324.706655pt;}
.xa{left:336.706655pt;}
.xc{left:350.786655pt;}
.x2c{left:367.586655pt;}
.x2b{left:369.346655pt;}
.x19{left:377.986655pt;}
.x5{left:396.866655pt;}
.x12{left:420.866655pt;}
.x2d{left:444.893322pt;}
.x1d{left:468.733333pt;}
.x1e{left:575.933333pt;}
.x4{left:676.133333pt;}
.x18{left:722.213322pt;}
}




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