
    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_ffe35d957212cc213aa4afce.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_26e65a0c2ccf6bc5d1ff474e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_f4cdb2bcb0ec7119f8223937.woff')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_637826d0129734a8316d9ec1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_0af377274411a4f58e5648cd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_98b94171b1cd8a1d0031df2d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls5{letter-spacing:-10.800000px;}
.ls4{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.237600px;}
.ls6{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.137400px;}
.ls15{letter-spacing:-0.127200px;}
.lsf{letter-spacing:-0.032400px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.005040px;}
.lsb{letter-spacing:0.052560px;}
.ls0{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.094800px;}
.ls9{letter-spacing:0.174000px;}
.ls17{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.212400px;}
.ls7{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.217200px;}
.lsa{letter-spacing:0.288000px;}
.ls14{letter-spacing:2.340000px;}
.ls2{letter-spacing:2.880000px;}
.ls1{letter-spacing:8.640000px;}
.ls13{letter-spacing:56.340000px;}
.ls8{letter-spacing:1322.250240px;}
.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:-21.060000px;}
.ws8{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.352000px;}
.wsf{word-spacing:-15.157200px;}
.wsd{word-spacing:-15.152400px;}
.ws9{word-spacing:-15.034800px;}
.ws10{word-spacing:-14.992560px;}
.wse{word-spacing:-14.945040px;}
.wsa{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.907600px;}
.ws11{word-spacing:-14.812800px;}
.wsb{word-spacing:-14.802600px;}
.ws12{word-spacing:-14.702400px;}
.ws3{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._2e{margin-left:-71.280000px;}
._2a{margin-left:-5.616000px;}
._1c{margin-left:-4.104000px;}
._0{margin-left:-2.700000px;}
._1{margin-left:-1.026000px;}
._2{width:1.038000px;}
._10{width:2.448000px;}
._7{width:3.553680px;}
._e{width:4.680000px;}
._c{width:6.408000px;}
._b{width:7.632000px;}
._11{width:8.760000px;}
._20{width:10.122000px;}
._d{width:11.154000px;}
._f{width:12.960000px;}
._16{width:14.832000px;}
._17{width:15.840000px;}
._29{width:16.848000px;}
._1d{width:19.584000px;}
._1e{width:20.736000px;}
._13{width:22.644000px;}
._12{width:24.048000px;}
._25{width:25.272000px;}
._1a{width:26.424000px;}
._14{width:27.792000px;}
._4{width:29.754000px;}
._2c{width:31.092000px;}
._2b{width:32.616000px;}
._28{width:33.768000px;}
._27{width:35.136000px;}
._24{width:36.864000px;}
._21{width:37.872000px;}
._1f{width:39.672000px;}
._19{width:42.372000px;}
._18{width:43.632000px;}
._26{width:44.640000px;}
._2f{width:45.648000px;}
._32{width:49.752000px;}
._2d{width:55.224000px;}
._22{width:63.072000px;}
._23{width:64.152000px;}
._15{width:67.176000px;}
._a{width:71.208000px;}
._8{width:85.404000px;}
._3{width:90.504000px;}
._9{width:104.736000px;}
._31{width:107.424000px;}
._30{width:108.984000px;}
._36{width:111.816000px;}
._35{width:112.824000px;}
._39{width:127.872000px;}
._38{width:129.240000px;}
._37{width:136.656000px;}
._33{width:160.896000px;}
._1b{width:180.120720px;}
._6{width:641.556000px;}
._34{width:977.760000px;}
._5{width:1433.832000px;}
.fc6{color:rgb(5,99,193);}
.fc3{color:rgb(19,20,74);}
.fc1{color:rgb(10,120,154);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y44{bottom:-5.400000px;}
.y0{bottom:0.000000px;}
.yac{bottom:3.960000px;}
.yb6{bottom:4.005000px;}
.yf7{bottom:5.040000px;}
.yab{bottom:20.700000px;}
.yae{bottom:20.880000px;}
.ycf{bottom:20.910000px;}
.ya9{bottom:21.600000px;}
.yb4{bottom:21.645000px;}
.yf6{bottom:22.005000px;}
.ya8{bottom:38.340000px;}
.y108{bottom:38.520000px;}
.y6{bottom:57.600000px;}
.y42{bottom:69.660000px;}
.y5{bottom:76.860000px;}
.y4{bottom:91.980000px;}
.y43{bottom:104.580000px;}
.y3{bottom:107.280000px;}
.y2{bottom:122.400000px;}
.y1{bottom:137.520000px;}
.y41{bottom:148.500000px;}
.y31{bottom:165.450000px;}
.y3f{bottom:168.870000px;}
.y12e{bottom:169.410000px;}
.y113{bottom:171.030000px;}
.yef{bottom:173.910000px;}
.y93{bottom:174.810000px;}
.ye5{bottom:182.910000px;}
.ybf{bottom:185.250000px;}
.y30{bottom:185.790000px;}
.y3e{bottom:189.030000px;}
.y12d{bottom:191.190000px;}
.y112{bottom:191.370000px;}
.yee{bottom:194.250000px;}
.y92{bottom:194.970000px;}
.ye4{bottom:203.250000px;}
.ybe{bottom:205.410000px;}
.y73{bottom:206.130000px;}
.y154{bottom:208.650000px;}
.y3d{bottom:209.370000px;}
.y111{bottom:211.530000px;}
.yed{bottom:214.410000px;}
.y2f{bottom:214.950000px;}
.y91{bottom:215.310000px;}
.ye3{bottom:223.410000px;}
.y12c{bottom:225.030000px;}
.ybd{bottom:225.750000px;}
.y72{bottom:226.470000px;}
.y10f{bottom:227.910000px;}
.y3c{bottom:229.530000px;}
.y153{bottom:230.610000px;}
.yec{bottom:234.750000px;}
.y2e{bottom:235.290000px;}
.y90{bottom:235.470000px;}
.ye2{bottom:243.750000px;}
.y110{bottom:245.550000px;}
.ybc{bottom:245.910000px;}
.y71{bottom:246.810000px;}
.y12b{bottom:246.990000px;}
.yeb{bottom:254.910000px;}
.y2d{bottom:255.450000px;}
.y8f{bottom:255.810000px;}
.y3b{bottom:258.690000px;}
.y10e{bottom:263.190000px;}
.ye1{bottom:263.910000px;}
.y152{bottom:264.450000px;}
.ybb{bottom:266.250000px;}
.y70{bottom:266.970000px;}
.y12a{bottom:268.770000px;}
.y2c{bottom:275.790000px;}
.y8e{bottom:275.970000px;}
.y3a{bottom:279.030000px;}
.yea{bottom:284.070000px;}
.ye0{bottom:284.250000px;}
.y151{bottom:286.230000px;}
.y6f{bottom:287.310000px;}
.y129{bottom:290.550000px;}
.yba{bottom:295.410000px;}
.y2b{bottom:295.950000px;}
.y8d{bottom:296.310000px;}
.y10d{bottom:297.570000px;}
.y39{bottom:299.370000px;}
.ydf{bottom:304.410000px;}
.y6e{bottom:307.470000px;}
.y150{bottom:308.010000px;}
.y128{bottom:312.510000px;}
.y2a{bottom:316.290000px;}
.y8c{bottom:316.470000px;}
.y38{bottom:319.530000px;}
.yb9{bottom:324.570000px;}
.yde{bottom:324.750000px;}
.y6d{bottom:327.810000px;}
.y14f{bottom:329.970000px;}
.y10c{bottom:332.130000px;}
.y127{bottom:334.290000px;}
.y29{bottom:336.450000px;}
.y8b{bottom:336.810000px;}
.y37{bottom:339.870000px;}
.yb8{bottom:344.910000px;}
.y6c{bottom:347.970000px;}
.y14e{bottom:351.750000px;}
.ydd{bottom:353.910000px;}
.y126{bottom:356.250000px;}
.y28{bottom:356.790000px;}
.y8a{bottom:356.970000px;}
.y36{bottom:360.030000px;}
.yb7{bottom:365.250000px;}
.y10b{bottom:366.690000px;}
.y6b{bottom:368.310000px;}
.y14d{bottom:373.710000px;}
.ydc{bottom:374.250000px;}
.y27{bottom:376.950000px;}
.y89{bottom:377.310000px;}
.yb3{bottom:381.630000px;}
.ye9{bottom:385.410000px;}
.y6a{bottom:388.470000px;}
.y35{bottom:389.190000px;}
.y125{bottom:390.090000px;}
.ydb{bottom:394.410000px;}
.y26{bottom:397.290000px;}
.y88{bottom:397.470000px;}
.yb5{bottom:399.270000px;}
.y10a{bottom:401.115000px;}
.ye8{bottom:405.795000px;}
.y14c{bottom:407.595000px;}
.y69{bottom:408.855000px;}
.y34{bottom:409.575000px;}
.y124{bottom:411.915000px;}
.yda{bottom:414.795000px;}
.yb2{bottom:416.775000px;}
.y25{bottom:417.495000px;}
.ye7{bottom:425.955000px;}
.y87{bottom:427.575000px;}
.y68{bottom:429.015000px;}
.y14b{bottom:429.375000px;}
.y33{bottom:429.915000px;}
.y123{bottom:433.875000px;}
.yd9{bottom:434.955000px;}
.y107{bottom:435.675000px;}
.y24{bottom:447.555000px;}
.y67{bottom:449.355000px;}
.y32{bottom:450.075000px;}
.yb1{bottom:451.335000px;}
.y109{bottom:453.315000px;}
.ye6{bottom:455.115000px;}
.yd8{bottom:455.295000px;}
.y122{bottom:455.655000px;}
.y86{bottom:459.255000px;}
.y66{bottom:469.515000px;}
.y14a{bottom:473.115000px;}
.yd7{bottom:475.455000px;}
.y121{bottom:477.435000px;}
.y23{bottom:479.235000px;}
.y85{bottom:479.595000px;}
.yb0{bottom:485.895000px;}
.y65{bottom:489.855000px;}
.y149{bottom:494.895000px;}
.yd6{bottom:495.795000px;}
.y84{bottom:499.935000px;}
.y106{bottom:501.375000px;}
.y120{bottom:507.495000px;}
.y22{bottom:508.575000px;}
.yd5{bottom:515.955000px;}
.y148{bottom:516.855000px;}
.y64{bottom:519.735000px;}
.y83{bottom:520.095000px;}
.yaf{bottom:520.275000px;}
.y105{bottom:521.715000px;}
.y11f{bottom:539.175000px;}
.y82{bottom:540.435000px;}
.y21{bottom:544.035000px;}
.yd4{bottom:545.115000px;}
.y147{bottom:550.695000px;}
.y63{bottom:551.595000px;}
.yad{bottom:554.835000px;}
.y11e{bottom:559.515000px;}
.y81{bottom:560.595000px;}
.y104{bottom:564.375000px;}
.yd3{bottom:565.455000px;}
.y20{bottom:567.255000px;}
.y62{bottom:571.935000px;}
.y146{bottom:572.475000px;}
.y11d{bottom:579.855000px;}
.y80{bottom:580.935000px;}
.y103{bottom:584.715000px;}
.yd2{bottom:585.795000px;}
.ya7{bottom:589.395000px;}
.y1f{bottom:590.655000px;}
.y61{bottom:592.095000px;}
.y145{bottom:594.435000px;}
.y11c{bottom:600.015000px;}
.y7f{bottom:601.095000px;}
.yd0{bottom:602.175000px;}
.y102{bottom:604.875000px;}
.yaa{bottom:607.035000px;}
.y60{bottom:612.435000px;}
.y144{bottom:616.215000px;}
.y1e{bottom:619.635000px;}
.yd1{bottom:619.815000px;}
.y11b{bottom:620.355000px;}
.y7e{bottom:621.435000px;}
.y101{bottom:625.215000px;}
.yce{bottom:637.275000px;}
.y143{bottom:637.995000px;}
.y1d{bottom:639.975000px;}
.y11a{bottom:640.515000px;}
.y5f{bottom:641.595000px;}
.y100{bottom:645.375000px;}
.ya6{bottom:655.125000px;}
.y119{bottom:660.885000px;}
.y5e{bottom:661.965000px;}
.yff{bottom:665.745000px;}
.y1c{bottom:669.165000px;}
.ycd{bottom:671.865000px;}
.y142{bottom:672.045000px;}
.ya5{bottom:675.465000px;}
.y118{bottom:681.045000px;}
.y5d{bottom:682.125000px;}
.yfe{bottom:685.905000px;}
.y1b{bottom:689.505000px;}
.y141{bottom:693.825000px;}
.y117{bottom:701.385000px;}
.y5c{bottom:702.465000px;}
.ya4{bottom:704.625000px;}
.ycc{bottom:706.425000px;}
.y1a{bottom:709.845000px;}
.yfd{bottom:715.065000px;}
.y140{bottom:715.605000px;}
.y116{bottom:721.545000px;}
.y5b{bottom:722.625000px;}
.y19{bottom:730.005000px;}
.ya3{bottom:733.785000px;}
.yfc{bottom:735.405000px;}
.y13f{bottom:737.565000px;}
.ycb{bottom:740.805000px;}
.y115{bottom:741.885000px;}
.y5a{bottom:742.965000px;}
.y18{bottom:750.345000px;}
.ya2{bottom:754.125000px;}
.yfb{bottom:755.745000px;}
.y59{bottom:763.125000px;}
.y17{bottom:770.505000px;}
.y13e{bottom:771.405000px;}
.y114{bottom:771.765000px;}
.y7d{bottom:772.125000px;}
.ya1{bottom:774.465000px;}
.yca{bottom:775.365000px;}
.y58{bottom:783.465000px;}
.yfa{bottom:789.765000px;}
.y16{bottom:790.845000px;}
.y7c{bottom:792.465000px;}
.y13d{bottom:793.185000px;}
.ya0{bottom:794.625000px;}
.y57{bottom:803.625000px;}
.yf9{bottom:807.225000px;}
.yc8{bottom:809.925000px;}
.y15{bottom:811.005000px;}
.y7b{bottom:812.625000px;}
.y9f{bottom:814.965000px;}
.y13c{bottom:815.145000px;}
.y56{bottom:823.965000px;}
.yc9{bottom:827.565000px;}
.y14{bottom:831.345000px;}
.y94{bottom:832.785000px;}
.y7a{bottom:832.965000px;}
.y9e{bottom:835.125000px;}
.y13b{bottom:836.925000px;}
.yf8{bottom:841.785000px;}
.y55{bottom:844.125000px;}
.y13{bottom:851.505000px;}
.y79{bottom:853.125000px;}
.y9d{bottom:855.465000px;}
.y13a{bottom:858.705000px;}
.y54{bottom:864.465000px;}
.y12{bottom:871.845000px;}
.y78{bottom:873.465000px;}
.y9c{bottom:875.625000px;}
.yf5{bottom:876.345000px;}
.y53{bottom:884.625000px;}
.y139{bottom:892.725000px;}
.y77{bottom:893.625000px;}
.yc7{bottom:895.965000px;}
.y11{bottom:901.770000px;}
.y9b{bottom:904.830000px;}
.y52{bottom:905.010000px;}
.yf4{bottom:911.850000px;}
.y76{bottom:914.010000px;}
.y138{bottom:914.550000px;}
.yc6{bottom:916.170000px;}
.y51{bottom:925.170000px;}
.y10{bottom:933.630000px;}
.y75{bottom:934.170000px;}
.y161{bottom:934.530000px;}
.y137{bottom:936.330000px;}
.yc5{bottom:945.330000px;}
.y50{bottom:945.510000px;}
.yf3{bottom:946.410000px;}
.y74{bottom:954.510000px;}
.y15e{bottom:956.670000px;}
.yf{bottom:962.790000px;}
.y9a{bottom:965.670000px;}
.y136{bottom:970.170000px;}
.y4f{bottom:974.670000px;}
.y160{bottom:978.270000px;}
.y15d{bottom:978.450000px;}
.yf1{bottom:980.970000px;}
.ye{bottom:983.130000px;}
.y99{bottom:986.010000px;}
.y135{bottom:992.130000px;}
.y4e{bottom:995.010000px;}
.yf2{bottom:998.610000px;}
.y15c{bottom:1000.410000px;}
.y98{bottom:1006.170000px;}
.yd{bottom:1012.290000px;}
.y134{bottom:1013.910000px;}
.y4d{bottom:1015.170000px;}
.y97{bottom:1026.510000px;}
.y15b{bottom:1034.250000px;}
.y4c{bottom:1035.510000px;}
.y133{bottom:1035.870000px;}
.yc{bottom:1041.630000px;}
.y96{bottom:1046.670000px;}
.y4b{bottom:1055.670000px;}
.y15a{bottom:1056.030000px;}
.y132{bottom:1057.650000px;}
.yb{bottom:1061.970000px;}
.yc4{bottom:1067.010000px;}
.y95{bottom:1075.830000px;}
.y4a{bottom:1076.010000px;}
.y159{bottom:1077.990000px;}
.y131{bottom:1079.430000px;}
.ya{bottom:1082.130000px;}
.yc3{bottom:1087.170000px;}
.y49{bottom:1096.170000px;}
.y158{bottom:1099.770000px;}
.y130{bottom:1101.390000px;}
.yc2{bottom:1107.510000px;}
.yf0{bottom:1116.330000px;}
.y48{bottom:1116.510000px;}
.y157{bottom:1121.550000px;}
.y9{bottom:1122.090000px;}
.yc1{bottom:1127.670000px;}
.y15f{bottom:1133.610000px;}
.y12f{bottom:1135.230000px;}
.y47{bottom:1136.670000px;}
.y8{bottom:1149.120000px;}
.y156{bottom:1155.420000px;}
.yc0{bottom:1156.860000px;}
.y46{bottom:1157.040000px;}
.y45{bottom:1177.200000px;}
.y155{bottom:1177.380000px;}
.y7{bottom:1183.320000px;}
.y40{bottom:1196.820000px;}
.hd{height:10.620000px;}
.h14{height:16.740000px;}
.h13{height:16.776000px;}
.h10{height:16.920000px;}
.h18{height:33.588984px;}
.hf{height:33.660000px;}
.h11{height:33.840000px;}
.h15{height:33.876000px;}
.h16{height:34.380000px;}
.h12{height:34.416000px;}
.h17{height:34.776000px;}
.h2{height:36.571289px;}
.h3{height:37.599609px;}
.hb{height:41.610234px;}
.h7{height:48.761719px;}
.h5{height:50.132812px;}
.he{height:51.300000px;}
.h8{height:52.844096px;}
.ha{height:56.437031px;}
.h9{height:58.655391px;}
.hc{height:59.439023px;}
.h4{height:65.884219px;}
.h6{height:66.676641px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:118.836000px;}
.wf{width:118.980000px;}
.w10{width:119.016000px;}
.w4{width:119.520000px;}
.w7{width:119.556000px;}
.w6{width:119.700000px;}
.w8{width:119.736000px;}
.wb{width:120.240000px;}
.wd{width:121.500000px;}
.w11{width:238.530000px;}
.w12{width:238.755000px;}
.w9{width:239.790000px;}
.wa{width:239.970000px;}
.wc{width:478.005000px;}
.w5{width:480.705000px;}
.w3{width:719.640000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.xf{left:10.836000px;}
.x2{left:84.995987px;}
.x4{left:86.255987px;}
.x3{left:98.675987px;}
.x18{left:101.915987px;}
.xa{left:136.475987px;}
.x10{left:168.689987px;}
.x6{left:205.949987px;}
.x1a{left:207.030000px;}
.x16{left:248.609987px;}
.x7{left:272.414987px;}
.x17{left:285.554987px;}
.x19{left:287.174987px;}
.x14{left:326.415000px;}
.x11{left:327.674987px;}
.x5{left:353.774987px;}
.x9{left:387.794987px;}
.xd{left:409.214987px;}
.x8{left:446.504987px;}
.xe{left:473.144987px;}
.x1c{left:566.025000px;}
.x15{left:567.105000px;}
.xb{left:676.589987px;}
.xc{left:681.089987px;}
.x1b{left:685.770000px;}
.x13{left:687.570000px;}
.x1{left:808.019987px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls5{letter-spacing:-9.600000pt;}
.ls4{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.211200pt;}
.ls6{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.122133pt;}
.ls15{letter-spacing:-0.113067pt;}
.lsf{letter-spacing:-0.028800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.004480pt;}
.lsb{letter-spacing:0.046720pt;}
.ls0{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.084267pt;}
.ls9{letter-spacing:0.154667pt;}
.ls17{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.188800pt;}
.ls7{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.193067pt;}
.lsa{letter-spacing:0.256000pt;}
.ls14{letter-spacing:2.080000pt;}
.ls2{letter-spacing:2.560000pt;}
.ls1{letter-spacing:7.680000pt;}
.ls13{letter-spacing:50.080000pt;}
.ls8{letter-spacing:1175.333547pt;}
.ws2{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.424000pt;}
.wsf{word-spacing:-13.473067pt;}
.wsd{word-spacing:-13.468800pt;}
.ws9{word-spacing:-13.364267pt;}
.ws10{word-spacing:-13.326720pt;}
.wse{word-spacing:-13.284480pt;}
.wsa{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.251200pt;}
.ws11{word-spacing:-13.166933pt;}
.wsb{word-spacing:-13.157867pt;}
.ws12{word-spacing:-13.068800pt;}
.ws3{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._2e{margin-left:-63.360000pt;}
._2a{margin-left:-4.992000pt;}
._1c{margin-left:-3.648000pt;}
._0{margin-left:-2.400000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.922667pt;}
._10{width:2.176000pt;}
._7{width:3.158827pt;}
._e{width:4.160000pt;}
._c{width:5.696000pt;}
._b{width:6.784000pt;}
._11{width:7.786667pt;}
._20{width:8.997333pt;}
._d{width:9.914667pt;}
._f{width:11.520000pt;}
._16{width:13.184000pt;}
._17{width:14.080000pt;}
._29{width:14.976000pt;}
._1d{width:17.408000pt;}
._1e{width:18.432000pt;}
._13{width:20.128000pt;}
._12{width:21.376000pt;}
._25{width:22.464000pt;}
._1a{width:23.488000pt;}
._14{width:24.704000pt;}
._4{width:26.448000pt;}
._2c{width:27.637333pt;}
._2b{width:28.992000pt;}
._28{width:30.016000pt;}
._27{width:31.232000pt;}
._24{width:32.768000pt;}
._21{width:33.664000pt;}
._1f{width:35.264000pt;}
._19{width:37.664000pt;}
._18{width:38.784000pt;}
._26{width:39.680000pt;}
._2f{width:40.576000pt;}
._32{width:44.224000pt;}
._2d{width:49.088000pt;}
._22{width:56.064000pt;}
._23{width:57.024000pt;}
._15{width:59.712000pt;}
._a{width:63.296000pt;}
._8{width:75.914667pt;}
._3{width:80.448000pt;}
._9{width:93.098667pt;}
._31{width:95.488000pt;}
._30{width:96.874667pt;}
._36{width:99.392000pt;}
._35{width:100.288000pt;}
._39{width:113.664000pt;}
._38{width:114.880000pt;}
._37{width:121.472000pt;}
._33{width:143.018667pt;}
._1b{width:160.107307pt;}
._6{width:570.272000pt;}
._34{width:869.120000pt;}
._5{width:1274.517333pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y44{bottom:-4.800000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:3.520000pt;}
.yb6{bottom:3.560000pt;}
.yf7{bottom:4.480000pt;}
.yab{bottom:18.400000pt;}
.yae{bottom:18.560000pt;}
.ycf{bottom:18.586667pt;}
.ya9{bottom:19.200000pt;}
.yb4{bottom:19.240000pt;}
.yf6{bottom:19.560000pt;}
.ya8{bottom:34.080000pt;}
.y108{bottom:34.240000pt;}
.y6{bottom:51.200000pt;}
.y42{bottom:61.920000pt;}
.y5{bottom:68.320000pt;}
.y4{bottom:81.760000pt;}
.y43{bottom:92.960000pt;}
.y3{bottom:95.360000pt;}
.y2{bottom:108.800000pt;}
.y1{bottom:122.240000pt;}
.y41{bottom:132.000000pt;}
.y31{bottom:147.066667pt;}
.y3f{bottom:150.106667pt;}
.y12e{bottom:150.586667pt;}
.y113{bottom:152.026667pt;}
.yef{bottom:154.586667pt;}
.y93{bottom:155.386667pt;}
.ye5{bottom:162.586667pt;}
.ybf{bottom:164.666667pt;}
.y30{bottom:165.146667pt;}
.y3e{bottom:168.026667pt;}
.y12d{bottom:169.946667pt;}
.y112{bottom:170.106667pt;}
.yee{bottom:172.666667pt;}
.y92{bottom:173.306667pt;}
.ye4{bottom:180.666667pt;}
.ybe{bottom:182.586667pt;}
.y73{bottom:183.226667pt;}
.y154{bottom:185.466667pt;}
.y3d{bottom:186.106667pt;}
.y111{bottom:188.026667pt;}
.yed{bottom:190.586667pt;}
.y2f{bottom:191.066667pt;}
.y91{bottom:191.386667pt;}
.ye3{bottom:198.586667pt;}
.y12c{bottom:200.026667pt;}
.ybd{bottom:200.666667pt;}
.y72{bottom:201.306667pt;}
.y10f{bottom:202.586667pt;}
.y3c{bottom:204.026667pt;}
.y153{bottom:204.986667pt;}
.yec{bottom:208.666667pt;}
.y2e{bottom:209.146667pt;}
.y90{bottom:209.306667pt;}
.ye2{bottom:216.666667pt;}
.y110{bottom:218.266667pt;}
.ybc{bottom:218.586667pt;}
.y71{bottom:219.386667pt;}
.y12b{bottom:219.546667pt;}
.yeb{bottom:226.586667pt;}
.y2d{bottom:227.066667pt;}
.y8f{bottom:227.386667pt;}
.y3b{bottom:229.946667pt;}
.y10e{bottom:233.946667pt;}
.ye1{bottom:234.586667pt;}
.y152{bottom:235.066667pt;}
.ybb{bottom:236.666667pt;}
.y70{bottom:237.306667pt;}
.y12a{bottom:238.906667pt;}
.y2c{bottom:245.146667pt;}
.y8e{bottom:245.306667pt;}
.y3a{bottom:248.026667pt;}
.yea{bottom:252.506667pt;}
.ye0{bottom:252.666667pt;}
.y151{bottom:254.426667pt;}
.y6f{bottom:255.386667pt;}
.y129{bottom:258.266667pt;}
.yba{bottom:262.586667pt;}
.y2b{bottom:263.066667pt;}
.y8d{bottom:263.386667pt;}
.y10d{bottom:264.506667pt;}
.y39{bottom:266.106667pt;}
.ydf{bottom:270.586667pt;}
.y6e{bottom:273.306667pt;}
.y150{bottom:273.786667pt;}
.y128{bottom:277.786667pt;}
.y2a{bottom:281.146667pt;}
.y8c{bottom:281.306667pt;}
.y38{bottom:284.026667pt;}
.yb9{bottom:288.506667pt;}
.yde{bottom:288.666667pt;}
.y6d{bottom:291.386667pt;}
.y14f{bottom:293.306667pt;}
.y10c{bottom:295.226667pt;}
.y127{bottom:297.146667pt;}
.y29{bottom:299.066667pt;}
.y8b{bottom:299.386667pt;}
.y37{bottom:302.106667pt;}
.yb8{bottom:306.586667pt;}
.y6c{bottom:309.306667pt;}
.y14e{bottom:312.666667pt;}
.ydd{bottom:314.586667pt;}
.y126{bottom:316.666667pt;}
.y28{bottom:317.146667pt;}
.y8a{bottom:317.306667pt;}
.y36{bottom:320.026667pt;}
.yb7{bottom:324.666667pt;}
.y10b{bottom:325.946667pt;}
.y6b{bottom:327.386667pt;}
.y14d{bottom:332.186667pt;}
.ydc{bottom:332.666667pt;}
.y27{bottom:335.066667pt;}
.y89{bottom:335.386667pt;}
.yb3{bottom:339.226667pt;}
.ye9{bottom:342.586667pt;}
.y6a{bottom:345.306667pt;}
.y35{bottom:345.946667pt;}
.y125{bottom:346.746667pt;}
.ydb{bottom:350.586667pt;}
.y26{bottom:353.146667pt;}
.y88{bottom:353.306667pt;}
.yb5{bottom:354.906667pt;}
.y10a{bottom:356.546667pt;}
.ye8{bottom:360.706667pt;}
.y14c{bottom:362.306667pt;}
.y69{bottom:363.426667pt;}
.y34{bottom:364.066667pt;}
.y124{bottom:366.146667pt;}
.yda{bottom:368.706667pt;}
.yb2{bottom:370.466667pt;}
.y25{bottom:371.106667pt;}
.ye7{bottom:378.626667pt;}
.y87{bottom:380.066667pt;}
.y68{bottom:381.346667pt;}
.y14b{bottom:381.666667pt;}
.y33{bottom:382.146667pt;}
.y123{bottom:385.666667pt;}
.yd9{bottom:386.626667pt;}
.y107{bottom:387.266667pt;}
.y24{bottom:397.826667pt;}
.y67{bottom:399.426667pt;}
.y32{bottom:400.066667pt;}
.yb1{bottom:401.186667pt;}
.y109{bottom:402.946667pt;}
.ye6{bottom:404.546667pt;}
.yd8{bottom:404.706667pt;}
.y122{bottom:405.026667pt;}
.y86{bottom:408.226667pt;}
.y66{bottom:417.346667pt;}
.y14a{bottom:420.546667pt;}
.yd7{bottom:422.626667pt;}
.y121{bottom:424.386667pt;}
.y23{bottom:425.986667pt;}
.y85{bottom:426.306667pt;}
.yb0{bottom:431.906667pt;}
.y65{bottom:435.426667pt;}
.y149{bottom:439.906667pt;}
.yd6{bottom:440.706667pt;}
.y84{bottom:444.386667pt;}
.y106{bottom:445.666667pt;}
.y120{bottom:451.106667pt;}
.y22{bottom:452.066667pt;}
.yd5{bottom:458.626667pt;}
.y148{bottom:459.426667pt;}
.y64{bottom:461.986667pt;}
.y83{bottom:462.306667pt;}
.yaf{bottom:462.466667pt;}
.y105{bottom:463.746667pt;}
.y11f{bottom:479.266667pt;}
.y82{bottom:480.386667pt;}
.y21{bottom:483.586667pt;}
.yd4{bottom:484.546667pt;}
.y147{bottom:489.506667pt;}
.y63{bottom:490.306667pt;}
.yad{bottom:493.186667pt;}
.y11e{bottom:497.346667pt;}
.y81{bottom:498.306667pt;}
.y104{bottom:501.666667pt;}
.yd3{bottom:502.626667pt;}
.y20{bottom:504.226667pt;}
.y62{bottom:508.386667pt;}
.y146{bottom:508.866667pt;}
.y11d{bottom:515.426667pt;}
.y80{bottom:516.386667pt;}
.y103{bottom:519.746667pt;}
.yd2{bottom:520.706667pt;}
.ya7{bottom:523.906667pt;}
.y1f{bottom:525.026667pt;}
.y61{bottom:526.306667pt;}
.y145{bottom:528.386667pt;}
.y11c{bottom:533.346667pt;}
.y7f{bottom:534.306667pt;}
.yd0{bottom:535.266667pt;}
.y102{bottom:537.666667pt;}
.yaa{bottom:539.586667pt;}
.y60{bottom:544.386667pt;}
.y144{bottom:547.746667pt;}
.y1e{bottom:550.786667pt;}
.yd1{bottom:550.946667pt;}
.y11b{bottom:551.426667pt;}
.y7e{bottom:552.386667pt;}
.y101{bottom:555.746667pt;}
.yce{bottom:566.466667pt;}
.y143{bottom:567.106667pt;}
.y1d{bottom:568.866667pt;}
.y11a{bottom:569.346667pt;}
.y5f{bottom:570.306667pt;}
.y100{bottom:573.666667pt;}
.ya6{bottom:582.333333pt;}
.y119{bottom:587.453333pt;}
.y5e{bottom:588.413333pt;}
.yff{bottom:591.773333pt;}
.y1c{bottom:594.813333pt;}
.ycd{bottom:597.213333pt;}
.y142{bottom:597.373333pt;}
.ya5{bottom:600.413333pt;}
.y118{bottom:605.373333pt;}
.y5d{bottom:606.333333pt;}
.yfe{bottom:609.693333pt;}
.y1b{bottom:612.893333pt;}
.y141{bottom:616.733333pt;}
.y117{bottom:623.453333pt;}
.y5c{bottom:624.413333pt;}
.ya4{bottom:626.333333pt;}
.ycc{bottom:627.933333pt;}
.y1a{bottom:630.973333pt;}
.yfd{bottom:635.613333pt;}
.y140{bottom:636.093333pt;}
.y116{bottom:641.373333pt;}
.y5b{bottom:642.333333pt;}
.y19{bottom:648.893333pt;}
.ya3{bottom:652.253333pt;}
.yfc{bottom:653.693333pt;}
.y13f{bottom:655.613333pt;}
.ycb{bottom:658.493333pt;}
.y115{bottom:659.453333pt;}
.y5a{bottom:660.413333pt;}
.y18{bottom:666.973333pt;}
.ya2{bottom:670.333333pt;}
.yfb{bottom:671.773333pt;}
.y59{bottom:678.333333pt;}
.y17{bottom:684.893333pt;}
.y13e{bottom:685.693333pt;}
.y114{bottom:686.013333pt;}
.y7d{bottom:686.333333pt;}
.ya1{bottom:688.413333pt;}
.yca{bottom:689.213333pt;}
.y58{bottom:696.413333pt;}
.yfa{bottom:702.013333pt;}
.y16{bottom:702.973333pt;}
.y7c{bottom:704.413333pt;}
.y13d{bottom:705.053333pt;}
.ya0{bottom:706.333333pt;}
.y57{bottom:714.333333pt;}
.yf9{bottom:717.533333pt;}
.yc8{bottom:719.933333pt;}
.y15{bottom:720.893333pt;}
.y7b{bottom:722.333333pt;}
.y9f{bottom:724.413333pt;}
.y13c{bottom:724.573333pt;}
.y56{bottom:732.413333pt;}
.yc9{bottom:735.613333pt;}
.y14{bottom:738.973333pt;}
.y94{bottom:740.253333pt;}
.y7a{bottom:740.413333pt;}
.y9e{bottom:742.333333pt;}
.y13b{bottom:743.933333pt;}
.yf8{bottom:748.253333pt;}
.y55{bottom:750.333333pt;}
.y13{bottom:756.893333pt;}
.y79{bottom:758.333333pt;}
.y9d{bottom:760.413333pt;}
.y13a{bottom:763.293333pt;}
.y54{bottom:768.413333pt;}
.y12{bottom:774.973333pt;}
.y78{bottom:776.413333pt;}
.y9c{bottom:778.333333pt;}
.yf5{bottom:778.973333pt;}
.y53{bottom:786.333333pt;}
.y139{bottom:793.533333pt;}
.y77{bottom:794.333333pt;}
.yc7{bottom:796.413333pt;}
.y11{bottom:801.573333pt;}
.y9b{bottom:804.293333pt;}
.y52{bottom:804.453333pt;}
.yf4{bottom:810.533333pt;}
.y76{bottom:812.453333pt;}
.y138{bottom:812.933333pt;}
.yc6{bottom:814.373333pt;}
.y51{bottom:822.373333pt;}
.y10{bottom:829.893333pt;}
.y75{bottom:830.373333pt;}
.y161{bottom:830.693333pt;}
.y137{bottom:832.293333pt;}
.yc5{bottom:840.293333pt;}
.y50{bottom:840.453333pt;}
.yf3{bottom:841.253333pt;}
.y74{bottom:848.453333pt;}
.y15e{bottom:850.373333pt;}
.yf{bottom:855.813333pt;}
.y9a{bottom:858.373333pt;}
.y136{bottom:862.373333pt;}
.y4f{bottom:866.373333pt;}
.y160{bottom:869.573333pt;}
.y15d{bottom:869.733333pt;}
.yf1{bottom:871.973333pt;}
.ye{bottom:873.893333pt;}
.y99{bottom:876.453333pt;}
.y135{bottom:881.893333pt;}
.y4e{bottom:884.453333pt;}
.yf2{bottom:887.653333pt;}
.y15c{bottom:889.253333pt;}
.y98{bottom:894.373333pt;}
.yd{bottom:899.813333pt;}
.y134{bottom:901.253333pt;}
.y4d{bottom:902.373333pt;}
.y97{bottom:912.453333pt;}
.y15b{bottom:919.333333pt;}
.y4c{bottom:920.453333pt;}
.y133{bottom:920.773333pt;}
.yc{bottom:925.893333pt;}
.y96{bottom:930.373333pt;}
.y4b{bottom:938.373333pt;}
.y15a{bottom:938.693333pt;}
.y132{bottom:940.133333pt;}
.yb{bottom:943.973333pt;}
.yc4{bottom:948.453333pt;}
.y95{bottom:956.293333pt;}
.y4a{bottom:956.453333pt;}
.y159{bottom:958.213333pt;}
.y131{bottom:959.493333pt;}
.ya{bottom:961.893333pt;}
.yc3{bottom:966.373333pt;}
.y49{bottom:974.373333pt;}
.y158{bottom:977.573333pt;}
.y130{bottom:979.013333pt;}
.yc2{bottom:984.453333pt;}
.yf0{bottom:992.293333pt;}
.y48{bottom:992.453333pt;}
.y157{bottom:996.933333pt;}
.y9{bottom:997.413333pt;}
.yc1{bottom:1002.373333pt;}
.y15f{bottom:1007.653333pt;}
.y12f{bottom:1009.093333pt;}
.y47{bottom:1010.373333pt;}
.y8{bottom:1021.440000pt;}
.y156{bottom:1027.040000pt;}
.yc0{bottom:1028.320000pt;}
.y46{bottom:1028.480000pt;}
.y45{bottom:1046.400000pt;}
.y155{bottom:1046.560000pt;}
.y7{bottom:1051.840000pt;}
.y40{bottom:1063.840000pt;}
.hd{height:9.440000pt;}
.h14{height:14.880000pt;}
.h13{height:14.912000pt;}
.h10{height:15.040000pt;}
.h18{height:29.856875pt;}
.hf{height:29.920000pt;}
.h11{height:30.080000pt;}
.h15{height:30.112000pt;}
.h16{height:30.560000pt;}
.h12{height:30.592000pt;}
.h17{height:30.912000pt;}
.h2{height:32.507812pt;}
.h3{height:33.421875pt;}
.hb{height:36.986875pt;}
.h7{height:43.343750pt;}
.h5{height:44.562500pt;}
.he{height:45.600000pt;}
.h8{height:46.972530pt;}
.ha{height:50.166250pt;}
.h9{height:52.138125pt;}
.hc{height:52.834688pt;}
.h4{height:58.563750pt;}
.h6{height:59.268125pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:105.632000pt;}
.wf{width:105.760000pt;}
.w10{width:105.792000pt;}
.w4{width:106.240000pt;}
.w7{width:106.272000pt;}
.w6{width:106.400000pt;}
.w8{width:106.432000pt;}
.wb{width:106.880000pt;}
.wd{width:108.000000pt;}
.w11{width:212.026667pt;}
.w12{width:212.226667pt;}
.w9{width:213.146667pt;}
.wa{width:213.306667pt;}
.wc{width:424.893333pt;}
.w5{width:427.293333pt;}
.w3{width:639.680000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.xf{left:9.632000pt;}
.x2{left:75.551988pt;}
.x4{left:76.671988pt;}
.x3{left:87.711988pt;}
.x18{left:90.591988pt;}
.xa{left:121.311988pt;}
.x10{left:149.946655pt;}
.x6{left:183.066655pt;}
.x1a{left:184.026667pt;}
.x16{left:220.986655pt;}
.x7{left:242.146655pt;}
.x17{left:253.826655pt;}
.x19{left:255.266655pt;}
.x14{left:290.146667pt;}
.x11{left:291.266655pt;}
.x5{left:314.466655pt;}
.x9{left:344.706655pt;}
.xd{left:363.746655pt;}
.x8{left:396.893322pt;}
.xe{left:420.573322pt;}
.x1c{left:503.133333pt;}
.x15{left:504.093333pt;}
.xb{left:601.413322pt;}
.xc{left:605.413322pt;}
.x1b{left:609.573333pt;}
.x13{left:611.173333pt;}
.x1{left:718.239988pt;}
}




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