
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3db629707b04c9305c268807.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9b13e1502dda486488092a68.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1c42021b8ff0510bb9aae802.woff')format("woff");}.ff4{font-family:ff4;line-height:1.061035;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_a8fd9f77511b3ec879d7c6a2.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9eddb847b0420e1b2faf405d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9d6943d219930125722b6666.woff')format("woff");}.ff7{font-family:ff7;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1b{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.160800px;}
.ls1a{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.125400px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls16{letter-spacing:0.068400px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.115800px;}
.ls11{letter-spacing:0.116400px;}
.ls3{letter-spacing:0.134760px;}
.ls18{letter-spacing:0.143400px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:47.726640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws10{word-spacing:-13.425600px;}
.wse{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.369800px;}
.wsc{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.342200px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.101000px;}
.ws11{word-spacing:-13.072800px;}
.wsf{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._12{margin-left:-4.347600px;}
._8{margin-left:-3.098400px;}
._0{margin-left:-1.110000px;}
._2{width:1.090272px;}
._10{width:2.673840px;}
._a{width:3.698760px;}
._b{width:4.778040px;}
._c{width:6.761400px;}
._4{width:8.176200px;}
._5{width:9.258600px;}
._13{width:10.581120px;}
._3{width:11.631000px;}
._16{width:14.368680px;}
._11{width:15.904558px;}
._f{width:17.014200px;}
._14{width:18.156240px;}
._15{width:19.298520px;}
._e{width:21.310200px;}
._d{width:22.527360px;}
._24{width:23.549400px;}
._1c{width:24.997320px;}
._1d{width:26.015640px;}
._1e{width:27.114120px;}
._6{width:28.737600px;}
._7{width:29.998197px;}
._9{width:31.443000px;}
._1f{width:32.767679px;}
._19{width:34.268400px;}
._1{width:44.791836px;}
._22{width:51.252120px;}
._17{width:92.464560px;}
._1a{width:103.947480px;}
._18{width:140.199840px;}
._23{width:141.425640px;}
._1b{width:142.664760px;}
._21{width:191.842920px;}
._25{width:348.122640px;}
._20{width:2366.082720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:7.830000px;}
.y6d{bottom:7.920000px;}
.yb4{bottom:12.420000px;}
.y6c{bottom:25.470000px;}
.yb3{bottom:29.970000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y16b{bottom:121.260000px;}
.y5b{bottom:121.530000px;}
.y14d{bottom:122.340000px;}
.y129{bottom:123.240000px;}
.y87{bottom:125.580000px;}
.y15b{bottom:127.200000px;}
.y16a{bottom:138.810000px;}
.y5a{bottom:139.170000px;}
.y14c{bottom:139.980000px;}
.y128{bottom:140.790000px;}
.y86{bottom:143.130000px;}
.y15a{bottom:144.840000px;}
.ydc{bottom:145.830000px;}
.y169{bottom:156.450000px;}
.y59{bottom:156.720000px;}
.y14b{bottom:157.530000px;}
.y27{bottom:158.250000px;}
.y127{bottom:158.340000px;}
.y85{bottom:160.680000px;}
.y159{bottom:162.390000px;}
.ydb{bottom:163.380000px;}
.y168{bottom:174.000000px;}
.y58{bottom:174.270000px;}
.y14a{bottom:175.170000px;}
.y26{bottom:175.800000px;}
.y126{bottom:175.980000px;}
.y84{bottom:178.320000px;}
.y158{bottom:179.940000px;}
.yda{bottom:180.930000px;}
.y167{bottom:191.550000px;}
.y25{bottom:193.350000px;}
.yb1{bottom:197.130000px;}
.yf3{bottom:197.580000px;}
.yd9{bottom:198.570000px;}
.y166{bottom:209.190000px;}
.y57{bottom:209.910000px;}
.y149{bottom:210.720000px;}
.y24{bottom:210.990000px;}
.y125{bottom:211.530000px;}
.y83{bottom:213.870000px;}
.yb0{bottom:214.680000px;}
.yf2{bottom:215.130000px;}
.yd8{bottom:216.120000px;}
.y165{bottom:226.740000px;}
.y56{bottom:227.460000px;}
.y148{bottom:228.270000px;}
.y23{bottom:228.540000px;}
.y124{bottom:229.170000px;}
.y82{bottom:231.510000px;}
.yaf{bottom:232.320000px;}
.yf1{bottom:232.680000px;}
.yd7{bottom:233.760000px;}
.y55{bottom:245.100000px;}
.y147{bottom:245.910000px;}
.y22{bottom:246.090000px;}
.y123{bottom:246.720000px;}
.y81{bottom:249.060000px;}
.yae{bottom:249.870000px;}
.yf0{bottom:250.320000px;}
.yd6{bottom:251.310000px;}
.y164{bottom:253.650000px;}
.y54{bottom:262.650000px;}
.y146{bottom:263.460000px;}
.y21{bottom:263.730000px;}
.y122{bottom:264.270000px;}
.y80{bottom:266.610000px;}
.yad{bottom:267.510000px;}
.yef{bottom:267.870000px;}
.yd5{bottom:268.860000px;}
.y145{bottom:281.100000px;}
.y20{bottom:281.280000px;}
.y121{bottom:281.910000px;}
.y7f{bottom:284.250000px;}
.yac{bottom:285.060000px;}
.yee{bottom:285.510000px;}
.yd4{bottom:286.500000px;}
.y53{bottom:289.200000px;}
.y144{bottom:298.650000px;}
.y1f{bottom:298.920000px;}
.y120{bottom:299.460000px;}
.y7e{bottom:301.800000px;}
.y163{bottom:301.980000px;}
.yab{bottom:302.610000px;}
.yed{bottom:303.060000px;}
.yd3{bottom:304.050000px;}
.y143{bottom:316.200000px;}
.y11f{bottom:317.100000px;}
.y7d{bottom:319.440000px;}
.yec{bottom:320.610000px;}
.yd2{bottom:321.690000px;}
.y52{bottom:324.840000px;}
.y142{bottom:333.840000px;}
.y162{bottom:334.200000px;}
.y1e{bottom:334.470000px;}
.y11e{bottom:334.650000px;}
.y7c{bottom:336.990000px;}
.yaa{bottom:338.250000px;}
.y157{bottom:338.610000px;}
.yd1{bottom:339.240000px;}
.y51{bottom:342.390000px;}
.y141{bottom:351.390000px;}
.y1d{bottom:352.020000px;}
.y11d{bottom:352.200000px;}
.y7b{bottom:354.540000px;}
.ya9{bottom:355.800000px;}
.y156{bottom:356.250000px;}
.yd0{bottom:356.790000px;}
.y50{bottom:359.940000px;}
.y185{bottom:368.130000px;}
.y140{bottom:368.940000px;}
.y1c{bottom:369.660000px;}
.y11c{bottom:369.840000px;}
.y7a{bottom:372.180000px;}
.ya8{bottom:373.440000px;}
.y155{bottom:373.800000px;}
.y4f{bottom:377.580000px;}
.y184{bottom:385.770000px;}
.y13f{bottom:386.580000px;}
.y1b{bottom:387.210000px;}
.y11b{bottom:387.390000px;}
.y79{bottom:389.730000px;}
.ya7{bottom:390.990000px;}
.y154{bottom:391.440000px;}
.ycf{bottom:392.430000px;}
.y4e{bottom:395.130000px;}
.y1a{bottom:404.850000px;}
.y11a{bottom:404.940000px;}
.y78{bottom:407.370000px;}
.ya6{bottom:408.540000px;}
.y153{bottom:408.990000px;}
.yce{bottom:409.980000px;}
.y183{bottom:412.320000px;}
.y4d{bottom:412.770000px;}
.y13e{bottom:422.130000px;}
.y19{bottom:422.400000px;}
.y119{bottom:422.580000px;}
.ya5{bottom:426.180000px;}
.yeb{bottom:426.540000px;}
.ycd{bottom:427.620000px;}
.y182{bottom:429.870000px;}
.y4c{bottom:430.320000px;}
.y13d{bottom:439.770000px;}
.y18{bottom:439.950000px;}
.y118{bottom:440.130000px;}
.y77{bottom:442.920000px;}
.yea{bottom:444.180000px;}
.ycc{bottom:445.170000px;}
.y4b{bottom:447.870000px;}
.y181{bottom:456.510000px;}
.y13c{bottom:457.320000px;}
.y117{bottom:457.770000px;}
.y76{bottom:460.470000px;}
.ya4{bottom:461.730000px;}
.ycb{bottom:462.720000px;}
.y4a{bottom:465.510000px;}
.y17{bottom:466.860000px;}
.y180{bottom:474.090000px;}
.y13b{bottom:474.900000px;}
.y116{bottom:475.350000px;}
.y75{bottom:478.140000px;}
.ya3{bottom:479.400000px;}
.yca{bottom:480.390000px;}
.y49{bottom:483.090000px;}
.y17f{bottom:491.730000px;}
.y13a{bottom:492.540000px;}
.y115{bottom:492.900000px;}
.y74{bottom:495.690000px;}
.ya2{bottom:496.950000px;}
.yc9{bottom:497.940000px;}
.y17e{bottom:509.280000px;}
.y139{bottom:510.090000px;}
.y114{bottom:510.540000px;}
.y73{bottom:513.330000px;}
.ya1{bottom:514.500000px;}
.y16{bottom:515.220000px;}
.yc8{bottom:515.580000px;}
.y48{bottom:518.730000px;}
.y138{bottom:527.730000px;}
.y113{bottom:528.090000px;}
.ya0{bottom:532.140000px;}
.y15{bottom:533.130000px;}
.y17d{bottom:535.830000px;}
.y47{bottom:536.280000px;}
.y72{bottom:539.880000px;}
.y137{bottom:545.280000px;}
.y112{bottom:545.730000px;}
.y9f{bottom:549.690000px;}
.yc7{bottom:550.680000px;}
.y17c{bottom:553.470000px;}
.y46{bottom:553.830000px;}
.y136{bottom:562.830000px;}
.y111{bottom:563.280000px;}
.y9e{bottom:567.330000px;}
.yc6{bottom:568.320000px;}
.y14{bottom:570.120000px;}
.y17b{bottom:571.020000px;}
.y45{bottom:571.470000px;}
.y71{bottom:575.790000px;}
.y135{bottom:580.470000px;}
.y110{bottom:580.830000px;}
.y9d{bottom:584.880000px;}
.y152{bottom:585.330000px;}
.yc5{bottom:585.870000px;}
.y13{bottom:587.670000px;}
.y17a{bottom:588.660000px;}
.y44{bottom:589.020000px;}
.y134{bottom:598.020000px;}
.ye9{bottom:602.430000px;}
.y151{bottom:602.880000px;}
.yc4{bottom:603.510000px;}
.y12{bottom:605.310000px;}
.y43{bottom:606.660000px;}
.y179{bottom:615.210000px;}
.y133{bottom:615.660000px;}
.y10f{bottom:616.470000px;}
.y9c{bottom:620.430000px;}
.yc3{bottom:621.060000px;}
.y70{bottom:621.420000px;}
.y11{bottom:622.860000px;}
.y42{bottom:624.210000px;}
.y178{bottom:632.760000px;}
.y10e{bottom:634.020000px;}
.y9b{bottom:638.070000px;}
.y10{bottom:640.500000px;}
.y41{bottom:641.760000px;}
.y132{bottom:642.210000px;}
.y10d{bottom:651.660000px;}
.y9a{bottom:655.620000px;}
.yc2{bottom:656.610000px;}
.yf{bottom:658.050000px;}
.y177{bottom:659.400000px;}
.y6f{bottom:666.330000px;}
.y10c{bottom:669.210000px;}
.y99{bottom:673.260000px;}
.yc1{bottom:674.250000px;}
.ye{bottom:675.600000px;}
.y176{bottom:676.950000px;}
.y40{bottom:677.400000px;}
.y131{bottom:677.760000px;}
.y10b{bottom:686.760000px;}
.y98{bottom:690.810000px;}
.yc0{bottom:691.800000px;}
.yd{bottom:693.240000px;}
.y3f{bottom:694.950000px;}
.y130{bottom:695.400000px;}
.y161{bottom:699.810000px;}
.y175{bottom:703.590000px;}
.y10a{bottom:704.400000px;}
.ye8{bottom:708.360000px;}
.ybf{bottom:709.350000px;}
.yc{bottom:710.790000px;}
.y6e{bottom:711.240000px;}
.y3e{bottom:712.590000px;}
.y12f{bottom:712.950000px;}
.y97{bottom:717.360000px;}
.y174{bottom:721.140000px;}
.y109{bottom:721.950000px;}
.ye7{bottom:726.000000px;}
.ybe{bottom:726.990000px;}
.yb{bottom:728.430000px;}
.y3d{bottom:730.140000px;}
.y12e{bottom:730.590000px;}
.y160{bottom:735.000000px;}
.y6b{bottom:738.600000px;}
.y173{bottom:738.690000px;}
.y108{bottom:739.590000px;}
.ye6{bottom:743.550000px;}
.y3c{bottom:747.690000px;}
.y15f{bottom:752.550000px;}
.y96{bottom:753.000000px;}
.ybd{bottom:753.540000px;}
.ya{bottom:755.340000px;}
.y107{bottom:757.140000px;}
.y12d{bottom:757.500000px;}
.ye5{bottom:761.190000px;}
.y3b{bottom:765.330000px;}
.y15e{bottom:770.190000px;}
.y95{bottom:770.550000px;}
.y106{bottom:774.690000px;}
.ye4{bottom:778.740000px;}
.y3a{bottom:782.880000px;}
.y150{bottom:787.740000px;}
.y94{bottom:788.190000px;}
.ybc{bottom:789.450000px;}
.y105{bottom:792.330000px;}
.ye3{bottom:796.290000px;}
.y9{bottom:803.580000px;}
.y6a{bottom:804.930000px;}
.y15d{bottom:805.290000px;}
.y93{bottom:805.740000px;}
.y172{bottom:809.520000px;}
.y104{bottom:809.880000px;}
.ye2{bottom:813.930000px;}
.y39{bottom:818.520000px;}
.y15c{bottom:822.930000px;}
.y92{bottom:823.290000px;}
.y171{bottom:827.070000px;}
.y103{bottom:827.520000px;}
.ybb{bottom:835.170000px;}
.y38{bottom:836.070000px;}
.y8{bottom:839.130000px;}
.y69{bottom:840.480000px;}
.y91{bottom:840.930000px;}
.y102{bottom:845.070000px;}
.ye1{bottom:849.480000px;}
.y37{bottom:853.620000px;}
.y68{bottom:858.030000px;}
.y90{bottom:858.480000px;}
.yba{bottom:862.440000px;}
.y101{bottom:862.620000px;}
.ye0{bottom:867.030000px;}
.y36{bottom:871.260000px;}
.y7{bottom:874.950000px;}
.y67{bottom:875.670000px;}
.y8f{bottom:876.030000px;}
.y100{bottom:880.260000px;}
.ydf{bottom:884.670000px;}
.y35{bottom:888.810000px;}
.y66{bottom:893.220000px;}
.y8e{bottom:893.670000px;}
.yff{bottom:897.810000px;}
.yde{bottom:902.220000px;}
.y34{bottom:906.450000px;}
.yb9{bottom:907.350000px;}
.y65{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y8d{bottom:911.220000px;}
.yfe{bottom:915.450000px;}
.ydd{bottom:919.860000px;}
.y33{bottom:924.000000px;}
.y64{bottom:928.410000px;}
.y8c{bottom:928.860000px;}
.y12c{bottom:929.220000px;}
.yfd{bottom:933.000000px;}
.y63{bottom:945.960000px;}
.y8b{bottom:946.410000px;}
.y12b{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.y32{bottom:950.550000px;}
.yb7{bottom:952.350000px;}
.yfc{bottom:959.550000px;}
.y62{bottom:963.600000px;}
.y14f{bottom:963.960000px;}
.y12a{bottom:964.410000px;}
.y170{bottom:968.190000px;}
.yb6{bottom:979.620000px;}
.y14e{bottom:981.600000px;}
.y8a{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y31{bottom:986.460000px;}
.y16f{bottom:994.740000px;}
.yfb{bottom:995.190000px;}
.y61{bottom:999.150000px;}
.y89{bottom:999.600000px;}
.y3{bottom:1010.070000px;}
.y16e{bottom:1012.320000px;}
.yfa{bottom:1012.770000px;}
.y60{bottom:1016.820000px;}
.y88{bottom:1017.180000px;}
.yb5{bottom:1024.560000px;}
.y16d{bottom:1029.960000px;}
.yf9{bottom:1030.320000px;}
.y5f{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.yf8{bottom:1047.960000px;}
.y5e{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y16c{bottom:1056.870000px;}
.yf7{bottom:1065.510000px;}
.yb2{bottom:1069.470000px;}
.y5d{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.yf6{bottom:1083.150000px;}
.y5c{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.yf5{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.yf4{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h10{height:26.550000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.hb{height:44.190000px;}
.hf{height:44.220000px;}
.he{height:48.690000px;}
.h6{height:50.667539px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h11{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:91.800000px;}
.wc{width:110.250000px;}
.w9{width:114.120000px;}
.w6{width:122.580000px;}
.wb{width:130.710000px;}
.w7{width:146.880000px;}
.wd{width:147.600000px;}
.w4{width:151.650000px;}
.w8{width:157.440000px;}
.w3{width:161.580000px;}
.w5{width:169.950000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xe{left:104.129987px;}
.xf{left:111.239987px;}
.x2{left:202.799987px;}
.x9{left:227.010000px;}
.x5{left:231.150000px;}
.xa{left:341.850000px;}
.x6{left:383.520000px;}
.xb{left:434.370000px;}
.x7{left:554.280000px;}
.xc{left:565.890000px;}
.x8{left:677.580000px;}
.xd{left:699.809987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1b{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls1a{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.111467pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls16{letter-spacing:0.060800pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.102933pt;}
.ls11{letter-spacing:0.103467pt;}
.ls3{letter-spacing:0.119787pt;}
.ls18{letter-spacing:0.127467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.wsb{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws10{word-spacing:-11.933867pt;}
.wse{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.884267pt;}
.wsc{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.859733pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.645333pt;}
.ws11{word-spacing:-11.620267pt;}
.wsf{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._12{margin-left:-3.864533pt;}
._8{margin-left:-2.754133pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.969131pt;}
._10{width:2.376746pt;}
._a{width:3.287787pt;}
._b{width:4.247146pt;}
._c{width:6.010134pt;}
._4{width:7.267733pt;}
._5{width:8.229867pt;}
._13{width:9.405440pt;}
._3{width:10.338667pt;}
._16{width:12.772160pt;}
._11{width:14.137385pt;}
._f{width:15.123734pt;}
._14{width:16.138880pt;}
._15{width:17.154240pt;}
._e{width:18.942400pt;}
._d{width:20.024320pt;}
._24{width:20.932800pt;}
._1c{width:22.219840pt;}
._1d{width:23.125013pt;}
._1e{width:24.101440pt;}
._6{width:25.544534pt;}
._7{width:26.665064pt;}
._9{width:27.949334pt;}
._1f{width:29.126825pt;}
._19{width:30.460800pt;}
._1{width:39.814965pt;}
._22{width:45.557440pt;}
._17{width:82.190720pt;}
._1a{width:92.397760pt;}
._18{width:124.622080pt;}
._23{width:125.711680pt;}
._1b{width:126.813120pt;}
._21{width:170.527040pt;}
._25{width:309.442347pt;}
._20{width:2103.184640pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:6.960000pt;}
.y6d{bottom:7.040000pt;}
.yb4{bottom:11.040000pt;}
.y6c{bottom:22.640000pt;}
.yb3{bottom:26.640000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y16b{bottom:107.786667pt;}
.y5b{bottom:108.026667pt;}
.y14d{bottom:108.746667pt;}
.y129{bottom:109.546667pt;}
.y87{bottom:111.626667pt;}
.y15b{bottom:113.066667pt;}
.y16a{bottom:123.386667pt;}
.y5a{bottom:123.706667pt;}
.y14c{bottom:124.426667pt;}
.y128{bottom:125.146667pt;}
.y86{bottom:127.226667pt;}
.y15a{bottom:128.746667pt;}
.ydc{bottom:129.626667pt;}
.y169{bottom:139.066667pt;}
.y59{bottom:139.306667pt;}
.y14b{bottom:140.026667pt;}
.y27{bottom:140.666667pt;}
.y127{bottom:140.746667pt;}
.y85{bottom:142.826667pt;}
.y159{bottom:144.346667pt;}
.ydb{bottom:145.226667pt;}
.y168{bottom:154.666667pt;}
.y58{bottom:154.906667pt;}
.y14a{bottom:155.706667pt;}
.y26{bottom:156.266667pt;}
.y126{bottom:156.426667pt;}
.y84{bottom:158.506667pt;}
.y158{bottom:159.946667pt;}
.yda{bottom:160.826667pt;}
.y167{bottom:170.266667pt;}
.y25{bottom:171.866667pt;}
.yb1{bottom:175.226667pt;}
.yf3{bottom:175.626667pt;}
.yd9{bottom:176.506667pt;}
.y166{bottom:185.946667pt;}
.y57{bottom:186.586667pt;}
.y149{bottom:187.306667pt;}
.y24{bottom:187.546667pt;}
.y125{bottom:188.026667pt;}
.y83{bottom:190.106667pt;}
.yb0{bottom:190.826667pt;}
.yf2{bottom:191.226667pt;}
.yd8{bottom:192.106667pt;}
.y165{bottom:201.546667pt;}
.y56{bottom:202.186667pt;}
.y148{bottom:202.906667pt;}
.y23{bottom:203.146667pt;}
.y124{bottom:203.706667pt;}
.y82{bottom:205.786667pt;}
.yaf{bottom:206.506667pt;}
.yf1{bottom:206.826667pt;}
.yd7{bottom:207.786667pt;}
.y55{bottom:217.866667pt;}
.y147{bottom:218.586667pt;}
.y22{bottom:218.746667pt;}
.y123{bottom:219.306667pt;}
.y81{bottom:221.386667pt;}
.yae{bottom:222.106667pt;}
.yf0{bottom:222.506667pt;}
.yd6{bottom:223.386667pt;}
.y164{bottom:225.466667pt;}
.y54{bottom:233.466667pt;}
.y146{bottom:234.186667pt;}
.y21{bottom:234.426667pt;}
.y122{bottom:234.906667pt;}
.y80{bottom:236.986667pt;}
.yad{bottom:237.786667pt;}
.yef{bottom:238.106667pt;}
.yd5{bottom:238.986667pt;}
.y145{bottom:249.866667pt;}
.y20{bottom:250.026667pt;}
.y121{bottom:250.586667pt;}
.y7f{bottom:252.666667pt;}
.yac{bottom:253.386667pt;}
.yee{bottom:253.786667pt;}
.yd4{bottom:254.666667pt;}
.y53{bottom:257.066667pt;}
.y144{bottom:265.466667pt;}
.y1f{bottom:265.706667pt;}
.y120{bottom:266.186667pt;}
.y7e{bottom:268.266667pt;}
.y163{bottom:268.426667pt;}
.yab{bottom:268.986667pt;}
.yed{bottom:269.386667pt;}
.yd3{bottom:270.266667pt;}
.y143{bottom:281.066667pt;}
.y11f{bottom:281.866667pt;}
.y7d{bottom:283.946667pt;}
.yec{bottom:284.986667pt;}
.yd2{bottom:285.946667pt;}
.y52{bottom:288.746667pt;}
.y142{bottom:296.746667pt;}
.y162{bottom:297.066667pt;}
.y1e{bottom:297.306667pt;}
.y11e{bottom:297.466667pt;}
.y7c{bottom:299.546667pt;}
.yaa{bottom:300.666667pt;}
.y157{bottom:300.986667pt;}
.yd1{bottom:301.546667pt;}
.y51{bottom:304.346667pt;}
.y141{bottom:312.346667pt;}
.y1d{bottom:312.906667pt;}
.y11d{bottom:313.066667pt;}
.y7b{bottom:315.146667pt;}
.ya9{bottom:316.266667pt;}
.y156{bottom:316.666667pt;}
.yd0{bottom:317.146667pt;}
.y50{bottom:319.946667pt;}
.y185{bottom:327.226667pt;}
.y140{bottom:327.946667pt;}
.y1c{bottom:328.586667pt;}
.y11c{bottom:328.746667pt;}
.y7a{bottom:330.826667pt;}
.ya8{bottom:331.946667pt;}
.y155{bottom:332.266667pt;}
.y4f{bottom:335.626667pt;}
.y184{bottom:342.906667pt;}
.y13f{bottom:343.626667pt;}
.y1b{bottom:344.186667pt;}
.y11b{bottom:344.346667pt;}
.y79{bottom:346.426667pt;}
.ya7{bottom:347.546667pt;}
.y154{bottom:347.946667pt;}
.ycf{bottom:348.826667pt;}
.y4e{bottom:351.226667pt;}
.y1a{bottom:359.866667pt;}
.y11a{bottom:359.946667pt;}
.y78{bottom:362.106667pt;}
.ya6{bottom:363.146667pt;}
.y153{bottom:363.546667pt;}
.yce{bottom:364.426667pt;}
.y183{bottom:366.506667pt;}
.y4d{bottom:366.906667pt;}
.y13e{bottom:375.226667pt;}
.y19{bottom:375.466667pt;}
.y119{bottom:375.626667pt;}
.ya5{bottom:378.826667pt;}
.yeb{bottom:379.146667pt;}
.ycd{bottom:380.106667pt;}
.y182{bottom:382.106667pt;}
.y4c{bottom:382.506667pt;}
.y13d{bottom:390.906667pt;}
.y18{bottom:391.066667pt;}
.y118{bottom:391.226667pt;}
.y77{bottom:393.706667pt;}
.yea{bottom:394.826667pt;}
.ycc{bottom:395.706667pt;}
.y4b{bottom:398.106667pt;}
.y181{bottom:405.786667pt;}
.y13c{bottom:406.506667pt;}
.y117{bottom:406.906667pt;}
.y76{bottom:409.306667pt;}
.ya4{bottom:410.426667pt;}
.ycb{bottom:411.306667pt;}
.y4a{bottom:413.786667pt;}
.y17{bottom:414.986667pt;}
.y180{bottom:421.413333pt;}
.y13b{bottom:422.133333pt;}
.y116{bottom:422.533333pt;}
.y75{bottom:425.013333pt;}
.ya3{bottom:426.133333pt;}
.yca{bottom:427.013333pt;}
.y49{bottom:429.413333pt;}
.y17f{bottom:437.093333pt;}
.y13a{bottom:437.813333pt;}
.y115{bottom:438.133333pt;}
.y74{bottom:440.613333pt;}
.ya2{bottom:441.733333pt;}
.yc9{bottom:442.613333pt;}
.y17e{bottom:452.693333pt;}
.y139{bottom:453.413333pt;}
.y114{bottom:453.813333pt;}
.y73{bottom:456.293333pt;}
.ya1{bottom:457.333333pt;}
.y16{bottom:457.973333pt;}
.yc8{bottom:458.293333pt;}
.y48{bottom:461.093333pt;}
.y138{bottom:469.093333pt;}
.y113{bottom:469.413333pt;}
.ya0{bottom:473.013333pt;}
.y15{bottom:473.893333pt;}
.y17d{bottom:476.293333pt;}
.y47{bottom:476.693333pt;}
.y72{bottom:479.893333pt;}
.y137{bottom:484.693333pt;}
.y112{bottom:485.093333pt;}
.y9f{bottom:488.613333pt;}
.yc7{bottom:489.493333pt;}
.y17c{bottom:491.973333pt;}
.y46{bottom:492.293333pt;}
.y136{bottom:500.293333pt;}
.y111{bottom:500.693333pt;}
.y9e{bottom:504.293333pt;}
.yc6{bottom:505.173333pt;}
.y14{bottom:506.773333pt;}
.y17b{bottom:507.573333pt;}
.y45{bottom:507.973333pt;}
.y71{bottom:511.813333pt;}
.y135{bottom:515.973333pt;}
.y110{bottom:516.293333pt;}
.y9d{bottom:519.893333pt;}
.y152{bottom:520.293333pt;}
.yc5{bottom:520.773333pt;}
.y13{bottom:522.373333pt;}
.y17a{bottom:523.253333pt;}
.y44{bottom:523.573333pt;}
.y134{bottom:531.573333pt;}
.ye9{bottom:535.493333pt;}
.y151{bottom:535.893333pt;}
.yc4{bottom:536.453333pt;}
.y12{bottom:538.053333pt;}
.y43{bottom:539.253333pt;}
.y179{bottom:546.853333pt;}
.y133{bottom:547.253333pt;}
.y10f{bottom:547.973333pt;}
.y9c{bottom:551.493333pt;}
.yc3{bottom:552.053333pt;}
.y70{bottom:552.373333pt;}
.y11{bottom:553.653333pt;}
.y42{bottom:554.853333pt;}
.y178{bottom:562.453333pt;}
.y10e{bottom:563.573333pt;}
.y9b{bottom:567.173333pt;}
.y10{bottom:569.333333pt;}
.y41{bottom:570.453333pt;}
.y132{bottom:570.853333pt;}
.y10d{bottom:579.253333pt;}
.y9a{bottom:582.773333pt;}
.yc2{bottom:583.653333pt;}
.yf{bottom:584.933333pt;}
.y177{bottom:586.133333pt;}
.y6f{bottom:592.293333pt;}
.y10c{bottom:594.853333pt;}
.y99{bottom:598.453333pt;}
.yc1{bottom:599.333333pt;}
.ye{bottom:600.533333pt;}
.y176{bottom:601.733333pt;}
.y40{bottom:602.133333pt;}
.y131{bottom:602.453333pt;}
.y10b{bottom:610.453333pt;}
.y98{bottom:614.053333pt;}
.yc0{bottom:614.933333pt;}
.yd{bottom:616.213333pt;}
.y3f{bottom:617.733333pt;}
.y130{bottom:618.133333pt;}
.y161{bottom:622.053333pt;}
.y175{bottom:625.413333pt;}
.y10a{bottom:626.133333pt;}
.ye8{bottom:629.653333pt;}
.ybf{bottom:630.533333pt;}
.yc{bottom:631.813333pt;}
.y6e{bottom:632.213333pt;}
.y3e{bottom:633.413333pt;}
.y12f{bottom:633.733333pt;}
.y97{bottom:637.653333pt;}
.y174{bottom:641.013333pt;}
.y109{bottom:641.733333pt;}
.ye7{bottom:645.333333pt;}
.ybe{bottom:646.213333pt;}
.yb{bottom:647.493333pt;}
.y3d{bottom:649.013333pt;}
.y12e{bottom:649.413333pt;}
.y160{bottom:653.333333pt;}
.y6b{bottom:656.533333pt;}
.y173{bottom:656.613333pt;}
.y108{bottom:657.413333pt;}
.ye6{bottom:660.933333pt;}
.y3c{bottom:664.613333pt;}
.y15f{bottom:668.933333pt;}
.y96{bottom:669.333333pt;}
.ybd{bottom:669.813333pt;}
.ya{bottom:671.413333pt;}
.y107{bottom:673.013333pt;}
.y12d{bottom:673.333333pt;}
.ye5{bottom:676.613333pt;}
.y3b{bottom:680.293333pt;}
.y15e{bottom:684.613333pt;}
.y95{bottom:684.933333pt;}
.y106{bottom:688.613333pt;}
.ye4{bottom:692.213333pt;}
.y3a{bottom:695.893333pt;}
.y150{bottom:700.213333pt;}
.y94{bottom:700.613333pt;}
.ybc{bottom:701.733333pt;}
.y105{bottom:704.293333pt;}
.ye3{bottom:707.813333pt;}
.y9{bottom:714.293333pt;}
.y6a{bottom:715.493333pt;}
.y15d{bottom:715.813333pt;}
.y93{bottom:716.213333pt;}
.y172{bottom:719.573333pt;}
.y104{bottom:719.893333pt;}
.ye2{bottom:723.493333pt;}
.y39{bottom:727.573333pt;}
.y15c{bottom:731.493333pt;}
.y92{bottom:731.813333pt;}
.y171{bottom:735.173333pt;}
.y103{bottom:735.573333pt;}
.ybb{bottom:742.373333pt;}
.y38{bottom:743.173333pt;}
.y8{bottom:745.893333pt;}
.y69{bottom:747.093333pt;}
.y91{bottom:747.493333pt;}
.y102{bottom:751.173333pt;}
.ye1{bottom:755.093333pt;}
.y37{bottom:758.773333pt;}
.y68{bottom:762.693333pt;}
.y90{bottom:763.093333pt;}
.yba{bottom:766.613333pt;}
.y101{bottom:766.773333pt;}
.ye0{bottom:770.693333pt;}
.y36{bottom:774.453333pt;}
.y7{bottom:777.733333pt;}
.y67{bottom:778.373333pt;}
.y8f{bottom:778.693333pt;}
.y100{bottom:782.453333pt;}
.ydf{bottom:786.373333pt;}
.y35{bottom:790.053333pt;}
.y66{bottom:793.973333pt;}
.y8e{bottom:794.373333pt;}
.yff{bottom:798.053333pt;}
.yde{bottom:801.973333pt;}
.y34{bottom:805.733333pt;}
.yb9{bottom:806.533333pt;}
.y65{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y8d{bottom:809.973333pt;}
.yfe{bottom:813.733333pt;}
.ydd{bottom:817.653333pt;}
.y33{bottom:821.333333pt;}
.y64{bottom:825.253333pt;}
.y8c{bottom:825.653333pt;}
.y12c{bottom:825.973333pt;}
.yfd{bottom:829.333333pt;}
.y63{bottom:840.853333pt;}
.y8b{bottom:841.253333pt;}
.y12b{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.y32{bottom:844.933333pt;}
.yb7{bottom:846.533333pt;}
.yfc{bottom:852.933333pt;}
.y62{bottom:856.533333pt;}
.y14f{bottom:856.853333pt;}
.y12a{bottom:857.253333pt;}
.y170{bottom:860.613333pt;}
.yb6{bottom:870.773333pt;}
.y14e{bottom:872.533333pt;}
.y8a{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y31{bottom:876.853333pt;}
.y16f{bottom:884.213333pt;}
.yfb{bottom:884.613333pt;}
.y61{bottom:888.133333pt;}
.y89{bottom:888.533333pt;}
.y3{bottom:897.840000pt;}
.y16e{bottom:899.840000pt;}
.yfa{bottom:900.240000pt;}
.y60{bottom:903.840000pt;}
.y88{bottom:904.160000pt;}
.yb5{bottom:910.720000pt;}
.y16d{bottom:915.520000pt;}
.yf9{bottom:915.840000pt;}
.y5f{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.yf8{bottom:931.520000pt;}
.y5e{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y16c{bottom:939.440000pt;}
.yf7{bottom:947.120000pt;}
.yb2{bottom:950.640000pt;}
.y5d{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.yf6{bottom:962.800000pt;}
.y5c{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.yf5{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.yf4{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h10{height:23.600000pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.hb{height:39.280000pt;}
.hf{height:39.306667pt;}
.he{height:43.280000pt;}
.h6{height:45.037812pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h11{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:81.600000pt;}
.wc{width:98.000000pt;}
.w9{width:101.440000pt;}
.w6{width:108.960000pt;}
.wb{width:116.186667pt;}
.w7{width:130.560000pt;}
.wd{width:131.200000pt;}
.w4{width:134.800000pt;}
.w8{width:139.946667pt;}
.w3{width:143.626667pt;}
.w5{width:151.066667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xe{left:92.559988pt;}
.xf{left:98.879988pt;}
.x2{left:180.266655pt;}
.x9{left:201.786667pt;}
.x5{left:205.466667pt;}
.xa{left:303.866667pt;}
.x6{left:340.906667pt;}
.xb{left:386.106667pt;}
.x7{left:492.693333pt;}
.xc{left:503.013333pt;}
.x8{left:602.293333pt;}
.xd{left:622.053322pt;}
.x3{left:704.053322pt;}
}




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