
    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_d9179d3606c57c85493ed1f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_920d2fe90ed938778e5b4403.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776855;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_b83abb2fdd8a24f0ef2578d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.077637;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_d75890e65a2452751bcc18e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_944408e03d212b5a091a790f.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c0f7a579136c9a2272497d0c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_89b48e8d689f6716c3dcd137.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3b95d74e5034967491ff7deb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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(0.255915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsd{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.017280px;}
.ls5{letter-spacing:-0.004320px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.078000px;}
.ls12{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.lse{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.840000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc3{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(196,89,17),0 0.015em rgb(196,89,17),0.015em 0 rgb(196,89,17),0 -0.015em  rgb(196,89,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc4{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(196,89,17);text-shadow:none;}
}
.ws0{word-spacing:-19.728000px;}
.wsb{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.wse{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.064000px;}
.ws3{word-spacing:-16.272000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-9.732960px;}
.ws4{word-spacing:-9.715680px;}
.ws7{word-spacing:-9.702720px;}
.ws1{word-spacing:-0.049615px;}
.ws8{word-spacing:0.000000px;}
._13{margin-left:-4.752000px;}
._1c{margin-left:-3.744000px;}
._8{margin-left:-2.736000px;}
._0{margin-left:-1.728000px;}
._2{width:1.479600px;}
._12{width:3.240000px;}
._10{width:4.824000px;}
._19{width:5.904000px;}
._9{width:6.984000px;}
._a{width:8.496000px;}
._e{width:9.752400px;}
._f{width:11.304000px;}
._1b{width:12.304800px;}
._7{width:13.320000px;}
._27{width:14.328000px;}
._11{width:15.336000px;}
._1a{width:16.344000px;}
._1e{width:19.368000px;}
._1d{width:20.592000px;}
._5{width:22.248000px;}
._6{width:23.728800px;}
._24{width:24.847200px;}
._25{width:25.945200px;}
._26{width:27.324000px;}
._b{width:28.944000px;}
._4{width:30.888000px;}
._3{width:32.256000px;}
._18{width:34.182720px;}
._1f{width:36.000000px;}
._15{width:37.296000px;}
._16{width:39.168000px;}
._22{width:41.040000px;}
._23{width:42.152400px;}
._17{width:44.115840px;}
._29{width:46.244160px;}
._34{width:48.200400px;}
._44{width:49.716000px;}
._48{width:50.844000px;}
._2a{width:52.776000px;}
._20{width:55.976400px;}
._21{width:57.312000px;}
._39{width:59.688000px;}
._36{width:61.488000px;}
._45{width:62.636400px;}
._37{width:64.224000px;}
._40{width:69.876000px;}
._3c{width:71.712000px;}
._c{width:73.224000px;}
._d{width:74.624400px;}
._43{width:76.140000px;}
._30{width:79.776000px;}
._31{width:80.928000px;}
._14{width:82.800000px;}
._3b{width:87.552000px;}
._2c{width:93.648000px;}
._35{width:95.688000px;}
._28{width:97.848000px;}
._2e{width:99.288000px;}
._3d{width:109.128000px;}
._3a{width:113.328000px;}
._46{width:116.424000px;}
._47{width:117.568800px;}
._2d{width:123.048000px;}
._49{width:124.848000px;}
._4a{width:125.964000px;}
._38{width:132.336000px;}
._3f{width:145.152000px;}
._32{width:162.576000px;}
._41{width:167.432400px;}
._33{width:170.456400px;}
._2b{width:194.256000px;}
._3e{width:344.736000px;}
._42{width:355.389600px;}
._1{width:432.178320px;}
._2f{width:462.168000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc0{color:rgb(196,89,17);}
.fs9{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:49.615044px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.240000px;}
.y9{bottom:3.393136px;}
.y49{bottom:3.585000px;}
.yc4{bottom:4.140000px;}
.y116{bottom:4.170000px;}
.yd6{bottom:4.485000px;}
.yc7{bottom:4.500000px;}
.yfd{bottom:4.530000px;}
.y56{bottom:4.680000px;}
.y40{bottom:4.860000px;}
.y4d{bottom:7.905000px;}
.yb{bottom:9.000000px;}
.y55{bottom:14.040000px;}
.y11{bottom:16.020000px;}
.yd{bottom:19.980000px;}
.y48{bottom:21.585000px;}
.yc3{bottom:24.840000px;}
.y115{bottom:24.870000px;}
.yca{bottom:25.020000px;}
.yed{bottom:25.050000px;}
.yd8{bottom:25.185000px;}
.yc6{bottom:25.200000px;}
.ycf{bottom:25.230000px;}
.ye{bottom:26.820000px;}
.yc{bottom:27.000000px;}
.y10{bottom:27.360000px;}
.y4c{bottom:29.505000px;}
.y54{bottom:31.710000px;}
.y7{bottom:35.100000px;}
.y47{bottom:42.285000px;}
.yf0{bottom:45.885000px;}
.yeb{bottom:45.900000px;}
.y53{bottom:50.610000px;}
.y4b{bottom:51.105000px;}
.y46{bottom:63.030000px;}
.ye1{bottom:66.420000px;}
.yf7{bottom:69.300000px;}
.y52{bottom:69.690000px;}
.y89{bottom:70.920000px;}
.y127{bottom:72.360000px;}
.y111{bottom:73.800000px;}
.y3e{bottom:80.100000px;}
.y144{bottom:81.000000px;}
.y145{bottom:82.440000px;}
.yb1{bottom:82.800000px;}
.y45{bottom:83.730000px;}
.ye0{bottom:87.120000px;}
.y51{bottom:88.590000px;}
.yf6{bottom:90.000000px;}
.y88{bottom:91.620000px;}
.y126{bottom:93.060000px;}
.y110{bottom:94.500000px;}
.y3d{bottom:100.800000px;}
.y143{bottom:101.700000px;}
.yb0{bottom:103.500000px;}
.y44{bottom:104.430000px;}
.y50{bottom:107.130000px;}
.ydf{bottom:107.820000px;}
.yf5{bottom:110.700000px;}
.y87{bottom:112.320000px;}
.y125{bottom:113.760000px;}
.y10f{bottom:115.200000px;}
.y3c{bottom:121.500000px;}
.y142{bottom:122.400000px;}
.yaf{bottom:124.200000px;}
.y43{bottom:125.130000px;}
.yf4{bottom:127.800000px;}
.yde{bottom:128.520000px;}
.y4f{bottom:130.350000px;}
.y86{bottom:133.020000px;}
.y124{bottom:134.460000px;}
.y10e{bottom:135.900000px;}
.y3b{bottom:142.200000px;}
.y141{bottom:143.100000px;}
.yae{bottom:144.900000px;}
.ydd{bottom:145.440000px;}
.y4e{bottom:152.640000px;}
.y85{bottom:153.720000px;}
.y123{bottom:155.160000px;}
.y10d{bottom:156.600000px;}
.y3a{bottom:162.900000px;}
.y140{bottom:163.800000px;}
.yad{bottom:165.600000px;}
.yf3{bottom:169.965000px;}
.y122{bottom:172.125000px;}
.y84{bottom:174.450000px;}
.y10c{bottom:177.330000px;}
.y39{bottom:183.630000px;}
.y13f{bottom:184.530000px;}
.yac{bottom:186.330000px;}
.ydc{bottom:187.605000px;}
.y83{bottom:195.150000px;}
.y10b{bottom:198.030000px;}
.y38{bottom:204.330000px;}
.y13e{bottom:205.230000px;}
.yab{bottom:207.030000px;}
.yf2{bottom:212.085000px;}
.y82{bottom:215.850000px;}
.y10a{bottom:218.730000px;}
.y37{bottom:225.030000px;}
.y13d{bottom:225.930000px;}
.y148{bottom:227.370000px;}
.yaa{bottom:227.730000px;}
.ydb{bottom:229.725000px;}
.y121{bottom:234.945000px;}
.y81{bottom:236.550000px;}
.y109{bottom:239.430000px;}
.y36{bottom:245.730000px;}
.y13c{bottom:246.630000px;}
.y147{bottom:248.070000px;}
.ya9{bottom:248.430000px;}
.yf1{bottom:254.205000px;}
.y80{bottom:257.250000px;}
.y108{bottom:260.130000px;}
.y35{bottom:266.250000px;}
.y13b{bottom:267.330000px;}
.ya8{bottom:269.130000px;}
.yda{bottom:271.845000px;}
.y7f{bottom:277.950000px;}
.y107{bottom:280.830000px;}
.y34{bottom:286.950000px;}
.y13a{bottom:288.030000px;}
.ya7{bottom:289.470000px;}
.yba{bottom:289.830000px;}
.yef{bottom:296.325000px;}
.y4a{bottom:297.585000px;}
.y120{bottom:297.945000px;}
.y7e{bottom:298.650000px;}
.y106{bottom:301.530000px;}
.y33{bottom:307.650000px;}
.y139{bottom:308.370000px;}
.ya6{bottom:310.170000px;}
.yb9{bottom:310.530000px;}
.yd9{bottom:314.145000px;}
.y7d{bottom:319.350000px;}
.y105{bottom:322.230000px;}
.y32{bottom:328.350000px;}
.y138{bottom:329.070000px;}
.ya5{bottom:331.230000px;}
.y7c{bottom:340.050000px;}
.y11f{bottom:340.065000px;}
.y104{bottom:342.930000px;}
.y31{bottom:349.050000px;}
.y137{bottom:350.130000px;}
.yb8{bottom:351.570000px;}
.ya4{bottom:351.930000px;}
.yd7{bottom:356.265000px;}
.yee{bottom:359.145000px;}
.y7b{bottom:360.750000px;}
.y42{bottom:363.465000px;}
.y103{bottom:363.630000px;}
.y30{bottom:369.750000px;}
.y136{bottom:370.830000px;}
.yb7{bottom:372.270000px;}
.ya3{bottom:372.630000px;}
.y7a{bottom:381.450000px;}
.y11e{bottom:382.185000px;}
.y102{bottom:384.330000px;}
.y2f{bottom:390.450000px;}
.y135{bottom:391.530000px;}
.ya2{bottom:393.330000px;}
.yd5{bottom:398.385000px;}
.yec{bottom:401.445000px;}
.y79{bottom:402.150000px;}
.y2e{bottom:411.150000px;}
.y134{bottom:412.230000px;}
.ya1{bottom:414.075000px;}
.y78{bottom:422.895000px;}
.y11d{bottom:424.335000px;}
.y2d{bottom:431.895000px;}
.y133{bottom:432.975000px;}
.ya0{bottom:434.775000px;}
.yd4{bottom:440.535000px;}
.y77{bottom:443.595000px;}
.y2c{bottom:452.595000px;}
.y132{bottom:453.675000px;}
.y9f{bottom:455.475000px;}
.yd3{bottom:461.955000px;}
.y76{bottom:464.295000px;}
.y11c{bottom:466.455000px;}
.y2b{bottom:473.295000px;}
.y131{bottom:474.375000px;}
.ybf{bottom:475.815000px;}
.y9e{bottom:476.175000px;}
.yd2{bottom:483.375000px;}
.y75{bottom:484.995000px;}
.y101{bottom:485.715000px;}
.y2a{bottom:493.635000px;}
.y130{bottom:495.075000px;}
.ybe{bottom:496.515000px;}
.y9d{bottom:496.875000px;}
.y41{bottom:505.695000px;}
.yea{bottom:506.415000px;}
.y11b{bottom:508.575000px;}
.y3f{bottom:511.635000px;}
.y12f{bottom:515.775000px;}
.y9c{bottom:517.575000px;}
.yd1{bottom:525.495000px;}
.y74{bottom:526.395000px;}
.y100{bottom:527.835000px;}
.y12e{bottom:536.475000px;}
.y9b{bottom:537.915000px;}
.yb6{bottom:538.275000px;}
.y29{bottom:539.175000px;}
.y73{bottom:547.095000px;}
.ye9{bottom:548.535000px;}
.y11a{bottom:550.695000px;}
.y12d{bottom:557.175000px;}
.y9a{bottom:558.615000px;}
.yb5{bottom:558.975000px;}
.y28{bottom:559.515000px;}
.y72{bottom:567.795000px;}
.yff{bottom:569.955000px;}
.y12c{bottom:577.875000px;}
.y99{bottom:579.315000px;}
.yb4{bottom:579.675000px;}
.y27{bottom:580.575000px;}
.y71{bottom:588.495000px;}
.ye8{bottom:590.655000px;}
.y119{bottom:592.995000px;}
.y12b{bottom:598.575000px;}
.y98{bottom:600.375000px;}
.y26{bottom:601.275000px;}
.y70{bottom:609.195000px;}
.yd0{bottom:609.915000px;}
.yfe{bottom:612.075000px;}
.y118{bottom:614.415000px;}
.y12a{bottom:618.915000px;}
.y97{bottom:621.075000px;}
.y25{bottom:621.615000px;}
.y6f{bottom:629.895000px;}
.ye7{bottom:632.775000px;}
.y117{bottom:635.835000px;}
.y129{bottom:639.615000px;}
.y96{bottom:641.775000px;}
.y24{bottom:642.675000px;}
.y6e{bottom:650.595000px;}
.yce{bottom:652.035000px;}
.yfc{bottom:654.195000px;}
.y128{bottom:656.175000px;}
.y114{bottom:657.255000px;}
.y95{bottom:662.505000px;}
.y23{bottom:663.405000px;}
.y6d{bottom:671.325000px;}
.ye6{bottom:674.925000px;}
.y94{bottom:683.205000px;}
.y22{bottom:683.745000px;}
.y6c{bottom:692.025000px;}
.ycd{bottom:694.185000px;}
.yfb{bottom:696.525000px;}
.y93{bottom:703.905000px;}
.y21{bottom:704.805000px;}
.y6b{bottom:712.725000px;}
.ycc{bottom:715.605000px;}
.ye5{bottom:717.225000px;}
.y113{bottom:724.245000px;}
.y92{bottom:724.605000px;}
.y20{bottom:725.505000px;}
.y6a{bottom:733.425000px;}
.ycb{bottom:737.025000px;}
.yfa{bottom:738.645000px;}
.y112{bottom:744.945000px;}
.y91{bottom:745.305000px;}
.y1f{bottom:745.845000px;}
.y69{bottom:754.125000px;}
.yc9{bottom:758.625000px;}
.ye4{bottom:759.345000px;}
.y90{bottom:766.005000px;}
.y1e{bottom:766.905000px;}
.y68{bottom:774.645000px;}
.yf9{bottom:780.780000px;}
.y8f{bottom:786.705000px;}
.y1d{bottom:787.605000px;}
.y67{bottom:795.345000px;}
.yc8{bottom:800.745000px;}
.ye3{bottom:801.465000px;}
.y8e{bottom:807.405000px;}
.y1c{bottom:807.945000px;}
.y66{bottom:816.045000px;}
.yc5{bottom:822.165000px;}
.yf8{bottom:822.885000px;}
.y8d{bottom:828.105000px;}
.y1b{bottom:829.005000px;}
.y65{bottom:836.745000px;}
.ye2{bottom:843.585000px;}
.y8c{bottom:848.805000px;}
.y1a{bottom:849.705000px;}
.y64{bottom:857.445000px;}
.yc2{bottom:864.285000px;}
.ybd{bottom:869.145000px;}
.y8b{bottom:869.505000px;}
.y19{bottom:870.045000px;}
.y63{bottom:877.785000px;}
.yb3{bottom:889.845000px;}
.y8a{bottom:890.205000px;}
.y18{bottom:891.105000px;}
.yb2{bottom:910.590000px;}
.y62{bottom:910.950000px;}
.y17{bottom:911.850000px;}
.yc1{bottom:931.290000px;}
.y61{bottom:931.650000px;}
.y16{bottom:932.190000px;}
.yc0{bottom:951.990000px;}
.y60{bottom:952.350000px;}
.y15{bottom:952.890000px;}
.y5f{bottom:973.050000px;}
.ybc{bottom:993.390000px;}
.y5e{bottom:993.750000px;}
.y14{bottom:995.370000px;}
.ybb{bottom:1014.090000px;}
.y5d{bottom:1014.450000px;}
.y13{bottom:1019.310000px;}
.y5c{bottom:1035.150000px;}
.y12{bottom:1043.430000px;}
.y5b{bottom:1055.850000px;}
.y6{bottom:1066.650000px;}
.y5a{bottom:1076.550000px;}
.y5{bottom:1084.110000px;}
.y59{bottom:1097.250000px;}
.y4{bottom:1103.370000px;}
.y8{bottom:1110.041583px;}
.y58{bottom:1117.950000px;}
.y3{bottom:1133.430000px;}
.y146{bottom:1138.290000px;}
.y57{bottom:1138.650000px;}
.y2{bottom:1150.920000px;}
.y1{bottom:1179.720000px;}
.ya{bottom:1218.960000px;}
.h7{height:15.846752px;}
.h1c{height:20.160000px;}
.h25{height:20.685000px;}
.h21{height:20.700000px;}
.h12{height:21.945000px;}
.h5{height:31.952109px;}
.h9{height:32.580000px;}
.hd{height:33.120000px;}
.hb{height:40.140000px;}
.h22{height:41.220000px;}
.h29{height:41.241000px;}
.h24{height:41.385000px;}
.h20{height:41.400000px;}
.h26{height:41.421000px;}
.h1f{height:41.422500px;}
.h23{height:41.430000px;}
.h27{height:41.436000px;}
.h4{height:41.738906px;}
.hc{height:45.116367px;}
.h1e{height:50.273438px;}
.h8{height:51.746940px;}
.h6{height:53.709961px;}
.h3{height:54.070312px;}
.h14{height:58.651172px;}
.h16{height:60.226875px;}
.h28{height:62.085000px;}
.h15{height:64.971000px;}
.h17{height:64.980000px;}
.h1b{height:65.010937px;}
.h1a{height:66.757500px;}
.h1d{height:67.824844px;}
.h11{height:70.664062px;}
.ha{height:71.613281px;}
.h10{height:72.562500px;}
.he{height:73.722656px;}
.h2{height:81.105469px;}
.hf{height:84.898125px;}
.h13{height:141.322500px;}
.h18{height:144.216000px;}
.h19{height:144.225000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:70.402500px;}
.w6{width:76.522500px;}
.w1d{width:86.781000px;}
.we{width:88.041000px;}
.w18{width:94.521000px;}
.w13{width:94.881000px;}
.w2{width:103.903623px;}
.w17{width:109.065000px;}
.w16{width:109.476000px;}
.w1c{width:109.785000px;}
.w1b{width:110.196000px;}
.w12{width:112.305000px;}
.wd{width:112.665000px;}
.w11{width:112.896000px;}
.w15{width:113.220000px;}
.wc{width:113.256000px;}
.w1a{width:114.300000px;}
.w10{width:118.440000px;}
.wb{width:118.980000px;}
.w3{width:193.500000px;}
.wf{width:206.841000px;}
.wa{width:212.601000px;}
.w14{width:219.441000px;}
.w19{width:224.301000px;}
.w8{width:263.415000px;}
.w7{width:418.755000px;}
.w4{width:442.980000px;}
.w5{width:443.055000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x9{left:9.540000px;}
.x7{left:11.294611px;}
.xa{left:15.120000px;}
.xb{left:22.860000px;}
.x18{left:34.731000px;}
.x13{left:57.240000px;}
.x14{left:77.616000px;}
.x17{left:108.765000px;}
.x2{left:135.036000px;}
.x1{left:148.536000px;}
.xe{left:152.670000px;}
.xd{left:155.910000px;}
.x3{left:172.110000px;}
.x12{left:177.690000px;}
.x28{left:189.030000px;}
.x1d{left:316.335000px;}
.x19{left:322.095000px;}
.x21{left:328.935000px;}
.x23{left:333.975000px;}
.x10{left:335.415000px;}
.x11{left:348.915000px;}
.xf{left:366.375000px;}
.x1e{left:435.675000px;}
.x1a{left:441.975000px;}
.x5{left:446.475000px;}
.x24{left:449.175000px;}
.x6{left:524.071498px;}
.x1f{left:549.300000px;}
.x22{left:553.080000px;}
.x1b{left:555.960000px;}
.x25{left:560.100000px;}
.x4{left:629.925000px;}
.x8{left:652.231498px;}
.x20{left:662.520000px;}
.x1c{left:669.360000px;}
.x26{left:670.620000px;}
.xc{left:682.860000px;}
.x16{left:687.360000px;}
.x27{left:837.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls5{letter-spacing:-0.003840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.069333pt;}
.ls12{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.746667pt;}
.ws0{word-spacing:-17.536000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.168000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-8.651520pt;}
.ws4{word-spacing:-8.636160pt;}
.ws7{word-spacing:-8.624640pt;}
.ws1{word-spacing:-0.044102pt;}
.ws8{word-spacing:0.000000pt;}
._13{margin-left:-4.224000pt;}
._1c{margin-left:-3.328000pt;}
._8{margin-left:-2.432000pt;}
._0{margin-left:-1.536000pt;}
._2{width:1.315200pt;}
._12{width:2.880000pt;}
._10{width:4.288000pt;}
._19{width:5.248000pt;}
._9{width:6.208000pt;}
._a{width:7.552000pt;}
._e{width:8.668800pt;}
._f{width:10.048000pt;}
._1b{width:10.937600pt;}
._7{width:11.840000pt;}
._27{width:12.736000pt;}
._11{width:13.632000pt;}
._1a{width:14.528000pt;}
._1e{width:17.216000pt;}
._1d{width:18.304000pt;}
._5{width:19.776000pt;}
._6{width:21.092267pt;}
._24{width:22.086400pt;}
._25{width:23.062400pt;}
._26{width:24.288000pt;}
._b{width:25.728000pt;}
._4{width:27.456000pt;}
._3{width:28.672000pt;}
._18{width:30.384640pt;}
._1f{width:32.000000pt;}
._15{width:33.152000pt;}
._16{width:34.816000pt;}
._22{width:36.480000pt;}
._23{width:37.468800pt;}
._17{width:39.214080pt;}
._29{width:41.105920pt;}
._34{width:42.844800pt;}
._44{width:44.192000pt;}
._48{width:45.194667pt;}
._2a{width:46.912000pt;}
._20{width:49.756800pt;}
._21{width:50.944000pt;}
._39{width:53.056000pt;}
._36{width:54.656000pt;}
._45{width:55.676800pt;}
._37{width:57.088000pt;}
._40{width:62.112000pt;}
._3c{width:63.744000pt;}
._c{width:65.088000pt;}
._d{width:66.332800pt;}
._43{width:67.680000pt;}
._30{width:70.912000pt;}
._31{width:71.936000pt;}
._14{width:73.600000pt;}
._3b{width:77.824000pt;}
._2c{width:83.242667pt;}
._35{width:85.056000pt;}
._28{width:86.976000pt;}
._2e{width:88.256000pt;}
._3d{width:97.002667pt;}
._3a{width:100.736000pt;}
._46{width:103.488000pt;}
._47{width:104.505600pt;}
._2d{width:109.376000pt;}
._49{width:110.976000pt;}
._4a{width:111.968000pt;}
._38{width:117.632000pt;}
._3f{width:129.024000pt;}
._32{width:144.512000pt;}
._41{width:148.828800pt;}
._33{width:151.516800pt;}
._2b{width:172.672000pt;}
._3e{width:306.432000pt;}
._42{width:315.901867pt;}
._1{width:384.158507pt;}
._2f{width:410.816000pt;}
.fs9{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:44.102261pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:2.880000pt;}
.y9{bottom:3.016121pt;}
.y49{bottom:3.186667pt;}
.yc4{bottom:3.680000pt;}
.y116{bottom:3.706667pt;}
.yd6{bottom:3.986667pt;}
.yc7{bottom:4.000000pt;}
.yfd{bottom:4.026667pt;}
.y56{bottom:4.160000pt;}
.y40{bottom:4.320000pt;}
.y4d{bottom:7.026667pt;}
.yb{bottom:8.000000pt;}
.y55{bottom:12.480000pt;}
.y11{bottom:14.240000pt;}
.yd{bottom:17.760000pt;}
.y48{bottom:19.186667pt;}
.yc3{bottom:22.080000pt;}
.y115{bottom:22.106667pt;}
.yca{bottom:22.240000pt;}
.yed{bottom:22.266667pt;}
.yd8{bottom:22.386667pt;}
.yc6{bottom:22.400000pt;}
.ycf{bottom:22.426667pt;}
.ye{bottom:23.840000pt;}
.yc{bottom:24.000000pt;}
.y10{bottom:24.320000pt;}
.y4c{bottom:26.226667pt;}
.y54{bottom:28.186667pt;}
.y7{bottom:31.200000pt;}
.y47{bottom:37.586667pt;}
.yf0{bottom:40.786667pt;}
.yeb{bottom:40.800000pt;}
.y53{bottom:44.986667pt;}
.y4b{bottom:45.426667pt;}
.y46{bottom:56.026667pt;}
.ye1{bottom:59.040000pt;}
.yf7{bottom:61.600000pt;}
.y52{bottom:61.946667pt;}
.y89{bottom:63.040000pt;}
.y127{bottom:64.320000pt;}
.y111{bottom:65.600000pt;}
.y3e{bottom:71.200000pt;}
.y144{bottom:72.000000pt;}
.y145{bottom:73.280000pt;}
.yb1{bottom:73.600000pt;}
.y45{bottom:74.426667pt;}
.ye0{bottom:77.440000pt;}
.y51{bottom:78.746667pt;}
.yf6{bottom:80.000000pt;}
.y88{bottom:81.440000pt;}
.y126{bottom:82.720000pt;}
.y110{bottom:84.000000pt;}
.y3d{bottom:89.600000pt;}
.y143{bottom:90.400000pt;}
.yb0{bottom:92.000000pt;}
.y44{bottom:92.826667pt;}
.y50{bottom:95.226667pt;}
.ydf{bottom:95.840000pt;}
.yf5{bottom:98.400000pt;}
.y87{bottom:99.840000pt;}
.y125{bottom:101.120000pt;}
.y10f{bottom:102.400000pt;}
.y3c{bottom:108.000000pt;}
.y142{bottom:108.800000pt;}
.yaf{bottom:110.400000pt;}
.y43{bottom:111.226667pt;}
.yf4{bottom:113.600000pt;}
.yde{bottom:114.240000pt;}
.y4f{bottom:115.866667pt;}
.y86{bottom:118.240000pt;}
.y124{bottom:119.520000pt;}
.y10e{bottom:120.800000pt;}
.y3b{bottom:126.400000pt;}
.y141{bottom:127.200000pt;}
.yae{bottom:128.800000pt;}
.ydd{bottom:129.280000pt;}
.y4e{bottom:135.680000pt;}
.y85{bottom:136.640000pt;}
.y123{bottom:137.920000pt;}
.y10d{bottom:139.200000pt;}
.y3a{bottom:144.800000pt;}
.y140{bottom:145.600000pt;}
.yad{bottom:147.200000pt;}
.yf3{bottom:151.080000pt;}
.y122{bottom:153.000000pt;}
.y84{bottom:155.066667pt;}
.y10c{bottom:157.626667pt;}
.y39{bottom:163.226667pt;}
.y13f{bottom:164.026667pt;}
.yac{bottom:165.626667pt;}
.ydc{bottom:166.760000pt;}
.y83{bottom:173.466667pt;}
.y10b{bottom:176.026667pt;}
.y38{bottom:181.626667pt;}
.y13e{bottom:182.426667pt;}
.yab{bottom:184.026667pt;}
.yf2{bottom:188.520000pt;}
.y82{bottom:191.866667pt;}
.y10a{bottom:194.426667pt;}
.y37{bottom:200.026667pt;}
.y13d{bottom:200.826667pt;}
.y148{bottom:202.106667pt;}
.yaa{bottom:202.426667pt;}
.ydb{bottom:204.200000pt;}
.y121{bottom:208.840000pt;}
.y81{bottom:210.266667pt;}
.y109{bottom:212.826667pt;}
.y36{bottom:218.426667pt;}
.y13c{bottom:219.226667pt;}
.y147{bottom:220.506667pt;}
.ya9{bottom:220.826667pt;}
.yf1{bottom:225.960000pt;}
.y80{bottom:228.666667pt;}
.y108{bottom:231.226667pt;}
.y35{bottom:236.666667pt;}
.y13b{bottom:237.626667pt;}
.ya8{bottom:239.226667pt;}
.yda{bottom:241.640000pt;}
.y7f{bottom:247.066667pt;}
.y107{bottom:249.626667pt;}
.y34{bottom:255.066667pt;}
.y13a{bottom:256.026667pt;}
.ya7{bottom:257.306667pt;}
.yba{bottom:257.626667pt;}
.yef{bottom:263.400000pt;}
.y4a{bottom:264.520000pt;}
.y120{bottom:264.840000pt;}
.y7e{bottom:265.466667pt;}
.y106{bottom:268.026667pt;}
.y33{bottom:273.466667pt;}
.y139{bottom:274.106667pt;}
.ya6{bottom:275.706667pt;}
.yb9{bottom:276.026667pt;}
.yd9{bottom:279.240000pt;}
.y7d{bottom:283.866667pt;}
.y105{bottom:286.426667pt;}
.y32{bottom:291.866667pt;}
.y138{bottom:292.506667pt;}
.ya5{bottom:294.426667pt;}
.y7c{bottom:302.266667pt;}
.y11f{bottom:302.280000pt;}
.y104{bottom:304.826667pt;}
.y31{bottom:310.266667pt;}
.y137{bottom:311.226667pt;}
.yb8{bottom:312.506667pt;}
.ya4{bottom:312.826667pt;}
.yd7{bottom:316.680000pt;}
.yee{bottom:319.240000pt;}
.y7b{bottom:320.666667pt;}
.y42{bottom:323.080000pt;}
.y103{bottom:323.226667pt;}
.y30{bottom:328.666667pt;}
.y136{bottom:329.626667pt;}
.yb7{bottom:330.906667pt;}
.ya3{bottom:331.226667pt;}
.y7a{bottom:339.066667pt;}
.y11e{bottom:339.720000pt;}
.y102{bottom:341.626667pt;}
.y2f{bottom:347.066667pt;}
.y135{bottom:348.026667pt;}
.ya2{bottom:349.626667pt;}
.yd5{bottom:354.120000pt;}
.yec{bottom:356.840000pt;}
.y79{bottom:357.466667pt;}
.y2e{bottom:365.466667pt;}
.y134{bottom:366.426667pt;}
.ya1{bottom:368.066667pt;}
.y78{bottom:375.906667pt;}
.y11d{bottom:377.186667pt;}
.y2d{bottom:383.906667pt;}
.y133{bottom:384.866667pt;}
.ya0{bottom:386.466667pt;}
.yd4{bottom:391.586667pt;}
.y77{bottom:394.306667pt;}
.y2c{bottom:402.306667pt;}
.y132{bottom:403.266667pt;}
.y9f{bottom:404.866667pt;}
.yd3{bottom:410.626667pt;}
.y76{bottom:412.706667pt;}
.y11c{bottom:414.626667pt;}
.y2b{bottom:420.706667pt;}
.y131{bottom:421.666667pt;}
.ybf{bottom:422.946667pt;}
.y9e{bottom:423.266667pt;}
.yd2{bottom:429.666667pt;}
.y75{bottom:431.106667pt;}
.y101{bottom:431.746667pt;}
.y2a{bottom:438.786667pt;}
.y130{bottom:440.066667pt;}
.ybe{bottom:441.346667pt;}
.y9d{bottom:441.666667pt;}
.y41{bottom:449.506667pt;}
.yea{bottom:450.146667pt;}
.y11b{bottom:452.066667pt;}
.y3f{bottom:454.786667pt;}
.y12f{bottom:458.466667pt;}
.y9c{bottom:460.066667pt;}
.yd1{bottom:467.106667pt;}
.y74{bottom:467.906667pt;}
.y100{bottom:469.186667pt;}
.y12e{bottom:476.866667pt;}
.y9b{bottom:478.146667pt;}
.yb6{bottom:478.466667pt;}
.y29{bottom:479.266667pt;}
.y73{bottom:486.306667pt;}
.ye9{bottom:487.586667pt;}
.y11a{bottom:489.506667pt;}
.y12d{bottom:495.266667pt;}
.y9a{bottom:496.546667pt;}
.yb5{bottom:496.866667pt;}
.y28{bottom:497.346667pt;}
.y72{bottom:504.706667pt;}
.yff{bottom:506.626667pt;}
.y12c{bottom:513.666667pt;}
.y99{bottom:514.946667pt;}
.yb4{bottom:515.266667pt;}
.y27{bottom:516.066667pt;}
.y71{bottom:523.106667pt;}
.ye8{bottom:525.026667pt;}
.y119{bottom:527.106667pt;}
.y12b{bottom:532.066667pt;}
.y98{bottom:533.666667pt;}
.y26{bottom:534.466667pt;}
.y70{bottom:541.506667pt;}
.yd0{bottom:542.146667pt;}
.yfe{bottom:544.066667pt;}
.y118{bottom:546.146667pt;}
.y12a{bottom:550.146667pt;}
.y97{bottom:552.066667pt;}
.y25{bottom:552.546667pt;}
.y6f{bottom:559.906667pt;}
.ye7{bottom:562.466667pt;}
.y117{bottom:565.186667pt;}
.y129{bottom:568.546667pt;}
.y96{bottom:570.466667pt;}
.y24{bottom:571.266667pt;}
.y6e{bottom:578.306667pt;}
.yce{bottom:579.586667pt;}
.yfc{bottom:581.506667pt;}
.y128{bottom:583.266667pt;}
.y114{bottom:584.226667pt;}
.y95{bottom:588.893333pt;}
.y23{bottom:589.693333pt;}
.y6d{bottom:596.733333pt;}
.ye6{bottom:599.933333pt;}
.y94{bottom:607.293333pt;}
.y22{bottom:607.773333pt;}
.y6c{bottom:615.133333pt;}
.ycd{bottom:617.053333pt;}
.yfb{bottom:619.133333pt;}
.y93{bottom:625.693333pt;}
.y21{bottom:626.493333pt;}
.y6b{bottom:633.533333pt;}
.ycc{bottom:636.093333pt;}
.ye5{bottom:637.533333pt;}
.y113{bottom:643.773333pt;}
.y92{bottom:644.093333pt;}
.y20{bottom:644.893333pt;}
.y6a{bottom:651.933333pt;}
.ycb{bottom:655.133333pt;}
.yfa{bottom:656.573333pt;}
.y112{bottom:662.173333pt;}
.y91{bottom:662.493333pt;}
.y1f{bottom:662.973333pt;}
.y69{bottom:670.333333pt;}
.yc9{bottom:674.333333pt;}
.ye4{bottom:674.973333pt;}
.y90{bottom:680.893333pt;}
.y1e{bottom:681.693333pt;}
.y68{bottom:688.573333pt;}
.yf9{bottom:694.026667pt;}
.y8f{bottom:699.293333pt;}
.y1d{bottom:700.093333pt;}
.y67{bottom:706.973333pt;}
.yc8{bottom:711.773333pt;}
.ye3{bottom:712.413333pt;}
.y8e{bottom:717.693333pt;}
.y1c{bottom:718.173333pt;}
.y66{bottom:725.373333pt;}
.yc5{bottom:730.813333pt;}
.yf8{bottom:731.453333pt;}
.y8d{bottom:736.093333pt;}
.y1b{bottom:736.893333pt;}
.y65{bottom:743.773333pt;}
.ye2{bottom:749.853333pt;}
.y8c{bottom:754.493333pt;}
.y1a{bottom:755.293333pt;}
.y64{bottom:762.173333pt;}
.yc2{bottom:768.253333pt;}
.ybd{bottom:772.573333pt;}
.y8b{bottom:772.893333pt;}
.y19{bottom:773.373333pt;}
.y63{bottom:780.253333pt;}
.yb3{bottom:790.973333pt;}
.y8a{bottom:791.293333pt;}
.y18{bottom:792.093333pt;}
.yb2{bottom:809.413333pt;}
.y62{bottom:809.733333pt;}
.y17{bottom:810.533333pt;}
.yc1{bottom:827.813333pt;}
.y61{bottom:828.133333pt;}
.y16{bottom:828.613333pt;}
.yc0{bottom:846.213333pt;}
.y60{bottom:846.533333pt;}
.y15{bottom:847.013333pt;}
.y5f{bottom:864.933333pt;}
.ybc{bottom:883.013333pt;}
.y5e{bottom:883.333333pt;}
.y14{bottom:884.773333pt;}
.ybb{bottom:901.413333pt;}
.y5d{bottom:901.733333pt;}
.y13{bottom:906.053333pt;}
.y5c{bottom:920.133333pt;}
.y12{bottom:927.493333pt;}
.y5b{bottom:938.533333pt;}
.y6{bottom:948.133333pt;}
.y5a{bottom:956.933333pt;}
.y5{bottom:963.653333pt;}
.y59{bottom:975.333333pt;}
.y4{bottom:980.773333pt;}
.y8{bottom:986.703630pt;}
.y58{bottom:993.733333pt;}
.y3{bottom:1007.493333pt;}
.y146{bottom:1011.813333pt;}
.y57{bottom:1012.133333pt;}
.y2{bottom:1023.040000pt;}
.y1{bottom:1048.640000pt;}
.ya{bottom:1083.520000pt;}
.h7{height:14.086002pt;}
.h1c{height:17.920000pt;}
.h25{height:18.386667pt;}
.h21{height:18.400000pt;}
.h12{height:19.506667pt;}
.h5{height:28.401875pt;}
.h9{height:28.960000pt;}
.hd{height:29.440000pt;}
.hb{height:35.680000pt;}
.h22{height:36.640000pt;}
.h29{height:36.658667pt;}
.h24{height:36.786667pt;}
.h20{height:36.800000pt;}
.h26{height:36.818667pt;}
.h1f{height:36.820000pt;}
.h23{height:36.826667pt;}
.h27{height:36.832000pt;}
.h4{height:37.101250pt;}
.hc{height:40.103437pt;}
.h1e{height:44.687500pt;}
.h8{height:45.997280pt;}
.h6{height:47.742188pt;}
.h3{height:48.062500pt;}
.h14{height:52.134375pt;}
.h16{height:53.535000pt;}
.h28{height:55.186667pt;}
.h15{height:57.752000pt;}
.h17{height:57.760000pt;}
.h1b{height:57.787500pt;}
.h1a{height:59.340000pt;}
.h1d{height:60.288750pt;}
.h11{height:62.812500pt;}
.ha{height:63.656250pt;}
.h10{height:64.500000pt;}
.he{height:65.531250pt;}
.h2{height:72.093750pt;}
.hf{height:75.465000pt;}
.h13{height:125.620000pt;}
.h18{height:128.192000pt;}
.h19{height:128.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:62.580000pt;}
.w6{width:68.020000pt;}
.w1d{width:77.138667pt;}
.we{width:78.258667pt;}
.w18{width:84.018667pt;}
.w13{width:84.338667pt;}
.w2{width:92.358776pt;}
.w17{width:96.946667pt;}
.w16{width:97.312000pt;}
.w1c{width:97.586667pt;}
.w1b{width:97.952000pt;}
.w12{width:99.826667pt;}
.wd{width:100.146667pt;}
.w11{width:100.352000pt;}
.w15{width:100.640000pt;}
.wc{width:100.672000pt;}
.w1a{width:101.600000pt;}
.w10{width:105.280000pt;}
.wb{width:105.760000pt;}
.w3{width:172.000000pt;}
.wf{width:183.858667pt;}
.wa{width:188.978667pt;}
.w14{width:195.058667pt;}
.w19{width:199.378667pt;}
.w8{width:234.146667pt;}
.w7{width:372.226667pt;}
.w4{width:393.760000pt;}
.w5{width:393.826667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x9{left:8.480000pt;}
.x7{left:10.039654pt;}
.xa{left:13.440000pt;}
.xb{left:20.320000pt;}
.x18{left:30.872000pt;}
.x13{left:50.880000pt;}
.x14{left:68.992000pt;}
.x17{left:96.680000pt;}
.x2{left:120.032000pt;}
.x1{left:132.032000pt;}
.xe{left:135.706667pt;}
.xd{left:138.586667pt;}
.x3{left:152.986667pt;}
.x12{left:157.946667pt;}
.x28{left:168.026667pt;}
.x1d{left:281.186667pt;}
.x19{left:286.306667pt;}
.x21{left:292.386667pt;}
.x23{left:296.866667pt;}
.x10{left:298.146667pt;}
.x11{left:310.146667pt;}
.xf{left:325.666667pt;}
.x1e{left:387.266667pt;}
.x1a{left:392.866667pt;}
.x5{left:396.866667pt;}
.x24{left:399.266667pt;}
.x6{left:465.841331pt;}
.x1f{left:488.266667pt;}
.x22{left:491.626667pt;}
.x1b{left:494.186667pt;}
.x25{left:497.866667pt;}
.x4{left:559.933333pt;}
.x8{left:579.761331pt;}
.x20{left:588.906667pt;}
.x1c{left:594.986667pt;}
.x26{left:596.106667pt;}
.xc{left:606.986667pt;}
.x16{left:610.986667pt;}
.x27{left:744.133333pt;}
}




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