
    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_537047baaebf784ba1267c62.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.695312;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_ba2a12e8c9f4f14c9416c3ac.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_32c451170cc3472f3763cb34.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_231d287f5148ebdb22026277.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_20a2d8e3509b8990f72679a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e9d6e9192a95c2a327f8f23b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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_ef53ff37e15fa85acce36099.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_b3fa1aa860b16469f21646fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_5ce8be1e8864f2964629469e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_44cb44efeaa5547e6dfabb5c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7d94ca844c8a5d972ef09f7a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.054720px;}
.ls7{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.109440px;}
.ls8{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.245520px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:306.750720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws4{word-spacing:-15.228000px;}
.ws6{word-spacing:-15.174000px;}
.ws5{word-spacing:-15.012000px;}
.ws3{word-spacing:-13.734480px;}
.ws7{word-spacing:-13.625280px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-2.098320px;}
._2{margin-left:-1.015920px;}
._0{width:1.321200px;}
._3{width:2.649840px;}
._1{width:3.706080px;}
._4{width:5.198160px;}
._7{width:7.111440px;}
._8{width:8.652240px;}
._6{width:9.977040px;}
._5{width:11.204400px;}
._9{width:12.848400px;}
._c{width:305.112240px;}
._b{width:847.686720px;}
.fc2{color:transparent;}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y23{bottom:2.880000px;}
.y1c{bottom:3.060000px;}
.y82{bottom:3.240000px;}
.y30{bottom:3.960000px;}
.y18{bottom:4.140000px;}
.yab{bottom:4.680000px;}
.y98{bottom:5.220000px;}
.y52{bottom:5.580000px;}
.y1f{bottom:5.760000px;}
.ydf{bottom:5.790000px;}
.y27{bottom:5.940000px;}
.yc{bottom:6.480000px;}
.yd{bottom:7.200000px;}
.y24{bottom:10.620000px;}
.y1d{bottom:10.800000px;}
.y72{bottom:10.830000px;}
.y68{bottom:10.845000px;}
.y2f{bottom:11.160000px;}
.y16{bottom:11.340000px;}
.y31{bottom:11.700000px;}
.y19{bottom:11.880000px;}
.y96{bottom:12.060000px;}
.y83{bottom:12.420000px;}
.y44{bottom:15.660000px;}
.yc3{bottom:18.000000px;}
.y22{bottom:18.360000px;}
.y1b{bottom:18.540000px;}
.y71{bottom:18.570000px;}
.y67{bottom:18.585000px;}
.y17{bottom:19.620000px;}
.y46{bottom:19.800000px;}
.yaa{bottom:20.160000px;}
.y81{bottom:20.520000px;}
.y97{bottom:20.880000px;}
.yb6{bottom:21.780000px;}
.yac{bottom:21.960000px;}
.y94{bottom:24.840000px;}
.y43{bottom:25.560000px;}
.yc4{bottom:26.280000px;}
.yc5{bottom:34.020000px;}
.yfb{bottom:83.880000px;}
.y74{bottom:112.320000px;}
.y41{bottom:121.680000px;}
.ya5{bottom:127.980000px;}
.y73{bottom:134.280000px;}
.y40{bottom:141.480000px;}
.ya4{bottom:154.260000px;}
.y3f{bottom:161.460000px;}
.y70{bottom:166.140000px;}
.yf5{bottom:167.760000px;}
.ya3{bottom:178.050000px;}
.yf4{bottom:185.430000px;}
.y3e{bottom:194.250000px;}
.y6f{bottom:198.030000px;}
.ya2{bottom:200.010000px;}
.yf3{bottom:201.990000px;}
.yf2{bottom:218.370000px;}
.y3d{bottom:219.450000px;}
.y6e{bottom:219.990000px;}
.ya1{bottom:221.970000px;}
.yf1{bottom:234.930000px;}
.y3c{bottom:236.730000px;}
.ya0{bottom:243.930000px;}
.yf0{bottom:251.310000px;}
.y6d{bottom:251.850000px;}
.y3b{bottom:253.830000px;}
.yef{bottom:267.870000px;}
.y3a{bottom:271.110000px;}
.y9f{bottom:275.790000px;}
.y6c{bottom:283.530000px;}
.yee{bottom:285.690000px;}
.y39{bottom:285.870000px;}
.ycc{bottom:286.590000px;}
.y9e{bottom:297.750000px;}
.ycb{bottom:303.690000px;}
.y6b{bottom:305.490000px;}
.yed{bottom:309.990000px;}
.y38{bottom:317.730000px;}
.y9d{bottom:319.710000px;}
.y6a{bottom:327.450000px;}
.yec{bottom:334.290000px;}
.y9c{bottom:341.670000px;}
.y69{bottom:349.410000px;}
.y37{bottom:349.590000px;}
.yeb{bottom:358.770000px;}
.y9b{bottom:363.630000px;}
.yca{bottom:371.370000px;}
.y36{bottom:371.550000px;}
.yea{bottom:383.070000px;}
.y9a{bottom:385.590000px;}
.y35{bottom:393.510000px;}
.y66{bottom:403.230000px;}
.ye9{bottom:407.370000px;}
.y99{bottom:407.550000px;}
.y34{bottom:415.515000px;}
.yfa{bottom:424.515000px;}
.y93{bottom:429.555000px;}
.ye8{bottom:431.715000px;}
.y65{bottom:435.135000px;}
.y33{bottom:437.475000px;}
.ye7{bottom:456.195000px;}
.yc9{bottom:459.435000px;}
.y95{bottom:463.755000px;}
.y32{bottom:469.335000px;}
.y64{bottom:475.095000px;}
.ye6{bottom:480.495000px;}
.yc8{bottom:481.395000px;}
.y2e{bottom:491.295000px;}
.y63{bottom:494.895000px;}
.y92{bottom:496.515000px;}
.yc7{bottom:503.355000px;}
.ye5{bottom:504.795000px;}
.y62{bottom:514.695000px;}
.y91{bottom:516.315000px;}
.yc6{bottom:525.315000px;}
.ye4{bottom:527.475000px;}
.y2d{bottom:531.075000px;}
.y61{bottom:531.975000px;}
.y90{bottom:536.115000px;}
.yc2{bottom:547.275000px;}
.y60{bottom:549.255000px;}
.y2c{bottom:551.055000px;}
.y8f{bottom:555.915000px;}
.ye3{bottom:562.035000px;}
.y5f{bottom:564.015000px;}
.y2b{bottom:570.855000px;}
.y8e{bottom:582.195000px;}
.y5e{bottom:584.535000px;}
.y2a{bottom:588.135000px;}
.ye2{bottom:589.935000px;}
.yc1{bottom:600.375000px;}
.y5d{bottom:605.055000px;}
.y29{bottom:605.415000px;}
.y8d{bottom:605.955000px;}
.ye1{bottom:614.235000px;}
.yc0{bottom:620.175000px;}
.y28{bottom:622.515000px;}
.y5c{bottom:625.575000px;}
.ye0{bottom:634.575000px;}
.y26{bottom:637.275000px;}
.ybf{bottom:640.155000px;}
.y8c{bottom:641.235000px;}
.y5b{bottom:646.095000px;}
.yde{bottom:655.095000px;}
.ybe{bottom:657.435000px;}
.y25{bottom:659.445000px;}
.y8b{bottom:663.225000px;}
.y5a{bottom:666.645000px;}
.ybd{bottom:674.565000px;}
.ydd{bottom:675.645000px;}
.y21{bottom:681.405000px;}
.y59{bottom:687.345000px;}
.ybc{bottom:691.845000px;}
.ydc{bottom:696.165000px;}
.y8a{bottom:698.505000px;}
.y58{bottom:707.865000px;}
.y20{bottom:713.085000px;}
.ybb{bottom:715.605000px;}
.y89{bottom:720.465000px;}
.y57{bottom:728.385000px;}
.y1e{bottom:735.045000px;}
.ydb{bottom:737.205000px;}
.yba{bottom:737.565000px;}
.y56{bottom:748.905000px;}
.y88{bottom:755.745000px;}
.y1a{bottom:757.005000px;}
.yb9{bottom:759.525000px;}
.yda{bottom:762.585000px;}
.y55{bottom:769.425000px;}
.yf9{bottom:771.225000px;}
.y87{bottom:777.705000px;}
.yb8{bottom:781.665000px;}
.y15{bottom:788.865000px;}
.y54{bottom:789.945000px;}
.yd9{bottom:796.785000px;}
.yb7{bottom:803.625000px;}
.y53{bottom:810.465000px;}
.yd8{bottom:811.545000px;}
.y86{bottom:812.985000px;}
.yb5{bottom:825.585000px;}
.y14{bottom:828.825000px;}
.yd7{bottom:829.545000px;}
.y51{bottom:831.165000px;}
.y85{bottom:834.945000px;}
.yd6{bottom:847.545000px;}
.y13{bottom:848.625000px;}
.y50{bottom:851.685000px;}
.y84{bottom:856.905000px;}
.yb4{bottom:866.625000px;}
.y12{bottom:868.425000px;}
.y4f{bottom:872.205000px;}
.y80{bottom:878.865000px;}
.y11{bottom:885.705000px;}
.yd5{bottom:885.885000px;}
.yb3{bottom:886.425000px;}
.y4e{bottom:892.725000px;}
.y10{bottom:902.985000px;}
.yb2{bottom:903.750000px;}
.yd4{bottom:909.690000px;}
.y4d{bottom:913.290000px;}
.y7f{bottom:914.190000px;}
.yf{bottom:920.310000px;}
.yb1{bottom:921.030000px;}
.yd3{bottom:930.390000px;}
.y4c{bottom:933.810000px;}
.yb0{bottom:935.790000px;}
.y7e{bottom:936.150000px;}
.ye{bottom:937.590000px;}
.yd2{bottom:950.910000px;}
.yb{bottom:952.350000px;}
.y4b{bottom:954.330000px;}
.yaf{bottom:957.750000px;}
.y7d{bottom:958.110000px;}
.y4a{bottom:974.850000px;}
.yae{bottom:979.710000px;}
.y7c{bottom:980.070000px;}
.ya{bottom:986.550000px;}
.yd1{bottom:991.950000px;}
.y49{bottom:995.550000px;}
.yad{bottom:1001.670000px;}
.y9{bottom:1003.830000px;}
.yd0{bottom:1017.330000px;}
.y7b{bottom:1020.030000px;}
.y8{bottom:1023.630000px;}
.yf8{bottom:1025.970000px;}
.y48{bottom:1035.870000px;}
.y7a{bottom:1039.830000px;}
.y7{bottom:1043.610000px;}
.ya9{bottom:1045.590000px;}
.ycf{bottom:1051.530000px;}
.y47{bottom:1056.390000px;}
.y79{bottom:1057.110000px;}
.y6{bottom:1063.590000px;}
.yf7{bottom:1066.290000px;}
.y78{bottom:1074.390000px;}
.y45{bottom:1076.910000px;}
.y5{bottom:1083.570000px;}
.ya8{bottom:1086.630000px;}
.y77{bottom:1089.150000px;}
.yce{bottom:1092.750000px;}
.y42{bottom:1097.430000px;}
.y4{bottom:1103.550000px;}
.ya7{bottom:1106.430000px;}
.ycd{bottom:1110.030000px;}
.y76{bottom:1111.110000px;}
.y3{bottom:1123.530000px;}
.ya6{bottom:1123.710000px;}
.yf6{bottom:1124.070000px;}
.y75{bottom:1133.070000px;}
.y2{bottom:1140.990000px;}
.y1{bottom:1197.000000px;}
.h21{height:17.100000px;}
.h1d{height:17.280000px;}
.h13{height:19.620000px;}
.h11{height:19.800000px;}
.h12{height:19.836000px;}
.hd{height:21.060000px;}
.h1b{height:21.096000px;}
.h5{height:21.240000px;}
.hf{height:21.276000px;}
.h19{height:26.100000px;}
.hc{height:30.960000px;}
.hb{height:31.140000px;}
.h14{height:31.176000px;}
.he{height:33.300000px;}
.h9{height:33.480000px;}
.h16{height:34.380000px;}
.h17{height:34.560000px;}
.h15{height:34.596000px;}
.h1c{height:35.806641px;}
.ha{height:39.471680px;}
.h10{height:39.600000px;}
.h2{height:40.472227px;}
.h7{height:43.506914px;}
.h6{height:43.536094px;}
.h8{height:43.681992px;}
.h3{height:44.820000px;}
.h4{height:44.936719px;}
.h1a{height:46.620000px;}
.h20{height:53.709961px;}
.h18{height:60.300000px;}
.h1e{height:63.180000px;}
.h23{height:71.613281px;}
.h1f{height:83.787539px;}
.h22{height:100.980000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w65{width:16.380000px;}
.w50{width:16.956000px;}
.w66{width:18.540000px;}
.w6a{width:18.576000px;}
.w68{width:18.720000px;}
.w56{width:19.800000px;}
.w54{width:20.196000px;}
.w5d{width:20.340000px;}
.w5c{width:20.520000px;}
.w52{width:24.840000px;}
.w11{width:25.560000px;}
.w3{width:25.596000px;}
.w5{width:25.740000px;}
.w3b{width:36.360000px;}
.w32{width:37.260000px;}
.w59{width:41.760000px;}
.w39{width:42.840000px;}
.w3a{width:42.876000px;}
.w3c{width:43.020000px;}
.w3f{width:43.200000px;}
.w3d{width:43.560000px;}
.w31{width:43.596000px;}
.w30{width:43.740000px;}
.w40{width:43.920000px;}
.w35{width:44.100000px;}
.w3e{width:44.136000px;}
.w33{width:44.640000px;}
.w34{width:45.036000px;}
.w38{width:47.700000px;}
.w2f{width:48.600000px;}
.w1f{width:50.976000px;}
.w1b{width:51.696000px;}
.w20{width:52.020000px;}
.w1c{width:52.740000px;}
.w25{width:54.036000px;}
.w4e{width:54.396000px;}
.w21{width:54.900000px;}
.w22{width:55.260000px;}
.w47{width:55.296000px;}
.w1d{width:55.620000px;}
.w2d{width:58.176000px;}
.w2c{width:58.320000px;}
.w2a{width:58.536000px;}
.w2b{width:58.680000px;}
.w29{width:59.040000px;}
.wf{width:59.076000px;}
.w28{width:59.400000px;}
.w61{width:59.436000px;}
.wa{width:59.796000px;}
.w16{width:62.820000px;}
.w27{width:63.180000px;}
.we{width:67.320000px;}
.wc{width:67.680000px;}
.w8{width:68.040000px;}
.w10{width:68.400000px;}
.w9{width:68.760000px;}
.wb{width:69.120000px;}
.w4a{width:69.480000px;}
.w4c{width:69.660000px;}
.w43{width:70.200000px;}
.w45{width:70.380000px;}
.w26{width:71.280000px;}
.w41{width:75.600000px;}
.w4d{width:75.780000px;}
.w36{width:75.960000px;}
.w46{width:76.500000px;}
.w67{width:76.536000px;}
.w4f{width:82.260000px;}
.w4b{width:82.296000px;}
.w48{width:82.980000px;}
.w44{width:83.016000px;}
.w14{width:84.240000px;}
.w13{width:84.276000px;}
.w12{width:84.420000px;}
.w15{width:84.456000px;}
.w6c{width:84.996000px;}
.w62{width:89.460000px;}
.w18{width:90.756000px;}
.w19{width:94.860000px;}
.w5b{width:94.896000px;}
.w5e{width:95.040000px;}
.w5a{width:97.380000px;}
.w6{width:97.416000px;}
.w64{width:97.956000px;}
.w4{width:101.700000px;}
.w69{width:106.200000px;}
.w60{width:160.920000px;}
.w63{width:191.370000px;}
.w5f{width:195.015000px;}
.w6f{width:212.610000px;}
.w55{width:221.970000px;}
.w58{width:232.815000px;}
.w57{width:233.130000px;}
.w49{width:241.635000px;}
.w42{width:241.995000px;}
.w53{width:258.915000px;}
.w37{width:261.075000px;}
.w2e{width:261.435000px;}
.w51{width:268.590000px;}
.w6b{width:313.590000px;}
.w23{width:362.415000px;}
.w17{width:382.035000px;}
.wd{width:407.625000px;}
.w7{width:407.985000px;}
.w24{width:426.705000px;}
.w1e{width:459.465000px;}
.w1a{width:459.825000px;}
.w6e{width:489.165000px;}
.w6d{width:638.025000px;}
.w70{width:662.325000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.xb{left:9.180000px;}
.x21{left:11.160000px;}
.x3{left:12.816000px;}
.x46{left:13.860000px;}
.x26{left:15.120000px;}
.xd{left:16.920000px;}
.x41{left:18.540000px;}
.x34{left:20.160000px;}
.x2f{left:21.600000px;}
.x30{left:23.580000px;}
.x12{left:25.785000px;}
.x27{left:27.180000px;}
.x11{left:29.880000px;}
.x3b{left:31.860000px;}
.x4f{left:34.020000px;}
.x4e{left:37.260000px;}
.x15{left:38.694000px;}
.x31{left:51.300000px;}
.x48{left:53.856000px;}
.x47{left:60.516000px;}
.x58{left:65.880000px;}
.x28{left:74.520000px;}
.x8{left:75.600000px;}
.x49{left:78.300000px;}
.x3c{left:79.920000px;}
.x2{left:80.999987px;}
.x32{left:98.316000px;}
.x50{left:99.576000px;}
.x53{left:102.636000px;}
.x4{left:107.676000px;}
.x13{left:112.536000px;}
.x20{left:129.996000px;}
.x1{left:134.135987px;}
.x14{left:138.816000px;}
.x9{left:163.290000px;}
.x23{left:165.645000px;}
.x62{left:178.950000px;}
.x29{left:189.210000px;}
.x22{left:193.530000px;}
.x63{left:196.050000px;}
.x59{left:199.110000px;}
.x6{left:209.730000px;}
.x64{left:214.950000px;}
.x5a{left:219.630000px;}
.x16{left:223.950000px;}
.x7{left:236.190000px;}
.x17{left:250.230000px;}
.x5e{left:262.109987px;}
.x5f{left:276.015000px;}
.x65{left:291.135000px;}
.x66{left:308.415000px;}
.x56{left:315.435000px;}
.x4a{left:320.295000px;}
.x54{left:326.775000px;}
.x18{left:335.415000px;}
.x3d{left:341.355000px;}
.x55{left:347.295000px;}
.x57{left:357.915000px;}
.x19{left:361.695000px;}
.x51{left:370.335000px;}
.x5b{left:379.155000px;}
.x3e{left:389.955000px;}
.x52{left:396.075000px;}
.x33{left:414.615000px;}
.x3f{left:433.695000px;}
.x60{left:436.935000px;}
.x1a{left:446.655000px;}
.x67{left:450.615000px;}
.x35{left:469.365000px;}
.x1b{left:473.145000px;}
.x5c{left:474.945000px;}
.x40{left:477.285000px;}
.xa{left:483.585000px;}
.x5d{left:496.005000px;}
.x42{left:514.545000px;}
.x2a{left:534.345000px;}
.x36{left:541.365000px;}
.x4b{left:543.885000px;}
.xc{left:551.625000px;}
.x1c{left:558.105000px;}
.x68{left:570.165000px;}
.x24{left:576.285000px;}
.x1d{left:584.385000px;}
.x61{left:585.825000px;}
.x2b{left:602.385000px;}
.x37{left:604.545000px;}
.xe{left:620.385000px;}
.x43{left:647.970000px;}
.x2c{left:654.090000px;}
.x38{left:664.350000px;}
.x25{left:667.770000px;}
.x1e{left:669.570000px;}
.x4c{left:675.690000px;}
.xf{left:680.190000px;}
.x44{left:692.070000px;}
.x1f{left:695.850000px;}
.x2d{left:706.830000px;}
.x39{left:723.750000px;}
.x45{left:736.710000px;}
.x10{left:749.310000px;}
.x4d{left:758.670000px;}
.x2e{left:762.450000px;}
.x3a{left:782.790000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.048640pt;}
.ls7{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.097280pt;}
.ls8{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.218240pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:272.667307pt;}
.ws1{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws4{word-spacing:-13.536000pt;}
.ws6{word-spacing:-13.488000pt;}
.ws5{word-spacing:-13.344000pt;}
.ws3{word-spacing:-12.208427pt;}
.ws7{word-spacing:-12.111360pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-1.865173pt;}
._2{margin-left:-0.903040pt;}
._0{width:1.174400pt;}
._3{width:2.355413pt;}
._1{width:3.294293pt;}
._4{width:4.620587pt;}
._7{width:6.321280pt;}
._8{width:7.690880pt;}
._6{width:8.868480pt;}
._5{width:9.959467pt;}
._9{width:11.420800pt;}
._c{width:271.210880pt;}
._b{width:753.499307pt;}
.fs2{font-size:32.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:2.560000pt;}
.y1c{bottom:2.720000pt;}
.y82{bottom:2.880000pt;}
.y30{bottom:3.520000pt;}
.y18{bottom:3.680000pt;}
.yab{bottom:4.160000pt;}
.y98{bottom:4.640000pt;}
.y52{bottom:4.960000pt;}
.y1f{bottom:5.120000pt;}
.ydf{bottom:5.146667pt;}
.y27{bottom:5.280000pt;}
.yc{bottom:5.760000pt;}
.yd{bottom:6.400000pt;}
.y24{bottom:9.440000pt;}
.y1d{bottom:9.600000pt;}
.y72{bottom:9.626667pt;}
.y68{bottom:9.640000pt;}
.y2f{bottom:9.920000pt;}
.y16{bottom:10.080000pt;}
.y31{bottom:10.400000pt;}
.y19{bottom:10.560000pt;}
.y96{bottom:10.720000pt;}
.y83{bottom:11.040000pt;}
.y44{bottom:13.920000pt;}
.yc3{bottom:16.000000pt;}
.y22{bottom:16.320000pt;}
.y1b{bottom:16.480000pt;}
.y71{bottom:16.506667pt;}
.y67{bottom:16.520000pt;}
.y17{bottom:17.440000pt;}
.y46{bottom:17.600000pt;}
.yaa{bottom:17.920000pt;}
.y81{bottom:18.240000pt;}
.y97{bottom:18.560000pt;}
.yb6{bottom:19.360000pt;}
.yac{bottom:19.520000pt;}
.y94{bottom:22.080000pt;}
.y43{bottom:22.720000pt;}
.yc4{bottom:23.360000pt;}
.yc5{bottom:30.240000pt;}
.yfb{bottom:74.560000pt;}
.y74{bottom:99.840000pt;}
.y41{bottom:108.160000pt;}
.ya5{bottom:113.760000pt;}
.y73{bottom:119.360000pt;}
.y40{bottom:125.760000pt;}
.ya4{bottom:137.120000pt;}
.y3f{bottom:143.520000pt;}
.y70{bottom:147.680000pt;}
.yf5{bottom:149.120000pt;}
.ya3{bottom:158.266667pt;}
.yf4{bottom:164.826667pt;}
.y3e{bottom:172.666667pt;}
.y6f{bottom:176.026667pt;}
.ya2{bottom:177.786667pt;}
.yf3{bottom:179.546667pt;}
.yf2{bottom:194.106667pt;}
.y3d{bottom:195.066667pt;}
.y6e{bottom:195.546667pt;}
.ya1{bottom:197.306667pt;}
.yf1{bottom:208.826667pt;}
.y3c{bottom:210.426667pt;}
.ya0{bottom:216.826667pt;}
.yf0{bottom:223.386667pt;}
.y6d{bottom:223.866667pt;}
.y3b{bottom:225.626667pt;}
.yef{bottom:238.106667pt;}
.y3a{bottom:240.986667pt;}
.y9f{bottom:245.146667pt;}
.y6c{bottom:252.026667pt;}
.yee{bottom:253.946667pt;}
.y39{bottom:254.106667pt;}
.ycc{bottom:254.746667pt;}
.y9e{bottom:264.666667pt;}
.ycb{bottom:269.946667pt;}
.y6b{bottom:271.546667pt;}
.yed{bottom:275.546667pt;}
.y38{bottom:282.426667pt;}
.y9d{bottom:284.186667pt;}
.y6a{bottom:291.066667pt;}
.yec{bottom:297.146667pt;}
.y9c{bottom:303.706667pt;}
.y69{bottom:310.586667pt;}
.y37{bottom:310.746667pt;}
.yeb{bottom:318.906667pt;}
.y9b{bottom:323.226667pt;}
.yca{bottom:330.106667pt;}
.y36{bottom:330.266667pt;}
.yea{bottom:340.506667pt;}
.y9a{bottom:342.746667pt;}
.y35{bottom:349.786667pt;}
.y66{bottom:358.426667pt;}
.ye9{bottom:362.106667pt;}
.y99{bottom:362.266667pt;}
.y34{bottom:369.346667pt;}
.yfa{bottom:377.346667pt;}
.y93{bottom:381.826667pt;}
.ye8{bottom:383.746667pt;}
.y65{bottom:386.786667pt;}
.y33{bottom:388.866667pt;}
.ye7{bottom:405.506667pt;}
.yc9{bottom:408.386667pt;}
.y95{bottom:412.226667pt;}
.y32{bottom:417.186667pt;}
.y64{bottom:422.306667pt;}
.ye6{bottom:427.106667pt;}
.yc8{bottom:427.906667pt;}
.y2e{bottom:436.706667pt;}
.y63{bottom:439.906667pt;}
.y92{bottom:441.346667pt;}
.yc7{bottom:447.426667pt;}
.ye5{bottom:448.706667pt;}
.y62{bottom:457.506667pt;}
.y91{bottom:458.946667pt;}
.yc6{bottom:466.946667pt;}
.ye4{bottom:468.866667pt;}
.y2d{bottom:472.066667pt;}
.y61{bottom:472.866667pt;}
.y90{bottom:476.546667pt;}
.yc2{bottom:486.466667pt;}
.y60{bottom:488.226667pt;}
.y2c{bottom:489.826667pt;}
.y8f{bottom:494.146667pt;}
.ye3{bottom:499.586667pt;}
.y5f{bottom:501.346667pt;}
.y2b{bottom:507.426667pt;}
.y8e{bottom:517.506667pt;}
.y5e{bottom:519.586667pt;}
.y2a{bottom:522.786667pt;}
.ye2{bottom:524.386667pt;}
.yc1{bottom:533.666667pt;}
.y5d{bottom:537.826667pt;}
.y29{bottom:538.146667pt;}
.y8d{bottom:538.626667pt;}
.ye1{bottom:545.986667pt;}
.yc0{bottom:551.266667pt;}
.y28{bottom:553.346667pt;}
.y5c{bottom:556.066667pt;}
.ye0{bottom:564.066667pt;}
.y26{bottom:566.466667pt;}
.ybf{bottom:569.026667pt;}
.y8c{bottom:569.986667pt;}
.y5b{bottom:574.306667pt;}
.yde{bottom:582.306667pt;}
.ybe{bottom:584.386667pt;}
.y25{bottom:586.173333pt;}
.y8b{bottom:589.533333pt;}
.y5a{bottom:592.573333pt;}
.ybd{bottom:599.613333pt;}
.ydd{bottom:600.573333pt;}
.y21{bottom:605.693333pt;}
.y59{bottom:610.973333pt;}
.ybc{bottom:614.973333pt;}
.ydc{bottom:618.813333pt;}
.y8a{bottom:620.893333pt;}
.y58{bottom:629.213333pt;}
.y20{bottom:633.853333pt;}
.ybb{bottom:636.093333pt;}
.y89{bottom:640.413333pt;}
.y57{bottom:647.453333pt;}
.y1e{bottom:653.373333pt;}
.ydb{bottom:655.293333pt;}
.yba{bottom:655.613333pt;}
.y56{bottom:665.693333pt;}
.y88{bottom:671.773333pt;}
.y1a{bottom:672.893333pt;}
.yb9{bottom:675.133333pt;}
.yda{bottom:677.853333pt;}
.y55{bottom:683.933333pt;}
.yf9{bottom:685.533333pt;}
.y87{bottom:691.293333pt;}
.yb8{bottom:694.813333pt;}
.y15{bottom:701.213333pt;}
.y54{bottom:702.173333pt;}
.yd9{bottom:708.253333pt;}
.yb7{bottom:714.333333pt;}
.y53{bottom:720.413333pt;}
.yd8{bottom:721.373333pt;}
.y86{bottom:722.653333pt;}
.yb5{bottom:733.853333pt;}
.y14{bottom:736.733333pt;}
.yd7{bottom:737.373333pt;}
.y51{bottom:738.813333pt;}
.y85{bottom:742.173333pt;}
.yd6{bottom:753.373333pt;}
.y13{bottom:754.333333pt;}
.y50{bottom:757.053333pt;}
.y84{bottom:761.693333pt;}
.yb4{bottom:770.333333pt;}
.y12{bottom:771.933333pt;}
.y4f{bottom:775.293333pt;}
.y80{bottom:781.213333pt;}
.y11{bottom:787.293333pt;}
.yd5{bottom:787.453333pt;}
.yb3{bottom:787.933333pt;}
.y4e{bottom:793.533333pt;}
.y10{bottom:802.653333pt;}
.yb2{bottom:803.333333pt;}
.yd4{bottom:808.613333pt;}
.y4d{bottom:811.813333pt;}
.y7f{bottom:812.613333pt;}
.yf{bottom:818.053333pt;}
.yb1{bottom:818.693333pt;}
.yd3{bottom:827.013333pt;}
.y4c{bottom:830.053333pt;}
.yb0{bottom:831.813333pt;}
.y7e{bottom:832.133333pt;}
.ye{bottom:833.413333pt;}
.yd2{bottom:845.253333pt;}
.yb{bottom:846.533333pt;}
.y4b{bottom:848.293333pt;}
.yaf{bottom:851.333333pt;}
.y7d{bottom:851.653333pt;}
.y4a{bottom:866.533333pt;}
.yae{bottom:870.853333pt;}
.y7c{bottom:871.173333pt;}
.ya{bottom:876.933333pt;}
.yd1{bottom:881.733333pt;}
.y49{bottom:884.933333pt;}
.yad{bottom:890.373333pt;}
.y9{bottom:892.293333pt;}
.yd0{bottom:904.293333pt;}
.y7b{bottom:906.693333pt;}
.y8{bottom:909.893333pt;}
.yf8{bottom:911.973333pt;}
.y48{bottom:920.773333pt;}
.y7a{bottom:924.293333pt;}
.y7{bottom:927.653333pt;}
.ya9{bottom:929.413333pt;}
.ycf{bottom:934.693333pt;}
.y47{bottom:939.013333pt;}
.y79{bottom:939.653333pt;}
.y6{bottom:945.413333pt;}
.yf7{bottom:947.813333pt;}
.y78{bottom:955.013333pt;}
.y45{bottom:957.253333pt;}
.y5{bottom:963.173333pt;}
.ya8{bottom:965.893333pt;}
.y77{bottom:968.133333pt;}
.yce{bottom:971.333333pt;}
.y42{bottom:975.493333pt;}
.y4{bottom:980.933333pt;}
.ya7{bottom:983.493333pt;}
.ycd{bottom:986.693333pt;}
.y76{bottom:987.653333pt;}
.y3{bottom:998.693333pt;}
.ya6{bottom:998.853333pt;}
.yf6{bottom:999.173333pt;}
.y75{bottom:1007.173333pt;}
.y2{bottom:1014.213333pt;}
.y1{bottom:1064.000000pt;}
.h21{height:15.200000pt;}
.h1d{height:15.360000pt;}
.h13{height:17.440000pt;}
.h11{height:17.600000pt;}
.h12{height:17.632000pt;}
.hd{height:18.720000pt;}
.h1b{height:18.752000pt;}
.h5{height:18.880000pt;}
.hf{height:18.912000pt;}
.h19{height:23.200000pt;}
.hc{height:27.520000pt;}
.hb{height:27.680000pt;}
.h14{height:27.712000pt;}
.he{height:29.600000pt;}
.h9{height:29.760000pt;}
.h16{height:30.560000pt;}
.h17{height:30.720000pt;}
.h15{height:30.752000pt;}
.h1c{height:31.828125pt;}
.ha{height:35.085938pt;}
.h10{height:35.200000pt;}
.h2{height:35.975313pt;}
.h7{height:38.672812pt;}
.h6{height:38.698750pt;}
.h8{height:38.828437pt;}
.h3{height:39.840000pt;}
.h4{height:39.943750pt;}
.h1a{height:41.440000pt;}
.h20{height:47.742188pt;}
.h18{height:53.600000pt;}
.h1e{height:56.160000pt;}
.h23{height:63.656250pt;}
.h1f{height:74.477812pt;}
.h22{height:89.760000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w65{width:14.560000pt;}
.w50{width:15.072000pt;}
.w66{width:16.480000pt;}
.w6a{width:16.512000pt;}
.w68{width:16.640000pt;}
.w56{width:17.600000pt;}
.w54{width:17.952000pt;}
.w5d{width:18.080000pt;}
.w5c{width:18.240000pt;}
.w52{width:22.080000pt;}
.w11{width:22.720000pt;}
.w3{width:22.752000pt;}
.w5{width:22.880000pt;}
.w3b{width:32.320000pt;}
.w32{width:33.120000pt;}
.w59{width:37.120000pt;}
.w39{width:38.080000pt;}
.w3a{width:38.112000pt;}
.w3c{width:38.240000pt;}
.w3f{width:38.400000pt;}
.w3d{width:38.720000pt;}
.w31{width:38.752000pt;}
.w30{width:38.880000pt;}
.w40{width:39.040000pt;}
.w35{width:39.200000pt;}
.w3e{width:39.232000pt;}
.w33{width:39.680000pt;}
.w34{width:40.032000pt;}
.w38{width:42.400000pt;}
.w2f{width:43.200000pt;}
.w1f{width:45.312000pt;}
.w1b{width:45.952000pt;}
.w20{width:46.240000pt;}
.w1c{width:46.880000pt;}
.w25{width:48.032000pt;}
.w4e{width:48.352000pt;}
.w21{width:48.800000pt;}
.w22{width:49.120000pt;}
.w47{width:49.152000pt;}
.w1d{width:49.440000pt;}
.w2d{width:51.712000pt;}
.w2c{width:51.840000pt;}
.w2a{width:52.032000pt;}
.w2b{width:52.160000pt;}
.w29{width:52.480000pt;}
.wf{width:52.512000pt;}
.w28{width:52.800000pt;}
.w61{width:52.832000pt;}
.wa{width:53.152000pt;}
.w16{width:55.840000pt;}
.w27{width:56.160000pt;}
.we{width:59.840000pt;}
.wc{width:60.160000pt;}
.w8{width:60.480000pt;}
.w10{width:60.800000pt;}
.w9{width:61.120000pt;}
.wb{width:61.440000pt;}
.w4a{width:61.760000pt;}
.w4c{width:61.920000pt;}
.w43{width:62.400000pt;}
.w45{width:62.560000pt;}
.w26{width:63.360000pt;}
.w41{width:67.200000pt;}
.w4d{width:67.360000pt;}
.w36{width:67.520000pt;}
.w46{width:68.000000pt;}
.w67{width:68.032000pt;}
.w4f{width:73.120000pt;}
.w4b{width:73.152000pt;}
.w48{width:73.760000pt;}
.w44{width:73.792000pt;}
.w14{width:74.880000pt;}
.w13{width:74.912000pt;}
.w12{width:75.040000pt;}
.w15{width:75.072000pt;}
.w6c{width:75.552000pt;}
.w62{width:79.520000pt;}
.w18{width:80.672000pt;}
.w19{width:84.320000pt;}
.w5b{width:84.352000pt;}
.w5e{width:84.480000pt;}
.w5a{width:86.560000pt;}
.w6{width:86.592000pt;}
.w64{width:87.072000pt;}
.w4{width:90.400000pt;}
.w69{width:94.400000pt;}
.w60{width:143.040000pt;}
.w63{width:170.106667pt;}
.w5f{width:173.346667pt;}
.w6f{width:188.986667pt;}
.w55{width:197.306667pt;}
.w58{width:206.946667pt;}
.w57{width:207.226667pt;}
.w49{width:214.786667pt;}
.w42{width:215.106667pt;}
.w53{width:230.146667pt;}
.w37{width:232.066667pt;}
.w2e{width:232.386667pt;}
.w51{width:238.746667pt;}
.w6b{width:278.746667pt;}
.w23{width:322.146667pt;}
.w17{width:339.586667pt;}
.wd{width:362.333333pt;}
.w7{width:362.653333pt;}
.w24{width:379.293333pt;}
.w1e{width:408.413333pt;}
.w1a{width:408.733333pt;}
.w6e{width:434.813333pt;}
.w6d{width:567.133333pt;}
.w70{width:588.733333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.xb{left:8.160000pt;}
.x21{left:9.920000pt;}
.x3{left:11.392000pt;}
.x46{left:12.320000pt;}
.x26{left:13.440000pt;}
.xd{left:15.040000pt;}
.x41{left:16.480000pt;}
.x34{left:17.920000pt;}
.x2f{left:19.200000pt;}
.x30{left:20.960000pt;}
.x12{left:22.920000pt;}
.x27{left:24.160000pt;}
.x11{left:26.560000pt;}
.x3b{left:28.320000pt;}
.x4f{left:30.240000pt;}
.x4e{left:33.120000pt;}
.x15{left:34.394667pt;}
.x31{left:45.600000pt;}
.x48{left:47.872000pt;}
.x47{left:53.792000pt;}
.x58{left:58.560000pt;}
.x28{left:66.240000pt;}
.x8{left:67.200000pt;}
.x49{left:69.600000pt;}
.x3c{left:71.040000pt;}
.x2{left:71.999988pt;}
.x32{left:87.392000pt;}
.x50{left:88.512000pt;}
.x53{left:91.232000pt;}
.x4{left:95.712000pt;}
.x13{left:100.032000pt;}
.x20{left:115.552000pt;}
.x1{left:119.231988pt;}
.x14{left:123.392000pt;}
.x9{left:145.146667pt;}
.x23{left:147.240000pt;}
.x62{left:159.066667pt;}
.x29{left:168.186667pt;}
.x22{left:172.026667pt;}
.x63{left:174.266667pt;}
.x59{left:176.986667pt;}
.x6{left:186.426667pt;}
.x64{left:191.066667pt;}
.x5a{left:195.226667pt;}
.x16{left:199.066667pt;}
.x7{left:209.946667pt;}
.x17{left:222.426667pt;}
.x5e{left:232.986655pt;}
.x5f{left:245.346667pt;}
.x65{left:258.786667pt;}
.x66{left:274.146667pt;}
.x56{left:280.386667pt;}
.x4a{left:284.706667pt;}
.x54{left:290.466667pt;}
.x18{left:298.146667pt;}
.x3d{left:303.426667pt;}
.x55{left:308.706667pt;}
.x57{left:318.146667pt;}
.x19{left:321.506667pt;}
.x51{left:329.186667pt;}
.x5b{left:337.026667pt;}
.x3e{left:346.626667pt;}
.x52{left:352.066667pt;}
.x33{left:368.546667pt;}
.x3f{left:385.506667pt;}
.x60{left:388.386667pt;}
.x1a{left:397.026667pt;}
.x67{left:400.546667pt;}
.x35{left:417.213333pt;}
.x1b{left:420.573333pt;}
.x5c{left:422.173333pt;}
.x40{left:424.253333pt;}
.xa{left:429.853333pt;}
.x5d{left:440.893333pt;}
.x42{left:457.373333pt;}
.x2a{left:474.973333pt;}
.x36{left:481.213333pt;}
.x4b{left:483.453333pt;}
.xc{left:490.333333pt;}
.x1c{left:496.093333pt;}
.x68{left:506.813333pt;}
.x24{left:512.253333pt;}
.x1d{left:519.453333pt;}
.x61{left:520.733333pt;}
.x2b{left:535.453333pt;}
.x37{left:537.373333pt;}
.xe{left:551.453333pt;}
.x43{left:575.973333pt;}
.x2c{left:581.413333pt;}
.x38{left:590.533333pt;}
.x25{left:593.573333pt;}
.x1e{left:595.173333pt;}
.x4c{left:600.613333pt;}
.xf{left:604.613333pt;}
.x44{left:615.173333pt;}
.x1f{left:618.533333pt;}
.x2d{left:628.293333pt;}
.x39{left:643.333333pt;}
.x45{left:654.853333pt;}
.x10{left:666.053333pt;}
.x4d{left:674.373333pt;}
.x2e{left:677.733333pt;}
.x3a{left:695.813333pt;}
}




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