
    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_3843c7a4de296414ab9f9cc9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.004883;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_ed648532d043b351f58de652.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898926;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_b3f2f6b1eff1038c1bda60b4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_ca9ed5d53acd0ab6c665a0d8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_892be78597857d2a3b71e835.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_00a698b46212567bdf756cd5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_ffcb7c67bdea3ced6a90e2d4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_3b4f497100bf5b6f5f426a84.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_5694d3b34aee539ccfdfad99.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_7eae9dc0f50778b0619a1139.woff')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_d5c42cc9e8822074e6ac9f2e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_2087af6e4ac287211a0790aa.woff')format("woff");}.ffc{font-family:ffc;line-height:0.690918;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_265ea4bb96e6852098e6c0a0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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);}
.v2{vertical-align:-82.800000px;}
.v4{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:30.240000px;}
.v3{vertical-align:33.120000px;}
.v1{vertical-align:45.360000px;}
.ls2a{letter-spacing:-0.666000px;}
.ls32{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.414600px;}
.ls2b{letter-spacing:-0.306600px;}
.lsb{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.189600px;}
.ls22{letter-spacing:-0.181200px;}
.ls1d{letter-spacing:-0.178800px;}
.ls24{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.109200px;}
.ls18{letter-spacing:-0.106800px;}
.ls1e{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018720px;}
.ls2{letter-spacing:0.051840px;}
.lsf{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.256200px;}
.ls19{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.306600px;}
.ls28{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.530400px;}
.lsa{letter-spacing:0.567600px;}
.ls29{letter-spacing:0.612000px;}
.ls31{letter-spacing:0.648000px;}
.lsd{letter-spacing:2.304000px;}
.lse{letter-spacing:3.024000px;}
.ls30{letter-spacing:3.744000px;}
.ls5{letter-spacing:5.184000px;}
.ls1f{letter-spacing:6.065280px;}
.ls2d{letter-spacing:7.344000px;}
.ls11{letter-spacing:8.064000px;}
.ls12{letter-spacing:8.184000px;}
.ls13{letter-spacing:8.784000px;}
.ls23{letter-spacing:10.224000px;}
.ls1b{letter-spacing:10.746720px;}
.ls1a{letter-spacing:10.944000px;}
.ls2f{letter-spacing:13.824000px;}
.ls4{letter-spacing:14.544000px;}
.ls26{letter-spacing:15.264000px;}
.ls15{letter-spacing:17.424000px;}
.ls2c{letter-spacing:18.144000px;}
.ls2e{letter-spacing:21.744000px;}
.ls10{letter-spacing:22.644000px;}
.ls27{letter-spacing:31.104000px;}
.ls25{letter-spacing:31.824000px;}
.ls16{letter-spacing:32.346720px;}
.ls3{letter-spacing:1713.300000px;}
.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;}
}
.ws0{word-spacing:-198.000000px;}
.ws2{word-spacing:-72.000000px;}
.ws3{word-spacing:-27.151680px;}
.ws4{word-spacing:-26.431680px;}
.ws1c{word-spacing:-20.664000px;}
.ws17{word-spacing:-20.520000px;}
.ws8{word-spacing:-20.304000px;}
.wsd{word-spacing:-20.232000px;}
.ws6{word-spacing:-20.016000px;}
.ws16{word-spacing:-19.872000px;}
.ws18{word-spacing:-19.800000px;}
.wsb{word-spacing:-19.584000px;}
.ws9{word-spacing:-18.982320px;}
.wsa{word-spacing:-18.414720px;}
.ws19{word-spacing:-17.225280px;}
.ws10{word-spacing:-16.873080px;}
.wse{word-spacing:-16.613280px;}
.wsf{word-spacing:-16.506480px;}
.ws1a{word-spacing:-16.306680px;}
.ws11{word-spacing:-15.226440px;}
.ws7{word-spacing:-13.410720px;}
.ws15{word-spacing:-13.229520px;}
.ws12{word-spacing:-11.609280px;}
.ws13{word-spacing:-11.430480px;}
.wsc{word-spacing:-10.808640px;}
.ws14{word-spacing:-10.791360px;}
.ws5{word-spacing:-0.095760px;}
.ws1b{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-12.817920px;}
._3{margin-left:-5.568000px;}
._2{margin-left:-3.504000px;}
._1{margin-left:-1.704000px;}
._0{width:1.068000px;}
._6{width:2.114880px;}
._d{width:3.888000px;}
._c{width:5.184000px;}
._14{width:6.528000px;}
._a{width:8.208000px;}
._f{width:9.648000px;}
._e{width:11.232000px;}
._10{width:13.188000px;}
._7{width:14.328000px;}
._1e{width:15.358560px;}
._8{width:16.992000px;}
._1a{width:18.000000px;}
._29{width:19.008000px;}
._b{width:21.228000px;}
._19{width:22.752000px;}
._11{width:23.832000px;}
._12{width:24.852000px;}
._1b{width:26.208000px;}
._1f{width:27.432000px;}
._20{width:28.800000px;}
._21{width:29.807520px;}
._18{width:31.272000px;}
._17{width:32.880000px;}
._16{width:34.128000px;}
._15{width:35.352000px;}
._9{width:37.378560px;}
._22{width:38.841120px;}
._1c{width:40.249440px;}
._1d{width:41.309760px;}
._2a{width:43.272000px;}
._26{width:45.936000px;}
._24{width:47.304000px;}
._23{width:48.504000px;}
._28{width:52.080000px;}
._27{width:53.544000px;}
._25{width:54.984000px;}
._4{width:115.200000px;}
._5{width:211.656000px;}
.fc6{color:transparent;}
.fc5{color:rgb(192,80,77);}
.fc4{color:rgb(79,129,189);}
.fc3{color:rgb(247,150,70);}
.fc2{color:rgb(84,141,212);}
.fc1{color:rgb(227,108,10);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs0{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y4c{bottom:1.620000px;}
.y27{bottom:75.600000px;}
.y26{bottom:113.760000px;}
.y69{bottom:132.660000px;}
.ycb{bottom:135.180000px;}
.y4a{bottom:140.220000px;}
.y8d{bottom:140.400000px;}
.y8{bottom:142.800000px;}
.y11b{bottom:144.360000px;}
.y129{bottom:145.800000px;}
.y49{bottom:149.940000px;}
.yc3{bottom:151.200000px;}
.y4b{bottom:155.700000px;}
.yc4{bottom:155.880000px;}
.yac{bottom:157.500000px;}
.yca{bottom:166.320000px;}
.y128{bottom:166.500000px;}
.yec{bottom:167.400000px;}
.yab{bottom:168.480000px;}
.yad{bottom:174.420000px;}
.y48{bottom:174.780000px;}
.y11a{bottom:175.320000px;}
.y103{bottom:179.640000px;}
.y7{bottom:184.050000px;}
.y68{bottom:184.530000px;}
.y47{bottom:185.790000px;}
.yc2{bottom:187.050000px;}
.y127{bottom:187.230000px;}
.yeb{bottom:192.090000px;}
.yc9{bottom:197.310000px;}
.yea{bottom:201.810000px;}
.y119{bottom:206.490000px;}
.y126{bottom:207.930000px;}
.y67{bottom:209.370000px;}
.y102{bottom:210.810000px;}
.yaa{bottom:214.590000px;}
.y46{bottom:218.010000px;}
.y8c{bottom:219.090000px;}
.y6{bottom:225.150000px;}
.y66{bottom:226.650000px;}
.yc8{bottom:228.450000px;}
.y125{bottom:228.630000px;}
.y65{bottom:236.190000px;}
.y118{bottom:237.450000px;}
.y101{bottom:241.770000px;}
.ye9{bottom:243.750000px;}
.ya9{bottom:245.550000px;}
.y45{bottom:249.150000px;}
.y124{bottom:249.330000px;}
.y8b{bottom:253.470000px;}
.ye8{bottom:254.730000px;}
.y64{bottom:261.030000px;}
.y5{bottom:266.400000px;}
.y117{bottom:268.590000px;}
.yc7{bottom:270.030000px;}
.y63{bottom:272.010000px;}
.y100{bottom:272.910000px;}
.ye7{bottom:275.250000px;}
.ya8{bottom:276.690000px;}
.y8a{bottom:278.310000px;}
.y44{bottom:280.110000px;}
.y123{bottom:290.730000px;}
.y89{bottom:295.590000px;}
.y116{bottom:299.550000px;}
.yc6{bottom:300.810000px;}
.yff{bottom:303.870000px;}
.ye6{bottom:306.390000px;}
.ya7{bottom:307.650000px;}
.y43{bottom:311.250000px;}
.y122{bottom:311.430000px;}
.y88{bottom:312.870000px;}
.y87{bottom:323.850000px;}
.y62{bottom:324.750000px;}
.yfe{bottom:336.090000px;}
.ye5{bottom:337.350000px;}
.ya6{bottom:338.790000px;}
.y115{bottom:341.130000px;}
.y42{bottom:342.210000px;}
.yc5{bottom:342.390000px;}
.y61{bottom:343.650000px;}
.y121{bottom:352.830000px;}
.y86{bottom:354.090000px;}
.y11c{bottom:360.570000px;}
.yfd{bottom:367.230000px;}
.ye4{bottom:369.570000px;}
.ya5{bottom:369.750000px;}
.y114{bottom:372.090000px;}
.y85{bottom:372.990000px;}
.y41{bottom:373.350000px;}
.y120{bottom:373.530000px;}
.y24{bottom:380.700000px;}
.y60{bottom:383.790000px;}
.y84{bottom:391.890000px;}
.y4{bottom:393.150000px;}
.yfc{bottom:399.450000px;}
.ye3{bottom:400.710000px;}
.ya4{bottom:400.890000px;}
.y113{bottom:403.050000px;}
.y40{bottom:404.310000px;}
.y83{bottom:410.970000px;}
.y5f{bottom:414.750000px;}
.y11f{bottom:414.930000px;}
.y23{bottom:417.450000px;}
.y82{bottom:429.915000px;}
.yfb{bottom:430.635000px;}
.ye2{bottom:431.715000px;}
.ya3{bottom:431.895000px;}
.y112{bottom:434.235000px;}
.y3f{bottom:435.495000px;}
.y5e{bottom:445.755000px;}
.y81{bottom:448.995000px;}
.y22{bottom:454.200000px;}
.yc1{bottom:456.375000px;}
.yfa{bottom:461.595000px;}
.ye1{bottom:462.855000px;}
.ya2{bottom:463.035000px;}
.y111{bottom:465.195000px;}
.y3e{bottom:466.455000px;}
.y80{bottom:467.895000px;}
.y5d{bottom:476.895000px;}
.yc0{bottom:487.155000px;}
.y21{bottom:490.950000px;}
.yf9{bottom:492.735000px;}
.ye0{bottom:493.815000px;}
.ya1{bottom:493.995000px;}
.y110{bottom:496.335000px;}
.y3d{bottom:497.595000px;}
.y5c{bottom:507.855000px;}
.y7f{bottom:508.035000px;}
.y20{bottom:514.500000px;}
.ybf{bottom:518.295000px;}
.yf8{bottom:523.695000px;}
.ydf{bottom:524.955000px;}
.ya0{bottom:525.135000px;}
.y10f{bottom:527.295000px;}
.y3c{bottom:528.555000px;}
.y7e{bottom:538.995000px;}
.y1f{bottom:545.550000px;}
.ybe{bottom:549.255000px;}
.y5b{bottom:549.435000px;}
.yf7{bottom:554.655000px;}
.y9f{bottom:556.095000px;}
.yde{bottom:557.175000px;}
.y10e{bottom:558.435000px;}
.y3b{bottom:559.695000px;}
.y7d{bottom:569.955000px;}
.y1e{bottom:576.600000px;}
.y5a{bottom:580.395000px;}
.yf6{bottom:587.055000px;}
.y9e{bottom:587.235000px;}
.ydd{bottom:588.315000px;}
.y3a{bottom:590.655000px;}
.y10d{bottom:600.015000px;}
.y3{bottom:600.450000px;}
.y7c{bottom:600.915000px;}
.y1d{bottom:607.650000px;}
.ybd{bottom:611.355000px;}
.yf5{bottom:618.015000px;}
.y9d{bottom:618.195000px;}
.ydc{bottom:619.275000px;}
.y39{bottom:621.615000px;}
.y59{bottom:621.795000px;}
.y10c{bottom:630.795000px;}
.y7b{bottom:632.055000px;}
.y1c{bottom:638.700000px;}
.ybc{bottom:642.315000px;}
.y11e{bottom:642.495000px;}
.yf4{bottom:648.975000px;}
.y9c{bottom:649.335000px;}
.ydb{bottom:650.235000px;}
.y38{bottom:652.755000px;}
.y10b{bottom:662.115000px;}
.y7a{bottom:663.015000px;}
.y1b{bottom:669.750000px;}
.ybb{bottom:673.485000px;}
.y9b{bottom:680.325000px;}
.yf3{bottom:681.405000px;}
.yda{bottom:681.585000px;}
.y37{bottom:683.745000px;}
.y58{bottom:683.925000px;}
.y10a{bottom:692.925000px;}
.y79{bottom:694.185000px;}
.y1a{bottom:700.800000px;}
.yba{bottom:704.445000px;}
.yd9{bottom:712.365000px;}
.y36{bottom:714.885000px;}
.y11d{bottom:715.065000px;}
.y9a{bottom:721.905000px;}
.y78{bottom:725.145000px;}
.y19{bottom:731.850000px;}
.y109{bottom:734.505000px;}
.yb9{bottom:735.585000px;}
.yd8{bottom:743.505000px;}
.y35{bottom:745.845000px;}
.y99{bottom:752.865000px;}
.y18{bottom:762.900000px;}
.y108{bottom:765.465000px;}
.yb8{bottom:766.545000px;}
.y77{bottom:766.725000px;}
.yd7{bottom:774.465000px;}
.y34{bottom:776.985000px;}
.y57{bottom:777.165000px;}
.y98{bottom:783.825000px;}
.y76{bottom:787.065000px;}
.y134{bottom:787.425000px;}
.y17{bottom:787.800000px;}
.yb7{bottom:797.685000px;}
.yd6{bottom:805.605000px;}
.y75{bottom:805.965000px;}
.yf2{bottom:806.865000px;}
.y107{bottom:807.045000px;}
.y2{bottom:807.750000px;}
.y33{bottom:807.945000px;}
.y133{bottom:808.125000px;}
.y97{bottom:814.965000px;}
.y74{bottom:825.045000px;}
.yb6{bottom:828.645000px;}
.y132{bottom:828.825000px;}
.y16{bottom:829.200000px;}
.yd5{bottom:836.565000px;}
.yf1{bottom:837.825000px;}
.y56{bottom:839.085000px;}
.y73{bottom:843.945000px;}
.y96{bottom:845.925000px;}
.y32{bottom:849.525000px;}
.y15{bottom:849.900000px;}
.yb5{bottom:859.785000px;}
.yd4{bottom:867.705000px;}
.yf0{bottom:868.965000px;}
.y55{bottom:870.045000px;}
.y131{bottom:870.225000px;}
.y14{bottom:870.600000px;}
.y95{bottom:877.065000px;}
.y31{bottom:880.485000px;}
.y72{bottom:884.085000px;}
.yb4{bottom:890.745000px;}
.y130{bottom:890.925000px;}
.yd3{bottom:898.665000px;}
.yef{bottom:899.925000px;}
.y54{bottom:901.185000px;}
.y94{bottom:908.070000px;}
.y30{bottom:911.490000px;}
.y12f{bottom:911.670000px;}
.y13{bottom:912.000000px;}
.y71{bottom:915.090000px;}
.yb3{bottom:921.930000px;}
.yd2{bottom:929.850000px;}
.yee{bottom:931.110000px;}
.y53{bottom:932.190000px;}
.y2f{bottom:932.370000px;}
.y12{bottom:932.700000px;}
.y93{bottom:939.210000px;}
.y70{bottom:946.050000px;}
.yb2{bottom:952.890000px;}
.y2e{bottom:953.070000px;}
.y11{bottom:953.400000px;}
.yd1{bottom:960.810000px;}
.y106{bottom:962.070000px;}
.y52{bottom:963.330000px;}
.y92{bottom:970.170000px;}
.y2d{bottom:973.770000px;}
.y10{bottom:974.100000px;}
.y6f{bottom:977.010000px;}
.yb1{bottom:984.030000px;}
.yd0{bottom:991.950000px;}
.y105{bottom:993.210000px;}
.y51{bottom:994.290000px;}
.y12e{bottom:994.470000px;}
.yf{bottom:994.800000px;}
.y91{bottom:1001.310000px;}
.y6e{bottom:1008.150000px;}
.yb0{bottom:1014.990000px;}
.y2c{bottom:1015.170000px;}
.ye{bottom:1015.500000px;}
.ycf{bottom:1022.910000px;}
.y104{bottom:1024.170000px;}
.y50{bottom:1025.430000px;}
.yed{bottom:1025.610000px;}
.y2b{bottom:1035.870000px;}
.yd{bottom:1036.200000px;}
.y6d{bottom:1039.110000px;}
.y90{bottom:1042.890000px;}
.yaf{bottom:1046.130000px;}
.yce{bottom:1055.310000px;}
.y4f{bottom:1056.390000px;}
.y12d{bottom:1056.570000px;}
.yc{bottom:1056.900000px;}
.y2a{bottom:1058.010000px;}
.y8f{bottom:1063.050000px;}
.y12c{bottom:1077.270000px;}
.yb{bottom:1077.600000px;}
.y6c{bottom:1080.690000px;}
.y8e{bottom:1081.950000px;}
.y29{bottom:1085.550000px;}
.ycd{bottom:1086.270000px;}
.y4e{bottom:1087.530000px;}
.yae{bottom:1087.710000px;}
.y12b{bottom:1097.970000px;}
.y6b{bottom:1101.030000px;}
.y28{bottom:1113.090000px;}
.ycc{bottom:1117.230000px;}
.y4d{bottom:1118.490000px;}
.y12a{bottom:1118.670000px;}
.ya{bottom:1119.000000px;}
.y6a{bottom:1119.930000px;}
.y9{bottom:1139.700000px;}
.y25{bottom:1193.580000px;}
.hf{height:15.480000px;}
.h12{height:15.516000px;}
.hd{height:40.550625px;}
.h8{height:45.184219px;}
.h3{height:54.316406px;}
.h5{height:57.911133px;}
.he{height:62.327813px;}
.h4{height:63.175781px;}
.h10{height:69.086250px;}
.h7{height:70.664062px;}
.h11{height:73.794375px;}
.hb{height:75.093750px;}
.hc{height:83.432812px;}
.h9{height:99.874688px;}
.ha{height:111.442500px;}
.h2{height:328.324219px;}
.h1{height:1262.700000px;}
.h6{height:1262.880000px;}
.h0{height:1263.000000px;}
.w3{width:172.110000px;}
.w5{width:274.170000px;}
.w4{width:308.550000px;}
.w0{width:892.500000px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:45.180000px;}
.x1{left:85.200000px;}
.x2{left:89.400000px;}
.x15{left:96.120000px;}
.x11{left:110.160000px;}
.x3{left:127.656000px;}
.x5{left:155.910000px;}
.x12{left:159.510000px;}
.x6{left:175.170000px;}
.xb{left:180.750000px;}
.x7{left:217.470000px;}
.xe{left:297.750000px;}
.x10{left:316.695000px;}
.x14{left:330.915000px;}
.xc{left:382.395000px;}
.xf{left:459.435000px;}
.x4{left:463.755000px;}
.x13{left:467.895000px;}
.xa{left:551.085000px;}
.x9{left:568.905000px;}
.x8{left:709.170000px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v4{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:26.880000pt;}
.v3{vertical-align:29.440000pt;}
.v1{vertical-align:40.320000pt;}
.ls2a{letter-spacing:-0.592000pt;}
.ls32{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.368533pt;}
.ls2b{letter-spacing:-0.272533pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.168533pt;}
.ls22{letter-spacing:-0.161067pt;}
.ls1d{letter-spacing:-0.158933pt;}
.ls24{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.097067pt;}
.ls18{letter-spacing:-0.094933pt;}
.ls1e{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016640pt;}
.ls2{letter-spacing:0.046080pt;}
.lsf{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.227733pt;}
.ls19{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.272533pt;}
.ls28{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.471467pt;}
.lsa{letter-spacing:0.504533pt;}
.ls29{letter-spacing:0.544000pt;}
.ls31{letter-spacing:0.576000pt;}
.lsd{letter-spacing:2.048000pt;}
.lse{letter-spacing:2.688000pt;}
.ls30{letter-spacing:3.328000pt;}
.ls5{letter-spacing:4.608000pt;}
.ls1f{letter-spacing:5.391360pt;}
.ls2d{letter-spacing:6.528000pt;}
.ls11{letter-spacing:7.168000pt;}
.ls12{letter-spacing:7.274667pt;}
.ls13{letter-spacing:7.808000pt;}
.ls23{letter-spacing:9.088000pt;}
.ls1b{letter-spacing:9.552640pt;}
.ls1a{letter-spacing:9.728000pt;}
.ls2f{letter-spacing:12.288000pt;}
.ls4{letter-spacing:12.928000pt;}
.ls26{letter-spacing:13.568000pt;}
.ls15{letter-spacing:15.488000pt;}
.ls2c{letter-spacing:16.128000pt;}
.ls2e{letter-spacing:19.328000pt;}
.ls10{letter-spacing:20.128000pt;}
.ls27{letter-spacing:27.648000pt;}
.ls25{letter-spacing:28.288000pt;}
.ls16{letter-spacing:28.752640pt;}
.ls3{letter-spacing:1522.933333pt;}
.ws0{word-spacing:-176.000000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws3{word-spacing:-24.134827pt;}
.ws4{word-spacing:-23.494827pt;}
.ws1c{word-spacing:-18.368000pt;}
.ws17{word-spacing:-18.240000pt;}
.ws8{word-spacing:-18.048000pt;}
.wsd{word-spacing:-17.984000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws16{word-spacing:-17.664000pt;}
.ws18{word-spacing:-17.600000pt;}
.wsb{word-spacing:-17.408000pt;}
.ws9{word-spacing:-16.873173pt;}
.wsa{word-spacing:-16.368640pt;}
.ws19{word-spacing:-15.311360pt;}
.ws10{word-spacing:-14.998293pt;}
.wse{word-spacing:-14.767360pt;}
.wsf{word-spacing:-14.672427pt;}
.ws1a{word-spacing:-14.494827pt;}
.ws11{word-spacing:-13.534613pt;}
.ws7{word-spacing:-11.920640pt;}
.ws15{word-spacing:-11.759573pt;}
.ws12{word-spacing:-10.319360pt;}
.ws13{word-spacing:-10.160427pt;}
.wsc{word-spacing:-9.607680pt;}
.ws14{word-spacing:-9.592320pt;}
.ws5{word-spacing:-0.085120pt;}
.ws1b{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-11.393707pt;}
._3{margin-left:-4.949333pt;}
._2{margin-left:-3.114667pt;}
._1{margin-left:-1.514667pt;}
._0{width:0.949333pt;}
._6{width:1.879893pt;}
._d{width:3.456000pt;}
._c{width:4.608000pt;}
._14{width:5.802667pt;}
._a{width:7.296000pt;}
._f{width:8.576000pt;}
._e{width:9.984000pt;}
._10{width:11.722667pt;}
._7{width:12.736000pt;}
._1e{width:13.652053pt;}
._8{width:15.104000pt;}
._1a{width:16.000000pt;}
._29{width:16.896000pt;}
._b{width:18.869333pt;}
._19{width:20.224000pt;}
._11{width:21.184000pt;}
._12{width:22.090667pt;}
._1b{width:23.296000pt;}
._1f{width:24.384000pt;}
._20{width:25.600000pt;}
._21{width:26.495573pt;}
._18{width:27.797333pt;}
._17{width:29.226667pt;}
._16{width:30.336000pt;}
._15{width:31.424000pt;}
._9{width:33.225387pt;}
._22{width:34.525440pt;}
._1c{width:35.777280pt;}
._1d{width:36.719787pt;}
._2a{width:38.464000pt;}
._26{width:40.832000pt;}
._24{width:42.048000pt;}
._23{width:43.114667pt;}
._28{width:46.293333pt;}
._27{width:47.594667pt;}
._25{width:48.874667pt;}
._4{width:102.400000pt;}
._5{width:188.138667pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs0{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y4c{bottom:1.440000pt;}
.y27{bottom:67.200000pt;}
.y26{bottom:101.120000pt;}
.y69{bottom:117.920000pt;}
.ycb{bottom:120.160000pt;}
.y4a{bottom:124.640000pt;}
.y8d{bottom:124.800000pt;}
.y8{bottom:126.933333pt;}
.y11b{bottom:128.320000pt;}
.y129{bottom:129.600000pt;}
.y49{bottom:133.280000pt;}
.yc3{bottom:134.400000pt;}
.y4b{bottom:138.400000pt;}
.yc4{bottom:138.560000pt;}
.yac{bottom:140.000000pt;}
.yca{bottom:147.840000pt;}
.y128{bottom:148.000000pt;}
.yec{bottom:148.800000pt;}
.yab{bottom:149.760000pt;}
.yad{bottom:155.040000pt;}
.y48{bottom:155.360000pt;}
.y11a{bottom:155.840000pt;}
.y103{bottom:159.680000pt;}
.y7{bottom:163.600000pt;}
.y68{bottom:164.026667pt;}
.y47{bottom:165.146667pt;}
.yc2{bottom:166.266667pt;}
.y127{bottom:166.426667pt;}
.yeb{bottom:170.746667pt;}
.yc9{bottom:175.386667pt;}
.yea{bottom:179.386667pt;}
.y119{bottom:183.546667pt;}
.y126{bottom:184.826667pt;}
.y67{bottom:186.106667pt;}
.y102{bottom:187.386667pt;}
.yaa{bottom:190.746667pt;}
.y46{bottom:193.786667pt;}
.y8c{bottom:194.746667pt;}
.y6{bottom:200.133333pt;}
.y66{bottom:201.466667pt;}
.yc8{bottom:203.066667pt;}
.y125{bottom:203.226667pt;}
.y65{bottom:209.946667pt;}
.y118{bottom:211.066667pt;}
.y101{bottom:214.906667pt;}
.ye9{bottom:216.666667pt;}
.ya9{bottom:218.266667pt;}
.y45{bottom:221.466667pt;}
.y124{bottom:221.626667pt;}
.y8b{bottom:225.306667pt;}
.ye8{bottom:226.426667pt;}
.y64{bottom:232.026667pt;}
.y5{bottom:236.800000pt;}
.y117{bottom:238.746667pt;}
.yc7{bottom:240.026667pt;}
.y63{bottom:241.786667pt;}
.y100{bottom:242.586667pt;}
.ye7{bottom:244.666667pt;}
.ya8{bottom:245.946667pt;}
.y8a{bottom:247.386667pt;}
.y44{bottom:248.986667pt;}
.y123{bottom:258.426667pt;}
.y89{bottom:262.746667pt;}
.y116{bottom:266.266667pt;}
.yc6{bottom:267.386667pt;}
.yff{bottom:270.106667pt;}
.ye6{bottom:272.346667pt;}
.ya7{bottom:273.466667pt;}
.y43{bottom:276.666667pt;}
.y122{bottom:276.826667pt;}
.y88{bottom:278.106667pt;}
.y87{bottom:287.866667pt;}
.y62{bottom:288.666667pt;}
.yfe{bottom:298.746667pt;}
.ye5{bottom:299.866667pt;}
.ya6{bottom:301.146667pt;}
.y115{bottom:303.226667pt;}
.y42{bottom:304.186667pt;}
.yc5{bottom:304.346667pt;}
.y61{bottom:305.466667pt;}
.y121{bottom:313.626667pt;}
.y86{bottom:314.746667pt;}
.y11c{bottom:320.506667pt;}
.yfd{bottom:326.426667pt;}
.ye4{bottom:328.506667pt;}
.ya5{bottom:328.666667pt;}
.y114{bottom:330.746667pt;}
.y85{bottom:331.546667pt;}
.y41{bottom:331.866667pt;}
.y120{bottom:332.026667pt;}
.y24{bottom:338.400000pt;}
.y60{bottom:341.146667pt;}
.y84{bottom:348.346667pt;}
.y4{bottom:349.466667pt;}
.yfc{bottom:355.066667pt;}
.ye3{bottom:356.186667pt;}
.ya4{bottom:356.346667pt;}
.y113{bottom:358.266667pt;}
.y40{bottom:359.386667pt;}
.y83{bottom:365.306667pt;}
.y5f{bottom:368.666667pt;}
.y11f{bottom:368.826667pt;}
.y23{bottom:371.066667pt;}
.y82{bottom:382.146667pt;}
.yfb{bottom:382.786667pt;}
.ye2{bottom:383.746667pt;}
.ya3{bottom:383.906667pt;}
.y112{bottom:385.986667pt;}
.y3f{bottom:387.106667pt;}
.y5e{bottom:396.226667pt;}
.y81{bottom:399.106667pt;}
.y22{bottom:403.733333pt;}
.yc1{bottom:405.666667pt;}
.yfa{bottom:410.306667pt;}
.ye1{bottom:411.426667pt;}
.ya2{bottom:411.586667pt;}
.y111{bottom:413.506667pt;}
.y3e{bottom:414.626667pt;}
.y80{bottom:415.906667pt;}
.y5d{bottom:423.906667pt;}
.yc0{bottom:433.026667pt;}
.y21{bottom:436.400000pt;}
.yf9{bottom:437.986667pt;}
.ye0{bottom:438.946667pt;}
.ya1{bottom:439.106667pt;}
.y110{bottom:441.186667pt;}
.y3d{bottom:442.306667pt;}
.y5c{bottom:451.426667pt;}
.y7f{bottom:451.586667pt;}
.y20{bottom:457.333333pt;}
.ybf{bottom:460.706667pt;}
.yf8{bottom:465.506667pt;}
.ydf{bottom:466.626667pt;}
.ya0{bottom:466.786667pt;}
.y10f{bottom:468.706667pt;}
.y3c{bottom:469.826667pt;}
.y7e{bottom:479.106667pt;}
.y1f{bottom:484.933333pt;}
.ybe{bottom:488.226667pt;}
.y5b{bottom:488.386667pt;}
.yf7{bottom:493.026667pt;}
.y9f{bottom:494.306667pt;}
.yde{bottom:495.266667pt;}
.y10e{bottom:496.386667pt;}
.y3b{bottom:497.506667pt;}
.y7d{bottom:506.626667pt;}
.y1e{bottom:512.533333pt;}
.y5a{bottom:515.906667pt;}
.yf6{bottom:521.826667pt;}
.y9e{bottom:521.986667pt;}
.ydd{bottom:522.946667pt;}
.y3a{bottom:525.026667pt;}
.y10d{bottom:533.346667pt;}
.y3{bottom:533.733333pt;}
.y7c{bottom:534.146667pt;}
.y1d{bottom:540.133333pt;}
.ybd{bottom:543.426667pt;}
.yf5{bottom:549.346667pt;}
.y9d{bottom:549.506667pt;}
.ydc{bottom:550.466667pt;}
.y39{bottom:552.546667pt;}
.y59{bottom:552.706667pt;}
.y10c{bottom:560.706667pt;}
.y7b{bottom:561.826667pt;}
.y1c{bottom:567.733333pt;}
.ybc{bottom:570.946667pt;}
.y11e{bottom:571.106667pt;}
.yf4{bottom:576.866667pt;}
.y9c{bottom:577.186667pt;}
.ydb{bottom:577.986667pt;}
.y38{bottom:580.226667pt;}
.y10b{bottom:588.546667pt;}
.y7a{bottom:589.346667pt;}
.y1b{bottom:595.333333pt;}
.ybb{bottom:598.653333pt;}
.y9b{bottom:604.733333pt;}
.yf3{bottom:605.693333pt;}
.yda{bottom:605.853333pt;}
.y37{bottom:607.773333pt;}
.y58{bottom:607.933333pt;}
.y10a{bottom:615.933333pt;}
.y79{bottom:617.053333pt;}
.y1a{bottom:622.933333pt;}
.yba{bottom:626.173333pt;}
.yd9{bottom:633.213333pt;}
.y36{bottom:635.453333pt;}
.y11d{bottom:635.613333pt;}
.y9a{bottom:641.693333pt;}
.y78{bottom:644.573333pt;}
.y19{bottom:650.533333pt;}
.y109{bottom:652.893333pt;}
.yb9{bottom:653.853333pt;}
.yd8{bottom:660.893333pt;}
.y35{bottom:662.973333pt;}
.y99{bottom:669.213333pt;}
.y18{bottom:678.133333pt;}
.y108{bottom:680.413333pt;}
.yb8{bottom:681.373333pt;}
.y77{bottom:681.533333pt;}
.yd7{bottom:688.413333pt;}
.y34{bottom:690.653333pt;}
.y57{bottom:690.813333pt;}
.y98{bottom:696.733333pt;}
.y76{bottom:699.613333pt;}
.y134{bottom:699.933333pt;}
.y17{bottom:700.266667pt;}
.yb7{bottom:709.053333pt;}
.yd6{bottom:716.093333pt;}
.y75{bottom:716.413333pt;}
.yf2{bottom:717.213333pt;}
.y107{bottom:717.373333pt;}
.y2{bottom:718.000000pt;}
.y33{bottom:718.173333pt;}
.y133{bottom:718.333333pt;}
.y97{bottom:724.413333pt;}
.y74{bottom:733.373333pt;}
.yb6{bottom:736.573333pt;}
.y132{bottom:736.733333pt;}
.y16{bottom:737.066667pt;}
.yd5{bottom:743.613333pt;}
.yf1{bottom:744.733333pt;}
.y56{bottom:745.853333pt;}
.y73{bottom:750.173333pt;}
.y96{bottom:751.933333pt;}
.y32{bottom:755.133333pt;}
.y15{bottom:755.466667pt;}
.yb5{bottom:764.253333pt;}
.yd4{bottom:771.293333pt;}
.yf0{bottom:772.413333pt;}
.y55{bottom:773.373333pt;}
.y131{bottom:773.533333pt;}
.y14{bottom:773.866667pt;}
.y95{bottom:779.613333pt;}
.y31{bottom:782.653333pt;}
.y72{bottom:785.853333pt;}
.yb4{bottom:791.773333pt;}
.y130{bottom:791.933333pt;}
.yd3{bottom:798.813333pt;}
.yef{bottom:799.933333pt;}
.y54{bottom:801.053333pt;}
.y94{bottom:807.173333pt;}
.y30{bottom:810.213333pt;}
.y12f{bottom:810.373333pt;}
.y13{bottom:810.666667pt;}
.y71{bottom:813.413333pt;}
.yb3{bottom:819.493333pt;}
.yd2{bottom:826.533333pt;}
.yee{bottom:827.653333pt;}
.y53{bottom:828.613333pt;}
.y2f{bottom:828.773333pt;}
.y12{bottom:829.066667pt;}
.y93{bottom:834.853333pt;}
.y70{bottom:840.933333pt;}
.yb2{bottom:847.013333pt;}
.y2e{bottom:847.173333pt;}
.y11{bottom:847.466667pt;}
.yd1{bottom:854.053333pt;}
.y106{bottom:855.173333pt;}
.y52{bottom:856.293333pt;}
.y92{bottom:862.373333pt;}
.y2d{bottom:865.573333pt;}
.y10{bottom:865.866667pt;}
.y6f{bottom:868.453333pt;}
.yb1{bottom:874.693333pt;}
.yd0{bottom:881.733333pt;}
.y105{bottom:882.853333pt;}
.y51{bottom:883.813333pt;}
.y12e{bottom:883.973333pt;}
.yf{bottom:884.266667pt;}
.y91{bottom:890.053333pt;}
.y6e{bottom:896.133333pt;}
.yb0{bottom:902.213333pt;}
.y2c{bottom:902.373333pt;}
.ye{bottom:902.666667pt;}
.ycf{bottom:909.253333pt;}
.y104{bottom:910.373333pt;}
.y50{bottom:911.493333pt;}
.yed{bottom:911.653333pt;}
.y2b{bottom:920.773333pt;}
.yd{bottom:921.066667pt;}
.y6d{bottom:923.653333pt;}
.y90{bottom:927.013333pt;}
.yaf{bottom:929.893333pt;}
.yce{bottom:938.053333pt;}
.y4f{bottom:939.013333pt;}
.y12d{bottom:939.173333pt;}
.yc{bottom:939.466667pt;}
.y2a{bottom:940.453333pt;}
.y8f{bottom:944.933333pt;}
.y12c{bottom:957.573333pt;}
.yb{bottom:957.866667pt;}
.y6c{bottom:960.613333pt;}
.y8e{bottom:961.733333pt;}
.y29{bottom:964.933333pt;}
.ycd{bottom:965.573333pt;}
.y4e{bottom:966.693333pt;}
.yae{bottom:966.853333pt;}
.y12b{bottom:975.973333pt;}
.y6b{bottom:978.693333pt;}
.y28{bottom:989.413333pt;}
.ycc{bottom:993.093333pt;}
.y4d{bottom:994.213333pt;}
.y12a{bottom:994.373333pt;}
.ya{bottom:994.666667pt;}
.y6a{bottom:995.493333pt;}
.y9{bottom:1013.066667pt;}
.y25{bottom:1060.960000pt;}
.hf{height:13.760000pt;}
.h12{height:13.792000pt;}
.hd{height:36.045000pt;}
.h8{height:40.163750pt;}
.h3{height:48.281250pt;}
.h5{height:51.476562pt;}
.he{height:55.402500pt;}
.h4{height:56.156250pt;}
.h10{height:61.410000pt;}
.h7{height:62.812500pt;}
.h11{height:65.595000pt;}
.hb{height:66.750000pt;}
.hc{height:74.162500pt;}
.h9{height:88.777500pt;}
.ha{height:99.060000pt;}
.h2{height:291.843750pt;}
.h1{height:1122.400000pt;}
.h6{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.w3{width:152.986667pt;}
.w5{width:243.706667pt;}
.w4{width:274.266667pt;}
.w0{width:793.333333pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:40.160000pt;}
.x1{left:75.733333pt;}
.x2{left:79.466667pt;}
.x15{left:85.440000pt;}
.x11{left:97.920000pt;}
.x3{left:113.472000pt;}
.x5{left:138.586667pt;}
.x12{left:141.786667pt;}
.x6{left:155.706667pt;}
.xb{left:160.666667pt;}
.x7{left:193.306667pt;}
.xe{left:264.666667pt;}
.x10{left:281.506667pt;}
.x14{left:294.146667pt;}
.xc{left:339.906667pt;}
.xf{left:408.386667pt;}
.x4{left:412.226667pt;}
.x13{left:415.906667pt;}
.xa{left:489.853333pt;}
.x9{left:505.693333pt;}
.x8{left:630.373333pt;}
}




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