
    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_a9a6b54a5a0d5b7560e56dbb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d161a8a011bb3631de627a72.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_53bfa68bc3e3a8aef60b3852.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9fe87ad60a4f688d96f44e11.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.576000px;}
.ls2{letter-spacing:9.360000px;}
.ls8{letter-spacing:33.984000px;}
.ls1{letter-spacing:54.864000px;}
.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:-72.000000px;}
.ws4{word-spacing:-40.608000px;}
.ws5{word-spacing:-18.576000px;}
.ws7{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._22{margin-left:-5.184000px;}
._8{margin-left:-4.176000px;}
._7{margin-left:-3.168000px;}
._14{margin-left:-2.160000px;}
._1{margin-left:-1.152000px;}
._0{width:1.008000px;}
._12{width:2.520000px;}
._13{width:3.528000px;}
._19{width:4.680000px;}
._b{width:5.688000px;}
._c{width:6.696000px;}
._11{width:8.136000px;}
._16{width:9.288000px;}
._2{width:10.872000px;}
._3{width:12.024000px;}
._17{width:13.032000px;}
._5{width:14.184000px;}
._a{width:15.480000px;}
._9{width:16.632000px;}
._23{width:19.008000px;}
._4{width:20.016000px;}
._6{width:21.528000px;}
._18{width:22.680000px;}
._1a{width:23.688000px;}
._10{width:25.128000px;}
._d{width:26.928000px;}
._e{width:28.224000px;}
._1b{width:29.880000px;}
._1c{width:30.888000px;}
._1d{width:32.256000px;}
._1e{width:33.624000px;}
._21{width:34.632000px;}
._25{width:35.712000px;}
._15{width:37.368000px;}
._f{width:38.424000px;}
._1f{width:40.680000px;}
._20{width:41.700000px;}
._24{width:43.116000px;}
._26{width:48.528000px;}
._27{width:52.272000px;}
._28{width:58.800000px;}
._29{width:846.156000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.y82{bottom:101.196000px;}
.y171{bottom:106.416000px;}
.ya6{bottom:110.196000px;}
.yf8{bottom:111.636000px;}
.y133{bottom:116.676000px;}
.y18d{bottom:118.116000px;}
.y81{bottom:121.896000px;}
.yb8{bottom:125.856000px;}
.y57{bottom:127.116000px;}
.ya5{bottom:131.076000px;}
.yf7{bottom:132.336000px;}
.y2e{bottom:132.876000px;}
.y15c{bottom:134.856000px;}
.y132{bottom:137.376000px;}
.y14e{bottom:137.556000px;}
.y18c{bottom:138.816000px;}
.y117{bottom:141.336000px;}
.y80{bottom:143.856000px;}
.yb7{bottom:146.556000px;}
.y56{bottom:147.816000px;}
.ya4{bottom:153.030000px;}
.y2d{bottom:153.570000px;}
.y15b{bottom:155.550000px;}
.y131{bottom:158.070000px;}
.y14d{bottom:159.510000px;}
.yd5{bottom:162.030000px;}
.y7f{bottom:164.550000px;}
.y55{bottom:168.510000px;}
.ya3{bottom:173.730000px;}
.y2c{bottom:174.270000px;}
.y15a{bottom:176.250000px;}
.y130{bottom:178.770000px;}
.y14c{bottom:180.210000px;}
.y18b{bottom:181.470000px;}
.yd4{bottom:182.730000px;}
.y7e{bottom:185.250000px;}
.yb6{bottom:189.210000px;}
.y54{bottom:190.470000px;}
.ya2{bottom:194.430000px;}
.y2b{bottom:194.970000px;}
.yf6{bottom:195.690000px;}
.y159{bottom:196.950000px;}
.y12f{bottom:199.470000px;}
.y14b{bottom:200.730000px;}
.y18a{bottom:202.170000px;}
.yd3{bottom:203.430000px;}
.y116{bottom:204.690000px;}
.y7d{bottom:205.950000px;}
.y53{bottom:209.190000px;}
.yb5{bottom:209.910000px;}
.ya1{bottom:215.130000px;}
.y2a{bottom:215.670000px;}
.yf5{bottom:216.390000px;}
.y158{bottom:218.910000px;}
.y1a4{bottom:220.170000px;}
.y52{bottom:221.430000px;}
.y189{bottom:222.870000px;}
.yd2{bottom:224.130000px;}
.y115{bottom:225.390000px;}
.y7c{bottom:227.910000px;}
.y170{bottom:230.610000px;}
.yb4{bottom:231.870000px;}
.ya0{bottom:235.830000px;}
.y29{bottom:236.370000px;}
.yf4{bottom:237.090000px;}
.y157{bottom:239.610000px;}
.y1a3{bottom:240.870000px;}
.y51{bottom:242.130000px;}
.y12e{bottom:242.310000px;}
.y188{bottom:244.830000px;}
.yd1{bottom:246.090000px;}
.y114{bottom:247.350000px;}
.y7b{bottom:248.610000px;}
.yb3{bottom:252.570000px;}
.y9f{bottom:256.530000px;}
.y28{bottom:257.070000px;}
.yf3{bottom:257.790000px;}
.y156{bottom:261.570000px;}
.y14a{bottom:262.830000px;}
.y50{bottom:263.010000px;}
.y12d{bottom:264.270000px;}
.y187{bottom:265.530000px;}
.yd0{bottom:266.790000px;}
.y113{bottom:268.050000px;}
.y7a{bottom:269.310000px;}
.yb2{bottom:273.270000px;}
.y9e{bottom:277.050000px;}
.y27{bottom:277.770000px;}
.yf2{bottom:279.750000px;}
.y155{bottom:282.270000px;}
.y12c{bottom:282.990000px;}
.y149{bottom:283.530000px;}
.y4f{bottom:284.970000px;}
.y186{bottom:286.230000px;}
.ycf{bottom:288.750000px;}
.y112{bottom:290.010000px;}
.y79{bottom:290.190000px;}
.y16f{bottom:294.015000px;}
.yb1{bottom:295.275000px;}
.y9d{bottom:297.795000px;}
.y26{bottom:298.515000px;}
.yf1{bottom:300.495000px;}
.y148{bottom:302.475000px;}
.y1a2{bottom:303.015000px;}
.y154{bottom:304.275000px;}
.y4e{bottom:305.715000px;}
.y185{bottom:308.235000px;}
.yce{bottom:309.495000px;}
.y111{bottom:310.755000px;}
.y78{bottom:312.195000px;}
.yb0{bottom:314.175000px;}
.y147{bottom:314.715000px;}
.y12b{bottom:315.975000px;}
.y9c{bottom:316.695000px;}
.y25{bottom:317.235000px;}
.yf0{bottom:321.195000px;}
.y1a1{bottom:323.715000px;}
.y153{bottom:325.155000px;}
.y4d{bottom:326.415000px;}
.y9b{bottom:328.935000px;}
.y24{bottom:329.475000px;}
.ycd{bottom:331.455000px;}
.y77{bottom:332.895000px;}
.y16e{bottom:334.875000px;}
.y146{bottom:335.415000px;}
.y12a{bottom:336.675000px;}
.yef{bottom:341.895000px;}
.y1a0{bottom:344.415000px;}
.y4c{bottom:347.115000px;}
.y9a{bottom:349.635000px;}
.y23{bottom:350.175000px;}
.y184{bottom:350.895000px;}
.ycc{bottom:352.155000px;}
.y110{bottom:353.415000px;}
.y76{bottom:353.595000px;}
.y145{bottom:356.115000px;}
.y129{bottom:357.375000px;}
.yee{bottom:362.595000px;}
.y19f{bottom:365.115000px;}
.yaf{bottom:367.815000px;}
.y4b{bottom:369.075000px;}
.y99{bottom:370.335000px;}
.y22{bottom:370.875000px;}
.y183{bottom:371.595000px;}
.ycb{bottom:372.855000px;}
.y10f{bottom:374.115000px;}
.y75{bottom:375.555000px;}
.y144{bottom:376.815000px;}
.y128{bottom:378.075000px;}
.yed{bottom:384.555000px;}
.y19e{bottom:385.815000px;}
.y4a{bottom:389.775000px;}
.y98{bottom:391.035000px;}
.y21{bottom:391.575000px;}
.y182{bottom:393.555000px;}
.yca{bottom:394.815000px;}
.y10e{bottom:394.995000px;}
.y74{bottom:396.255000px;}
.y143{bottom:397.515000px;}
.y127{bottom:400.035000px;}
.yec{bottom:406.515000px;}
.y20{bottom:410.475000px;}
.y97{bottom:411.735000px;}
.y181{bottom:412.455000px;}
.yc9{bottom:415.515000px;}
.y10d{bottom:416.955000px;}
.y73{bottom:418.215000px;}
.y126{bottom:420.735000px;}
.y1f{bottom:422.715000px;}
.y180{bottom:424.695000px;}
.yeb{bottom:427.215000px;}
.y49{bottom:431.175000px;}
.y96{bottom:432.435000px;}
.yc8{bottom:436.395000px;}
.y10c{bottom:437.655000px;}
.y72{bottom:438.915000px;}
.y142{bottom:440.175000px;}
.y125{bottom:442.695000px;}
.y1e{bottom:443.415000px;}
.y17f{bottom:445.395000px;}
.y19d{bottom:446.115000px;}
.yea{bottom:447.915000px;}
.y48{bottom:453.135000px;}
.y10b{bottom:456.375000px;}
.yc7{bottom:458.355000px;}
.y71{bottom:460.875000px;}
.y124{bottom:463.395000px;}
.y1d{bottom:464.115000px;}
.y17e{bottom:466.095000px;}
.y10a{bottom:468.615000px;}
.ye9{bottom:469.875000px;}
.y47{bottom:471.855000px;}
.y95{bottom:473.835000px;}
.yc6{bottom:479.055000px;}
.y70{bottom:481.575000px;}
.y1c{bottom:482.835000px;}
.y46{bottom:484.095000px;}
.y17d{bottom:488.055000px;}
.y109{bottom:489.315000px;}
.ye8{bottom:490.575000px;}
.y94{bottom:494.535000px;}
.y1b{bottom:495.075000px;}
.yc5{bottom:499.755000px;}
.y6f{bottom:502.275000px;}
.y123{bottom:502.995000px;}
.y141{bottom:503.535000px;}
.y45{bottom:504.795000px;}
.y17c{bottom:508.755000px;}
.y108{bottom:510.015000px;}
.ye7{bottom:511.455000px;}
.y93{bottom:515.235000px;}
.y1a{bottom:515.775000px;}
.yae{bottom:516.495000px;}
.y19c{bottom:520.455000px;}
.yc4{bottom:521.715000px;}
.y6e{bottom:523.005000px;}
.y44{bottom:525.525000px;}
.y17b{bottom:529.485000px;}
.y107{bottom:530.745000px;}
.ye6{bottom:533.445000px;}
.y122{bottom:535.965000px;}
.y19{bottom:536.505000px;}
.y92{bottom:537.225000px;}
.yc3{bottom:540.465000px;}
.y19b{bottom:541.185000px;}
.y6d{bottom:543.705000px;}
.y43{bottom:546.225000px;}
.y140{bottom:546.405000px;}
.y106{bottom:551.445000px;}
.yc2{bottom:552.705000px;}
.ye5{bottom:554.145000px;}
.y121{bottom:556.665000px;}
.y18{bottom:557.205000px;}
.y91{bottom:557.925000px;}
.y152{bottom:559.185000px;}
.y19a{bottom:561.885000px;}
.y6c{bottom:564.405000px;}
.y42{bottom:565.125000px;}
.y1b0{bottom:566.925000px;}
.y13f{bottom:568.365000px;}
.y105{bottom:572.145000px;}
.yc1{bottom:573.405000px;}
.ye4{bottom:576.105000px;}
.y16d{bottom:576.825000px;}
.y41{bottom:577.365000px;}
.y17{bottom:577.905000px;}
.y90{bottom:578.625000px;}
.y151{bottom:579.885000px;}
.y199{bottom:582.585000px;}
.y6b{bottom:586.365000px;}
.y1af{bottom:587.625000px;}
.y13e{bottom:589.065000px;}
.y104{bottom:592.845000px;}
.yc0{bottom:594.105000px;}
.ye3{bottom:596.805000px;}
.y40{bottom:598.065000px;}
.y16{bottom:598.605000px;}
.y120{bottom:599.325000px;}
.y8f{bottom:600.585000px;}
.y198{bottom:603.285000px;}
.y6a{bottom:607.065000px;}
.y1ae{bottom:608.325000px;}
.y13d{bottom:609.765000px;}
.y103{bottom:613.545000px;}
.ybf{bottom:614.805000px;}
.ye2{bottom:617.505000px;}
.y3f{bottom:618.765000px;}
.y15{bottom:619.305000px;}
.y11f{bottom:620.025000px;}
.y8e{bottom:621.285000px;}
.yad{bottom:622.545000px;}
.y197{bottom:623.985000px;}
.y69{bottom:627.765000px;}
.y1ad{bottom:629.025000px;}
.y16c{bottom:630.465000px;}
.y13c{bottom:631.725000px;}
.y17a{bottom:633.705000px;}
.y102{bottom:634.245000px;}
.ybe{bottom:635.505000px;}
.y3e{bottom:639.465000px;}
.y14{bottom:640.005000px;}
.y11e{bottom:640.725000px;}
.y8d{bottom:641.985000px;}
.yac{bottom:643.245000px;}
.y196{bottom:644.685000px;}
.y179{bottom:645.945000px;}
.y68{bottom:648.465000px;}
.y1ac{bottom:649.725000px;}
.y16b{bottom:650.985000px;}
.y13b{bottom:653.685000px;}
.y101{bottom:654.945000px;}
.ybd{bottom:656.205000px;}
.y3d{bottom:660.165000px;}
.y13{bottom:660.705000px;}
.y11d{bottom:662.685000px;}
.y8c{bottom:663.945000px;}
.yab{bottom:664.125000px;}
.y195{bottom:665.385000px;}
.y178{bottom:666.645000px;}
.y67{bottom:669.165000px;}
.y1ab{bottom:670.425000px;}
.y16a{bottom:671.865000px;}
.y13a{bottom:674.385000px;}
.ybc{bottom:675.105000px;}
.y100{bottom:675.645000px;}
.y3c{bottom:680.865000px;}
.y12{bottom:681.405000px;}
.ye1{bottom:682.125000px;}
.y11c{bottom:683.385000px;}
.y150{bottom:684.645000px;}
.y8b{bottom:684.825000px;}
.yaa{bottom:686.085000px;}
.ybb{bottom:687.345000px;}
.y66{bottom:689.865000px;}
.y1aa{bottom:691.125000px;}
.y169{bottom:693.825000px;}
.yff{bottom:694.545000px;}
.y139{bottom:696.345000px;}
.y3b{bottom:701.565000px;}
.y11{bottom:702.105000px;}
.ye0{bottom:702.825000px;}
.y194{bottom:704.805000px;}
.y11b{bottom:705.345000px;}
.y8a{bottom:706.785000px;}
.yba{bottom:708.045000px;}
.y65{bottom:710.565000px;}
.y1a9{bottom:711.825000px;}
.y168{bottom:714.525000px;}
.y138{bottom:717.045000px;}
.y3a{bottom:722.265000px;}
.y10{bottom:722.805000px;}
.ydf{bottom:724.785000px;}
.y11a{bottom:726.045000px;}
.y177{bottom:726.765000px;}
.yfe{bottom:727.305000px;}
.y89{bottom:727.485000px;}
.yb9{bottom:728.745000px;}
.y64{bottom:729.465000px;}
.y1a8{bottom:732.525000px;}
.y167{bottom:736.485000px;}
.y193{bottom:737.745000px;}
.y137{bottom:739.005000px;}
.y63{bottom:741.705000px;}
.y39{bottom:742.965000px;}
.yf{bottom:743.505000px;}
.yde{bottom:745.485000px;}
.y119{bottom:746.745000px;}
.yfd{bottom:748.005000px;}
.y14f{bottom:748.185000px;}
.y88{bottom:749.445000px;}
.y1a7{bottom:753.225000px;}
.y166{bottom:757.230000px;}
.y192{bottom:758.490000px;}
.y176{bottom:759.750000px;}
.y136{bottom:761.010000px;}
.y62{bottom:762.450000px;}
.y38{bottom:763.710000px;}
.ye{bottom:764.250000px;}
.ydd{bottom:767.490000px;}
.yfc{bottom:768.750000px;}
.y87{bottom:770.190000px;}
.y1a6{bottom:773.970000px;}
.y165{bottom:779.190000px;}
.y191{bottom:780.450000px;}
.y135{bottom:781.710000px;}
.y61{bottom:783.150000px;}
.y37{bottom:784.410000px;}
.yd{bottom:784.950000px;}
.ydc{bottom:788.190000px;}
.yfb{bottom:789.450000px;}
.y118{bottom:789.630000px;}
.y86{bottom:790.890000px;}
.y1a5{bottom:794.670000px;}
.y164{bottom:799.890000px;}
.y134{bottom:800.610000px;}
.y190{bottom:801.150000px;}
.y175{bottom:802.410000px;}
.y36{bottom:803.130000px;}
.yc{bottom:803.670000px;}
.ydb{bottom:810.150000px;}
.yfa{bottom:810.330000px;}
.ya9{bottom:811.590000px;}
.y85{bottom:812.850000px;}
.y35{bottom:815.370000px;}
.yb{bottom:820.950000px;}
.y163{bottom:821.850000px;}
.y60{bottom:824.370000px;}
.yda{bottom:831.030000px;}
.ya8{bottom:832.290000px;}
.y84{bottom:833.550000px;}
.y34{bottom:836.070000px;}
.ya{bottom:841.650000px;}
.y162{bottom:842.550000px;}
.y5f{bottom:843.270000px;}
.y18f{bottom:843.810000px;}
.y174{bottom:845.250000px;}
.yd9{bottom:852.990000px;}
.y83{bottom:854.250000px;}
.y5e{bottom:855.510000px;}
.y33{bottom:856.770000px;}
.y9{bottom:862.350000px;}
.y161{bottom:864.510000px;}
.y173{bottom:867.210000px;}
.yd8{bottom:873.690000px;}
.ya7{bottom:874.950000px;}
.y5d{bottom:876.210000px;}
.y32{bottom:877.470000px;}
.y8{bottom:883.050000px;}
.y160{bottom:885.210000px;}
.y172{bottom:885.930000px;}
.yd7{bottom:895.650000px;}
.y5c{bottom:896.910000px;}
.y31{bottom:898.170000px;}
.y7{bottom:903.750000px;}
.y15f{bottom:907.170000px;}
.yd6{bottom:916.350000px;}
.y5b{bottom:917.610000px;}
.y30{bottom:918.870000px;}
.y6{bottom:924.450000px;}
.y18e{bottom:926.070000px;}
.y15e{bottom:927.870000px;}
.yf9{bottom:937.050000px;}
.y5a{bottom:938.310000px;}
.y2f{bottom:939.570000px;}
.y5{bottom:943.170000px;}
.y15d{bottom:946.770000px;}
.y59{bottom:959.010000px;}
.y4{bottom:960.270000px;}
.y58{bottom:979.710000px;}
.y3{bottom:980.970000px;}
.h4{height:25.400391px;}
.h6{height:32.273438px;}
.h3{height:50.800781px;}
.h5{height:64.546875px;}
.h2{height:67.824844px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.xb{left:95.075988px;}
.xc{left:122.075988px;}
.x8{left:124.955988px;}
.xa{left:133.595988px;}
.x6{left:144.215988px;}
.xd{left:149.075988px;}
.x4{left:192.089988px;}
.x5{left:299.774988px;}
.x9{left:313.994988px;}
.x7{left:323.354988px;}
.x3{left:330.914988px;}
.x1{left:374.474988px;}
.x2{left:386.894988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls2{letter-spacing:8.320000pt;}
.ls8{letter-spacing:30.208000pt;}
.ls1{letter-spacing:48.768000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws4{word-spacing:-36.096000pt;}
.ws5{word-spacing:-16.512000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._22{margin-left:-4.608000pt;}
._8{margin-left:-3.712000pt;}
._7{margin-left:-2.816000pt;}
._14{margin-left:-1.920000pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.896000pt;}
._12{width:2.240000pt;}
._13{width:3.136000pt;}
._19{width:4.160000pt;}
._b{width:5.056000pt;}
._c{width:5.952000pt;}
._11{width:7.232000pt;}
._16{width:8.256000pt;}
._2{width:9.664000pt;}
._3{width:10.688000pt;}
._17{width:11.584000pt;}
._5{width:12.608000pt;}
._a{width:13.760000pt;}
._9{width:14.784000pt;}
._23{width:16.896000pt;}
._4{width:17.792000pt;}
._6{width:19.136000pt;}
._18{width:20.160000pt;}
._1a{width:21.056000pt;}
._10{width:22.336000pt;}
._d{width:23.936000pt;}
._e{width:25.088000pt;}
._1b{width:26.560000pt;}
._1c{width:27.456000pt;}
._1d{width:28.672000pt;}
._1e{width:29.888000pt;}
._21{width:30.784000pt;}
._25{width:31.744000pt;}
._15{width:33.216000pt;}
._f{width:34.154667pt;}
._1f{width:36.160000pt;}
._20{width:37.066667pt;}
._24{width:38.325333pt;}
._26{width:43.136000pt;}
._27{width:46.464000pt;}
._28{width:52.266667pt;}
._29{width:752.138667pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.y82{bottom:89.952000pt;}
.y171{bottom:94.592000pt;}
.ya6{bottom:97.952000pt;}
.yf8{bottom:99.232000pt;}
.y133{bottom:103.712000pt;}
.y18d{bottom:104.992000pt;}
.y81{bottom:108.352000pt;}
.yb8{bottom:111.872000pt;}
.y57{bottom:112.992000pt;}
.ya5{bottom:116.512000pt;}
.yf7{bottom:117.632000pt;}
.y2e{bottom:118.112000pt;}
.y15c{bottom:119.872000pt;}
.y132{bottom:122.112000pt;}
.y14e{bottom:122.272000pt;}
.y18c{bottom:123.392000pt;}
.y117{bottom:125.632000pt;}
.y80{bottom:127.872000pt;}
.yb7{bottom:130.272000pt;}
.y56{bottom:131.392000pt;}
.ya4{bottom:136.026667pt;}
.y2d{bottom:136.506667pt;}
.y15b{bottom:138.266667pt;}
.y131{bottom:140.506667pt;}
.y14d{bottom:141.786667pt;}
.yd5{bottom:144.026667pt;}
.y7f{bottom:146.266667pt;}
.y55{bottom:149.786667pt;}
.ya3{bottom:154.426667pt;}
.y2c{bottom:154.906667pt;}
.y15a{bottom:156.666667pt;}
.y130{bottom:158.906667pt;}
.y14c{bottom:160.186667pt;}
.y18b{bottom:161.306667pt;}
.yd4{bottom:162.426667pt;}
.y7e{bottom:164.666667pt;}
.yb6{bottom:168.186667pt;}
.y54{bottom:169.306667pt;}
.ya2{bottom:172.826667pt;}
.y2b{bottom:173.306667pt;}
.yf6{bottom:173.946667pt;}
.y159{bottom:175.066667pt;}
.y12f{bottom:177.306667pt;}
.y14b{bottom:178.426667pt;}
.y18a{bottom:179.706667pt;}
.yd3{bottom:180.826667pt;}
.y116{bottom:181.946667pt;}
.y7d{bottom:183.066667pt;}
.y53{bottom:185.946667pt;}
.yb5{bottom:186.586667pt;}
.ya1{bottom:191.226667pt;}
.y2a{bottom:191.706667pt;}
.yf5{bottom:192.346667pt;}
.y158{bottom:194.586667pt;}
.y1a4{bottom:195.706667pt;}
.y52{bottom:196.826667pt;}
.y189{bottom:198.106667pt;}
.yd2{bottom:199.226667pt;}
.y115{bottom:200.346667pt;}
.y7c{bottom:202.586667pt;}
.y170{bottom:204.986667pt;}
.yb4{bottom:206.106667pt;}
.ya0{bottom:209.626667pt;}
.y29{bottom:210.106667pt;}
.yf4{bottom:210.746667pt;}
.y157{bottom:212.986667pt;}
.y1a3{bottom:214.106667pt;}
.y51{bottom:215.226667pt;}
.y12e{bottom:215.386667pt;}
.y188{bottom:217.626667pt;}
.yd1{bottom:218.746667pt;}
.y114{bottom:219.866667pt;}
.y7b{bottom:220.986667pt;}
.yb3{bottom:224.506667pt;}
.y9f{bottom:228.026667pt;}
.y28{bottom:228.506667pt;}
.yf3{bottom:229.146667pt;}
.y156{bottom:232.506667pt;}
.y14a{bottom:233.626667pt;}
.y50{bottom:233.786667pt;}
.y12d{bottom:234.906667pt;}
.y187{bottom:236.026667pt;}
.yd0{bottom:237.146667pt;}
.y113{bottom:238.266667pt;}
.y7a{bottom:239.386667pt;}
.yb2{bottom:242.906667pt;}
.y9e{bottom:246.266667pt;}
.y27{bottom:246.906667pt;}
.yf2{bottom:248.666667pt;}
.y155{bottom:250.906667pt;}
.y12c{bottom:251.546667pt;}
.y149{bottom:252.026667pt;}
.y4f{bottom:253.306667pt;}
.y186{bottom:254.426667pt;}
.ycf{bottom:256.666667pt;}
.y112{bottom:257.786667pt;}
.y79{bottom:257.946667pt;}
.y16f{bottom:261.346667pt;}
.yb1{bottom:262.466667pt;}
.y9d{bottom:264.706667pt;}
.y26{bottom:265.346667pt;}
.yf1{bottom:267.106667pt;}
.y148{bottom:268.866667pt;}
.y1a2{bottom:269.346667pt;}
.y154{bottom:270.466667pt;}
.y4e{bottom:271.746667pt;}
.y185{bottom:273.986667pt;}
.yce{bottom:275.106667pt;}
.y111{bottom:276.226667pt;}
.y78{bottom:277.506667pt;}
.yb0{bottom:279.266667pt;}
.y147{bottom:279.746667pt;}
.y12b{bottom:280.866667pt;}
.y9c{bottom:281.506667pt;}
.y25{bottom:281.986667pt;}
.yf0{bottom:285.506667pt;}
.y1a1{bottom:287.746667pt;}
.y153{bottom:289.026667pt;}
.y4d{bottom:290.146667pt;}
.y9b{bottom:292.386667pt;}
.y24{bottom:292.866667pt;}
.ycd{bottom:294.626667pt;}
.y77{bottom:295.906667pt;}
.y16e{bottom:297.666667pt;}
.y146{bottom:298.146667pt;}
.y12a{bottom:299.266667pt;}
.yef{bottom:303.906667pt;}
.y1a0{bottom:306.146667pt;}
.y4c{bottom:308.546667pt;}
.y9a{bottom:310.786667pt;}
.y23{bottom:311.266667pt;}
.y184{bottom:311.906667pt;}
.ycc{bottom:313.026667pt;}
.y110{bottom:314.146667pt;}
.y76{bottom:314.306667pt;}
.y145{bottom:316.546667pt;}
.y129{bottom:317.666667pt;}
.yee{bottom:322.306667pt;}
.y19f{bottom:324.546667pt;}
.yaf{bottom:326.946667pt;}
.y4b{bottom:328.066667pt;}
.y99{bottom:329.186667pt;}
.y22{bottom:329.666667pt;}
.y183{bottom:330.306667pt;}
.ycb{bottom:331.426667pt;}
.y10f{bottom:332.546667pt;}
.y75{bottom:333.826667pt;}
.y144{bottom:334.946667pt;}
.y128{bottom:336.066667pt;}
.yed{bottom:341.826667pt;}
.y19e{bottom:342.946667pt;}
.y4a{bottom:346.466667pt;}
.y98{bottom:347.586667pt;}
.y21{bottom:348.066667pt;}
.y182{bottom:349.826667pt;}
.yca{bottom:350.946667pt;}
.y10e{bottom:351.106667pt;}
.y74{bottom:352.226667pt;}
.y143{bottom:353.346667pt;}
.y127{bottom:355.586667pt;}
.yec{bottom:361.346667pt;}
.y20{bottom:364.866667pt;}
.y97{bottom:365.986667pt;}
.y181{bottom:366.626667pt;}
.yc9{bottom:369.346667pt;}
.y10d{bottom:370.626667pt;}
.y73{bottom:371.746667pt;}
.y126{bottom:373.986667pt;}
.y1f{bottom:375.746667pt;}
.y180{bottom:377.506667pt;}
.yeb{bottom:379.746667pt;}
.y49{bottom:383.266667pt;}
.y96{bottom:384.386667pt;}
.yc8{bottom:387.906667pt;}
.y10c{bottom:389.026667pt;}
.y72{bottom:390.146667pt;}
.y142{bottom:391.266667pt;}
.y125{bottom:393.506667pt;}
.y1e{bottom:394.146667pt;}
.y17f{bottom:395.906667pt;}
.y19d{bottom:396.546667pt;}
.yea{bottom:398.146667pt;}
.y48{bottom:402.786667pt;}
.y10b{bottom:405.666667pt;}
.yc7{bottom:407.426667pt;}
.y71{bottom:409.666667pt;}
.y124{bottom:411.906667pt;}
.y1d{bottom:412.546667pt;}
.y17e{bottom:414.306667pt;}
.y10a{bottom:416.546667pt;}
.ye9{bottom:417.666667pt;}
.y47{bottom:419.426667pt;}
.y95{bottom:421.186667pt;}
.yc6{bottom:425.826667pt;}
.y70{bottom:428.066667pt;}
.y1c{bottom:429.186667pt;}
.y46{bottom:430.306667pt;}
.y17d{bottom:433.826667pt;}
.y109{bottom:434.946667pt;}
.ye8{bottom:436.066667pt;}
.y94{bottom:439.586667pt;}
.y1b{bottom:440.066667pt;}
.yc5{bottom:444.226667pt;}
.y6f{bottom:446.466667pt;}
.y123{bottom:447.106667pt;}
.y141{bottom:447.586667pt;}
.y45{bottom:448.706667pt;}
.y17c{bottom:452.226667pt;}
.y108{bottom:453.346667pt;}
.ye7{bottom:454.626667pt;}
.y93{bottom:457.986667pt;}
.y1a{bottom:458.466667pt;}
.yae{bottom:459.106667pt;}
.y19c{bottom:462.626667pt;}
.yc4{bottom:463.746667pt;}
.y6e{bottom:464.893333pt;}
.y44{bottom:467.133333pt;}
.y17b{bottom:470.653333pt;}
.y107{bottom:471.773333pt;}
.ye6{bottom:474.173333pt;}
.y122{bottom:476.413333pt;}
.y19{bottom:476.893333pt;}
.y92{bottom:477.533333pt;}
.yc3{bottom:480.413333pt;}
.y19b{bottom:481.053333pt;}
.y6d{bottom:483.293333pt;}
.y43{bottom:485.533333pt;}
.y140{bottom:485.693333pt;}
.y106{bottom:490.173333pt;}
.yc2{bottom:491.293333pt;}
.ye5{bottom:492.573333pt;}
.y121{bottom:494.813333pt;}
.y18{bottom:495.293333pt;}
.y91{bottom:495.933333pt;}
.y152{bottom:497.053333pt;}
.y19a{bottom:499.453333pt;}
.y6c{bottom:501.693333pt;}
.y42{bottom:502.333333pt;}
.y1b0{bottom:503.933333pt;}
.y13f{bottom:505.213333pt;}
.y105{bottom:508.573333pt;}
.yc1{bottom:509.693333pt;}
.ye4{bottom:512.093333pt;}
.y16d{bottom:512.733333pt;}
.y41{bottom:513.213333pt;}
.y17{bottom:513.693333pt;}
.y90{bottom:514.333333pt;}
.y151{bottom:515.453333pt;}
.y199{bottom:517.853333pt;}
.y6b{bottom:521.213333pt;}
.y1af{bottom:522.333333pt;}
.y13e{bottom:523.613333pt;}
.y104{bottom:526.973333pt;}
.yc0{bottom:528.093333pt;}
.ye3{bottom:530.493333pt;}
.y40{bottom:531.613333pt;}
.y16{bottom:532.093333pt;}
.y120{bottom:532.733333pt;}
.y8f{bottom:533.853333pt;}
.y198{bottom:536.253333pt;}
.y6a{bottom:539.613333pt;}
.y1ae{bottom:540.733333pt;}
.y13d{bottom:542.013333pt;}
.y103{bottom:545.373333pt;}
.ybf{bottom:546.493333pt;}
.ye2{bottom:548.893333pt;}
.y3f{bottom:550.013333pt;}
.y15{bottom:550.493333pt;}
.y11f{bottom:551.133333pt;}
.y8e{bottom:552.253333pt;}
.yad{bottom:553.373333pt;}
.y197{bottom:554.653333pt;}
.y69{bottom:558.013333pt;}
.y1ad{bottom:559.133333pt;}
.y16c{bottom:560.413333pt;}
.y13c{bottom:561.533333pt;}
.y17a{bottom:563.293333pt;}
.y102{bottom:563.773333pt;}
.ybe{bottom:564.893333pt;}
.y3e{bottom:568.413333pt;}
.y14{bottom:568.893333pt;}
.y11e{bottom:569.533333pt;}
.y8d{bottom:570.653333pt;}
.yac{bottom:571.773333pt;}
.y196{bottom:573.053333pt;}
.y179{bottom:574.173333pt;}
.y68{bottom:576.413333pt;}
.y1ac{bottom:577.533333pt;}
.y16b{bottom:578.653333pt;}
.y13b{bottom:581.053333pt;}
.y101{bottom:582.173333pt;}
.ybd{bottom:583.293333pt;}
.y3d{bottom:586.813333pt;}
.y13{bottom:587.293333pt;}
.y11d{bottom:589.053333pt;}
.y8c{bottom:590.173333pt;}
.yab{bottom:590.333333pt;}
.y195{bottom:591.453333pt;}
.y178{bottom:592.573333pt;}
.y67{bottom:594.813333pt;}
.y1ab{bottom:595.933333pt;}
.y16a{bottom:597.213333pt;}
.y13a{bottom:599.453333pt;}
.ybc{bottom:600.093333pt;}
.y100{bottom:600.573333pt;}
.y3c{bottom:605.213333pt;}
.y12{bottom:605.693333pt;}
.ye1{bottom:606.333333pt;}
.y11c{bottom:607.453333pt;}
.y150{bottom:608.573333pt;}
.y8b{bottom:608.733333pt;}
.yaa{bottom:609.853333pt;}
.ybb{bottom:610.973333pt;}
.y66{bottom:613.213333pt;}
.y1aa{bottom:614.333333pt;}
.y169{bottom:616.733333pt;}
.yff{bottom:617.373333pt;}
.y139{bottom:618.973333pt;}
.y3b{bottom:623.613333pt;}
.y11{bottom:624.093333pt;}
.ye0{bottom:624.733333pt;}
.y194{bottom:626.493333pt;}
.y11b{bottom:626.973333pt;}
.y8a{bottom:628.253333pt;}
.yba{bottom:629.373333pt;}
.y65{bottom:631.613333pt;}
.y1a9{bottom:632.733333pt;}
.y168{bottom:635.133333pt;}
.y138{bottom:637.373333pt;}
.y3a{bottom:642.013333pt;}
.y10{bottom:642.493333pt;}
.ydf{bottom:644.253333pt;}
.y11a{bottom:645.373333pt;}
.y177{bottom:646.013333pt;}
.yfe{bottom:646.493333pt;}
.y89{bottom:646.653333pt;}
.yb9{bottom:647.773333pt;}
.y64{bottom:648.413333pt;}
.y1a8{bottom:651.133333pt;}
.y167{bottom:654.653333pt;}
.y193{bottom:655.773333pt;}
.y137{bottom:656.893333pt;}
.y63{bottom:659.293333pt;}
.y39{bottom:660.413333pt;}
.yf{bottom:660.893333pt;}
.yde{bottom:662.653333pt;}
.y119{bottom:663.773333pt;}
.yfd{bottom:664.893333pt;}
.y14f{bottom:665.053333pt;}
.y88{bottom:666.173333pt;}
.y1a7{bottom:669.533333pt;}
.y166{bottom:673.093333pt;}
.y192{bottom:674.213333pt;}
.y176{bottom:675.333333pt;}
.y136{bottom:676.453333pt;}
.y62{bottom:677.733333pt;}
.y38{bottom:678.853333pt;}
.ye{bottom:679.333333pt;}
.ydd{bottom:682.213333pt;}
.yfc{bottom:683.333333pt;}
.y87{bottom:684.613333pt;}
.y1a6{bottom:687.973333pt;}
.y165{bottom:692.613333pt;}
.y191{bottom:693.733333pt;}
.y135{bottom:694.853333pt;}
.y61{bottom:696.133333pt;}
.y37{bottom:697.253333pt;}
.yd{bottom:697.733333pt;}
.ydc{bottom:700.613333pt;}
.yfb{bottom:701.733333pt;}
.y118{bottom:701.893333pt;}
.y86{bottom:703.013333pt;}
.y1a5{bottom:706.373333pt;}
.y164{bottom:711.013333pt;}
.y134{bottom:711.653333pt;}
.y190{bottom:712.133333pt;}
.y175{bottom:713.253333pt;}
.y36{bottom:713.893333pt;}
.yc{bottom:714.373333pt;}
.ydb{bottom:720.133333pt;}
.yfa{bottom:720.293333pt;}
.ya9{bottom:721.413333pt;}
.y85{bottom:722.533333pt;}
.y35{bottom:724.773333pt;}
.yb{bottom:729.733333pt;}
.y163{bottom:730.533333pt;}
.y60{bottom:732.773333pt;}
.yda{bottom:738.693333pt;}
.ya8{bottom:739.813333pt;}
.y84{bottom:740.933333pt;}
.y34{bottom:743.173333pt;}
.ya{bottom:748.133333pt;}
.y162{bottom:748.933333pt;}
.y5f{bottom:749.573333pt;}
.y18f{bottom:750.053333pt;}
.y174{bottom:751.333333pt;}
.yd9{bottom:758.213333pt;}
.y83{bottom:759.333333pt;}
.y5e{bottom:760.453333pt;}
.y33{bottom:761.573333pt;}
.y9{bottom:766.533333pt;}
.y161{bottom:768.453333pt;}
.y173{bottom:770.853333pt;}
.yd8{bottom:776.613333pt;}
.ya7{bottom:777.733333pt;}
.y5d{bottom:778.853333pt;}
.y32{bottom:779.973333pt;}
.y8{bottom:784.933333pt;}
.y160{bottom:786.853333pt;}
.y172{bottom:787.493333pt;}
.yd7{bottom:796.133333pt;}
.y5c{bottom:797.253333pt;}
.y31{bottom:798.373333pt;}
.y7{bottom:803.333333pt;}
.y15f{bottom:806.373333pt;}
.yd6{bottom:814.533333pt;}
.y5b{bottom:815.653333pt;}
.y30{bottom:816.773333pt;}
.y6{bottom:821.733333pt;}
.y18e{bottom:823.173333pt;}
.y15e{bottom:824.773333pt;}
.yf9{bottom:832.933333pt;}
.y5a{bottom:834.053333pt;}
.y2f{bottom:835.173333pt;}
.y5{bottom:838.373333pt;}
.y15d{bottom:841.573333pt;}
.y59{bottom:852.453333pt;}
.y4{bottom:853.573333pt;}
.y58{bottom:870.853333pt;}
.y3{bottom:871.973333pt;}
.h4{height:22.578125pt;}
.h6{height:28.687500pt;}
.h3{height:45.156250pt;}
.h5{height:57.375000pt;}
.h2{height:60.288750pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.xb{left:84.511990pt;}
.xc{left:108.511990pt;}
.x8{left:111.071990pt;}
.xa{left:118.751990pt;}
.x6{left:128.191990pt;}
.xd{left:132.511990pt;}
.x4{left:170.746656pt;}
.x5{left:266.466656pt;}
.x9{left:279.106656pt;}
.x7{left:287.426656pt;}
.x3{left:294.146656pt;}
.x1{left:332.866656pt;}
.x2{left:343.906656pt;}
}




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