
    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_cda5081ccb109cba82211bde.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a884e0b2a5992e033260e0c5.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_2bf0580f7eed72a1f8c79283.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_fe9f7aaccf6342cd58dc1c25.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_acb0d704b4d10f7d1f920e11.woff')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_b3e0f9af2c2ea0ef97311c3d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_475966dcbda493e02abd091f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.056641;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_0d130ed4a3e46ded30d719b5.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_11c83f03481e9d00b8daaf54.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_eddd2941d77e3b7a1758b20b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.056641;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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_b2fd38dee912b97d2836194c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.773926;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_06aef0ac35d1823da93aa212.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2de046e60cae77f88f7d435c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.063477;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);}
.v12{vertical-align:-41.040000px;}
.v13{vertical-align:-38.160000px;}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-27.360000px;}
.v8{vertical-align:-14.400000px;}
.v10{vertical-align:-8.640000px;}
.v4{vertical-align:-5.760000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v5{vertical-align:5.760000px;}
.v9{vertical-align:14.400000px;}
.va{vertical-align:23.760000px;}
.vf{vertical-align:25.920000px;}
.v1{vertical-align:27.360000px;}
.v11{vertical-align:30.240000px;}
.v16{vertical-align:33.120000px;}
.vc{vertical-align:36.000000px;}
.v14{vertical-align:38.160000px;}
.vb{vertical-align:42.480000px;}
.vd{vertical-align:48.960000px;}
.v15{vertical-align:52.560000px;}
.ve{vertical-align:79.200000px;}
.ls10{letter-spacing:-0.864000px;}
.ls9{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.138000px;}
.lsb{letter-spacing:-0.132600px;}
.ls33{letter-spacing:-0.117600px;}
.ls35{letter-spacing:-0.109200px;}
.ls8{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.023040px;}
.ls0{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.036000px;}
.ls34{letter-spacing:0.048960px;}
.ls28{letter-spacing:0.058320px;}
.lse{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.075000px;}
.ls32{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.181200px;}
.ls2{letter-spacing:0.181440px;}
.ls1a{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.245400px;}
.ls18{letter-spacing:0.267000px;}
.ls7{letter-spacing:0.269280px;}
.ls27{letter-spacing:0.273600px;}
.ls19{letter-spacing:0.288000px;}
.ls31{letter-spacing:0.294000px;}
.ls29{letter-spacing:0.324000px;}
.ls1c{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.450720px;}
.ls20{letter-spacing:0.465120px;}
.ls5{letter-spacing:0.496080px;}
.lsd{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.720000px;}
.ls1b{letter-spacing:1.008000px;}
.ls2a{letter-spacing:2.232000px;}
.ls25{letter-spacing:2.520000px;}
.ls1f{letter-spacing:2.545200px;}
.ls21{letter-spacing:2.558880px;}
.ls1e{letter-spacing:2.801520px;}
.ls2f{letter-spacing:2.977200px;}
.ls15{letter-spacing:3.060000px;}
.ls30{letter-spacing:3.697200px;}
.ls2b{letter-spacing:4.220640px;}
.ls26{letter-spacing:4.612320px;}
.ls1d{letter-spacing:5.760000px;}
.ls13{letter-spacing:7.488000px;}
.ls2c{letter-spacing:14.598720px;}
.ls2d{letter-spacing:28.321920px;}
.ls22{letter-spacing:196.128000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws19{word-spacing:-48.240000px;}
.ws7{word-spacing:-21.420000px;}
.ws3{word-spacing:-18.720000px;}
.ws1a{word-spacing:-18.216000px;}
.ws18{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.wsc{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.128000px;}
.wse{word-spacing:-15.840000px;}
.ws13{word-spacing:-15.552000px;}
.ws6{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.837640px;}
.ws26{word-spacing:-14.621760px;}
.ws28{word-spacing:-14.572800px;}
.ws27{word-spacing:-14.463600px;}
.ws15{word-spacing:-13.500000px;}
.ws17{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.241200px;}
.ws1{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.513400px;}
.wsd{word-spacing:-11.321400px;}
.ws20{word-spacing:-11.304720px;}
.ws1c{word-spacing:-11.246400px;}
.ws21{word-spacing:-10.906800px;}
.ws23{word-spacing:-10.732800px;}
.ws16{word-spacing:-9.000000px;}
.ws1d{word-spacing:-0.014760px;}
.ws4{word-spacing:0.000000px;}
.ws25{word-spacing:0.025920px;}
.ws11{word-spacing:0.216000px;}
.ws1b{word-spacing:3.432000px;}
.ws22{word-spacing:3.625920px;}
.ws1f{word-spacing:3.792000px;}
.ws24{word-spacing:6.382800px;}
.ws12{word-spacing:6.507360px;}
.ws10{word-spacing:7.227360px;}
.ws1e{word-spacing:12.014400px;}
._21{margin-left:-135.692640px;}
._9{margin-left:-14.920800px;}
._6{margin-left:-9.838320px;}
._8{margin-left:-6.872400px;}
._16{margin-left:-5.480880px;}
._2{margin-left:-4.478400px;}
._7{margin-left:-2.804400px;}
._1{margin-left:-1.263600px;}
._0{width:1.244880px;}
._11{width:2.304000px;}
._12{width:3.720000px;}
._18{width:4.752000px;}
._19{width:5.787120px;}
._1b{width:6.913920px;}
._17{width:8.472000px;}
._1a{width:10.088880px;}
._e{width:11.160000px;}
._13{width:12.164640px;}
._a{width:13.248000px;}
._b{width:14.472000px;}
._d{width:15.906720px;}
._c{width:16.992000px;}
._14{width:19.814880px;}
._20{width:21.140400px;}
._5{width:22.427040px;}
._f{width:24.529920px;}
._3{width:25.632000px;}
._4{width:26.760000px;}
._15{width:27.978720px;}
._1f{width:31.680000px;}
._1d{width:33.391200px;}
._1c{width:34.776000px;}
._1e{width:36.000000px;}
._10{width:49.440000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:7.530000px;}
.ye4{bottom:14.220000px;}
.ye2{bottom:14.400000px;}
.y9e{bottom:17.460000px;}
.y9a{bottom:17.640000px;}
.y6b{bottom:112.716000px;}
.ya4{bottom:115.416000px;}
.y1b{bottom:124.776000px;}
.yc1{bottom:126.756000px;}
.y49{bottom:130.896000px;}
.y6a{bottom:133.416000px;}
.ye0{bottom:136.476000px;}
.y69{bottom:154.110000px;}
.ya3{bottom:158.610000px;}
.y48{bottom:161.850000px;}
.y1a{bottom:167.790000px;}
.y86{bottom:169.770000px;}
.y68{bottom:174.810000px;}
.yc0{bottom:174.990000px;}
.y31{bottom:175.890000px;}
.ydf{bottom:179.490000px;}
.y47{bottom:192.810000px;}
.y67{bottom:195.510000px;}
.ya2{bottom:201.630000px;}
.y30{bottom:207.030000px;}
.y85{bottom:210.270000px;}
.y19{bottom:210.990000px;}
.y66{bottom:216.210000px;}
.ybe{bottom:219.810000px;}
.yde{bottom:222.510000px;}
.ybd{bottom:223.410000px;}
.y46{bottom:223.950000px;}
.ybf{bottom:225.570000px;}
.y65{bottom:236.910000px;}
.ya1{bottom:244.650000px;}
.y2f{bottom:250.050000px;}
.y84{bottom:250.770000px;}
.y18{bottom:254.010000px;}
.y45{bottom:254.910000px;}
.y64{bottom:257.610000px;}
.ya0{bottom:262.110000px;}
.ydd{bottom:265.530000px;}
.ybc{bottom:274.890000px;}
.y63{bottom:278.310000px;}
.y44{bottom:286.095000px;}
.y83{bottom:292.575000px;}
.y2e{bottom:293.115000px;}
.y9f{bottom:296.535000px;}
.y17{bottom:297.075000px;}
.y62{bottom:299.055000px;}
.ybb{bottom:305.895000px;}
.ydc{bottom:308.595000px;}
.y43{bottom:317.055000px;}
.y61{bottom:319.755000px;}
.y9d{bottom:330.915000px;}
.y82{bottom:335.595000px;}
.y16{bottom:340.095000px;}
.y60{bottom:340.455000px;}
.y42{bottom:348.195000px;}
.yba{bottom:349.095000px;}
.ydb{bottom:351.795000px;}
.yc5{bottom:351.975000px;}
.y5f{bottom:361.155000px;}
.y9c{bottom:365.115000px;}
.y81{bottom:378.615000px;}
.y41{bottom:379.155000px;}
.y5e{bottom:381.855000px;}
.y15{bottom:383.115000px;}
.yf0{bottom:388.515000px;}
.yb9{bottom:392.115000px;}
.yda{bottom:394.815000px;}
.yc4{bottom:396.975000px;}
.y9b{bottom:399.495000px;}
.y14{bottom:421.095000px;}
.y80{bottom:421.635000px;}
.y40{bottom:422.355000px;}
.y5d{bottom:424.875000px;}
.yef{bottom:434.415000px;}
.y99{bottom:434.595000px;}
.yb8{bottom:435.675000px;}
.yd9{bottom:437.835000px;}
.y3f{bottom:453.315000px;}
.y13{bottom:457.275000px;}
.y7f{bottom:464.835000px;}
.yee{bottom:465.375000px;}
.yb7{bottom:466.815000px;}
.y5c{bottom:467.895000px;}
.yd8{bottom:480.855000px;}
.y3e{bottom:484.455000px;}
.y12{bottom:495.075000px;}
.yed{bottom:496.515000px;}
.yb6{bottom:497.775000px;}
.y98{bottom:498.315000px;}
.y7e{bottom:507.855000px;}
.y5b{bottom:510.915000px;}
.y3d{bottom:515.415000px;}
.yd7{bottom:523.875000px;}
.yb5{bottom:528.915000px;}
.y97{bottom:529.995000px;}
.y11{bottom:531.255000px;}
.yec{bottom:539.535000px;}
.yd6{bottom:544.575000px;}
.y3c{bottom:546.375000px;}
.y5a{bottom:554.115000px;}
.yb4{bottom:559.875000px;}
.y10{bottom:569.265000px;}
.y7d{bottom:571.065000px;}
.y96{bottom:575.745000px;}
.y3b{bottom:577.545000px;}
.yd5{bottom:578.985000px;}
.y59{bottom:597.165000px;}
.yb3{bottom:599.325000px;}
.yf{bottom:605.445000px;}
.yb2{bottom:608.325000px;}
.y3a{bottom:608.505000px;}
.yd4{bottom:613.725000px;}
.y7c{bottom:614.085000px;}
.y95{bottom:619.125000px;}
.yeb{bottom:637.305000px;}
.y39{bottom:639.645000px;}
.y58{bottom:640.185000px;}
.ye{bottom:643.425000px;}
.yd3{bottom:647.565000px;}
.y94{bottom:650.265000px;}
.yb1{bottom:656.925000px;}
.y7b{bottom:657.105000px;}
.yea{bottom:668.445000px;}
.y38{bottom:670.605000px;}
.y93{bottom:681.225000px;}
.y57{bottom:683.205000px;}
.yd{bottom:686.445000px;}
.yb0{bottom:688.065000px;}
.ye9{bottom:699.405000px;}
.y7a{bottom:700.125000px;}
.y37{bottom:713.805000px;}
.yd2{bottom:715.065000px;}
.yaf{bottom:719.025000px;}
.yc{bottom:722.625000px;}
.y92{bottom:724.425000px;}
.y56{bottom:726.225000px;}
.ye8{bottom:730.545000px;}
.y36{bottom:735.045000px;}
.y79{bottom:743.145000px;}
.y91{bottom:745.665000px;}
.yd1{bottom:748.725000px;}
.yae{bottom:750.165000px;}
.yb{bottom:760.425000px;}
.ye7{bottom:761.505000px;}
.y2d{bottom:766.905000px;}
.y55{bottom:769.245000px;}
.y90{bottom:772.845000px;}
.y35{bottom:780.945000px;}
.yad{bottom:781.125000px;}
.yd0{bottom:782.385000px;}
.y78{bottom:786.345000px;}
.ye6{bottom:792.645000px;}
.ya{bottom:796.785000px;}
.y2c{bottom:798.405000px;}
.y54{bottom:812.445000px;}
.ycf{bottom:816.225000px;}
.y8f{bottom:817.305000px;}
.ye5{bottom:823.605000px;}
.y34{bottom:823.965000px;}
.yac{bottom:824.145000px;}
.y77{bottom:829.365000px;}
.y2b{bottom:830.985000px;}
.y9{bottom:834.585000px;}
.yce{bottom:849.930000px;}
.y76{bottom:850.110000px;}
.ye3{bottom:854.790000px;}
.y33{bottom:855.150000px;}
.y53{bottom:855.510000px;}
.y8e{bottom:857.850000px;}
.y2a{bottom:861.990000px;}
.yab{bottom:867.210000px;}
.y8{bottom:870.810000px;}
.ycd{bottom:883.770000px;}
.ye1{bottom:886.470000px;}
.y75{bottom:891.510000px;}
.y32{bottom:898.170000px;}
.y8d{bottom:898.350000px;}
.y52{bottom:898.530000px;}
.y29{bottom:903.030000px;}
.y23{bottom:909.690000px;}
.y74{bottom:912.210000px;}
.y7{bottom:913.830000px;}
.ycc{bottom:917.430000px;}
.y73{bottom:932.910000px;}
.y8c{bottom:938.850000px;}
.y28{bottom:940.110000px;}
.y51{bottom:941.550000px;}
.yaa{bottom:941.910000px;}
.y22{bottom:944.610000px;}
.y72{bottom:953.610000px;}
.y6{bottom:956.850000px;}
.ycb{bottom:962.430000px;}
.y27{bottom:971.250000px;}
.y21{bottom:973.770000px;}
.y71{bottom:974.310000px;}
.y8b{bottom:979.170000px;}
.y50{bottom:984.570000px;}
.ya9{bottom:986.550000px;}
.y5{bottom:987.990000px;}
.y70{bottom:995.010000px;}
.yca{bottom:996.090000px;}
.y26{bottom:1002.210000px;}
.y20{bottom:1003.110000px;}
.y4f{bottom:1015.710000px;}
.ya8{bottom:1017.510000px;}
.y8a{bottom:1019.670000px;}
.y4{bottom:1022.370000px;}
.y1f{bottom:1032.270000px;}
.y25{bottom:1033.350000px;}
.yc9{bottom:1034.790000px;}
.y6f{bottom:1036.410000px;}
.yc3{bottom:1043.430000px;}
.y4e{bottom:1046.670000px;}
.ya7{bottom:1048.650000px;}
.y24{bottom:1054.590000px;}
.y6e{bottom:1057.110000px;}
.y3{bottom:1057.470000px;}
.y89{bottom:1060.170000px;}
.y1e{bottom:1061.430000px;}
.yc8{bottom:1068.450000px;}
.yc7{bottom:1076.730000px;}
.y4d{bottom:1077.810000px;}
.y2{bottom:1083.570000px;}
.y1d{bottom:1084.650000px;}
.yc2{bottom:1088.790000px;}
.y4a{bottom:1089.000000px;}
.ya6{bottom:1091.670000px;}
.y6d{bottom:1098.510000px;}
.y88{bottom:1100.670000px;}
.y4c{bottom:1108.770000px;}
.yc6{bottom:1116.870000px;}
.y6c{bottom:1119.210000px;}
.y1{bottom:1134.180000px;}
.ya5{bottom:1137.060000px;}
.y1c{bottom:1139.940000px;}
.y87{bottom:1141.200000px;}
.he{height:23.220000px;}
.h20{height:30.960000px;}
.h1f{height:31.140000px;}
.h21{height:31.176000px;}
.h13{height:34.200000px;}
.h12{height:34.380000px;}
.h14{height:34.416000px;}
.h7{height:42.657539px;}
.hf{height:46.736719px;}
.h4{height:50.800781px;}
.h6{height:51.574219px;}
.hc{height:54.000000px;}
.h3{height:59.436914px;}
.hb{height:60.341836px;}
.h10{height:60.679688px;}
.h5{height:61.914727px;}
.h8{height:63.667969px;}
.ha{height:65.884219px;}
.h11{height:66.547969px;}
.h2{height:67.565039px;}
.h1a{height:69.002578px;}
.h1b{height:69.722578px;}
.h15{height:70.017539px;}
.hd{height:71.613281px;}
.h1e{height:71.615391px;}
.h1c{height:79.535391px;}
.h9{height:81.078047px;}
.h16{height:85.562578px;}
.h17{height:87.574219px;}
.h19{height:91.354219px;}
.h1d{height:99.004219px;}
.h18{height:114.394219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:32.940000px;}
.w3{width:42.480000px;}
.w8{width:135.756000px;}
.w6{width:138.096000px;}
.w5{width:138.240000px;}
.w7{width:138.276000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:10.830000px;}
.x12{left:23.220000px;}
.x22{left:25.560000px;}
.x15{left:32.040000px;}
.x16{left:33.480000px;}
.xe{left:34.560000px;}
.xc{left:42.120000px;}
.x20{left:48.105000px;}
.x17{left:51.120000px;}
.x13{left:52.560000px;}
.x18{left:56.025000px;}
.x14{left:60.165000px;}
.xb{left:98.136000px;}
.x5{left:106.235987px;}
.x6{left:119.735987px;}
.x2{left:122.795987px;}
.x7{left:160.229987px;}
.x1a{left:164.009987px;}
.x19{left:172.829987px;}
.x8{left:176.220000px;}
.x1b{left:177.509987px;}
.x3{left:214.229987px;}
.x1c{left:216.209987px;}
.xd{left:236.370000px;}
.x1f{left:263.370000px;}
.x1{left:322.814987px;}
.xf{left:374.475000px;}
.x1e{left:382.394987px;}
.x21{left:399.135000px;}
.x4{left:446.474987px;}
.x10{left:512.745000px;}
.xa{left:514.260000px;}
.x11{left:650.985000px;}
.x1d{left:730.949987px;}
@media print{
.v12{vertical-align:-36.480000pt;}
.v13{vertical-align:-33.920000pt;}
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-24.320000pt;}
.v8{vertical-align:-12.800000pt;}
.v10{vertical-align:-7.680000pt;}
.v4{vertical-align:-5.120000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v5{vertical-align:5.120000pt;}
.v9{vertical-align:12.800000pt;}
.va{vertical-align:21.120000pt;}
.vf{vertical-align:23.040000pt;}
.v1{vertical-align:24.320000pt;}
.v11{vertical-align:26.880000pt;}
.v16{vertical-align:29.440000pt;}
.vc{vertical-align:32.000000pt;}
.v14{vertical-align:33.920000pt;}
.vb{vertical-align:37.760000pt;}
.vd{vertical-align:43.520000pt;}
.v15{vertical-align:46.720000pt;}
.ve{vertical-align:70.400000pt;}
.ls10{letter-spacing:-0.768000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.122667pt;}
.lsb{letter-spacing:-0.117867pt;}
.ls33{letter-spacing:-0.104533pt;}
.ls35{letter-spacing:-0.097067pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.020480pt;}
.ls0{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.032000pt;}
.ls34{letter-spacing:0.043520pt;}
.ls28{letter-spacing:0.051840pt;}
.lse{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.066667pt;}
.ls32{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.161067pt;}
.ls2{letter-spacing:0.161280pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.218133pt;}
.ls18{letter-spacing:0.237333pt;}
.ls7{letter-spacing:0.239360pt;}
.ls27{letter-spacing:0.243200pt;}
.ls19{letter-spacing:0.256000pt;}
.ls31{letter-spacing:0.261333pt;}
.ls29{letter-spacing:0.288000pt;}
.ls1c{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.400640pt;}
.ls20{letter-spacing:0.413440pt;}
.ls5{letter-spacing:0.440960pt;}
.lsd{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.896000pt;}
.ls2a{letter-spacing:1.984000pt;}
.ls25{letter-spacing:2.240000pt;}
.ls1f{letter-spacing:2.262400pt;}
.ls21{letter-spacing:2.274560pt;}
.ls1e{letter-spacing:2.490240pt;}
.ls2f{letter-spacing:2.646400pt;}
.ls15{letter-spacing:2.720000pt;}
.ls30{letter-spacing:3.286400pt;}
.ls2b{letter-spacing:3.751680pt;}
.ls26{letter-spacing:4.099840pt;}
.ls1d{letter-spacing:5.120000pt;}
.ls13{letter-spacing:6.656000pt;}
.ls2c{letter-spacing:12.976640pt;}
.ls2d{letter-spacing:25.175040pt;}
.ls22{letter-spacing:174.336000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws19{word-spacing:-42.880000pt;}
.ws7{word-spacing:-19.040000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws1a{word-spacing:-16.192000pt;}
.ws18{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.336000pt;}
.wse{word-spacing:-14.080000pt;}
.ws13{word-spacing:-13.824000pt;}
.ws6{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.189013pt;}
.ws26{word-spacing:-12.997120pt;}
.ws28{word-spacing:-12.953600pt;}
.ws27{word-spacing:-12.856533pt;}
.ws15{word-spacing:-12.000000pt;}
.ws17{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.881067pt;}
.ws1{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.234133pt;}
.wsd{word-spacing:-10.063467pt;}
.ws20{word-spacing:-10.048640pt;}
.ws1c{word-spacing:-9.996800pt;}
.ws21{word-spacing:-9.694933pt;}
.ws23{word-spacing:-9.540267pt;}
.ws16{word-spacing:-8.000000pt;}
.ws1d{word-spacing:-0.013120pt;}
.ws4{word-spacing:0.000000pt;}
.ws25{word-spacing:0.023040pt;}
.ws11{word-spacing:0.192000pt;}
.ws1b{word-spacing:3.050667pt;}
.ws22{word-spacing:3.223040pt;}
.ws1f{word-spacing:3.370667pt;}
.ws24{word-spacing:5.673600pt;}
.ws12{word-spacing:5.784320pt;}
.ws10{word-spacing:6.424320pt;}
.ws1e{word-spacing:10.679467pt;}
._21{margin-left:-120.615680pt;}
._9{margin-left:-13.262933pt;}
._6{margin-left:-8.745173pt;}
._8{margin-left:-6.108800pt;}
._16{margin-left:-4.871893pt;}
._2{margin-left:-3.980800pt;}
._7{margin-left:-2.492800pt;}
._1{margin-left:-1.123200pt;}
._0{width:1.106560pt;}
._11{width:2.048000pt;}
._12{width:3.306667pt;}
._18{width:4.224000pt;}
._19{width:5.144107pt;}
._1b{width:6.145707pt;}
._17{width:7.530667pt;}
._1a{width:8.967893pt;}
._e{width:9.920000pt;}
._13{width:10.813013pt;}
._a{width:11.776000pt;}
._b{width:12.864000pt;}
._d{width:14.139307pt;}
._c{width:15.104000pt;}
._14{width:17.613227pt;}
._20{width:18.791467pt;}
._5{width:19.935147pt;}
._f{width:21.804373pt;}
._3{width:22.784000pt;}
._4{width:23.786667pt;}
._15{width:24.869973pt;}
._1f{width:28.160000pt;}
._1d{width:29.681067pt;}
._1c{width:30.912000pt;}
._1e{width:32.000000pt;}
._10{width:43.946667pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:6.693333pt;}
.ye4{bottom:12.640000pt;}
.ye2{bottom:12.800000pt;}
.y9e{bottom:15.520000pt;}
.y9a{bottom:15.680000pt;}
.y6b{bottom:100.192000pt;}
.ya4{bottom:102.592000pt;}
.y1b{bottom:110.912000pt;}
.yc1{bottom:112.672000pt;}
.y49{bottom:116.352000pt;}
.y6a{bottom:118.592000pt;}
.ye0{bottom:121.312000pt;}
.y69{bottom:136.986667pt;}
.ya3{bottom:140.986667pt;}
.y48{bottom:143.866667pt;}
.y1a{bottom:149.146667pt;}
.y86{bottom:150.906667pt;}
.y68{bottom:155.386667pt;}
.yc0{bottom:155.546667pt;}
.y31{bottom:156.346667pt;}
.ydf{bottom:159.546667pt;}
.y47{bottom:171.386667pt;}
.y67{bottom:173.786667pt;}
.ya2{bottom:179.226667pt;}
.y30{bottom:184.026667pt;}
.y85{bottom:186.906667pt;}
.y19{bottom:187.546667pt;}
.y66{bottom:192.186667pt;}
.ybe{bottom:195.386667pt;}
.yde{bottom:197.786667pt;}
.ybd{bottom:198.586667pt;}
.y46{bottom:199.066667pt;}
.ybf{bottom:200.506667pt;}
.y65{bottom:210.586667pt;}
.ya1{bottom:217.466667pt;}
.y2f{bottom:222.266667pt;}
.y84{bottom:222.906667pt;}
.y18{bottom:225.786667pt;}
.y45{bottom:226.586667pt;}
.y64{bottom:228.986667pt;}
.ya0{bottom:232.986667pt;}
.ydd{bottom:236.026667pt;}
.ybc{bottom:244.346667pt;}
.y63{bottom:247.386667pt;}
.y44{bottom:254.306667pt;}
.y83{bottom:260.066667pt;}
.y2e{bottom:260.546667pt;}
.y9f{bottom:263.586667pt;}
.y17{bottom:264.066667pt;}
.y62{bottom:265.826667pt;}
.ybb{bottom:271.906667pt;}
.ydc{bottom:274.306667pt;}
.y43{bottom:281.826667pt;}
.y61{bottom:284.226667pt;}
.y9d{bottom:294.146667pt;}
.y82{bottom:298.306667pt;}
.y16{bottom:302.306667pt;}
.y60{bottom:302.626667pt;}
.y42{bottom:309.506667pt;}
.yba{bottom:310.306667pt;}
.ydb{bottom:312.706667pt;}
.yc5{bottom:312.866667pt;}
.y5f{bottom:321.026667pt;}
.y9c{bottom:324.546667pt;}
.y81{bottom:336.546667pt;}
.y41{bottom:337.026667pt;}
.y5e{bottom:339.426667pt;}
.y15{bottom:340.546667pt;}
.yf0{bottom:345.346667pt;}
.yb9{bottom:348.546667pt;}
.yda{bottom:350.946667pt;}
.yc4{bottom:352.866667pt;}
.y9b{bottom:355.106667pt;}
.y14{bottom:374.306667pt;}
.y80{bottom:374.786667pt;}
.y40{bottom:375.426667pt;}
.y5d{bottom:377.666667pt;}
.yef{bottom:386.146667pt;}
.y99{bottom:386.306667pt;}
.yb8{bottom:387.266667pt;}
.yd9{bottom:389.186667pt;}
.y3f{bottom:402.946667pt;}
.y13{bottom:406.466667pt;}
.y7f{bottom:413.186667pt;}
.yee{bottom:413.666667pt;}
.yb7{bottom:414.946667pt;}
.y5c{bottom:415.906667pt;}
.yd8{bottom:427.426667pt;}
.y3e{bottom:430.626667pt;}
.y12{bottom:440.066667pt;}
.yed{bottom:441.346667pt;}
.yb6{bottom:442.466667pt;}
.y98{bottom:442.946667pt;}
.y7e{bottom:451.426667pt;}
.y5b{bottom:454.146667pt;}
.y3d{bottom:458.146667pt;}
.yd7{bottom:465.666667pt;}
.yb5{bottom:470.146667pt;}
.y97{bottom:471.106667pt;}
.y11{bottom:472.226667pt;}
.yec{bottom:479.586667pt;}
.yd6{bottom:484.066667pt;}
.y3c{bottom:485.666667pt;}
.y5a{bottom:492.546667pt;}
.yb4{bottom:497.666667pt;}
.y10{bottom:506.013333pt;}
.y7d{bottom:507.613333pt;}
.y96{bottom:511.773333pt;}
.y3b{bottom:513.373333pt;}
.yd5{bottom:514.653333pt;}
.y59{bottom:530.813333pt;}
.yb3{bottom:532.733333pt;}
.yf{bottom:538.173333pt;}
.yb2{bottom:540.733333pt;}
.y3a{bottom:540.893333pt;}
.yd4{bottom:545.533333pt;}
.y7c{bottom:545.853333pt;}
.y95{bottom:550.333333pt;}
.yeb{bottom:566.493333pt;}
.y39{bottom:568.573333pt;}
.y58{bottom:569.053333pt;}
.ye{bottom:571.933333pt;}
.yd3{bottom:575.613333pt;}
.y94{bottom:578.013333pt;}
.yb1{bottom:583.933333pt;}
.y7b{bottom:584.093333pt;}
.yea{bottom:594.173333pt;}
.y38{bottom:596.093333pt;}
.y93{bottom:605.533333pt;}
.y57{bottom:607.293333pt;}
.yd{bottom:610.173333pt;}
.yb0{bottom:611.613333pt;}
.ye9{bottom:621.693333pt;}
.y7a{bottom:622.333333pt;}
.y37{bottom:634.493333pt;}
.yd2{bottom:635.613333pt;}
.yaf{bottom:639.133333pt;}
.yc{bottom:642.333333pt;}
.y92{bottom:643.933333pt;}
.y56{bottom:645.533333pt;}
.ye8{bottom:649.373333pt;}
.y36{bottom:653.373333pt;}
.y79{bottom:660.573333pt;}
.y91{bottom:662.813333pt;}
.yd1{bottom:665.533333pt;}
.yae{bottom:666.813333pt;}
.yb{bottom:675.933333pt;}
.ye7{bottom:676.893333pt;}
.y2d{bottom:681.693333pt;}
.y55{bottom:683.773333pt;}
.y90{bottom:686.973333pt;}
.y35{bottom:694.173333pt;}
.yad{bottom:694.333333pt;}
.yd0{bottom:695.453333pt;}
.y78{bottom:698.973333pt;}
.ye6{bottom:704.573333pt;}
.ya{bottom:708.253333pt;}
.y2c{bottom:709.693333pt;}
.y54{bottom:722.173333pt;}
.ycf{bottom:725.533333pt;}
.y8f{bottom:726.493333pt;}
.ye5{bottom:732.093333pt;}
.y34{bottom:732.413333pt;}
.yac{bottom:732.573333pt;}
.y77{bottom:737.213333pt;}
.y2b{bottom:738.653333pt;}
.y9{bottom:741.853333pt;}
.yce{bottom:755.493333pt;}
.y76{bottom:755.653333pt;}
.ye3{bottom:759.813333pt;}
.y33{bottom:760.133333pt;}
.y53{bottom:760.453333pt;}
.y8e{bottom:762.533333pt;}
.y2a{bottom:766.213333pt;}
.yab{bottom:770.853333pt;}
.y8{bottom:774.053333pt;}
.ycd{bottom:785.573333pt;}
.ye1{bottom:787.973333pt;}
.y75{bottom:792.453333pt;}
.y32{bottom:798.373333pt;}
.y8d{bottom:798.533333pt;}
.y52{bottom:798.693333pt;}
.y29{bottom:802.693333pt;}
.y23{bottom:808.613333pt;}
.y74{bottom:810.853333pt;}
.y7{bottom:812.293333pt;}
.ycc{bottom:815.493333pt;}
.y73{bottom:829.253333pt;}
.y8c{bottom:834.533333pt;}
.y28{bottom:835.653333pt;}
.y51{bottom:836.933333pt;}
.yaa{bottom:837.253333pt;}
.y22{bottom:839.653333pt;}
.y72{bottom:847.653333pt;}
.y6{bottom:850.533333pt;}
.ycb{bottom:855.493333pt;}
.y27{bottom:863.333333pt;}
.y21{bottom:865.573333pt;}
.y71{bottom:866.053333pt;}
.y8b{bottom:870.373333pt;}
.y50{bottom:875.173333pt;}
.ya9{bottom:876.933333pt;}
.y5{bottom:878.213333pt;}
.y70{bottom:884.453333pt;}
.yca{bottom:885.413333pt;}
.y26{bottom:890.853333pt;}
.y20{bottom:891.653333pt;}
.y4f{bottom:902.853333pt;}
.ya8{bottom:904.453333pt;}
.y8a{bottom:906.373333pt;}
.y4{bottom:908.773333pt;}
.y1f{bottom:917.573333pt;}
.y25{bottom:918.533333pt;}
.yc9{bottom:919.813333pt;}
.y6f{bottom:921.253333pt;}
.yc3{bottom:927.493333pt;}
.y4e{bottom:930.373333pt;}
.ya7{bottom:932.133333pt;}
.y24{bottom:937.413333pt;}
.y6e{bottom:939.653333pt;}
.y3{bottom:939.973333pt;}
.y89{bottom:942.373333pt;}
.y1e{bottom:943.493333pt;}
.yc8{bottom:949.733333pt;}
.yc7{bottom:957.093333pt;}
.y4d{bottom:958.053333pt;}
.y2{bottom:963.173333pt;}
.y1d{bottom:964.133333pt;}
.yc2{bottom:967.813333pt;}
.y4a{bottom:968.000000pt;}
.ya6{bottom:970.373333pt;}
.y6d{bottom:976.453333pt;}
.y88{bottom:978.373333pt;}
.y4c{bottom:985.573333pt;}
.yc6{bottom:992.773333pt;}
.y6c{bottom:994.853333pt;}
.y1{bottom:1008.160000pt;}
.ya5{bottom:1010.720000pt;}
.y1c{bottom:1013.280000pt;}
.y87{bottom:1014.400000pt;}
.he{height:20.640000pt;}
.h20{height:27.520000pt;}
.h1f{height:27.680000pt;}
.h21{height:27.712000pt;}
.h13{height:30.400000pt;}
.h12{height:30.560000pt;}
.h14{height:30.592000pt;}
.h7{height:37.917812pt;}
.hf{height:41.543750pt;}
.h4{height:45.156250pt;}
.h6{height:45.843750pt;}
.hc{height:48.000000pt;}
.h3{height:52.832812pt;}
.hb{height:53.637187pt;}
.h10{height:53.937500pt;}
.h5{height:55.035313pt;}
.h8{height:56.593750pt;}
.ha{height:58.563750pt;}
.h11{height:59.153750pt;}
.h2{height:60.057813pt;}
.h1a{height:61.335625pt;}
.h1b{height:61.975625pt;}
.h15{height:62.237813pt;}
.hd{height:63.656250pt;}
.h1e{height:63.658125pt;}
.h1c{height:70.698125pt;}
.h9{height:72.069375pt;}
.h16{height:76.055625pt;}
.h17{height:77.843750pt;}
.h19{height:81.203750pt;}
.h1d{height:88.003750pt;}
.h18{height:101.683750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:29.280000pt;}
.w3{width:37.760000pt;}
.w8{width:120.672000pt;}
.w6{width:122.752000pt;}
.w5{width:122.880000pt;}
.w7{width:122.912000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:9.626667pt;}
.x12{left:20.640000pt;}
.x22{left:22.720000pt;}
.x15{left:28.480000pt;}
.x16{left:29.760000pt;}
.xe{left:30.720000pt;}
.xc{left:37.440000pt;}
.x20{left:42.760000pt;}
.x17{left:45.440000pt;}
.x13{left:46.720000pt;}
.x18{left:49.800000pt;}
.x14{left:53.480000pt;}
.xb{left:87.232000pt;}
.x5{left:94.431988pt;}
.x6{left:106.431988pt;}
.x2{left:109.151988pt;}
.x7{left:142.426655pt;}
.x1a{left:145.786655pt;}
.x19{left:153.626655pt;}
.x8{left:156.640000pt;}
.x1b{left:157.786655pt;}
.x3{left:190.426655pt;}
.x1c{left:192.186655pt;}
.xd{left:210.106667pt;}
.x1f{left:234.106667pt;}
.x1{left:286.946655pt;}
.xf{left:332.866667pt;}
.x1e{left:339.906655pt;}
.x21{left:354.786667pt;}
.x4{left:396.866655pt;}
.x10{left:455.773333pt;}
.xa{left:457.120000pt;}
.x11{left:578.653333pt;}
.x1d{left:649.733322pt;}
}




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