
    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_e9a3f97c4ec756327f6b68c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_7d060395e7bef23c1cb1f8ed.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_a171dc93662364fa472e2942.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_dcd4f24f0c926049eb124efe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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);}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.v3{vertical-align:20.880000px;}
.ls19{letter-spacing:-0.960000px;}
.ls11{letter-spacing:-0.696000px;}
.ls12{letter-spacing:-0.660000px;}
.ls4{letter-spacing:-0.463800px;}
.ls8{letter-spacing:-0.431400px;}
.lsf{letter-spacing:-0.414000px;}
.ls13{letter-spacing:-0.240600px;}
.ls15{letter-spacing:-0.226800px;}
.ls3{letter-spacing:-0.132600px;}
.ls36{letter-spacing:-0.115200px;}
.ls17{letter-spacing:-0.107400px;}
.ls29{letter-spacing:-0.078600px;}
.ls25{letter-spacing:-0.069600px;}
.ls18{letter-spacing:-0.064800px;}
.ls2b{letter-spacing:-0.058320px;}
.ls26{letter-spacing:-0.032400px;}
.ls6{letter-spacing:-0.020160px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.023760px;}
.ls2{letter-spacing:0.038880px;}
.ls7{letter-spacing:0.060600px;}
.ls1f{letter-spacing:0.064200px;}
.ls20{letter-spacing:0.109440px;}
.ls16{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.ls33{letter-spacing:0.174000px;}
.lsc{letter-spacing:0.174240px;}
.ls28{letter-spacing:0.175200px;}
.ls32{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.186600px;}
.ls23{letter-spacing:0.188400px;}
.ls1a{letter-spacing:0.188640px;}
.ls9{letter-spacing:0.306000px;}
.ls10{letter-spacing:0.348600px;}
.ls1c{letter-spacing:0.368640px;}
.ls21{letter-spacing:0.393600px;}
.ls1e{letter-spacing:0.417600px;}
.ls1b{letter-spacing:0.447840px;}
.ls31{letter-spacing:0.468000px;}
.ls2a{letter-spacing:0.479400px;}
.ls24{letter-spacing:0.533400px;}
.ls22{letter-spacing:0.606000px;}
.ls2c{letter-spacing:0.612000px;}
.ls2d{letter-spacing:0.654000px;}
.ls2e{letter-spacing:0.816480px;}
.ls14{letter-spacing:0.858000px;}
.ls2f{letter-spacing:0.888000px;}
.ls1d{letter-spacing:0.908640px;}
.ls30{letter-spacing:0.953280px;}
.lsa{letter-spacing:1.026000px;}
.ls35{letter-spacing:12.186720px;}
.ls34{letter-spacing:42.426720px;}
.lse{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsc{word-spacing:-14.111760px;}
.wsd{word-spacing:-14.039160px;}
.ws7{word-spacing:-13.854360px;}
.ws5{word-spacing:-13.811760px;}
.ws12{word-spacing:-13.692360px;}
.ws14{word-spacing:-13.680960px;}
.ws13{word-spacing:-13.646160px;}
.ws11{word-spacing:-13.569960px;}
.wse{word-spacing:-13.566360px;}
.ws4{word-spacing:-13.529520px;}
.wsa{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.473360px;}
.ws16{word-spacing:-13.447440px;}
.ws19{word-spacing:-13.440960px;}
.wsf{word-spacing:-13.436160px;}
.ws15{word-spacing:-13.427160px;}
.ws9{word-spacing:-13.398360px;}
.ws18{word-spacing:-13.390560px;}
.ws17{word-spacing:-13.278960px;}
.ws8{word-spacing:-13.265160px;}
.wsb{word-spacing:-8.786880px;}
.ws6{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-214.738560px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._25{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-160.046400px;}
._22{margin-left:-154.885440px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-144.434880px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._23{margin-left:-110.223360px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-32.468640px;}
._27{margin-left:-5.127120px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._29{width:1.216080px;}
._2d{width:2.575440px;}
._2c{width:3.673440px;}
._31{width:5.420880px;}
._2f{width:6.786000px;}
._2e{width:7.828560px;}
._30{width:9.595200px;}
._34{width:10.697040px;}
._2b{width:11.830080px;}
._2a{width:14.560560px;}
._32{width:15.755760px;}
._33{width:17.034480px;}
._36{width:18.977040px;}
._28{width:33.422880px;}
._35{width:126.282000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf7{bottom:6.480000px;}
.yb4{bottom:6.660000px;}
.ye4{bottom:27.720000px;}
.y12c{bottom:48.810000px;}
.y100{bottom:51.840000px;}
.y11f{bottom:51.885000px;}
.y6{bottom:59.940000px;}
.y12b{bottom:69.870000px;}
.y118{bottom:74.340000px;}
.y66{bottom:88.920000px;}
.y86{bottom:91.260000px;}
.y13e{bottom:94.320000px;}
.ycf{bottom:95.760000px;}
.yb2{bottom:97.380000px;}
.yfc{bottom:98.820000px;}
.y31{bottom:99.720000px;}
.y65{bottom:109.980000px;}
.y85{bottom:112.320000px;}
.y13d{bottom:115.380000px;}
.yce{bottom:116.820000px;}
.yb1{bottom:118.440000px;}
.yfb{bottom:119.880000px;}
.y30{bottom:120.780000px;}
.y163{bottom:129.420000px;}
.y64{bottom:131.040000px;}
.y84{bottom:133.380000px;}
.yfa{bottom:134.280000px;}
.y13c{bottom:136.440000px;}
.ycd{bottom:137.880000px;}
.yb0{bottom:139.500000px;}
.y2f{bottom:141.840000px;}
.y63{bottom:152.130000px;}
.y83{bottom:154.470000px;}
.yf9{bottom:156.810000px;}
.y13b{bottom:157.530000px;}
.ycc{bottom:158.970000px;}
.yaf{bottom:160.590000px;}
.y2e{bottom:162.930000px;}
.y62{bottom:173.190000px;}
.y82{bottom:175.530000px;}
.y13a{bottom:178.590000px;}
.yf8{bottom:179.490000px;}
.ycb{bottom:180.030000px;}
.yae{bottom:181.650000px;}
.y2d{bottom:183.990000px;}
.y61{bottom:194.250000px;}
.y81{bottom:196.590000px;}
.yf6{bottom:200.550000px;}
.yca{bottom:201.090000px;}
.y11a{bottom:201.990000px;}
.yad{bottom:202.710000px;}
.y2c{bottom:205.050000px;}
.y139{bottom:208.650000px;}
.y60{bottom:215.310000px;}
.y80{bottom:217.650000px;}
.yc9{bottom:222.150000px;}
.yac{bottom:223.770000px;}
.y119{bottom:224.490000px;}
.y162{bottom:224.850000px;}
.y2b{bottom:226.110000px;}
.yf5{bottom:228.090000px;}
.y138{bottom:229.710000px;}
.y5f{bottom:236.190000px;}
.y7f{bottom:238.710000px;}
.yc8{bottom:243.210000px;}
.y161{bottom:244.470000px;}
.yab{bottom:244.830000px;}
.y116{bottom:246.990000px;}
.y2a{bottom:247.170000px;}
.yf4{bottom:249.150000px;}
.y137{bottom:250.770000px;}
.y5e{bottom:257.250000px;}
.yc7{bottom:257.610000px;}
.y7e{bottom:259.770000px;}
.y160{bottom:264.270000px;}
.yaa{bottom:265.890000px;}
.y117{bottom:268.050000px;}
.y29{bottom:268.230000px;}
.yf3{bottom:270.210000px;}
.y136{bottom:271.830000px;}
.y5d{bottom:278.310000px;}
.yc6{bottom:280.110000px;}
.y7d{bottom:280.830000px;}
.y15f{bottom:284.070000px;}
.ya9{bottom:286.950000px;}
.y28{bottom:289.290000px;}
.yf2{bottom:291.270000px;}
.y135{bottom:292.890000px;}
.y5c{bottom:299.370000px;}
.y7c{bottom:301.890000px;}
.yc5{bottom:302.790000px;}
.y15e{bottom:303.870000px;}
.ya8{bottom:308.010000px;}
.y115{bottom:310.170000px;}
.y27{bottom:310.350000px;}
.yf1{bottom:312.330000px;}
.y134{bottom:313.950000px;}
.y5b{bottom:320.430000px;}
.y7b{bottom:322.950000px;}
.y15d{bottom:323.670000px;}
.yc4{bottom:325.290000px;}
.ya7{bottom:329.070000px;}
.y26{bottom:331.410000px;}
.yf0{bottom:333.390000px;}
.y133{bottom:335.010000px;}
.y114{bottom:337.890000px;}
.y5a{bottom:341.490000px;}
.y15c{bottom:343.290000px;}
.y7a{bottom:344.010000px;}
.yc3{bottom:347.790000px;}
.ya6{bottom:350.130000px;}
.y25{bottom:352.470000px;}
.yef{bottom:354.450000px;}
.y132{bottom:356.070000px;}
.y113{bottom:358.950000px;}
.y59{bottom:362.550000px;}
.y15b{bottom:363.090000px;}
.y79{bottom:365.070000px;}
.yc1{bottom:370.470000px;}
.ya5{bottom:371.190000px;}
.y24{bottom:373.530000px;}
.yee{bottom:375.510000px;}
.y131{bottom:377.130000px;}
.y112{bottom:380.010000px;}
.y15a{bottom:382.890000px;}
.y58{bottom:383.610000px;}
.y78{bottom:386.130000px;}
.yc2{bottom:391.530000px;}
.ya4{bottom:392.250000px;}
.y23{bottom:394.410000px;}
.yed{bottom:396.570000px;}
.y130{bottom:398.190000px;}
.y111{bottom:401.115000px;}
.y159{bottom:402.735000px;}
.y57{bottom:404.715000px;}
.y77{bottom:407.235000px;}
.yc0{bottom:412.635000px;}
.ya3{bottom:413.355000px;}
.y22{bottom:415.515000px;}
.yec{bottom:417.675000px;}
.y12f{bottom:419.295000px;}
.y110{bottom:422.175000px;}
.y158{bottom:422.355000px;}
.y56{bottom:425.775000px;}
.y76{bottom:428.295000px;}
.ya2{bottom:434.415000px;}
.y21{bottom:436.575000px;}
.yeb{bottom:438.735000px;}
.ybf{bottom:440.355000px;}
.y157{bottom:442.155000px;}
.y10f{bottom:443.235000px;}
.y55{bottom:446.835000px;}
.y75{bottom:449.355000px;}
.ya1{bottom:455.475000px;}
.y20{bottom:457.635000px;}
.yea{bottom:459.795000px;}
.ybe{bottom:461.415000px;}
.y156{bottom:461.955000px;}
.y10e{bottom:464.295000px;}
.y54{bottom:467.895000px;}
.y74{bottom:470.415000px;}
.ya0{bottom:476.535000px;}
.y1f{bottom:478.695000px;}
.ye9{bottom:480.855000px;}
.y155{bottom:481.755000px;}
.ybd{bottom:482.475000px;}
.y10d{bottom:485.355000px;}
.y53{bottom:488.955000px;}
.y73{bottom:491.475000px;}
.y9f{bottom:497.595000px;}
.y1e{bottom:499.755000px;}
.y154{bottom:501.555000px;}
.ye8{bottom:501.915000px;}
.ybc{bottom:503.535000px;}
.y10c{bottom:506.415000px;}
.y52{bottom:510.015000px;}
.y72{bottom:512.535000px;}
.ye7{bottom:517.935000px;}
.y9e{bottom:518.655000px;}
.y1d{bottom:520.815000px;}
.y153{bottom:521.175000px;}
.ybb{bottom:524.595000px;}
.y10b{bottom:527.475000px;}
.y51{bottom:531.075000px;}
.y71{bottom:533.595000px;}
.y9d{bottom:539.715000px;}
.ye6{bottom:540.435000px;}
.y152{bottom:540.975000px;}
.y1c{bottom:541.875000px;}
.yba{bottom:545.655000px;}
.y10a{bottom:548.535000px;}
.y50{bottom:552.135000px;}
.y70{bottom:554.655000px;}
.y9c{bottom:560.775000px;}
.yb9{bottom:561.495000px;}
.y1b{bottom:562.935000px;}
.y12e{bottom:566.715000px;}
.y109{bottom:569.595000px;}
.y4f{bottom:573.195000px;}
.y6f{bottom:575.715000px;}
.y151{bottom:580.575000px;}
.y9b{bottom:581.835000px;}
.y1a{bottom:583.995000px;}
.ye5{bottom:585.615000px;}
.y12d{bottom:587.775000px;}
.y108{bottom:590.655000px;}
.y4e{bottom:594.255000px;}
.y6e{bottom:596.775000px;}
.y150{bottom:600.195000px;}
.y9a{bottom:602.895000px;}
.y19{bottom:605.055000px;}
.yb8{bottom:606.675000px;}
.ye3{bottom:608.115000px;}
.y107{bottom:611.715000px;}
.y4d{bottom:615.315000px;}
.y6d{bottom:617.835000px;}
.y14f{bottom:619.995000px;}
.y99{bottom:623.775000px;}
.y18{bottom:626.115000px;}
.yb7{bottom:629.175000px;}
.y106{bottom:632.775000px;}
.y4c{bottom:636.375000px;}
.y6c{bottom:638.895000px;}
.y14e{bottom:639.795000px;}
.y98{bottom:644.835000px;}
.y17{bottom:649.725000px;}
.ye2{bottom:650.265000px;}
.yb6{bottom:651.705000px;}
.y105{bottom:653.865000px;}
.y4b{bottom:657.465000px;}
.y14d{bottom:659.625000px;}
.y6b{bottom:659.805000px;}
.y16{bottom:670.605000px;}
.yb5{bottom:674.205000px;}
.y97{bottom:674.925000px;}
.ye1{bottom:677.985000px;}
.y4a{bottom:678.525000px;}
.y14c{bottom:679.425000px;}
.y6a{bottom:680.865000px;}
.y12a{bottom:694.545000px;}
.yb3{bottom:695.265000px;}
.y96{bottom:695.985000px;}
.ye0{bottom:699.045000px;}
.y49{bottom:699.765000px;}
.y15{bottom:700.665000px;}
.y69{bottom:701.925000px;}
.y129{bottom:715.605000px;}
.y95{bottom:717.045000px;}
.y14b{bottom:718.845000px;}
.ydf{bottom:720.105000px;}
.y48{bottom:721.545000px;}
.y14{bottom:721.725000px;}
.y68{bottom:722.985000px;}
.y128{bottom:736.665000px;}
.y94{bottom:738.105000px;}
.y14a{bottom:738.645000px;}
.yde{bottom:741.165000px;}
.y13{bottom:742.785000px;}
.y47{bottom:743.325000px;}
.y67{bottom:744.045000px;}
.y127{bottom:757.725000px;}
.y149{bottom:758.445000px;}
.y93{bottom:759.165000px;}
.ydd{bottom:762.225000px;}
.y12{bottom:763.845000px;}
.y46{bottom:765.105000px;}
.y104{bottom:773.565000px;}
.y148{bottom:778.065000px;}
.y126{bottom:778.785000px;}
.ydc{bottom:783.285000px;}
.y11{bottom:784.905000px;}
.y45{bottom:786.165000px;}
.y92{bottom:789.225000px;}
.y103{bottom:794.625000px;}
.y147{bottom:797.865000px;}
.y125{bottom:799.845000px;}
.ydb{bottom:804.345000px;}
.y10{bottom:805.965000px;}
.y44{bottom:807.225000px;}
.y91{bottom:810.285000px;}
.yff{bottom:817.125000px;}
.y146{bottom:817.665000px;}
.y124{bottom:820.905000px;}
.yda{bottom:825.405000px;}
.yf{bottom:827.025000px;}
.y43{bottom:828.285000px;}
.y90{bottom:831.345000px;}
.y123{bottom:835.305000px;}
.y145{bottom:837.465000px;}
.y102{bottom:839.805000px;}
.yd9{bottom:846.465000px;}
.ye{bottom:848.085000px;}
.y42{bottom:849.345000px;}
.y8f{bottom:852.405000px;}
.y144{bottom:857.265000px;}
.y122{bottom:857.805000px;}
.y101{bottom:862.305000px;}
.yd8{bottom:867.525000px;}
.y41{bottom:870.405000px;}
.yd{bottom:871.305000px;}
.y8e{bottom:873.465000px;}
.y143{bottom:876.885000px;}
.y11e{bottom:880.305000px;}
.yfe{bottom:884.805000px;}
.yd7{bottom:888.585000px;}
.y40{bottom:891.465000px;}
.yc{bottom:892.365000px;}
.y8d{bottom:894.525000px;}
.y142{bottom:896.685000px;}
.y121{bottom:903.030000px;}
.yfd{bottom:905.910000px;}
.yd6{bottom:909.690000px;}
.y3f{bottom:912.570000px;}
.yb{bottom:913.470000px;}
.y8c{bottom:915.630000px;}
.y141{bottom:916.530000px;}
.y120{bottom:925.530000px;}
.yd5{bottom:930.750000px;}
.y3e{bottom:933.630000px;}
.ya{bottom:935.430000px;}
.y140{bottom:936.330000px;}
.y8b{bottom:936.690000px;}
.y11c{bottom:948.030000px;}
.yd4{bottom:951.810000px;}
.y3d{bottom:954.690000px;}
.y13f{bottom:955.950000px;}
.y9{bottom:957.750000px;}
.y8a{bottom:966.750000px;}
.y11d{bottom:969.090000px;}
.yd3{bottom:972.870000px;}
.y3c{bottom:975.750000px;}
.y8{bottom:982.950000px;}
.y89{bottom:987.810000px;}
.yd2{bottom:988.710000px;}
.y11b{bottom:990.150000px;}
.y3b{bottom:996.810000px;}
.y88{bottom:1008.870000px;}
.yd1{bottom:1011.210000px;}
.y7{bottom:1016.610000px;}
.y3a{bottom:1017.870000px;}
.y87{bottom:1029.930000px;}
.yd0{bottom:1032.270000px;}
.y39{bottom:1038.930000px;}
.y5{bottom:1055.310000px;}
.y38{bottom:1059.990000px;}
.y37{bottom:1081.050000px;}
.y4{bottom:1086.090000px;}
.y36{bottom:1102.110000px;}
.y3{bottom:1116.870000px;}
.y35{bottom:1123.170000px;}
.y34{bottom:1144.230000px;}
.y2{bottom:1147.500000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.hf{height:2.864531px;}
.hc{height:20.880000px;}
.h9{height:21.060000px;}
.ha{height:21.096000px;}
.h11{height:42.120000px;}
.hb{height:42.156000px;}
.h7{height:59.439023px;}
.h8{height:59.551172px;}
.h5{height:61.189805px;}
.h10{height:63.180000px;}
.h3{height:65.884219px;}
.hd{height:66.240000px;}
.h13{height:66.276000px;}
.h6{height:67.824844px;}
.h14{height:84.276000px;}
.h2{height:86.255508px;}
.h12{height:88.740000px;}
.h4{height:98.051133px;}
.he{height:153.390000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:58.716000px;}
.w5{width:64.836000px;}
.w20{width:72.216000px;}
.w2b{width:80.136000px;}
.w8{width:81.540000px;}
.w25{width:82.080000px;}
.w26{width:82.656000px;}
.w15{width:90.036000px;}
.w33{width:90.576000px;}
.w6{width:91.440000px;}
.w9{width:97.416000px;}
.w1c{width:99.396000px;}
.w1e{width:99.540000px;}
.w1f{width:100.296000px;}
.w28{width:101.880000px;}
.w7{width:104.076000px;}
.w16{width:106.776000px;}
.w14{width:111.780000px;}
.w12{width:112.356000px;}
.w24{width:115.416000px;}
.w13{width:119.376000px;}
.w31{width:125.136000px;}
.w32{width:125.676000px;}
.w2d{width:126.396000px;}
.w21{width:126.540000px;}
.w27{width:135.216000px;}
.w17{width:136.836000px;}
.w1d{width:137.196000px;}
.w30{width:138.960000px;}
.wc{width:144.036000px;}
.w18{width:144.360000px;}
.wd{width:145.476000px;}
.w19{width:195.915000px;}
.w1a{width:196.770000px;}
.w1b{width:198.750000px;}
.we{width:217.335000px;}
.w10{width:219.855000px;}
.w23{width:238.710000px;}
.w2a{width:258.330000px;}
.w22{width:261.975000px;}
.w2f{width:266.250000px;}
.w34{width:301.935000px;}
.w4{width:339.735000px;}
.wf{width:344.910000px;}
.wa{width:347.115000px;}
.w11{width:347.295000px;}
.w2e{width:392.505000px;}
.wb{width:436.605000px;}
.w2c{width:658.770000px;}
.w35{width:678.885000px;}
.w3{width:785.160000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:4.500000px;}
.x2f{left:7.560000px;}
.x6{left:53.999987px;}
.x9{left:55.439987px;}
.x7{left:80.999987px;}
.x8{left:94.535987px;}
.x2e{left:107.136000px;}
.x28{left:112.716000px;}
.x22{left:126.216000px;}
.x2d{left:144.576000px;}
.x5{left:156.449987px;}
.x19{left:160.770000px;}
.x1d{left:252.750000px;}
.x13{left:272.775000px;}
.x3{left:286.814987px;}
.x1a{left:299.055000px;}
.x23{left:315.975000px;}
.x2{left:350.714987px;}
.x29{left:371.055000px;}
.xb{left:393.735000px;}
.x1e{left:398.415000px;}
.x15{left:401.295000px;}
.x10{left:402.555000px;}
.x4{left:419.294987px;}
.x1b{left:445.035000px;}
.x2b{left:446.505000px;}
.x27{left:452.805000px;}
.xc{left:460.005000px;}
.x1{left:479.444987px;}
.x1f{left:499.245000px;}
.x16{left:515.085000px;}
.x11{left:548.205000px;}
.xd{left:553.065000px;}
.x24{left:556.125000px;}
.x2c{left:586.905000px;}
.x14{left:619.305000px;}
.x17{left:635.910000px;}
.x20{left:637.890000px;}
.x1c{left:642.390000px;}
.xe{left:658.770000px;}
.x25{left:672.990000px;}
.x12{left:693.690000px;}
.x2a{left:712.770000px;}
.x21{left:738.870000px;}
.xf{left:741.750000px;}
.x18{left:749.130000px;}
.x26{left:756.510000px;}
.x30{left:839.339987px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.v3{vertical-align:18.560000pt;}
.ls19{letter-spacing:-0.853333pt;}
.ls11{letter-spacing:-0.618667pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls8{letter-spacing:-0.383467pt;}
.lsf{letter-spacing:-0.368000pt;}
.ls13{letter-spacing:-0.213867pt;}
.ls15{letter-spacing:-0.201600pt;}
.ls3{letter-spacing:-0.117867pt;}
.ls36{letter-spacing:-0.102400pt;}
.ls17{letter-spacing:-0.095467pt;}
.ls29{letter-spacing:-0.069867pt;}
.ls25{letter-spacing:-0.061867pt;}
.ls18{letter-spacing:-0.057600pt;}
.ls2b{letter-spacing:-0.051840pt;}
.ls26{letter-spacing:-0.028800pt;}
.ls6{letter-spacing:-0.017920pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.021120pt;}
.ls2{letter-spacing:0.034560pt;}
.ls7{letter-spacing:0.053867pt;}
.ls1f{letter-spacing:0.057067pt;}
.ls20{letter-spacing:0.097280pt;}
.ls16{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.ls33{letter-spacing:0.154667pt;}
.lsc{letter-spacing:0.154880pt;}
.ls28{letter-spacing:0.155733pt;}
.ls32{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.165867pt;}
.ls23{letter-spacing:0.167467pt;}
.ls1a{letter-spacing:0.167680pt;}
.ls9{letter-spacing:0.272000pt;}
.ls10{letter-spacing:0.309867pt;}
.ls1c{letter-spacing:0.327680pt;}
.ls21{letter-spacing:0.349867pt;}
.ls1e{letter-spacing:0.371200pt;}
.ls1b{letter-spacing:0.398080pt;}
.ls31{letter-spacing:0.416000pt;}
.ls2a{letter-spacing:0.426133pt;}
.ls24{letter-spacing:0.474133pt;}
.ls22{letter-spacing:0.538667pt;}
.ls2c{letter-spacing:0.544000pt;}
.ls2d{letter-spacing:0.581333pt;}
.ls2e{letter-spacing:0.725760pt;}
.ls14{letter-spacing:0.762667pt;}
.ls2f{letter-spacing:0.789333pt;}
.ls1d{letter-spacing:0.807680pt;}
.ls30{letter-spacing:0.847360pt;}
.lsa{letter-spacing:0.912000pt;}
.ls35{letter-spacing:10.832640pt;}
.ls34{letter-spacing:37.712640pt;}
.lse{letter-spacing:56.912640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.543787pt;}
.wsd{word-spacing:-12.479253pt;}
.ws7{word-spacing:-12.314987pt;}
.ws5{word-spacing:-12.277120pt;}
.ws12{word-spacing:-12.170987pt;}
.ws14{word-spacing:-12.160853pt;}
.ws13{word-spacing:-12.129920pt;}
.ws11{word-spacing:-12.062187pt;}
.wse{word-spacing:-12.058987pt;}
.ws4{word-spacing:-12.026240pt;}
.wsa{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.976320pt;}
.ws16{word-spacing:-11.953280pt;}
.ws19{word-spacing:-11.947520pt;}
.wsf{word-spacing:-11.943253pt;}
.ws15{word-spacing:-11.935253pt;}
.ws9{word-spacing:-11.909653pt;}
.ws18{word-spacing:-11.902720pt;}
.ws17{word-spacing:-11.803520pt;}
.ws8{word-spacing:-11.791253pt;}
.wsb{word-spacing:-7.810560pt;}
.ws6{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-190.878720pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._25{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.263467pt;}
._22{margin-left:-137.675947pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-128.386560pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._23{margin-left:-97.976320pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.861013pt;}
._27{margin-left:-4.557440pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._29{width:1.080960pt;}
._2d{width:2.289280pt;}
._2c{width:3.265280pt;}
._31{width:4.818560pt;}
._2f{width:6.032000pt;}
._2e{width:6.958720pt;}
._30{width:8.529067pt;}
._34{width:9.508480pt;}
._2b{width:10.515627pt;}
._2a{width:12.942720pt;}
._32{width:14.005120pt;}
._33{width:15.141760pt;}
._36{width:16.868480pt;}
._28{width:29.709227pt;}
._35{width:112.250667pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:5.760000pt;}
.yb4{bottom:5.920000pt;}
.ye4{bottom:24.640000pt;}
.y12c{bottom:43.386667pt;}
.y100{bottom:46.080000pt;}
.y11f{bottom:46.120000pt;}
.y6{bottom:53.280000pt;}
.y12b{bottom:62.106667pt;}
.y118{bottom:66.080000pt;}
.y66{bottom:79.040000pt;}
.y86{bottom:81.120000pt;}
.y13e{bottom:83.840000pt;}
.ycf{bottom:85.120000pt;}
.yb2{bottom:86.560000pt;}
.yfc{bottom:87.840000pt;}
.y31{bottom:88.640000pt;}
.y65{bottom:97.760000pt;}
.y85{bottom:99.840000pt;}
.y13d{bottom:102.560000pt;}
.yce{bottom:103.840000pt;}
.yb1{bottom:105.280000pt;}
.yfb{bottom:106.560000pt;}
.y30{bottom:107.360000pt;}
.y163{bottom:115.040000pt;}
.y64{bottom:116.480000pt;}
.y84{bottom:118.560000pt;}
.yfa{bottom:119.360000pt;}
.y13c{bottom:121.280000pt;}
.ycd{bottom:122.560000pt;}
.yb0{bottom:124.000000pt;}
.y2f{bottom:126.080000pt;}
.y63{bottom:135.226667pt;}
.y83{bottom:137.306667pt;}
.yf9{bottom:139.386667pt;}
.y13b{bottom:140.026667pt;}
.ycc{bottom:141.306667pt;}
.yaf{bottom:142.746667pt;}
.y2e{bottom:144.826667pt;}
.y62{bottom:153.946667pt;}
.y82{bottom:156.026667pt;}
.y13a{bottom:158.746667pt;}
.yf8{bottom:159.546667pt;}
.ycb{bottom:160.026667pt;}
.yae{bottom:161.466667pt;}
.y2d{bottom:163.546667pt;}
.y61{bottom:172.666667pt;}
.y81{bottom:174.746667pt;}
.yf6{bottom:178.266667pt;}
.yca{bottom:178.746667pt;}
.y11a{bottom:179.546667pt;}
.yad{bottom:180.186667pt;}
.y2c{bottom:182.266667pt;}
.y139{bottom:185.466667pt;}
.y60{bottom:191.386667pt;}
.y80{bottom:193.466667pt;}
.yc9{bottom:197.466667pt;}
.yac{bottom:198.906667pt;}
.y119{bottom:199.546667pt;}
.y162{bottom:199.866667pt;}
.y2b{bottom:200.986667pt;}
.yf5{bottom:202.746667pt;}
.y138{bottom:204.186667pt;}
.y5f{bottom:209.946667pt;}
.y7f{bottom:212.186667pt;}
.yc8{bottom:216.186667pt;}
.y161{bottom:217.306667pt;}
.yab{bottom:217.626667pt;}
.y116{bottom:219.546667pt;}
.y2a{bottom:219.706667pt;}
.yf4{bottom:221.466667pt;}
.y137{bottom:222.906667pt;}
.y5e{bottom:228.666667pt;}
.yc7{bottom:228.986667pt;}
.y7e{bottom:230.906667pt;}
.y160{bottom:234.906667pt;}
.yaa{bottom:236.346667pt;}
.y117{bottom:238.266667pt;}
.y29{bottom:238.426667pt;}
.yf3{bottom:240.186667pt;}
.y136{bottom:241.626667pt;}
.y5d{bottom:247.386667pt;}
.yc6{bottom:248.986667pt;}
.y7d{bottom:249.626667pt;}
.y15f{bottom:252.506667pt;}
.ya9{bottom:255.066667pt;}
.y28{bottom:257.146667pt;}
.yf2{bottom:258.906667pt;}
.y135{bottom:260.346667pt;}
.y5c{bottom:266.106667pt;}
.y7c{bottom:268.346667pt;}
.yc5{bottom:269.146667pt;}
.y15e{bottom:270.106667pt;}
.ya8{bottom:273.786667pt;}
.y115{bottom:275.706667pt;}
.y27{bottom:275.866667pt;}
.yf1{bottom:277.626667pt;}
.y134{bottom:279.066667pt;}
.y5b{bottom:284.826667pt;}
.y7b{bottom:287.066667pt;}
.y15d{bottom:287.706667pt;}
.yc4{bottom:289.146667pt;}
.ya7{bottom:292.506667pt;}
.y26{bottom:294.586667pt;}
.yf0{bottom:296.346667pt;}
.y133{bottom:297.786667pt;}
.y114{bottom:300.346667pt;}
.y5a{bottom:303.546667pt;}
.y15c{bottom:305.146667pt;}
.y7a{bottom:305.786667pt;}
.yc3{bottom:309.146667pt;}
.ya6{bottom:311.226667pt;}
.y25{bottom:313.306667pt;}
.yef{bottom:315.066667pt;}
.y132{bottom:316.506667pt;}
.y113{bottom:319.066667pt;}
.y59{bottom:322.266667pt;}
.y15b{bottom:322.746667pt;}
.y79{bottom:324.506667pt;}
.yc1{bottom:329.306667pt;}
.ya5{bottom:329.946667pt;}
.y24{bottom:332.026667pt;}
.yee{bottom:333.786667pt;}
.y131{bottom:335.226667pt;}
.y112{bottom:337.786667pt;}
.y15a{bottom:340.346667pt;}
.y58{bottom:340.986667pt;}
.y78{bottom:343.226667pt;}
.yc2{bottom:348.026667pt;}
.ya4{bottom:348.666667pt;}
.y23{bottom:350.586667pt;}
.yed{bottom:352.506667pt;}
.y130{bottom:353.946667pt;}
.y111{bottom:356.546667pt;}
.y159{bottom:357.986667pt;}
.y57{bottom:359.746667pt;}
.y77{bottom:361.986667pt;}
.yc0{bottom:366.786667pt;}
.ya3{bottom:367.426667pt;}
.y22{bottom:369.346667pt;}
.yec{bottom:371.266667pt;}
.y12f{bottom:372.706667pt;}
.y110{bottom:375.266667pt;}
.y158{bottom:375.426667pt;}
.y56{bottom:378.466667pt;}
.y76{bottom:380.706667pt;}
.ya2{bottom:386.146667pt;}
.y21{bottom:388.066667pt;}
.yeb{bottom:389.986667pt;}
.ybf{bottom:391.426667pt;}
.y157{bottom:393.026667pt;}
.y10f{bottom:393.986667pt;}
.y55{bottom:397.186667pt;}
.y75{bottom:399.426667pt;}
.ya1{bottom:404.866667pt;}
.y20{bottom:406.786667pt;}
.yea{bottom:408.706667pt;}
.ybe{bottom:410.146667pt;}
.y156{bottom:410.626667pt;}
.y10e{bottom:412.706667pt;}
.y54{bottom:415.906667pt;}
.y74{bottom:418.146667pt;}
.ya0{bottom:423.586667pt;}
.y1f{bottom:425.506667pt;}
.ye9{bottom:427.426667pt;}
.y155{bottom:428.226667pt;}
.ybd{bottom:428.866667pt;}
.y10d{bottom:431.426667pt;}
.y53{bottom:434.626667pt;}
.y73{bottom:436.866667pt;}
.y9f{bottom:442.306667pt;}
.y1e{bottom:444.226667pt;}
.y154{bottom:445.826667pt;}
.ye8{bottom:446.146667pt;}
.ybc{bottom:447.586667pt;}
.y10c{bottom:450.146667pt;}
.y52{bottom:453.346667pt;}
.y72{bottom:455.586667pt;}
.ye7{bottom:460.386667pt;}
.y9e{bottom:461.026667pt;}
.y1d{bottom:462.946667pt;}
.y153{bottom:463.266667pt;}
.ybb{bottom:466.306667pt;}
.y10b{bottom:468.866667pt;}
.y51{bottom:472.066667pt;}
.y71{bottom:474.306667pt;}
.y9d{bottom:479.746667pt;}
.ye6{bottom:480.386667pt;}
.y152{bottom:480.866667pt;}
.y1c{bottom:481.666667pt;}
.yba{bottom:485.026667pt;}
.y10a{bottom:487.586667pt;}
.y50{bottom:490.786667pt;}
.y70{bottom:493.026667pt;}
.y9c{bottom:498.466667pt;}
.yb9{bottom:499.106667pt;}
.y1b{bottom:500.386667pt;}
.y12e{bottom:503.746667pt;}
.y109{bottom:506.306667pt;}
.y4f{bottom:509.506667pt;}
.y6f{bottom:511.746667pt;}
.y151{bottom:516.066667pt;}
.y9b{bottom:517.186667pt;}
.y1a{bottom:519.106667pt;}
.ye5{bottom:520.546667pt;}
.y12d{bottom:522.466667pt;}
.y108{bottom:525.026667pt;}
.y4e{bottom:528.226667pt;}
.y6e{bottom:530.466667pt;}
.y150{bottom:533.506667pt;}
.y9a{bottom:535.906667pt;}
.y19{bottom:537.826667pt;}
.yb8{bottom:539.266667pt;}
.ye3{bottom:540.546667pt;}
.y107{bottom:543.746667pt;}
.y4d{bottom:546.946667pt;}
.y6d{bottom:549.186667pt;}
.y14f{bottom:551.106667pt;}
.y99{bottom:554.466667pt;}
.y18{bottom:556.546667pt;}
.yb7{bottom:559.266667pt;}
.y106{bottom:562.466667pt;}
.y4c{bottom:565.666667pt;}
.y6c{bottom:567.906667pt;}
.y14e{bottom:568.706667pt;}
.y98{bottom:573.186667pt;}
.y17{bottom:577.533333pt;}
.ye2{bottom:578.013333pt;}
.yb6{bottom:579.293333pt;}
.y105{bottom:581.213333pt;}
.y4b{bottom:584.413333pt;}
.y14d{bottom:586.333333pt;}
.y6b{bottom:586.493333pt;}
.y16{bottom:596.093333pt;}
.yb5{bottom:599.293333pt;}
.y97{bottom:599.933333pt;}
.ye1{bottom:602.653333pt;}
.y4a{bottom:603.133333pt;}
.y14c{bottom:603.933333pt;}
.y6a{bottom:605.213333pt;}
.y12a{bottom:617.373333pt;}
.yb3{bottom:618.013333pt;}
.y96{bottom:618.653333pt;}
.ye0{bottom:621.373333pt;}
.y49{bottom:622.013333pt;}
.y15{bottom:622.813333pt;}
.y69{bottom:623.933333pt;}
.y129{bottom:636.093333pt;}
.y95{bottom:637.373333pt;}
.y14b{bottom:638.973333pt;}
.ydf{bottom:640.093333pt;}
.y48{bottom:641.373333pt;}
.y14{bottom:641.533333pt;}
.y68{bottom:642.653333pt;}
.y128{bottom:654.813333pt;}
.y94{bottom:656.093333pt;}
.y14a{bottom:656.573333pt;}
.yde{bottom:658.813333pt;}
.y13{bottom:660.253333pt;}
.y47{bottom:660.733333pt;}
.y67{bottom:661.373333pt;}
.y127{bottom:673.533333pt;}
.y149{bottom:674.173333pt;}
.y93{bottom:674.813333pt;}
.ydd{bottom:677.533333pt;}
.y12{bottom:678.973333pt;}
.y46{bottom:680.093333pt;}
.y104{bottom:687.613333pt;}
.y148{bottom:691.613333pt;}
.y126{bottom:692.253333pt;}
.ydc{bottom:696.253333pt;}
.y11{bottom:697.693333pt;}
.y45{bottom:698.813333pt;}
.y92{bottom:701.533333pt;}
.y103{bottom:706.333333pt;}
.y147{bottom:709.213333pt;}
.y125{bottom:710.973333pt;}
.ydb{bottom:714.973333pt;}
.y10{bottom:716.413333pt;}
.y44{bottom:717.533333pt;}
.y91{bottom:720.253333pt;}
.yff{bottom:726.333333pt;}
.y146{bottom:726.813333pt;}
.y124{bottom:729.693333pt;}
.yda{bottom:733.693333pt;}
.yf{bottom:735.133333pt;}
.y43{bottom:736.253333pt;}
.y90{bottom:738.973333pt;}
.y123{bottom:742.493333pt;}
.y145{bottom:744.413333pt;}
.y102{bottom:746.493333pt;}
.yd9{bottom:752.413333pt;}
.ye{bottom:753.853333pt;}
.y42{bottom:754.973333pt;}
.y8f{bottom:757.693333pt;}
.y144{bottom:762.013333pt;}
.y122{bottom:762.493333pt;}
.y101{bottom:766.493333pt;}
.yd8{bottom:771.133333pt;}
.y41{bottom:773.693333pt;}
.yd{bottom:774.493333pt;}
.y8e{bottom:776.413333pt;}
.y143{bottom:779.453333pt;}
.y11e{bottom:782.493333pt;}
.yfe{bottom:786.493333pt;}
.yd7{bottom:789.853333pt;}
.y40{bottom:792.413333pt;}
.yc{bottom:793.213333pt;}
.y8d{bottom:795.133333pt;}
.y142{bottom:797.053333pt;}
.y121{bottom:802.693333pt;}
.yfd{bottom:805.253333pt;}
.yd6{bottom:808.613333pt;}
.y3f{bottom:811.173333pt;}
.yb{bottom:811.973333pt;}
.y8c{bottom:813.893333pt;}
.y141{bottom:814.693333pt;}
.y120{bottom:822.693333pt;}
.yd5{bottom:827.333333pt;}
.y3e{bottom:829.893333pt;}
.ya{bottom:831.493333pt;}
.y140{bottom:832.293333pt;}
.y8b{bottom:832.613333pt;}
.y11c{bottom:842.693333pt;}
.yd4{bottom:846.053333pt;}
.y3d{bottom:848.613333pt;}
.y13f{bottom:849.733333pt;}
.y9{bottom:851.333333pt;}
.y8a{bottom:859.333333pt;}
.y11d{bottom:861.413333pt;}
.yd3{bottom:864.773333pt;}
.y3c{bottom:867.333333pt;}
.y8{bottom:873.733333pt;}
.y89{bottom:878.053333pt;}
.yd2{bottom:878.853333pt;}
.y11b{bottom:880.133333pt;}
.y3b{bottom:886.053333pt;}
.y88{bottom:896.773333pt;}
.yd1{bottom:898.853333pt;}
.y7{bottom:903.653333pt;}
.y3a{bottom:904.773333pt;}
.y87{bottom:915.493333pt;}
.yd0{bottom:917.573333pt;}
.y39{bottom:923.493333pt;}
.y5{bottom:938.053333pt;}
.y38{bottom:942.213333pt;}
.y37{bottom:960.933333pt;}
.y4{bottom:965.413333pt;}
.y36{bottom:979.653333pt;}
.y3{bottom:992.773333pt;}
.y35{bottom:998.373333pt;}
.y34{bottom:1017.093333pt;}
.y2{bottom:1020.000000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.hf{height:2.546250pt;}
.hc{height:18.560000pt;}
.h9{height:18.720000pt;}
.ha{height:18.752000pt;}
.h11{height:37.440000pt;}
.hb{height:37.472000pt;}
.h7{height:52.834688pt;}
.h8{height:52.934375pt;}
.h5{height:54.390938pt;}
.h10{height:56.160000pt;}
.h3{height:58.563750pt;}
.hd{height:58.880000pt;}
.h13{height:58.912000pt;}
.h6{height:60.288750pt;}
.h14{height:74.912000pt;}
.h2{height:76.671562pt;}
.h12{height:78.880000pt;}
.h4{height:87.156562pt;}
.he{height:136.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:52.192000pt;}
.w5{width:57.632000pt;}
.w20{width:64.192000pt;}
.w2b{width:71.232000pt;}
.w8{width:72.480000pt;}
.w25{width:72.960000pt;}
.w26{width:73.472000pt;}
.w15{width:80.032000pt;}
.w33{width:80.512000pt;}
.w6{width:81.280000pt;}
.w9{width:86.592000pt;}
.w1c{width:88.352000pt;}
.w1e{width:88.480000pt;}
.w1f{width:89.152000pt;}
.w28{width:90.560000pt;}
.w7{width:92.512000pt;}
.w16{width:94.912000pt;}
.w14{width:99.360000pt;}
.w12{width:99.872000pt;}
.w24{width:102.592000pt;}
.w13{width:106.112000pt;}
.w31{width:111.232000pt;}
.w32{width:111.712000pt;}
.w2d{width:112.352000pt;}
.w21{width:112.480000pt;}
.w27{width:120.192000pt;}
.w17{width:121.632000pt;}
.w1d{width:121.952000pt;}
.w30{width:123.520000pt;}
.wc{width:128.032000pt;}
.w18{width:128.320000pt;}
.wd{width:129.312000pt;}
.w19{width:174.146667pt;}
.w1a{width:174.906667pt;}
.w1b{width:176.666667pt;}
.we{width:193.186667pt;}
.w10{width:195.426667pt;}
.w23{width:212.186667pt;}
.w2a{width:229.626667pt;}
.w22{width:232.866667pt;}
.w2f{width:236.666667pt;}
.w34{width:268.386667pt;}
.w4{width:301.986667pt;}
.wf{width:306.586667pt;}
.wa{width:308.546667pt;}
.w11{width:308.706667pt;}
.w2e{width:348.893333pt;}
.wb{width:388.093333pt;}
.w2c{width:585.573333pt;}
.w35{width:603.453333pt;}
.w3{width:697.920000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:4.000000pt;}
.x2f{left:6.720000pt;}
.x6{left:47.999988pt;}
.x9{left:49.279988pt;}
.x7{left:71.999988pt;}
.x8{left:84.031988pt;}
.x2e{left:95.232000pt;}
.x28{left:100.192000pt;}
.x22{left:112.192000pt;}
.x2d{left:128.512000pt;}
.x5{left:139.066655pt;}
.x19{left:142.906667pt;}
.x1d{left:224.666667pt;}
.x13{left:242.466667pt;}
.x3{left:254.946655pt;}
.x1a{left:265.826667pt;}
.x23{left:280.866667pt;}
.x2{left:311.746655pt;}
.x29{left:329.826667pt;}
.xb{left:349.986667pt;}
.x1e{left:354.146667pt;}
.x15{left:356.706667pt;}
.x10{left:357.826667pt;}
.x4{left:372.706655pt;}
.x1b{left:395.586667pt;}
.x2b{left:396.893333pt;}
.x27{left:402.493333pt;}
.xc{left:408.893333pt;}
.x1{left:426.173322pt;}
.x1f{left:443.773333pt;}
.x16{left:457.853333pt;}
.x11{left:487.293333pt;}
.xd{left:491.613333pt;}
.x24{left:494.333333pt;}
.x2c{left:521.693333pt;}
.x14{left:550.493333pt;}
.x17{left:565.253333pt;}
.x20{left:567.013333pt;}
.x1c{left:571.013333pt;}
.xe{left:585.573333pt;}
.x25{left:598.213333pt;}
.x12{left:616.613333pt;}
.x2a{left:633.573333pt;}
.x21{left:656.773333pt;}
.xf{left:659.333333pt;}
.x18{left:665.893333pt;}
.x26{left:672.453333pt;}
.x30{left:746.079988pt;}
}




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