
    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_b4598e4c34310a357fb2bfe2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f6ffe04fa6d3151f2fc0153a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8765d3a860fb3247696a7dfd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_bb47ad445bea08812fa7c5c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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_441fd80d36f42b95fc91180c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dbaca491e973089b0b67bb48.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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:ffb;src:url('chunks/assets/font_24401a0a3b5c331d4828b5d9.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.lsc{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.413400px;}
.lsd{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.269400px;}
.lsb{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053400px;}
.ls1c{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.053400px;}
.ls11{letter-spacing:0.133920px;}
.ls15{letter-spacing:0.136200px;}
.ls0{letter-spacing:0.180000px;}
.lse{letter-spacing:0.223800px;}
.ls2{letter-spacing:0.250560px;}
.ls1d{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.360000px;}
.ls16{letter-spacing:9.306720px;}
.ls17{letter-spacing:10.026720px;}
.ls10{letter-spacing:26.586720px;}
.ls1a{letter-spacing:35.549280px;}
.ls19{letter-spacing:35.693280px;}
.ls18{letter-spacing:59.345280px;}
.ls12{letter-spacing:64.026720px;}
.ls14{letter-spacing:90.666720px;}
.ls13{letter-spacing:91.386720px;}
.ls1{letter-spacing:1407.360000px;}
.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;}
}
.ws16{word-spacing:-66.240000px;}
.ws12{word-spacing:-59.760000px;}
.ws0{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.199800px;}
.ws9{word-spacing:-14.993400px;}
.ws14{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.886720px;}
.ws5{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.283800px;}
.ws13{word-spacing:-12.196200px;}
.ws3{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.790600px;}
.wsc{word-spacing:-11.700000px;}
.ws11{word-spacing:0.000000px;}
.ws7{word-spacing:28.852560px;}
.ws8{word-spacing:29.548320px;}
.wsd{word-spacing:29.572080px;}
.wse{word-spacing:93.346920px;}
.wsf{word-spacing:93.347040px;}
.ws10{word-spacing:93.347160px;}
._2{margin-left:-7.932000px;}
._1{margin-left:-1.257120px;}
._0{width:1.314600px;}
._a{width:2.735400px;}
._b{width:4.428000px;}
._15{width:5.517599px;}
._16{width:6.573600px;}
._f{width:7.821360px;}
._c{width:9.504000px;}
._8{width:10.761120px;}
._7{width:11.988000px;}
._13{width:13.684319px;}
._6{width:15.282000px;}
._17{width:16.398720px;}
._e{width:17.796240px;}
._d{width:18.828000px;}
._25{width:20.044080px;}
._18{width:21.243000px;}
._9{width:22.245120px;}
._5{width:23.544000px;}
._14{width:24.866398px;}
._4{width:26.568000px;}
._3{width:28.116000px;}
._1b{width:29.709360px;}
._1d{width:34.003440px;}
._1c{width:36.095040px;}
._21{width:37.111080px;}
._1a{width:38.425800px;}
._10{width:39.882000px;}
._29{width:40.935720px;}
._22{width:51.274200px;}
._28{width:52.827840px;}
._2d{width:53.936400px;}
._27{width:64.242000px;}
._26{width:65.496960px;}
._12{width:74.102340px;}
._2c{width:78.188400px;}
._2b{width:79.410960px;}
._11{width:88.922940px;}
._23{width:94.659960px;}
._24{width:96.941160px;}
._2a{width:101.044080px;}
._1f{width:109.599840px;}
._1e{width:111.034080px;}
._20{width:125.974200px;}
._2f{width:226.631520px;}
._2e{width:298.026720px;}
._19{width:1389.360000px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.520000px;}
.y6b{bottom:2.520150px;}
.y9{bottom:5.940000px;}
.y88{bottom:9.360000px;}
.yc{bottom:10.620000px;}
.y67{bottom:10.979850px;}
.y4{bottom:10.980000px;}
.y7{bottom:16.380000px;}
.y6a{bottom:16.380150px;}
.y3{bottom:19.260000px;}
.yb{bottom:24.300000px;}
.y6{bottom:30.060000px;}
.y69{bottom:30.060150px;}
.ya{bottom:38.160000px;}
.y5{bottom:43.920000px;}
.y68{bottom:43.920150px;}
.y7e{bottom:80.280000px;}
.y7d{bottom:89.100000px;}
.yd8{bottom:93.780000px;}
.y9d{bottom:95.580000px;}
.yd7{bottom:107.640000px;}
.y42{bottom:108.720000px;}
.y7c{bottom:112.500000px;}
.y9c{bottom:112.860000px;}
.yd6{bottom:121.320000px;}
.y41{bottom:122.580000px;}
.y9b{bottom:130.140000px;}
.y7b{bottom:132.480000px;}
.yd5{bottom:135.216000px;}
.y40{bottom:136.476000px;}
.y9a{bottom:147.456000px;}
.yd4{bottom:149.076000px;}
.y3f{bottom:160.590000px;}
.yd3{bottom:162.750000px;}
.y99{bottom:164.730000px;}
.y3e{bottom:174.270000px;}
.y64{bottom:176.070000px;}
.yd2{bottom:176.610000px;}
.y98{bottom:182.010000px;}
.y3d{bottom:188.850000px;}
.yd1{bottom:190.290000px;}
.y97{bottom:205.230000px;}
.y3c{bottom:205.770000px;}
.yd0{bottom:213.870000px;}
.y3b{bottom:221.250000px;}
.y96{bottom:225.210000px;}
.y3a{bottom:236.910000px;}
.ycf{bottom:250.050000px;}
.y39{bottom:252.390000px;}
.y38{bottom:267.870000px;}
.yce{bottom:268.230000px;}
.y37{bottom:283.350000px;}
.ycd{bottom:286.950000px;}
.y63{bottom:296.310000px;}
.ycc{bottom:305.130000px;}
.y36{bottom:317.550000px;}
.ycb{bottom:323.310000px;}
.y35{bottom:335.550000px;}
.yca{bottom:341.310000px;}
.y7a{bottom:352.290000px;}
.y34{bottom:353.730000px;}
.yc9{bottom:359.490000px;}
.y79{bottom:369.570000px;}
.y33{bottom:371.910000px;}
.yc8{bottom:377.670000px;}
.y78{bottom:386.850000px;}
.y32{bottom:389.955000px;}
.yc7{bottom:395.715000px;}
.y31{bottom:408.135000px;}
.y77{bottom:410.115000px;}
.yc6{bottom:413.895000px;}
.y30{bottom:426.135000px;}
.y95{bottom:429.375000px;}
.y76{bottom:430.275000px;}
.yc5{bottom:431.895000px;}
.y2f{bottom:444.315000px;}
.y94{bottom:446.655000px;}
.yc4{bottom:450.075000px;}
.y62{bottom:453.135000px;}
.y93{bottom:466.635000px;}
.yc3{bottom:468.255000px;}
.y61{bottom:470.415000px;}
.y2e{bottom:470.595000px;}
.yc2{bottom:486.255000px;}
.y60{bottom:487.695000px;}
.yc1{bottom:504.435000px;}
.y5f{bottom:504.975000px;}
.y2d{bottom:506.775000px;}
.y5e{bottom:522.255000px;}
.yc0{bottom:522.435000px;}
.y2c{bottom:524.775000px;}
.y5d{bottom:539.355000px;}
.ybf{bottom:540.615000px;}
.y2b{bottom:542.955000px;}
.y5c{bottom:556.635000px;}
.ybe{bottom:558.795000px;}
.y2a{bottom:560.955000px;}
.y5b{bottom:574.815000px;}
.ybd{bottom:576.795000px;}
.y29{bottom:579.135000px;}
.y5a{bottom:592.815000px;}
.y28{bottom:597.315000px;}
.ybc{bottom:603.075000px;}
.y59{bottom:610.995000px;}
.y27{bottom:615.315000px;}
.yfb{bottom:625.575000px;}
.y58{bottom:637.275000px;}
.y26{bottom:637.455000px;}
.ybb{bottom:638.355000px;}
.yfa{bottom:640.185000px;}
.y92{bottom:654.225000px;}
.yba{bottom:655.665000px;}
.yf9{bottom:657.465000px;}
.y75{bottom:670.245000px;}
.y91{bottom:671.505000px;}
.yb9{bottom:672.945000px;}
.y57{bottom:673.305000px;}
.yf8{bottom:674.745000px;}
.y25{bottom:677.805000px;}
.y74{bottom:687.345000px;}
.y90{bottom:688.785000px;}
.yb8{bottom:690.225000px;}
.y56{bottom:691.485000px;}
.yf7{bottom:691.845000px;}
.y73{bottom:704.625000px;}
.y8f{bottom:705.885000px;}
.yb7{bottom:707.325000px;}
.yf6{bottom:709.125000px;}
.y55{bottom:709.665000px;}
.y24{bottom:713.085000px;}
.y72{bottom:721.905000px;}
.y8e{bottom:723.165000px;}
.yb6{bottom:724.605000px;}
.yf5{bottom:726.405000px;}
.y54{bottom:727.665000px;}
.y23{bottom:730.005000px;}
.y8d{bottom:737.925000px;}
.y71{bottom:739.905000px;}
.yb5{bottom:741.885000px;}
.yf4{bottom:743.685000px;}
.y53{bottom:745.845000px;}
.y22{bottom:751.605000px;}
.y8c{bottom:752.505000px;}
.y70{bottom:758.085000px;}
.yb4{bottom:759.165000px;}
.yf3{bottom:760.965000px;}
.y52{bottom:763.845000px;}
.y21{bottom:767.085000px;}
.yb3{bottom:777.165000px;}
.yf2{bottom:778.245000px;}
.y8b{bottom:781.665000px;}
.y51{bottom:782.025000px;}
.y6f{bottom:784.365000px;}
.y20{bottom:788.685000px;}
.yf1{bottom:792.105000px;}
.yb2{bottom:795.345000px;}
.y8a{bottom:796.065000px;}
.y50{bottom:800.205000px;}
.y1f{bottom:804.165000px;}
.y89{bottom:810.645000px;}
.yb1{bottom:813.525000px;}
.yf0{bottom:814.425000px;}
.y4f{bottom:818.205000px;}
.y1e{bottom:819.645000px;}
.y87{bottom:825.225000px;}
.yef{bottom:828.285000px;}
.yb0{bottom:831.525000px;}
.y1d{bottom:835.125000px;}
.y4e{bottom:836.385000px;}
.y6e{bottom:839.625000px;}
.yee{bottom:842.145000px;}
.yaf{bottom:849.705000px;}
.y1c{bottom:850.785000px;}
.y4d{bottom:854.385000px;}
.yed{bottom:855.825000px;}
.y86{bottom:862.845000px;}
.y1b{bottom:866.265000px;}
.yae{bottom:867.705000px;}
.yec{bottom:869.685000px;}
.y4c{bottom:872.565000px;}
.y85{bottom:880.125000px;}
.y1a{bottom:881.745000px;}
.yeb{bottom:883.545000px;}
.yad{bottom:885.885000px;}
.y4b{bottom:890.745000px;}
.y19{bottom:897.270000px;}
.y84{bottom:903.390000px;}
.yac{bottom:904.110000px;}
.y4a{bottom:908.790000px;}
.yea{bottom:911.130000px;}
.y18{bottom:912.930000px;}
.y83{bottom:920.670000px;}
.yab{bottom:922.110000px;}
.ye9{bottom:924.990000px;}
.y49{bottom:926.970000px;}
.y17{bottom:928.410000px;}
.y82{bottom:937.950000px;}
.ye8{bottom:938.670000px;}
.y16{bottom:943.890000px;}
.y48{bottom:945.150000px;}
.yaa{bottom:948.390000px;}
.ye7{bottom:952.530000px;}
.y81{bottom:955.050000px;}
.y15{bottom:959.370000px;}
.y47{bottom:963.150000px;}
.y14{bottom:975.030000px;}
.ye6{bottom:975.930000px;}
.y80{bottom:978.450000px;}
.y46{bottom:981.330000px;}
.ya9{bottom:983.670000px;}
.y13{bottom:990.510000px;}
.y7f{bottom:998.430000px;}
.y45{bottom:999.330000px;}
.ya8{bottom:1000.950000px;}
.y12{bottom:1005.990000px;}
.ye5{bottom:1010.490000px;}
.y6d{bottom:1014.810000px;}
.y44{bottom:1017.510000px;}
.ya7{bottom:1018.230000px;}
.y11{bottom:1021.470000px;}
.ye4{bottom:1024.350000px;}
.y6c{bottom:1034.790000px;}
.ya6{bottom:1035.510000px;}
.y43{bottom:1035.690000px;}
.y10{bottom:1037.130000px;}
.ye3{bottom:1038.210000px;}
.ye2{bottom:1051.890000px;}
.ya5{bottom:1052.610000px;}
.ye1{bottom:1065.750000px;}
.ya4{bottom:1069.890000px;}
.yf{bottom:1071.150000px;}
.ye0{bottom:1079.610000px;}
.ya3{bottom:1087.170000px;}
.ydf{bottom:1093.290000px;}
.ya2{bottom:1104.450000px;}
.yde{bottom:1107.150000px;}
.ye{bottom:1112.370000px;}
.ydd{bottom:1121.010000px;}
.ya1{bottom:1121.730000px;}
.ydc{bottom:1134.690000px;}
.ya0{bottom:1139.010000px;}
.ydb{bottom:1148.580000px;}
.yd{bottom:1153.800000px;}
.y9f{bottom:1156.140000px;}
.yda{bottom:1162.440000px;}
.y9e{bottom:1173.420000px;}
.yd9{bottom:1176.120000px;}
.y66{bottom:1214.820000px;}
.y2{bottom:1217.700000px;}
.y65{bottom:1233.720000px;}
.y1{bottom:1234.980000px;}
.h15{height:13.680000px;}
.h14{height:13.860000px;}
.h11{height:16.590234px;}
.h13{height:27.540000px;}
.hc{height:33.683203px;}
.hd{height:34.036523px;}
.h17{height:35.120039px;}
.h5{height:36.698203px;}
.hb{height:38.100586px;}
.h9{height:39.128906px;}
.h3{height:41.726953px;}
.h2{height:42.164648px;}
.hf{height:43.506914px;}
.h10{height:44.265586px;}
.h12{height:45.461953px;}
.h8{height:46.736719px;}
.h16{height:49.065469px;}
.h6{height:49.500000px;}
.h4{height:55.260000px;}
.he{height:65.884219px;}
.ha{height:83.956641px;}
.h7{height:100.546875px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:76.716000px;}
.w7{width:100.260000px;}
.w5{width:152.280000px;}
.w2{width:193.395000px;}
.w3{width:243.075000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:9.360000px;}
.x5{left:10.830000px;}
.x29{left:12.420000px;}
.x2a{left:13.860000px;}
.x30{left:21.240000px;}
.x2e{left:24.300000px;}
.x2b{left:27.405000px;}
.x28{left:28.620000px;}
.x2f{left:33.660000px;}
.x33{left:36.540000px;}
.x32{left:41.040000px;}
.x2c{left:44.100000px;}
.x25{left:45.180000px;}
.x2d{left:62.280000px;}
.x6{left:67.500000px;}
.x3{left:70.200000px;}
.x7{left:73.620000px;}
.x38{left:77.579987px;}
.xa{left:80.820000px;}
.x1f{left:82.439987px;}
.x1b{left:86.399987px;}
.x3e{left:91.475987px;}
.x3d{left:97.235987px;}
.x1a{left:99.755987px;}
.x3b{left:101.375987px;}
.x3a{left:105.695987px;}
.x39{left:109.835987px;}
.x1c{left:113.435987px;}
.x37{left:124.235987px;}
.xc{left:142.416000px;}
.x18{left:154.109987px;}
.x3c{left:161.129987px;}
.xb{left:182.730000px;}
.x16{left:185.609987px;}
.x8{left:292.035000px;}
.x1e{left:334.154987px;}
.x1d{left:342.794987px;}
.x1{left:350.895000px;}
.x9{left:386.175000px;}
.x17{left:422.714987px;}
.x19{left:425.594987px;}
.x2{left:435.495000px;}
.x15{left:446.474987px;}
.xd{left:457.455000px;}
.x4{left:461.955000px;}
.xe{left:468.105000px;}
.x12{left:472.425000px;}
.x22{left:473.684987px;}
.x24{left:474.945000px;}
.x10{left:476.565000px;}
.x3f{left:478.724987px;}
.x21{left:500.504987px;}
.x11{left:511.485000px;}
.x13{left:519.585000px;}
.x14{left:534.525000px;}
.x41{left:546.584987px;}
.xf{left:562.065000px;}
.x40{left:565.304987px;}
.x23{left:593.744987px;}
.x35{left:604.364987px;}
.x26{left:627.945000px;}
.x27{left:705.390000px;}
.x36{left:759.929987px;}
.x34{left:773.069987px;}
.x20{left:820.229987px;}
.x42{left:822.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.367467pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.239467pt;}
.lsb{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047467pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.047467pt;}
.ls11{letter-spacing:0.119040pt;}
.ls15{letter-spacing:0.121067pt;}
.ls0{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.198933pt;}
.ls2{letter-spacing:0.222720pt;}
.ls1d{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls16{letter-spacing:8.272640pt;}
.ls17{letter-spacing:8.912640pt;}
.ls10{letter-spacing:23.632640pt;}
.ls1a{letter-spacing:31.599360pt;}
.ls19{letter-spacing:31.727360pt;}
.ls18{letter-spacing:52.751360pt;}
.ls12{letter-spacing:56.912640pt;}
.ls14{letter-spacing:80.592640pt;}
.ls13{letter-spacing:81.232640pt;}
.ls1{letter-spacing:1250.986667pt;}
.ws16{word-spacing:-58.880000pt;}
.ws12{word-spacing:-53.120000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.327467pt;}
.ws14{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws2{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.918933pt;}
.ws13{word-spacing:-10.841067pt;}
.ws3{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.480533pt;}
.wsc{word-spacing:-10.400000pt;}
.ws11{word-spacing:0.000000pt;}
.ws7{word-spacing:25.646720pt;}
.ws8{word-spacing:26.265173pt;}
.wsd{word-spacing:26.286293pt;}
.wse{word-spacing:82.975040pt;}
.wsf{word-spacing:82.975147pt;}
.ws10{word-spacing:82.975253pt;}
._2{margin-left:-7.050667pt;}
._1{margin-left:-1.117440pt;}
._0{width:1.168534pt;}
._a{width:2.431466pt;}
._b{width:3.936000pt;}
._15{width:4.904532pt;}
._16{width:5.843200pt;}
._f{width:6.952320pt;}
._c{width:8.448000pt;}
._8{width:9.565440pt;}
._7{width:10.656000pt;}
._13{width:12.163839pt;}
._6{width:13.584000pt;}
._17{width:14.576640pt;}
._e{width:15.818880pt;}
._d{width:16.736000pt;}
._25{width:17.816960pt;}
._18{width:18.882666pt;}
._9{width:19.773440pt;}
._5{width:20.928000pt;}
._14{width:22.103465pt;}
._4{width:23.616000pt;}
._3{width:24.992000pt;}
._1b{width:26.408320pt;}
._1d{width:30.225280pt;}
._1c{width:32.084480pt;}
._21{width:32.987626pt;}
._1a{width:34.156266pt;}
._10{width:35.450667pt;}
._29{width:36.387306pt;}
._22{width:45.577066pt;}
._28{width:46.958080pt;}
._2d{width:47.943467pt;}
._27{width:57.104000pt;}
._26{width:58.219520pt;}
._12{width:65.868747pt;}
._2c{width:69.500800pt;}
._2b{width:70.587520pt;}
._11{width:79.042613pt;}
._23{width:84.142186pt;}
._24{width:86.169920pt;}
._2a{width:89.816960pt;}
._1f{width:97.422080pt;}
._1e{width:98.696960pt;}
._20{width:111.977066pt;}
._2f{width:201.450240pt;}
._2e{width:264.912640pt;}
._19{width:1234.986667pt;}
.fs6{font-size:21.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.240000pt;}
.y6b{bottom:2.240133pt;}
.y9{bottom:5.280000pt;}
.y88{bottom:8.320000pt;}
.yc{bottom:9.440000pt;}
.y67{bottom:9.759867pt;}
.y4{bottom:9.760000pt;}
.y7{bottom:14.560000pt;}
.y6a{bottom:14.560133pt;}
.y3{bottom:17.120000pt;}
.yb{bottom:21.600000pt;}
.y6{bottom:26.720000pt;}
.y69{bottom:26.720133pt;}
.ya{bottom:33.920000pt;}
.y5{bottom:39.040000pt;}
.y68{bottom:39.040133pt;}
.y7e{bottom:71.360000pt;}
.y7d{bottom:79.200000pt;}
.yd8{bottom:83.360000pt;}
.y9d{bottom:84.960000pt;}
.yd7{bottom:95.680000pt;}
.y42{bottom:96.640000pt;}
.y7c{bottom:100.000000pt;}
.y9c{bottom:100.320000pt;}
.yd6{bottom:107.840000pt;}
.y41{bottom:108.960000pt;}
.y9b{bottom:115.680000pt;}
.y7b{bottom:117.760000pt;}
.yd5{bottom:120.192000pt;}
.y40{bottom:121.312000pt;}
.y9a{bottom:131.072000pt;}
.yd4{bottom:132.512000pt;}
.y3f{bottom:142.746667pt;}
.yd3{bottom:144.666667pt;}
.y99{bottom:146.426667pt;}
.y3e{bottom:154.906667pt;}
.y64{bottom:156.506667pt;}
.yd2{bottom:156.986667pt;}
.y98{bottom:161.786667pt;}
.y3d{bottom:167.866667pt;}
.yd1{bottom:169.146667pt;}
.y97{bottom:182.426667pt;}
.y3c{bottom:182.906667pt;}
.yd0{bottom:190.106667pt;}
.y3b{bottom:196.666667pt;}
.y96{bottom:200.186667pt;}
.y3a{bottom:210.586667pt;}
.ycf{bottom:222.266667pt;}
.y39{bottom:224.346667pt;}
.y38{bottom:238.106667pt;}
.yce{bottom:238.426667pt;}
.y37{bottom:251.866667pt;}
.ycd{bottom:255.066667pt;}
.y63{bottom:263.386667pt;}
.ycc{bottom:271.226667pt;}
.y36{bottom:282.266667pt;}
.ycb{bottom:287.386667pt;}
.y35{bottom:298.266667pt;}
.yca{bottom:303.386667pt;}
.y7a{bottom:313.146667pt;}
.y34{bottom:314.426667pt;}
.yc9{bottom:319.546667pt;}
.y79{bottom:328.506667pt;}
.y33{bottom:330.586667pt;}
.yc8{bottom:335.706667pt;}
.y78{bottom:343.866667pt;}
.y32{bottom:346.626667pt;}
.yc7{bottom:351.746667pt;}
.y31{bottom:362.786667pt;}
.y77{bottom:364.546667pt;}
.yc6{bottom:367.906667pt;}
.y30{bottom:378.786667pt;}
.y95{bottom:381.666667pt;}
.y76{bottom:382.466667pt;}
.yc5{bottom:383.906667pt;}
.y2f{bottom:394.946667pt;}
.y94{bottom:397.026667pt;}
.yc4{bottom:400.066667pt;}
.y62{bottom:402.786667pt;}
.y93{bottom:414.786667pt;}
.yc3{bottom:416.226667pt;}
.y61{bottom:418.146667pt;}
.y2e{bottom:418.306667pt;}
.yc2{bottom:432.226667pt;}
.y60{bottom:433.506667pt;}
.yc1{bottom:448.386667pt;}
.y5f{bottom:448.866667pt;}
.y2d{bottom:450.466667pt;}
.y5e{bottom:464.226667pt;}
.yc0{bottom:464.386667pt;}
.y2c{bottom:466.466667pt;}
.y5d{bottom:479.426667pt;}
.ybf{bottom:480.546667pt;}
.y2b{bottom:482.626667pt;}
.y5c{bottom:494.786667pt;}
.ybe{bottom:496.706667pt;}
.y2a{bottom:498.626667pt;}
.y5b{bottom:510.946667pt;}
.ybd{bottom:512.706667pt;}
.y29{bottom:514.786667pt;}
.y5a{bottom:526.946667pt;}
.y28{bottom:530.946667pt;}
.ybc{bottom:536.066667pt;}
.y59{bottom:543.106667pt;}
.y27{bottom:546.946667pt;}
.yfb{bottom:556.066667pt;}
.y58{bottom:566.466667pt;}
.y26{bottom:566.626667pt;}
.ybb{bottom:567.426667pt;}
.yfa{bottom:569.053333pt;}
.y92{bottom:581.533333pt;}
.yba{bottom:582.813333pt;}
.yf9{bottom:584.413333pt;}
.y75{bottom:595.773333pt;}
.y91{bottom:596.893333pt;}
.yb9{bottom:598.173333pt;}
.y57{bottom:598.493333pt;}
.yf8{bottom:599.773333pt;}
.y25{bottom:602.493333pt;}
.y74{bottom:610.973333pt;}
.y90{bottom:612.253333pt;}
.yb8{bottom:613.533333pt;}
.y56{bottom:614.653333pt;}
.yf7{bottom:614.973333pt;}
.y73{bottom:626.333333pt;}
.y8f{bottom:627.453333pt;}
.yb7{bottom:628.733333pt;}
.yf6{bottom:630.333333pt;}
.y55{bottom:630.813333pt;}
.y24{bottom:633.853333pt;}
.y72{bottom:641.693333pt;}
.y8e{bottom:642.813333pt;}
.yb6{bottom:644.093333pt;}
.yf5{bottom:645.693333pt;}
.y54{bottom:646.813333pt;}
.y23{bottom:648.893333pt;}
.y8d{bottom:655.933333pt;}
.y71{bottom:657.693333pt;}
.yb5{bottom:659.453333pt;}
.yf4{bottom:661.053333pt;}
.y53{bottom:662.973333pt;}
.y22{bottom:668.093333pt;}
.y8c{bottom:668.893333pt;}
.y70{bottom:673.853333pt;}
.yb4{bottom:674.813333pt;}
.yf3{bottom:676.413333pt;}
.y52{bottom:678.973333pt;}
.y21{bottom:681.853333pt;}
.yb3{bottom:690.813333pt;}
.yf2{bottom:691.773333pt;}
.y8b{bottom:694.813333pt;}
.y51{bottom:695.133333pt;}
.y6f{bottom:697.213333pt;}
.y20{bottom:701.053333pt;}
.yf1{bottom:704.093333pt;}
.yb2{bottom:706.973333pt;}
.y8a{bottom:707.613333pt;}
.y50{bottom:711.293333pt;}
.y1f{bottom:714.813333pt;}
.y89{bottom:720.573333pt;}
.yb1{bottom:723.133333pt;}
.yf0{bottom:723.933333pt;}
.y4f{bottom:727.293333pt;}
.y1e{bottom:728.573333pt;}
.y87{bottom:733.533333pt;}
.yef{bottom:736.253333pt;}
.yb0{bottom:739.133333pt;}
.y1d{bottom:742.333333pt;}
.y4e{bottom:743.453333pt;}
.y6e{bottom:746.333333pt;}
.yee{bottom:748.573333pt;}
.yaf{bottom:755.293333pt;}
.y1c{bottom:756.253333pt;}
.y4d{bottom:759.453333pt;}
.yed{bottom:760.733333pt;}
.y86{bottom:766.973333pt;}
.y1b{bottom:770.013333pt;}
.yae{bottom:771.293333pt;}
.yec{bottom:773.053333pt;}
.y4c{bottom:775.613333pt;}
.y85{bottom:782.333333pt;}
.y1a{bottom:783.773333pt;}
.yeb{bottom:785.373333pt;}
.yad{bottom:787.453333pt;}
.y4b{bottom:791.773333pt;}
.y19{bottom:797.573333pt;}
.y84{bottom:803.013333pt;}
.yac{bottom:803.653333pt;}
.y4a{bottom:807.813333pt;}
.yea{bottom:809.893333pt;}
.y18{bottom:811.493333pt;}
.y83{bottom:818.373333pt;}
.yab{bottom:819.653333pt;}
.ye9{bottom:822.213333pt;}
.y49{bottom:823.973333pt;}
.y17{bottom:825.253333pt;}
.y82{bottom:833.733333pt;}
.ye8{bottom:834.373333pt;}
.y16{bottom:839.013333pt;}
.y48{bottom:840.133333pt;}
.yaa{bottom:843.013333pt;}
.ye7{bottom:846.693333pt;}
.y81{bottom:848.933333pt;}
.y15{bottom:852.773333pt;}
.y47{bottom:856.133333pt;}
.y14{bottom:866.693333pt;}
.ye6{bottom:867.493333pt;}
.y80{bottom:869.733333pt;}
.y46{bottom:872.293333pt;}
.ya9{bottom:874.373333pt;}
.y13{bottom:880.453333pt;}
.y7f{bottom:887.493333pt;}
.y45{bottom:888.293333pt;}
.ya8{bottom:889.733333pt;}
.y12{bottom:894.213333pt;}
.ye5{bottom:898.213333pt;}
.y6d{bottom:902.053333pt;}
.y44{bottom:904.453333pt;}
.ya7{bottom:905.093333pt;}
.y11{bottom:907.973333pt;}
.ye4{bottom:910.533333pt;}
.y6c{bottom:919.813333pt;}
.ya6{bottom:920.453333pt;}
.y43{bottom:920.613333pt;}
.y10{bottom:921.893333pt;}
.ye3{bottom:922.853333pt;}
.ye2{bottom:935.013333pt;}
.ya5{bottom:935.653333pt;}
.ye1{bottom:947.333333pt;}
.ya4{bottom:951.013333pt;}
.yf{bottom:952.133333pt;}
.ye0{bottom:959.653333pt;}
.ya3{bottom:966.373333pt;}
.ydf{bottom:971.813333pt;}
.ya2{bottom:981.733333pt;}
.yde{bottom:984.133333pt;}
.ye{bottom:988.773333pt;}
.ydd{bottom:996.453333pt;}
.ya1{bottom:997.093333pt;}
.ydc{bottom:1008.613333pt;}
.ya0{bottom:1012.453333pt;}
.ydb{bottom:1020.960000pt;}
.yd{bottom:1025.600000pt;}
.y9f{bottom:1027.680000pt;}
.yda{bottom:1033.280000pt;}
.y9e{bottom:1043.040000pt;}
.yd9{bottom:1045.440000pt;}
.y66{bottom:1079.840000pt;}
.y2{bottom:1082.400000pt;}
.y65{bottom:1096.640000pt;}
.y1{bottom:1097.760000pt;}
.h15{height:12.160000pt;}
.h14{height:12.320000pt;}
.h11{height:14.746875pt;}
.h13{height:24.480000pt;}
.hc{height:29.940625pt;}
.hd{height:30.254687pt;}
.h17{height:31.217812pt;}
.h5{height:32.620625pt;}
.hb{height:33.867188pt;}
.h9{height:34.781250pt;}
.h3{height:37.090625pt;}
.h2{height:37.479688pt;}
.hf{height:38.672812pt;}
.h10{height:39.347188pt;}
.h12{height:40.410625pt;}
.h8{height:41.543750pt;}
.h16{height:43.613750pt;}
.h6{height:44.000000pt;}
.h4{height:49.120000pt;}
.he{height:58.563750pt;}
.ha{height:74.628125pt;}
.h7{height:89.375000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:68.192000pt;}
.w7{width:89.120000pt;}
.w5{width:135.360000pt;}
.w2{width:171.906667pt;}
.w3{width:216.066667pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:8.320000pt;}
.x5{left:9.626667pt;}
.x29{left:11.040000pt;}
.x2a{left:12.320000pt;}
.x30{left:18.880000pt;}
.x2e{left:21.600000pt;}
.x2b{left:24.360000pt;}
.x28{left:25.440000pt;}
.x2f{left:29.920000pt;}
.x33{left:32.480000pt;}
.x32{left:36.480000pt;}
.x2c{left:39.200000pt;}
.x25{left:40.160000pt;}
.x2d{left:55.360000pt;}
.x6{left:60.000000pt;}
.x3{left:62.400000pt;}
.x7{left:65.440000pt;}
.x38{left:68.959988pt;}
.xa{left:71.840000pt;}
.x1f{left:73.279988pt;}
.x1b{left:76.799988pt;}
.x3e{left:81.311988pt;}
.x3d{left:86.431988pt;}
.x1a{left:88.671988pt;}
.x3b{left:90.111988pt;}
.x3a{left:93.951988pt;}
.x39{left:97.631988pt;}
.x1c{left:100.831988pt;}
.x37{left:110.431988pt;}
.xc{left:126.592000pt;}
.x18{left:136.986655pt;}
.x3c{left:143.226655pt;}
.xb{left:162.426667pt;}
.x16{left:164.986655pt;}
.x8{left:259.586667pt;}
.x1e{left:297.026655pt;}
.x1d{left:304.706655pt;}
.x1{left:311.906667pt;}
.x9{left:343.266667pt;}
.x17{left:375.746655pt;}
.x19{left:378.306655pt;}
.x2{left:387.106667pt;}
.x15{left:396.866655pt;}
.xd{left:406.626667pt;}
.x4{left:410.626667pt;}
.xe{left:416.093333pt;}
.x12{left:419.933333pt;}
.x22{left:421.053322pt;}
.x24{left:422.173333pt;}
.x10{left:423.613333pt;}
.x3f{left:425.533322pt;}
.x21{left:444.893322pt;}
.x11{left:454.653333pt;}
.x13{left:461.853333pt;}
.x14{left:475.133333pt;}
.x41{left:485.853322pt;}
.xf{left:499.613333pt;}
.x40{left:502.493322pt;}
.x23{left:527.773322pt;}
.x35{left:537.213322pt;}
.x26{left:558.173333pt;}
.x27{left:627.013333pt;}
.x36{left:675.493322pt;}
.x34{left:687.173322pt;}
.x20{left:729.093322pt;}
.x42{left:731.493322pt;}
}




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