
    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_de162a1d8fd7667877520678.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.201172;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_4c814b558510581ee6aaef91.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5b4257f31c0c28c1e19cb66d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_200230dba4b45058ef3d0627.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_91e872c133acbeda84f71ad4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bd29c9102cd3caa9d706810c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960449;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_69e3eaa97d1be169749e5420.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls14{letter-spacing:-1.896000px;}
.ls9{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.206000px;}
.lse{letter-spacing:-1.068000px;}
.ls11{letter-spacing:-0.966000px;}
.lsf{letter-spacing:-0.768000px;}
.ls12{letter-spacing:-0.732000px;}
.lsd{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.454800px;}
.lsb{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.305400px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.152400px;}
.ls24{letter-spacing:0.178560px;}
.lsa{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.305280px;}
.ls6{letter-spacing:0.429000px;}
.ls1{letter-spacing:0.535680px;}
.ls0{letter-spacing:0.593280px;}
.ls1b{letter-spacing:0.612000px;}
.ls13{letter-spacing:0.708000px;}
.ls2{letter-spacing:0.720000px;}
.ls22{letter-spacing:3.185280px;}
.ls1e{letter-spacing:6.480000px;}
.ls19{letter-spacing:36.305280px;}
.ls18{letter-spacing:40.625280px;}
.ls1a{letter-spacing:43.505280px;}
.ls1f{letter-spacing:103.985280px;}
.ls20{letter-spacing:108.305280px;}
.ls17{letter-spacing:125.741280px;}
.ls23{letter-spacing:132.797280px;}
.ls3{letter-spacing:144.461280px;}
.ls4{letter-spacing:151.661280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-17.172000px;}
.ws11{word-spacing:-16.712400px;}
.ws10{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.488000px;}
.ws15{word-spacing:-16.254600px;}
.ws14{word-spacing:-15.948000px;}
.ws6{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.399240px;}
.ws1{word-spacing:-14.515440px;}
.ws2{word-spacing:-14.506440px;}
.ws3{word-spacing:-13.680000px;}
.wse{word-spacing:-13.074720px;}
.wsd{word-spacing:-12.366720px;}
.ws4{word-spacing:-12.240000px;}
.wsc{word-spacing:-11.634720px;}
.ws9{word-spacing:-11.598720px;}
.wsb{word-spacing:-11.400720px;}
.ws8{word-spacing:-11.298720px;}
.wsa{word-spacing:-11.160720px;}
.wsf{word-spacing:-10.440000px;}
.ws12{word-spacing:0.000000px;}
._b{margin-left:-4.292400px;}
._3{margin-left:-2.931840px;}
._0{margin-left:-1.483200px;}
._1{width:1.112880px;}
._d{width:2.118480px;}
._c{width:3.378240px;}
._7{width:5.353920px;}
._5{width:7.220160px;}
._6{width:8.235600px;}
._4{width:9.796080px;}
._a{width:10.863840px;}
._2{width:12.068640px;}
._e{width:13.181760px;}
._f{width:14.346720px;}
._19{width:15.459840px;}
._10{width:18.216000px;}
._8{width:20.070720px;}
._9{width:21.499200px;}
._11{width:22.680000px;}
._20{width:23.708160px;}
._14{width:28.031040px;}
._13{width:29.278080px;}
._12{width:30.363840px;}
._1d{width:31.370640px;}
._1c{width:32.483520px;}
._1f{width:36.269520px;}
._1e{width:37.624320px;}
._15{width:46.864800px;}
._1a{width:67.527360px;}
._1b{width:145.396800px;}
._17{width:195.120000px;}
._16{width:196.740000px;}
._18{width:1197.816000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:3.600000px;}
.yab{bottom:3.645000px;}
.y4{bottom:4.320000px;}
.y2{bottom:5.040000px;}
.yc9{bottom:22.320000px;}
.ye5{bottom:22.350000px;}
.ycc{bottom:22.680000px;}
.ycf{bottom:22.725000px;}
.yc8{bottom:41.430000px;}
.ycb{bottom:41.760000px;}
.yce{bottom:41.805000px;}
.y5{bottom:55.080000px;}
.y3{bottom:57.960000px;}
.yc7{bottom:60.510000px;}
.yc6{bottom:79.590000px;}
.y7{bottom:97.596000px;}
.yc5{bottom:98.670000px;}
.y3b{bottom:109.116000px;}
.y6e{bottom:113.436000px;}
.y101{bottom:117.036000px;}
.yc2{bottom:122.796000px;}
.y9c{bottom:124.236000px;}
.y3a{bottom:126.756000px;}
.y6d{bottom:132.156000px;}
.y100{bottom:136.116000px;}
.yc1{bottom:141.876000px;}
.y9b{bottom:143.316000px;}
.y39{bottom:144.396000px;}
.y38{bottom:147.996000px;}
.y6c{bottom:151.230000px;}
.yff{bottom:155.190000px;}
.yc0{bottom:160.590000px;}
.y37{bottom:162.030000px;}
.y9a{bottom:162.390000px;}
.y6b{bottom:170.310000px;}
.yfe{bottom:173.910000px;}
.ycd{bottom:176.790000px;}
.y99{bottom:181.110000px;}
.y6a{bottom:189.030000px;}
.y36{bottom:190.830000px;}
.yfd{bottom:192.990000px;}
.y98{bottom:200.235000px;}
.y69{bottom:208.155000px;}
.y35{bottom:209.595000px;}
.yfc{bottom:212.115000px;}
.y97{bottom:219.315000px;}
.y68{bottom:227.235000px;}
.y34{bottom:228.675000px;}
.yfb{bottom:231.195000px;}
.yca{bottom:234.435000px;}
.y96{bottom:238.035000px;}
.y67{bottom:245.955000px;}
.y33{bottom:247.755000px;}
.yfa{bottom:249.915000px;}
.y95{bottom:257.115000px;}
.y66{bottom:265.035000px;}
.y118{bottom:265.395000px;}
.y32{bottom:266.835000px;}
.yf9{bottom:268.995000px;}
.y65{bottom:284.115000px;}
.y31{bottom:285.555000px;}
.yf8{bottom:288.075000px;}
.y94{bottom:290.955000px;}
.yc4{bottom:292.395000px;}
.y64{bottom:303.195000px;}
.y30{bottom:304.635000px;}
.y117{bottom:305.355000px;}
.yf7{bottom:306.795000px;}
.y93{bottom:310.035000px;}
.y2f{bottom:323.745000px;}
.y116{bottom:324.465000px;}
.yf6{bottom:325.905000px;}
.y92{bottom:329.145000px;}
.y63{bottom:337.065000px;}
.y2e{bottom:342.465000px;}
.yf5{bottom:344.985000px;}
.y91{bottom:348.225000px;}
.y62{bottom:356.145000px;}
.y115{bottom:361.185000px;}
.y2d{bottom:361.545000px;}
.yf4{bottom:364.065000px;}
.y90{bottom:366.945000px;}
.y61{bottom:374.865000px;}
.y2c{bottom:380.625000px;}
.yf3{bottom:382.785000px;}
.y8f{bottom:386.025000px;}
.y60{bottom:393.945000px;}
.y2b{bottom:399.345000px;}
.yf2{bottom:401.865000px;}
.y114{bottom:404.745000px;}
.y8e{bottom:405.105000px;}
.yc3{bottom:407.265000px;}
.y5f{bottom:413.025000px;}
.y2a{bottom:418.425000px;}
.yf1{bottom:420.945000px;}
.y8d{bottom:423.825000px;}
.y113{bottom:426.345000px;}
.y5e{bottom:431.745000px;}
.y29{bottom:437.505000px;}
.y8c{bottom:442.905000px;}
.ybf{bottom:445.065000px;}
.y112{bottom:448.305000px;}
.y5d{bottom:450.870000px;}
.y28{bottom:456.630000px;}
.yf0{bottom:457.710000px;}
.y8b{bottom:462.030000px;}
.ybe{bottom:464.190000px;}
.y5c{bottom:469.950000px;}
.y111{bottom:470.310000px;}
.y27{bottom:475.350000px;}
.yef{bottom:476.790000px;}
.y8a{bottom:480.750000px;}
.ybd{bottom:483.270000px;}
.y5b{bottom:489.030000px;}
.y110{bottom:491.910000px;}
.y26{bottom:494.430000px;}
.yee{bottom:495.510000px;}
.y89{bottom:499.830000px;}
.ybc{bottom:501.990000px;}
.y5a{bottom:507.750000px;}
.y25{bottom:513.510000px;}
.y10f{bottom:513.870000px;}
.yed{bottom:514.590000px;}
.y88{bottom:518.910000px;}
.ybb{bottom:521.070000px;}
.y59{bottom:526.830000px;}
.y24{bottom:532.230000px;}
.yec{bottom:533.670000px;}
.y10e{bottom:535.830000px;}
.y87{bottom:537.990000px;}
.yba{bottom:540.150000px;}
.y58{bottom:545.910000px;}
.y23{bottom:551.310000px;}
.yeb{bottom:552.390000px;}
.y86{bottom:556.710000px;}
.y10d{bottom:557.430000px;}
.yb9{bottom:559.230000px;}
.y57{bottom:564.630000px;}
.yea{bottom:568.230000px;}
.y22{bottom:570.390000px;}
.y85{bottom:575.820000px;}
.yb8{bottom:577.980000px;}
.y10c{bottom:579.420000px;}
.y56{bottom:583.740000px;}
.ye9{bottom:587.700000px;}
.y21{bottom:589.140000px;}
.y84{bottom:594.900000px;}
.yb7{bottom:597.060000px;}
.y10b{bottom:601.020000px;}
.y55{bottom:602.820000px;}
.ye8{bottom:607.140000px;}
.y20{bottom:608.220000px;}
.y83{bottom:613.620000px;}
.yb6{bottom:616.140000px;}
.y54{bottom:621.540000px;}
.y10a{bottom:622.980000px;}
.ye7{bottom:626.220000px;}
.y1f{bottom:627.300000px;}
.y82{bottom:632.700000px;}
.yb5{bottom:634.860000px;}
.y53{bottom:640.620000px;}
.y109{bottom:644.940000px;}
.ye6{bottom:645.660000px;}
.y1e{bottom:646.380000px;}
.y81{bottom:651.780000px;}
.yb4{bottom:653.940000px;}
.y1d{bottom:665.100000px;}
.y108{bottom:666.540000px;}
.y80{bottom:670.860000px;}
.yb3{bottom:673.020000px;}
.y52{bottom:674.460000px;}
.y1c{bottom:684.180000px;}
.ye4{bottom:684.540000px;}
.y107{bottom:685.620000px;}
.y7f{bottom:689.580000px;}
.yb2{bottom:691.740000px;}
.y51{bottom:693.540000px;}
.y1b{bottom:703.290000px;}
.y106{bottom:704.730000px;}
.y7e{bottom:708.690000px;}
.yb1{bottom:710.850000px;}
.y50{bottom:712.650000px;}
.y1a{bottom:722.010000px;}
.y105{bottom:723.810000px;}
.ye3{bottom:726.330000px;}
.y7d{bottom:727.770000px;}
.yb0{bottom:729.930000px;}
.y4f{bottom:731.730000px;}
.y19{bottom:741.090000px;}
.y104{bottom:742.530000px;}
.y7c{bottom:746.490000px;}
.yaf{bottom:749.010000px;}
.y4e{bottom:750.450000px;}
.ye2{bottom:760.170000px;}
.y103{bottom:761.610000px;}
.y18{bottom:762.690000px;}
.y7b{bottom:765.570000px;}
.yae{bottom:767.730000px;}
.y4d{bottom:769.530000px;}
.ye1{bottom:779.250000px;}
.y102{bottom:780.690000px;}
.yad{bottom:783.930000px;}
.y7a{bottom:784.650000px;}
.y4c{bottom:788.610000px;}
.ye0{bottom:798.330000px;}
.y17{bottom:799.410000px;}
.yac{bottom:803.730000px;}
.y4b{bottom:807.330000px;}
.ydf{bottom:817.410000px;}
.y16{bottom:818.490000px;}
.yaa{bottom:823.530000px;}
.y4a{bottom:826.410000px;}
.yde{bottom:836.175000px;}
.y15{bottom:837.615000px;}
.ya9{bottom:843.015000px;}
.y49{bottom:845.535000px;}
.ydd{bottom:855.255000px;}
.y79{bottom:856.695000px;}
.y14{bottom:858.855000px;}
.ya8{bottom:862.815000px;}
.y48{bottom:864.615000px;}
.ydc{bottom:874.335000px;}
.y78{bottom:875.415000px;}
.ya7{bottom:882.615000px;}
.y47{bottom:883.335000px;}
.ydb{bottom:893.055000px;}
.y13{bottom:894.135000px;}
.y77{bottom:894.495000px;}
.y46{bottom:902.415000px;}
.yda{bottom:912.135000px;}
.y76{bottom:913.575000px;}
.y45{bottom:921.495000px;}
.ya6{bottom:922.215000px;}
.yd9{bottom:928.335000px;}
.y75{bottom:932.295000px;}
.y44{bottom:940.215000px;}
.ya5{bottom:941.655000px;}
.yd8{bottom:948.135000px;}
.y74{bottom:951.375000px;}
.y12{bottom:954.645000px;}
.ya4{bottom:961.485000px;}
.y11{bottom:965.805000px;}
.yd7{bottom:967.605000px;}
.y73{bottom:970.485000px;}
.y43{bottom:974.085000px;}
.ya3{bottom:981.285000px;}
.yd6{bottom:987.405000px;}
.y72{bottom:989.205000px;}
.y10{bottom:991.005000px;}
.y42{bottom:993.165000px;}
.ya2{bottom:1001.085000px;}
.yd5{bottom:1007.205000px;}
.y71{bottom:1008.285000px;}
.yf{bottom:1012.245000px;}
.ya1{bottom:1020.885000px;}
.yd4{bottom:1027.005000px;}
.y70{bottom:1027.365000px;}
.ye{bottom:1034.205000px;}
.ya0{bottom:1040.325000px;}
.y41{bottom:1046.085000px;}
.y6f{bottom:1046.445000px;}
.yd3{bottom:1050.405000px;}
.yd{bottom:1056.165000px;}
.y9f{bottom:1060.125000px;}
.y40{bottom:1065.165000px;}
.yd2{bottom:1069.125000px;}
.yc{bottom:1073.445000px;}
.y9d{bottom:1079.970000px;}
.y3f{bottom:1084.290000px;}
.yd1{bottom:1088.250000px;}
.yb{bottom:1090.770000px;}
.y3e{bottom:1103.370000px;}
.yd0{bottom:1107.330000px;}
.ya{bottom:1108.050000px;}
.y3d{bottom:1122.090000px;}
.y9{bottom:1125.330000px;}
.y3c{bottom:1141.170000px;}
.y8{bottom:1142.610000px;}
.y1{bottom:1188.330000px;}
.y6{bottom:1206.000000px;}
.h4{height:18.036000px;}
.h15{height:18.720000px;}
.h16{height:18.756000px;}
.h13{height:19.080000px;}
.h14{height:19.116000px;}
.h2{height:19.836000px;}
.h9{height:22.960547px;}
.hf{height:33.830156px;}
.h1b{height:37.836000px;}
.h5{height:39.570469px;}
.h8{height:41.547656px;}
.h6{height:43.735781px;}
.ha{height:45.921094px;}
.he{height:47.901094px;}
.h18{height:48.224531px;}
.hd{height:49.097812px;}
.h10{height:52.624688px;}
.h1a{height:56.916000px;}
.h19{height:57.240000px;}
.h11{height:57.558516px;}
.hc{height:61.192969px;}
.h12{height:63.070312px;}
.h3{height:67.824844px;}
.h7{height:73.722656px;}
.hb{height:85.518281px;}
.h17{height:113.796000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:37.800000px;}
.w17{width:46.440000px;}
.w8{width:50.400000px;}
.wa{width:50.436000px;}
.wb{width:50.760000px;}
.w9{width:50.796000px;}
.w16{width:52.596000px;}
.w15{width:52.920000px;}
.w11{width:52.956000px;}
.w1a{width:53.280000px;}
.w12{width:53.316000px;}
.w14{width:55.116000px;}
.w18{width:56.196000px;}
.w19{width:56.556000px;}
.w13{width:59.040000px;}
.w7{width:72.036000px;}
.wc{width:79.236000px;}
.w10{width:79.560000px;}
.w1b{width:84.996000px;}
.w1c{width:128.916000px;}
.w3{width:142.632000px;}
.w1f{width:148.752000px;}
.we{width:165.675000px;}
.w1e{width:169.995000px;}
.wd{width:187.950000px;}
.wf{width:260.745000px;}
.w1d{width:274.425000px;}
.w2{width:558.930000px;}
.w6{width:893.159973px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x5{left:4.680000px;}
.x13{left:7.920000px;}
.x24{left:18.000000px;}
.x23{left:34.950000px;}
.x26{left:40.005000px;}
.x28{left:51.516000px;}
.x25{left:61.950000px;}
.x12{left:83.196000px;}
.x35{left:93.636000px;}
.x3{left:104.796000px;}
.x6{left:106.235987px;}
.xf{left:111.635987px;}
.xb{left:130.355987px;}
.x29{left:131.796000px;}
.x11{left:133.235987px;}
.x20{left:139.032000px;}
.xc{left:156.674973px;}
.xd{left:164.954987px;}
.x1{left:167.115000px;}
.x27{left:173.234987px;}
.x2a{left:185.475000px;}
.x10{left:187.274987px;}
.x14{left:207.075000px;}
.x7{left:218.954987px;}
.x36{left:222.915000px;}
.x2b{left:239.505000px;}
.x15{left:258.585000px;}
.xa{left:283.784987px;}
.x2c{left:299.265000px;}
.x16{left:309.705000px;}
.xe{left:322.304987px;}
.x21{left:327.705000px;}
.x2d{left:355.110000px;}
.x9{left:356.189987px;}
.x17{left:361.230000px;}
.x8{left:386.069987px;}
.x2e{left:408.750000px;}
.x18{left:412.350000px;}
.x2f{left:462.060000px;}
.x19{left:463.860000px;}
.x22{left:494.100000px;}
.x37{left:497.700000px;}
.x30{left:509.220000px;}
.x1a{left:514.980000px;}
.x1b{left:566.490000px;}
.x1c{left:617.655000px;}
.x31{left:623.415000px;}
.x38{left:667.695000px;}
.x1d{left:669.135000px;}
.x32{left:677.055000px;}
.x1e{left:720.285000px;}
.x33{left:730.725000px;}
.x4{left:755.565000px;}
.x1f{left:771.765000px;}
.x34{left:784.725000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls14{letter-spacing:-1.685333pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.072000pt;}
.lse{letter-spacing:-0.949333pt;}
.ls11{letter-spacing:-0.858667pt;}
.lsf{letter-spacing:-0.682667pt;}
.ls12{letter-spacing:-0.650667pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.404267pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.135467pt;}
.ls24{letter-spacing:0.158720pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.271360pt;}
.ls6{letter-spacing:0.381333pt;}
.ls1{letter-spacing:0.476160pt;}
.ls0{letter-spacing:0.527360pt;}
.ls1b{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.629333pt;}
.ls2{letter-spacing:0.640000pt;}
.ls22{letter-spacing:2.831360pt;}
.ls1e{letter-spacing:5.760000pt;}
.ls19{letter-spacing:32.271360pt;}
.ls18{letter-spacing:36.111360pt;}
.ls1a{letter-spacing:38.671360pt;}
.ls1f{letter-spacing:92.431360pt;}
.ls20{letter-spacing:96.271360pt;}
.ls17{letter-spacing:111.770027pt;}
.ls23{letter-spacing:118.042027pt;}
.ls3{letter-spacing:128.410027pt;}
.ls4{letter-spacing:134.810027pt;}
.ws13{word-spacing:-15.264000pt;}
.ws11{word-spacing:-14.855467pt;}
.ws10{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.656000pt;}
.ws15{word-spacing:-14.448533pt;}
.ws14{word-spacing:-14.176000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.688213pt;}
.ws1{word-spacing:-12.902613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws3{word-spacing:-12.160000pt;}
.wse{word-spacing:-11.621973pt;}
.wsd{word-spacing:-10.992640pt;}
.ws4{word-spacing:-10.880000pt;}
.wsc{word-spacing:-10.341973pt;}
.ws9{word-spacing:-10.309973pt;}
.wsb{word-spacing:-10.133973pt;}
.ws8{word-spacing:-10.043307pt;}
.wsa{word-spacing:-9.920640pt;}
.wsf{word-spacing:-9.280000pt;}
.ws12{word-spacing:0.000000pt;}
._b{margin-left:-3.815467pt;}
._3{margin-left:-2.606080pt;}
._0{margin-left:-1.318400pt;}
._1{width:0.989227pt;}
._d{width:1.883093pt;}
._c{width:3.002880pt;}
._7{width:4.759040pt;}
._5{width:6.417920pt;}
._6{width:7.320533pt;}
._4{width:8.707627pt;}
._a{width:9.656747pt;}
._2{width:10.727680pt;}
._e{width:11.717120pt;}
._f{width:12.752640pt;}
._19{width:13.742080pt;}
._10{width:16.192000pt;}
._8{width:17.840640pt;}
._9{width:19.110400pt;}
._11{width:20.160000pt;}
._20{width:21.073920pt;}
._14{width:24.916480pt;}
._13{width:26.024960pt;}
._12{width:26.990080pt;}
._1d{width:27.885013pt;}
._1c{width:28.874240pt;}
._1f{width:32.239573pt;}
._1e{width:33.443840pt;}
._15{width:41.657600pt;}
._1a{width:60.024320pt;}
._1b{width:129.241600pt;}
._17{width:173.440000pt;}
._16{width:174.880000pt;}
._18{width:1064.725333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:3.200000pt;}
.yab{bottom:3.240000pt;}
.y4{bottom:3.840000pt;}
.y2{bottom:4.480000pt;}
.yc9{bottom:19.840000pt;}
.ye5{bottom:19.866667pt;}
.ycc{bottom:20.160000pt;}
.ycf{bottom:20.200000pt;}
.yc8{bottom:36.826667pt;}
.ycb{bottom:37.120000pt;}
.yce{bottom:37.160000pt;}
.y5{bottom:48.960000pt;}
.y3{bottom:51.520000pt;}
.yc7{bottom:53.786667pt;}
.yc6{bottom:70.746667pt;}
.y7{bottom:86.752000pt;}
.yc5{bottom:87.706667pt;}
.y3b{bottom:96.992000pt;}
.y6e{bottom:100.832000pt;}
.y101{bottom:104.032000pt;}
.yc2{bottom:109.152000pt;}
.y9c{bottom:110.432000pt;}
.y3a{bottom:112.672000pt;}
.y6d{bottom:117.472000pt;}
.y100{bottom:120.992000pt;}
.yc1{bottom:126.112000pt;}
.y9b{bottom:127.392000pt;}
.y39{bottom:128.352000pt;}
.y38{bottom:131.552000pt;}
.y6c{bottom:134.426667pt;}
.yff{bottom:137.946667pt;}
.yc0{bottom:142.746667pt;}
.y37{bottom:144.026667pt;}
.y9a{bottom:144.346667pt;}
.y6b{bottom:151.386667pt;}
.yfe{bottom:154.586667pt;}
.ycd{bottom:157.146667pt;}
.y99{bottom:160.986667pt;}
.y6a{bottom:168.026667pt;}
.y36{bottom:169.626667pt;}
.yfd{bottom:171.546667pt;}
.y98{bottom:177.986667pt;}
.y69{bottom:185.026667pt;}
.y35{bottom:186.306667pt;}
.yfc{bottom:188.546667pt;}
.y97{bottom:194.946667pt;}
.y68{bottom:201.986667pt;}
.y34{bottom:203.266667pt;}
.yfb{bottom:205.506667pt;}
.yca{bottom:208.386667pt;}
.y96{bottom:211.586667pt;}
.y67{bottom:218.626667pt;}
.y33{bottom:220.226667pt;}
.yfa{bottom:222.146667pt;}
.y95{bottom:228.546667pt;}
.y66{bottom:235.586667pt;}
.y118{bottom:235.906667pt;}
.y32{bottom:237.186667pt;}
.yf9{bottom:239.106667pt;}
.y65{bottom:252.546667pt;}
.y31{bottom:253.826667pt;}
.yf8{bottom:256.066667pt;}
.y94{bottom:258.626667pt;}
.yc4{bottom:259.906667pt;}
.y64{bottom:269.506667pt;}
.y30{bottom:270.786667pt;}
.y117{bottom:271.426667pt;}
.yf7{bottom:272.706667pt;}
.y93{bottom:275.586667pt;}
.y2f{bottom:287.773333pt;}
.y116{bottom:288.413333pt;}
.yf6{bottom:289.693333pt;}
.y92{bottom:292.573333pt;}
.y63{bottom:299.613333pt;}
.y2e{bottom:304.413333pt;}
.yf5{bottom:306.653333pt;}
.y91{bottom:309.533333pt;}
.y62{bottom:316.573333pt;}
.y115{bottom:321.053333pt;}
.y2d{bottom:321.373333pt;}
.yf4{bottom:323.613333pt;}
.y90{bottom:326.173333pt;}
.y61{bottom:333.213333pt;}
.y2c{bottom:338.333333pt;}
.yf3{bottom:340.253333pt;}
.y8f{bottom:343.133333pt;}
.y60{bottom:350.173333pt;}
.y2b{bottom:354.973333pt;}
.yf2{bottom:357.213333pt;}
.y114{bottom:359.773333pt;}
.y8e{bottom:360.093333pt;}
.yc3{bottom:362.013333pt;}
.y5f{bottom:367.133333pt;}
.y2a{bottom:371.933333pt;}
.yf1{bottom:374.173333pt;}
.y8d{bottom:376.733333pt;}
.y113{bottom:378.973333pt;}
.y5e{bottom:383.773333pt;}
.y29{bottom:388.893333pt;}
.y8c{bottom:393.693333pt;}
.ybf{bottom:395.613333pt;}
.y112{bottom:398.493333pt;}
.y5d{bottom:400.773333pt;}
.y28{bottom:405.893333pt;}
.yf0{bottom:406.853333pt;}
.y8b{bottom:410.693333pt;}
.ybe{bottom:412.613333pt;}
.y5c{bottom:417.733333pt;}
.y111{bottom:418.053333pt;}
.y27{bottom:422.533333pt;}
.yef{bottom:423.813333pt;}
.y8a{bottom:427.333333pt;}
.ybd{bottom:429.573333pt;}
.y5b{bottom:434.693333pt;}
.y110{bottom:437.253333pt;}
.y26{bottom:439.493333pt;}
.yee{bottom:440.453333pt;}
.y89{bottom:444.293333pt;}
.ybc{bottom:446.213333pt;}
.y5a{bottom:451.333333pt;}
.y25{bottom:456.453333pt;}
.y10f{bottom:456.773333pt;}
.yed{bottom:457.413333pt;}
.y88{bottom:461.253333pt;}
.ybb{bottom:463.173333pt;}
.y59{bottom:468.293333pt;}
.y24{bottom:473.093333pt;}
.yec{bottom:474.373333pt;}
.y10e{bottom:476.293333pt;}
.y87{bottom:478.213333pt;}
.yba{bottom:480.133333pt;}
.y58{bottom:485.253333pt;}
.y23{bottom:490.053333pt;}
.yeb{bottom:491.013333pt;}
.y86{bottom:494.853333pt;}
.y10d{bottom:495.493333pt;}
.yb9{bottom:497.093333pt;}
.y57{bottom:501.893333pt;}
.yea{bottom:505.093333pt;}
.y22{bottom:507.013333pt;}
.y85{bottom:511.840000pt;}
.yb8{bottom:513.760000pt;}
.y10c{bottom:515.040000pt;}
.y56{bottom:518.880000pt;}
.ye9{bottom:522.400000pt;}
.y21{bottom:523.680000pt;}
.y84{bottom:528.800000pt;}
.yb7{bottom:530.720000pt;}
.y10b{bottom:534.240000pt;}
.y55{bottom:535.840000pt;}
.ye8{bottom:539.680000pt;}
.y20{bottom:540.640000pt;}
.y83{bottom:545.440000pt;}
.yb6{bottom:547.680000pt;}
.y54{bottom:552.480000pt;}
.y10a{bottom:553.760000pt;}
.ye7{bottom:556.640000pt;}
.y1f{bottom:557.600000pt;}
.y82{bottom:562.400000pt;}
.yb5{bottom:564.320000pt;}
.y53{bottom:569.440000pt;}
.y109{bottom:573.280000pt;}
.ye6{bottom:573.920000pt;}
.y1e{bottom:574.560000pt;}
.y81{bottom:579.360000pt;}
.yb4{bottom:581.280000pt;}
.y1d{bottom:591.200000pt;}
.y108{bottom:592.480000pt;}
.y80{bottom:596.320000pt;}
.yb3{bottom:598.240000pt;}
.y52{bottom:599.520000pt;}
.y1c{bottom:608.160000pt;}
.ye4{bottom:608.480000pt;}
.y107{bottom:609.440000pt;}
.y7f{bottom:612.960000pt;}
.yb2{bottom:614.880000pt;}
.y51{bottom:616.480000pt;}
.y1b{bottom:625.146667pt;}
.y106{bottom:626.426667pt;}
.y7e{bottom:629.946667pt;}
.yb1{bottom:631.866667pt;}
.y50{bottom:633.466667pt;}
.y1a{bottom:641.786667pt;}
.y105{bottom:643.386667pt;}
.ye3{bottom:645.626667pt;}
.y7d{bottom:646.906667pt;}
.yb0{bottom:648.826667pt;}
.y4f{bottom:650.426667pt;}
.y19{bottom:658.746667pt;}
.y104{bottom:660.026667pt;}
.y7c{bottom:663.546667pt;}
.yaf{bottom:665.786667pt;}
.y4e{bottom:667.066667pt;}
.ye2{bottom:675.706667pt;}
.y103{bottom:676.986667pt;}
.y18{bottom:677.946667pt;}
.y7b{bottom:680.506667pt;}
.yae{bottom:682.426667pt;}
.y4d{bottom:684.026667pt;}
.ye1{bottom:692.666667pt;}
.y102{bottom:693.946667pt;}
.yad{bottom:696.826667pt;}
.y7a{bottom:697.466667pt;}
.y4c{bottom:700.986667pt;}
.ye0{bottom:709.626667pt;}
.y17{bottom:710.586667pt;}
.yac{bottom:714.426667pt;}
.y4b{bottom:717.626667pt;}
.ydf{bottom:726.586667pt;}
.y16{bottom:727.546667pt;}
.yaa{bottom:732.026667pt;}
.y4a{bottom:734.586667pt;}
.yde{bottom:743.266667pt;}
.y15{bottom:744.546667pt;}
.ya9{bottom:749.346667pt;}
.y49{bottom:751.586667pt;}
.ydd{bottom:760.226667pt;}
.y79{bottom:761.506667pt;}
.y14{bottom:763.426667pt;}
.ya8{bottom:766.946667pt;}
.y48{bottom:768.546667pt;}
.ydc{bottom:777.186667pt;}
.y78{bottom:778.146667pt;}
.ya7{bottom:784.546667pt;}
.y47{bottom:785.186667pt;}
.ydb{bottom:793.826667pt;}
.y13{bottom:794.786667pt;}
.y77{bottom:795.106667pt;}
.y46{bottom:802.146667pt;}
.yda{bottom:810.786667pt;}
.y76{bottom:812.066667pt;}
.y45{bottom:819.106667pt;}
.ya6{bottom:819.746667pt;}
.yd9{bottom:825.186667pt;}
.y75{bottom:828.706667pt;}
.y44{bottom:835.746667pt;}
.ya5{bottom:837.026667pt;}
.yd8{bottom:842.786667pt;}
.y74{bottom:845.666667pt;}
.y12{bottom:848.573333pt;}
.ya4{bottom:854.653333pt;}
.y11{bottom:858.493333pt;}
.yd7{bottom:860.093333pt;}
.y73{bottom:862.653333pt;}
.y43{bottom:865.853333pt;}
.ya3{bottom:872.253333pt;}
.yd6{bottom:877.693333pt;}
.y72{bottom:879.293333pt;}
.y10{bottom:880.893333pt;}
.y42{bottom:882.813333pt;}
.ya2{bottom:889.853333pt;}
.yd5{bottom:895.293333pt;}
.y71{bottom:896.253333pt;}
.yf{bottom:899.773333pt;}
.ya1{bottom:907.453333pt;}
.yd4{bottom:912.893333pt;}
.y70{bottom:913.213333pt;}
.ye{bottom:919.293333pt;}
.ya0{bottom:924.733333pt;}
.y41{bottom:929.853333pt;}
.y6f{bottom:930.173333pt;}
.yd3{bottom:933.693333pt;}
.yd{bottom:938.813333pt;}
.y9f{bottom:942.333333pt;}
.y40{bottom:946.813333pt;}
.yd2{bottom:950.333333pt;}
.yc{bottom:954.173333pt;}
.y9d{bottom:959.973333pt;}
.y3f{bottom:963.813333pt;}
.yd1{bottom:967.333333pt;}
.yb{bottom:969.573333pt;}
.y3e{bottom:980.773333pt;}
.yd0{bottom:984.293333pt;}
.ya{bottom:984.933333pt;}
.y3d{bottom:997.413333pt;}
.y9{bottom:1000.293333pt;}
.y3c{bottom:1014.373333pt;}
.y8{bottom:1015.653333pt;}
.y1{bottom:1056.293333pt;}
.y6{bottom:1072.000000pt;}
.h4{height:16.032000pt;}
.h15{height:16.640000pt;}
.h16{height:16.672000pt;}
.h13{height:16.960000pt;}
.h14{height:16.992000pt;}
.h2{height:17.632000pt;}
.h9{height:20.409375pt;}
.hf{height:30.071250pt;}
.h1b{height:33.632000pt;}
.h5{height:35.173750pt;}
.h8{height:36.931250pt;}
.h6{height:38.876250pt;}
.ha{height:40.818750pt;}
.he{height:42.578750pt;}
.h18{height:42.866250pt;}
.hd{height:43.642500pt;}
.h10{height:46.777500pt;}
.h1a{height:50.592000pt;}
.h19{height:50.880000pt;}
.h11{height:51.163125pt;}
.hc{height:54.393750pt;}
.h12{height:56.062500pt;}
.h3{height:60.288750pt;}
.h7{height:65.531250pt;}
.hb{height:76.016250pt;}
.h17{height:101.152000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:33.600000pt;}
.w17{width:41.280000pt;}
.w8{width:44.800000pt;}
.wa{width:44.832000pt;}
.wb{width:45.120000pt;}
.w9{width:45.152000pt;}
.w16{width:46.752000pt;}
.w15{width:47.040000pt;}
.w11{width:47.072000pt;}
.w1a{width:47.360000pt;}
.w12{width:47.392000pt;}
.w14{width:48.992000pt;}
.w18{width:49.952000pt;}
.w19{width:50.272000pt;}
.w13{width:52.480000pt;}
.w7{width:64.032000pt;}
.wc{width:70.432000pt;}
.w10{width:70.720000pt;}
.w1b{width:75.552000pt;}
.w1c{width:114.592000pt;}
.w3{width:126.784000pt;}
.w1f{width:132.224000pt;}
.we{width:147.266667pt;}
.w1e{width:151.106667pt;}
.wd{width:167.066667pt;}
.wf{width:231.773333pt;}
.w1d{width:243.933333pt;}
.w2{width:496.826667pt;}
.w6{width:793.919976pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x5{left:4.160000pt;}
.x13{left:7.040000pt;}
.x24{left:16.000000pt;}
.x23{left:31.066667pt;}
.x26{left:35.560000pt;}
.x28{left:45.792000pt;}
.x25{left:55.066667pt;}
.x12{left:73.952000pt;}
.x35{left:83.232000pt;}
.x3{left:93.152000pt;}
.x6{left:94.431988pt;}
.xf{left:99.231988pt;}
.xb{left:115.871988pt;}
.x29{left:117.152000pt;}
.x11{left:118.431988pt;}
.x20{left:123.584000pt;}
.xc{left:139.266643pt;}
.xd{left:146.626655pt;}
.x1{left:148.546667pt;}
.x27{left:153.986655pt;}
.x2a{left:164.866667pt;}
.x10{left:166.466655pt;}
.x14{left:184.066667pt;}
.x7{left:194.626655pt;}
.x36{left:198.146667pt;}
.x2b{left:212.893333pt;}
.x15{left:229.853333pt;}
.xa{left:252.253322pt;}
.x2c{left:266.013333pt;}
.x16{left:275.293333pt;}
.xe{left:286.493322pt;}
.x21{left:291.293333pt;}
.x2d{left:315.653333pt;}
.x9{left:316.613322pt;}
.x17{left:321.093333pt;}
.x8{left:343.173322pt;}
.x2e{left:363.333333pt;}
.x18{left:366.533333pt;}
.x2f{left:410.720000pt;}
.x19{left:412.320000pt;}
.x22{left:439.200000pt;}
.x37{left:442.400000pt;}
.x30{left:452.640000pt;}
.x1a{left:457.760000pt;}
.x1b{left:503.546667pt;}
.x1c{left:549.026667pt;}
.x31{left:554.146667pt;}
.x38{left:593.506667pt;}
.x1d{left:594.786667pt;}
.x32{left:601.826667pt;}
.x1e{left:640.253333pt;}
.x33{left:649.533333pt;}
.x4{left:671.613333pt;}
.x1f{left:686.013333pt;}
.x34{left:697.533333pt;}
}




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