
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_e183cfcacb3c21432b865c88.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_19c3eccd7d3c6ad71d89f80a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3197f93061f9f3bce952064b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_2b96a7d716ad4f0b62f47400.woff')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_7b89ec34d346e61bf45659dc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1c952445034a4091296ca57a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_130301694ab792f9947e2b7d.woff')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_ba9e03d1f6597eeed8a74526.woff')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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_46e287ab714b7ee824f5ef75.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_868112290bde75c7a7ff9b03.woff')format("woff");}.ffc{font-family:ffc;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);}
.m3{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285725,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;}
.lsb{letter-spacing:-1.548000px;}
.lsc{letter-spacing:-1.386000px;}
.lsf{letter-spacing:-0.666000px;}
.ls4{letter-spacing:-0.226200px;}
.ls6{letter-spacing:-0.108000px;}
.ls3{letter-spacing:-0.089400px;}
.ls5{letter-spacing:-0.072000px;}
.ls2{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.169200px;}
.ls7{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.836640px;}
.ls8{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.776640px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.274000px;}
.ws8{word-spacing:-13.554000px;}
.ws6{word-spacing:-13.392000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws5{word-spacing:-8.928000px;}
.ws7{word-spacing:0.000000px;}
._17{margin-left:-8.885760px;}
._16{margin-left:-7.498080px;}
._18{margin-left:-6.284160px;}
._14{margin-left:-3.250800px;}
._15{margin-left:-2.211120px;}
._0{margin-left:-1.093680px;}
._1{width:1.366800px;}
._6{width:2.947200px;}
._8{width:4.266000px;}
._a{width:5.400000px;}
._b{width:6.415200px;}
._5{width:7.722000px;}
._3{width:9.072000px;}
._4{width:10.152000px;}
._9{width:11.353680px;}
._7{width:12.361680px;}
._e{width:13.727520px;}
._2{width:14.796000px;}
._c{width:17.031600px;}
._13{width:18.107280px;}
._11{width:22.947840px;}
._12{width:24.090960px;}
._10{width:36.752400px;}
._f{width:38.246400px;}
._d{width:186.264000px;}
.fc5{color:transparent;}
.fc4{color:rgb(77,94,38);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc6{color:rgb(51,51,51);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:2.340000px;}
.y5{bottom:3.780000px;}
.y58{bottom:5.010000px;}
.yb9{bottom:5.754000px;}
.y3f{bottom:5.760000px;}
.yb1{bottom:5.940000px;}
.y2{bottom:9.930000px;}
.y4a{bottom:10.260000px;}
.yb7{bottom:15.654000px;}
.yad{bottom:15.660000px;}
.yb2{bottom:15.840000px;}
.y4{bottom:22.710000px;}
.ya9{bottom:25.560000px;}
.yc3{bottom:25.605000px;}
.yb8{bottom:25.734000px;}
.yac{bottom:25.740000px;}
.y3e{bottom:25.785000px;}
.ya7{bottom:26.100000px;}
.y56{bottom:31.140000px;}
.yc6{bottom:35.460000px;}
.y49{bottom:39.960000px;}
.yc5{bottom:45.360000px;}
.y3d{bottom:45.585000px;}
.ya6{bottom:45.900000px;}
.y3{bottom:47.910000px;}
.y55{bottom:48.420000px;}
.y48{bottom:51.120000px;}
.y7{bottom:57.060000px;}
.y47{bottom:62.454000px;}
.y3c{bottom:65.385000px;}
.y54{bottom:67.494000px;}
.y46{bottom:74.154000px;}
.y53{bottom:83.334000px;}
.y3b{bottom:85.185000px;}
.y45{bottom:87.114000px;}
.ybb{bottom:87.156000px;}
.y40{bottom:94.176000px;}
.y52{bottom:98.094000px;}
.y44{bottom:100.254000px;}
.y8b{bottom:100.296000px;}
.ydd{bottom:101.196000px;}
.y3a{bottom:104.985000px;}
.y51{bottom:106.014000px;}
.yba{bottom:107.856000px;}
.y8a{bottom:120.096000px;}
.ydc{bottom:120.996000px;}
.y50{bottom:121.494000px;}
.y43{bottom:122.214000px;}
.y39{bottom:124.965000px;}
.y4f{bottom:137.154000px;}
.y89{bottom:139.896000px;}
.ydb{bottom:140.796000px;}
.y38{bottom:144.765000px;}
.yb6{bottom:148.176000px;}
.y4e{bottom:152.634000px;}
.y88{bottom:159.870000px;}
.yda{bottom:160.770000px;}
.y37{bottom:164.565000px;}
.y4d{bottom:168.114000px;}
.y87{bottom:179.670000px;}
.yd9{bottom:180.570000px;}
.y4c{bottom:183.594000px;}
.y42{bottom:184.134000px;}
.y36{bottom:184.365000px;}
.yb5{bottom:188.670000px;}
.y41{bottom:194.754000px;}
.y108{bottom:196.950000px;}
.y86{bottom:199.470000px;}
.yd8{bottom:200.370000px;}
.y35{bottom:204.165000px;}
.y107{bottom:216.930000px;}
.y85{bottom:219.270000px;}
.yd7{bottom:220.170000px;}
.y34{bottom:224.145000px;}
.yb4{bottom:228.990000px;}
.y106{bottom:236.730000px;}
.y84{bottom:239.070000px;}
.yd6{bottom:239.970000px;}
.y33{bottom:243.945000px;}
.y105{bottom:256.530000px;}
.y83{bottom:259.050000px;}
.yd5{bottom:259.950000px;}
.y32{bottom:263.745000px;}
.yb3{bottom:269.490000px;}
.y104{bottom:276.330000px;}
.y82{bottom:278.850000px;}
.yd4{bottom:279.750000px;}
.y31{bottom:283.035000px;}
.yd3{bottom:294.510000px;}
.y103{bottom:296.130000px;}
.y81{bottom:298.650000px;}
.y30{bottom:300.855000px;}
.yb0{bottom:309.810000px;}
.y102{bottom:316.110000px;}
.y80{bottom:318.450000px;}
.y2f{bottom:318.855000px;}
.ye{bottom:318.990000px;}
.y1c{bottom:329.115000px;}
.yd2{bottom:335.055000px;}
.y101{bottom:335.955000px;}
.y2e{bottom:336.675000px;}
.y7f{bottom:338.295000px;}
.yaf{bottom:350.355000px;}
.y1b{bottom:353.235000px;}
.y2d{bottom:354.495000px;}
.y100{bottom:355.755000px;}
.y7e{bottom:358.275000px;}
.y2c{bottom:372.315000px;}
.yd1{bottom:375.375000px;}
.yff{bottom:375.555000px;}
.y1a{bottom:377.355000px;}
.y7d{bottom:378.075000px;}
.y2b{bottom:390.135000px;}
.yae{bottom:390.855000px;}
.yfe{bottom:395.355000px;}
.yd0{bottom:395.895000px;}
.y7c{bottom:397.875000px;}
.y19{bottom:401.475000px;}
.y2a{bottom:407.955000px;}
.yfd{bottom:415.335000px;}
.y7b{bottom:417.675000px;}
.y18{bottom:425.595000px;}
.y29{bottom:425.955000px;}
.yab{bottom:431.175000px;}
.yfc{bottom:435.135000px;}
.ycf{bottom:436.395000px;}
.y7a{bottom:437.475000px;}
.y28{bottom:443.775000px;}
.y17{bottom:449.895000px;}
.yfb{bottom:454.935000px;}
.y79{bottom:457.455000px;}
.y27{bottom:461.595000px;}
.yaa{bottom:471.675000px;}
.y16{bottom:474.015000px;}
.yfa{bottom:474.735000px;}
.yce{bottom:476.895000px;}
.y78{bottom:477.255000px;}
.y26{bottom:479.415000px;}
.ya5{bottom:492.195000px;}
.yf9{bottom:494.535000px;}
.y77{bottom:497.055000px;}
.y25{bottom:497.235000px;}
.y15{bottom:498.135000px;}
.yf8{bottom:514.515000px;}
.y24{bottom:515.235000px;}
.y76{bottom:516.855000px;}
.ycd{bottom:517.215000px;}
.y14{bottom:522.255000px;}
.ya8{bottom:532.695000px;}
.y23{bottom:533.055000px;}
.yf7{bottom:534.315000px;}
.y75{bottom:536.655000px;}
.y13{bottom:546.420000px;}
.y22{bottom:550.920000px;}
.yf6{bottom:554.115000px;}
.y74{bottom:556.635000px;}
.ycc{bottom:557.715000px;}
.y21{bottom:568.740000px;}
.y12{bottom:570.540000px;}
.yf5{bottom:573.915000px;}
.y73{bottom:576.435000px;}
.ya4{bottom:578.775000px;}
.y20{bottom:586.560000px;}
.yf4{bottom:593.715000px;}
.y11{bottom:594.660000px;}
.y72{bottom:596.265000px;}
.ycb{bottom:598.065000px;}
.ya3{bottom:598.785000px;}
.y1f{bottom:604.380000px;}
.yf3{bottom:613.725000px;}
.y71{bottom:616.065000px;}
.ya2{bottom:618.585000px;}
.y10{bottom:618.960000px;}
.y1e{bottom:622.380000px;}
.yf2{bottom:633.525000px;}
.y70{bottom:635.865000px;}
.ya1{bottom:638.385000px;}
.yca{bottom:638.565000px;}
.y1d{bottom:640.200000px;}
.yf{bottom:643.080000px;}
.yf1{bottom:653.325000px;}
.y6f{bottom:655.845000px;}
.ya0{bottom:658.185000px;}
.yf0{bottom:673.125000px;}
.y6e{bottom:675.645000px;}
.y9f{bottom:677.985000px;}
.yc9{bottom:678.885000px;}
.yef{bottom:692.925000px;}
.y6d{bottom:695.445000px;}
.y9e{bottom:697.965000px;}
.yee{bottom:712.905000px;}
.y6c{bottom:715.245000px;}
.y9d{bottom:717.765000px;}
.yc8{bottom:719.385000px;}
.yed{bottom:732.705000px;}
.y6b{bottom:735.045000px;}
.y9c{bottom:737.565000px;}
.yc7{bottom:739.905000px;}
.yec{bottom:752.505000px;}
.y6a{bottom:755.025000px;}
.y9b{bottom:757.365000px;}
.yeb{bottom:772.305000px;}
.y69{bottom:774.825000px;}
.y9a{bottom:777.165000px;}
.yc4{bottom:780.405000px;}
.yea{bottom:792.105000px;}
.y68{bottom:794.625000px;}
.y99{bottom:797.145000px;}
.ye9{bottom:812.085000px;}
.y67{bottom:814.425000px;}
.y98{bottom:816.945000px;}
.ye8{bottom:831.885000px;}
.y66{bottom:834.225000px;}
.y97{bottom:836.745000px;}
.yc2{bottom:840.705000px;}
.ye7{bottom:851.685000px;}
.y65{bottom:854.205000px;}
.y96{bottom:856.545000px;}
.ye6{bottom:871.530000px;}
.y64{bottom:874.050000px;}
.y95{bottom:876.390000px;}
.yc1{bottom:881.070000px;}
.ye5{bottom:891.330000px;}
.y63{bottom:893.850000px;}
.y94{bottom:896.370000px;}
.ye4{bottom:911.310000px;}
.y62{bottom:913.650000px;}
.y93{bottom:916.170000px;}
.yc0{bottom:921.570000px;}
.ye3{bottom:931.110000px;}
.y61{bottom:933.450000px;}
.y92{bottom:935.970000px;}
.ye2{bottom:950.910000px;}
.y60{bottom:953.430000px;}
.y91{bottom:955.770000px;}
.ybf{bottom:961.890000px;}
.ye1{bottom:970.710000px;}
.y5f{bottom:973.230000px;}
.yd{bottom:974.490000px;}
.y90{bottom:975.570000px;}
.yc{bottom:981.150000px;}
.ye0{bottom:990.510000px;}
.y5e{bottom:993.030000px;}
.y8f{bottom:994.290000px;}
.yb{bottom:1001.670000px;}
.ybe{bottom:1002.390000px;}
.ydf{bottom:1010.490000px;}
.y5d{bottom:1012.830000px;}
.ya{bottom:1021.470000px;}
.yde{bottom:1030.290000px;}
.y8e{bottom:1031.550000px;}
.y5c{bottom:1032.630000px;}
.ybd{bottom:1042.710000px;}
.y9{bottom:1043.610000px;}
.y8d{bottom:1050.090000px;}
.y5b{bottom:1052.610000px;}
.y8c{bottom:1069.890000px;}
.y5a{bottom:1071.150000px;}
.y8{bottom:1072.230000px;}
.y57{bottom:1075.500000px;}
.ybc{bottom:1083.210000px;}
.y59{bottom:1089.690000px;}
.y6{bottom:1108.230000px;}
.y1{bottom:1123.890000px;}
.hb{height:4.165313px;}
.h16{height:10.088437px;}
.h1c{height:19.800000px;}
.h14{height:21.705469px;}
.h13{height:25.839844px;}
.ha{height:27.432422px;}
.h17{height:27.720000px;}
.h12{height:29.464453px;}
.hd{height:29.974219px;}
.h15{height:38.100586px;}
.h1b{height:39.600000px;}
.h1f{height:39.636000px;}
.h1d{height:39.780000px;}
.h1e{height:39.816000px;}
.h7{height:40.132617px;}
.he{height:40.684570px;}
.h9{height:42.164648px;}
.h6{height:42.894141px;}
.h19{height:43.506914px;}
.hf{height:44.507812px;}
.h5{height:47.545312px;}
.h10{height:49.255313px;}
.h20{height:59.400000px;}
.h8{height:59.436914px;}
.h18{height:64.002656px;}
.h3{height:65.884219px;}
.h1a{height:80.100000px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h11{height:224.100000px;}
.hc{height:652.785000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:28.260000px;}
.w11{width:28.980000px;}
.wb{width:30.420000px;}
.wf{width:30.600000px;}
.wa{width:31.860000px;}
.wc{width:31.896000px;}
.wd{width:32.040000px;}
.w10{width:32.076000px;}
.we{width:32.220000px;}
.w8{width:87.516000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.w6{width:596.445000px;}
.w3{width:622.365000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:1.080000px;}
.x24{left:2.880000px;}
.x4a{left:4.140000px;}
.x26{left:5.940000px;}
.x20{left:7.056000px;}
.x16{left:8.136000px;}
.x30{left:9.720000px;}
.x31{left:11.160000px;}
.x4{left:12.780000px;}
.x3e{left:14.796000px;}
.x15{left:16.056000px;}
.x1a{left:18.216000px;}
.x13{left:19.656000px;}
.x32{left:20.700000px;}
.x45{left:22.176000px;}
.x3d{left:23.796000px;}
.x14{left:26.136000px;}
.x43{left:27.936000px;}
.x1c{left:29.196000px;}
.x3f{left:31.680000px;}
.x6{left:33.840000px;}
.x44{left:36.216000px;}
.x48{left:40.176000px;}
.x22{left:43.776000px;}
.x1b{left:47.736000px;}
.xe{left:50.796000px;}
.xd{left:54.936000px;}
.x1e{left:57.096000px;}
.x42{left:58.536000px;}
.x40{left:60.696000px;}
.x18{left:62.100000px;}
.x41{left:63.396000px;}
.x49{left:64.650000px;}
.x1d{left:66.270000px;}
.x46{left:74.370000px;}
.x47{left:75.630000px;}
.x1{left:78.300000px;}
.x12{left:79.590000px;}
.x10{left:82.470000px;}
.x11{left:83.730000px;}
.x7{left:86.399987px;}
.x2{left:95.790000px;}
.x1f{left:102.810000px;}
.x19{left:106.770000px;}
.x21{left:113.435987px;}
.xf{left:124.590000px;}
.x5{left:141.345000px;}
.x23{left:174.630000px;}
.x3{left:182.370000px;}
.x25{left:203.610000px;}
.x17{left:219.090000px;}
.x27{left:236.370000px;}
.x28{left:267.510000px;}
.x29{left:300.135000px;}
.x2a{left:331.275000px;}
.x2b{left:364.035000px;}
.x2c{left:395.175000px;}
.x2e{left:428.115000px;}
.x2f{left:459.435000px;}
.x33{left:492.045000px;}
.x34{left:523.185000px;}
.x35{left:555.945000px;}
.xa{left:578.444987px;}
.x36{left:587.085000px;}
.xb{left:593.744987px;}
.x37{left:619.665000px;}
.x38{left:650.805000px;}
.x39{left:683.610000px;}
.x3a{left:713.310000px;}
.x3b{left:745.890000px;}
.x9{left:766.049987px;}
.x3c{left:774.870000px;}
.x8{left:791.789987px;}
.xc{left:806.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.376000pt;}
.lsc{letter-spacing:-1.232000pt;}
.lsf{letter-spacing:-0.592000pt;}
.ls4{letter-spacing:-0.201067pt;}
.ls6{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:-0.079467pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.150400pt;}
.ls7{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.743680pt;}
.ls8{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.023680pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.688000pt;}
.ws8{word-spacing:-12.048000pt;}
.ws6{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws5{word-spacing:-7.936000pt;}
.ws7{word-spacing:0.000000pt;}
._17{margin-left:-7.898453pt;}
._16{margin-left:-6.664960pt;}
._18{margin-left:-5.585920pt;}
._14{margin-left:-2.889600pt;}
._15{margin-left:-1.965440pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.214933pt;}
._6{width:2.619733pt;}
._8{width:3.792000pt;}
._a{width:4.800000pt;}
._b{width:5.702400pt;}
._5{width:6.864000pt;}
._3{width:8.064000pt;}
._4{width:9.024000pt;}
._9{width:10.092160pt;}
._7{width:10.988160pt;}
._e{width:12.202240pt;}
._2{width:13.152000pt;}
._c{width:15.139200pt;}
._13{width:16.095360pt;}
._11{width:20.398080pt;}
._12{width:21.414187pt;}
._10{width:32.668800pt;}
._f{width:33.996800pt;}
._d{width:165.568000pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.080000pt;}
.y5{bottom:3.360000pt;}
.y58{bottom:4.453333pt;}
.yb9{bottom:5.114667pt;}
.y3f{bottom:5.120000pt;}
.yb1{bottom:5.280000pt;}
.y2{bottom:8.826667pt;}
.y4a{bottom:9.120000pt;}
.yb7{bottom:13.914667pt;}
.yad{bottom:13.920000pt;}
.yb2{bottom:14.080000pt;}
.y4{bottom:20.186667pt;}
.ya9{bottom:22.720000pt;}
.yc3{bottom:22.760000pt;}
.yb8{bottom:22.874667pt;}
.yac{bottom:22.880000pt;}
.y3e{bottom:22.920000pt;}
.ya7{bottom:23.200000pt;}
.y56{bottom:27.680000pt;}
.yc6{bottom:31.520000pt;}
.y49{bottom:35.520000pt;}
.yc5{bottom:40.320000pt;}
.y3d{bottom:40.520000pt;}
.ya6{bottom:40.800000pt;}
.y3{bottom:42.586667pt;}
.y55{bottom:43.040000pt;}
.y48{bottom:45.440000pt;}
.y7{bottom:50.720000pt;}
.y47{bottom:55.514667pt;}
.y3c{bottom:58.120000pt;}
.y54{bottom:59.994667pt;}
.y46{bottom:65.914667pt;}
.y53{bottom:74.074667pt;}
.y3b{bottom:75.720000pt;}
.y45{bottom:77.434667pt;}
.ybb{bottom:77.472000pt;}
.y40{bottom:83.712000pt;}
.y52{bottom:87.194667pt;}
.y44{bottom:89.114667pt;}
.y8b{bottom:89.152000pt;}
.ydd{bottom:89.952000pt;}
.y3a{bottom:93.320000pt;}
.y51{bottom:94.234667pt;}
.yba{bottom:95.872000pt;}
.y8a{bottom:106.752000pt;}
.ydc{bottom:107.552000pt;}
.y50{bottom:107.994667pt;}
.y43{bottom:108.634667pt;}
.y39{bottom:111.080000pt;}
.y4f{bottom:121.914667pt;}
.y89{bottom:124.352000pt;}
.ydb{bottom:125.152000pt;}
.y38{bottom:128.680000pt;}
.yb6{bottom:131.712000pt;}
.y4e{bottom:135.674667pt;}
.y88{bottom:142.106667pt;}
.yda{bottom:142.906667pt;}
.y37{bottom:146.280000pt;}
.y4d{bottom:149.434667pt;}
.y87{bottom:159.706667pt;}
.yd9{bottom:160.506667pt;}
.y4c{bottom:163.194667pt;}
.y42{bottom:163.674667pt;}
.y36{bottom:163.880000pt;}
.yb5{bottom:167.706667pt;}
.y41{bottom:173.114667pt;}
.y108{bottom:175.066667pt;}
.y86{bottom:177.306667pt;}
.yd8{bottom:178.106667pt;}
.y35{bottom:181.480000pt;}
.y107{bottom:192.826667pt;}
.y85{bottom:194.906667pt;}
.yd7{bottom:195.706667pt;}
.y34{bottom:199.240000pt;}
.yb4{bottom:203.546667pt;}
.y106{bottom:210.426667pt;}
.y84{bottom:212.506667pt;}
.yd6{bottom:213.306667pt;}
.y33{bottom:216.840000pt;}
.y105{bottom:228.026667pt;}
.y83{bottom:230.266667pt;}
.yd5{bottom:231.066667pt;}
.y32{bottom:234.440000pt;}
.yb3{bottom:239.546667pt;}
.y104{bottom:245.626667pt;}
.y82{bottom:247.866667pt;}
.yd4{bottom:248.666667pt;}
.y31{bottom:251.586667pt;}
.yd3{bottom:261.786667pt;}
.y103{bottom:263.226667pt;}
.y81{bottom:265.466667pt;}
.y30{bottom:267.426667pt;}
.yb0{bottom:275.386667pt;}
.y102{bottom:280.986667pt;}
.y80{bottom:283.066667pt;}
.y2f{bottom:283.426667pt;}
.ye{bottom:283.546667pt;}
.y1c{bottom:292.546667pt;}
.yd2{bottom:297.826667pt;}
.y101{bottom:298.626667pt;}
.y2e{bottom:299.266667pt;}
.y7f{bottom:300.706667pt;}
.yaf{bottom:311.426667pt;}
.y1b{bottom:313.986667pt;}
.y2d{bottom:315.106667pt;}
.y100{bottom:316.226667pt;}
.y7e{bottom:318.466667pt;}
.y2c{bottom:330.946667pt;}
.yd1{bottom:333.666667pt;}
.yff{bottom:333.826667pt;}
.y1a{bottom:335.426667pt;}
.y7d{bottom:336.066667pt;}
.y2b{bottom:346.786667pt;}
.yae{bottom:347.426667pt;}
.yfe{bottom:351.426667pt;}
.yd0{bottom:351.906667pt;}
.y7c{bottom:353.666667pt;}
.y19{bottom:356.866667pt;}
.y2a{bottom:362.626667pt;}
.yfd{bottom:369.186667pt;}
.y7b{bottom:371.266667pt;}
.y18{bottom:378.306667pt;}
.y29{bottom:378.626667pt;}
.yab{bottom:383.266667pt;}
.yfc{bottom:386.786667pt;}
.ycf{bottom:387.906667pt;}
.y7a{bottom:388.866667pt;}
.y28{bottom:394.466667pt;}
.y17{bottom:399.906667pt;}
.yfb{bottom:404.386667pt;}
.y79{bottom:406.626667pt;}
.y27{bottom:410.306667pt;}
.yaa{bottom:419.266667pt;}
.y16{bottom:421.346667pt;}
.yfa{bottom:421.986667pt;}
.yce{bottom:423.906667pt;}
.y78{bottom:424.226667pt;}
.y26{bottom:426.146667pt;}
.ya5{bottom:437.506667pt;}
.yf9{bottom:439.586667pt;}
.y77{bottom:441.826667pt;}
.y25{bottom:441.986667pt;}
.y15{bottom:442.786667pt;}
.yf8{bottom:457.346667pt;}
.y24{bottom:457.986667pt;}
.y76{bottom:459.426667pt;}
.ycd{bottom:459.746667pt;}
.y14{bottom:464.226667pt;}
.ya8{bottom:473.506667pt;}
.y23{bottom:473.826667pt;}
.yf7{bottom:474.946667pt;}
.y75{bottom:477.026667pt;}
.y13{bottom:485.706667pt;}
.y22{bottom:489.706667pt;}
.yf6{bottom:492.546667pt;}
.y74{bottom:494.786667pt;}
.ycc{bottom:495.746667pt;}
.y21{bottom:505.546667pt;}
.y12{bottom:507.146667pt;}
.yf5{bottom:510.146667pt;}
.y73{bottom:512.386667pt;}
.ya4{bottom:514.466667pt;}
.y20{bottom:521.386667pt;}
.yf4{bottom:527.746667pt;}
.y11{bottom:528.586667pt;}
.y72{bottom:530.013333pt;}
.ycb{bottom:531.613333pt;}
.ya3{bottom:532.253333pt;}
.y1f{bottom:537.226667pt;}
.yf3{bottom:545.533333pt;}
.y71{bottom:547.613333pt;}
.ya2{bottom:549.853333pt;}
.y10{bottom:550.186667pt;}
.y1e{bottom:553.226667pt;}
.yf2{bottom:563.133333pt;}
.y70{bottom:565.213333pt;}
.ya1{bottom:567.453333pt;}
.yca{bottom:567.613333pt;}
.y1d{bottom:569.066667pt;}
.yf{bottom:571.626667pt;}
.yf1{bottom:580.733333pt;}
.y6f{bottom:582.973333pt;}
.ya0{bottom:585.053333pt;}
.yf0{bottom:598.333333pt;}
.y6e{bottom:600.573333pt;}
.y9f{bottom:602.653333pt;}
.yc9{bottom:603.453333pt;}
.yef{bottom:615.933333pt;}
.y6d{bottom:618.173333pt;}
.y9e{bottom:620.413333pt;}
.yee{bottom:633.693333pt;}
.y6c{bottom:635.773333pt;}
.y9d{bottom:638.013333pt;}
.yc8{bottom:639.453333pt;}
.yed{bottom:651.293333pt;}
.y6b{bottom:653.373333pt;}
.y9c{bottom:655.613333pt;}
.yc7{bottom:657.693333pt;}
.yec{bottom:668.893333pt;}
.y6a{bottom:671.133333pt;}
.y9b{bottom:673.213333pt;}
.yeb{bottom:686.493333pt;}
.y69{bottom:688.733333pt;}
.y9a{bottom:690.813333pt;}
.yc4{bottom:693.693333pt;}
.yea{bottom:704.093333pt;}
.y68{bottom:706.333333pt;}
.y99{bottom:708.573333pt;}
.ye9{bottom:721.853333pt;}
.y67{bottom:723.933333pt;}
.y98{bottom:726.173333pt;}
.ye8{bottom:739.453333pt;}
.y66{bottom:741.533333pt;}
.y97{bottom:743.773333pt;}
.yc2{bottom:747.293333pt;}
.ye7{bottom:757.053333pt;}
.y65{bottom:759.293333pt;}
.y96{bottom:761.373333pt;}
.ye6{bottom:774.693333pt;}
.y64{bottom:776.933333pt;}
.y95{bottom:779.013333pt;}
.yc1{bottom:783.173333pt;}
.ye5{bottom:792.293333pt;}
.y63{bottom:794.533333pt;}
.y94{bottom:796.773333pt;}
.ye4{bottom:810.053333pt;}
.y62{bottom:812.133333pt;}
.y93{bottom:814.373333pt;}
.yc0{bottom:819.173333pt;}
.ye3{bottom:827.653333pt;}
.y61{bottom:829.733333pt;}
.y92{bottom:831.973333pt;}
.ye2{bottom:845.253333pt;}
.y60{bottom:847.493333pt;}
.y91{bottom:849.573333pt;}
.ybf{bottom:855.013333pt;}
.ye1{bottom:862.853333pt;}
.y5f{bottom:865.093333pt;}
.yd{bottom:866.213333pt;}
.y90{bottom:867.173333pt;}
.yc{bottom:872.133333pt;}
.ye0{bottom:880.453333pt;}
.y5e{bottom:882.693333pt;}
.y8f{bottom:883.813333pt;}
.yb{bottom:890.373333pt;}
.ybe{bottom:891.013333pt;}
.ydf{bottom:898.213333pt;}
.y5d{bottom:900.293333pt;}
.ya{bottom:907.973333pt;}
.yde{bottom:915.813333pt;}
.y8e{bottom:916.933333pt;}
.y5c{bottom:917.893333pt;}
.ybd{bottom:926.853333pt;}
.y9{bottom:927.653333pt;}
.y8d{bottom:933.413333pt;}
.y5b{bottom:935.653333pt;}
.y8c{bottom:951.013333pt;}
.y5a{bottom:952.133333pt;}
.y8{bottom:953.093333pt;}
.y57{bottom:956.000000pt;}
.ybc{bottom:962.853333pt;}
.y59{bottom:968.613333pt;}
.y6{bottom:985.093333pt;}
.y1{bottom:999.013333pt;}
.hb{height:3.702500pt;}
.h16{height:8.967500pt;}
.h1c{height:17.600000pt;}
.h14{height:19.293750pt;}
.h13{height:22.968750pt;}
.ha{height:24.384375pt;}
.h17{height:24.640000pt;}
.h12{height:26.190625pt;}
.hd{height:26.643750pt;}
.h15{height:33.867188pt;}
.h1b{height:35.200000pt;}
.h1f{height:35.232000pt;}
.h1d{height:35.360000pt;}
.h1e{height:35.392000pt;}
.h7{height:35.673437pt;}
.he{height:36.164062pt;}
.h9{height:37.479688pt;}
.h6{height:38.128125pt;}
.h19{height:38.672812pt;}
.hf{height:39.562500pt;}
.h5{height:42.262500pt;}
.h10{height:43.782500pt;}
.h20{height:52.800000pt;}
.h8{height:52.832812pt;}
.h18{height:56.891250pt;}
.h3{height:58.563750pt;}
.h1a{height:71.200000pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h11{height:199.200000pt;}
.hc{height:580.253333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:25.120000pt;}
.w11{width:25.760000pt;}
.wb{width:27.040000pt;}
.wf{width:27.200000pt;}
.wa{width:28.320000pt;}
.wc{width:28.352000pt;}
.wd{width:28.480000pt;}
.w10{width:28.512000pt;}
.we{width:28.640000pt;}
.w8{width:77.792000pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.w6{width:530.173333pt;}
.w3{width:553.213333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:0.960000pt;}
.x24{left:2.560000pt;}
.x4a{left:3.680000pt;}
.x26{left:5.280000pt;}
.x20{left:6.272000pt;}
.x16{left:7.232000pt;}
.x30{left:8.640000pt;}
.x31{left:9.920000pt;}
.x4{left:11.360000pt;}
.x3e{left:13.152000pt;}
.x15{left:14.272000pt;}
.x1a{left:16.192000pt;}
.x13{left:17.472000pt;}
.x32{left:18.400000pt;}
.x45{left:19.712000pt;}
.x3d{left:21.152000pt;}
.x14{left:23.232000pt;}
.x43{left:24.832000pt;}
.x1c{left:25.952000pt;}
.x3f{left:28.160000pt;}
.x6{left:30.080000pt;}
.x44{left:32.192000pt;}
.x48{left:35.712000pt;}
.x22{left:38.912000pt;}
.x1b{left:42.432000pt;}
.xe{left:45.152000pt;}
.xd{left:48.832000pt;}
.x1e{left:50.752000pt;}
.x42{left:52.032000pt;}
.x40{left:53.952000pt;}
.x18{left:55.200000pt;}
.x41{left:56.352000pt;}
.x49{left:57.466667pt;}
.x1d{left:58.906667pt;}
.x46{left:66.106667pt;}
.x47{left:67.226667pt;}
.x1{left:69.600000pt;}
.x12{left:70.746667pt;}
.x10{left:73.306667pt;}
.x11{left:74.426667pt;}
.x7{left:76.799988pt;}
.x2{left:85.146667pt;}
.x1f{left:91.386667pt;}
.x19{left:94.906667pt;}
.x21{left:100.831988pt;}
.xf{left:110.746667pt;}
.x5{left:125.640000pt;}
.x23{left:155.226667pt;}
.x3{left:162.106667pt;}
.x25{left:180.986667pt;}
.x17{left:194.746667pt;}
.x27{left:210.106667pt;}
.x28{left:237.786667pt;}
.x29{left:266.786667pt;}
.x2a{left:294.466667pt;}
.x2b{left:323.586667pt;}
.x2c{left:351.266667pt;}
.x2e{left:380.546667pt;}
.x2f{left:408.386667pt;}
.x33{left:437.373333pt;}
.x34{left:465.053333pt;}
.x35{left:494.173333pt;}
.xa{left:514.173322pt;}
.x36{left:521.853333pt;}
.xb{left:527.773322pt;}
.x37{left:550.813333pt;}
.x38{left:578.493333pt;}
.x39{left:607.653333pt;}
.x3a{left:634.053333pt;}
.x3b{left:663.013333pt;}
.x9{left:680.933322pt;}
.x3c{left:688.773333pt;}
.x8{left:703.813322pt;}
.xc{left:717.093322pt;}
}




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