
    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_706dcbd6a3420006460ab1b7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_95b87ac2672c9b3f09e9f8a2.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eda6b0e5b014e00a75792112.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1da51a63a7ad143a827968ce.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fc8e22decec4bd3bacde9371.woff')format("woff");}.ff8{font-family:ff8;line-height:1.066406;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_0e6a07e09d3ee3b3984038da.woff')format("woff");}.ff9{font-family:ff9;line-height:1.066406;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_5112ca09d5ead26c4e012288.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9aadece1e357bd9fcb12ab48.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.331200px;}
.ls28{letter-spacing:-0.223800px;}
.ls29{letter-spacing:-0.172200px;}
.ls22{letter-spacing:-0.112200px;}
.ls18{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.029520px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.008640px;}
.lsf{letter-spacing:0.012960px;}
.lsa{letter-spacing:0.053280px;}
.ls26{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.119520px;}
.ls12{letter-spacing:0.135360px;}
.lsb{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.166320px;}
.ls23{letter-spacing:0.175800px;}
.ls1{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.189600px;}
.ls1a{letter-spacing:0.206400px;}
.ls25{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.259800px;}
.ls1e{letter-spacing:0.298800px;}
.ls2b{letter-spacing:0.311760px;}
.ls15{letter-spacing:0.312000px;}
.ls10{letter-spacing:0.323400px;}
.ls6{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.532800px;}
.ls8{letter-spacing:0.900000px;}
.ls16{letter-spacing:5.220000px;}
.ls1b{letter-spacing:5.940000px;}
.ls17{letter-spacing:7.380000px;}
.ls14{letter-spacing:8.100000px;}
.ls1c{letter-spacing:10.260000px;}
.ls1d{letter-spacing:16.506720px;}
.ls20{letter-spacing:17.279280px;}
.ls4{letter-spacing:46.002720px;}
.lsc{letter-spacing:55.386720px;}
.ls7{letter-spacing:64.002720px;}
.ls3{letter-spacing:91.362720px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.252000px;}
.ws12{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.146400px;}
.ws8{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.166000px;}
.ws0{word-spacing:-13.500000px;}
.wse{word-spacing:-13.470600px;}
.ws27{word-spacing:-13.336800px;}
.ws1c{word-spacing:-13.323000px;}
.wsc{word-spacing:-13.160160px;}
.wsf{word-spacing:-13.147200px;}
.ws25{word-spacing:-13.035000px;}
.ws5{word-spacing:-9.720000px;}
.wsa{word-spacing:-3.078000px;}
.ws22{word-spacing:-3.003840px;}
.ws26{word-spacing:-0.223200px;}
.ws17{word-spacing:-0.187920px;}
.ws2{word-spacing:0.000000px;}
.ws29{word-spacing:0.092880px;}
.wsd{word-spacing:0.212400px;}
.ws1f{word-spacing:0.308880px;}
.ws2a{word-spacing:0.324720px;}
.ws19{word-spacing:0.443160px;}
.ws2b{word-spacing:0.496800px;}
.ws1a{word-spacing:0.532080px;}
.ws24{word-spacing:0.748800px;}
.ws23{word-spacing:3.063600px;}
.wsb{word-spacing:3.292560px;}
.ws1d{word-spacing:3.412080px;}
.ws11{word-spacing:3.532080px;}
.ws1e{word-spacing:3.647160px;}
.ws10{word-spacing:3.812400px;}
.ws21{word-spacing:3.903120px;}
.ws1b{word-spacing:4.043160px;}
.ws18{word-spacing:4.132080px;}
.ws20{word-spacing:4.571280px;}
.ws28{word-spacing:4.735080px;}
._0{margin-left:-1.199040px;}
._2{width:1.486800px;}
._7{width:3.114720px;}
._1{width:4.228320px;}
._6{width:5.297760px;}
._e{width:6.695280px;}
._8{width:7.716240px;}
._9{width:9.016560px;}
._c{width:10.035360px;}
._b{width:11.055600px;}
._f{width:12.580560px;}
._a{width:13.759200px;}
._5{width:15.963120px;}
._11{width:17.812320px;}
._10{width:19.302480px;}
._25{width:20.691360px;}
._13{width:21.756480px;}
._12{width:22.888080px;}
._26{width:23.905440px;}
._18{width:25.468800px;}
._2b{width:26.779200px;}
._1b{width:27.848160px;}
._2a{width:29.016240px;}
._27{width:30.588720px;}
._17{width:31.799520px;}
._16{width:33.054480px;}
._1c{width:35.179200px;}
._14{width:36.400320px;}
._15{width:37.516320px;}
._21{width:40.883040px;}
._22{width:42.130800px;}
._20{width:44.700480px;}
._1f{width:45.748080px;}
._2d{width:49.003200px;}
._1d{width:53.485200px;}
._30{width:58.564800px;}
._2e{width:63.106560px;}
._35{width:85.038480px;}
._23{width:88.364160px;}
._29{width:91.074240px;}
._4{width:136.056000px;}
._28{width:138.165120px;}
._2c{width:142.049520px;}
._1e{width:147.726720px;}
._2f{width:152.089200px;}
._33{width:157.706640px;}
._31{width:159.439680px;}
._34{width:171.152640px;}
._24{width:173.483280px;}
._d{width:192.289440px;}
._32{width:197.267760px;}
._1a{width:206.905440px;}
._19{width:208.442880px;}
._3{width:636.906000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y71{bottom:3.240000px;}
.y78{bottom:20.340000px;}
.y138{bottom:20.514000px;}
.y73{bottom:20.520000px;}
.y7b{bottom:20.550000px;}
.yb2{bottom:34.560000px;}
.yc{bottom:36.720000px;}
.yb4{bottom:37.620000px;}
.y76{bottom:37.800000px;}
.yb{bottom:55.260000px;}
.ya{bottom:70.776000px;}
.y139{bottom:111.456000px;}
.y6f{bottom:112.896000px;}
.y3d{bottom:113.976000px;}
.y93{bottom:123.336000px;}
.yd1{bottom:125.316000px;}
.y117{bottom:126.936000px;}
.ya6{bottom:127.476000px;}
.y98{bottom:128.016000px;}
.y6e{bottom:130.176000px;}
.y3c{bottom:131.256000px;}
.yeb{bottom:139.896000px;}
.y92{bottom:140.616000px;}
.yd0{bottom:142.596000px;}
.y112{bottom:144.216000px;}
.ya5{bottom:144.756000px;}
.y97{bottom:145.296000px;}
.y137{bottom:146.736000px;}
.y6d{bottom:147.276000px;}
.y3b{bottom:148.536000px;}
.yea{bottom:157.170000px;}
.y91{bottom:157.890000px;}
.ycf{bottom:159.690000px;}
.y111{bottom:161.310000px;}
.ya4{bottom:162.210000px;}
.y96{bottom:163.470000px;}
.y6c{bottom:164.550000px;}
.y3a{bottom:165.810000px;}
.ye9{bottom:174.270000px;}
.y90{bottom:175.170000px;}
.yce{bottom:176.970000px;}
.y110{bottom:178.590000px;}
.ya3{bottom:179.670000px;}
.y95{bottom:180.750000px;}
.y6b{bottom:181.830000px;}
.y136{bottom:182.010000px;}
.y39{bottom:182.910000px;}
.ye8{bottom:191.550000px;}
.y8f{bottom:192.270000px;}
.ycd{bottom:194.250000px;}
.y10f{bottom:195.870000px;}
.ya2{bottom:197.310000px;}
.y94{bottom:198.030000px;}
.y6a{bottom:199.110000px;}
.y38{bottom:200.190000px;}
.ye7{bottom:208.830000px;}
.y8e{bottom:209.550000px;}
.ycc{bottom:211.530000px;}
.y10e{bottom:213.150000px;}
.ya1{bottom:214.770000px;}
.y69{bottom:216.390000px;}
.y135{bottom:217.290000px;}
.y37{bottom:217.470000px;}
.ye6{bottom:226.110000px;}
.y8d{bottom:226.830000px;}
.ycb{bottom:228.810000px;}
.y10d{bottom:230.430000px;}
.ya0{bottom:232.410000px;}
.y68{bottom:233.670000px;}
.y36{bottom:234.750000px;}
.ye5{bottom:243.390000px;}
.y8c{bottom:244.110000px;}
.yca{bottom:246.090000px;}
.y10c{bottom:247.530000px;}
.y9f{bottom:249.870000px;}
.y67{bottom:250.770000px;}
.y35{bottom:252.030000px;}
.y134{bottom:252.570000px;}
.ye4{bottom:260.670000px;}
.y8b{bottom:261.390000px;}
.yc9{bottom:263.190000px;}
.y10b{bottom:264.810000px;}
.y9e{bottom:267.150000px;}
.y66{bottom:268.050000px;}
.y34{bottom:269.130000px;}
.ye3{bottom:277.770000px;}
.y8a{bottom:278.670000px;}
.yc8{bottom:280.470000px;}
.y10a{bottom:282.090000px;}
.y9d{bottom:284.430000px;}
.y65{bottom:285.330000px;}
.y33{bottom:286.410000px;}
.y133{bottom:287.670000px;}
.ye2{bottom:295.050000px;}
.y89{bottom:295.770000px;}
.yc7{bottom:297.750000px;}
.y109{bottom:299.370000px;}
.y9c{bottom:301.890000px;}
.y64{bottom:302.610000px;}
.y32{bottom:303.690000px;}
.ye1{bottom:312.330000px;}
.y88{bottom:313.050000px;}
.yc6{bottom:315.030000px;}
.y108{bottom:316.650000px;}
.y9b{bottom:319.395000px;}
.y63{bottom:319.935000px;}
.y31{bottom:321.015000px;}
.y132{bottom:326.235000px;}
.ye0{bottom:329.655000px;}
.y87{bottom:330.375000px;}
.yc5{bottom:332.355000px;}
.y107{bottom:333.975000px;}
.y9a{bottom:336.855000px;}
.y62{bottom:337.215000px;}
.y30{bottom:338.295000px;}
.y131{bottom:343.515000px;}
.ydf{bottom:344.415000px;}
.y86{bottom:347.655000px;}
.yc4{bottom:349.455000px;}
.y106{bottom:351.075000px;}
.y99{bottom:354.135000px;}
.y61{bottom:354.315000px;}
.y2f{bottom:355.575000px;}
.y130{bottom:360.795000px;}
.yde{bottom:362.415000px;}
.y85{bottom:364.935000px;}
.yc3{bottom:366.735000px;}
.y105{bottom:368.355000px;}
.y60{bottom:371.595000px;}
.y2e{bottom:372.675000px;}
.y12f{bottom:378.255000px;}
.y84{bottom:382.215000px;}
.yc2{bottom:384.015000px;}
.y104{bottom:385.635000px;}
.y5f{bottom:388.875000px;}
.y2d{bottom:389.955000px;}
.y12e{bottom:395.535000px;}
.ydd{bottom:397.695000px;}
.y83{bottom:399.315000px;}
.yc1{bottom:401.295000px;}
.y103{bottom:402.915000px;}
.y5e{bottom:406.155000px;}
.y2c{bottom:407.235000px;}
.y12d{bottom:412.815000px;}
.y82{bottom:416.595000px;}
.yc0{bottom:418.575000px;}
.y102{bottom:420.195000px;}
.y5d{bottom:423.435000px;}
.y2b{bottom:424.515000px;}
.y12c{bottom:430.275000px;}
.ydc{bottom:432.795000px;}
.y81{bottom:433.875000px;}
.ybf{bottom:435.855000px;}
.y101{bottom:437.475000px;}
.y5c{bottom:440.535000px;}
.y2a{bottom:441.795000px;}
.y12b{bottom:447.915000px;}
.y80{bottom:451.155000px;}
.ybe{bottom:452.955000px;}
.y100{bottom:454.575000px;}
.y116{bottom:455.655000px;}
.y5b{bottom:457.815000px;}
.y29{bottom:459.075000px;}
.y12a{bottom:465.375000px;}
.y7f{bottom:468.435000px;}
.ybd{bottom:470.235000px;}
.ydb{bottom:471.315000px;}
.yff{bottom:471.855000px;}
.y115{bottom:472.935000px;}
.y5a{bottom:475.095000px;}
.y28{bottom:476.175000px;}
.y129{bottom:482.835000px;}
.y7e{bottom:485.535000px;}
.ybc{bottom:487.515000px;}
.yda{bottom:488.595000px;}
.yfe{bottom:489.135000px;}
.y114{bottom:491.295000px;}
.y59{bottom:492.375000px;}
.y27{bottom:493.455000px;}
.y128{bottom:500.115000px;}
.y14c{bottom:501.195000px;}
.y7d{bottom:502.815000px;}
.ybb{bottom:504.795000px;}
.yd9{bottom:505.875000px;}
.yfd{bottom:506.415000px;}
.y113{bottom:508.575000px;}
.y58{bottom:509.655000px;}
.y26{bottom:510.735000px;}
.y127{bottom:517.395000px;}
.y7c{bottom:517.575000px;}
.y14b{bottom:518.475000px;}
.yba{bottom:522.075000px;}
.yd8{bottom:523.155000px;}
.yfc{bottom:523.695000px;}
.y57{bottom:526.935000px;}
.y25{bottom:528.015000px;}
.y126{bottom:534.675000px;}
.y14a{bottom:535.575000px;}
.yb9{bottom:539.355000px;}
.yd7{bottom:540.435000px;}
.yfb{bottom:540.975000px;}
.y56{bottom:544.035000px;}
.y24{bottom:545.295000px;}
.y125{bottom:551.955000px;}
.y7a{bottom:552.855000px;}
.yb8{bottom:556.455000px;}
.yd6{bottom:557.535000px;}
.yfa{bottom:558.075000px;}
.y55{bottom:561.315000px;}
.y23{bottom:562.575000px;}
.y124{bottom:569.265000px;}
.y149{bottom:571.245000px;}
.yd5{bottom:572.325000px;}
.yb7{bottom:573.765000px;}
.yf9{bottom:575.385000px;}
.y54{bottom:578.625000px;}
.y22{bottom:583.485000px;}
.y123{bottom:587.445000px;}
.y79{bottom:588.165000px;}
.yb6{bottom:588.525000px;}
.yf8{bottom:592.665000px;}
.y53{bottom:595.905000px;}
.y21{bottom:600.765000px;}
.y122{bottom:604.725000px;}
.y148{bottom:606.885000px;}
.yd4{bottom:607.605000px;}
.yf7{bottom:609.945000px;}
.y52{bottom:613.185000px;}
.y20{bottom:618.045000px;}
.y121{bottom:623.265000px;}
.y147{bottom:623.985000px;}
.yf6{bottom:627.225000px;}
.y51{bottom:630.465000px;}
.y1f{bottom:635.325000px;}
.y77{bottom:640.725000px;}
.yb5{bottom:641.085000px;}
.y120{bottom:641.625000px;}
.y146{bottom:642.345000px;}
.yd3{bottom:642.885000px;}
.yf5{bottom:644.325000px;}
.y50{bottom:647.565000px;}
.y1e{bottom:652.425000px;}
.y11f{bottom:659.085000px;}
.y145{bottom:659.625000px;}
.yf4{bottom:661.605000px;}
.y4f{bottom:664.845000px;}
.y1d{bottom:669.705000px;}
.y75{bottom:675.825000px;}
.y11e{bottom:676.365000px;}
.y144{bottom:676.905000px;}
.yd2{bottom:678.165000px;}
.yf3{bottom:678.885000px;}
.y4e{bottom:682.125000px;}
.y1c{bottom:686.985000px;}
.yb3{bottom:693.645000px;}
.y143{bottom:694.185000px;}
.yf2{bottom:696.165000px;}
.y4d{bottom:699.405000px;}
.y1b{bottom:704.265000px;}
.y142{bottom:711.465000px;}
.y11d{bottom:712.005000px;}
.yf1{bottom:714.525000px;}
.y4c{bottom:716.685000px;}
.y1a{bottom:721.545000px;}
.y74{bottom:728.385000px;}
.y141{bottom:728.565000px;}
.y11c{bottom:730.365000px;}
.yf0{bottom:731.805000px;}
.y4b{bottom:733.965000px;}
.y19{bottom:738.825000px;}
.y140{bottom:745.845000px;}
.yb1{bottom:746.025000px;}
.y11b{bottom:748.725000px;}
.yef{bottom:748.905000px;}
.y4a{bottom:751.065000px;}
.y18{bottom:755.925000px;}
.y13f{bottom:760.605000px;}
.y72{bottom:763.665000px;}
.y11a{bottom:766.905000px;}
.yee{bottom:767.265000px;}
.y49{bottom:768.345000px;}
.y17{bottom:773.205000px;}
.yed{bottom:784.545000px;}
.y119{bottom:785.265000px;}
.y48{bottom:785.625000px;}
.y16{bottom:790.485000px;}
.y13e{bottom:795.885000px;}
.yb0{bottom:798.585000px;}
.y70{bottom:798.945000px;}
.yec{bottom:801.825000px;}
.y118{bottom:802.725000px;}
.y47{bottom:802.905000px;}
.y15{bottom:807.765000px;}
.yaf{bottom:819.870000px;}
.y46{bottom:820.230000px;}
.y14{bottom:825.090000px;}
.y13d{bottom:831.210000px;}
.yae{bottom:837.150000px;}
.y45{bottom:837.330000px;}
.y13{bottom:842.370000px;}
.yad{bottom:854.250000px;}
.y44{bottom:854.610000px;}
.y12{bottom:863.250000px;}
.y13c{bottom:866.490000px;}
.yac{bottom:871.530000px;}
.y43{bottom:871.890000px;}
.y11{bottom:880.890000px;}
.yab{bottom:888.810000px;}
.y42{bottom:889.170000px;}
.y10{bottom:899.970000px;}
.y13b{bottom:901.590000px;}
.yaa{bottom:906.090000px;}
.y41{bottom:906.450000px;}
.yf{bottom:918.870000px;}
.ya9{bottom:923.370000px;}
.y40{bottom:923.730000px;}
.y13a{bottom:936.870000px;}
.ye{bottom:937.410000px;}
.ya8{bottom:940.650000px;}
.y3f{bottom:940.830000px;}
.yd{bottom:955.410000px;}
.ya7{bottom:957.930000px;}
.y3e{bottom:958.110000px;}
.y9{bottom:976.650000px;}
.y8{bottom:995.550000px;}
.y7{bottom:1012.830000px;}
.y6{bottom:1030.830000px;}
.y5{bottom:1047.570000px;}
.y4{bottom:1088.640000px;}
.y3{bottom:1107.180000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.h9{height:17.100000px;}
.h11{height:17.280000px;}
.ha{height:34.380000px;}
.hb{height:34.560000px;}
.he{height:34.596000px;}
.h6{height:38.759766px;}
.h4{height:42.164648px;}
.h1{height:42.894141px;}
.h8{height:43.506914px;}
.hf{height:43.681992px;}
.h7{height:46.736719px;}
.h2{height:47.545312px;}
.h10{height:50.364141px;}
.h3{height:50.800781px;}
.hd{height:51.660000px;}
.hc{height:51.840000px;}
.h5{height:65.884219px;}
.h0{height:1188.000000px;}
.w15{width:71.316000px;}
.wf{width:88.920000px;}
.w8{width:110.916000px;}
.w14{width:122.040000px;}
.w16{width:122.400000px;}
.wd{width:124.920000px;}
.w13{width:125.676000px;}
.w12{width:131.976000px;}
.w9{width:133.056000px;}
.w11{width:140.580000px;}
.wa{width:142.380000px;}
.wb{width:144.936000px;}
.w4{width:147.600000px;}
.w2{width:153.720000px;}
.we{width:155.190000px;}
.w10{width:156.090000px;}
.w7{width:183.420000px;}
.wc{width:189.570000px;}
.w5{width:265.035000px;}
.w6{width:303.510000px;}
.w3{width:563.145000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x13{left:100.296000px;}
.x8{left:108.035986px;}
.x11{left:118.835986px;}
.x2{left:120.635986px;}
.x10{left:122.975986px;}
.xe{left:127.115986px;}
.x9{left:129.455986px;}
.x12{left:135.035986px;}
.x1{left:141.695986px;}
.xf{left:162.029986px;}
.x5{left:169.769986px;}
.x18{left:171.029986px;}
.x1a{left:189.029986px;}
.x1b{left:216.029986px;}
.x2f{left:241.590000px;}
.x2d{left:243.929986px;}
.x1c{left:248.610000px;}
.x15{left:254.730000px;}
.x2c{left:279.209986px;}
.x1f{left:284.430000px;}
.x23{left:290.595000px;}
.x27{left:298.514986px;}
.x2e{left:300.134986px;}
.x1e{left:306.794986px;}
.x2a{left:311.114986px;}
.x17{left:340.814986px;}
.xb{left:354.854986px;}
.xa{left:357.194986px;}
.x16{left:366.734986px;}
.x30{left:374.295000px;}
.xc{left:379.514986px;}
.xd{left:392.294986px;}
.x20{left:396.075000px;}
.x7{left:398.774986px;}
.x19{left:399.854986px;}
.x2b{left:404.354986px;}
.x28{left:408.674986px;}
.x24{left:416.235000px;}
.x6{left:424.874986px;}
.x29{left:427.754986px;}
.x3{left:459.074986px;}
.x31{left:500.685000px;}
.x1d{left:514.365000px;}
.x21{left:529.845000px;}
.x4{left:530.924986px;}
.x25{left:572.145000px;}
.x32{left:623.445000px;}
.x26{left:661.785000px;}
.x22{left:672.945000px;}
.x33{left:695.490000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.294400pt;}
.ls28{letter-spacing:-0.198933pt;}
.ls29{letter-spacing:-0.153067pt;}
.ls22{letter-spacing:-0.099733pt;}
.ls18{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.026240pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.007680pt;}
.lsf{letter-spacing:0.011520pt;}
.lsa{letter-spacing:0.047360pt;}
.ls26{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls12{letter-spacing:0.120320pt;}
.lsb{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.147840pt;}
.ls23{letter-spacing:0.156267pt;}
.ls1{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.168533pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls25{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls2b{letter-spacing:0.277120pt;}
.ls15{letter-spacing:0.277333pt;}
.ls10{letter-spacing:0.287467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.473600pt;}
.ls8{letter-spacing:0.800000pt;}
.ls16{letter-spacing:4.640000pt;}
.ls1b{letter-spacing:5.280000pt;}
.ls17{letter-spacing:6.560000pt;}
.ls14{letter-spacing:7.200000pt;}
.ls1c{letter-spacing:9.120000pt;}
.ls1d{letter-spacing:14.672640pt;}
.ls20{letter-spacing:15.359360pt;}
.ls4{letter-spacing:40.891307pt;}
.lsc{letter-spacing:49.232640pt;}
.ls7{letter-spacing:56.891307pt;}
.ls3{letter-spacing:81.211307pt;}
.ws7{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.557333pt;}
.ws12{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.592000pt;}
.ws0{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.973867pt;}
.ws27{word-spacing:-11.854933pt;}
.ws1c{word-spacing:-11.842667pt;}
.wsc{word-spacing:-11.697920pt;}
.wsf{word-spacing:-11.686400pt;}
.ws25{word-spacing:-11.586667pt;}
.ws5{word-spacing:-8.640000pt;}
.wsa{word-spacing:-2.736000pt;}
.ws22{word-spacing:-2.670080pt;}
.ws26{word-spacing:-0.198400pt;}
.ws17{word-spacing:-0.167040pt;}
.ws2{word-spacing:0.000000pt;}
.ws29{word-spacing:0.082560pt;}
.wsd{word-spacing:0.188800pt;}
.ws1f{word-spacing:0.274560pt;}
.ws2a{word-spacing:0.288640pt;}
.ws19{word-spacing:0.393920pt;}
.ws2b{word-spacing:0.441600pt;}
.ws1a{word-spacing:0.472960pt;}
.ws24{word-spacing:0.665600pt;}
.ws23{word-spacing:2.723200pt;}
.wsb{word-spacing:2.926720pt;}
.ws1d{word-spacing:3.032960pt;}
.ws11{word-spacing:3.139627pt;}
.ws1e{word-spacing:3.241920pt;}
.ws10{word-spacing:3.388800pt;}
.ws21{word-spacing:3.469440pt;}
.ws1b{word-spacing:3.593920pt;}
.ws18{word-spacing:3.672960pt;}
.ws20{word-spacing:4.063360pt;}
.ws28{word-spacing:4.208960pt;}
._0{margin-left:-1.065813pt;}
._2{width:1.321600pt;}
._7{width:2.768640pt;}
._1{width:3.758507pt;}
._6{width:4.709120pt;}
._e{width:5.951360pt;}
._8{width:6.858880pt;}
._9{width:8.014720pt;}
._c{width:8.920320pt;}
._b{width:9.827200pt;}
._f{width:11.182720pt;}
._a{width:12.230400pt;}
._5{width:14.189440pt;}
._11{width:15.833173pt;}
._10{width:17.157760pt;}
._25{width:18.392320pt;}
._13{width:19.339093pt;}
._12{width:20.344960pt;}
._26{width:21.249280pt;}
._18{width:22.638933pt;}
._2b{width:23.803733pt;}
._1b{width:24.753920pt;}
._2a{width:25.792213pt;}
._27{width:27.189973pt;}
._17{width:28.266240pt;}
._16{width:29.381760pt;}
._1c{width:31.270400pt;}
._14{width:32.355840pt;}
._15{width:33.347840pt;}
._21{width:36.340480pt;}
._22{width:37.449600pt;}
._20{width:39.733760pt;}
._1f{width:40.664960pt;}
._2d{width:43.558400pt;}
._1d{width:47.542400pt;}
._30{width:52.057600pt;}
._2e{width:56.094720pt;}
._35{width:75.589760pt;}
._23{width:78.545920pt;}
._29{width:80.954880pt;}
._4{width:120.938667pt;}
._28{width:122.813440pt;}
._2c{width:126.266240pt;}
._1e{width:131.312640pt;}
._2f{width:135.190400pt;}
._33{width:140.183680pt;}
._31{width:141.724160pt;}
._34{width:152.135680pt;}
._24{width:154.207360pt;}
._d{width:170.923947pt;}
._32{width:175.349120pt;}
._1a{width:183.915947pt;}
._19{width:185.282560pt;}
._3{width:566.138667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:2.880000pt;}
.y78{bottom:18.080000pt;}
.y138{bottom:18.234667pt;}
.y73{bottom:18.240000pt;}
.y7b{bottom:18.266667pt;}
.yb2{bottom:30.720000pt;}
.yc{bottom:32.640000pt;}
.yb4{bottom:33.440000pt;}
.y76{bottom:33.600000pt;}
.yb{bottom:49.120000pt;}
.ya{bottom:62.912000pt;}
.y139{bottom:99.072000pt;}
.y6f{bottom:100.352000pt;}
.y3d{bottom:101.312000pt;}
.y93{bottom:109.632000pt;}
.yd1{bottom:111.392000pt;}
.y117{bottom:112.832000pt;}
.ya6{bottom:113.312000pt;}
.y98{bottom:113.792000pt;}
.y6e{bottom:115.712000pt;}
.y3c{bottom:116.672000pt;}
.yeb{bottom:124.352000pt;}
.y92{bottom:124.992000pt;}
.yd0{bottom:126.752000pt;}
.y112{bottom:128.192000pt;}
.ya5{bottom:128.672000pt;}
.y97{bottom:129.152000pt;}
.y137{bottom:130.432000pt;}
.y6d{bottom:130.912000pt;}
.y3b{bottom:132.032000pt;}
.yea{bottom:139.706667pt;}
.y91{bottom:140.346667pt;}
.ycf{bottom:141.946667pt;}
.y111{bottom:143.386667pt;}
.ya4{bottom:144.186667pt;}
.y96{bottom:145.306667pt;}
.y6c{bottom:146.266667pt;}
.y3a{bottom:147.386667pt;}
.ye9{bottom:154.906667pt;}
.y90{bottom:155.706667pt;}
.yce{bottom:157.306667pt;}
.y110{bottom:158.746667pt;}
.ya3{bottom:159.706667pt;}
.y95{bottom:160.666667pt;}
.y6b{bottom:161.626667pt;}
.y136{bottom:161.786667pt;}
.y39{bottom:162.586667pt;}
.ye8{bottom:170.266667pt;}
.y8f{bottom:170.906667pt;}
.ycd{bottom:172.666667pt;}
.y10f{bottom:174.106667pt;}
.ya2{bottom:175.386667pt;}
.y94{bottom:176.026667pt;}
.y6a{bottom:176.986667pt;}
.y38{bottom:177.946667pt;}
.ye7{bottom:185.626667pt;}
.y8e{bottom:186.266667pt;}
.ycc{bottom:188.026667pt;}
.y10e{bottom:189.466667pt;}
.ya1{bottom:190.906667pt;}
.y69{bottom:192.346667pt;}
.y135{bottom:193.146667pt;}
.y37{bottom:193.306667pt;}
.ye6{bottom:200.986667pt;}
.y8d{bottom:201.626667pt;}
.ycb{bottom:203.386667pt;}
.y10d{bottom:204.826667pt;}
.ya0{bottom:206.586667pt;}
.y68{bottom:207.706667pt;}
.y36{bottom:208.666667pt;}
.ye5{bottom:216.346667pt;}
.y8c{bottom:216.986667pt;}
.yca{bottom:218.746667pt;}
.y10c{bottom:220.026667pt;}
.y9f{bottom:222.106667pt;}
.y67{bottom:222.906667pt;}
.y35{bottom:224.026667pt;}
.y134{bottom:224.506667pt;}
.ye4{bottom:231.706667pt;}
.y8b{bottom:232.346667pt;}
.yc9{bottom:233.946667pt;}
.y10b{bottom:235.386667pt;}
.y9e{bottom:237.466667pt;}
.y66{bottom:238.266667pt;}
.y34{bottom:239.226667pt;}
.ye3{bottom:246.906667pt;}
.y8a{bottom:247.706667pt;}
.yc8{bottom:249.306667pt;}
.y10a{bottom:250.746667pt;}
.y9d{bottom:252.826667pt;}
.y65{bottom:253.626667pt;}
.y33{bottom:254.586667pt;}
.y133{bottom:255.706667pt;}
.ye2{bottom:262.266667pt;}
.y89{bottom:262.906667pt;}
.yc7{bottom:264.666667pt;}
.y109{bottom:266.106667pt;}
.y9c{bottom:268.346667pt;}
.y64{bottom:268.986667pt;}
.y32{bottom:269.946667pt;}
.ye1{bottom:277.626667pt;}
.y88{bottom:278.266667pt;}
.yc6{bottom:280.026667pt;}
.y108{bottom:281.466667pt;}
.y9b{bottom:283.906667pt;}
.y63{bottom:284.386667pt;}
.y31{bottom:285.346667pt;}
.y132{bottom:289.986667pt;}
.ye0{bottom:293.026667pt;}
.y87{bottom:293.666667pt;}
.yc5{bottom:295.426667pt;}
.y107{bottom:296.866667pt;}
.y9a{bottom:299.426667pt;}
.y62{bottom:299.746667pt;}
.y30{bottom:300.706667pt;}
.y131{bottom:305.346667pt;}
.ydf{bottom:306.146667pt;}
.y86{bottom:309.026667pt;}
.yc4{bottom:310.626667pt;}
.y106{bottom:312.066667pt;}
.y99{bottom:314.786667pt;}
.y61{bottom:314.946667pt;}
.y2f{bottom:316.066667pt;}
.y130{bottom:320.706667pt;}
.yde{bottom:322.146667pt;}
.y85{bottom:324.386667pt;}
.yc3{bottom:325.986667pt;}
.y105{bottom:327.426667pt;}
.y60{bottom:330.306667pt;}
.y2e{bottom:331.266667pt;}
.y12f{bottom:336.226667pt;}
.y84{bottom:339.746667pt;}
.yc2{bottom:341.346667pt;}
.y104{bottom:342.786667pt;}
.y5f{bottom:345.666667pt;}
.y2d{bottom:346.626667pt;}
.y12e{bottom:351.586667pt;}
.ydd{bottom:353.506667pt;}
.y83{bottom:354.946667pt;}
.yc1{bottom:356.706667pt;}
.y103{bottom:358.146667pt;}
.y5e{bottom:361.026667pt;}
.y2c{bottom:361.986667pt;}
.y12d{bottom:366.946667pt;}
.y82{bottom:370.306667pt;}
.yc0{bottom:372.066667pt;}
.y102{bottom:373.506667pt;}
.y5d{bottom:376.386667pt;}
.y2b{bottom:377.346667pt;}
.y12c{bottom:382.466667pt;}
.ydc{bottom:384.706667pt;}
.y81{bottom:385.666667pt;}
.ybf{bottom:387.426667pt;}
.y101{bottom:388.866667pt;}
.y5c{bottom:391.586667pt;}
.y2a{bottom:392.706667pt;}
.y12b{bottom:398.146667pt;}
.y80{bottom:401.026667pt;}
.ybe{bottom:402.626667pt;}
.y100{bottom:404.066667pt;}
.y116{bottom:405.026667pt;}
.y5b{bottom:406.946667pt;}
.y29{bottom:408.066667pt;}
.y12a{bottom:413.666667pt;}
.y7f{bottom:416.386667pt;}
.ybd{bottom:417.986667pt;}
.ydb{bottom:418.946667pt;}
.yff{bottom:419.426667pt;}
.y115{bottom:420.386667pt;}
.y5a{bottom:422.306667pt;}
.y28{bottom:423.266667pt;}
.y129{bottom:429.186667pt;}
.y7e{bottom:431.586667pt;}
.ybc{bottom:433.346667pt;}
.yda{bottom:434.306667pt;}
.yfe{bottom:434.786667pt;}
.y114{bottom:436.706667pt;}
.y59{bottom:437.666667pt;}
.y27{bottom:438.626667pt;}
.y128{bottom:444.546667pt;}
.y14c{bottom:445.506667pt;}
.y7d{bottom:446.946667pt;}
.ybb{bottom:448.706667pt;}
.yd9{bottom:449.666667pt;}
.yfd{bottom:450.146667pt;}
.y113{bottom:452.066667pt;}
.y58{bottom:453.026667pt;}
.y26{bottom:453.986667pt;}
.y127{bottom:459.906667pt;}
.y7c{bottom:460.066667pt;}
.y14b{bottom:460.866667pt;}
.yba{bottom:464.066667pt;}
.yd8{bottom:465.026667pt;}
.yfc{bottom:465.506667pt;}
.y57{bottom:468.386667pt;}
.y25{bottom:469.346667pt;}
.y126{bottom:475.266667pt;}
.y14a{bottom:476.066667pt;}
.yb9{bottom:479.426667pt;}
.yd7{bottom:480.386667pt;}
.yfb{bottom:480.866667pt;}
.y56{bottom:483.586667pt;}
.y24{bottom:484.706667pt;}
.y125{bottom:490.626667pt;}
.y7a{bottom:491.426667pt;}
.yb8{bottom:494.626667pt;}
.yd6{bottom:495.586667pt;}
.yfa{bottom:496.066667pt;}
.y55{bottom:498.946667pt;}
.y23{bottom:500.066667pt;}
.y124{bottom:506.013333pt;}
.y149{bottom:507.773333pt;}
.yd5{bottom:508.733333pt;}
.yb7{bottom:510.013333pt;}
.yf9{bottom:511.453333pt;}
.y54{bottom:514.333333pt;}
.y22{bottom:518.653333pt;}
.y123{bottom:522.173333pt;}
.y79{bottom:522.813333pt;}
.yb6{bottom:523.133333pt;}
.yf8{bottom:526.813333pt;}
.y53{bottom:529.693333pt;}
.y21{bottom:534.013333pt;}
.y122{bottom:537.533333pt;}
.y148{bottom:539.453333pt;}
.yd4{bottom:540.093333pt;}
.yf7{bottom:542.173333pt;}
.y52{bottom:545.053333pt;}
.y20{bottom:549.373333pt;}
.y121{bottom:554.013333pt;}
.y147{bottom:554.653333pt;}
.yf6{bottom:557.533333pt;}
.y51{bottom:560.413333pt;}
.y1f{bottom:564.733333pt;}
.y77{bottom:569.533333pt;}
.yb5{bottom:569.853333pt;}
.y120{bottom:570.333333pt;}
.y146{bottom:570.973333pt;}
.yd3{bottom:571.453333pt;}
.yf5{bottom:572.733333pt;}
.y50{bottom:575.613333pt;}
.y1e{bottom:579.933333pt;}
.y11f{bottom:585.853333pt;}
.y145{bottom:586.333333pt;}
.yf4{bottom:588.093333pt;}
.y4f{bottom:590.973333pt;}
.y1d{bottom:595.293333pt;}
.y75{bottom:600.733333pt;}
.y11e{bottom:601.213333pt;}
.y144{bottom:601.693333pt;}
.yd2{bottom:602.813333pt;}
.yf3{bottom:603.453333pt;}
.y4e{bottom:606.333333pt;}
.y1c{bottom:610.653333pt;}
.yb3{bottom:616.573333pt;}
.y143{bottom:617.053333pt;}
.yf2{bottom:618.813333pt;}
.y4d{bottom:621.693333pt;}
.y1b{bottom:626.013333pt;}
.y142{bottom:632.413333pt;}
.y11d{bottom:632.893333pt;}
.yf1{bottom:635.133333pt;}
.y4c{bottom:637.053333pt;}
.y1a{bottom:641.373333pt;}
.y74{bottom:647.453333pt;}
.y141{bottom:647.613333pt;}
.y11c{bottom:649.213333pt;}
.yf0{bottom:650.493333pt;}
.y4b{bottom:652.413333pt;}
.y19{bottom:656.733333pt;}
.y140{bottom:662.973333pt;}
.yb1{bottom:663.133333pt;}
.y11b{bottom:665.533333pt;}
.yef{bottom:665.693333pt;}
.y4a{bottom:667.613333pt;}
.y18{bottom:671.933333pt;}
.y13f{bottom:676.093333pt;}
.y72{bottom:678.813333pt;}
.y11a{bottom:681.693333pt;}
.yee{bottom:682.013333pt;}
.y49{bottom:682.973333pt;}
.y17{bottom:687.293333pt;}
.yed{bottom:697.373333pt;}
.y119{bottom:698.013333pt;}
.y48{bottom:698.333333pt;}
.y16{bottom:702.653333pt;}
.y13e{bottom:707.453333pt;}
.yb0{bottom:709.853333pt;}
.y70{bottom:710.173333pt;}
.yec{bottom:712.733333pt;}
.y118{bottom:713.533333pt;}
.y47{bottom:713.693333pt;}
.y15{bottom:718.013333pt;}
.yaf{bottom:728.773333pt;}
.y46{bottom:729.093333pt;}
.y14{bottom:733.413333pt;}
.y13d{bottom:738.853333pt;}
.yae{bottom:744.133333pt;}
.y45{bottom:744.293333pt;}
.y13{bottom:748.773333pt;}
.yad{bottom:759.333333pt;}
.y44{bottom:759.653333pt;}
.y12{bottom:767.333333pt;}
.y13c{bottom:770.213333pt;}
.yac{bottom:774.693333pt;}
.y43{bottom:775.013333pt;}
.y11{bottom:783.013333pt;}
.yab{bottom:790.053333pt;}
.y42{bottom:790.373333pt;}
.y10{bottom:799.973333pt;}
.y13b{bottom:801.413333pt;}
.yaa{bottom:805.413333pt;}
.y41{bottom:805.733333pt;}
.yf{bottom:816.773333pt;}
.ya9{bottom:820.773333pt;}
.y40{bottom:821.093333pt;}
.y13a{bottom:832.773333pt;}
.ye{bottom:833.253333pt;}
.ya8{bottom:836.133333pt;}
.y3f{bottom:836.293333pt;}
.yd{bottom:849.253333pt;}
.ya7{bottom:851.493333pt;}
.y3e{bottom:851.653333pt;}
.y9{bottom:868.133333pt;}
.y8{bottom:884.933333pt;}
.y7{bottom:900.293333pt;}
.y6{bottom:916.293333pt;}
.y5{bottom:931.173333pt;}
.y4{bottom:967.680000pt;}
.y3{bottom:984.160000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.h9{height:15.200000pt;}
.h11{height:15.360000pt;}
.ha{height:30.560000pt;}
.hb{height:30.720000pt;}
.he{height:30.752000pt;}
.h6{height:34.453125pt;}
.h4{height:37.479688pt;}
.h1{height:38.128125pt;}
.h8{height:38.672812pt;}
.hf{height:38.828437pt;}
.h7{height:41.543750pt;}
.h2{height:42.262500pt;}
.h10{height:44.768125pt;}
.h3{height:45.156250pt;}
.hd{height:45.920000pt;}
.hc{height:46.080000pt;}
.h5{height:58.563750pt;}
.h0{height:1056.000000pt;}
.w15{width:63.392000pt;}
.wf{width:79.040000pt;}
.w8{width:98.592000pt;}
.w14{width:108.480000pt;}
.w16{width:108.800000pt;}
.wd{width:111.040000pt;}
.w13{width:111.712000pt;}
.w12{width:117.312000pt;}
.w9{width:118.272000pt;}
.w11{width:124.960000pt;}
.wa{width:126.560000pt;}
.wb{width:128.832000pt;}
.w4{width:131.200000pt;}
.w2{width:136.640000pt;}
.we{width:137.946667pt;}
.w10{width:138.746667pt;}
.w7{width:163.040000pt;}
.wc{width:168.506667pt;}
.w5{width:235.586667pt;}
.w6{width:269.786667pt;}
.w3{width:500.573333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x13{left:89.152000pt;}
.x8{left:96.031988pt;}
.x11{left:105.631988pt;}
.x2{left:107.231988pt;}
.x10{left:109.311988pt;}
.xe{left:112.991988pt;}
.x9{left:115.071988pt;}
.x12{left:120.031988pt;}
.x1{left:125.951988pt;}
.xf{left:144.026655pt;}
.x5{left:150.906655pt;}
.x18{left:152.026655pt;}
.x1a{left:168.026655pt;}
.x1b{left:192.026655pt;}
.x2f{left:214.746667pt;}
.x2d{left:216.826655pt;}
.x1c{left:220.986667pt;}
.x15{left:226.426667pt;}
.x2c{left:248.186655pt;}
.x1f{left:252.826667pt;}
.x23{left:258.306667pt;}
.x27{left:265.346655pt;}
.x2e{left:266.786655pt;}
.x1e{left:272.706655pt;}
.x2a{left:276.546655pt;}
.x17{left:302.946655pt;}
.xb{left:315.426655pt;}
.xa{left:317.506655pt;}
.x16{left:325.986655pt;}
.x30{left:332.706667pt;}
.xc{left:337.346655pt;}
.xd{left:348.706655pt;}
.x20{left:352.066667pt;}
.x7{left:354.466655pt;}
.x19{left:355.426655pt;}
.x2b{left:359.426655pt;}
.x28{left:363.266655pt;}
.x24{left:369.986667pt;}
.x6{left:377.666655pt;}
.x29{left:380.226655pt;}
.x3{left:408.066655pt;}
.x31{left:445.053333pt;}
.x1d{left:457.213333pt;}
.x21{left:470.973333pt;}
.x4{left:471.933321pt;}
.x25{left:508.573333pt;}
.x32{left:554.173333pt;}
.x26{left:588.253333pt;}
.x22{left:598.173333pt;}
.x33{left:618.213333pt;}
}




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