
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e51f6ca7ac8367496524f9d6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_c0faf3ec3e14b4d27f7e319f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_b5fd64c05207981b0b627397.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_8a0982576d90014c47b6c0af.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_74ff082489cd697d93080769.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_c819471bfd498d0d556cdcce.woff')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_67fac5a60272319616e473e2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_c82a5029d858e217620a4e72.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.m2{transform:matrix(0.250878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250878,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.066371px;}
.ls11{letter-spacing:-0.063600px;}
.ls1b{letter-spacing:-0.014760px;}
.ls19{letter-spacing:-0.007560px;}
.ls7{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.012915px;}
.ls3{letter-spacing:0.014760px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.060480px;}
.ls12{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.114600px;}
.ls8{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.173520px;}
.ls6{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:48.446640px;}
.ls13{letter-spacing:63.566640px;}
.ls1a{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.wsa{word-spacing:-13.162800px;}
.wsb{word-spacing:-13.067110px;}
.ws2{word-spacing:-13.039800px;}
.wsd{word-spacing:-10.648200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsc{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._b{margin-left:-3.634440px;}
._2{margin-left:-2.601600px;}
._0{margin-left:-1.104000px;}
._1{width:1.884000px;}
._11{width:2.892720px;}
._3{width:3.907800px;}
._4{width:5.051400px;}
._a{width:6.176401px;}
._7{width:7.274400px;}
._8{width:8.356800px;}
._6{width:9.979800px;}
._5{width:11.482800px;}
._9{width:14.609400px;}
._14{width:15.691080px;}
._17{width:16.977360px;}
._18{width:18.207363px;}
._10{width:19.418760px;}
._f{width:20.500920px;}
._19{width:22.003920px;}
._15{width:23.590800px;}
._16{width:25.037760px;}
._13{width:33.967800px;}
._d{width:169.586880px;}
._12{width:202.773600px;}
._e{width:382.125000px;}
._c{width:398.451360px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fsa{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:59.554133px;}
.fs9{font-size:59.697637px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.ya1{bottom:-7.650786px;}
.ya4{bottom:-4.960087px;}
.y0{bottom:0.000000px;}
.y3f{bottom:4.590000px;}
.yb1{bottom:5.726705px;}
.yb3{bottom:5.726707px;}
.yb8{bottom:5.726708px;}
.ybc{bottom:5.798464px;}
.yad{bottom:5.844798px;}
.yaf{bottom:5.874695px;}
.ya6{bottom:5.906085px;}
.yaa{bottom:5.977839px;}
.yba{bottom:5.977844px;}
.ya8{bottom:6.121342px;}
.ybe{bottom:6.121348px;}
.y4f{bottom:7.830000px;}
.y51{bottom:7.920000px;}
.yec{bottom:8.190000px;}
.yc1{bottom:8.206632px;}
.yc0{bottom:8.206638px;}
.yc4{bottom:8.238023px;}
.yc3{bottom:8.238029px;}
.ya3{bottom:8.251477px;}
.yed{bottom:9.630000px;}
.y42{bottom:9.720000px;}
.y40{bottom:12.150000px;}
.ye7{bottom:35.190000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y9f{bottom:116.220000px;}
.y118{bottom:119.910000px;}
.y43{bottom:134.220000px;}
.y117{bottom:137.550000px;}
.yef{bottom:140.250000px;}
.y9e{bottom:143.580000px;}
.y69{bottom:145.920000px;}
.y41{bottom:148.440000px;}
.yee{bottom:152.400000px;}
.y147{bottom:152.580000px;}
.y26{bottom:160.140000px;}
.y116{bottom:161.130000px;}
.y9d{bottom:170.940000px;}
.y146{bottom:176.160000px;}
.y25{bottom:177.690000px;}
.y115{bottom:178.680000px;}
.yeb{bottom:179.760000px;}
.y3e{bottom:181.380000px;}
.y68{bottom:186.060000px;}
.y145{bottom:193.710000px;}
.y24{bottom:195.330000px;}
.y9c{bottom:198.300000px;}
.y114{bottom:202.260000px;}
.yea{bottom:208.830000px;}
.y23{bottom:212.880000px;}
.y144{bottom:217.290000px;}
.y113{bottom:219.900000px;}
.y67{bottom:221.610000px;}
.y9b{bottom:225.570000px;}
.y22{bottom:230.430000px;}
.y143{bottom:234.930000px;}
.ye9{bottom:236.190000px;}
.y66{bottom:239.160000px;}
.y112{bottom:243.480000px;}
.y21{bottom:248.070000px;}
.y142{bottom:252.480000px;}
.y9a{bottom:252.930000px;}
.y111{bottom:261.030000px;}
.ye6{bottom:263.460000px;}
.y20{bottom:265.620000px;}
.y65{bottom:274.800000px;}
.y141{bottom:276.060000px;}
.y99{bottom:280.290000px;}
.y110{bottom:284.610000px;}
.ye8{bottom:290.820000px;}
.y64{bottom:292.350000px;}
.y140{bottom:293.610000px;}
.y1f{bottom:301.260000px;}
.y8f{bottom:301.440000px;}
.y10f{bottom:302.250000px;}
.y13f{bottom:317.280000px;}
.y1e{bottom:318.810000px;}
.y8e{bottom:318.990000px;}
.y10e{bottom:325.830000px;}
.y63{bottom:327.900000px;}
.y98{bottom:328.980000px;}
.y13e{bottom:334.830000px;}
.y1d{bottom:336.360000px;}
.y8d{bottom:336.630000px;}
.ye5{bottom:339.510000px;}
.y10d{bottom:343.380000px;}
.y62{bottom:345.540000px;}
.y1c{bottom:354.000000px;}
.y8c{bottom:354.180000px;}
.y13d{bottom:358.410000px;}
.y10c{bottom:360.930000px;}
.y61{bottom:363.090000px;}
.y97{bottom:364.530000px;}
.y1b{bottom:371.550000px;}
.y8b{bottom:371.730000px;}
.ye4{bottom:375.150000px;}
.y13c{bottom:375.960000px;}
.y10b{bottom:384.510000px;}
.y60{bottom:389.730000px;}
.y96{bottom:391.080000px;}
.y8a{bottom:398.370000px;}
.y13b{bottom:399.540000px;}
.ye3{bottom:401.700000px;}
.y1a{bottom:407.100000px;}
.y10a{bottom:408.090000px;}
.y13a{bottom:423.120000px;}
.y95{bottom:423.750000px;}
.y19{bottom:424.740000px;}
.y5f{bottom:425.280000px;}
.y109{bottom:425.730000px;}
.y3d{bottom:426.360000px;}
.y89{bottom:434.280000px;}
.ye2{bottom:437.250000px;}
.y18{bottom:442.290000px;}
.y5e{bottom:442.830000px;}
.y108{bottom:443.280000px;}
.y3c{bottom:443.910000px;}
.y139{bottom:446.790000px;}
.ye1{bottom:454.890000px;}
.y94{bottom:459.300000px;}
.y17{bottom:459.930000px;}
.y5d{bottom:460.470000px;}
.y138{bottom:464.340000px;}
.y107{bottom:470.220000px;}
.y3b{bottom:470.580000px;}
.ye0{bottom:472.470000px;}
.y16{bottom:477.510000px;}
.y88{bottom:482.550000px;}
.y5c{bottom:487.050000px;}
.y137{bottom:487.950000px;}
.y93{bottom:491.550000px;}
.y87{bottom:500.190000px;}
.y15{bottom:504.420000px;}
.y136{bottom:505.500000px;}
.y3a{bottom:506.130000px;}
.ydf{bottom:508.110000px;}
.y86{bottom:517.740000px;}
.y106{bottom:518.550000px;}
.y5b{bottom:522.600000px;}
.y39{bottom:523.770000px;}
.yde{bottom:525.660000px;}
.y135{bottom:529.080000px;}
.y85{bottom:535.290000px;}
.ydd{bottom:543.210000px;}
.y105{bottom:545.460000px;}
.y134{bottom:546.720000px;}
.y38{bottom:550.320000px;}
.y84{bottom:552.930000px;}
.y14{bottom:553.020000px;}
.ydc{bottom:560.850000px;}
.y133{bottom:564.270000px;}
.y83{bottom:570.480000px;}
.y5a{bottom:572.820000px;}
.ydb{bottom:578.400000px;}
.y104{bottom:582.450000px;}
.y37{bottom:585.870000px;}
.y132{bottom:587.850000px;}
.y13{bottom:590.010000px;}
.yda{bottom:595.950000px;}
.y103{bottom:600.000000px;}
.y131{bottom:605.490000px;}
.y82{bottom:606.120000px;}
.y12{bottom:607.650000px;}
.yd9{bottom:613.590000px;}
.y102{bottom:617.640000px;}
.y36{bottom:618.090000px;}
.y59{bottom:623.220000px;}
.y81{bottom:623.670000px;}
.y11{bottom:625.200000px;}
.y130{bottom:629.070000px;}
.y101{bottom:635.190000px;}
.y10{bottom:642.840000px;}
.y58{bottom:643.380000px;}
.y12f{bottom:646.620000px;}
.yd8{bottom:649.140000px;}
.y80{bottom:650.220000px;}
.yf{bottom:660.390000px;}
.y100{bottom:662.100000px;}
.yd7{bottom:666.780000px;}
.y12e{bottom:670.200000px;}
.ye{bottom:677.940000px;}
.y57{bottom:679.020000px;}
.yd6{bottom:684.330000px;}
.y7f{bottom:685.860000px;}
.y12d{bottom:687.840000px;}
.yd{bottom:695.580000px;}
.y56{bottom:696.570000px;}
.yff{bottom:699.450000px;}
.yd5{bottom:701.880000px;}
.y7e{bottom:703.410000px;}
.y12c{bottom:711.420000px;}
.yc{bottom:713.130000px;}
.yd4{bottom:719.520000px;}
.y7d{bottom:721.050000px;}
.y55{bottom:723.120000px;}
.y12b{bottom:728.970000px;}
.y7c{bottom:738.600000px;}
.yb{bottom:740.040000px;}
.y12a{bottom:746.520000px;}
.yfe{bottom:747.690000px;}
.yd3{bottom:755.070000px;}
.y54{bottom:755.700000px;}
.y7b{bottom:756.150000px;}
.yfd{bottom:765.330000px;}
.y129{bottom:770.190000px;}
.yd2{bottom:772.710000px;}
.y7a{bottom:773.790000px;}
.yfc{bottom:782.880000px;}
.y128{bottom:787.740000px;}
.ya{bottom:788.280000px;}
.y53{bottom:788.730000px;}
.y79{bottom:791.340000px;}
.y127{bottom:805.290000px;}
.yd1{bottom:808.260000px;}
.y52{bottom:816.000000px;}
.y78{bottom:817.980000px;}
.yfb{bottom:818.520000px;}
.y9{bottom:824.100000px;}
.y126{bottom:828.870000px;}
.yfa{bottom:836.070000px;}
.y92{bottom:841.470000px;}
.y50{bottom:843.360000px;}
.yd0{bottom:843.810000px;}
.y125{bottom:846.510000px;}
.y35{bottom:853.260000px;}
.y77{bottom:853.530000px;}
.yf9{bottom:853.620000px;}
.y8{bottom:860.100000px;}
.ycf{bottom:861.450000px;}
.y124{bottom:870.090000px;}
.y4e{bottom:870.720000px;}
.y34{bottom:870.810000px;}
.y76{bottom:871.080000px;}
.yf8{bottom:871.260000px;}
.y91{bottom:877.020000px;}
.y123{bottom:887.640000px;}
.y33{bottom:888.450000px;}
.y75{bottom:888.720000px;}
.yf7{bottom:888.810000px;}
.y7{bottom:896.100000px;}
.yce{bottom:896.280000px;}
.y122{bottom:905.280000px;}
.ycd{bottom:908.430000px;}
.y90{bottom:909.240000px;}
.ya0{bottom:910.395000px;}
.yb7{bottom:912.838834px;}
.yb6{bottom:912.838847px;}
.yb5{bottom:912.838859px;}
.yb4{bottom:912.838871px;}
.yb2{bottom:912.838883px;}
.yb0{bottom:912.838896px;}
.y32{bottom:915.000000px;}
.y74{bottom:915.270000px;}
.y4d{bottom:919.410000px;}
.yf6{bottom:924.450000px;}
.yc2{bottom:928.624409px;}
.y121{bottom:928.860000px;}
.y6{bottom:932.190000px;}
.ya5{bottom:932.212079px;}
.ycc{bottom:935.790000px;}
.yf5{bottom:942.000000px;}
.y120{bottom:946.410000px;}
.y73{bottom:950.820000px;}
.y31{bottom:950.910000px;}
.y5{bottom:951.540000px;}
.y4c{bottom:954.960000px;}
.yf4{bottom:959.550000px;}
.ycb{bottom:963.150000px;}
.y11f{bottom:963.960000px;}
.ya7{bottom:965.935503px;}
.y72{bottom:968.460000px;}
.y4b{bottom:972.600000px;}
.yf3{bottom:977.190000px;}
.ybd{bottom:979.388919px;}
.y71{bottom:986.010000px;}
.y11e{bottom:987.630000px;}
.y4{bottom:989.880000px;}
.y4a{bottom:990.150000px;}
.yca{bottom:990.510000px;}
.yf2{bottom:994.740000px;}
.y30{bottom:999.150000px;}
.ya9{bottom:1000.017688px;}
.y70{bottom:1003.650000px;}
.y11d{bottom:1005.180000px;}
.ybb{bottom:1006.654667px;}
.y49{bottom:1007.790000px;}
.yf1{bottom:1012.320000px;}
.y3{bottom:1014.570000px;}
.y2f{bottom:1016.820000px;}
.yc9{bottom:1017.810000px;}
.y11c{bottom:1022.760000px;}
.y6f{bottom:1030.230000px;}
.yb9{bottom:1033.561655px;}
.yab{bottom:1033.920493px;}
.y2e{bottom:1034.370000px;}
.yf0{bottom:1039.230000px;}
.y48{bottom:1043.370000px;}
.yc8{bottom:1045.170000px;}
.y11b{bottom:1046.340000px;}
.y47{bottom:1060.920000px;}
.y11a{bottom:1063.980000px;}
.y6e{bottom:1065.780000px;}
.yac{bottom:1067.995203px;}
.y2d{bottom:1069.920000px;}
.yc7{bottom:1072.530000px;}
.y46{bottom:1078.560000px;}
.y119{bottom:1081.530000px;}
.y6d{bottom:1084.230000px;}
.y2c{bottom:1087.560000px;}
.y45{bottom:1096.110000px;}
.yc6{bottom:1099.890000px;}
.yae{bottom:1101.898008px;}
.y6c{bottom:1102.590000px;}
.y2b{bottom:1105.110000px;}
.y44{bottom:1113.750000px;}
.y6b{bottom:1121.040000px;}
.ybf{bottom:1121.809173px;}
.y2a{bottom:1122.750000px;}
.yc5{bottom:1127.160000px;}
.y6a{bottom:1139.400000px;}
.y29{bottom:1140.300000px;}
.ya2{bottom:1151.048109px;}
.y27{bottom:1194.300000px;}
.h15{height:1.210815px;}
.h17{height:9.439636px;}
.h1c{height:20.090552px;}
.h1b{height:20.090554px;}
.h1d{height:20.090555px;}
.h1f{height:20.090559px;}
.h1a{height:20.269934px;}
.h1e{height:20.269939px;}
.h18{height:20.449312px;}
.h19{height:20.449313px;}
.h20{height:20.449319px;}
.h22{height:22.422491px;}
.h21{height:22.422497px;}
.h24{height:22.601870px;}
.h23{height:22.601876px;}
.he{height:26.550000px;}
.h25{height:26.580000px;}
.h10{height:26.640000px;}
.h28{height:28.350000px;}
.h2{height:30.022383px;}
.hd{height:32.940000px;}
.h3{height:39.155273px;}
.h26{height:41.661211px;}
.hf{height:50.902383px;}
.h14{height:51.819075px;}
.h16{height:51.943940px;}
.h6{height:52.311445px;}
.h27{height:53.910000px;}
.h7{height:55.779258px;}
.h5{height:57.323320px;}
.h11{height:59.973223px;}
.h8{height:60.960938px;}
.h12{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.hb{height:70.664062px;}
.h4{height:72.985430px;}
.hc{height:223.650000px;}
.h13{height:241.863924px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:-8.223478px;}
.wc{width:2.070404px;}
.w16{width:5.220289px;}
.we{width:10.260567px;}
.wf{width:20.161113px;}
.w10{width:20.341123px;}
.w11{width:30.601689px;}
.w5{width:31.980000px;}
.w17{width:46.442564px;}
.w15{width:49.322723px;}
.w14{width:53.339922px;}
.w13{width:53.339924px;}
.w12{width:53.339925px;}
.w1b{width:55.110000px;}
.w1a{width:55.170000px;}
.w1c{width:63.900000px;}
.w1d{width:63.990000px;}
.wa{width:102.150000px;}
.w8{width:116.730000px;}
.w9{width:138.720000px;}
.w18{width:156.060000px;}
.w7{width:211.980000px;}
.w19{width:240.600000px;}
.w3{width:277.230000px;}
.w4{width:294.510000px;}
.w6{width:544.620000px;}
.wb{width:598.500000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x1a{left:-2.952173px;}
.x0{left:0.000000px;}
.xb{left:8.190000px;}
.x1{left:68.040000px;}
.xa{left:73.650000px;}
.x10{left:95.039987px;}
.x30{left:111.419987px;}
.x18{left:147.337500px;}
.x1d{left:156.248288px;}
.xc{left:157.950000px;}
.x6{left:160.740000px;}
.x1c{left:163.988417px;}
.x25{left:169.388707px;}
.x1e{left:181.449381px;}
.xd{left:190.650000px;}
.x26{left:206.290743px;}
.x5{left:230.429987px;}
.x2a{left:247.980000px;}
.x2{left:250.499987px;}
.x14{left:251.849987px;}
.x1f{left:265.694030px;}
.x7{left:269.130000px;}
.x12{left:270.659987px;}
.x9{left:282.270000px;}
.x29{left:293.249987px;}
.x20{left:354.078907px;}
.x2f{left:366.059987px;}
.xe{left:370.019987px;}
.x15{left:373.440000px;}
.xf{left:382.889987px;}
.x2b{left:404.760000px;}
.x8{left:437.970000px;}
.x21{left:442.103764px;}
.x2c{left:460.740000px;}
.x16{left:490.890000px;}
.x2d{left:516.660000px;}
.x22{left:530.128621px;}
.x2e{left:581.370000px;}
.x4{left:595.139987px;}
.x19{left:610.623694px;}
.x23{left:614.193260px;}
.x17{left:630.330000px;}
.x27{left:651.455315px;}
.x28{left:686.377242px;}
.x24{left:692.497575px;}
.x13{left:739.139987px;}
.x11{left:748.139987px;}
.x1b{left:754.060978px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.058996pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls1b{letter-spacing:-0.013120pt;}
.ls19{letter-spacing:-0.006720pt;}
.ls7{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.011480pt;}
.ls3{letter-spacing:0.013120pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.053760pt;}
.ls12{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.101867pt;}
.ls8{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.154240pt;}
.ls6{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:43.063680pt;}
.ls13{letter-spacing:56.503680pt;}
.ls1a{letter-spacing:72.503680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.wsa{word-spacing:-11.700267pt;}
.wsb{word-spacing:-11.615209pt;}
.ws2{word-spacing:-11.590933pt;}
.wsd{word-spacing:-9.465067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsc{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._b{margin-left:-3.230613pt;}
._2{margin-left:-2.312533pt;}
._0{margin-left:-0.981333pt;}
._1{width:1.674667pt;}
._11{width:2.571307pt;}
._3{width:3.473600pt;}
._4{width:4.490133pt;}
._a{width:5.490134pt;}
._7{width:6.466133pt;}
._8{width:7.428267pt;}
._6{width:8.870933pt;}
._5{width:10.206933pt;}
._9{width:12.986134pt;}
._14{width:13.947626pt;}
._17{width:15.090986pt;}
._18{width:16.184323pt;}
._10{width:17.261120pt;}
._f{width:18.223040pt;}
._19{width:19.559040pt;}
._15{width:20.969600pt;}
._16{width:22.255787pt;}
._13{width:30.193600pt;}
._d{width:150.743893pt;}
._12{width:180.243200pt;}
._e{width:339.666667pt;}
._c{width:354.178987pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fsa{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:52.937007pt;}
.fs9{font-size:53.064566pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.ya1{bottom:-6.800699pt;}
.ya4{bottom:-4.408966pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:4.080000pt;}
.yb1{bottom:5.090405pt;}
.yb3{bottom:5.090406pt;}
.yb8{bottom:5.090407pt;}
.ybc{bottom:5.154190pt;}
.yad{bottom:5.195376pt;}
.yaf{bottom:5.221951pt;}
.ya6{bottom:5.249854pt;}
.yaa{bottom:5.313634pt;}
.yba{bottom:5.313639pt;}
.ya8{bottom:5.441193pt;}
.ybe{bottom:5.441198pt;}
.y4f{bottom:6.960000pt;}
.y51{bottom:7.040000pt;}
.yec{bottom:7.280000pt;}
.yc1{bottom:7.294784pt;}
.yc0{bottom:7.294789pt;}
.yc4{bottom:7.322688pt;}
.yc3{bottom:7.322692pt;}
.ya3{bottom:7.334646pt;}
.yed{bottom:8.560000pt;}
.y42{bottom:8.640000pt;}
.y40{bottom:10.800000pt;}
.ye7{bottom:31.280000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y9f{bottom:103.306667pt;}
.y118{bottom:106.586667pt;}
.y43{bottom:119.306667pt;}
.y117{bottom:122.266667pt;}
.yef{bottom:124.666667pt;}
.y9e{bottom:127.626667pt;}
.y69{bottom:129.706667pt;}
.y41{bottom:131.946667pt;}
.yee{bottom:135.466667pt;}
.y147{bottom:135.626667pt;}
.y26{bottom:142.346667pt;}
.y116{bottom:143.226667pt;}
.y9d{bottom:151.946667pt;}
.y146{bottom:156.586667pt;}
.y25{bottom:157.946667pt;}
.y115{bottom:158.826667pt;}
.yeb{bottom:159.786667pt;}
.y3e{bottom:161.226667pt;}
.y68{bottom:165.386667pt;}
.y145{bottom:172.186667pt;}
.y24{bottom:173.626667pt;}
.y9c{bottom:176.266667pt;}
.y114{bottom:179.786667pt;}
.yea{bottom:185.626667pt;}
.y23{bottom:189.226667pt;}
.y144{bottom:193.146667pt;}
.y113{bottom:195.466667pt;}
.y67{bottom:196.986667pt;}
.y9b{bottom:200.506667pt;}
.y22{bottom:204.826667pt;}
.y143{bottom:208.826667pt;}
.ye9{bottom:209.946667pt;}
.y66{bottom:212.586667pt;}
.y112{bottom:216.426667pt;}
.y21{bottom:220.506667pt;}
.y142{bottom:224.426667pt;}
.y9a{bottom:224.826667pt;}
.y111{bottom:232.026667pt;}
.ye6{bottom:234.186667pt;}
.y20{bottom:236.106667pt;}
.y65{bottom:244.266667pt;}
.y141{bottom:245.386667pt;}
.y99{bottom:249.146667pt;}
.y110{bottom:252.986667pt;}
.ye8{bottom:258.506667pt;}
.y64{bottom:259.866667pt;}
.y140{bottom:260.986667pt;}
.y1f{bottom:267.786667pt;}
.y8f{bottom:267.946667pt;}
.y10f{bottom:268.666667pt;}
.y13f{bottom:282.026667pt;}
.y1e{bottom:283.386667pt;}
.y8e{bottom:283.546667pt;}
.y10e{bottom:289.626667pt;}
.y63{bottom:291.466667pt;}
.y98{bottom:292.426667pt;}
.y13e{bottom:297.626667pt;}
.y1d{bottom:298.986667pt;}
.y8d{bottom:299.226667pt;}
.ye5{bottom:301.786667pt;}
.y10d{bottom:305.226667pt;}
.y62{bottom:307.146667pt;}
.y1c{bottom:314.666667pt;}
.y8c{bottom:314.826667pt;}
.y13d{bottom:318.586667pt;}
.y10c{bottom:320.826667pt;}
.y61{bottom:322.746667pt;}
.y97{bottom:324.026667pt;}
.y1b{bottom:330.266667pt;}
.y8b{bottom:330.426667pt;}
.ye4{bottom:333.466667pt;}
.y13c{bottom:334.186667pt;}
.y10b{bottom:341.786667pt;}
.y60{bottom:346.426667pt;}
.y96{bottom:347.626667pt;}
.y8a{bottom:354.106667pt;}
.y13b{bottom:355.146667pt;}
.ye3{bottom:357.066667pt;}
.y1a{bottom:361.866667pt;}
.y10a{bottom:362.746667pt;}
.y13a{bottom:376.106667pt;}
.y95{bottom:376.666667pt;}
.y19{bottom:377.546667pt;}
.y5f{bottom:378.026667pt;}
.y109{bottom:378.426667pt;}
.y3d{bottom:378.986667pt;}
.y89{bottom:386.026667pt;}
.ye2{bottom:388.666667pt;}
.y18{bottom:393.146667pt;}
.y5e{bottom:393.626667pt;}
.y108{bottom:394.026667pt;}
.y3c{bottom:394.586667pt;}
.y139{bottom:397.146667pt;}
.ye1{bottom:404.346667pt;}
.y94{bottom:408.266667pt;}
.y17{bottom:408.826667pt;}
.y5d{bottom:409.306667pt;}
.y138{bottom:412.746667pt;}
.y107{bottom:417.973333pt;}
.y3b{bottom:418.293333pt;}
.ye0{bottom:419.973333pt;}
.y16{bottom:424.453333pt;}
.y88{bottom:428.933333pt;}
.y5c{bottom:432.933333pt;}
.y137{bottom:433.733333pt;}
.y93{bottom:436.933333pt;}
.y87{bottom:444.613333pt;}
.y15{bottom:448.373333pt;}
.y136{bottom:449.333333pt;}
.y3a{bottom:449.893333pt;}
.ydf{bottom:451.653333pt;}
.y86{bottom:460.213333pt;}
.y106{bottom:460.933333pt;}
.y5b{bottom:464.533333pt;}
.y39{bottom:465.573333pt;}
.yde{bottom:467.253333pt;}
.y135{bottom:470.293333pt;}
.y85{bottom:475.813333pt;}
.ydd{bottom:482.853333pt;}
.y105{bottom:484.853333pt;}
.y134{bottom:485.973333pt;}
.y38{bottom:489.173333pt;}
.y84{bottom:491.493333pt;}
.y14{bottom:491.573333pt;}
.ydc{bottom:498.533333pt;}
.y133{bottom:501.573333pt;}
.y83{bottom:507.093333pt;}
.y5a{bottom:509.173333pt;}
.ydb{bottom:514.133333pt;}
.y104{bottom:517.733333pt;}
.y37{bottom:520.773333pt;}
.y132{bottom:522.533333pt;}
.y13{bottom:524.453333pt;}
.yda{bottom:529.733333pt;}
.y103{bottom:533.333333pt;}
.y131{bottom:538.213333pt;}
.y82{bottom:538.773333pt;}
.y12{bottom:540.133333pt;}
.yd9{bottom:545.413333pt;}
.y102{bottom:549.013333pt;}
.y36{bottom:549.413333pt;}
.y59{bottom:553.973333pt;}
.y81{bottom:554.373333pt;}
.y11{bottom:555.733333pt;}
.y130{bottom:559.173333pt;}
.y101{bottom:564.613333pt;}
.y10{bottom:571.413333pt;}
.y58{bottom:571.893333pt;}
.y12f{bottom:574.773333pt;}
.yd8{bottom:577.013333pt;}
.y80{bottom:577.973333pt;}
.yf{bottom:587.013333pt;}
.y100{bottom:588.533333pt;}
.yd7{bottom:592.693333pt;}
.y12e{bottom:595.733333pt;}
.ye{bottom:602.613333pt;}
.y57{bottom:603.573333pt;}
.yd6{bottom:608.293333pt;}
.y7f{bottom:609.653333pt;}
.y12d{bottom:611.413333pt;}
.yd{bottom:618.293333pt;}
.y56{bottom:619.173333pt;}
.yff{bottom:621.733333pt;}
.yd5{bottom:623.893333pt;}
.y7e{bottom:625.253333pt;}
.y12c{bottom:632.373333pt;}
.yc{bottom:633.893333pt;}
.yd4{bottom:639.573333pt;}
.y7d{bottom:640.933333pt;}
.y55{bottom:642.773333pt;}
.y12b{bottom:647.973333pt;}
.y7c{bottom:656.533333pt;}
.yb{bottom:657.813333pt;}
.y12a{bottom:663.573333pt;}
.yfe{bottom:664.613333pt;}
.yd3{bottom:671.173333pt;}
.y54{bottom:671.733333pt;}
.y7b{bottom:672.133333pt;}
.yfd{bottom:680.293333pt;}
.y129{bottom:684.613333pt;}
.yd2{bottom:686.853333pt;}
.y7a{bottom:687.813333pt;}
.yfc{bottom:695.893333pt;}
.y128{bottom:700.213333pt;}
.ya{bottom:700.693333pt;}
.y53{bottom:701.093333pt;}
.y79{bottom:703.413333pt;}
.y127{bottom:715.813333pt;}
.yd1{bottom:718.453333pt;}
.y52{bottom:725.333333pt;}
.y78{bottom:727.093333pt;}
.yfb{bottom:727.573333pt;}
.y9{bottom:732.533333pt;}
.y126{bottom:736.773333pt;}
.yfa{bottom:743.173333pt;}
.y92{bottom:747.973333pt;}
.y50{bottom:749.653333pt;}
.yd0{bottom:750.053333pt;}
.y125{bottom:752.453333pt;}
.y35{bottom:758.453333pt;}
.y77{bottom:758.693333pt;}
.yf9{bottom:758.773333pt;}
.y8{bottom:764.533333pt;}
.ycf{bottom:765.733333pt;}
.y124{bottom:773.413333pt;}
.y4e{bottom:773.973333pt;}
.y34{bottom:774.053333pt;}
.y76{bottom:774.293333pt;}
.yf8{bottom:774.453333pt;}
.y91{bottom:779.573333pt;}
.y123{bottom:789.013333pt;}
.y33{bottom:789.733333pt;}
.y75{bottom:789.973333pt;}
.yf7{bottom:790.053333pt;}
.y7{bottom:796.533333pt;}
.yce{bottom:796.693333pt;}
.y122{bottom:804.693333pt;}
.ycd{bottom:807.493333pt;}
.y90{bottom:808.213333pt;}
.ya0{bottom:809.240000pt;}
.yb7{bottom:811.412297pt;}
.yb6{bottom:811.412308pt;}
.yb5{bottom:811.412319pt;}
.yb4{bottom:811.412330pt;}
.yb2{bottom:811.412340pt;}
.yb0{bottom:811.412352pt;}
.y32{bottom:813.333333pt;}
.y74{bottom:813.573333pt;}
.y4d{bottom:817.253333pt;}
.yf6{bottom:821.733333pt;}
.yc2{bottom:825.443919pt;}
.y121{bottom:825.653333pt;}
.y6{bottom:828.613333pt;}
.ya5{bottom:828.632959pt;}
.ycc{bottom:831.813333pt;}
.yf5{bottom:837.333333pt;}
.y120{bottom:841.253333pt;}
.y73{bottom:845.173333pt;}
.y31{bottom:845.253333pt;}
.y5{bottom:845.813333pt;}
.y4c{bottom:848.853333pt;}
.yf4{bottom:852.933333pt;}
.ycb{bottom:856.133333pt;}
.y11f{bottom:856.853333pt;}
.ya7{bottom:858.609336pt;}
.y72{bottom:860.853333pt;}
.y4b{bottom:864.533333pt;}
.yf3{bottom:868.613333pt;}
.ybd{bottom:870.567928pt;}
.y71{bottom:876.453333pt;}
.y11e{bottom:877.893333pt;}
.y4{bottom:879.893333pt;}
.y4a{bottom:880.133333pt;}
.yca{bottom:880.453333pt;}
.yf2{bottom:884.213333pt;}
.y30{bottom:888.133333pt;}
.ya9{bottom:888.904612pt;}
.y70{bottom:892.133333pt;}
.y11d{bottom:893.493333pt;}
.ybb{bottom:894.804148pt;}
.y49{bottom:895.813333pt;}
.yf1{bottom:899.840000pt;}
.y3{bottom:901.840000pt;}
.y2f{bottom:903.840000pt;}
.yc9{bottom:904.720000pt;}
.y11c{bottom:909.120000pt;}
.y6f{bottom:915.760000pt;}
.yb9{bottom:918.721471pt;}
.yab{bottom:919.040438pt;}
.y2e{bottom:919.440000pt;}
.yf0{bottom:923.760000pt;}
.y48{bottom:927.440000pt;}
.yc8{bottom:929.040000pt;}
.y11b{bottom:930.080000pt;}
.y47{bottom:943.040000pt;}
.y11a{bottom:945.760000pt;}
.y6e{bottom:947.360000pt;}
.yac{bottom:949.329069pt;}
.y2d{bottom:951.040000pt;}
.yc7{bottom:953.360000pt;}
.y46{bottom:958.720000pt;}
.y119{bottom:961.360000pt;}
.y6d{bottom:963.760000pt;}
.y2c{bottom:966.720000pt;}
.y45{bottom:974.320000pt;}
.yc6{bottom:977.680000pt;}
.yae{bottom:979.464896pt;}
.y6c{bottom:980.080000pt;}
.y2b{bottom:982.320000pt;}
.y44{bottom:990.000000pt;}
.y6b{bottom:996.480000pt;}
.ybf{bottom:997.163709pt;}
.y2a{bottom:998.000000pt;}
.yc5{bottom:1001.920000pt;}
.y6a{bottom:1012.800000pt;}
.y29{bottom:1013.600000pt;}
.ya2{bottom:1023.153875pt;}
.y27{bottom:1061.600000pt;}
.h15{height:1.076280pt;}
.h17{height:8.390788pt;}
.h1c{height:17.858269pt;}
.h1b{height:17.858270pt;}
.h1d{height:17.858271pt;}
.h1f{height:17.858275pt;}
.h1a{height:18.017719pt;}
.h1e{height:18.017724pt;}
.h18{height:18.177166pt;}
.h19{height:18.177168pt;}
.h20{height:18.177172pt;}
.h22{height:19.931103pt;}
.h21{height:19.931108pt;}
.h24{height:20.090552pt;}
.h23{height:20.090557pt;}
.he{height:23.600000pt;}
.h25{height:23.626667pt;}
.h10{height:23.680000pt;}
.h28{height:25.200000pt;}
.h2{height:26.686562pt;}
.hd{height:29.280000pt;}
.h3{height:34.804688pt;}
.h26{height:37.032187pt;}
.hf{height:45.246562pt;}
.h14{height:46.061400pt;}
.h16{height:46.172391pt;}
.h6{height:46.499062pt;}
.h27{height:47.920000pt;}
.h7{height:49.581562pt;}
.h5{height:50.954062pt;}
.h11{height:53.309531pt;}
.h8{height:54.187500pt;}
.h12{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.hb{height:62.812500pt;}
.h4{height:64.875937pt;}
.hc{height:198.800000pt;}
.h13{height:214.990155pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:-7.309758pt;}
.wc{width:1.840359pt;}
.w16{width:4.640257pt;}
.we{width:9.120504pt;}
.wf{width:17.920990pt;}
.w10{width:18.080998pt;}
.w11{width:27.201502pt;}
.w5{width:28.426667pt;}
.w17{width:41.282279pt;}
.w15{width:43.842420pt;}
.w14{width:47.413264pt;}
.w13{width:47.413265pt;}
.w12{width:47.413266pt;}
.w1b{width:48.986667pt;}
.w1a{width:49.040000pt;}
.w1c{width:56.800000pt;}
.w1d{width:56.880000pt;}
.wa{width:90.800000pt;}
.w8{width:103.760000pt;}
.w9{width:123.306667pt;}
.w18{width:138.720000pt;}
.w7{width:188.426667pt;}
.w19{width:213.866667pt;}
.w3{width:246.426667pt;}
.w4{width:261.786667pt;}
.w6{width:484.106667pt;}
.wb{width:532.000000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x1a{left:-2.624154pt;}
.x0{left:0.000000pt;}
.xb{left:7.280000pt;}
.x1{left:60.480000pt;}
.xa{left:65.466667pt;}
.x10{left:84.479988pt;}
.x30{left:99.039988pt;}
.x18{left:130.966667pt;}
.x1d{left:138.887368pt;}
.xc{left:140.400000pt;}
.x6{left:142.880000pt;}
.x1c{left:145.767482pt;}
.x25{left:150.567740pt;}
.x1e{left:161.288339pt;}
.xd{left:169.466667pt;}
.x26{left:183.369549pt;}
.x5{left:204.826655pt;}
.x2a{left:220.426667pt;}
.x2{left:222.666655pt;}
.x14{left:223.866655pt;}
.x1f{left:236.172471pt;}
.x7{left:239.226667pt;}
.x12{left:240.586655pt;}
.x9{left:250.906667pt;}
.x29{left:260.666655pt;}
.x20{left:314.736806pt;}
.x2f{left:325.386655pt;}
.xe{left:328.906655pt;}
.x15{left:331.946667pt;}
.xf{left:340.346655pt;}
.x2b{left:359.786667pt;}
.x8{left:389.306667pt;}
.x21{left:392.981124pt;}
.x2c{left:409.546667pt;}
.x16{left:436.346667pt;}
.x2d{left:459.253333pt;}
.x22{left:471.225441pt;}
.x2e{left:516.773333pt;}
.x4{left:529.013322pt;}
.x19{left:542.776617pt;}
.x23{left:545.949564pt;}
.x17{left:560.293333pt;}
.x27{left:579.071391pt;}
.x28{left:610.113104pt;}
.x24{left:615.553400pt;}
.x13{left:657.013322pt;}
.x11{left:665.013322pt;}
.x1b{left:670.276425pt;}
.x3{left:718.773322pt;}
}




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