
    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_554344ca7083c4336b0635a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.851562;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_a1fb5397f2519522014bc7e5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7a815166db8fec31dd8069ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_dc9fa80eb7d2e7491d3de615.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010254;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_6159fe244928054954269b17.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.991699;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_d6947b1d010470302cd6c940.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010742;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_5eadaf0fc1cdd92076f6752d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.746094;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_b02b833de24d1714e794cbe4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.746094;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_84867ddd548360f05d1612d0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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:ffb;src:url('chunks/assets/font_340804b2b3f61355e5b5ff13.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_31cdd4d04d84d1abb140c0b3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.010254;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.870000px;}
.ls2{letter-spacing:-0.374400px;}
.ls10{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.262200px;}
.ls7{letter-spacing:-0.152400px;}
.lsc{letter-spacing:-0.005760px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.152400px;}
.ls11{letter-spacing:0.164400px;}
.ls3{letter-spacing:0.172800px;}
.ls13{letter-spacing:0.262200px;}
.ls8{letter-spacing:0.305400px;}
.ls15{letter-spacing:3.185280px;}
.ls12{letter-spacing:18.305280px;}
.ls5{letter-spacing:21.905280px;}
.lsf{letter-spacing:25.505280px;}
.lsa{letter-spacing:29.105280px;}
.ls14{letter-spacing:36.305280px;}
.lsd{letter-spacing:39.905280px;}
.ls6{letter-spacing:59.321280px;}
.lse{letter-spacing:59.345280px;}
.ls0{letter-spacing:67.985280px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.ws0{word-spacing:-23.212800px;}
.ws6{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.724400px;}
.ws3{word-spacing:-16.712400px;}
.wsa{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.554240px;}
.ws5{word-spacing:-16.407600px;}
.ws8{word-spacing:-16.297800px;}
.wsb{word-spacing:-16.254600px;}
.ws7{word-spacing:-15.690000px;}
.ws1{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.347840px;}
._6{width:1.056960px;}
._8{width:2.273280px;}
._d{width:3.280320px;}
._4{width:4.527360px;}
._3{width:5.762880px;}
._5{width:7.281120px;}
._11{width:8.290560px;}
._2{width:9.624960px;}
._1{width:10.661040px;}
._f{width:11.672640px;}
._c{width:12.718080px;}
._1c{width:13.760640px;}
._12{width:14.771520px;}
._16{width:18.489600px;}
._13{width:20.010240px;}
._a{width:21.859200px;}
._b{width:22.985280px;}
._10{width:23.988000px;}
._7{width:25.634880px;}
._e{width:27.423360px;}
._9{width:28.615680px;}
._19{width:29.617920px;}
._14{width:31.066560px;}
._15{width:32.261760px;}
._1a{width:33.517440px;}
._1b{width:34.704000px;}
._20{width:36.190080px;}
._1d{width:37.756800px;}
._17{width:40.507200px;}
._18{width:42.458400px;}
._1e{width:43.819200px;}
._1f{width:45.207360px;}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:57.276000px;}
.y5{bottom:71.676000px;}
.y4{bottom:87.696000px;}
.y33{bottom:113.616000px;}
.yf6{bottom:118.836000px;}
.y18e{bottom:120.636000px;}
.yd6{bottom:120.996000px;}
.y61{bottom:121.896000px;}
.y8e{bottom:122.076000px;}
.y169{bottom:125.136000px;}
.y149{bottom:125.496000px;}
.y32{bottom:134.136000px;}
.yf5{bottom:139.176000px;}
.y18d{bottom:141.156000px;}
.yd5{bottom:141.516000px;}
.y60{bottom:142.416000px;}
.y8d{bottom:142.596000px;}
.y168{bottom:145.656000px;}
.y148{bottom:146.016000px;}
.y31{bottom:154.650000px;}
.yf4{bottom:160.590000px;}
.yd4{bottom:161.490000px;}
.y18c{bottom:161.670000px;}
.y11d{bottom:162.570000px;}
.y5f{bottom:162.750000px;}
.yae{bottom:162.930000px;}
.y8c{bottom:163.110000px;}
.y167{bottom:166.170000px;}
.y147{bottom:166.530000px;}
.y30{bottom:175.170000px;}
.yf3{bottom:180.930000px;}
.y18b{bottom:181.650000px;}
.yd3{bottom:181.830000px;}
.y11c{bottom:182.910000px;}
.yad{bottom:183.270000px;}
.y8b{bottom:183.630000px;}
.y5e{bottom:184.170000px;}
.y166{bottom:186.690000px;}
.y146{bottom:187.050000px;}
.y2f{bottom:195.690000px;}
.y18a{bottom:201.630000px;}
.yd2{bottom:202.350000px;}
.y11b{bottom:203.430000px;}
.y8a{bottom:204.150000px;}
.y5d{bottom:204.690000px;}
.y145{bottom:207.030000px;}
.y2e{bottom:216.210000px;}
.y189{bottom:221.430000px;}
.yf2{bottom:222.690000px;}
.yd1{bottom:222.870000px;}
.y11a{bottom:223.950000px;}
.y89{bottom:224.670000px;}
.y5c{bottom:225.210000px;}
.y144{bottom:227.010000px;}
.y165{bottom:228.450000px;}
.y2d{bottom:236.730000px;}
.y188{bottom:241.770000px;}
.yd0{bottom:243.030000px;}
.yf1{bottom:244.110000px;}
.y119{bottom:244.470000px;}
.y88{bottom:245.190000px;}
.y5b{bottom:245.730000px;}
.y143{bottom:247.350000px;}
.y164{bottom:248.970000px;}
.y2c{bottom:257.250000px;}
.y187{bottom:262.290000px;}
.ycf{bottom:263.190000px;}
.yf0{bottom:264.630000px;}
.y118{bottom:264.810000px;}
.y87{bottom:265.530000px;}
.y5a{bottom:266.250000px;}
.y142{bottom:267.870000px;}
.y163{bottom:269.490000px;}
.y2b{bottom:277.815000px;}
.y186{bottom:282.675000px;}
.yce{bottom:283.755000px;}
.yef{bottom:285.015000px;}
.y86{bottom:286.095000px;}
.y117{bottom:286.275000px;}
.yac{bottom:286.635000px;}
.y59{bottom:286.815000px;}
.y141{bottom:288.435000px;}
.y162{bottom:290.055000px;}
.y2a{bottom:298.335000px;}
.y185{bottom:304.095000px;}
.ycd{bottom:304.275000px;}
.y85{bottom:306.435000px;}
.y116{bottom:306.615000px;}
.y58{bottom:307.335000px;}
.yab{bottom:307.515000px;}
.y140{bottom:308.775000px;}
.y161{bottom:310.395000px;}
.y29{bottom:318.855000px;}
.y184{bottom:324.615000px;}
.ycc{bottom:324.795000px;}
.yee{bottom:326.775000px;}
.y57{bottom:327.855000px;}
.y115{bottom:328.035000px;}
.y13f{bottom:329.295000px;}
.y160{bottom:330.735000px;}
.y28{bottom:339.195000px;}
.y183{bottom:344.955000px;}
.ycb{bottom:345.315000px;}
.y56{bottom:348.195000px;}
.y84{bottom:348.375000px;}
.y13e{bottom:349.815000px;}
.y15f{bottom:352.155000px;}
.y27{bottom:359.715000px;}
.yca{bottom:365.835000px;}
.y182{bottom:366.375000px;}
.yed{bottom:368.715000px;}
.y83{bottom:368.895000px;}
.y55{bottom:369.615000px;}
.y114{bottom:369.795000px;}
.y13d{bottom:370.335000px;}
.y15e{bottom:372.675000px;}
.y26{bottom:380.235000px;}
.yc9{bottom:386.355000px;}
.y181{bottom:386.895000px;}
.yec{bottom:388.695000px;}
.y82{bottom:389.415000px;}
.y54{bottom:389.955000px;}
.y113{bottom:390.135000px;}
.y13c{bottom:390.855000px;}
.y15d{bottom:393.195000px;}
.y25{bottom:400.755000px;}
.yc8{bottom:406.695000px;}
.y180{bottom:407.235000px;}
.yeb{bottom:408.675000px;}
.y81{bottom:409.935000px;}
.y53{bottom:410.475000px;}
.y13b{bottom:411.015000px;}
.y112{bottom:411.555000px;}
.y15c{bottom:413.715000px;}
.y24{bottom:421.275000px;}
.yc7{bottom:428.115000px;}
.y17f{bottom:428.655000px;}
.yea{bottom:429.015000px;}
.yaa{bottom:430.095000px;}
.y80{bottom:430.455000px;}
.y13a{bottom:430.815000px;}
.y52{bottom:430.995000px;}
.y111{bottom:432.075000px;}
.y15b{bottom:434.055000px;}
.y23{bottom:441.795000px;}
.yc6{bottom:448.635000px;}
.y17e{bottom:448.995000px;}
.ye9{bottom:449.535000px;}
.ya9{bottom:450.255000px;}
.y7f{bottom:450.975000px;}
.y139{bottom:451.155000px;}
.y51{bottom:451.515000px;}
.y110{bottom:452.055000px;}
.y15a{bottom:455.115000px;}
.y22{bottom:462.315000px;}
.yc5{bottom:468.975000px;}
.ye8{bottom:469.875000px;}
.y17d{bottom:470.235000px;}
.ya8{bottom:470.775000px;}
.y7e{bottom:471.495000px;}
.y138{bottom:471.675000px;}
.y50{bottom:472.035000px;}
.y10f{bottom:472.395000px;}
.y159{bottom:475.455000px;}
.y21{bottom:482.835000px;}
.yc4{bottom:490.395000px;}
.y17c{bottom:490.575000px;}
.ya7{bottom:491.295000px;}
.y7d{bottom:492.015000px;}
.y137{bottom:492.195000px;}
.y4f{bottom:492.555000px;}
.y10e{bottom:492.915000px;}
.y158{bottom:495.795000px;}
.y20{bottom:503.355000px;}
.yc3{bottom:510.735000px;}
.y17b{bottom:511.635000px;}
.ya6{bottom:511.815000px;}
.y7c{bottom:512.355000px;}
.y136{bottom:512.715000px;}
.y4e{bottom:513.075000px;}
.y10d{bottom:513.435000px;}
.y19a{bottom:513.975000px;}
.y157{bottom:516.315000px;}
.y1f{bottom:523.875000px;}
.y17a{bottom:531.615000px;}
.yc2{bottom:532.155000px;}
.ya5{bottom:532.335000px;}
.y135{bottom:533.235000px;}
.y4d{bottom:533.595000px;}
.y7b{bottom:533.775000px;}
.y10c{bottom:533.955000px;}
.y156{bottom:536.835000px;}
.y1e{bottom:543.855000px;}
.y179{bottom:551.415000px;}
.yc1{bottom:552.495000px;}
.ye7{bottom:552.675000px;}
.ya4{bottom:552.855000px;}
.y134{bottom:553.755000px;}
.y4c{bottom:553.935000px;}
.y7a{bottom:554.295000px;}
.y10b{bottom:554.475000px;}
.y155{bottom:557.385000px;}
.y1d{bottom:564.225000px;}
.y178{bottom:571.785000px;}
.ye6{bottom:573.225000px;}
.ya3{bottom:573.405000px;}
.yc0{bottom:573.945000px;}
.y133{bottom:574.305000px;}
.y79{bottom:574.665000px;}
.y10a{bottom:574.845000px;}
.y4b{bottom:575.385000px;}
.y154{bottom:577.905000px;}
.y1c{bottom:584.745000px;}
.y177{bottom:592.305000px;}
.ye5{bottom:593.745000px;}
.ya2{bottom:593.925000px;}
.ybf{bottom:594.285000px;}
.y132{bottom:594.645000px;}
.y78{bottom:595.185000px;}
.y199{bottom:595.365000px;}
.y4a{bottom:595.905000px;}
.y109{bottom:596.265000px;}
.y153{bottom:598.425000px;}
.y1b{bottom:605.265000px;}
.y176{bottom:612.825000px;}
.ye4{bottom:614.085000px;}
.ya1{bottom:614.445000px;}
.ybe{bottom:614.805000px;}
.y131{bottom:615.165000px;}
.y77{bottom:615.705000px;}
.y198{bottom:615.885000px;}
.y49{bottom:616.425000px;}
.y108{bottom:616.785000px;}
.y152{bottom:618.945000px;}
.y1a{bottom:624.885000px;}
.y175{bottom:633.345000px;}
.ya0{bottom:634.965000px;}
.ye3{bottom:635.505000px;}
.y130{bottom:635.685000px;}
.ybd{bottom:636.045000px;}
.y76{bottom:636.225000px;}
.y197{bottom:636.405000px;}
.y48{bottom:636.945000px;}
.y107{bottom:637.305000px;}
.y151{bottom:639.465000px;}
.y19{bottom:644.865000px;}
.y174{bottom:653.685000px;}
.y9f{bottom:655.485000px;}
.ye2{bottom:656.025000px;}
.y12f{bottom:656.205000px;}
.ybc{bottom:656.565000px;}
.y75{bottom:656.745000px;}
.y196{bottom:656.925000px;}
.y47{bottom:657.285000px;}
.y106{bottom:657.645000px;}
.y150{bottom:659.445000px;}
.y18{bottom:664.665000px;}
.y173{bottom:674.925000px;}
.y9e{bottom:675.825000px;}
.y12e{bottom:676.365000px;}
.ye1{bottom:676.545000px;}
.ybb{bottom:676.725000px;}
.y74{bottom:677.265000px;}
.y195{bottom:677.445000px;}
.y46{bottom:677.805000px;}
.y105{bottom:677.985000px;}
.y14f{bottom:679.425000px;}
.y17{bottom:684.645000px;}
.y12d{bottom:696.165000px;}
.y9d{bottom:696.345000px;}
.yba{bottom:697.065000px;}
.y73{bottom:697.785000px;}
.y194{bottom:697.965000px;}
.y45{bottom:698.325000px;}
.y14e{bottom:699.225000px;}
.y104{bottom:699.405000px;}
.y16{bottom:704.445000px;}
.y12c{bottom:716.505000px;}
.y172{bottom:716.685000px;}
.y9c{bottom:716.865000px;}
.yb9{bottom:717.585000px;}
.y72{bottom:717.765000px;}
.y193{bottom:718.485000px;}
.y44{bottom:718.845000px;}
.y14d{bottom:719.565000px;}
.y103{bottom:719.925000px;}
.y15{bottom:724.425000px;}
.y12b{bottom:736.665000px;}
.y9b{bottom:737.385000px;}
.ye0{bottom:737.925000px;}
.y71{bottom:738.105000px;}
.y192{bottom:738.825000px;}
.y43{bottom:739.185000px;}
.y14c{bottom:740.085000px;}
.y102{bottom:740.445000px;}
.y14{bottom:744.225000px;}
.y12a{bottom:756.465000px;}
.y9a{bottom:757.905000px;}
.y171{bottom:758.445000px;}
.y70{bottom:758.625000px;}
.ydf{bottom:759.345000px;}
.y42{bottom:760.605000px;}
.y101{bottom:760.965000px;}
.y13{bottom:764.205000px;}
.y129{bottom:776.445000px;}
.y99{bottom:778.425000px;}
.yb8{bottom:778.965000px;}
.y6f{bottom:779.145000px;}
.y170{bottom:779.685000px;}
.yde{bottom:779.865000px;}
.y41{bottom:781.125000px;}
.y100{bottom:781.305000px;}
.y12{bottom:784.005000px;}
.y128{bottom:796.785000px;}
.y98{bottom:798.945000px;}
.yb7{bottom:799.485000px;}
.y6e{bottom:799.665000px;}
.ydd{bottom:800.205000px;}
.y191{bottom:800.385000px;}
.y16f{bottom:801.105000px;}
.y40{bottom:801.645000px;}
.yff{bottom:802.725000px;}
.y11{bottom:803.985000px;}
.y127{bottom:817.125000px;}
.y97{bottom:819.285000px;}
.yb6{bottom:820.005000px;}
.y6d{bottom:820.185000px;}
.ydc{bottom:820.725000px;}
.y190{bottom:820.905000px;}
.y16e{bottom:821.445000px;}
.y3f{bottom:822.165000px;}
.yfe{bottom:823.245000px;}
.y10{bottom:823.785000px;}
.y126{bottom:837.645000px;}
.yb5{bottom:840.570000px;}
.y6c{bottom:840.750000px;}
.ydb{bottom:841.290000px;}
.y18f{bottom:841.470000px;}
.y16d{bottom:841.650000px;}
.y3e{bottom:842.730000px;}
.yfd{bottom:843.810000px;}
.yf{bottom:843.990000px;}
.y125{bottom:858.210000px;}
.yb4{bottom:860.730000px;}
.y6b{bottom:861.270000px;}
.yda{bottom:861.630000px;}
.y16c{bottom:861.990000px;}
.y3d{bottom:863.250000px;}
.yfc{bottom:864.150000px;}
.ye{bottom:867.750000px;}
.y124{bottom:878.550000px;}
.yb3{bottom:881.070000px;}
.y6a{bottom:881.790000px;}
.y16b{bottom:882.510000px;}
.yd9{bottom:883.050000px;}
.y3c{bottom:883.770000px;}
.yfb{bottom:885.570000px;}
.yd{bottom:887.910000px;}
.y123{bottom:899.970000px;}
.yb2{bottom:901.410000px;}
.y69{bottom:902.130000px;}
.y96{bottom:902.310000px;}
.y16a{bottom:903.030000px;}
.yd8{bottom:903.570000px;}
.y3b{bottom:904.290000px;}
.yfa{bottom:905.550000px;}
.yc{bottom:907.710000px;}
.y122{bottom:920.310000px;}
.yb1{bottom:921.930000px;}
.y95{bottom:922.830000px;}
.y68{bottom:923.550000px;}
.yd7{bottom:923.730000px;}
.y3a{bottom:924.630000px;}
.yf9{bottom:925.530000px;}
.yb{bottom:927.690000px;}
.y121{bottom:941.730000px;}
.yb0{bottom:942.450000px;}
.y94{bottom:943.170000px;}
.y67{bottom:944.070000px;}
.y14b{bottom:944.790000px;}
.y39{bottom:945.150000px;}
.yf8{bottom:945.330000px;}
.ya{bottom:947.490000px;}
.y120{bottom:962.070000px;}
.yaf{bottom:962.790000px;}
.y93{bottom:963.690000px;}
.y66{bottom:964.410000px;}
.y14a{bottom:964.590000px;}
.y38{bottom:965.310000px;}
.y9{bottom:967.290000px;}
.y11f{bottom:983.490000px;}
.y92{bottom:984.210000px;}
.y65{bottom:984.930000px;}
.yf7{bottom:985.110000px;}
.y37{bottom:985.650000px;}
.y8{bottom:987.630000px;}
.y11e{bottom:1003.830000px;}
.y91{bottom:1004.730000px;}
.y64{bottom:1005.450000px;}
.y36{bottom:1006.170000px;}
.y7{bottom:1009.230000px;}
.y90{bottom:1025.250000px;}
.y63{bottom:1025.970000px;}
.y35{bottom:1026.690000px;}
.y8f{bottom:1045.590000px;}
.y62{bottom:1046.490000px;}
.y34{bottom:1046.670000px;}
.y3{bottom:1068.810000px;}
.y2{bottom:1094.910000px;}
.y1{bottom:1114.350000px;}
.h6{height:35.049375px;}
.h7{height:35.120039px;}
.h9{height:48.127500px;}
.h5{height:48.224531px;}
.ha{height:48.353906px;}
.h8{height:52.312500px;}
.h2{height:58.218750px;}
.h4{height:62.028281px;}
.hc{height:68.084282px;}
.hb{height:68.956875px;}
.h3{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:80.280000px;}
.x5{left:84.960000px;}
.x16{left:86.580000px;}
.x6{left:88.020000px;}
.x13{left:93.060000px;}
.xe{left:99.576000px;}
.xd{left:105.876000px;}
.x18{left:111.996000px;}
.xf{left:138.096000px;}
.x14{left:143.496000px;}
.x10{left:165.090000px;}
.x15{left:170.490000px;}
.x2{left:182.910000px;}
.x11{left:191.370000px;}
.x3{left:194.250000px;}
.x12{left:218.370000px;}
.xa{left:359.535000px;}
.xb{left:367.815000px;}
.x9{left:373.035000px;}
.x7{left:399.675000px;}
.xc{left:414.435000px;}
.x8{left:446.475000px;}
.x1{left:532.005000px;}
.x4{left:783.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.773333pt;}
.ls2{letter-spacing:-0.332800pt;}
.ls10{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.233067pt;}
.ls7{letter-spacing:-0.135467pt;}
.lsc{letter-spacing:-0.005120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.135467pt;}
.ls11{letter-spacing:0.146133pt;}
.ls3{letter-spacing:0.153600pt;}
.ls13{letter-spacing:0.233067pt;}
.ls8{letter-spacing:0.271467pt;}
.ls15{letter-spacing:2.831360pt;}
.ls12{letter-spacing:16.271360pt;}
.ls5{letter-spacing:19.471360pt;}
.lsf{letter-spacing:22.671360pt;}
.lsa{letter-spacing:25.871360pt;}
.ls14{letter-spacing:32.271360pt;}
.lsd{letter-spacing:35.471360pt;}
.ls6{letter-spacing:52.730027pt;}
.lse{letter-spacing:52.751360pt;}
.ls0{letter-spacing:60.431360pt;}
.ws2{word-spacing:-58.880000pt;}
.ws0{word-spacing:-20.633600pt;}
.ws6{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.866133pt;}
.ws3{word-spacing:-14.855467pt;}
.wsa{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.714880pt;}
.ws5{word-spacing:-14.584533pt;}
.ws8{word-spacing:-14.486933pt;}
.wsb{word-spacing:-14.448533pt;}
.ws7{word-spacing:-13.946667pt;}
.ws1{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.198080pt;}
._6{width:0.939520pt;}
._8{width:2.020693pt;}
._d{width:2.915840pt;}
._4{width:4.024320pt;}
._3{width:5.122560pt;}
._5{width:6.472107pt;}
._11{width:7.369387pt;}
._2{width:8.555520pt;}
._1{width:9.476480pt;}
._f{width:10.375680pt;}
._c{width:11.304960pt;}
._1c{width:12.231680pt;}
._12{width:13.130240pt;}
._16{width:16.435200pt;}
._13{width:17.786880pt;}
._a{width:19.430400pt;}
._b{width:20.431360pt;}
._10{width:21.322667pt;}
._7{width:22.786560pt;}
._e{width:24.376320pt;}
._9{width:25.436160pt;}
._19{width:26.327040pt;}
._14{width:27.614720pt;}
._15{width:28.677120pt;}
._1a{width:29.793280pt;}
._1b{width:30.848000pt;}
._20{width:32.168960pt;}
._1d{width:33.561600pt;}
._17{width:36.006400pt;}
._18{width:37.740800pt;}
._1e{width:38.950400pt;}
._1f{width:40.184320pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:50.912000pt;}
.y5{bottom:63.712000pt;}
.y4{bottom:77.952000pt;}
.y33{bottom:100.992000pt;}
.yf6{bottom:105.632000pt;}
.y18e{bottom:107.232000pt;}
.yd6{bottom:107.552000pt;}
.y61{bottom:108.352000pt;}
.y8e{bottom:108.512000pt;}
.y169{bottom:111.232000pt;}
.y149{bottom:111.552000pt;}
.y32{bottom:119.232000pt;}
.yf5{bottom:123.712000pt;}
.y18d{bottom:125.472000pt;}
.yd5{bottom:125.792000pt;}
.y60{bottom:126.592000pt;}
.y8d{bottom:126.752000pt;}
.y168{bottom:129.472000pt;}
.y148{bottom:129.792000pt;}
.y31{bottom:137.466667pt;}
.yf4{bottom:142.746667pt;}
.yd4{bottom:143.546667pt;}
.y18c{bottom:143.706667pt;}
.y11d{bottom:144.506667pt;}
.y5f{bottom:144.666667pt;}
.yae{bottom:144.826667pt;}
.y8c{bottom:144.986667pt;}
.y167{bottom:147.706667pt;}
.y147{bottom:148.026667pt;}
.y30{bottom:155.706667pt;}
.yf3{bottom:160.826667pt;}
.y18b{bottom:161.466667pt;}
.yd3{bottom:161.626667pt;}
.y11c{bottom:162.586667pt;}
.yad{bottom:162.906667pt;}
.y8b{bottom:163.226667pt;}
.y5e{bottom:163.706667pt;}
.y166{bottom:165.946667pt;}
.y146{bottom:166.266667pt;}
.y2f{bottom:173.946667pt;}
.y18a{bottom:179.226667pt;}
.yd2{bottom:179.866667pt;}
.y11b{bottom:180.826667pt;}
.y8a{bottom:181.466667pt;}
.y5d{bottom:181.946667pt;}
.y145{bottom:184.026667pt;}
.y2e{bottom:192.186667pt;}
.y189{bottom:196.826667pt;}
.yf2{bottom:197.946667pt;}
.yd1{bottom:198.106667pt;}
.y11a{bottom:199.066667pt;}
.y89{bottom:199.706667pt;}
.y5c{bottom:200.186667pt;}
.y144{bottom:201.786667pt;}
.y165{bottom:203.066667pt;}
.y2d{bottom:210.426667pt;}
.y188{bottom:214.906667pt;}
.yd0{bottom:216.026667pt;}
.yf1{bottom:216.986667pt;}
.y119{bottom:217.306667pt;}
.y88{bottom:217.946667pt;}
.y5b{bottom:218.426667pt;}
.y143{bottom:219.866667pt;}
.y164{bottom:221.306667pt;}
.y2c{bottom:228.666667pt;}
.y187{bottom:233.146667pt;}
.ycf{bottom:233.946667pt;}
.yf0{bottom:235.226667pt;}
.y118{bottom:235.386667pt;}
.y87{bottom:236.026667pt;}
.y5a{bottom:236.666667pt;}
.y142{bottom:238.106667pt;}
.y163{bottom:239.546667pt;}
.y2b{bottom:246.946667pt;}
.y186{bottom:251.266667pt;}
.yce{bottom:252.226667pt;}
.yef{bottom:253.346667pt;}
.y86{bottom:254.306667pt;}
.y117{bottom:254.466667pt;}
.yac{bottom:254.786667pt;}
.y59{bottom:254.946667pt;}
.y141{bottom:256.386667pt;}
.y162{bottom:257.826667pt;}
.y2a{bottom:265.186667pt;}
.y185{bottom:270.306667pt;}
.ycd{bottom:270.466667pt;}
.y85{bottom:272.386667pt;}
.y116{bottom:272.546667pt;}
.y58{bottom:273.186667pt;}
.yab{bottom:273.346667pt;}
.y140{bottom:274.466667pt;}
.y161{bottom:275.906667pt;}
.y29{bottom:283.426667pt;}
.y184{bottom:288.546667pt;}
.ycc{bottom:288.706667pt;}
.yee{bottom:290.466667pt;}
.y57{bottom:291.426667pt;}
.y115{bottom:291.586667pt;}
.y13f{bottom:292.706667pt;}
.y160{bottom:293.986667pt;}
.y28{bottom:301.506667pt;}
.y183{bottom:306.626667pt;}
.ycb{bottom:306.946667pt;}
.y56{bottom:309.506667pt;}
.y84{bottom:309.666667pt;}
.y13e{bottom:310.946667pt;}
.y15f{bottom:313.026667pt;}
.y27{bottom:319.746667pt;}
.yca{bottom:325.186667pt;}
.y182{bottom:325.666667pt;}
.yed{bottom:327.746667pt;}
.y83{bottom:327.906667pt;}
.y55{bottom:328.546667pt;}
.y114{bottom:328.706667pt;}
.y13d{bottom:329.186667pt;}
.y15e{bottom:331.266667pt;}
.y26{bottom:337.986667pt;}
.yc9{bottom:343.426667pt;}
.y181{bottom:343.906667pt;}
.yec{bottom:345.506667pt;}
.y82{bottom:346.146667pt;}
.y54{bottom:346.626667pt;}
.y113{bottom:346.786667pt;}
.y13c{bottom:347.426667pt;}
.y15d{bottom:349.506667pt;}
.y25{bottom:356.226667pt;}
.yc8{bottom:361.506667pt;}
.y180{bottom:361.986667pt;}
.yeb{bottom:363.266667pt;}
.y81{bottom:364.386667pt;}
.y53{bottom:364.866667pt;}
.y13b{bottom:365.346667pt;}
.y112{bottom:365.826667pt;}
.y15c{bottom:367.746667pt;}
.y24{bottom:374.466667pt;}
.yc7{bottom:380.546667pt;}
.y17f{bottom:381.026667pt;}
.yea{bottom:381.346667pt;}
.yaa{bottom:382.306667pt;}
.y80{bottom:382.626667pt;}
.y13a{bottom:382.946667pt;}
.y52{bottom:383.106667pt;}
.y111{bottom:384.066667pt;}
.y15b{bottom:385.826667pt;}
.y23{bottom:392.706667pt;}
.yc6{bottom:398.786667pt;}
.y17e{bottom:399.106667pt;}
.ye9{bottom:399.586667pt;}
.ya9{bottom:400.226667pt;}
.y7f{bottom:400.866667pt;}
.y139{bottom:401.026667pt;}
.y51{bottom:401.346667pt;}
.y110{bottom:401.826667pt;}
.y15a{bottom:404.546667pt;}
.y22{bottom:410.946667pt;}
.yc5{bottom:416.866667pt;}
.ye8{bottom:417.666667pt;}
.y17d{bottom:417.986667pt;}
.ya8{bottom:418.466667pt;}
.y7e{bottom:419.106667pt;}
.y138{bottom:419.266667pt;}
.y50{bottom:419.586667pt;}
.y10f{bottom:419.906667pt;}
.y159{bottom:422.626667pt;}
.y21{bottom:429.186667pt;}
.yc4{bottom:435.906667pt;}
.y17c{bottom:436.066667pt;}
.ya7{bottom:436.706667pt;}
.y7d{bottom:437.346667pt;}
.y137{bottom:437.506667pt;}
.y4f{bottom:437.826667pt;}
.y10e{bottom:438.146667pt;}
.y158{bottom:440.706667pt;}
.y20{bottom:447.426667pt;}
.yc3{bottom:453.986667pt;}
.y17b{bottom:454.786667pt;}
.ya6{bottom:454.946667pt;}
.y7c{bottom:455.426667pt;}
.y136{bottom:455.746667pt;}
.y4e{bottom:456.066667pt;}
.y10d{bottom:456.386667pt;}
.y19a{bottom:456.866667pt;}
.y157{bottom:458.946667pt;}
.y1f{bottom:465.666667pt;}
.y17a{bottom:472.546667pt;}
.yc2{bottom:473.026667pt;}
.ya5{bottom:473.186667pt;}
.y135{bottom:473.986667pt;}
.y4d{bottom:474.306667pt;}
.y7b{bottom:474.466667pt;}
.y10c{bottom:474.626667pt;}
.y156{bottom:477.186667pt;}
.y1e{bottom:483.426667pt;}
.y179{bottom:490.146667pt;}
.yc1{bottom:491.106667pt;}
.ye7{bottom:491.266667pt;}
.ya4{bottom:491.426667pt;}
.y134{bottom:492.226667pt;}
.y4c{bottom:492.386667pt;}
.y7a{bottom:492.706667pt;}
.y10b{bottom:492.866667pt;}
.y155{bottom:495.453333pt;}
.y1d{bottom:501.533333pt;}
.y178{bottom:508.253333pt;}
.ye6{bottom:509.533333pt;}
.ya3{bottom:509.693333pt;}
.yc0{bottom:510.173333pt;}
.y133{bottom:510.493333pt;}
.y79{bottom:510.813333pt;}
.y10a{bottom:510.973333pt;}
.y4b{bottom:511.453333pt;}
.y154{bottom:513.693333pt;}
.y1c{bottom:519.773333pt;}
.y177{bottom:526.493333pt;}
.ye5{bottom:527.773333pt;}
.ya2{bottom:527.933333pt;}
.ybf{bottom:528.253333pt;}
.y132{bottom:528.573333pt;}
.y78{bottom:529.053333pt;}
.y199{bottom:529.213333pt;}
.y4a{bottom:529.693333pt;}
.y109{bottom:530.013333pt;}
.y153{bottom:531.933333pt;}
.y1b{bottom:538.013333pt;}
.y176{bottom:544.733333pt;}
.ye4{bottom:545.853333pt;}
.ya1{bottom:546.173333pt;}
.ybe{bottom:546.493333pt;}
.y131{bottom:546.813333pt;}
.y77{bottom:547.293333pt;}
.y198{bottom:547.453333pt;}
.y49{bottom:547.933333pt;}
.y108{bottom:548.253333pt;}
.y152{bottom:550.173333pt;}
.y1a{bottom:555.453333pt;}
.y175{bottom:562.973333pt;}
.ya0{bottom:564.413333pt;}
.ye3{bottom:564.893333pt;}
.y130{bottom:565.053333pt;}
.ybd{bottom:565.373333pt;}
.y76{bottom:565.533333pt;}
.y197{bottom:565.693333pt;}
.y48{bottom:566.173333pt;}
.y107{bottom:566.493333pt;}
.y151{bottom:568.413333pt;}
.y19{bottom:573.213333pt;}
.y174{bottom:581.053333pt;}
.y9f{bottom:582.653333pt;}
.ye2{bottom:583.133333pt;}
.y12f{bottom:583.293333pt;}
.ybc{bottom:583.613333pt;}
.y75{bottom:583.773333pt;}
.y196{bottom:583.933333pt;}
.y47{bottom:584.253333pt;}
.y106{bottom:584.573333pt;}
.y150{bottom:586.173333pt;}
.y18{bottom:590.813333pt;}
.y173{bottom:599.933333pt;}
.y9e{bottom:600.733333pt;}
.y12e{bottom:601.213333pt;}
.ye1{bottom:601.373333pt;}
.ybb{bottom:601.533333pt;}
.y74{bottom:602.013333pt;}
.y195{bottom:602.173333pt;}
.y46{bottom:602.493333pt;}
.y105{bottom:602.653333pt;}
.y14f{bottom:603.933333pt;}
.y17{bottom:608.573333pt;}
.y12d{bottom:618.813333pt;}
.y9d{bottom:618.973333pt;}
.yba{bottom:619.613333pt;}
.y73{bottom:620.253333pt;}
.y194{bottom:620.413333pt;}
.y45{bottom:620.733333pt;}
.y14e{bottom:621.533333pt;}
.y104{bottom:621.693333pt;}
.y16{bottom:626.173333pt;}
.y12c{bottom:636.893333pt;}
.y172{bottom:637.053333pt;}
.y9c{bottom:637.213333pt;}
.yb9{bottom:637.853333pt;}
.y72{bottom:638.013333pt;}
.y193{bottom:638.653333pt;}
.y44{bottom:638.973333pt;}
.y14d{bottom:639.613333pt;}
.y103{bottom:639.933333pt;}
.y15{bottom:643.933333pt;}
.y12b{bottom:654.813333pt;}
.y9b{bottom:655.453333pt;}
.ye0{bottom:655.933333pt;}
.y71{bottom:656.093333pt;}
.y192{bottom:656.733333pt;}
.y43{bottom:657.053333pt;}
.y14c{bottom:657.853333pt;}
.y102{bottom:658.173333pt;}
.y14{bottom:661.533333pt;}
.y12a{bottom:672.413333pt;}
.y9a{bottom:673.693333pt;}
.y171{bottom:674.173333pt;}
.y70{bottom:674.333333pt;}
.ydf{bottom:674.973333pt;}
.y42{bottom:676.093333pt;}
.y101{bottom:676.413333pt;}
.y13{bottom:679.293333pt;}
.y129{bottom:690.173333pt;}
.y99{bottom:691.933333pt;}
.yb8{bottom:692.413333pt;}
.y6f{bottom:692.573333pt;}
.y170{bottom:693.053333pt;}
.yde{bottom:693.213333pt;}
.y41{bottom:694.333333pt;}
.y100{bottom:694.493333pt;}
.y12{bottom:696.893333pt;}
.y128{bottom:708.253333pt;}
.y98{bottom:710.173333pt;}
.yb7{bottom:710.653333pt;}
.y6e{bottom:710.813333pt;}
.ydd{bottom:711.293333pt;}
.y191{bottom:711.453333pt;}
.y16f{bottom:712.093333pt;}
.y40{bottom:712.573333pt;}
.yff{bottom:713.533333pt;}
.y11{bottom:714.653333pt;}
.y127{bottom:726.333333pt;}
.y97{bottom:728.253333pt;}
.yb6{bottom:728.893333pt;}
.y6d{bottom:729.053333pt;}
.ydc{bottom:729.533333pt;}
.y190{bottom:729.693333pt;}
.y16e{bottom:730.173333pt;}
.y3f{bottom:730.813333pt;}
.yfe{bottom:731.773333pt;}
.y10{bottom:732.253333pt;}
.y126{bottom:744.573333pt;}
.yb5{bottom:747.173333pt;}
.y6c{bottom:747.333333pt;}
.ydb{bottom:747.813333pt;}
.y18f{bottom:747.973333pt;}
.y16d{bottom:748.133333pt;}
.y3e{bottom:749.093333pt;}
.yfd{bottom:750.053333pt;}
.yf{bottom:750.213333pt;}
.y125{bottom:762.853333pt;}
.yb4{bottom:765.093333pt;}
.y6b{bottom:765.573333pt;}
.yda{bottom:765.893333pt;}
.y16c{bottom:766.213333pt;}
.y3d{bottom:767.333333pt;}
.yfc{bottom:768.133333pt;}
.ye{bottom:771.333333pt;}
.y124{bottom:780.933333pt;}
.yb3{bottom:783.173333pt;}
.y6a{bottom:783.813333pt;}
.y16b{bottom:784.453333pt;}
.yd9{bottom:784.933333pt;}
.y3c{bottom:785.573333pt;}
.yfb{bottom:787.173333pt;}
.yd{bottom:789.253333pt;}
.y123{bottom:799.973333pt;}
.yb2{bottom:801.253333pt;}
.y69{bottom:801.893333pt;}
.y96{bottom:802.053333pt;}
.y16a{bottom:802.693333pt;}
.yd8{bottom:803.173333pt;}
.y3b{bottom:803.813333pt;}
.yfa{bottom:804.933333pt;}
.yc{bottom:806.853333pt;}
.y122{bottom:818.053333pt;}
.yb1{bottom:819.493333pt;}
.y95{bottom:820.293333pt;}
.y68{bottom:820.933333pt;}
.yd7{bottom:821.093333pt;}
.y3a{bottom:821.893333pt;}
.yf9{bottom:822.693333pt;}
.yb{bottom:824.613333pt;}
.y121{bottom:837.093333pt;}
.yb0{bottom:837.733333pt;}
.y94{bottom:838.373333pt;}
.y67{bottom:839.173333pt;}
.y14b{bottom:839.813333pt;}
.y39{bottom:840.133333pt;}
.yf8{bottom:840.293333pt;}
.ya{bottom:842.213333pt;}
.y120{bottom:855.173333pt;}
.yaf{bottom:855.813333pt;}
.y93{bottom:856.613333pt;}
.y66{bottom:857.253333pt;}
.y14a{bottom:857.413333pt;}
.y38{bottom:858.053333pt;}
.y9{bottom:859.813333pt;}
.y11f{bottom:874.213333pt;}
.y92{bottom:874.853333pt;}
.y65{bottom:875.493333pt;}
.yf7{bottom:875.653333pt;}
.y37{bottom:876.133333pt;}
.y8{bottom:877.893333pt;}
.y11e{bottom:892.293333pt;}
.y91{bottom:893.093333pt;}
.y64{bottom:893.733333pt;}
.y36{bottom:894.373333pt;}
.y7{bottom:897.093333pt;}
.y90{bottom:911.333333pt;}
.y63{bottom:911.973333pt;}
.y35{bottom:912.613333pt;}
.y8f{bottom:929.413333pt;}
.y62{bottom:930.213333pt;}
.y34{bottom:930.373333pt;}
.y3{bottom:950.053333pt;}
.y2{bottom:973.253333pt;}
.y1{bottom:990.533333pt;}
.h6{height:31.155000pt;}
.h7{height:31.217812pt;}
.h9{height:42.780000pt;}
.h5{height:42.866250pt;}
.ha{height:42.981250pt;}
.h8{height:46.500000pt;}
.h2{height:51.750000pt;}
.h4{height:55.136250pt;}
.hc{height:60.519362pt;}
.hb{height:61.295000pt;}
.h3{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:71.360000pt;}
.x5{left:75.520000pt;}
.x16{left:76.960000pt;}
.x6{left:78.240000pt;}
.x13{left:82.720000pt;}
.xe{left:88.512000pt;}
.xd{left:94.112000pt;}
.x18{left:99.552000pt;}
.xf{left:122.752000pt;}
.x14{left:127.552000pt;}
.x10{left:146.746667pt;}
.x15{left:151.546667pt;}
.x2{left:162.586667pt;}
.x11{left:170.106667pt;}
.x3{left:172.666667pt;}
.x12{left:194.106667pt;}
.xa{left:319.586667pt;}
.xb{left:326.946667pt;}
.x9{left:331.586667pt;}
.x7{left:355.266667pt;}
.xc{left:368.386667pt;}
.x8{left:396.866667pt;}
.x1{left:472.893333pt;}
.x4{left:696.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; }
  