
    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_b19404c7a8f42f3d214ee2b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.217000;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_f9553cb0b965944022bf69bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a9aa02579dcb81585391e295.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.220000;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_8ebd81b71143aa48c0aa970a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.217000;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_5736c0d31139118d0107d406.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.291000;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_32b29f3f2beac47d04d922f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.263000;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_b9474f7492fc28b2e84edc9e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_874ef1af4368135564ad6e1b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_2720258e51069149bc1b8935.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_fe7be4aa2eceb77f9edc756a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_fdc7a0bc1a29f6862d212464.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;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_f425c67896adbe7a7f4e3349.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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);}
.v3{vertical-align:-82.800000px;}
.v1{vertical-align:-79.920000px;}
.v2{vertical-align:-72.000000px;}
.v0{vertical-align:0.000000px;}
.ls33{letter-spacing:-0.936000px;}
.ls28{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.576000px;}
.ls2c{letter-spacing:-0.466800px;}
.ls32{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.279600px;}
.ls2d{letter-spacing:-0.241800px;}
.ls26{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.201600px;}
.ls2{letter-spacing:-0.184200px;}
.ls15{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.079200px;}
.lsf{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.031680px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000001px;}
.ls1b{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.110400px;}
.lse{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.258000px;}
.ls31{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.385800px;}
.ls1e{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.642000px;}
.lsb{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.726000px;}
.ls14{letter-spacing:0.792000px;}
.ls11{letter-spacing:0.864000px;}
.ls1f{letter-spacing:3.780000px;}
.ls18{letter-spacing:10.260000px;}
.ls1{letter-spacing:12.240000px;}
.ls13{letter-spacing:12.960000px;}
.ls2e{letter-spacing:15.120000px;}
.ls2a{letter-spacing:22.270080px;}
.ls27{letter-spacing:24.480000px;}
.ls29{letter-spacing:192.216000px;}
.ls21{letter-spacing:194.376000px;}
.ls23{letter-spacing:197.976000px;}
.ls16{letter-spacing:409.140000px;}
.ls2f{letter-spacing:619.356000px;}
.ls22{letter-spacing:630.156000px;}
.ls0{letter-spacing:1156.596000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-72.000000px;}
.ws1f{word-spacing:-71.712000px;}
.ws3{word-spacing:-23.950320px;}
.ws4{word-spacing:-20.376001px;}
.ws15{word-spacing:-19.471920px;}
.ws22{word-spacing:-19.131720px;}
.wse{word-spacing:-18.864000px;}
.ws11{word-spacing:-18.792000px;}
.ws9{word-spacing:-18.745920px;}
.ws7{word-spacing:-18.720000px;}
.ws14{word-spacing:-18.544320px;}
.ws24{word-spacing:-18.504120px;}
.ws25{word-spacing:-18.466320px;}
.ws1b{word-spacing:-18.432000px;}
.ws26{word-spacing:-18.288000px;}
.ws23{word-spacing:-18.279120px;}
.wsd{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws1e{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.856000px;}
.ws20{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws27{word-spacing:-17.568000px;}
.wsa{word-spacing:-17.424000px;}
.ws21{word-spacing:-17.280000px;}
.ws0{word-spacing:-17.170680px;}
.ws28{word-spacing:-17.064000px;}
.ws10{word-spacing:-16.333440px;}
.ws17{word-spacing:-15.300000px;}
.ws1d{word-spacing:-15.146400px;}
.ws18{word-spacing:-15.046800px;}
.ws16{word-spacing:-14.993280px;}
.ws1a{word-spacing:-14.940000px;}
.ws1c{word-spacing:-14.733600px;}
.ws19{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.256000px;}
.ws1{word-spacing:-12.638880px;}
.ws2{word-spacing:-11.818080px;}
.wsf{word-spacing:0.000000px;}
._1c{margin-left:-15.840000px;}
._1f{margin-left:-12.780000px;}
._12{margin-left:-5.148000px;}
._5{margin-left:-4.128000px;}
._3{margin-left:-3.024000px;}
._0{margin-left:-1.033080px;}
._1{width:1.144800px;}
._4{width:2.287200px;}
._b{width:4.008000px;}
._17{width:5.143200px;}
._8{width:7.032000px;}
._9{width:9.007200px;}
._15{width:10.296000px;}
._f{width:12.216000px;}
._19{width:13.237080px;}
._11{width:14.893080px;}
._10{width:15.960000px;}
._7{width:19.020000px;}
._6{width:20.136000px;}
._c{width:21.720000px;}
._d{width:22.747200px;}
._e{width:23.932800px;}
._16{width:25.357080px;}
._a{width:26.400000px;}
._13{width:27.840000px;}
._14{width:28.932000px;}
._18{width:30.348000px;}
._21{width:31.368000px;}
._1b{width:32.683680px;}
._1a{width:33.841080px;}
._1d{width:41.016000px;}
._1e{width:42.732000px;}
._20{width:43.921080px;}
._2{width:72.498000px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(79,129,189);}
.fc5{color:rgb(32,33,36);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:7.200000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:2.340000px;}
.ye{bottom:14.760000px;}
.ya{bottom:15.120000px;}
.yd{bottom:19.080000px;}
.y4{bottom:24.120000px;}
.y40{bottom:24.840000px;}
.y9{bottom:28.260000px;}
.y3{bottom:38.880000px;}
.y7{bottom:42.840000px;}
.yaf{bottom:90.396000px;}
.y3f{bottom:97.956000px;}
.ye4{bottom:98.496000px;}
.y87{bottom:109.476000px;}
.yf9{bottom:111.096000px;}
.y3e{bottom:118.656000px;}
.yae{bottom:121.536000px;}
.yc8{bottom:124.956000px;}
.y61{bottom:125.856000px;}
.ye3{bottom:129.456000px;}
.y86{bottom:130.176000px;}
.y10e{bottom:136.296000px;}
.y3d{bottom:139.356000px;}
.yfe{bottom:139.536000px;}
.yf8{bottom:142.236000px;}
.y12d{bottom:145.656000px;}
.y85{bottom:150.870000px;}
.yad{bottom:152.490000px;}
.yc7{bottom:155.910000px;}
.y60{bottom:156.810000px;}
.y10d{bottom:156.990000px;}
.y3c{bottom:160.050000px;}
.ye2{bottom:160.590000px;}
.y12c{bottom:166.350000px;}
.yfd{bottom:170.670000px;}
.yf7{bottom:173.190000px;}
.y10c{bottom:177.690000px;}
.y3b{bottom:180.750000px;}
.y84{bottom:181.830000px;}
.yac{bottom:183.630000px;}
.yc6{bottom:187.050000px;}
.y5f{bottom:187.950000px;}
.ye1{bottom:191.550000px;}
.y10b{bottom:198.390000px;}
.y3a{bottom:201.450000px;}
.yfc{bottom:201.630000px;}
.yf6{bottom:204.330000px;}
.y12b{bottom:207.750000px;}
.y83{bottom:212.970000px;}
.yab{bottom:214.590000px;}
.yc5{bottom:218.010000px;}
.y5e{bottom:218.910000px;}
.y10a{bottom:219.090000px;}
.y39{bottom:222.150000px;}
.ye0{bottom:222.690000px;}
.y12a{bottom:228.450000px;}
.yfb{bottom:232.770000px;}
.yf5{bottom:235.290000px;}
.y109{bottom:239.790000px;}
.y38{bottom:242.850000px;}
.y82{bottom:243.930000px;}
.yaa{bottom:245.550000px;}
.yc4{bottom:249.150000px;}
.y5d{bottom:250.050000px;}
.ydf{bottom:253.650000px;}
.y108{bottom:260.490000px;}
.y37{bottom:263.550000px;}
.y81{bottom:264.630000px;}
.yf4{bottom:266.250000px;}
.y129{bottom:269.850000px;}
.ya9{bottom:276.690000px;}
.yc3{bottom:280.110000px;}
.y5c{bottom:281.010000px;}
.y107{bottom:281.190000px;}
.yfa{bottom:282.810000px;}
.y36{bottom:284.250000px;}
.y80{bottom:284.610000px;}
.yde{bottom:284.790000px;}
.y128{bottom:290.550000px;}
.yf3{bottom:297.390000px;}
.y7f{bottom:301.890000px;}
.y35{bottom:304.950000px;}
.ya8{bottom:307.650000px;}
.yc2{bottom:311.250000px;}
.y5b{bottom:312.150000px;}
.ydd{bottom:315.750000px;}
.y7e{bottom:319.170000px;}
.y106{bottom:322.590000px;}
.y34{bottom:325.650000px;}
.yf2{bottom:328.350000px;}
.y127{bottom:331.950000px;}
.y7d{bottom:336.450000px;}
.ya7{bottom:338.790000px;}
.yc1{bottom:342.210000px;}
.y5a{bottom:343.110000px;}
.y105{bottom:343.290000px;}
.y33{bottom:346.395000px;}
.ydc{bottom:346.935000px;}
.y126{bottom:352.695000px;}
.yf1{bottom:359.535000px;}
.y104{bottom:364.035000px;}
.y32{bottom:367.095000px;}
.ya6{bottom:369.795000px;}
.y7c{bottom:371.595000px;}
.yc0{bottom:373.395000px;}
.y59{bottom:374.115000px;}
.ydb{bottom:377.895000px;}
.y103{bottom:384.735000px;}
.y31{bottom:387.795000px;}
.yf0{bottom:390.495000px;}
.y125{bottom:394.095000px;}
.ya5{bottom:400.935000px;}
.y7b{bottom:402.735000px;}
.ybf{bottom:404.355000px;}
.y58{bottom:405.255000px;}
.y102{bottom:405.435000px;}
.yda{bottom:409.035000px;}
.y124{bottom:414.795000px;}
.yef{bottom:421.635000px;}
.y101{bottom:426.135000px;}
.y30{bottom:428.655000px;}
.y7a{bottom:433.695000px;}
.ybe{bottom:435.495000px;}
.y57{bottom:436.215000px;}
.yd9{bottom:439.995000px;}
.y100{bottom:446.835000px;}
.y2f{bottom:449.355000px;}
.ya4{bottom:452.595000px;}
.y123{bottom:456.195000px;}
.yd8{bottom:460.875000px;}
.y79{bottom:464.835000px;}
.ybd{bottom:466.455000px;}
.y56{bottom:467.355000px;}
.yff{bottom:468.615000px;}
.y2e{bottom:470.055000px;}
.ya3{bottom:472.575000px;}
.y122{bottom:476.895000px;}
.yd7{bottom:481.035000px;}
.yee{bottom:483.735000px;}
.ya2{bottom:489.855000px;}
.y2d{bottom:490.935000px;}
.y78{bottom:495.795000px;}
.ybc{bottom:497.595000px;}
.y55{bottom:498.315000px;}
.ya1{bottom:507.135000px;}
.yd6{bottom:511.275000px;}
.y2c{bottom:511.635000px;}
.yed{bottom:514.695000px;}
.y121{bottom:518.295000px;}
.y77{bottom:526.935000px;}
.ybb{bottom:528.555000px;}
.y54{bottom:529.455000px;}
.y2b{bottom:532.335000px;}
.y120{bottom:538.995000px;}
.ya0{bottom:542.415000px;}
.yec{bottom:545.835000px;}
.y2a{bottom:553.035000px;}
.y76{bottom:557.895000px;}
.yba{bottom:559.695000px;}
.y53{bottom:560.415000px;}
.y9f{bottom:573.375000px;}
.y29{bottom:573.735000px;}
.yeb{bottom:576.795000px;}
.y11f{bottom:580.395000px;}
.y75{bottom:589.035000px;}
.yb9{bottom:590.655000px;}
.y52{bottom:591.555000px;}
.y28{bottom:594.435000px;}
.y11e{bottom:601.095000px;}
.y9e{bottom:604.515000px;}
.yea{bottom:607.965000px;}
.y74{bottom:609.765000px;}
.y27{bottom:615.165000px;}
.yb8{bottom:621.645000px;}
.y51{bottom:622.545000px;}
.y73{bottom:629.745000px;}
.y9d{bottom:635.505000px;}
.y26{bottom:635.865000px;}
.ye9{bottom:638.925000px;}
.y11d{bottom:642.345000px;}
.y72{bottom:646.845000px;}
.yb7{bottom:652.785000px;}
.y50{bottom:653.685000px;}
.y25{bottom:656.565000px;}
.y11c{bottom:663.045000px;}
.y71{bottom:664.125000px;}
.y9c{bottom:666.645000px;}
.ye8{bottom:670.065000px;}
.y24{bottom:677.265000px;}
.y70{bottom:681.405000px;}
.yb6{bottom:683.745000px;}
.y4f{bottom:684.645000px;}
.y9b{bottom:697.605000px;}
.y23{bottom:697.965000px;}
.ye7{bottom:701.025000px;}
.y11b{bottom:704.445000px;}
.yb5{bottom:714.885000px;}
.y4e{bottom:715.785000px;}
.y6f{bottom:716.685000px;}
.y22{bottom:718.665000px;}
.y11a{bottom:725.145000px;}
.yd5{bottom:728.745000px;}
.ye6{bottom:732.165000px;}
.y21{bottom:739.365000px;}
.yb4{bottom:745.845000px;}
.y4d{bottom:746.745000px;}
.y6e{bottom:747.645000px;}
.y9a{bottom:749.445000px;}
.ye5{bottom:752.145000px;}
.yd4{bottom:759.705000px;}
.y20{bottom:760.065000px;}
.y119{bottom:766.545000px;}
.y99{bottom:769.425000px;}
.yb3{bottom:776.985000px;}
.y4c{bottom:777.885000px;}
.y6d{bottom:778.785000px;}
.y1f{bottom:780.945000px;}
.y98{bottom:786.525000px;}
.y118{bottom:787.245000px;}
.yd3{bottom:790.845000px;}
.y1e{bottom:800.925000px;}
.y97{bottom:803.805000px;}
.yb2{bottom:807.945000px;}
.y4b{bottom:808.845000px;}
.y6c{bottom:809.745000px;}
.y96{bottom:821.085000px;}
.y1d{bottom:821.625000px;}
.yd2{bottom:821.805000px;}
.y117{bottom:828.645000px;}
.y95{bottom:838.365000px;}
.yb1{bottom:839.085000px;}
.y4a{bottom:839.985000px;}
.y6b{bottom:840.885000px;}
.y1c{bottom:841.785000px;}
.y116{bottom:849.345000px;}
.yd1{bottom:852.945000px;}
.y94{bottom:855.645000px;}
.y1b{bottom:858.165000px;}
.yb0{bottom:870.090000px;}
.y49{bottom:870.990000px;}
.y6a{bottom:871.890000px;}
.y93{bottom:872.970000px;}
.y1a{bottom:874.590000px;}
.yd0{bottom:883.950000px;}
.y115{bottom:890.790000px;}
.y19{bottom:896.190000px;}
.y92{bottom:901.230000px;}
.y48{bottom:902.130000px;}
.y69{bottom:903.030000px;}
.y114{bottom:911.490000px;}
.y18{bottom:912.570000px;}
.ycf{bottom:915.090000px;}
.y17{bottom:929.130000px;}
.y91{bottom:932.190000px;}
.y47{bottom:933.090000px;}
.y68{bottom:933.990000px;}
.y16{bottom:945.510000px;}
.y113{bottom:952.890000px;}
.y90{bottom:963.330000px;}
.y46{bottom:964.230000px;}
.y67{bottom:964.950000px;}
.yce{bottom:966.750000px;}
.y15{bottom:968.730000px;}
.y112{bottom:973.590000px;}
.ycd{bottom:987.090000px;}
.y14{bottom:993.570000px;}
.y8f{bottom:994.290000px;}
.y66{bottom:995.010000px;}
.y45{bottom:995.190000px;}
.ycc{bottom:1006.170000px;}
.y8e{bottom:1014.990000px;}
.y13{bottom:1015.350000px;}
.ycb{bottom:1024.710000px;}
.y65{bottom:1025.430000px;}
.y44{bottom:1026.330000px;}
.y8d{bottom:1034.970000px;}
.y111{bottom:1035.690000px;}
.y12{bottom:1038.210000px;}
.yca{bottom:1041.990000px;}
.y8c{bottom:1052.250000px;}
.y64{bottom:1056.390000px;}
.y43{bottom:1057.290000px;}
.yc9{bottom:1059.090000px;}
.y11{bottom:1063.770000px;}
.y8b{bottom:1069.530000px;}
.y110{bottom:1077.090000px;}
.y8a{bottom:1086.810000px;}
.y63{bottom:1087.530000px;}
.y42{bottom:1088.430000px;}
.y10{bottom:1089.330000px;}
.y10f{bottom:1097.790000px;}
.y89{bottom:1104.090000px;}
.yf{bottom:1114.890000px;}
.y62{bottom:1118.490000px;}
.y41{bottom:1119.210000px;}
.y88{bottom:1121.190000px;}
.yc{bottom:1155.600000px;}
.y6{bottom:1179.900000px;}
.y2{bottom:1185.480000px;}
.y5{bottom:1197.000000px;}
.y1{bottom:1202.940000px;}
.y8{bottom:1208.160000px;}
.ha{height:7.161328px;}
.h9{height:19.080000px;}
.h7{height:41.634720px;}
.h8{height:44.223840px;}
.h6{height:48.095280px;}
.h4{height:49.108320px;}
.hf{height:53.838000px;}
.h5{height:54.360000px;}
.he{height:57.186000px;}
.h15{height:58.651172px;}
.h14{height:60.835680px;}
.h16{height:65.010937px;}
.h3{height:65.884219px;}
.h12{height:70.148160px;}
.h13{height:70.628906px;}
.h10{height:70.664062px;}
.h2{height:71.784000px;}
.h11{height:72.562500px;}
.hc{height:76.392000px;}
.hd{height:83.987280px;}
.hb{height:89.210160px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:59.076000px;}
.w3{width:371.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:43.125000px;}
.x1{left:127.655987px;}
.x3{left:146.195987px;}
.xf{left:161.669987px;}
.xd{left:171.929987px;}
.x1a{left:180.749987px;}
.x1d{left:191.549987px;}
.x2{left:204.149987px;}
.xc{left:222.509987px;}
.x10{left:234.029987px;}
.x6{left:266.010000px;}
.x18{left:269.894987px;}
.x1b{left:286.994987px;}
.x1c{left:289.694987px;}
.xe{left:341.174987px;}
.x15{left:356.834987px;}
.x14{left:358.274987px;}
.x8{left:360.540000px;}
.x12{left:368.174987px;}
.x16{left:370.514987px;}
.x11{left:375.374987px;}
.x13{left:401.294987px;}
.x19{left:407.774987px;}
.x17{left:429.584987px;}
.x5{left:442.440000px;}
.xb{left:467.924987px;}
.x4{left:469.544987px;}
.x7{left:539.924987px;}
.xa{left:687.030000px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v1{vertical-align:-71.040000pt;}
.v2{vertical-align:-64.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls33{letter-spacing:-0.832000pt;}
.ls28{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls2c{letter-spacing:-0.414933pt;}
.ls32{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.248533pt;}
.ls2d{letter-spacing:-0.214933pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.179200pt;}
.ls2{letter-spacing:-0.163733pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.070400pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.028160pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000001pt;}
.ls1b{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.098133pt;}
.lse{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.229333pt;}
.ls31{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.342933pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.570667pt;}
.lsb{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.645333pt;}
.ls14{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:3.360000pt;}
.ls18{letter-spacing:9.120000pt;}
.ls1{letter-spacing:10.880000pt;}
.ls13{letter-spacing:11.520000pt;}
.ls2e{letter-spacing:13.440000pt;}
.ls2a{letter-spacing:19.795627pt;}
.ls27{letter-spacing:21.760000pt;}
.ls29{letter-spacing:170.858667pt;}
.ls21{letter-spacing:172.778667pt;}
.ls23{letter-spacing:175.978667pt;}
.ls16{letter-spacing:363.680000pt;}
.ls2f{letter-spacing:550.538667pt;}
.ls22{letter-spacing:560.138667pt;}
.ls0{letter-spacing:1028.085333pt;}
.ws13{word-spacing:-64.000000pt;}
.ws1f{word-spacing:-63.744000pt;}
.ws3{word-spacing:-21.289173pt;}
.ws4{word-spacing:-18.112001pt;}
.ws15{word-spacing:-17.308373pt;}
.ws22{word-spacing:-17.005973pt;}
.wse{word-spacing:-16.768000pt;}
.ws11{word-spacing:-16.704000pt;}
.ws9{word-spacing:-16.663040pt;}
.ws7{word-spacing:-16.640000pt;}
.ws14{word-spacing:-16.483840pt;}
.ws24{word-spacing:-16.448107pt;}
.ws25{word-spacing:-16.414507pt;}
.ws1b{word-spacing:-16.384000pt;}
.ws26{word-spacing:-16.256000pt;}
.ws23{word-spacing:-16.248107pt;}
.wsd{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws1e{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws20{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws27{word-spacing:-15.616000pt;}
.wsa{word-spacing:-15.488000pt;}
.ws21{word-spacing:-15.360000pt;}
.ws0{word-spacing:-15.262827pt;}
.ws28{word-spacing:-15.168000pt;}
.ws10{word-spacing:-14.518613pt;}
.ws17{word-spacing:-13.600000pt;}
.ws1d{word-spacing:-13.463467pt;}
.ws18{word-spacing:-13.374933pt;}
.ws16{word-spacing:-13.327360pt;}
.ws1a{word-spacing:-13.280000pt;}
.ws1c{word-spacing:-13.096533pt;}
.ws19{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.672000pt;}
.ws1{word-spacing:-11.234560pt;}
.ws2{word-spacing:-10.504960pt;}
.wsf{word-spacing:0.000000pt;}
._1c{margin-left:-14.080000pt;}
._1f{margin-left:-11.360000pt;}
._12{margin-left:-4.576000pt;}
._5{margin-left:-3.669333pt;}
._3{margin-left:-2.688000pt;}
._0{margin-left:-0.918293pt;}
._1{width:1.017600pt;}
._4{width:2.033067pt;}
._b{width:3.562667pt;}
._17{width:4.571733pt;}
._8{width:6.250667pt;}
._9{width:8.006400pt;}
._15{width:9.152000pt;}
._f{width:10.858667pt;}
._19{width:11.766293pt;}
._11{width:13.238293pt;}
._10{width:14.186667pt;}
._7{width:16.906667pt;}
._6{width:17.898667pt;}
._c{width:19.306667pt;}
._d{width:20.219733pt;}
._e{width:21.273600pt;}
._16{width:22.539627pt;}
._a{width:23.466667pt;}
._13{width:24.746667pt;}
._14{width:25.717333pt;}
._18{width:26.976000pt;}
._21{width:27.882667pt;}
._1b{width:29.052160pt;}
._1a{width:30.080960pt;}
._1d{width:36.458667pt;}
._1e{width:37.984000pt;}
._20{width:39.040960pt;}
._2{width:64.442667pt;}
.fs5{font-size:6.400000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.080000pt;}
.ye{bottom:13.120000pt;}
.ya{bottom:13.440000pt;}
.yd{bottom:16.960000pt;}
.y4{bottom:21.440000pt;}
.y40{bottom:22.080000pt;}
.y9{bottom:25.120000pt;}
.y3{bottom:34.560000pt;}
.y7{bottom:38.080000pt;}
.yaf{bottom:80.352000pt;}
.y3f{bottom:87.072000pt;}
.ye4{bottom:87.552000pt;}
.y87{bottom:97.312000pt;}
.yf9{bottom:98.752000pt;}
.y3e{bottom:105.472000pt;}
.yae{bottom:108.032000pt;}
.yc8{bottom:111.072000pt;}
.y61{bottom:111.872000pt;}
.ye3{bottom:115.072000pt;}
.y86{bottom:115.712000pt;}
.y10e{bottom:121.152000pt;}
.y3d{bottom:123.872000pt;}
.yfe{bottom:124.032000pt;}
.yf8{bottom:126.432000pt;}
.y12d{bottom:129.472000pt;}
.y85{bottom:134.106667pt;}
.yad{bottom:135.546667pt;}
.yc7{bottom:138.586667pt;}
.y60{bottom:139.386667pt;}
.y10d{bottom:139.546667pt;}
.y3c{bottom:142.266667pt;}
.ye2{bottom:142.746667pt;}
.y12c{bottom:147.866667pt;}
.yfd{bottom:151.706667pt;}
.yf7{bottom:153.946667pt;}
.y10c{bottom:157.946667pt;}
.y3b{bottom:160.666667pt;}
.y84{bottom:161.626667pt;}
.yac{bottom:163.226667pt;}
.yc6{bottom:166.266667pt;}
.y5f{bottom:167.066667pt;}
.ye1{bottom:170.266667pt;}
.y10b{bottom:176.346667pt;}
.y3a{bottom:179.066667pt;}
.yfc{bottom:179.226667pt;}
.yf6{bottom:181.626667pt;}
.y12b{bottom:184.666667pt;}
.y83{bottom:189.306667pt;}
.yab{bottom:190.746667pt;}
.yc5{bottom:193.786667pt;}
.y5e{bottom:194.586667pt;}
.y10a{bottom:194.746667pt;}
.y39{bottom:197.466667pt;}
.ye0{bottom:197.946667pt;}
.y12a{bottom:203.066667pt;}
.yfb{bottom:206.906667pt;}
.yf5{bottom:209.146667pt;}
.y109{bottom:213.146667pt;}
.y38{bottom:215.866667pt;}
.y82{bottom:216.826667pt;}
.yaa{bottom:218.266667pt;}
.yc4{bottom:221.466667pt;}
.y5d{bottom:222.266667pt;}
.ydf{bottom:225.466667pt;}
.y108{bottom:231.546667pt;}
.y37{bottom:234.266667pt;}
.y81{bottom:235.226667pt;}
.yf4{bottom:236.666667pt;}
.y129{bottom:239.866667pt;}
.ya9{bottom:245.946667pt;}
.yc3{bottom:248.986667pt;}
.y5c{bottom:249.786667pt;}
.y107{bottom:249.946667pt;}
.yfa{bottom:251.386667pt;}
.y36{bottom:252.666667pt;}
.y80{bottom:252.986667pt;}
.yde{bottom:253.146667pt;}
.y128{bottom:258.266667pt;}
.yf3{bottom:264.346667pt;}
.y7f{bottom:268.346667pt;}
.y35{bottom:271.066667pt;}
.ya8{bottom:273.466667pt;}
.yc2{bottom:276.666667pt;}
.y5b{bottom:277.466667pt;}
.ydd{bottom:280.666667pt;}
.y7e{bottom:283.706667pt;}
.y106{bottom:286.746667pt;}
.y34{bottom:289.466667pt;}
.yf2{bottom:291.866667pt;}
.y127{bottom:295.066667pt;}
.y7d{bottom:299.066667pt;}
.ya7{bottom:301.146667pt;}
.yc1{bottom:304.186667pt;}
.y5a{bottom:304.986667pt;}
.y105{bottom:305.146667pt;}
.y33{bottom:307.906667pt;}
.ydc{bottom:308.386667pt;}
.y126{bottom:313.506667pt;}
.yf1{bottom:319.586667pt;}
.y104{bottom:323.586667pt;}
.y32{bottom:326.306667pt;}
.ya6{bottom:328.706667pt;}
.y7c{bottom:330.306667pt;}
.yc0{bottom:331.906667pt;}
.y59{bottom:332.546667pt;}
.ydb{bottom:335.906667pt;}
.y103{bottom:341.986667pt;}
.y31{bottom:344.706667pt;}
.yf0{bottom:347.106667pt;}
.y125{bottom:350.306667pt;}
.ya5{bottom:356.386667pt;}
.y7b{bottom:357.986667pt;}
.ybf{bottom:359.426667pt;}
.y58{bottom:360.226667pt;}
.y102{bottom:360.386667pt;}
.yda{bottom:363.586667pt;}
.y124{bottom:368.706667pt;}
.yef{bottom:374.786667pt;}
.y101{bottom:378.786667pt;}
.y30{bottom:381.026667pt;}
.y7a{bottom:385.506667pt;}
.ybe{bottom:387.106667pt;}
.y57{bottom:387.746667pt;}
.yd9{bottom:391.106667pt;}
.y100{bottom:397.186667pt;}
.y2f{bottom:399.426667pt;}
.ya4{bottom:402.306667pt;}
.y123{bottom:405.506667pt;}
.yd8{bottom:409.666667pt;}
.y79{bottom:413.186667pt;}
.ybd{bottom:414.626667pt;}
.y56{bottom:415.426667pt;}
.yff{bottom:416.546667pt;}
.y2e{bottom:417.826667pt;}
.ya3{bottom:420.066667pt;}
.y122{bottom:423.906667pt;}
.yd7{bottom:427.586667pt;}
.yee{bottom:429.986667pt;}
.ya2{bottom:435.426667pt;}
.y2d{bottom:436.386667pt;}
.y78{bottom:440.706667pt;}
.ybc{bottom:442.306667pt;}
.y55{bottom:442.946667pt;}
.ya1{bottom:450.786667pt;}
.yd6{bottom:454.466667pt;}
.y2c{bottom:454.786667pt;}
.yed{bottom:457.506667pt;}
.y121{bottom:460.706667pt;}
.y77{bottom:468.386667pt;}
.ybb{bottom:469.826667pt;}
.y54{bottom:470.626667pt;}
.y2b{bottom:473.186667pt;}
.y120{bottom:479.106667pt;}
.ya0{bottom:482.146667pt;}
.yec{bottom:485.186667pt;}
.y2a{bottom:491.586667pt;}
.y76{bottom:495.906667pt;}
.yba{bottom:497.506667pt;}
.y53{bottom:498.146667pt;}
.y9f{bottom:509.666667pt;}
.y29{bottom:509.986667pt;}
.yeb{bottom:512.706667pt;}
.y11f{bottom:515.906667pt;}
.y75{bottom:523.586667pt;}
.yb9{bottom:525.026667pt;}
.y52{bottom:525.826667pt;}
.y28{bottom:528.386667pt;}
.y11e{bottom:534.306667pt;}
.y9e{bottom:537.346667pt;}
.yea{bottom:540.413333pt;}
.y74{bottom:542.013333pt;}
.y27{bottom:546.813333pt;}
.yb8{bottom:552.573333pt;}
.y51{bottom:553.373333pt;}
.y73{bottom:559.773333pt;}
.y9d{bottom:564.893333pt;}
.y26{bottom:565.213333pt;}
.ye9{bottom:567.933333pt;}
.y11d{bottom:570.973333pt;}
.y72{bottom:574.973333pt;}
.yb7{bottom:580.253333pt;}
.y50{bottom:581.053333pt;}
.y25{bottom:583.613333pt;}
.y11c{bottom:589.373333pt;}
.y71{bottom:590.333333pt;}
.y9c{bottom:592.573333pt;}
.ye8{bottom:595.613333pt;}
.y24{bottom:602.013333pt;}
.y70{bottom:605.693333pt;}
.yb6{bottom:607.773333pt;}
.y4f{bottom:608.573333pt;}
.y9b{bottom:620.093333pt;}
.y23{bottom:620.413333pt;}
.ye7{bottom:623.133333pt;}
.y11b{bottom:626.173333pt;}
.yb5{bottom:635.453333pt;}
.y4e{bottom:636.253333pt;}
.y6f{bottom:637.053333pt;}
.y22{bottom:638.813333pt;}
.y11a{bottom:644.573333pt;}
.yd5{bottom:647.773333pt;}
.ye6{bottom:650.813333pt;}
.y21{bottom:657.213333pt;}
.yb4{bottom:662.973333pt;}
.y4d{bottom:663.773333pt;}
.y6e{bottom:664.573333pt;}
.y9a{bottom:666.173333pt;}
.ye5{bottom:668.573333pt;}
.yd4{bottom:675.293333pt;}
.y20{bottom:675.613333pt;}
.y119{bottom:681.373333pt;}
.y99{bottom:683.933333pt;}
.yb3{bottom:690.653333pt;}
.y4c{bottom:691.453333pt;}
.y6d{bottom:692.253333pt;}
.y1f{bottom:694.173333pt;}
.y98{bottom:699.133333pt;}
.y118{bottom:699.773333pt;}
.yd3{bottom:702.973333pt;}
.y1e{bottom:711.933333pt;}
.y97{bottom:714.493333pt;}
.yb2{bottom:718.173333pt;}
.y4b{bottom:718.973333pt;}
.y6c{bottom:719.773333pt;}
.y96{bottom:729.853333pt;}
.y1d{bottom:730.333333pt;}
.yd2{bottom:730.493333pt;}
.y117{bottom:736.573333pt;}
.y95{bottom:745.213333pt;}
.yb1{bottom:745.853333pt;}
.y4a{bottom:746.653333pt;}
.y6b{bottom:747.453333pt;}
.y1c{bottom:748.253333pt;}
.y116{bottom:754.973333pt;}
.yd1{bottom:758.173333pt;}
.y94{bottom:760.573333pt;}
.y1b{bottom:762.813333pt;}
.yb0{bottom:773.413333pt;}
.y49{bottom:774.213333pt;}
.y6a{bottom:775.013333pt;}
.y93{bottom:775.973333pt;}
.y1a{bottom:777.413333pt;}
.yd0{bottom:785.733333pt;}
.y115{bottom:791.813333pt;}
.y19{bottom:796.613333pt;}
.y92{bottom:801.093333pt;}
.y48{bottom:801.893333pt;}
.y69{bottom:802.693333pt;}
.y114{bottom:810.213333pt;}
.y18{bottom:811.173333pt;}
.ycf{bottom:813.413333pt;}
.y17{bottom:825.893333pt;}
.y91{bottom:828.613333pt;}
.y47{bottom:829.413333pt;}
.y68{bottom:830.213333pt;}
.y16{bottom:840.453333pt;}
.y113{bottom:847.013333pt;}
.y90{bottom:856.293333pt;}
.y46{bottom:857.093333pt;}
.y67{bottom:857.733333pt;}
.yce{bottom:859.333333pt;}
.y15{bottom:861.093333pt;}
.y112{bottom:865.413333pt;}
.ycd{bottom:877.413333pt;}
.y14{bottom:883.173333pt;}
.y8f{bottom:883.813333pt;}
.y66{bottom:884.453333pt;}
.y45{bottom:884.613333pt;}
.ycc{bottom:894.373333pt;}
.y8e{bottom:902.213333pt;}
.y13{bottom:902.533333pt;}
.ycb{bottom:910.853333pt;}
.y65{bottom:911.493333pt;}
.y44{bottom:912.293333pt;}
.y8d{bottom:919.973333pt;}
.y111{bottom:920.613333pt;}
.y12{bottom:922.853333pt;}
.yca{bottom:926.213333pt;}
.y8c{bottom:935.333333pt;}
.y64{bottom:939.013333pt;}
.y43{bottom:939.813333pt;}
.yc9{bottom:941.413333pt;}
.y11{bottom:945.573333pt;}
.y8b{bottom:950.693333pt;}
.y110{bottom:957.413333pt;}
.y8a{bottom:966.053333pt;}
.y63{bottom:966.693333pt;}
.y42{bottom:967.493333pt;}
.y10{bottom:968.293333pt;}
.y10f{bottom:975.813333pt;}
.y89{bottom:981.413333pt;}
.yf{bottom:991.013333pt;}
.y62{bottom:994.213333pt;}
.y41{bottom:994.853333pt;}
.y88{bottom:996.613333pt;}
.yc{bottom:1027.200000pt;}
.y6{bottom:1048.800000pt;}
.y2{bottom:1053.760000pt;}
.y5{bottom:1064.000000pt;}
.y1{bottom:1069.280000pt;}
.y8{bottom:1073.920000pt;}
.ha{height:6.365625pt;}
.h9{height:16.960000pt;}
.h7{height:37.008640pt;}
.h8{height:39.310080pt;}
.h6{height:42.751360pt;}
.h4{height:43.651840pt;}
.hf{height:47.856000pt;}
.h5{height:48.320000pt;}
.he{height:50.832000pt;}
.h15{height:52.134375pt;}
.h14{height:54.076160pt;}
.h16{height:57.787500pt;}
.h3{height:58.563750pt;}
.h12{height:62.353920pt;}
.h13{height:62.781250pt;}
.h10{height:62.812500pt;}
.h2{height:63.808000pt;}
.h11{height:64.500000pt;}
.hc{height:67.904000pt;}
.hd{height:74.655360pt;}
.hb{height:79.297920pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:52.512000pt;}
.w3{width:330.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:38.333333pt;}
.x1{left:113.471988pt;}
.x3{left:129.951988pt;}
.xf{left:143.706655pt;}
.xd{left:152.826655pt;}
.x1a{left:160.666655pt;}
.x1d{left:170.266655pt;}
.x2{left:181.466655pt;}
.xc{left:197.786655pt;}
.x10{left:208.026655pt;}
.x6{left:236.453333pt;}
.x18{left:239.906655pt;}
.x1b{left:255.106655pt;}
.x1c{left:257.506655pt;}
.xe{left:303.266655pt;}
.x15{left:317.186655pt;}
.x14{left:318.466655pt;}
.x8{left:320.480000pt;}
.x12{left:327.266655pt;}
.x16{left:329.346655pt;}
.x11{left:333.666655pt;}
.x13{left:356.706655pt;}
.x19{left:362.466655pt;}
.x17{left:381.853322pt;}
.x5{left:393.280000pt;}
.xb{left:415.933322pt;}
.x4{left:417.373322pt;}
.x7{left:479.933322pt;}
.xa{left:610.693333pt;}
}




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