
    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_b255ca6293b1726471e2a071.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_216bf80168a535816906731b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_b0107291eeff5d4ebee8387f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff4{font-family:ff4;line-height:0.813477;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bc3f072d81975c2321b42e28.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e49c2598c2df541f3888883f.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_306bdd3af4d52ee771364d6e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4638587fac5b416e381617c1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.738770;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_42334d23e6189130c8bcbac8.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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: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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2abdec4f9756467082b35907.woff')format("woff");}.ffd{font-family:ffd;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;}
.m6{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m3{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.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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:-20.880000px;}
.v4{vertical-align:-15.120000px;}
.v6{vertical-align:-12.240000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-6.600000px;}
.ls40{letter-spacing:-3.324000px;}
.ls41{letter-spacing:-2.628000px;}
.ls36{letter-spacing:-1.230000px;}
.ls32{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.924000px;}
.ls17{letter-spacing:-0.774000px;}
.lsf{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.529800px;}
.ls3f{letter-spacing:-0.529200px;}
.lsa{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.460200px;}
.lse{letter-spacing:-0.360000px;}
.ls35{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.206400px;}
.ls31{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.021840px;}
.ls15{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.119520px;}
.ls30{letter-spacing:0.153600px;}
.ls21{letter-spacing:0.158400px;}
.ls22{letter-spacing:0.169200px;}
.ls2{letter-spacing:0.180000px;}
.ls3d{letter-spacing:0.180600px;}
.ls28{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.256200px;}
.ls2f{letter-spacing:0.259800px;}
.ls25{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.366000px;}
.ls1a{letter-spacing:0.434163px;}
.ls33{letter-spacing:0.480000px;}
.ls23{letter-spacing:0.513600px;}
.ls42{letter-spacing:0.524400px;}
.ls37{letter-spacing:0.666000px;}
.ls1c{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.858000px;}
.ls39{letter-spacing:0.868326px;}
.ls1d{letter-spacing:0.870000px;}
.ls1b{letter-spacing:0.882000px;}
.ls24{letter-spacing:0.888000px;}
.ls3b{letter-spacing:0.900000px;}
.ls20{letter-spacing:0.918000px;}
.ls3e{letter-spacing:1.062000px;}
.ls2c{letter-spacing:1.620000px;}
.ls16{letter-spacing:2.340000px;}
.ls6{letter-spacing:3.036000px;}
.ls7{letter-spacing:3.060000px;}
.ls4{letter-spacing:5.220000px;}
.ls3a{letter-spacing:5.325942px;}
.ls26{letter-spacing:5.940000px;}
.ls38{letter-spacing:7.380000px;}
.ls29{letter-spacing:8.100000px;}
.ls3c{letter-spacing:9.518895px;}
.ls2a{letter-spacing:16.506720px;}
.ls2d{letter-spacing:17.226720px;}
.ls2b{letter-spacing:17.946720px;}
.lsc{letter-spacing:18.900000px;}
.ls2e{letter-spacing:20.106720px;}
.ls34{letter-spacing:20.826720px;}
.ls11{letter-spacing:46.002720px;}
.ls27{letter-spacing:46.026720px;}
.ls10{letter-spacing:49.602720px;}
.ls3{letter-spacing:73.596000px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws25{word-spacing:-16.002000px;}
.ws15{word-spacing:-15.858000px;}
.ws1a{word-spacing:-15.828000px;}
.ws16{word-spacing:-15.822000px;}
.ws12{word-spacing:-15.810000px;}
.ws10{word-spacing:-15.798000px;}
.ws14{word-spacing:-15.660000px;}
.ws22{word-spacing:-15.606000px;}
.ws26{word-spacing:-15.464400px;}
.ws19{word-spacing:-15.453600px;}
.ws13{word-spacing:-15.306000px;}
.ws4{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.246600px;}
.ws0{word-spacing:-15.226440px;}
.ws20{word-spacing:-15.199800px;}
.ws1c{word-spacing:-15.146400px;}
.ws23{word-spacing:-15.120600px;}
.ws18{word-spacing:-15.109200px;}
.ws17{word-spacing:-15.098400px;}
.ws1d{word-spacing:-15.093600px;}
.ws9{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws11{word-spacing:-14.961840px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws1e{word-spacing:-14.833200px;}
.ws21{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.506440px;}
.wsc{word-spacing:-14.479800px;}
.wsa{word-spacing:-14.328000px;}
.wsf{word-spacing:-14.166000px;}
.ws1f{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.wsd{word-spacing:-8.340000px;}
.ws24{word-spacing:-4.541760px;}
.wsb{word-spacing:0.000000px;}
._3{margin-left:-7.232640px;}
._e{margin-left:-5.795280px;}
._1a{margin-left:-4.790292px;}
._4{margin-left:-3.771360px;}
._2{margin-left:-2.523840px;}
._1{margin-left:-1.330320px;}
._0{width:1.185840px;}
._5{width:2.656320px;}
._12{width:3.700800px;}
._11{width:4.781040px;}
._f{width:5.825280px;}
._9{width:7.158240px;}
._8{width:8.917200px;}
._19{width:9.976320px;}
._a{width:11.031120px;}
._b{width:12.897120px;}
._18{width:13.900080px;}
._17{width:15.974640px;}
._10{width:17.339760px;}
._7{width:18.714240px;}
._16{width:20.207520px;}
._1e{width:21.454560px;}
._1c{width:22.548240px;}
._1b{width:23.623920px;}
._14{width:26.124480px;}
._13{width:27.489600px;}
._15{width:29.040240px;}
._1d{width:30.042591px;}
._d{width:31.200960px;}
._c{width:33.773760px;}
._20{width:66.112526px;}
._6{width:74.339280px;}
._1f{width:85.227120px;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y15{bottom:5.760000px;}
.y7{bottom:14.760000px;}
.y25{bottom:25.560000px;}
.y6{bottom:43.920000px;}
.y24{bottom:45.540000px;}
.yd{bottom:57.420000px;}
.y5{bottom:64.080000px;}
.y23{bottom:65.340000px;}
.yb{bottom:73.800000px;}
.ya{bottom:78.300000px;}
.y79{bottom:81.000000px;}
.y22{bottom:85.140000px;}
.y4{bottom:86.400000px;}
.yaa{bottom:86.940000px;}
.yc3{bottom:90.000000px;}
.y3c{bottom:90.720000px;}
.y88{bottom:97.380000px;}
.y74{bottom:98.100000px;}
.y78{bottom:100.800000px;}
.y21{bottom:104.940000px;}
.ya9{bottom:106.740000px;}
.y9{bottom:107.490000px;}
.yc2{bottom:109.800000px;}
.y3b{bottom:110.700000px;}
.y87{bottom:117.180000px;}
.y73{bottom:118.080000px;}
.y77{bottom:120.600000px;}
.y3{bottom:122.610000px;}
.y20{bottom:124.770000px;}
.ya8{bottom:126.540000px;}
.yc1{bottom:129.600000px;}
.y3a{bottom:130.500000px;}
.y8{bottom:136.650000px;}
.y86{bottom:136.980000px;}
.y72{bottom:137.880000px;}
.y76{bottom:140.400000px;}
.y1f{bottom:144.750000px;}
.ya7{bottom:146.520000px;}
.yc0{bottom:149.400000px;}
.y39{bottom:150.300000px;}
.y85{bottom:156.810000px;}
.y71{bottom:157.710000px;}
.y75{bottom:160.230000px;}
.y1e{bottom:164.550000px;}
.ya6{bottom:166.350000px;}
.ybf{bottom:169.230000px;}
.y38{bottom:170.130000px;}
.y84{bottom:176.790000px;}
.y70{bottom:177.510000px;}
.y1d{bottom:184.350000px;}
.ya5{bottom:186.150000px;}
.ybe{bottom:189.210000px;}
.y37{bottom:189.930000px;}
.y83{bottom:196.590000px;}
.y6f{bottom:197.310000px;}
.y1c{bottom:204.150000px;}
.ya4{bottom:205.950000px;}
.ybd{bottom:209.010000px;}
.y36{bottom:209.910000px;}
.y82{bottom:216.390000px;}
.y6e{bottom:217.290000px;}
.y1b{bottom:223.950000px;}
.ya3{bottom:225.750000px;}
.ybc{bottom:228.810000px;}
.y35{bottom:229.710000px;}
.y81{bottom:236.190000px;}
.y6d{bottom:237.090000px;}
.y1a{bottom:243.750000px;}
.ya2{bottom:245.730000px;}
.ybb{bottom:248.610000px;}
.y34{bottom:249.510000px;}
.y80{bottom:255.990000px;}
.y6c{bottom:256.890000px;}
.y19{bottom:263.730000px;}
.ya1{bottom:265.530000px;}
.yb9{bottom:268.410000px;}
.yba{bottom:269.130000px;}
.y33{bottom:269.310000px;}
.yb8{bottom:272.190000px;}
.y7f{bottom:275.970000px;}
.y6b{bottom:276.690000px;}
.y18{bottom:283.530000px;}
.ya0{bottom:285.330000px;}
.y32{bottom:289.110000px;}
.yb7{bottom:292.890000px;}
.y7e{bottom:295.770000px;}
.y6a{bottom:296.490000px;}
.y17{bottom:303.330000px;}
.y9f{bottom:305.130000px;}
.y31{bottom:309.090000px;}
.yb6{bottom:312.690000px;}
.y7d{bottom:315.570000px;}
.y69{bottom:316.470000px;}
.y9e{bottom:324.930000px;}
.y30{bottom:328.890000px;}
.yb5{bottom:332.490000px;}
.y7c{bottom:335.370000px;}
.y68{bottom:336.270000px;}
.y9d{bottom:344.910000px;}
.y2f{bottom:348.690000px;}
.yb4{bottom:352.290000px;}
.y7b{bottom:355.170000px;}
.y67{bottom:356.070000px;}
.y9c{bottom:364.710000px;}
.y2e{bottom:368.490000px;}
.yb3{bottom:372.090000px;}
.y7a{bottom:375.150000px;}
.y66{bottom:375.870000px;}
.y9b{bottom:384.510000px;}
.y2d{bottom:388.290000px;}
.yb2{bottom:392.070000px;}
.y65{bottom:395.670000px;}
.y9a{bottom:404.355000px;}
.y2c{bottom:408.315000px;}
.yb1{bottom:411.915000px;}
.y64{bottom:415.695000px;}
.y99{bottom:424.155000px;}
.y2b{bottom:428.115000px;}
.yb0{bottom:431.715000px;}
.y63{bottom:435.495000px;}
.y98{bottom:444.135000px;}
.y2a{bottom:447.915000px;}
.yaf{bottom:451.515000px;}
.y62{bottom:455.295000px;}
.y97{bottom:463.935000px;}
.y29{bottom:467.715000px;}
.yae{bottom:471.315000px;}
.y61{bottom:475.095000px;}
.y96{bottom:483.735000px;}
.y28{bottom:487.515000px;}
.yad{bottom:491.295000px;}
.y60{bottom:494.895000px;}
.y95{bottom:507.315000px;}
.y27{bottom:507.495000px;}
.yac{bottom:511.095000px;}
.y5f{bottom:514.875000px;}
.y94{bottom:527.115000px;}
.y26{bottom:527.295000px;}
.yab{bottom:530.895000px;}
.y5e{bottom:534.675000px;}
.y16{bottom:542.055000px;}
.y93{bottom:550.695000px;}
.y5d{bottom:554.475000px;}
.y92{bottom:570.495000px;}
.y5c{bottom:574.275000px;}
.y91{bottom:590.475000px;}
.y5b{bottom:594.075000px;}
.y90{bottom:610.275000px;}
.y5a{bottom:614.055000px;}
.y8f{bottom:630.075000px;}
.y59{bottom:633.855000px;}
.y8e{bottom:649.905000px;}
.y58{bottom:653.685000px;}
.y8d{bottom:669.705000px;}
.y57{bottom:673.485000px;}
.y8c{bottom:689.685000px;}
.y56{bottom:693.285000px;}
.y8b{bottom:709.485000px;}
.y55{bottom:713.265000px;}
.y8a{bottom:729.285000px;}
.y54{bottom:733.065000px;}
.y89{bottom:749.085000px;}
.y53{bottom:752.865000px;}
.y52{bottom:772.665000px;}
.y51{bottom:792.465000px;}
.y50{bottom:812.445000px;}
.y4f{bottom:832.245000px;}
.y4e{bottom:852.045000px;}
.y14{bottom:860.145000px;}
.y4d{bottom:871.845000px;}
.y13{bottom:885.885000px;}
.y4c{bottom:891.645000px;}
.y12{bottom:910.950000px;}
.y4b{bottom:911.670000px;}
.y11{bottom:926.070000px;}
.y4a{bottom:931.470000px;}
.y10{bottom:947.850000px;}
.y49{bottom:951.270000px;}
.y48{bottom:971.070000px;}
.yf{bottom:972.870000px;}
.y47{bottom:990.870000px;}
.ye{bottom:1004.550000px;}
.y46{bottom:1010.850000px;}
.y45{bottom:1030.650000px;}
.yc{bottom:1031.370000px;}
.y1{bottom:1047.750000px;}
.y44{bottom:1050.450000px;}
.y43{bottom:1070.250000px;}
.y42{bottom:1090.050000px;}
.y41{bottom:1110.030000px;}
.y40{bottom:1129.830000px;}
.y3f{bottom:1149.660000px;}
.y3e{bottom:1169.460000px;}
.y3d{bottom:1195.740000px;}
.h3{height:2.010938px;}
.hd{height:19.800000px;}
.hb{height:27.147656px;}
.hf{height:41.726953px;}
.hc{height:42.164648px;}
.h11{height:43.506914px;}
.h7{height:46.251562px;}
.h9{height:46.736719px;}
.h10{height:49.255313px;}
.ha{height:53.224453px;}
.h12{height:56.846953px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h4{height:105.060586px;}
.h2{height:161.310000px;}
.he{height:317.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.w7{width:287.895000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.620000px;}
.xa{left:8.100000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.x20{left:59.039987px;}
.x21{left:70.919987px;}
.x2b{left:80.999987px;}
.x22{left:86.075987px;}
.x1e{left:93.455987px;}
.xd{left:96.515987px;}
.x3d{left:97.775987px;}
.x3c{left:100.295987px;}
.x16{left:101.555987px;}
.x2c{left:108.035987px;}
.x8{left:109.485000px;}
.x17{left:113.435987px;}
.x7{left:116.865000px;}
.x5{left:119.385000px;}
.xf{left:123.515987px;}
.x29{left:125.675987px;}
.x18{left:128.555987px;}
.x2{left:136.290000px;}
.x10{left:150.509987px;}
.x2a{left:193.169987px;}
.x3b{left:197.849987px;}
.x3{left:208.470000px;}
.x23{left:217.469987px;}
.x13{left:224.309987px;}
.x3e{left:225.569987px;}
.x3f{left:229.349987px;}
.x6{left:236.385000px;}
.x14{left:244.109987px;}
.x15{left:247.169987px;}
.x26{left:263.909987px;}
.x45{left:270.434987px;}
.x24{left:292.574987px;}
.xe{left:297.794987px;}
.x11{left:306.614987px;}
.x27{left:314.534987px;}
.x12{left:318.134987px;}
.xb{left:343.875000px;}
.x48{left:348.554987px;}
.x1a{left:354.494987px;}
.x1f{left:372.674987px;}
.x40{left:383.114987px;}
.x28{left:387.074987px;}
.x42{left:416.054987px;}
.x43{left:420.014987px;}
.x1b{left:421.094987px;}
.x4a{left:435.314987px;}
.x2d{left:438.734987px;}
.x2e{left:443.594987px;}
.x2f{left:448.124987px;}
.x30{left:449.204987px;}
.x31{left:457.664987px;}
.x32{left:458.924987px;}
.x33{left:464.504987px;}
.x34{left:467.924987px;}
.x19{left:471.524987px;}
.x35{left:473.684987px;}
.x36{left:477.644987px;}
.x1c{left:479.264987px;}
.x37{left:480.704987px;}
.x38{left:486.824987px;}
.x49{left:522.644987px;}
.x4b{left:587.264987px;}
.x44{left:664.889987px;}
.x9{left:681.270000px;}
.x41{left:712.409987px;}
.x46{left:726.629987px;}
.x39{left:750.209987px;}
.x3a{left:764.789987px;}
.x47{left:791.069987px;}
.x25{left:813.239987px;}
.x1d{left:831.959987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-13.440000pt;}
.v6{vertical-align:-10.880000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-5.866667pt;}
.ls40{letter-spacing:-2.954667pt;}
.ls41{letter-spacing:-2.336000pt;}
.ls36{letter-spacing:-1.093333pt;}
.ls32{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.821333pt;}
.ls17{letter-spacing:-0.688000pt;}
.lsf{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.470933pt;}
.ls3f{letter-spacing:-0.470400pt;}
.lsa{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.409067pt;}
.lse{letter-spacing:-0.320000pt;}
.ls35{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.183467pt;}
.ls31{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.019413pt;}
.ls15{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.106240pt;}
.ls30{letter-spacing:0.136533pt;}
.ls21{letter-spacing:0.140800pt;}
.ls22{letter-spacing:0.150400pt;}
.ls2{letter-spacing:0.160000pt;}
.ls3d{letter-spacing:0.160533pt;}
.ls28{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.227733pt;}
.ls2f{letter-spacing:0.230933pt;}
.ls25{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.325333pt;}
.ls1a{letter-spacing:0.385923pt;}
.ls33{letter-spacing:0.426667pt;}
.ls23{letter-spacing:0.456533pt;}
.ls42{letter-spacing:0.466133pt;}
.ls37{letter-spacing:0.592000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.762667pt;}
.ls39{letter-spacing:0.771845pt;}
.ls1d{letter-spacing:0.773333pt;}
.ls1b{letter-spacing:0.784000pt;}
.ls24{letter-spacing:0.789333pt;}
.ls3b{letter-spacing:0.800000pt;}
.ls20{letter-spacing:0.816000pt;}
.ls3e{letter-spacing:0.944000pt;}
.ls2c{letter-spacing:1.440000pt;}
.ls16{letter-spacing:2.080000pt;}
.ls6{letter-spacing:2.698667pt;}
.ls7{letter-spacing:2.720000pt;}
.ls4{letter-spacing:4.640000pt;}
.ls3a{letter-spacing:4.734171pt;}
.ls26{letter-spacing:5.280000pt;}
.ls38{letter-spacing:6.560000pt;}
.ls29{letter-spacing:7.200000pt;}
.ls3c{letter-spacing:8.461240pt;}
.ls2a{letter-spacing:14.672640pt;}
.ls2d{letter-spacing:15.312640pt;}
.ls2b{letter-spacing:15.952640pt;}
.lsc{letter-spacing:16.800000pt;}
.ls2e{letter-spacing:17.872640pt;}
.ls34{letter-spacing:18.512640pt;}
.ls11{letter-spacing:40.891307pt;}
.ls27{letter-spacing:40.912640pt;}
.ls10{letter-spacing:44.091307pt;}
.ls3{letter-spacing:65.418667pt;}
.ws2{word-spacing:-14.720000pt;}
.ws25{word-spacing:-14.224000pt;}
.ws15{word-spacing:-14.096000pt;}
.ws1a{word-spacing:-14.069333pt;}
.ws16{word-spacing:-14.064000pt;}
.ws12{word-spacing:-14.053333pt;}
.ws10{word-spacing:-14.042667pt;}
.ws14{word-spacing:-13.920000pt;}
.ws22{word-spacing:-13.872000pt;}
.ws26{word-spacing:-13.746133pt;}
.ws19{word-spacing:-13.736533pt;}
.ws13{word-spacing:-13.605333pt;}
.ws4{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.552533pt;}
.ws0{word-spacing:-13.534613pt;}
.ws20{word-spacing:-13.510933pt;}
.ws1c{word-spacing:-13.463467pt;}
.ws23{word-spacing:-13.440533pt;}
.ws18{word-spacing:-13.430400pt;}
.ws17{word-spacing:-13.420800pt;}
.ws1d{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws11{word-spacing:-13.299413pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws1e{word-spacing:-13.185067pt;}
.ws21{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.870933pt;}
.wsa{word-spacing:-12.736000pt;}
.wsf{word-spacing:-12.592000pt;}
.ws1f{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsd{word-spacing:-7.413333pt;}
.ws24{word-spacing:-4.037120pt;}
.wsb{word-spacing:0.000000pt;}
._3{margin-left:-6.429013pt;}
._e{margin-left:-5.151360pt;}
._1a{margin-left:-4.258037pt;}
._4{margin-left:-3.352320pt;}
._2{margin-left:-2.243413pt;}
._1{margin-left:-1.182507pt;}
._0{width:1.054080pt;}
._5{width:2.361173pt;}
._12{width:3.289600pt;}
._11{width:4.249813pt;}
._f{width:5.178027pt;}
._9{width:6.362880pt;}
._8{width:7.926400pt;}
._19{width:8.867840pt;}
._a{width:9.805440pt;}
._b{width:11.464107pt;}
._18{width:12.355627pt;}
._17{width:14.199680pt;}
._10{width:15.413120pt;}
._7{width:16.634880pt;}
._16{width:17.962240pt;}
._1e{width:19.070720pt;}
._1c{width:20.042880pt;}
._1b{width:20.999040pt;}
._14{width:23.221760pt;}
._13{width:24.435200pt;}
._15{width:25.813547pt;}
._1d{width:26.704525pt;}
._d{width:27.734187pt;}
._c{width:30.021120pt;}
._20{width:58.766690pt;}
._6{width:66.079360pt;}
._1f{width:75.757440pt;}
.fs0{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y15{bottom:5.120000pt;}
.y7{bottom:13.120000pt;}
.y25{bottom:22.720000pt;}
.y6{bottom:39.040000pt;}
.y24{bottom:40.480000pt;}
.yd{bottom:51.040000pt;}
.y5{bottom:56.960000pt;}
.y23{bottom:58.080000pt;}
.yb{bottom:65.600000pt;}
.ya{bottom:69.600000pt;}
.y79{bottom:72.000000pt;}
.y22{bottom:75.680000pt;}
.y4{bottom:76.800000pt;}
.yaa{bottom:77.280000pt;}
.yc3{bottom:80.000000pt;}
.y3c{bottom:80.640000pt;}
.y88{bottom:86.560000pt;}
.y74{bottom:87.200000pt;}
.y78{bottom:89.600000pt;}
.y21{bottom:93.280000pt;}
.ya9{bottom:94.880000pt;}
.y9{bottom:95.546667pt;}
.yc2{bottom:97.600000pt;}
.y3b{bottom:98.400000pt;}
.y87{bottom:104.160000pt;}
.y73{bottom:104.960000pt;}
.y77{bottom:107.200000pt;}
.y3{bottom:108.986667pt;}
.y20{bottom:110.906667pt;}
.ya8{bottom:112.480000pt;}
.yc1{bottom:115.200000pt;}
.y3a{bottom:116.000000pt;}
.y8{bottom:121.466667pt;}
.y86{bottom:121.760000pt;}
.y72{bottom:122.560000pt;}
.y76{bottom:124.800000pt;}
.y1f{bottom:128.666667pt;}
.ya7{bottom:130.240000pt;}
.yc0{bottom:132.800000pt;}
.y39{bottom:133.600000pt;}
.y85{bottom:139.386667pt;}
.y71{bottom:140.186667pt;}
.y75{bottom:142.426667pt;}
.y1e{bottom:146.266667pt;}
.ya6{bottom:147.866667pt;}
.ybf{bottom:150.426667pt;}
.y38{bottom:151.226667pt;}
.y84{bottom:157.146667pt;}
.y70{bottom:157.786667pt;}
.y1d{bottom:163.866667pt;}
.ya5{bottom:165.466667pt;}
.ybe{bottom:168.186667pt;}
.y37{bottom:168.826667pt;}
.y83{bottom:174.746667pt;}
.y6f{bottom:175.386667pt;}
.y1c{bottom:181.466667pt;}
.ya4{bottom:183.066667pt;}
.ybd{bottom:185.786667pt;}
.y36{bottom:186.586667pt;}
.y82{bottom:192.346667pt;}
.y6e{bottom:193.146667pt;}
.y1b{bottom:199.066667pt;}
.ya3{bottom:200.666667pt;}
.ybc{bottom:203.386667pt;}
.y35{bottom:204.186667pt;}
.y81{bottom:209.946667pt;}
.y6d{bottom:210.746667pt;}
.y1a{bottom:216.666667pt;}
.ya2{bottom:218.426667pt;}
.ybb{bottom:220.986667pt;}
.y34{bottom:221.786667pt;}
.y80{bottom:227.546667pt;}
.y6c{bottom:228.346667pt;}
.y19{bottom:234.426667pt;}
.ya1{bottom:236.026667pt;}
.yb9{bottom:238.586667pt;}
.yba{bottom:239.226667pt;}
.y33{bottom:239.386667pt;}
.yb8{bottom:241.946667pt;}
.y7f{bottom:245.306667pt;}
.y6b{bottom:245.946667pt;}
.y18{bottom:252.026667pt;}
.ya0{bottom:253.626667pt;}
.y32{bottom:256.986667pt;}
.yb7{bottom:260.346667pt;}
.y7e{bottom:262.906667pt;}
.y6a{bottom:263.546667pt;}
.y17{bottom:269.626667pt;}
.y9f{bottom:271.226667pt;}
.y31{bottom:274.746667pt;}
.yb6{bottom:277.946667pt;}
.y7d{bottom:280.506667pt;}
.y69{bottom:281.306667pt;}
.y9e{bottom:288.826667pt;}
.y30{bottom:292.346667pt;}
.yb5{bottom:295.546667pt;}
.y7c{bottom:298.106667pt;}
.y68{bottom:298.906667pt;}
.y9d{bottom:306.586667pt;}
.y2f{bottom:309.946667pt;}
.yb4{bottom:313.146667pt;}
.y7b{bottom:315.706667pt;}
.y67{bottom:316.506667pt;}
.y9c{bottom:324.186667pt;}
.y2e{bottom:327.546667pt;}
.yb3{bottom:330.746667pt;}
.y7a{bottom:333.466667pt;}
.y66{bottom:334.106667pt;}
.y9b{bottom:341.786667pt;}
.y2d{bottom:345.146667pt;}
.yb2{bottom:348.506667pt;}
.y65{bottom:351.706667pt;}
.y9a{bottom:359.426667pt;}
.y2c{bottom:362.946667pt;}
.yb1{bottom:366.146667pt;}
.y64{bottom:369.506667pt;}
.y99{bottom:377.026667pt;}
.y2b{bottom:380.546667pt;}
.yb0{bottom:383.746667pt;}
.y63{bottom:387.106667pt;}
.y98{bottom:394.786667pt;}
.y2a{bottom:398.146667pt;}
.yaf{bottom:401.346667pt;}
.y62{bottom:404.706667pt;}
.y97{bottom:412.386667pt;}
.y29{bottom:415.746667pt;}
.yae{bottom:418.946667pt;}
.y61{bottom:422.306667pt;}
.y96{bottom:429.986667pt;}
.y28{bottom:433.346667pt;}
.yad{bottom:436.706667pt;}
.y60{bottom:439.906667pt;}
.y95{bottom:450.946667pt;}
.y27{bottom:451.106667pt;}
.yac{bottom:454.306667pt;}
.y5f{bottom:457.666667pt;}
.y94{bottom:468.546667pt;}
.y26{bottom:468.706667pt;}
.yab{bottom:471.906667pt;}
.y5e{bottom:475.266667pt;}
.y16{bottom:481.826667pt;}
.y93{bottom:489.506667pt;}
.y5d{bottom:492.866667pt;}
.y92{bottom:507.106667pt;}
.y5c{bottom:510.466667pt;}
.y91{bottom:524.866667pt;}
.y5b{bottom:528.066667pt;}
.y90{bottom:542.466667pt;}
.y5a{bottom:545.826667pt;}
.y8f{bottom:560.066667pt;}
.y59{bottom:563.426667pt;}
.y8e{bottom:577.693333pt;}
.y58{bottom:581.053333pt;}
.y8d{bottom:595.293333pt;}
.y57{bottom:598.653333pt;}
.y8c{bottom:613.053333pt;}
.y56{bottom:616.253333pt;}
.y8b{bottom:630.653333pt;}
.y55{bottom:634.013333pt;}
.y8a{bottom:648.253333pt;}
.y54{bottom:651.613333pt;}
.y89{bottom:665.853333pt;}
.y53{bottom:669.213333pt;}
.y52{bottom:686.813333pt;}
.y51{bottom:704.413333pt;}
.y50{bottom:722.173333pt;}
.y4f{bottom:739.773333pt;}
.y4e{bottom:757.373333pt;}
.y14{bottom:764.573333pt;}
.y4d{bottom:774.973333pt;}
.y13{bottom:787.453333pt;}
.y4c{bottom:792.573333pt;}
.y12{bottom:809.733333pt;}
.y4b{bottom:810.373333pt;}
.y11{bottom:823.173333pt;}
.y4a{bottom:827.973333pt;}
.y10{bottom:842.533333pt;}
.y49{bottom:845.573333pt;}
.y48{bottom:863.173333pt;}
.yf{bottom:864.773333pt;}
.y47{bottom:880.773333pt;}
.ye{bottom:892.933333pt;}
.y46{bottom:898.533333pt;}
.y45{bottom:916.133333pt;}
.yc{bottom:916.773333pt;}
.y1{bottom:931.333333pt;}
.y44{bottom:933.733333pt;}
.y43{bottom:951.333333pt;}
.y42{bottom:968.933333pt;}
.y41{bottom:986.693333pt;}
.y40{bottom:1004.293333pt;}
.y3f{bottom:1021.920000pt;}
.y3e{bottom:1039.520000pt;}
.y3d{bottom:1062.880000pt;}
.h3{height:1.787500pt;}
.hd{height:17.600000pt;}
.hb{height:24.131250pt;}
.hf{height:37.090625pt;}
.hc{height:37.479688pt;}
.h11{height:38.672812pt;}
.h7{height:41.112500pt;}
.h9{height:41.543750pt;}
.h10{height:43.782500pt;}
.ha{height:47.310625pt;}
.h12{height:50.530625pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h4{height:93.387187pt;}
.h2{height:143.386667pt;}
.he{height:282.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.w7{width:255.906667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:1.440000pt;}
.xa{left:7.200000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.x20{left:52.479988pt;}
.x21{left:63.039988pt;}
.x2b{left:71.999988pt;}
.x22{left:76.511988pt;}
.x1e{left:83.071988pt;}
.xd{left:85.791988pt;}
.x3d{left:86.911988pt;}
.x3c{left:89.151988pt;}
.x16{left:90.271988pt;}
.x2c{left:96.031988pt;}
.x8{left:97.320000pt;}
.x17{left:100.831988pt;}
.x7{left:103.880000pt;}
.x5{left:106.120000pt;}
.xf{left:109.791988pt;}
.x29{left:111.711988pt;}
.x18{left:114.271988pt;}
.x2{left:121.146667pt;}
.x10{left:133.786655pt;}
.x2a{left:171.706655pt;}
.x3b{left:175.866655pt;}
.x3{left:185.306667pt;}
.x23{left:193.306655pt;}
.x13{left:199.386655pt;}
.x3e{left:200.506655pt;}
.x3f{left:203.866655pt;}
.x6{left:210.120000pt;}
.x14{left:216.986655pt;}
.x15{left:219.706655pt;}
.x26{left:234.586655pt;}
.x45{left:240.386655pt;}
.x24{left:260.066655pt;}
.xe{left:264.706655pt;}
.x11{left:272.546655pt;}
.x27{left:279.586655pt;}
.x12{left:282.786655pt;}
.xb{left:305.666667pt;}
.x48{left:309.826655pt;}
.x1a{left:315.106655pt;}
.x1f{left:331.266655pt;}
.x40{left:340.546655pt;}
.x28{left:344.066655pt;}
.x42{left:369.826655pt;}
.x43{left:373.346655pt;}
.x1b{left:374.306655pt;}
.x4a{left:386.946655pt;}
.x2d{left:389.986655pt;}
.x2e{left:394.306655pt;}
.x2f{left:398.333322pt;}
.x30{left:399.293322pt;}
.x31{left:406.813322pt;}
.x32{left:407.933322pt;}
.x33{left:412.893322pt;}
.x34{left:415.933322pt;}
.x19{left:419.133322pt;}
.x35{left:421.053322pt;}
.x36{left:424.573322pt;}
.x1c{left:426.013322pt;}
.x37{left:427.293322pt;}
.x38{left:432.733322pt;}
.x49{left:464.573322pt;}
.x4b{left:522.013322pt;}
.x44{left:591.013322pt;}
.x9{left:605.573333pt;}
.x41{left:633.253322pt;}
.x46{left:645.893322pt;}
.x39{left:666.853322pt;}
.x3a{left:679.813322pt;}
.x47{left:703.173322pt;}
.x25{left:722.879988pt;}
.x1d{left:739.519988pt;}
}




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