
    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_0e1d3200680e7ff191157e60.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_171c0a08f89da9e761e01ee6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_af231834c31ebe1c4554d417.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_803f9347703fe0c7fd3accf7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0d1f0ccadc11ebd248edb160.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_f7205d2e078a6a1efa0d8d29.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_cca6170e30bce1c157977c8b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_86239751282a0a7c1cc04a92.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ad9730c1f60234f4bce5fe94.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_3076e6c3613c327bd89f091b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.946777;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_9880a67e51c83dc04a0db581.woff')format("woff");}.ffd{font-family:ffd;line-height:0.946777;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:ffe;src:url('chunks/assets/font_8265369e2075ec774870f61f.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2c62ae4aa1840c835abddb92.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b2264a5fc2e6d640be10fb4a.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e3b6cb15e2295b2d36b2f307.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_e4dcfd240f0248b3c414b12e.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_3d39f2bf7322051b2b88a82a.woff')format("woff");}.ff15{font-family:ff15;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.038160px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls10{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.786240px;}
.ls12{letter-spacing:46.026720px;}
.ls11{letter-spacing:55.386720px;}
.lse{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.626360px;}
.ws4{word-spacing:-16.493760px;}
.ws2{word-spacing:-16.488000px;}
.ws7{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.146400px;}
.ws8{word-spacing:-14.940000px;}
.wse{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.580000px;}
.wsb{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.816720px;}
.ws1{word-spacing:-12.240000px;}
.ws0{word-spacing:-12.186000px;}
.ws5{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._4{margin-left:-5.517360px;}
._16{margin-left:-4.220400px;}
._2{margin-left:-3.186000px;}
._3{margin-left:-2.106000px;}
._0{margin-left:-1.026000px;}
._1{width:1.128000px;}
._b{width:2.848800px;}
._c{width:4.541760px;}
._e{width:5.677200px;}
._d{width:6.693120px;}
._a{width:7.994880px;}
._7{width:9.382320px;}
._13{width:10.550640px;}
._9{width:11.660640px;}
._8{width:13.266720px;}
._5{width:16.166880px;}
._6{width:17.349120px;}
._15{width:19.308480px;}
._12{width:20.372160px;}
._11{width:21.905040px;}
._14{width:23.420400px;}
._f{width:27.736080px;}
._10{width:28.775520px;}
.fc5{color:rgb(227,108,10);}
.fc6{color:rgb(5,99,193);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y48{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y46{bottom:10.800000px;}
.y18{bottom:12.465000px;}
.yc{bottom:13.860000px;}
.y16{bottom:14.220000px;}
.y4{bottom:15.840000px;}
.y2{bottom:20.196000px;}
.y42{bottom:20.520000px;}
.y47{bottom:22.320000px;}
.y45{bottom:25.380000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.500000px;}
.y15{bottom:33.840000px;}
.y41{bottom:37.800000px;}
.y14{bottom:43.560000px;}
.ya{bottom:46.440000px;}
.y1{bottom:52.560000px;}
.y40{bottom:54.900000px;}
.y13{bottom:58.860000px;}
.y3f{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y12{bottom:77.940000px;}
.y3e{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y11{bottom:103.680000px;}
.y3d{bottom:106.740000px;}
.y7{bottom:111.270000px;}
.yf5{bottom:118.836000px;}
.y55{bottom:121.716000px;}
.yc5{bottom:122.076000px;}
.y3c{bottom:124.020000px;}
.y10{bottom:127.980000px;}
.y91{bottom:132.876000px;}
.yf4{bottom:136.116000px;}
.y54{bottom:138.996000px;}
.yc4{bottom:139.356000px;}
.y3b{bottom:141.120000px;}
.y90{bottom:149.976000px;}
.yf3{bottom:153.390000px;}
.y53{bottom:156.090000px;}
.yc3{bottom:156.450000px;}
.y3a{bottom:158.400000px;}
.y8f{bottom:167.250000px;}
.y126{bottom:170.490000px;}
.yf2{bottom:171.570000px;}
.y52{bottom:173.370000px;}
.yc2{bottom:173.730000px;}
.y39{bottom:175.680000px;}
.y8e{bottom:184.530000px;}
.y125{bottom:187.770000px;}
.yf1{bottom:188.850000px;}
.y51{bottom:190.650000px;}
.yc1{bottom:191.010000px;}
.y38{bottom:192.960000px;}
.y8d{bottom:201.810000px;}
.y124{bottom:205.050000px;}
.yf0{bottom:206.130000px;}
.y50{bottom:207.930000px;}
.yc0{bottom:208.290000px;}
.y37{bottom:210.240000px;}
.y8c{bottom:219.090000px;}
.y123{bottom:222.330000px;}
.yef{bottom:224.490000px;}
.y4f{bottom:225.210000px;}
.ybf{bottom:225.570000px;}
.y36{bottom:227.550000px;}
.y27{bottom:234.030000px;}
.y8b{bottom:236.370000px;}
.y122{bottom:240.690000px;}
.yee{bottom:241.770000px;}
.y4e{bottom:242.310000px;}
.ybe{bottom:242.850000px;}
.y35{bottom:244.650000px;}
.y26{bottom:249.330000px;}
.y8a{bottom:253.470000px;}
.y121{bottom:257.790000px;}
.yed{bottom:258.870000px;}
.y4d{bottom:259.590000px;}
.ybd{bottom:259.950000px;}
.y34{bottom:261.930000px;}
.y25{bottom:266.970000px;}
.y89{bottom:270.750000px;}
.yec{bottom:276.150000px;}
.y4c{bottom:276.870000px;}
.ybc{bottom:277.230000px;}
.y33{bottom:279.210000px;}
.y24{bottom:284.250000px;}
.y88{bottom:288.030000px;}
.yeb{bottom:293.430000px;}
.y4b{bottom:294.150000px;}
.ybb{bottom:294.510000px;}
.y32{bottom:296.490000px;}
.y23{bottom:301.350000px;}
.y87{bottom:305.310000px;}
.yea{bottom:310.710000px;}
.y4a{bottom:311.430000px;}
.y120{bottom:311.790000px;}
.yba{bottom:312.870000px;}
.y31{bottom:313.770000px;}
.y22{bottom:319.170000px;}
.y86{bottom:322.590000px;}
.ye9{bottom:327.990000px;}
.y49{bottom:328.710000px;}
.y11f{bottom:329.070000px;}
.yb9{bottom:330.150000px;}
.y30{bottom:331.050000px;}
.y21{bottom:336.630000px;}
.y85{bottom:339.915000px;}
.y44{bottom:342.615000px;}
.ye8{bottom:345.315000px;}
.y11e{bottom:346.395000px;}
.y2f{bottom:348.150000px;}
.yb8{bottom:348.555000px;}
.y20{bottom:353.910000px;}
.y84{bottom:357.015000px;}
.ye7{bottom:362.415000px;}
.y11d{bottom:363.495000px;}
.y2e{bottom:365.430000px;}
.yb7{bottom:365.655000px;}
.y1f{bottom:371.370000px;}
.y83{bottom:374.295000px;}
.y19{bottom:379.335000px;}
.ye6{bottom:379.695000px;}
.y11c{bottom:380.775000px;}
.y2d{bottom:382.710000px;}
.yb6{bottom:384.015000px;}
.y1e{bottom:388.830000px;}
.y82{bottom:391.575000px;}
.ye5{bottom:396.975000px;}
.y11b{bottom:399.135000px;}
.y2c{bottom:399.990000px;}
.yb5{bottom:401.295000px;}
.y1d{bottom:406.110000px;}
.y81{bottom:408.855000px;}
.ye4{bottom:414.255000px;}
.y11a{bottom:416.415000px;}
.y2b{bottom:417.270000px;}
.yb4{bottom:419.655000px;}
.y80{bottom:426.135000px;}
.y1c{bottom:426.450000px;}
.ye3{bottom:431.535000px;}
.y119{bottom:433.695000px;}
.y2a{bottom:434.550000px;}
.yb3{bottom:436.935000px;}
.y7f{bottom:443.415000px;}
.ye2{bottom:448.815000px;}
.y29{bottom:451.650000px;}
.y118{bottom:451.875000px;}
.y1b{bottom:453.990000px;}
.yb2{bottom:454.035000px;}
.y7e{bottom:460.515000px;}
.ye1{bottom:465.915000px;}
.y28{bottom:468.930000px;}
.y117{bottom:469.155000px;}
.yb1{bottom:471.315000px;}
.y1a{bottom:471.630000px;}
.y7d{bottom:477.795000px;}
.ye0{bottom:483.195000px;}
.y116{bottom:486.435000px;}
.yb0{bottom:488.595000px;}
.y7c{bottom:495.075000px;}
.ydf{bottom:500.475000px;}
.y115{bottom:503.715000px;}
.yaf{bottom:505.875000px;}
.y7b{bottom:512.355000px;}
.yde{bottom:517.755000px;}
.y114{bottom:520.995000px;}
.yae{bottom:523.155000px;}
.y7a{bottom:529.635000px;}
.ydd{bottom:535.035000px;}
.y113{bottom:539.355000px;}
.yad{bottom:541.515000px;}
.y79{bottom:546.735000px;}
.ydc{bottom:552.135000px;}
.y112{bottom:556.455000px;}
.yac{bottom:559.695000px;}
.y78{bottom:564.015000px;}
.ydb{bottom:569.415000px;}
.y111{bottom:573.735000px;}
.yab{bottom:578.055000px;}
.y77{bottom:581.295000px;}
.yda{bottom:587.775000px;}
.y110{bottom:591.015000px;}
.yaa{bottom:596.415000px;}
.y76{bottom:598.575000px;}
.yd9{bottom:606.165000px;}
.y10f{bottom:608.325000px;}
.ya9{bottom:613.725000px;}
.y75{bottom:615.885000px;}
.yd8{bottom:624.525000px;}
.y10e{bottom:625.605000px;}
.ya8{bottom:631.005000px;}
.y74{bottom:633.165000px;}
.yd7{bottom:642.885000px;}
.ya7{bottom:648.105000px;}
.y73{bottom:650.265000px;}
.yd6{bottom:659.985000px;}
.ya6{bottom:665.385000px;}
.y72{bottom:667.545000px;}
.yd5{bottom:677.265000px;}
.ya5{bottom:682.665000px;}
.y71{bottom:684.825000px;}
.yd4{bottom:694.545000px;}
.ya4{bottom:699.945000px;}
.y70{bottom:702.105000px;}
.yd3{bottom:711.825000px;}
.ya3{bottom:717.225000px;}
.y6f{bottom:719.385000px;}
.yd2{bottom:729.105000px;}
.ya2{bottom:734.505000px;}
.y6e{bottom:736.665000px;}
.y10d{bottom:746.205000px;}
.yd1{bottom:747.285000px;}
.ya1{bottom:751.605000px;}
.y6d{bottom:753.765000px;}
.y10c{bottom:763.485000px;}
.yd0{bottom:765.645000px;}
.ya0{bottom:768.885000px;}
.y6c{bottom:771.045000px;}
.y10b{bottom:780.765000px;}
.ycf{bottom:784.005000px;}
.y9f{bottom:786.165000px;}
.y6b{bottom:788.325000px;}
.y10a{bottom:798.045000px;}
.yce{bottom:801.285000px;}
.y9e{bottom:803.445000px;}
.y6a{bottom:805.605000px;}
.y109{bottom:816.405000px;}
.ycd{bottom:818.565000px;}
.y9d{bottom:820.725000px;}
.y69{bottom:822.885000px;}
.y108{bottom:833.685000px;}
.ycc{bottom:835.845000px;}
.y9c{bottom:838.005000px;}
.y68{bottom:839.985000px;}
.y107{bottom:851.865000px;}
.ycb{bottom:852.945000px;}
.y9b{bottom:855.105000px;}
.y67{bottom:857.265000px;}
.y17{bottom:862.305000px;}
.y106{bottom:869.145000px;}
.yca{bottom:870.225000px;}
.y9a{bottom:872.430000px;}
.y66{bottom:874.590000px;}
.y105{bottom:887.550000px;}
.yc9{bottom:888.630000px;}
.y99{bottom:889.710000px;}
.yf{bottom:891.870000px;}
.y104{bottom:904.830000px;}
.yc8{bottom:905.910000px;}
.y98{bottom:906.990000px;}
.y65{bottom:909.150000px;}
.yc7{bottom:923.190000px;}
.y97{bottom:924.270000px;}
.y64{bottom:926.430000px;}
.y103{bottom:940.470000px;}
.y96{bottom:941.370000px;}
.y63{bottom:943.530000px;}
.y102{bottom:957.570000px;}
.yc6{bottom:958.650000px;}
.y95{bottom:959.730000px;}
.y62{bottom:960.810000px;}
.y101{bottom:974.850000px;}
.y94{bottom:977.010000px;}
.y61{bottom:978.090000px;}
.y100{bottom:992.130000px;}
.y93{bottom:994.290000px;}
.y60{bottom:995.370000px;}
.yff{bottom:1009.410000px;}
.y92{bottom:1011.570000px;}
.y5f{bottom:1012.650000px;}
.yfe{bottom:1026.690000px;}
.y5e{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.yfd{bottom:1043.790000px;}
.y5d{bottom:1047.030000px;}
.y6{bottom:1060.350000px;}
.yfc{bottom:1062.150000px;}
.y5c{bottom:1064.310000px;}
.yfb{bottom:1079.430000px;}
.y5b{bottom:1081.590000px;}
.yfa{bottom:1096.710000px;}
.y5a{bottom:1098.870000px;}
.yf9{bottom:1115.070000px;}
.y59{bottom:1116.150000px;}
.yf8{bottom:1132.350000px;}
.y58{bottom:1133.430000px;}
.yf7{bottom:1149.480000px;}
.y57{bottom:1150.560000px;}
.yf6{bottom:1166.760000px;}
.y56{bottom:1167.840000px;}
.hc{height:25.020000px;}
.h13{height:29.556000px;}
.h2{height:32.976000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1c{height:36.720000px;}
.h19{height:38.818125px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h4{height:43.453125px;}
.h1e{height:43.506914px;}
.h18{height:43.681992px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1d{height:48.088125px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h8{height:71.613281px;}
.h5{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:143.100000px;}
.h14{height:482.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w5{width:151.950000px;}
.w8{width:216.075000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x11{left:12.600000px;}
.xb{left:14.796000px;}
.xe{left:46.296000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x12{left:108.035987px;}
.x13{left:135.035987px;}
.x14{left:162.029987px;}
.x15{left:189.029987px;}
.xf{left:215.175000px;}
.x5{left:232.950000px;}
.x8{left:272.235000px;}
.x10{left:297.075000px;}
.xd{left:298.335000px;}
.xc{left:324.255000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x9{left:439.500000px;}
.x3{left:739.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.033920pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls10{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.698880pt;}
.ls12{letter-spacing:40.912640pt;}
.ls11{letter-spacing:49.232640pt;}
.lse{letter-spacing:56.912640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.778987pt;}
.ws4{word-spacing:-14.661120pt;}
.ws2{word-spacing:-14.656000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.392640pt;}
.ws1{word-spacing:-10.880000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws5{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._4{margin-left:-4.904320pt;}
._16{margin-left:-3.751467pt;}
._2{margin-left:-2.832000pt;}
._3{margin-left:-1.872000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.002667pt;}
._b{width:2.532267pt;}
._c{width:4.037120pt;}
._e{width:5.046400pt;}
._d{width:5.949440pt;}
._a{width:7.106560pt;}
._7{width:8.339840pt;}
._13{width:9.378347pt;}
._9{width:10.365013pt;}
._8{width:11.792640pt;}
._5{width:14.370560pt;}
._6{width:15.421440pt;}
._15{width:17.163093pt;}
._12{width:18.108587pt;}
._11{width:19.471147pt;}
._14{width:20.818133pt;}
._f{width:24.654293pt;}
._10{width:25.578240pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y48{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y46{bottom:9.600000pt;}
.y18{bottom:11.080000pt;}
.yc{bottom:12.320000pt;}
.y16{bottom:12.640000pt;}
.y4{bottom:14.080000pt;}
.y2{bottom:17.952000pt;}
.y42{bottom:18.240000pt;}
.y47{bottom:19.840000pt;}
.y45{bottom:22.560000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:28.000000pt;}
.y15{bottom:30.080000pt;}
.y41{bottom:33.600000pt;}
.y14{bottom:38.720000pt;}
.ya{bottom:41.280000pt;}
.y1{bottom:46.720000pt;}
.y40{bottom:48.800000pt;}
.y13{bottom:52.320000pt;}
.y3f{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y12{bottom:69.280000pt;}
.y3e{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y11{bottom:92.160000pt;}
.y3d{bottom:94.880000pt;}
.y7{bottom:98.906667pt;}
.yf5{bottom:105.632000pt;}
.y55{bottom:108.192000pt;}
.yc5{bottom:108.512000pt;}
.y3c{bottom:110.240000pt;}
.y10{bottom:113.760000pt;}
.y91{bottom:118.112000pt;}
.yf4{bottom:120.992000pt;}
.y54{bottom:123.552000pt;}
.yc4{bottom:123.872000pt;}
.y3b{bottom:125.440000pt;}
.y90{bottom:133.312000pt;}
.yf3{bottom:136.346667pt;}
.y53{bottom:138.746667pt;}
.yc3{bottom:139.066667pt;}
.y3a{bottom:140.800000pt;}
.y8f{bottom:148.666667pt;}
.y126{bottom:151.546667pt;}
.yf2{bottom:152.506667pt;}
.y52{bottom:154.106667pt;}
.yc2{bottom:154.426667pt;}
.y39{bottom:156.160000pt;}
.y8e{bottom:164.026667pt;}
.y125{bottom:166.906667pt;}
.yf1{bottom:167.866667pt;}
.y51{bottom:169.466667pt;}
.yc1{bottom:169.786667pt;}
.y38{bottom:171.520000pt;}
.y8d{bottom:179.386667pt;}
.y124{bottom:182.266667pt;}
.yf0{bottom:183.226667pt;}
.y50{bottom:184.826667pt;}
.yc0{bottom:185.146667pt;}
.y37{bottom:186.880000pt;}
.y8c{bottom:194.746667pt;}
.y123{bottom:197.626667pt;}
.yef{bottom:199.546667pt;}
.y4f{bottom:200.186667pt;}
.ybf{bottom:200.506667pt;}
.y36{bottom:202.266667pt;}
.y27{bottom:208.026667pt;}
.y8b{bottom:210.106667pt;}
.y122{bottom:213.946667pt;}
.yee{bottom:214.906667pt;}
.y4e{bottom:215.386667pt;}
.ybe{bottom:215.866667pt;}
.y35{bottom:217.466667pt;}
.y26{bottom:221.626667pt;}
.y8a{bottom:225.306667pt;}
.y121{bottom:229.146667pt;}
.yed{bottom:230.106667pt;}
.y4d{bottom:230.746667pt;}
.ybd{bottom:231.066667pt;}
.y34{bottom:232.826667pt;}
.y25{bottom:237.306667pt;}
.y89{bottom:240.666667pt;}
.yec{bottom:245.466667pt;}
.y4c{bottom:246.106667pt;}
.ybc{bottom:246.426667pt;}
.y33{bottom:248.186667pt;}
.y24{bottom:252.666667pt;}
.y88{bottom:256.026667pt;}
.yeb{bottom:260.826667pt;}
.y4b{bottom:261.466667pt;}
.ybb{bottom:261.786667pt;}
.y32{bottom:263.546667pt;}
.y23{bottom:267.866667pt;}
.y87{bottom:271.386667pt;}
.yea{bottom:276.186667pt;}
.y4a{bottom:276.826667pt;}
.y120{bottom:277.146667pt;}
.yba{bottom:278.106667pt;}
.y31{bottom:278.906667pt;}
.y22{bottom:283.706667pt;}
.y86{bottom:286.746667pt;}
.ye9{bottom:291.546667pt;}
.y49{bottom:292.186667pt;}
.y11f{bottom:292.506667pt;}
.yb9{bottom:293.466667pt;}
.y30{bottom:294.266667pt;}
.y21{bottom:299.226667pt;}
.y85{bottom:302.146667pt;}
.y44{bottom:304.546667pt;}
.ye8{bottom:306.946667pt;}
.y11e{bottom:307.906667pt;}
.y2f{bottom:309.466667pt;}
.yb8{bottom:309.826667pt;}
.y20{bottom:314.586667pt;}
.y84{bottom:317.346667pt;}
.ye7{bottom:322.146667pt;}
.y11d{bottom:323.106667pt;}
.y2e{bottom:324.826667pt;}
.yb7{bottom:325.026667pt;}
.y1f{bottom:330.106667pt;}
.y83{bottom:332.706667pt;}
.y19{bottom:337.186667pt;}
.ye6{bottom:337.506667pt;}
.y11c{bottom:338.466667pt;}
.y2d{bottom:340.186667pt;}
.yb6{bottom:341.346667pt;}
.y1e{bottom:345.626667pt;}
.y82{bottom:348.066667pt;}
.ye5{bottom:352.866667pt;}
.y11b{bottom:354.786667pt;}
.y2c{bottom:355.546667pt;}
.yb5{bottom:356.706667pt;}
.y1d{bottom:360.986667pt;}
.y81{bottom:363.426667pt;}
.ye4{bottom:368.226667pt;}
.y11a{bottom:370.146667pt;}
.y2b{bottom:370.906667pt;}
.yb4{bottom:373.026667pt;}
.y80{bottom:378.786667pt;}
.y1c{bottom:379.066667pt;}
.ye3{bottom:383.586667pt;}
.y119{bottom:385.506667pt;}
.y2a{bottom:386.266667pt;}
.yb3{bottom:388.386667pt;}
.y7f{bottom:394.146667pt;}
.ye2{bottom:398.946667pt;}
.y29{bottom:401.466667pt;}
.y118{bottom:401.666667pt;}
.y1b{bottom:403.546667pt;}
.yb2{bottom:403.586667pt;}
.y7e{bottom:409.346667pt;}
.ye1{bottom:414.146667pt;}
.y28{bottom:416.826667pt;}
.y117{bottom:417.026667pt;}
.yb1{bottom:418.946667pt;}
.y1a{bottom:419.226667pt;}
.y7d{bottom:424.706667pt;}
.ye0{bottom:429.506667pt;}
.y116{bottom:432.386667pt;}
.yb0{bottom:434.306667pt;}
.y7c{bottom:440.066667pt;}
.ydf{bottom:444.866667pt;}
.y115{bottom:447.746667pt;}
.yaf{bottom:449.666667pt;}
.y7b{bottom:455.426667pt;}
.yde{bottom:460.226667pt;}
.y114{bottom:463.106667pt;}
.yae{bottom:465.026667pt;}
.y7a{bottom:470.786667pt;}
.ydd{bottom:475.586667pt;}
.y113{bottom:479.426667pt;}
.yad{bottom:481.346667pt;}
.y79{bottom:485.986667pt;}
.ydc{bottom:490.786667pt;}
.y112{bottom:494.626667pt;}
.yac{bottom:497.506667pt;}
.y78{bottom:501.346667pt;}
.ydb{bottom:506.146667pt;}
.y111{bottom:509.986667pt;}
.yab{bottom:513.826667pt;}
.y77{bottom:516.706667pt;}
.yda{bottom:522.466667pt;}
.y110{bottom:525.346667pt;}
.yaa{bottom:530.146667pt;}
.y76{bottom:532.066667pt;}
.yd9{bottom:538.813333pt;}
.y10f{bottom:540.733333pt;}
.ya9{bottom:545.533333pt;}
.y75{bottom:547.453333pt;}
.yd8{bottom:555.133333pt;}
.y10e{bottom:556.093333pt;}
.ya8{bottom:560.893333pt;}
.y74{bottom:562.813333pt;}
.yd7{bottom:571.453333pt;}
.ya7{bottom:576.093333pt;}
.y73{bottom:578.013333pt;}
.yd6{bottom:586.653333pt;}
.ya6{bottom:591.453333pt;}
.y72{bottom:593.373333pt;}
.yd5{bottom:602.013333pt;}
.ya5{bottom:606.813333pt;}
.y71{bottom:608.733333pt;}
.yd4{bottom:617.373333pt;}
.ya4{bottom:622.173333pt;}
.y70{bottom:624.093333pt;}
.yd3{bottom:632.733333pt;}
.ya3{bottom:637.533333pt;}
.y6f{bottom:639.453333pt;}
.yd2{bottom:648.093333pt;}
.ya2{bottom:652.893333pt;}
.y6e{bottom:654.813333pt;}
.y10d{bottom:663.293333pt;}
.yd1{bottom:664.253333pt;}
.ya1{bottom:668.093333pt;}
.y6d{bottom:670.013333pt;}
.y10c{bottom:678.653333pt;}
.yd0{bottom:680.573333pt;}
.ya0{bottom:683.453333pt;}
.y6c{bottom:685.373333pt;}
.y10b{bottom:694.013333pt;}
.ycf{bottom:696.893333pt;}
.y9f{bottom:698.813333pt;}
.y6b{bottom:700.733333pt;}
.y10a{bottom:709.373333pt;}
.yce{bottom:712.253333pt;}
.y9e{bottom:714.173333pt;}
.y6a{bottom:716.093333pt;}
.y109{bottom:725.693333pt;}
.ycd{bottom:727.613333pt;}
.y9d{bottom:729.533333pt;}
.y69{bottom:731.453333pt;}
.y108{bottom:741.053333pt;}
.ycc{bottom:742.973333pt;}
.y9c{bottom:744.893333pt;}
.y68{bottom:746.653333pt;}
.y107{bottom:757.213333pt;}
.ycb{bottom:758.173333pt;}
.y9b{bottom:760.093333pt;}
.y67{bottom:762.013333pt;}
.y17{bottom:766.493333pt;}
.y106{bottom:772.573333pt;}
.yca{bottom:773.533333pt;}
.y9a{bottom:775.493333pt;}
.y66{bottom:777.413333pt;}
.y105{bottom:788.933333pt;}
.yc9{bottom:789.893333pt;}
.y99{bottom:790.853333pt;}
.yf{bottom:792.773333pt;}
.y104{bottom:804.293333pt;}
.yc8{bottom:805.253333pt;}
.y98{bottom:806.213333pt;}
.y65{bottom:808.133333pt;}
.yc7{bottom:820.613333pt;}
.y97{bottom:821.573333pt;}
.y64{bottom:823.493333pt;}
.y103{bottom:835.973333pt;}
.y96{bottom:836.773333pt;}
.y63{bottom:838.693333pt;}
.y102{bottom:851.173333pt;}
.yc6{bottom:852.133333pt;}
.y95{bottom:853.093333pt;}
.y62{bottom:854.053333pt;}
.y101{bottom:866.533333pt;}
.y94{bottom:868.453333pt;}
.y61{bottom:869.413333pt;}
.y100{bottom:881.893333pt;}
.y93{bottom:883.813333pt;}
.y60{bottom:884.773333pt;}
.yff{bottom:897.253333pt;}
.y92{bottom:899.173333pt;}
.y5f{bottom:900.133333pt;}
.yfe{bottom:912.613333pt;}
.y5e{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.yfd{bottom:927.813333pt;}
.y5d{bottom:930.693333pt;}
.y6{bottom:942.533333pt;}
.yfc{bottom:944.133333pt;}
.y5c{bottom:946.053333pt;}
.yfb{bottom:959.493333pt;}
.y5b{bottom:961.413333pt;}
.yfa{bottom:974.853333pt;}
.y5a{bottom:976.773333pt;}
.yf9{bottom:991.173333pt;}
.y59{bottom:992.133333pt;}
.yf8{bottom:1006.533333pt;}
.y58{bottom:1007.493333pt;}
.yf7{bottom:1021.760000pt;}
.y57{bottom:1022.720000pt;}
.yf6{bottom:1037.120000pt;}
.y56{bottom:1038.080000pt;}
.hc{height:22.240000pt;}
.h13{height:26.272000pt;}
.h2{height:29.312000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1c{height:32.640000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h4{height:38.625000pt;}
.h1e{height:38.672812pt;}
.h18{height:38.828437pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1d{height:42.745000pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h8{height:63.656250pt;}
.h5{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:127.200000pt;}
.h14{height:429.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w5{width:135.066667pt;}
.w8{width:192.066667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x11{left:11.200000pt;}
.xb{left:13.152000pt;}
.xe{left:41.152000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x12{left:96.031988pt;}
.x13{left:120.031988pt;}
.x14{left:144.026655pt;}
.x15{left:168.026655pt;}
.xf{left:191.266667pt;}
.x5{left:207.066667pt;}
.x8{left:241.986667pt;}
.x10{left:264.066667pt;}
.xd{left:265.186667pt;}
.xc{left:288.226667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x9{left:390.666667pt;}
.x3{left:656.933333pt;}
}




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