
    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_36af250a5f3a7a1276cf4a25.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_8ba2d2ac9dce8a038b249903.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;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_b9c9fe92189dacaf9008b564.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.071000;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_fecfcbfaa4187394e6984b9e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_75385784bf690473b31e670f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.400000px;}
.v2{vertical-align:48.600000px;}
.ls1{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.050400px;}
.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:-19.224000px;}
.ws1{word-spacing:-16.020000px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-1388.165342px;}
._10{margin-left:-13.272000px;}
._9{margin-left:-9.504000px;}
._6{margin-left:-8.328000px;}
._d{margin-left:-7.272000px;}
._5{margin-left:-5.760000px;}
._0{margin-left:-4.440000px;}
._2{margin-left:-3.432000px;}
._1{margin-left:-2.040000px;}
._4{margin-left:-1.020000px;}
._3{width:1.200000px;}
._7{width:2.856000px;}
._b{width:3.912000px;}
._8{width:5.112000px;}
._e{width:1592.080800px;}
._a{width:1624.780800px;}
._f{width:2221.480800px;}
._c{width:2254.180800px;}
.fc2{color:rgb(146,154,159);}
.fc1{color:rgb(60,60,61);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.078400px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.ye2{bottom:85.320000px;}
.ya7{bottom:94.309500px;}
.y142{bottom:95.040150px;}
.y134{bottom:96.469500px;}
.y4{bottom:97.125005px;}
.y17f{bottom:102.513000px;}
.ye1{bottom:103.320000px;}
.y6a{bottom:110.614950px;}
.y156{bottom:114.078000px;}
.y90{bottom:114.469500px;}
.y46{bottom:119.835600px;}
.ya6{bottom:121.309500px;}
.ye0{bottom:121.320000px;}
.y17e{bottom:121.938000px;}
.y133{bottom:123.469500px;}
.y196{bottom:131.980500px;}
.y155{bottom:133.503000px;}
.y69{bottom:137.614950px;}
.y45{bottom:139.260600px;}
.y21{bottom:139.264499px;}
.ydf{bottom:139.320000px;}
.y194{bottom:141.363000px;}
.y8f{bottom:141.469500px;}
.yfe{bottom:148.063500px;}
.ybc{bottom:148.309500px;}
.y132{bottom:150.469500px;}
.y154{bottom:152.928000px;}
.yde{bottom:157.320000px;}
.y17d{bottom:158.163000px;}
.y44{bottom:158.685600px;}
.y141{bottom:162.714900px;}
.y68{bottom:164.614950px;}
.y8e{bottom:168.469500px;}
.yfd{bottom:175.063500px;}
.ybb{bottom:175.309500px;}
.y131{bottom:177.469500px;}
.y17c{bottom:177.588000px;}
.y43{bottom:178.110600px;}
.y10a{bottom:181.170900px;}
.y140{bottom:186.024900px;}
.y12a{bottom:188.215950px;}
.y153{bottom:189.153000px;}
.y67{bottom:191.614950px;}
.y8d{bottom:195.469500px;}
.y18{bottom:196.933500px;}
.y17b{bottom:197.013000px;}
.y42{bottom:197.535600px;}
.yfc{bottom:202.063500px;}
.yba{bottom:202.309500px;}
.y130{bottom:204.469500px;}
.y109{bottom:204.480900px;}
.y152{bottom:208.578000px;}
.y13f{bottom:209.334900px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y129{bottom:215.215950px;}
.y144{bottom:215.629500px;}
.y17a{bottom:216.438000px;}
.y41{bottom:216.960600px;}
.y66{bottom:218.614950px;}
.ydd{bottom:221.305500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y8c{bottom:222.469500px;}
.y108{bottom:227.790900px;}
.y151{bottom:228.003000px;}
.yfb{bottom:229.063500px;}
.yb9{bottom:229.309500px;}
.y12f{bottom:231.469500px;}
.y13e{bottom:232.644900px;}
.y192{bottom:233.238000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y40{bottom:236.385600px;}
.y146{bottom:239.821500px;}
.y128{bottom:242.215950px;}
.y13a{bottom:242.629500px;}
.y65{bottom:245.614950px;}
.ydc{bottom:248.305500px;}
.y8b{bottom:249.469500px;}
.y179{bottom:252.663000px;}
.y3f{bottom:255.810600px;}
.y13d{bottom:255.954900px;}
.yfa{bottom:256.063500px;}
.yb8{bottom:256.309500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y150{bottom:264.228000px;}
.y145{bottom:266.821500px;}
.y127{bottom:269.215950px;}
.y139{bottom:269.629500px;}
.y178{bottom:272.088000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y64{bottom:272.614950px;}
.y12e{bottom:274.975500px;}
.y3e{bottom:275.235600px;}
.ydb{bottom:275.305500px;}
.y8a{bottom:276.469500px;}
.yb7{bottom:283.309500px;}
.y14f{bottom:283.653000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y191{bottom:288.888000px;}
.y177{bottom:291.513000px;}
.y3d{bottom:294.660600px;}
.y107{bottom:295.465500px;}
.y126{bottom:296.215950px;}
.y138{bottom:296.629500px;}
.y63{bottom:299.614950px;}
.yda{bottom:302.305500px;}
.y14e{bottom:303.078000px;}
.yf9{bottom:303.223500px;}
.y89{bottom:303.469500px;}
.y190{bottom:308.313000px;}
.yb6{bottom:310.309500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y3c{bottom:314.085600px;}
.y143{bottom:320.821500px;}
.y106{bottom:322.465500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y125{bottom:323.215950px;}
.y9d{bottom:323.629500px;}
.y62{bottom:326.614950px;}
.y176{bottom:327.738000px;}
.yd9{bottom:329.305500px;}
.yf8{bottom:330.223500px;}
.y88{bottom:330.469500px;}
.y3b{bottom:333.510600px;}
.yb5{bottom:337.309500px;}
.y14d{bottom:339.303000px;}
.y175{bottom:347.163000px;}
.yf{bottom:348.133500px;}
.y105{bottom:349.465500px;}
.y124{bottom:350.215950px;}
.y9c{bottom:350.629500px;}
.y3a{bottom:352.935600px;}
.y61{bottom:353.614950px;}
.yd8{bottom:356.305500px;}
.yf7{bottom:357.223500px;}
.y87{bottom:357.469500px;}
.y14c{bottom:358.728000px;}
.y18f{bottom:363.963000px;}
.yb4{bottom:364.309500px;}
.y174{bottom:366.588000px;}
.y39{bottom:372.360600px;}
.y104{bottom:376.465500px;}
.y9a{bottom:377.629500px;}
.y14b{bottom:378.153000px;}
.y60{bottom:380.614950px;}
.yd7{bottom:383.305500px;}
.y18e{bottom:383.388000px;}
.yf6{bottom:384.223500px;}
.y86{bottom:384.469500px;}
.ye{bottom:386.785499px;}
.yb3{bottom:391.309500px;}
.y38{bottom:391.785600px;}
.y123{bottom:397.375950px;}
.y173{bottom:402.813000px;}
.y103{bottom:403.465500px;}
.y99{bottom:404.629500px;}
.y5f{bottom:407.614950px;}
.yd{bottom:408.044999px;}
.yd6{bottom:410.305500px;}
.y37{bottom:411.210600px;}
.yf5{bottom:411.223500px;}
.y85{bottom:411.469500px;}
.y14a{bottom:414.378000px;}
.y18d{bottom:419.613000px;}
.y172{bottom:422.238000px;}
.y122{bottom:424.375950px;}
.y102{bottom:430.465500px;}
.y98{bottom:431.629500px;}
.y149{bottom:433.803000px;}
.yb2{bottom:435.661500px;}
.yf4{bottom:438.223500px;}
.y84{bottom:438.469500px;}
.y18c{bottom:439.038000px;}
.y121{bottom:451.375950px;}
.y148{bottom:453.228000px;}
.y5e{bottom:454.774950px;}
.yd5{bottom:457.465500px;}
.y171{bottom:458.463000px;}
.y97{bottom:458.629500px;}
.yb1{bottom:462.661500px;}
.yf3{bottom:465.223500px;}
.y83{bottom:465.469500px;}
.y170{bottom:477.888000px;}
.y120{bottom:478.375950px;}
.y5d{bottom:481.774950px;}
.y94{bottom:482.821500px;}
.yd4{bottom:484.465500px;}
.y96{bottom:485.629500px;}
.y147{bottom:489.496500px;}
.yf2{bottom:492.223500px;}
.ya5{bottom:492.469500px;}
.y18b{bottom:494.688000px;}
.yc{bottom:502.864502px;}
.y11f{bottom:505.375950px;}
.y5c{bottom:508.774950px;}
.y93{bottom:509.821500px;}
.yd3{bottom:511.465500px;}
.y82{bottom:512.629500px;}
.y16f{bottom:514.113000px;}
.yf1{bottom:519.223500px;}
.ya4{bottom:519.469500px;}
.yb{bottom:520.864502px;}
.y11e{bottom:532.375950px;}
.y16e{bottom:533.538000px;}
.y5b{bottom:535.774950px;}
.yd2{bottom:538.465500px;}
.ya{bottom:538.864499px;}
.y81{bottom:539.629500px;}
.yf0{bottom:546.223500px;}
.ya3{bottom:546.469500px;}
.y36{bottom:547.678350px;}
.y16d{bottom:552.963000px;}
.y9{bottom:556.864499px;}
.y11d{bottom:559.375950px;}
.y5a{bottom:562.774950px;}
.yd1{bottom:565.465500px;}
.y80{bottom:566.629500px;}
.y35{bottom:567.103350px;}
.y18a{bottom:569.763000px;}
.yef{bottom:573.223500px;}
.ya2{bottom:573.469500px;}
.y11c{bottom:586.375950px;}
.y16c{bottom:589.188000px;}
.y59{bottom:589.774950px;}
.yd0{bottom:592.465500px;}
.y7f{bottom:593.629500px;}
.yee{bottom:600.223500px;}
.yb0{bottom:600.469500px;}
.y34{bottom:601.528350px;}
.y16b{bottom:608.613000px;}
.y11b{bottom:613.375950px;}
.y58{bottom:616.774950px;}
.ycf{bottom:619.465500px;}
.y7e{bottom:620.629500px;}
.y33{bottom:620.953350px;}
.y189{bottom:625.413000px;}
.yed{bottom:627.223500px;}
.yaf{bottom:627.469500px;}
.y16a{bottom:628.038000px;}
.y11a{bottom:640.375950px;}
.y32{bottom:640.378350px;}
.y57{bottom:643.774950px;}
.y188{bottom:644.838000px;}
.y8{bottom:645.510000px;}
.yce{bottom:646.465500px;}
.y7d{bottom:647.629500px;}
.yec{bottom:654.223500px;}
.yae{bottom:654.469500px;}
.y169{bottom:664.263000px;}
.y7{bottom:666.771000px;}
.y13c{bottom:667.789500px;}
.y56{bottom:670.774950px;}
.ycd{bottom:673.465500px;}
.y7c{bottom:674.629500px;}
.y31{bottom:674.803350px;}
.y187{bottom:681.063000px;}
.yeb{bottom:681.223500px;}
.yad{bottom:681.469500px;}
.y168{bottom:683.688000px;}
.y119{bottom:687.535950px;}
.y30{bottom:694.228350px;}
.y13b{bottom:694.789500px;}
.y55{bottom:697.774950px;}
.ycc{bottom:700.465500px;}
.y186{bottom:700.488000px;}
.y7b{bottom:701.629500px;}
.y167{bottom:703.113000px;}
.yea{bottom:708.223500px;}
.yac{bottom:708.469500px;}
.y2f{bottom:713.653350px;}
.y118{bottom:714.535950px;}
.y185{bottom:719.913000px;}
.y137{bottom:721.789500px;}
.y54{bottom:724.774950px;}
.y6{bottom:726.298500px;}
.ycb{bottom:727.465500px;}
.y7a{bottom:728.629500px;}
.y2e{bottom:733.078350px;}
.ye9{bottom:735.223500px;}
.yab{bottom:735.469500px;}
.y166{bottom:739.338000px;}
.y117{bottom:742.699950px;}
.y136{bottom:748.789500px;}
.y53{bottom:751.774950px;}
.y2d{bottom:752.503350px;}
.y3{bottom:752.599495px;}
.yca{bottom:754.465500px;}
.y79{bottom:755.629500px;}
.y184{bottom:756.138000px;}
.y165{bottom:758.763000px;}
.ye8{bottom:762.223500px;}
.yaa{bottom:762.469500px;}
.y116{bottom:769.699950px;}
.y2c{bottom:771.215850px;}
.y183{bottom:775.563000px;}
.y135{bottom:775.789500px;}
.y52{bottom:778.774950px;}
.yc9{bottom:781.465500px;}
.y78{bottom:782.629500px;}
.y2b{bottom:789.215850px;}
.ye7{bottom:789.223500px;}
.y164{bottom:794.988000px;}
.y115{bottom:796.699950px;}
.y12d{bottom:802.789500px;}
.y51{bottom:805.774950px;}
.y2a{bottom:807.928350px;}
.y101{bottom:808.465500px;}
.y77{bottom:809.629500px;}
.y163{bottom:814.413000px;}
.ye6{bottom:816.223500px;}
.y114{bottom:823.699950px;}
.y9b{bottom:826.981500px;}
.y29{bottom:827.353350px;}
.yc8{bottom:828.625500px;}
.y12c{bottom:829.789500px;}
.y182{bottom:831.213000px;}
.y50{bottom:832.774950px;}
.y162{bottom:833.838000px;}
.y100{bottom:835.465500px;}
.y76{bottom:836.629500px;}
.ye5{bottom:843.223500px;}
.y181{bottom:850.638000px;}
.y113{bottom:850.699950px;}
.yc7{bottom:855.625500px;}
.y12b{bottom:856.789500px;}
.y4f{bottom:859.774950px;}
.y28{bottom:861.778350px;}
.yff{bottom:862.465500px;}
.y92{bottom:863.629500px;}
.y161{bottom:870.063000px;}
.y112{bottom:877.699950px;}
.y2{bottom:879.369000px;}
.y27{bottom:881.203350px;}
.yc6{bottom:882.625500px;}
.y75{bottom:883.789500px;}
.ye4{bottom:886.729500px;}
.y4e{bottom:886.774950px;}
.y160{bottom:889.488000px;}
.y91{bottom:890.629500px;}
.y111{bottom:904.699950px;}
.yc5{bottom:909.625500px;}
.y74{bottom:910.789500px;}
.y4d{bottom:913.774950px;}
.y26{bottom:915.628350px;}
.y95{bottom:917.629500px;}
.y15f{bottom:925.713000px;}
.y110{bottom:931.699950px;}
.ye3{bottom:932.575500px;}
.yc4{bottom:936.625500px;}
.y73{bottom:937.789500px;}
.y4c{bottom:940.774950px;}
.ya1{bottom:944.629500px;}
.y15e{bottom:945.138000px;}
.y10f{bottom:958.699950px;}
.yc3{bottom:963.625500px;}
.y193{bottom:964.563000px;}
.y72{bottom:964.789500px;}
.y1{bottom:966.726000px;}
.y195{bottom:970.171800px;}
.y25{bottom:970.484850px;}
.ya0{bottom:971.629500px;}
.y15d{bottom:981.363000px;}
.y4b{bottom:985.126950px;}
.y10e{bottom:985.699950px;}
.yc2{bottom:990.625500px;}
.y71{bottom:991.789500px;}
.y9f{bottom:998.629500px;}
.y15c{bottom:1000.788000px;}
.y24{bottom:1008.395850px;}
.y10d{bottom:1012.699950px;}
.yc1{bottom:1017.625500px;}
.y70{bottom:1018.789500px;}
.y15b{bottom:1020.213000px;}
.y9e{bottom:1025.629500px;}
.y23{bottom:1038.395850px;}
.y10c{bottom:1039.699950px;}
.yc0{bottom:1044.625500px;}
.y6f{bottom:1045.789500px;}
.ya9{bottom:1052.629500px;}
.y15a{bottom:1056.438000px;}
.y4a{bottom:1065.233100px;}
.ybf{bottom:1071.625500px;}
.y6e{bottom:1072.789500px;}
.y159{bottom:1075.863000px;}
.ya8{bottom:1079.629500px;}
.y22{bottom:1080.575850px;}
.y49{bottom:1084.658100px;}
.y180{bottom:1095.288000px;}
.ybe{bottom:1098.625500px;}
.y6d{bottom:1099.789500px;}
.y48{bottom:1104.083100px;}
.y10b{bottom:1107.374700px;}
.y158{bottom:1112.088000px;}
.ybd{bottom:1125.625500px;}
.y6c{bottom:1126.789500px;}
.y157{bottom:1131.513000px;}
.y47{bottom:1178.430300px;}
.y6b{bottom:1194.375150px;}
.h13{height:32.023934px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h11{height:47.940000px;}
.h3{height:48.195000px;}
.h9{height:50.460000px;}
.h2{height:55.080000px;}
.hb{height:57.528000px;}
.hd{height:60.552000px;}
.h10{height:71.910000px;}
.h5{height:78.030000px;}
.he{height:82.860000px;}
.hc{height:86.292000px;}
.ha{height:95.880000px;}
.hf{height:96.540000px;}
.h4{height:119.055004px;}
.h12{height:175.733400px;}
.h0{height:1262.833500px;}
.h8{height:1262.834700px;}
.h1{height:1263.000000px;}
.w4{width:637.495650px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:112.169100px;}
.x6{left:127.559100px;}
.xa{left:148.893900px;}
.x8{left:161.309100px;}
.x4{left:203.484001px;}
.x5{left:212.598450px;}
.xb{left:266.876700px;}
.x7{left:284.881950px;}
.x3{left:454.959000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.800000pt;}
.v2{vertical-align:43.200000pt;}
.ls1{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.044800pt;}
.ws2{word-spacing:-17.088000pt;}
.ws1{word-spacing:-14.240000pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-1233.924749pt;}
._10{margin-left:-11.797333pt;}
._9{margin-left:-8.448000pt;}
._6{margin-left:-7.402667pt;}
._d{margin-left:-6.464000pt;}
._5{margin-left:-5.120000pt;}
._0{margin-left:-3.946667pt;}
._2{margin-left:-3.050667pt;}
._1{margin-left:-1.813333pt;}
._4{margin-left:-0.906667pt;}
._3{width:1.066667pt;}
._7{width:2.538667pt;}
._b{width:3.477333pt;}
._8{width:4.544000pt;}
._e{width:1415.182933pt;}
._a{width:1444.249600pt;}
._f{width:1974.649600pt;}
._c{width:2003.716267pt;}
.fs8{font-size:33.847467pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.ye2{bottom:75.840000pt;}
.ya7{bottom:83.830667pt;}
.y142{bottom:84.480133pt;}
.y134{bottom:85.750667pt;}
.y4{bottom:86.333337pt;}
.y17f{bottom:91.122667pt;}
.ye1{bottom:91.840000pt;}
.y6a{bottom:98.324400pt;}
.y156{bottom:101.402667pt;}
.y90{bottom:101.750667pt;}
.y46{bottom:106.520533pt;}
.ya6{bottom:107.830667pt;}
.ye0{bottom:107.840000pt;}
.y17e{bottom:108.389333pt;}
.y133{bottom:109.750667pt;}
.y196{bottom:117.316000pt;}
.y155{bottom:118.669333pt;}
.y69{bottom:122.324400pt;}
.y45{bottom:123.787200pt;}
.y21{bottom:123.790666pt;}
.ydf{bottom:123.840000pt;}
.y194{bottom:125.656000pt;}
.y8f{bottom:125.750667pt;}
.yfe{bottom:131.612000pt;}
.ybc{bottom:131.830667pt;}
.y132{bottom:133.750667pt;}
.y154{bottom:135.936000pt;}
.yde{bottom:139.840000pt;}
.y17d{bottom:140.589333pt;}
.y44{bottom:141.053867pt;}
.y141{bottom:144.635467pt;}
.y68{bottom:146.324400pt;}
.y8e{bottom:149.750667pt;}
.yfd{bottom:155.612000pt;}
.ybb{bottom:155.830667pt;}
.y131{bottom:157.750667pt;}
.y17c{bottom:157.856000pt;}
.y43{bottom:158.320533pt;}
.y10a{bottom:161.040800pt;}
.y140{bottom:165.355467pt;}
.y12a{bottom:167.303067pt;}
.y153{bottom:168.136000pt;}
.y67{bottom:170.324400pt;}
.y8d{bottom:173.750667pt;}
.y18{bottom:175.052000pt;}
.y17b{bottom:175.122667pt;}
.y42{bottom:175.587200pt;}
.yfc{bottom:179.612000pt;}
.yba{bottom:179.830667pt;}
.y130{bottom:181.750667pt;}
.y109{bottom:181.760800pt;}
.y152{bottom:185.402667pt;}
.y13f{bottom:186.075467pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y129{bottom:191.303067pt;}
.y144{bottom:191.670667pt;}
.y17a{bottom:192.389333pt;}
.y41{bottom:192.853867pt;}
.y66{bottom:194.324400pt;}
.ydd{bottom:196.716000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y8c{bottom:197.750667pt;}
.y108{bottom:202.480800pt;}
.y151{bottom:202.669333pt;}
.yfb{bottom:203.612000pt;}
.yb9{bottom:203.830667pt;}
.y12f{bottom:205.750667pt;}
.y13e{bottom:206.795467pt;}
.y192{bottom:207.322667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y40{bottom:210.120533pt;}
.y146{bottom:213.174667pt;}
.y128{bottom:215.303067pt;}
.y13a{bottom:215.670667pt;}
.y65{bottom:218.324400pt;}
.ydc{bottom:220.716000pt;}
.y8b{bottom:221.750667pt;}
.y179{bottom:224.589333pt;}
.y3f{bottom:227.387200pt;}
.y13d{bottom:227.515467pt;}
.yfa{bottom:227.612000pt;}
.yb8{bottom:227.830667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y150{bottom:234.869333pt;}
.y145{bottom:237.174667pt;}
.y127{bottom:239.303067pt;}
.y139{bottom:239.670667pt;}
.y178{bottom:241.856000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y64{bottom:242.324400pt;}
.y12e{bottom:244.422667pt;}
.y3e{bottom:244.653867pt;}
.ydb{bottom:244.716000pt;}
.y8a{bottom:245.750667pt;}
.yb7{bottom:251.830667pt;}
.y14f{bottom:252.136000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y191{bottom:256.789333pt;}
.y177{bottom:259.122667pt;}
.y3d{bottom:261.920533pt;}
.y107{bottom:262.636000pt;}
.y126{bottom:263.303067pt;}
.y138{bottom:263.670667pt;}
.y63{bottom:266.324400pt;}
.yda{bottom:268.716000pt;}
.y14e{bottom:269.402667pt;}
.yf9{bottom:269.532000pt;}
.y89{bottom:269.750667pt;}
.y190{bottom:274.056000pt;}
.yb6{bottom:275.830667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y3c{bottom:279.187200pt;}
.y143{bottom:285.174667pt;}
.y106{bottom:286.636000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y125{bottom:287.303067pt;}
.y9d{bottom:287.670667pt;}
.y62{bottom:290.324400pt;}
.y176{bottom:291.322667pt;}
.yd9{bottom:292.716000pt;}
.yf8{bottom:293.532000pt;}
.y88{bottom:293.750667pt;}
.y3b{bottom:296.453867pt;}
.yb5{bottom:299.830667pt;}
.y14d{bottom:301.602667pt;}
.y175{bottom:308.589333pt;}
.yf{bottom:309.452000pt;}
.y105{bottom:310.636000pt;}
.y124{bottom:311.303067pt;}
.y9c{bottom:311.670667pt;}
.y3a{bottom:313.720533pt;}
.y61{bottom:314.324400pt;}
.yd8{bottom:316.716000pt;}
.yf7{bottom:317.532000pt;}
.y87{bottom:317.750667pt;}
.y14c{bottom:318.869333pt;}
.y18f{bottom:323.522667pt;}
.yb4{bottom:323.830667pt;}
.y174{bottom:325.856000pt;}
.y39{bottom:330.987200pt;}
.y104{bottom:334.636000pt;}
.y9a{bottom:335.670667pt;}
.y14b{bottom:336.136000pt;}
.y60{bottom:338.324400pt;}
.yd7{bottom:340.716000pt;}
.y18e{bottom:340.789333pt;}
.yf6{bottom:341.532000pt;}
.y86{bottom:341.750667pt;}
.ye{bottom:343.809333pt;}
.yb3{bottom:347.830667pt;}
.y38{bottom:348.253867pt;}
.y123{bottom:353.223067pt;}
.y173{bottom:358.056000pt;}
.y103{bottom:358.636000pt;}
.y99{bottom:359.670667pt;}
.y5f{bottom:362.324400pt;}
.yd{bottom:362.706666pt;}
.yd6{bottom:364.716000pt;}
.y37{bottom:365.520533pt;}
.yf5{bottom:365.532000pt;}
.y85{bottom:365.750667pt;}
.y14a{bottom:368.336000pt;}
.y18d{bottom:372.989333pt;}
.y172{bottom:375.322667pt;}
.y122{bottom:377.223067pt;}
.y102{bottom:382.636000pt;}
.y98{bottom:383.670667pt;}
.y149{bottom:385.602667pt;}
.yb2{bottom:387.254667pt;}
.yf4{bottom:389.532000pt;}
.y84{bottom:389.750667pt;}
.y18c{bottom:390.256000pt;}
.y121{bottom:401.223067pt;}
.y148{bottom:402.869333pt;}
.y5e{bottom:404.244400pt;}
.yd5{bottom:406.636000pt;}
.y171{bottom:407.522667pt;}
.y97{bottom:407.670667pt;}
.yb1{bottom:411.254667pt;}
.yf3{bottom:413.532000pt;}
.y83{bottom:413.750667pt;}
.y170{bottom:424.789333pt;}
.y120{bottom:425.223067pt;}
.y5d{bottom:428.244400pt;}
.y94{bottom:429.174667pt;}
.yd4{bottom:430.636000pt;}
.y96{bottom:431.670667pt;}
.y147{bottom:435.108000pt;}
.yf2{bottom:437.532000pt;}
.ya5{bottom:437.750667pt;}
.y18b{bottom:439.722667pt;}
.yc{bottom:446.990669pt;}
.y11f{bottom:449.223067pt;}
.y5c{bottom:452.244400pt;}
.y93{bottom:453.174667pt;}
.yd3{bottom:454.636000pt;}
.y82{bottom:455.670667pt;}
.y16f{bottom:456.989333pt;}
.yf1{bottom:461.532000pt;}
.ya4{bottom:461.750667pt;}
.yb{bottom:462.990669pt;}
.y11e{bottom:473.223067pt;}
.y16e{bottom:474.256000pt;}
.y5b{bottom:476.244400pt;}
.yd2{bottom:478.636000pt;}
.ya{bottom:478.990666pt;}
.y81{bottom:479.670667pt;}
.yf0{bottom:485.532000pt;}
.ya3{bottom:485.750667pt;}
.y36{bottom:486.825200pt;}
.y16d{bottom:491.522667pt;}
.y9{bottom:494.990666pt;}
.y11d{bottom:497.223067pt;}
.y5a{bottom:500.244400pt;}
.yd1{bottom:502.636000pt;}
.y80{bottom:503.670667pt;}
.y35{bottom:504.091867pt;}
.y18a{bottom:506.456000pt;}
.yef{bottom:509.532000pt;}
.ya2{bottom:509.750667pt;}
.y11c{bottom:521.223067pt;}
.y16c{bottom:523.722667pt;}
.y59{bottom:524.244400pt;}
.yd0{bottom:526.636000pt;}
.y7f{bottom:527.670667pt;}
.yee{bottom:533.532000pt;}
.yb0{bottom:533.750667pt;}
.y34{bottom:534.691867pt;}
.y16b{bottom:540.989333pt;}
.y11b{bottom:545.223067pt;}
.y58{bottom:548.244400pt;}
.ycf{bottom:550.636000pt;}
.y7e{bottom:551.670667pt;}
.y33{bottom:551.958533pt;}
.y189{bottom:555.922667pt;}
.yed{bottom:557.532000pt;}
.yaf{bottom:557.750667pt;}
.y16a{bottom:558.256000pt;}
.y11a{bottom:569.223067pt;}
.y32{bottom:569.225200pt;}
.y57{bottom:572.244400pt;}
.y188{bottom:573.189333pt;}
.y8{bottom:573.786667pt;}
.yce{bottom:574.636000pt;}
.y7d{bottom:575.670667pt;}
.yec{bottom:581.532000pt;}
.yae{bottom:581.750667pt;}
.y169{bottom:590.456000pt;}
.y7{bottom:592.685334pt;}
.y13c{bottom:593.590667pt;}
.y56{bottom:596.244400pt;}
.ycd{bottom:598.636000pt;}
.y7c{bottom:599.670667pt;}
.y31{bottom:599.825200pt;}
.y187{bottom:605.389333pt;}
.yeb{bottom:605.532000pt;}
.yad{bottom:605.750667pt;}
.y168{bottom:607.722667pt;}
.y119{bottom:611.143067pt;}
.y30{bottom:617.091867pt;}
.y13b{bottom:617.590667pt;}
.y55{bottom:620.244400pt;}
.ycc{bottom:622.636000pt;}
.y186{bottom:622.656000pt;}
.y7b{bottom:623.670667pt;}
.y167{bottom:624.989333pt;}
.yea{bottom:629.532000pt;}
.yac{bottom:629.750667pt;}
.y2f{bottom:634.358533pt;}
.y118{bottom:635.143067pt;}
.y185{bottom:639.922667pt;}
.y137{bottom:641.590667pt;}
.y54{bottom:644.244400pt;}
.y6{bottom:645.598667pt;}
.ycb{bottom:646.636000pt;}
.y7a{bottom:647.670667pt;}
.y2e{bottom:651.625200pt;}
.ye9{bottom:653.532000pt;}
.yab{bottom:653.750667pt;}
.y166{bottom:657.189333pt;}
.y117{bottom:660.177733pt;}
.y136{bottom:665.590667pt;}
.y53{bottom:668.244400pt;}
.y2d{bottom:668.891867pt;}
.y3{bottom:668.977329pt;}
.yca{bottom:670.636000pt;}
.y79{bottom:671.670667pt;}
.y184{bottom:672.122667pt;}
.y165{bottom:674.456000pt;}
.ye8{bottom:677.532000pt;}
.yaa{bottom:677.750667pt;}
.y116{bottom:684.177733pt;}
.y2c{bottom:685.525200pt;}
.y183{bottom:689.389333pt;}
.y135{bottom:689.590667pt;}
.y52{bottom:692.244400pt;}
.yc9{bottom:694.636000pt;}
.y78{bottom:695.670667pt;}
.y2b{bottom:701.525200pt;}
.ye7{bottom:701.532000pt;}
.y164{bottom:706.656000pt;}
.y115{bottom:708.177733pt;}
.y12d{bottom:713.590667pt;}
.y51{bottom:716.244400pt;}
.y2a{bottom:718.158533pt;}
.y101{bottom:718.636000pt;}
.y77{bottom:719.670667pt;}
.y163{bottom:723.922667pt;}
.ye6{bottom:725.532000pt;}
.y114{bottom:732.177733pt;}
.y9b{bottom:735.094667pt;}
.y29{bottom:735.425200pt;}
.yc8{bottom:736.556000pt;}
.y12c{bottom:737.590667pt;}
.y182{bottom:738.856000pt;}
.y50{bottom:740.244400pt;}
.y162{bottom:741.189333pt;}
.y100{bottom:742.636000pt;}
.y76{bottom:743.670667pt;}
.ye5{bottom:749.532000pt;}
.y181{bottom:756.122667pt;}
.y113{bottom:756.177733pt;}
.yc7{bottom:760.556000pt;}
.y12b{bottom:761.590667pt;}
.y4f{bottom:764.244400pt;}
.y28{bottom:766.025200pt;}
.yff{bottom:766.636000pt;}
.y92{bottom:767.670667pt;}
.y161{bottom:773.389333pt;}
.y112{bottom:780.177733pt;}
.y2{bottom:781.661334pt;}
.y27{bottom:783.291867pt;}
.yc6{bottom:784.556000pt;}
.y75{bottom:785.590667pt;}
.ye4{bottom:788.204000pt;}
.y4e{bottom:788.244400pt;}
.y160{bottom:790.656000pt;}
.y91{bottom:791.670667pt;}
.y111{bottom:804.177733pt;}
.yc5{bottom:808.556000pt;}
.y74{bottom:809.590667pt;}
.y4d{bottom:812.244400pt;}
.y26{bottom:813.891867pt;}
.y95{bottom:815.670667pt;}
.y15f{bottom:822.856000pt;}
.y110{bottom:828.177733pt;}
.ye3{bottom:828.956000pt;}
.yc4{bottom:832.556000pt;}
.y73{bottom:833.590667pt;}
.y4c{bottom:836.244400pt;}
.ya1{bottom:839.670667pt;}
.y15e{bottom:840.122667pt;}
.y10f{bottom:852.177733pt;}
.yc3{bottom:856.556000pt;}
.y193{bottom:857.389333pt;}
.y72{bottom:857.590667pt;}
.y1{bottom:859.312000pt;}
.y195{bottom:862.374933pt;}
.y25{bottom:862.653200pt;}
.ya0{bottom:863.670667pt;}
.y15d{bottom:872.322667pt;}
.y4b{bottom:875.668400pt;}
.y10e{bottom:876.177733pt;}
.yc2{bottom:880.556000pt;}
.y71{bottom:881.590667pt;}
.y9f{bottom:887.670667pt;}
.y15c{bottom:889.589333pt;}
.y24{bottom:896.351867pt;}
.y10d{bottom:900.177733pt;}
.yc1{bottom:904.556000pt;}
.y70{bottom:905.590667pt;}
.y15b{bottom:906.856000pt;}
.y9e{bottom:911.670667pt;}
.y23{bottom:923.018533pt;}
.y10c{bottom:924.177733pt;}
.yc0{bottom:928.556000pt;}
.y6f{bottom:929.590667pt;}
.ya9{bottom:935.670667pt;}
.y15a{bottom:939.056000pt;}
.y4a{bottom:946.873867pt;}
.ybf{bottom:952.556000pt;}
.y6e{bottom:953.590667pt;}
.y159{bottom:956.322667pt;}
.ya8{bottom:959.670667pt;}
.y22{bottom:960.511867pt;}
.y49{bottom:964.140533pt;}
.y180{bottom:973.589333pt;}
.ybe{bottom:976.556000pt;}
.y6d{bottom:977.590667pt;}
.y48{bottom:981.407200pt;}
.y10b{bottom:984.333067pt;}
.y158{bottom:988.522667pt;}
.ybd{bottom:1000.556000pt;}
.y6c{bottom:1001.590667pt;}
.y157{bottom:1005.789333pt;}
.y47{bottom:1047.493600pt;}
.y6b{bottom:1061.666800pt;}
.h13{height:28.465719pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h11{height:42.613333pt;}
.h3{height:42.840000pt;}
.h9{height:44.853333pt;}
.h2{height:48.960000pt;}
.hb{height:51.136000pt;}
.hd{height:53.824000pt;}
.h10{height:63.920000pt;}
.h5{height:69.360000pt;}
.he{height:73.653333pt;}
.hc{height:76.704000pt;}
.ha{height:85.226667pt;}
.hf{height:85.813333pt;}
.h4{height:105.826671pt;}
.h12{height:156.207467pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w4{width:566.662800pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:99.705867pt;}
.x6{left:113.385867pt;}
.xa{left:132.350133pt;}
.x8{left:143.385867pt;}
.x4{left:180.874667pt;}
.x5{left:188.976400pt;}
.xb{left:237.223733pt;}
.x7{left:253.228400pt;}
.x3{left:404.408000pt;}
}




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