
    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_4ec1d3ef19b9986c241a1aa4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6065e199ede671917a7956c1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_1b08f2866fdf08f6bda8951b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a9066091f8fb461aba6b8e85.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_40c91c4df77db43beecd51a5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_628e91cdd3402b5faf851922.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.060547;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_0eedc5104d78adb7b6b3103d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_73121a6181300e2867dcf496.woff2')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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:42.480000px;}
.ls15{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.648000px;}
.ls4{letter-spacing:-0.567600px;}
.ls10{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.204000px;}
.ls3{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.936000px;}
.lsf{letter-spacing:29.664000px;}
.lsb{letter-spacing:33.960000px;}
.ls1{letter-spacing:35.976000px;}
.lse{letter-spacing:137.664000px;}
.ls13{letter-spacing:144.540000px;}
.ls14{letter-spacing:145.440000px;}
.lsc{letter-spacing:157.824000px;}
.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:-21.060000px;}
.wsa{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.ws8{word-spacing:-13.351200px;}
.ws1{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:1260.156000px;}
._3{margin-left:-1.440000px;}
._0{width:1.542720px;}
._5{width:2.675520px;}
._b{width:4.514880px;}
._a{width:5.868960px;}
._8{width:7.176000px;}
._9{width:8.183040px;}
._13{width:9.336000px;}
._14{width:10.385280px;}
._11{width:12.024000px;}
._12{width:13.608000px;}
._4{width:15.242880px;}
._21{width:16.917120px;}
._7{width:18.414720px;}
._6{width:19.607040px;}
._40{width:20.652960px;}
._25{width:21.672000px;}
._2d{width:22.824000px;}
._20{width:23.832000px;}
._27{width:24.960000px;}
._24{width:26.064000px;}
._28{width:27.504000px;}
._2a{width:28.716000px;}
._23{width:29.928000px;}
._22{width:31.104000px;}
._e{width:32.688000px;}
._f{width:34.032000px;}
._c{width:35.208000px;}
._d{width:36.473280px;}
._18{width:37.512000px;}
._19{width:38.952000px;}
._15{width:41.040000px;}
._16{width:42.564000px;}
._2b{width:43.920000px;}
._26{width:45.204000px;}
._10{width:46.584000px;}
._3c{width:47.952000px;}
._1a{width:49.248000px;}
._1b{width:50.472000px;}
._30{width:51.552000px;}
._2f{width:52.745280px;}
._2e{width:54.864000px;}
._1d{width:56.849280px;}
._1e{width:57.960000px;}
._34{width:59.184000px;}
._4c{width:60.264000px;}
._3a{width:61.344000px;}
._31{width:62.352000px;}
._32{width:63.401280px;}
._39{width:64.416000px;}
._29{width:65.808000px;}
._17{width:67.680000px;}
._43{width:68.688000px;}
._1f{width:69.768000px;}
._47{width:70.920000px;}
._59{width:72.432000px;}
._33{width:74.592000px;}
._44{width:76.176000px;}
._41{width:77.544000px;}
._42{width:78.912000px;}
._3d{width:79.992000px;}
._2c{width:81.504000px;}
._4d{width:84.528000px;}
._46{width:85.752000px;}
._5f{width:87.696000px;}
._5c{width:89.208000px;}
._52{width:93.312000px;}
._1c{width:95.112000px;}
._5b{width:97.608000px;}
._4a{width:98.856000px;}
._4b{width:100.152000px;}
._3b{width:102.528000px;}
._48{width:104.256000px;}
._4f{width:122.616000px;}
._35{width:126.072000px;}
._36{width:127.296000px;}
._37{width:128.316000px;}
._5a{width:135.840000px;}
._56{width:136.944000px;}
._57{width:137.952000px;}
._5e{width:144.576000px;}
._50{width:159.912000px;}
._49{width:161.616000px;}
._5d{width:176.616000px;}
._54{width:177.624000px;}
._45{width:181.728000px;}
._38{width:207.432000px;}
._60{width:230.472000px;}
._61{width:231.480000px;}
._55{width:274.536000px;}
._58{width:403.649280px;}
._63{width:424.584000px;}
._4e{width:430.968000px;}
._51{width:579.672000px;}
._62{width:593.400000px;}
._53{width:627.984000px;}
._1{width:922.860000px;}
._2{width:974.640000px;}
._3e{width:1422.588000px;}
._3f{width:1430.508000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(35,25,22);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.ydf{bottom:3.960000px;}
.ye2{bottom:4.005000px;}
.ydd{bottom:28.440000px;}
.y3{bottom:58.356000px;}
.y2{bottom:78.516000px;}
.y122{bottom:113.436000px;}
.ye9{bottom:114.156000px;}
.yb4{bottom:114.336000px;}
.y8f{bottom:118.656000px;}
.y163{bottom:121.356000px;}
.yca{bottom:122.436000px;}
.y7b{bottom:122.616000px;}
.y37{bottom:128.556000px;}
.y144{bottom:130.356000px;}
.y1a7{bottom:131.616000px;}
.y17c{bottom:134.136000px;}
.y75{bottom:134.316000px;}
.y5e{bottom:134.676000px;}
.y121{bottom:137.196000px;}
.ye8{bottom:137.916000px;}
.yb3{bottom:138.096000px;}
.y162{bottom:142.056000px;}
.y8e{bottom:142.416000px;}
.y29{bottom:145.116000px;}
.yc9{bottom:146.196000px;}
.y7a{bottom:146.376000px;}
.y1a6{bottom:152.310000px;}
.y36{bottom:152.490000px;}
.y143{bottom:154.110000px;}
.y17b{bottom:154.830000px;}
.y74{bottom:158.250000px;}
.y5d{bottom:158.430000px;}
.y120{bottom:160.950000px;}
.ye7{bottom:161.850000px;}
.yb2{bottom:162.030000px;}
.y161{bottom:162.750000px;}
.y8d{bottom:166.170000px;}
.yf7{bottom:168.150000px;}
.y28{bottom:169.050000px;}
.yc8{bottom:169.950000px;}
.y79{bottom:170.130000px;}
.y1a5{bottom:173.010000px;}
.yf4{bottom:174.450000px;}
.y17a{bottom:175.530000px;}
.y35{bottom:176.250000px;}
.y142{bottom:177.870000px;}
.y5c{bottom:182.190000px;}
.y160{bottom:183.450000px;}
.y11f{bottom:184.710000px;}
.ye6{bottom:185.610000px;}
.yb1{bottom:185.790000px;}
.yfb{bottom:189.750000px;}
.y8c{bottom:190.110000px;}
.y27{bottom:192.810000px;}
.y1a4{bottom:193.710000px;}
.yc7{bottom:193.890000px;}
.y73{bottom:194.070000px;}
.y179{bottom:196.230000px;}
.y34{bottom:200.010000px;}
.y141{bottom:201.630000px;}
.y15f{bottom:204.150000px;}
.y5b{bottom:205.950000px;}
.y11e{bottom:208.650000px;}
.ye5{bottom:209.370000px;}
.yb0{bottom:209.550000px;}
.y8b{bottom:213.870000px;}
.y1a3{bottom:214.410000px;}
.y26{bottom:216.570000px;}
.y178{bottom:216.930000px;}
.yc6{bottom:217.650000px;}
.y72{bottom:217.830000px;}
.yfa{bottom:221.250000px;}
.y33{bottom:223.770000px;}
.yf3{bottom:223.950000px;}
.y15e{bottom:224.850000px;}
.y140{bottom:225.570000px;}
.y5a{bottom:229.890000px;}
.y11d{bottom:232.410000px;}
.ye4{bottom:233.130000px;}
.yaf{bottom:233.310000px;}
.y1a2{bottom:235.110000px;}
.y8a{bottom:237.630000px;}
.y25{bottom:240.330000px;}
.yc5{bottom:241.410000px;}
.y71{bottom:241.590000px;}
.y15d{bottom:245.550000px;}
.y32{bottom:247.710000px;}
.y13f{bottom:249.330000px;}
.y59{bottom:253.650000px;}
.y1a1{bottom:255.810000px;}
.y11c{bottom:256.170000px;}
.yae{bottom:257.250000px;}
.y177{bottom:258.330000px;}
.y89{bottom:261.390000px;}
.y24{bottom:264.270000px;}
.yc4{bottom:265.170000px;}
.y70{bottom:265.350000px;}
.y15c{bottom:266.250000px;}
.ye3{bottom:267.510000px;}
.y31{bottom:271.470000px;}
.y13e{bottom:273.090000px;}
.y1a0{bottom:276.510000px;}
.y58{bottom:277.410000px;}
.y176{bottom:279.030000px;}
.y11b{bottom:279.930000px;}
.yad{bottom:281.010000px;}
.ye1{bottom:284.970000px;}
.y88{bottom:285.330000px;}
.y15b{bottom:286.950000px;}
.y23{bottom:288.075000px;}
.yc3{bottom:289.155000px;}
.y6f{bottom:289.335000px;}
.y30{bottom:295.275000px;}
.y13d{bottom:296.895000px;}
.y19f{bottom:297.255000px;}
.y175{bottom:299.775000px;}
.y57{bottom:301.215000px;}
.y11a{bottom:303.915000px;}
.yac{bottom:304.815000px;}
.ye0{bottom:305.715000px;}
.y15a{bottom:307.695000px;}
.y87{bottom:309.135000px;}
.y22{bottom:311.835000px;}
.yc2{bottom:312.915000px;}
.y6e{bottom:313.095000px;}
.y19e{bottom:317.955000px;}
.y2f{bottom:319.035000px;}
.y174{bottom:320.475000px;}
.y13c{bottom:320.835000px;}
.y56{bottom:325.155000px;}
.yde{bottom:326.415000px;}
.y119{bottom:327.675000px;}
.y159{bottom:328.395000px;}
.yab{bottom:328.575000px;}
.y86{bottom:332.895000px;}
.y21{bottom:335.595000px;}
.yc1{bottom:336.675000px;}
.y6d{bottom:336.855000px;}
.y19d{bottom:338.655000px;}
.y173{bottom:341.175000px;}
.y2e{bottom:342.975000px;}
.y13b{bottom:344.595000px;}
.ydc{bottom:347.835000px;}
.y55{bottom:348.915000px;}
.y158{bottom:349.095000px;}
.y118{bottom:351.435000px;}
.y85{bottom:356.655000px;}
.y19c{bottom:359.355000px;}
.y20{bottom:359.535000px;}
.yc0{bottom:360.435000px;}
.y6c{bottom:360.615000px;}
.y172{bottom:361.875000px;}
.yaa{bottom:364.395000px;}
.yec{bottom:365.835000px;}
.y2d{bottom:366.735000px;}
.y13a{bottom:368.355000px;}
.y157{bottom:369.795000px;}
.y54{bottom:372.675000px;}
.y117{bottom:375.195000px;}
.y19b{bottom:380.055000px;}
.y84{bottom:380.595000px;}
.y171{bottom:382.575000px;}
.y1f{bottom:383.295000px;}
.y6b{bottom:384.555000px;}
.ya9{bottom:388.155000px;}
.y2c{bottom:390.495000px;}
.y139{bottom:392.115000px;}
.ybf{bottom:396.255000px;}
.y53{bottom:396.435000px;}
.y116{bottom:399.135000px;}
.ydb{bottom:399.495000px;}
.y19a{bottom:400.755000px;}
.y170{bottom:403.275000px;}
.y83{bottom:404.355000px;}
.y1e{bottom:407.055000px;}
.y6a{bottom:408.315000px;}
.ya8{bottom:412.095000px;}
.y2b{bottom:414.255000px;}
.y138{bottom:416.055000px;}
.yeb{bottom:418.935000px;}
.ybe{bottom:420.015000px;}
.y52{bottom:420.195000px;}
.y199{bottom:421.455000px;}
.yda{bottom:421.815000px;}
.y115{bottom:422.895000px;}
.y16f{bottom:423.975000px;}
.y156{bottom:426.135000px;}
.y1d{bottom:430.815000px;}
.y69{bottom:432.075000px;}
.ya7{bottom:435.855000px;}
.y2a{bottom:438.195000px;}
.y137{bottom:439.815000px;}
.y82{bottom:441.255000px;}
.y198{bottom:442.155000px;}
.ybd{bottom:443.955000px;}
.y51{bottom:444.135000px;}
.y16e{bottom:444.675000px;}
.y114{bottom:446.655000px;}
.y155{bottom:446.835000px;}
.y68{bottom:455.835000px;}
.ya6{bottom:459.615000px;}
.y1c{bottom:461.955000px;}
.y197{bottom:462.855000px;}
.y136{bottom:463.575000px;}
.y16d{bottom:465.375000px;}
.y154{bottom:467.535000px;}
.ybc{bottom:467.715000px;}
.y50{bottom:467.895000px;}
.y113{bottom:470.415000px;}
.y81{bottom:479.955000px;}
.ya5{bottom:483.375000px;}
.y196{bottom:483.555000px;}
.y16c{bottom:486.075000px;}
.y135{bottom:487.335000px;}
.y153{bottom:488.235000px;}
.ybb{bottom:491.475000px;}
.y4f{bottom:491.655000px;}
.y112{bottom:494.355000px;}
.y1b{bottom:497.775000px;}
.y80{bottom:503.715000px;}
.y195{bottom:504.255000px;}
.y16b{bottom:506.775000px;}
.ya4{bottom:507.315000px;}
.y152{bottom:508.935000px;}
.y134{bottom:511.275000px;}
.yba{bottom:515.235000px;}
.y4e{bottom:515.415000px;}
.y111{bottom:518.115000px;}
.y1a{bottom:521.535000px;}
.y194{bottom:524.955000px;}
.y7f{bottom:527.475000px;}
.y151{bottom:529.635000px;}
.y133{bottom:535.035000px;}
.yb9{bottom:539.175000px;}
.y4d{bottom:539.355000px;}
.y110{bottom:541.875000px;}
.ya3{bottom:543.135000px;}
.y19{bottom:544.575000px;}
.y193{bottom:545.655000px;}
.y16a{bottom:548.025000px;}
.y150{bottom:550.365000px;}
.y7e{bottom:551.265000px;}
.y132{bottom:558.825000px;}
.yb8{bottom:562.965000px;}
.y4c{bottom:563.145000px;}
.y10f{bottom:565.665000px;}
.y18{bottom:566.385000px;}
.ya2{bottom:566.925000px;}
.y169{bottom:568.725000px;}
.y14f{bottom:571.065000px;}
.y7d{bottom:575.205000px;}
.yd9{bottom:578.085000px;}
.y131{bottom:582.585000px;}
.yb7{bottom:586.725000px;}
.y4b{bottom:586.905000px;}
.y192{bottom:587.085000px;}
.y17{bottom:588.345000px;}
.y10e{bottom:589.425000px;}
.ya1{bottom:590.685000px;}
.y14e{bottom:591.765000px;}
.y7c{bottom:598.965000px;}
.yd8{bottom:601.845000px;}
.y130{bottom:606.345000px;}
.y191{bottom:607.785000px;}
.y16{bottom:610.125000px;}
.y67{bottom:610.665000px;}
.y14d{bottom:612.465000px;}
.y10d{bottom:613.365000px;}
.ya0{bottom:614.445000px;}
.yb6{bottom:622.545000px;}
.y4a{bottom:622.725000px;}
.yd7{bottom:625.785000px;}
.y190{bottom:628.485000px;}
.y12f{bottom:630.285000px;}
.y168{bottom:630.825000px;}
.y15{bottom:631.905000px;}
.yf6{bottom:632.625000px;}
.yf2{bottom:632.805000px;}
.y14c{bottom:633.165000px;}
.y66{bottom:634.605000px;}
.y10c{bottom:637.125000px;}
.y9f{bottom:638.385000px;}
.yf9{bottom:638.565000px;}
.y49{bottom:646.485000px;}
.y18f{bottom:649.185000px;}
.yd6{bottom:649.545000px;}
.y167{bottom:651.525000px;}
.y14{bottom:653.685000px;}
.y14b{bottom:653.865000px;}
.y12e{bottom:654.045000px;}
.y65{bottom:658.365000px;}
.y10b{bottom:660.885000px;}
.yf5{bottom:661.425000px;}
.y9e{bottom:662.145000px;}
.yf1{bottom:667.005000px;}
.y18e{bottom:669.885000px;}
.y48{bottom:670.425000px;}
.y166{bottom:672.225000px;}
.yd5{bottom:673.305000px;}
.y14a{bottom:674.565000px;}
.y13{bottom:675.465000px;}
.y12d{bottom:677.805000px;}
.y78{bottom:682.125000px;}
.y10a{bottom:684.645000px;}
.y9d{bottom:685.905000px;}
.y18d{bottom:690.585000px;}
.yf8{bottom:691.845000px;}
.y165{bottom:692.925000px;}
.y47{bottom:694.185000px;}
.yd4{bottom:697.065000px;}
.y12{bottom:697.425000px;}
.yf0{bottom:701.385000px;}
.y12c{bottom:701.565000px;}
.y77{bottom:705.885000px;}
.y109{bottom:708.585000px;}
.y149{bottom:710.745000px;}
.y18c{bottom:711.285000px;}
.y164{bottom:713.625000px;}
.y46{bottom:717.945000px;}
.y11{bottom:719.205000px;}
.yd3{bottom:721.005000px;}
.y9c{bottom:721.725000px;}
.yef{bottom:722.085000px;}
.y12b{bottom:725.505000px;}
.y76{bottom:729.825000px;}
.y18b{bottom:731.985000px;}
.y108{bottom:736.845000px;}
.y10{bottom:740.985000px;}
.y45{bottom:741.705000px;}
.y9b{bottom:745.485000px;}
.y12a{bottom:749.265000px;}
.y18a{bottom:752.685000px;}
.yee{bottom:753.225000px;}
.ycf{bottom:753.585000px;}
.yd2{bottom:756.825000px;}
.y107{bottom:760.605000px;}
.yf{bottom:762.765000px;}
.y44{bottom:765.465000px;}
.y9a{bottom:769.245000px;}
.y129{bottom:773.025000px;}
.y189{bottom:773.385000px;}
.yce{bottom:777.345000px;}
.yea{bottom:777.525000px;}
.yd1{bottom:780.585000px;}
.yed{bottom:784.185000px;}
.y106{bottom:784.365000px;}
.ye{bottom:784.725000px;}
.y43{bottom:789.405000px;}
.y99{bottom:793.185000px;}
.y188{bottom:794.085000px;}
.y128{bottom:796.785000px;}
.ycd{bottom:801.105000px;}
.yb5{bottom:801.285000px;}
.yd0{bottom:805.425000px;}
.yd{bottom:808.350000px;}
.y42{bottom:813.210000px;}
.y187{bottom:814.830000px;}
.y98{bottom:816.990000px;}
.y127{bottom:820.770000px;}
.ycc{bottom:825.090000px;}
.y64{bottom:825.270000px;}
.yc{bottom:831.930000px;}
.y105{bottom:832.110000px;}
.y186{bottom:835.530000px;}
.y41{bottom:836.970000px;}
.y97{bottom:840.750000px;}
.y126{bottom:844.530000px;}
.ycb{bottom:848.850000px;}
.y63{bottom:849.030000px;}
.yb{bottom:852.630000px;}
.y104{bottom:855.870000px;}
.y185{bottom:856.230000px;}
.y40{bottom:860.730000px;}
.y96{bottom:864.510000px;}
.y125{bottom:868.290000px;}
.y62{bottom:872.790000px;}
.y184{bottom:876.930000px;}
.y103{bottom:879.630000px;}
.y3f{bottom:884.670000px;}
.y95{bottom:888.450000px;}
.ya{bottom:889.170000px;}
.y124{bottom:892.050000px;}
.y61{bottom:896.550000px;}
.y183{bottom:897.630000px;}
.y102{bottom:903.570000px;}
.y3e{bottom:908.430000px;}
.y9{bottom:912.030000px;}
.y94{bottom:912.210000px;}
.y123{bottom:915.990000px;}
.y182{bottom:918.330000px;}
.y60{bottom:920.490000px;}
.y101{bottom:927.330000px;}
.y3d{bottom:932.190000px;}
.y93{bottom:935.790000px;}
.y181{bottom:939.030000px;}
.y148{bottom:939.750000px;}
.y5f{bottom:944.250000px;}
.y8{bottom:945.330000px;}
.y100{bottom:951.090000px;}
.y180{bottom:959.730000px;}
.y147{bottom:963.510000px;}
.y3c{bottom:968.010000px;}
.y7{bottom:969.450000px;}
.yff{bottom:974.850000px;}
.y92{bottom:977.730000px;}
.y17f{bottom:980.430000px;}
.y146{bottom:987.270000px;}
.y3b{bottom:991.770000px;}
.yfe{bottom:998.790000px;}
.y17e{bottom:1001.130000px;}
.y6{bottom:1006.170000px;}
.y145{bottom:1011.210000px;}
.y3a{bottom:1015.710000px;}
.y91{bottom:1019.490000px;}
.y17d{bottom:1021.830000px;}
.yfd{bottom:1022.550000px;}
.y5{bottom:1038.570000px;}
.y39{bottom:1039.470000px;}
.y90{bottom:1042.530000px;}
.y4{bottom:1058.910000px;}
.yfc{bottom:1060.350000px;}
.y38{bottom:1063.230000px;}
.y1{bottom:1119.960000px;}
.h11{height:20.700000px;}
.h12{height:20.736000px;}
.h8{height:40.964766px;}
.h10{height:45.180000px;}
.hc{height:50.364141px;}
.h1{height:59.439023px;}
.h13{height:64.546875px;}
.ha{height:64.978594px;}
.h5{height:65.010937px;}
.h2{height:65.884219px;}
.h4{height:66.757500px;}
.hb{height:70.628906px;}
.h9{height:70.664062px;}
.h7{height:72.562500px;}
.hf{height:74.004654px;}
.he{height:74.953125px;}
.h6{height:84.898125px;}
.h3{height:90.703125px;}
.hd{height:113.475234px;}
.h0{height:1188.000000px;}
.w3{width:170.130000px;}
.w4{width:223.230000px;}
.w2{width:252.750000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.xf{left:99.936000px;}
.x3{left:108.035986px;}
.x7{left:122.075986px;}
.x1{left:124.955986px;}
.xa{left:133.775986px;}
.xc{left:135.035986px;}
.x19{left:148.535986px;}
.x13{left:155.369986px;}
.x17{left:189.029986px;}
.x4{left:191.909986px;}
.x9{left:217.829986px;}
.x8{left:256.169986px;}
.x5{left:261.389986px;}
.x11{left:352.695000px;}
.x1b{left:378.074986px;}
.x2{left:467.534986px;}
.x6{left:475.994986px;}
.xb{left:503.024986px;}
.x12{left:522.825000px;}
.xd{left:530.024986px;}
.x1a{left:543.524986px;}
.xe{left:557.024986px;}
.x18{left:794.309986px;}
.x14{left:796.649986px;}
.x16{left:801.689986px;}
.x15{left:808.889986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:37.760000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:-0.504533pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.181333pt;}
.ls3{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.832000pt;}
.lsf{letter-spacing:26.368000pt;}
.lsb{letter-spacing:30.186667pt;}
.ls1{letter-spacing:31.978667pt;}
.lse{letter-spacing:122.368000pt;}
.ls13{letter-spacing:128.480000pt;}
.ls14{letter-spacing:129.280000pt;}
.lsc{letter-spacing:140.288000pt;}
.wsb{word-spacing:-18.720000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws8{word-spacing:-11.867733pt;}
.ws1{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:1120.138667pt;}
._3{margin-left:-1.280000pt;}
._0{width:1.371307pt;}
._5{width:2.378240pt;}
._b{width:4.013227pt;}
._a{width:5.216853pt;}
._8{width:6.378667pt;}
._9{width:7.273813pt;}
._13{width:8.298667pt;}
._14{width:9.231360pt;}
._11{width:10.688000pt;}
._12{width:12.096000pt;}
._4{width:13.549227pt;}
._21{width:15.037440pt;}
._7{width:16.368640pt;}
._6{width:17.428480pt;}
._40{width:18.358187pt;}
._25{width:19.264000pt;}
._2d{width:20.288000pt;}
._20{width:21.184000pt;}
._27{width:22.186667pt;}
._24{width:23.168000pt;}
._28{width:24.448000pt;}
._2a{width:25.525333pt;}
._23{width:26.602667pt;}
._22{width:27.648000pt;}
._e{width:29.056000pt;}
._f{width:30.250667pt;}
._c{width:31.296000pt;}
._d{width:32.420693pt;}
._18{width:33.344000pt;}
._19{width:34.624000pt;}
._15{width:36.480000pt;}
._16{width:37.834667pt;}
._2b{width:39.040000pt;}
._26{width:40.181333pt;}
._10{width:41.408000pt;}
._3c{width:42.624000pt;}
._1a{width:43.776000pt;}
._1b{width:44.864000pt;}
._30{width:45.824000pt;}
._2f{width:46.884693pt;}
._2e{width:48.768000pt;}
._1d{width:50.532693pt;}
._1e{width:51.520000pt;}
._34{width:52.608000pt;}
._4c{width:53.568000pt;}
._3a{width:54.528000pt;}
._31{width:55.424000pt;}
._32{width:56.356693pt;}
._39{width:57.258667pt;}
._29{width:58.496000pt;}
._17{width:60.160000pt;}
._43{width:61.056000pt;}
._1f{width:62.016000pt;}
._47{width:63.040000pt;}
._59{width:64.384000pt;}
._33{width:66.304000pt;}
._44{width:67.712000pt;}
._41{width:68.928000pt;}
._42{width:70.144000pt;}
._3d{width:71.104000pt;}
._2c{width:72.448000pt;}
._4d{width:75.136000pt;}
._46{width:76.224000pt;}
._5f{width:77.952000pt;}
._5c{width:79.296000pt;}
._52{width:82.944000pt;}
._1c{width:84.544000pt;}
._5b{width:86.762667pt;}
._4a{width:87.872000pt;}
._4b{width:89.024000pt;}
._3b{width:91.136000pt;}
._48{width:92.672000pt;}
._4f{width:108.992000pt;}
._35{width:112.064000pt;}
._36{width:113.152000pt;}
._37{width:114.058667pt;}
._5a{width:120.746667pt;}
._56{width:121.728000pt;}
._57{width:122.624000pt;}
._5e{width:128.512000pt;}
._50{width:142.144000pt;}
._49{width:143.658667pt;}
._5d{width:156.992000pt;}
._54{width:157.888000pt;}
._45{width:161.536000pt;}
._38{width:184.384000pt;}
._60{width:204.864000pt;}
._61{width:205.760000pt;}
._55{width:244.032000pt;}
._58{width:358.799360pt;}
._63{width:377.408000pt;}
._4e{width:383.082667pt;}
._51{width:515.264000pt;}
._62{width:527.466667pt;}
._53{width:558.208000pt;}
._1{width:820.320000pt;}
._2{width:866.346667pt;}
._3e{width:1264.522667pt;}
._3f{width:1271.562667pt;}
.fs7{font-size:2.560000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:3.520000pt;}
.ye2{bottom:3.560000pt;}
.ydd{bottom:25.280000pt;}
.y3{bottom:51.872000pt;}
.y2{bottom:69.792000pt;}
.y122{bottom:100.832000pt;}
.ye9{bottom:101.472000pt;}
.yb4{bottom:101.632000pt;}
.y8f{bottom:105.472000pt;}
.y163{bottom:107.872000pt;}
.yca{bottom:108.832000pt;}
.y7b{bottom:108.992000pt;}
.y37{bottom:114.272000pt;}
.y144{bottom:115.872000pt;}
.y1a7{bottom:116.992000pt;}
.y17c{bottom:119.232000pt;}
.y75{bottom:119.392000pt;}
.y5e{bottom:119.712000pt;}
.y121{bottom:121.952000pt;}
.ye8{bottom:122.592000pt;}
.yb3{bottom:122.752000pt;}
.y162{bottom:126.272000pt;}
.y8e{bottom:126.592000pt;}
.y29{bottom:128.992000pt;}
.yc9{bottom:129.952000pt;}
.y7a{bottom:130.112000pt;}
.y1a6{bottom:135.386667pt;}
.y36{bottom:135.546667pt;}
.y143{bottom:136.986667pt;}
.y17b{bottom:137.626667pt;}
.y74{bottom:140.666667pt;}
.y5d{bottom:140.826667pt;}
.y120{bottom:143.066667pt;}
.ye7{bottom:143.866667pt;}
.yb2{bottom:144.026667pt;}
.y161{bottom:144.666667pt;}
.y8d{bottom:147.706667pt;}
.yf7{bottom:149.466667pt;}
.y28{bottom:150.266667pt;}
.yc8{bottom:151.066667pt;}
.y79{bottom:151.226667pt;}
.y1a5{bottom:153.786667pt;}
.yf4{bottom:155.066667pt;}
.y17a{bottom:156.026667pt;}
.y35{bottom:156.666667pt;}
.y142{bottom:158.106667pt;}
.y5c{bottom:161.946667pt;}
.y160{bottom:163.066667pt;}
.y11f{bottom:164.186667pt;}
.ye6{bottom:164.986667pt;}
.yb1{bottom:165.146667pt;}
.yfb{bottom:168.666667pt;}
.y8c{bottom:168.986667pt;}
.y27{bottom:171.386667pt;}
.y1a4{bottom:172.186667pt;}
.yc7{bottom:172.346667pt;}
.y73{bottom:172.506667pt;}
.y179{bottom:174.426667pt;}
.y34{bottom:177.786667pt;}
.y141{bottom:179.226667pt;}
.y15f{bottom:181.466667pt;}
.y5b{bottom:183.066667pt;}
.y11e{bottom:185.466667pt;}
.ye5{bottom:186.106667pt;}
.yb0{bottom:186.266667pt;}
.y8b{bottom:190.106667pt;}
.y1a3{bottom:190.586667pt;}
.y26{bottom:192.506667pt;}
.y178{bottom:192.826667pt;}
.yc6{bottom:193.466667pt;}
.y72{bottom:193.626667pt;}
.yfa{bottom:196.666667pt;}
.y33{bottom:198.906667pt;}
.yf3{bottom:199.066667pt;}
.y15e{bottom:199.866667pt;}
.y140{bottom:200.506667pt;}
.y5a{bottom:204.346667pt;}
.y11d{bottom:206.586667pt;}
.ye4{bottom:207.226667pt;}
.yaf{bottom:207.386667pt;}
.y1a2{bottom:208.986667pt;}
.y8a{bottom:211.226667pt;}
.y25{bottom:213.626667pt;}
.yc5{bottom:214.586667pt;}
.y71{bottom:214.746667pt;}
.y15d{bottom:218.266667pt;}
.y32{bottom:220.186667pt;}
.y13f{bottom:221.626667pt;}
.y59{bottom:225.466667pt;}
.y1a1{bottom:227.386667pt;}
.y11c{bottom:227.706667pt;}
.yae{bottom:228.666667pt;}
.y177{bottom:229.626667pt;}
.y89{bottom:232.346667pt;}
.y24{bottom:234.906667pt;}
.yc4{bottom:235.706667pt;}
.y70{bottom:235.866667pt;}
.y15c{bottom:236.666667pt;}
.ye3{bottom:237.786667pt;}
.y31{bottom:241.306667pt;}
.y13e{bottom:242.746667pt;}
.y1a0{bottom:245.786667pt;}
.y58{bottom:246.586667pt;}
.y176{bottom:248.026667pt;}
.y11b{bottom:248.826667pt;}
.yad{bottom:249.786667pt;}
.ye1{bottom:253.306667pt;}
.y88{bottom:253.626667pt;}
.y15b{bottom:255.066667pt;}
.y23{bottom:256.066667pt;}
.yc3{bottom:257.026667pt;}
.y6f{bottom:257.186667pt;}
.y30{bottom:262.466667pt;}
.y13d{bottom:263.906667pt;}
.y19f{bottom:264.226667pt;}
.y175{bottom:266.466667pt;}
.y57{bottom:267.746667pt;}
.y11a{bottom:270.146667pt;}
.yac{bottom:270.946667pt;}
.ye0{bottom:271.746667pt;}
.y15a{bottom:273.506667pt;}
.y87{bottom:274.786667pt;}
.y22{bottom:277.186667pt;}
.yc2{bottom:278.146667pt;}
.y6e{bottom:278.306667pt;}
.y19e{bottom:282.626667pt;}
.y2f{bottom:283.586667pt;}
.y174{bottom:284.866667pt;}
.y13c{bottom:285.186667pt;}
.y56{bottom:289.026667pt;}
.yde{bottom:290.146667pt;}
.y119{bottom:291.266667pt;}
.y159{bottom:291.906667pt;}
.yab{bottom:292.066667pt;}
.y86{bottom:295.906667pt;}
.y21{bottom:298.306667pt;}
.yc1{bottom:299.266667pt;}
.y6d{bottom:299.426667pt;}
.y19d{bottom:301.026667pt;}
.y173{bottom:303.266667pt;}
.y2e{bottom:304.866667pt;}
.y13b{bottom:306.306667pt;}
.ydc{bottom:309.186667pt;}
.y55{bottom:310.146667pt;}
.y158{bottom:310.306667pt;}
.y118{bottom:312.386667pt;}
.y85{bottom:317.026667pt;}
.y19c{bottom:319.426667pt;}
.y20{bottom:319.586667pt;}
.yc0{bottom:320.386667pt;}
.y6c{bottom:320.546667pt;}
.y172{bottom:321.666667pt;}
.yaa{bottom:323.906667pt;}
.yec{bottom:325.186667pt;}
.y2d{bottom:325.986667pt;}
.y13a{bottom:327.426667pt;}
.y157{bottom:328.706667pt;}
.y54{bottom:331.266667pt;}
.y117{bottom:333.506667pt;}
.y19b{bottom:337.826667pt;}
.y84{bottom:338.306667pt;}
.y171{bottom:340.066667pt;}
.y1f{bottom:340.706667pt;}
.y6b{bottom:341.826667pt;}
.ya9{bottom:345.026667pt;}
.y2c{bottom:347.106667pt;}
.y139{bottom:348.546667pt;}
.ybf{bottom:352.226667pt;}
.y53{bottom:352.386667pt;}
.y116{bottom:354.786667pt;}
.ydb{bottom:355.106667pt;}
.y19a{bottom:356.226667pt;}
.y170{bottom:358.466667pt;}
.y83{bottom:359.426667pt;}
.y1e{bottom:361.826667pt;}
.y6a{bottom:362.946667pt;}
.ya8{bottom:366.306667pt;}
.y2b{bottom:368.226667pt;}
.y138{bottom:369.826667pt;}
.yeb{bottom:372.386667pt;}
.ybe{bottom:373.346667pt;}
.y52{bottom:373.506667pt;}
.y199{bottom:374.626667pt;}
.yda{bottom:374.946667pt;}
.y115{bottom:375.906667pt;}
.y16f{bottom:376.866667pt;}
.y156{bottom:378.786667pt;}
.y1d{bottom:382.946667pt;}
.y69{bottom:384.066667pt;}
.ya7{bottom:387.426667pt;}
.y2a{bottom:389.506667pt;}
.y137{bottom:390.946667pt;}
.y82{bottom:392.226667pt;}
.y198{bottom:393.026667pt;}
.ybd{bottom:394.626667pt;}
.y51{bottom:394.786667pt;}
.y16e{bottom:395.266667pt;}
.y114{bottom:397.026667pt;}
.y155{bottom:397.186667pt;}
.y68{bottom:405.186667pt;}
.ya6{bottom:408.546667pt;}
.y1c{bottom:410.626667pt;}
.y197{bottom:411.426667pt;}
.y136{bottom:412.066667pt;}
.y16d{bottom:413.666667pt;}
.y154{bottom:415.586667pt;}
.ybc{bottom:415.746667pt;}
.y50{bottom:415.906667pt;}
.y113{bottom:418.146667pt;}
.y81{bottom:426.626667pt;}
.ya5{bottom:429.666667pt;}
.y196{bottom:429.826667pt;}
.y16c{bottom:432.066667pt;}
.y135{bottom:433.186667pt;}
.y153{bottom:433.986667pt;}
.ybb{bottom:436.866667pt;}
.y4f{bottom:437.026667pt;}
.y112{bottom:439.426667pt;}
.y1b{bottom:442.466667pt;}
.y80{bottom:447.746667pt;}
.y195{bottom:448.226667pt;}
.y16b{bottom:450.466667pt;}
.ya4{bottom:450.946667pt;}
.y152{bottom:452.386667pt;}
.y134{bottom:454.466667pt;}
.yba{bottom:457.986667pt;}
.y4e{bottom:458.146667pt;}
.y111{bottom:460.546667pt;}
.y1a{bottom:463.586667pt;}
.y194{bottom:466.626667pt;}
.y7f{bottom:468.866667pt;}
.y151{bottom:470.786667pt;}
.y133{bottom:475.586667pt;}
.yb9{bottom:479.266667pt;}
.y4d{bottom:479.426667pt;}
.y110{bottom:481.666667pt;}
.ya3{bottom:482.786667pt;}
.y19{bottom:484.066667pt;}
.y193{bottom:485.026667pt;}
.y16a{bottom:487.133333pt;}
.y150{bottom:489.213333pt;}
.y7e{bottom:490.013333pt;}
.y132{bottom:496.733333pt;}
.yb8{bottom:500.413333pt;}
.y4c{bottom:500.573333pt;}
.y10f{bottom:502.813333pt;}
.y18{bottom:503.453333pt;}
.ya2{bottom:503.933333pt;}
.y169{bottom:505.533333pt;}
.y14f{bottom:507.613333pt;}
.y7d{bottom:511.293333pt;}
.yd9{bottom:513.853333pt;}
.y131{bottom:517.853333pt;}
.yb7{bottom:521.533333pt;}
.y4b{bottom:521.693333pt;}
.y192{bottom:521.853333pt;}
.y17{bottom:522.973333pt;}
.y10e{bottom:523.933333pt;}
.ya1{bottom:525.053333pt;}
.y14e{bottom:526.013333pt;}
.y7c{bottom:532.413333pt;}
.yd8{bottom:534.973333pt;}
.y130{bottom:538.973333pt;}
.y191{bottom:540.253333pt;}
.y16{bottom:542.333333pt;}
.y67{bottom:542.813333pt;}
.y14d{bottom:544.413333pt;}
.y10d{bottom:545.213333pt;}
.ya0{bottom:546.173333pt;}
.yb6{bottom:553.373333pt;}
.y4a{bottom:553.533333pt;}
.yd7{bottom:556.253333pt;}
.y190{bottom:558.653333pt;}
.y12f{bottom:560.253333pt;}
.y168{bottom:560.733333pt;}
.y15{bottom:561.693333pt;}
.yf6{bottom:562.333333pt;}
.yf2{bottom:562.493333pt;}
.y14c{bottom:562.813333pt;}
.y66{bottom:564.093333pt;}
.y10c{bottom:566.333333pt;}
.y9f{bottom:567.453333pt;}
.yf9{bottom:567.613333pt;}
.y49{bottom:574.653333pt;}
.y18f{bottom:577.053333pt;}
.yd6{bottom:577.373333pt;}
.y167{bottom:579.133333pt;}
.y14{bottom:581.053333pt;}
.y14b{bottom:581.213333pt;}
.y12e{bottom:581.373333pt;}
.y65{bottom:585.213333pt;}
.y10b{bottom:587.453333pt;}
.yf5{bottom:587.933333pt;}
.y9e{bottom:588.573333pt;}
.yf1{bottom:592.893333pt;}
.y18e{bottom:595.453333pt;}
.y48{bottom:595.933333pt;}
.y166{bottom:597.533333pt;}
.yd5{bottom:598.493333pt;}
.y14a{bottom:599.613333pt;}
.y13{bottom:600.413333pt;}
.y12d{bottom:602.493333pt;}
.y78{bottom:606.333333pt;}
.y10a{bottom:608.573333pt;}
.y9d{bottom:609.693333pt;}
.y18d{bottom:613.853333pt;}
.yf8{bottom:614.973333pt;}
.y165{bottom:615.933333pt;}
.y47{bottom:617.053333pt;}
.yd4{bottom:619.613333pt;}
.y12{bottom:619.933333pt;}
.yf0{bottom:623.453333pt;}
.y12c{bottom:623.613333pt;}
.y77{bottom:627.453333pt;}
.y109{bottom:629.853333pt;}
.y149{bottom:631.773333pt;}
.y18c{bottom:632.253333pt;}
.y164{bottom:634.333333pt;}
.y46{bottom:638.173333pt;}
.y11{bottom:639.293333pt;}
.yd3{bottom:640.893333pt;}
.y9c{bottom:641.533333pt;}
.yef{bottom:641.853333pt;}
.y12b{bottom:644.893333pt;}
.y76{bottom:648.733333pt;}
.y18b{bottom:650.653333pt;}
.y108{bottom:654.973333pt;}
.y10{bottom:658.653333pt;}
.y45{bottom:659.293333pt;}
.y9b{bottom:662.653333pt;}
.y12a{bottom:666.013333pt;}
.y18a{bottom:669.053333pt;}
.yee{bottom:669.533333pt;}
.ycf{bottom:669.853333pt;}
.yd2{bottom:672.733333pt;}
.y107{bottom:676.093333pt;}
.yf{bottom:678.013333pt;}
.y44{bottom:680.413333pt;}
.y9a{bottom:683.773333pt;}
.y129{bottom:687.133333pt;}
.y189{bottom:687.453333pt;}
.yce{bottom:690.973333pt;}
.yea{bottom:691.133333pt;}
.yd1{bottom:693.853333pt;}
.yed{bottom:697.053333pt;}
.y106{bottom:697.213333pt;}
.ye{bottom:697.533333pt;}
.y43{bottom:701.693333pt;}
.y99{bottom:705.053333pt;}
.y188{bottom:705.853333pt;}
.y128{bottom:708.253333pt;}
.ycd{bottom:712.093333pt;}
.yb5{bottom:712.253333pt;}
.yd0{bottom:715.933333pt;}
.yd{bottom:718.533333pt;}
.y42{bottom:722.853333pt;}
.y187{bottom:724.293333pt;}
.y98{bottom:726.213333pt;}
.y127{bottom:729.573333pt;}
.ycc{bottom:733.413333pt;}
.y64{bottom:733.573333pt;}
.yc{bottom:739.493333pt;}
.y105{bottom:739.653333pt;}
.y186{bottom:742.693333pt;}
.y41{bottom:743.973333pt;}
.y97{bottom:747.333333pt;}
.y126{bottom:750.693333pt;}
.ycb{bottom:754.533333pt;}
.y63{bottom:754.693333pt;}
.yb{bottom:757.893333pt;}
.y104{bottom:760.773333pt;}
.y185{bottom:761.093333pt;}
.y40{bottom:765.093333pt;}
.y96{bottom:768.453333pt;}
.y125{bottom:771.813333pt;}
.y62{bottom:775.813333pt;}
.y184{bottom:779.493333pt;}
.y103{bottom:781.893333pt;}
.y3f{bottom:786.373333pt;}
.y95{bottom:789.733333pt;}
.ya{bottom:790.373333pt;}
.y124{bottom:792.933333pt;}
.y61{bottom:796.933333pt;}
.y183{bottom:797.893333pt;}
.y102{bottom:803.173333pt;}
.y3e{bottom:807.493333pt;}
.y9{bottom:810.693333pt;}
.y94{bottom:810.853333pt;}
.y123{bottom:814.213333pt;}
.y182{bottom:816.293333pt;}
.y60{bottom:818.213333pt;}
.y101{bottom:824.293333pt;}
.y3d{bottom:828.613333pt;}
.y93{bottom:831.813333pt;}
.y181{bottom:834.693333pt;}
.y148{bottom:835.333333pt;}
.y5f{bottom:839.333333pt;}
.y8{bottom:840.293333pt;}
.y100{bottom:845.413333pt;}
.y180{bottom:853.093333pt;}
.y147{bottom:856.453333pt;}
.y3c{bottom:860.453333pt;}
.y7{bottom:861.733333pt;}
.yff{bottom:866.533333pt;}
.y92{bottom:869.093333pt;}
.y17f{bottom:871.493333pt;}
.y146{bottom:877.573333pt;}
.y3b{bottom:881.573333pt;}
.yfe{bottom:887.813333pt;}
.y17e{bottom:889.893333pt;}
.y6{bottom:894.373333pt;}
.y145{bottom:898.853333pt;}
.y3a{bottom:902.853333pt;}
.y91{bottom:906.213333pt;}
.y17d{bottom:908.293333pt;}
.yfd{bottom:908.933333pt;}
.y5{bottom:923.173333pt;}
.y39{bottom:923.973333pt;}
.y90{bottom:926.693333pt;}
.y4{bottom:941.253333pt;}
.yfc{bottom:942.533333pt;}
.y38{bottom:945.093333pt;}
.y1{bottom:995.520000pt;}
.h11{height:18.400000pt;}
.h12{height:18.432000pt;}
.h8{height:36.413125pt;}
.h10{height:40.160000pt;}
.hc{height:44.768125pt;}
.h1{height:52.834688pt;}
.h13{height:57.375000pt;}
.ha{height:57.758750pt;}
.h5{height:57.787500pt;}
.h2{height:58.563750pt;}
.h4{height:59.340000pt;}
.hb{height:62.781250pt;}
.h9{height:62.812500pt;}
.h7{height:64.500000pt;}
.hf{height:65.781915pt;}
.he{height:66.625000pt;}
.h6{height:75.465000pt;}
.h3{height:80.625000pt;}
.hd{height:100.866875pt;}
.h0{height:1056.000000pt;}
.w3{width:151.226667pt;}
.w4{width:198.426667pt;}
.w2{width:224.666667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.xf{left:88.832000pt;}
.x3{left:96.031988pt;}
.x7{left:108.511988pt;}
.x1{left:111.071988pt;}
.xa{left:118.911988pt;}
.xc{left:120.031988pt;}
.x19{left:132.031988pt;}
.x13{left:138.106655pt;}
.x17{left:168.026655pt;}
.x4{left:170.586655pt;}
.x9{left:193.626655pt;}
.x8{left:227.706655pt;}
.x5{left:232.346655pt;}
.x11{left:313.506667pt;}
.x1b{left:336.066655pt;}
.x2{left:415.586655pt;}
.x6{left:423.106655pt;}
.xb{left:447.133321pt;}
.x12{left:464.733333pt;}
.xd{left:471.133321pt;}
.x1a{left:483.133321pt;}
.xe{left:495.133321pt;}
.x18{left:706.053321pt;}
.x14{left:708.133321pt;}
.x16{left:712.613321pt;}
.x15{left:719.013321pt;}
}




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