
    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_2c75f2b8281f8f19547346b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cb290ee93f21bb55b4ae7b07.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_16dc6b204fa978833adf7a50.woff2')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_e33d5b0d9c815b4620850d28.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_073f19d62694a075609c1526.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_45e6008876262fc7cb8e3ce1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_174160608a78694ce22cd05e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4442c0a883c4ec48ab0ff1d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ed0048140a2b218ef7c27afa.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf86785a38d1ab5bdc2fdab8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-1.176000px;}
.ls13{letter-spacing:-0.924000px;}
.ls1a{letter-spacing:-0.666000px;}
.lsb{letter-spacing:-0.371400px;}
.ls1b{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.259800px;}
.ls10{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.312000px;}
.ls1c{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.666000px;}
.ls7{letter-spacing:0.774000px;}
.ls12{letter-spacing:10.980000px;}
.ls18{letter-spacing:11.610720px;}
.ls17{letter-spacing:14.490720px;}
.lsa{letter-spacing:15.066720px;}
.ls2{letter-spacing:16.506720px;}
.ls11{letter-spacing:17.946720px;}
.ls1{letter-spacing:19.386720px;}
.lse{letter-spacing:20.826720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.714000px;}
.ws1{word-spacing:-15.384000px;}
.ws6{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.120000px;}
.wsa{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.wse{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.598840px;}
.ws11{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.274000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-2539.120320px;}
._3{margin-left:-1446.671520px;}
._5{margin-left:-1441.504320px;}
._4{margin-left:-994.312800px;}
._6{margin-left:-574.720560px;}
._15{margin-left:-15.526320px;}
._7{margin-left:-8.036160px;}
._8{margin-left:-4.364400px;}
._11{margin-left:-2.988000px;}
._1{margin-left:-1.627920px;}
._0{width:1.244880px;}
._c{width:2.883120px;}
._d{width:4.183200px;}
._10{width:5.592240px;}
._9{width:7.373520px;}
._b{width:8.522640px;}
._a{width:9.700080px;}
._16{width:10.908480px;}
._12{width:12.090240px;}
._e{width:13.147200px;}
._19{width:16.145280px;}
._f{width:17.313360px;}
._1a{width:18.405360px;}
._14{width:20.429760px;}
._13{width:21.513600px;}
._18{width:23.746800px;}
._17{width:25.158960px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:3.420000px;}
.ye6{bottom:3.600000px;}
.ye4{bottom:3.780000px;}
.y13f{bottom:3.960000px;}
.y13d{bottom:4.140000px;}
.y140{bottom:4.320000px;}
.y13b{bottom:4.500000px;}
.y48{bottom:5.040000px;}
.y4a{bottom:5.400000px;}
.y33{bottom:5.580000px;}
.y35{bottom:5.760000px;}
.y10b{bottom:5.940000px;}
.y142{bottom:6.480000px;}
.y143{bottom:6.840000px;}
.y39{bottom:7.020000px;}
.y3d{bottom:7.200000px;}
.y174{bottom:22.320000px;}
.y173{bottom:42.120000px;}
.y170{bottom:46.260000px;}
.y6{bottom:60.696000px;}
.y172{bottom:61.920000px;}
.y171{bottom:81.894000px;}
.y16f{bottom:84.096000px;}
.yc8{bottom:88.416000px;}
.ya5{bottom:90.216000px;}
.y34{bottom:90.756000px;}
.y70{bottom:97.596000px;}
.yfa{bottom:99.216000px;}
.y11e{bottom:99.756000px;}
.yc7{bottom:108.216000px;}
.ya4{bottom:109.656000px;}
.y139{bottom:110.016000px;}
.y32{bottom:110.736000px;}
.y6f{bottom:117.396000px;}
.yf9{bottom:119.016000px;}
.y11d{bottom:119.736000px;}
.y16d{bottom:123.516000px;}
.yc6{bottom:128.016000px;}
.y138{bottom:129.996000px;}
.y31{bottom:136.656000px;}
.y6e{bottom:137.196000px;}
.yf8{bottom:138.456000px;}
.ya3{bottom:138.996000px;}
.y11c{bottom:139.536000px;}
.y16c{bottom:143.316000px;}
.yc5{bottom:147.996000px;}
.y137{bottom:149.436000px;}
.y30{bottom:156.810000px;}
.y6d{bottom:157.170000px;}
.yf7{bottom:158.250000px;}
.ya2{bottom:158.790000px;}
.y11b{bottom:158.970000px;}
.y16b{bottom:163.110000px;}
.yc4{bottom:167.790000px;}
.y136{bottom:169.590000px;}
.y2f{bottom:176.610000px;}
.y6c{bottom:176.970000px;}
.ya1{bottom:178.590000px;}
.y16a{bottom:182.730000px;}
.yf6{bottom:187.410000px;}
.yc3{bottom:187.590000px;}
.y11a{bottom:188.130000px;}
.y135{bottom:189.390000px;}
.y2e{bottom:196.410000px;}
.y6b{bottom:196.770000px;}
.ya0{bottom:198.390000px;}
.yc2{bottom:207.390000px;}
.y119{bottom:207.930000px;}
.y134{bottom:209.190000px;}
.y169{bottom:211.890000px;}
.y6a{bottom:216.210000px;}
.y2d{bottom:216.390000px;}
.y9f{bottom:218.190000px;}
.yc1{bottom:227.190000px;}
.y118{bottom:227.910000px;}
.y133{bottom:228.810000px;}
.y168{bottom:231.690000px;}
.y2c{bottom:236.190000px;}
.y9e{bottom:238.170000px;}
.y69{bottom:245.370000px;}
.yf5{bottom:246.990000px;}
.yc0{bottom:247.170000px;}
.y117{bottom:247.710000px;}
.y132{bottom:248.970000px;}
.y167{bottom:251.490000px;}
.y2b{bottom:255.990000px;}
.y9d{bottom:257.970000px;}
.y68{bottom:265.350000px;}
.yf4{bottom:265.530000px;}
.ybf{bottom:266.970000px;}
.y116{bottom:267.510000px;}
.y131{bottom:268.770000px;}
.y166{bottom:271.290000px;}
.y2a{bottom:275.790000px;}
.y9c{bottom:277.770000px;}
.y67{bottom:285.150000px;}
.ybe{bottom:286.770000px;}
.y115{bottom:286.950000px;}
.y130{bottom:288.570000px;}
.yf3{bottom:288.750000px;}
.y165{bottom:291.270000px;}
.y29{bottom:295.590000px;}
.y9b{bottom:297.570000px;}
.y66{bottom:304.950000px;}
.ybd{bottom:306.570000px;}
.y114{bottom:307.110000px;}
.y12f{bottom:308.370000px;}
.y164{bottom:311.070000px;}
.yf2{bottom:311.970000px;}
.y28{bottom:315.570000px;}
.y9a{bottom:317.370000px;}
.y65{bottom:324.750000px;}
.ybc{bottom:326.370000px;}
.y113{bottom:327.090000px;}
.y12e{bottom:328.395000px;}
.y163{bottom:330.915000px;}
.y27{bottom:335.415000px;}
.y99{bottom:337.395000px;}
.y64{bottom:344.595000px;}
.ybb{bottom:346.395000px;}
.y112{bottom:346.935000px;}
.y12d{bottom:347.835000px;}
.y162{bottom:350.715000px;}
.y26{bottom:355.215000px;}
.y98{bottom:357.195000px;}
.yf1{bottom:358.635000px;}
.y111{bottom:361.335000px;}
.y63{bottom:364.575000px;}
.yba{bottom:366.195000px;}
.y12c{bottom:367.995000px;}
.y161{bottom:370.515000px;}
.y25{bottom:375.015000px;}
.y97{bottom:376.995000px;}
.y110{bottom:381.495000px;}
.yf0{bottom:381.855000px;}
.y62{bottom:384.375000px;}
.yb9{bottom:385.995000px;}
.y12b{bottom:387.795000px;}
.y160{bottom:390.495000px;}
.y24{bottom:394.815000px;}
.y96{bottom:396.795000px;}
.y10f{bottom:401.655000px;}
.y61{bottom:404.175000px;}
.yb8{bottom:405.795000px;}
.y12a{bottom:407.595000px;}
.yef{bottom:409.755000px;}
.y15f{bottom:410.295000px;}
.y23{bottom:414.795000px;}
.y95{bottom:416.595000px;}
.y10e{bottom:421.815000px;}
.y60{bottom:423.975000px;}
.yb7{bottom:425.595000px;}
.y129{bottom:427.215000px;}
.yee{bottom:429.915000px;}
.y15e{bottom:430.095000px;}
.y22{bottom:434.595000px;}
.y94{bottom:436.575000px;}
.y10d{bottom:441.975000px;}
.y5f{bottom:443.775000px;}
.yb6{bottom:445.575000px;}
.y128{bottom:447.015000px;}
.yed{bottom:449.715000px;}
.y15d{bottom:449.895000px;}
.y21{bottom:454.395000px;}
.y93{bottom:456.375000px;}
.y10c{bottom:462.135000px;}
.y5e{bottom:463.755000px;}
.yb5{bottom:465.375000px;}
.yec{bottom:469.695000px;}
.y20{bottom:474.195000px;}
.y92{bottom:476.175000px;}
.y10a{bottom:482.295000px;}
.y5d{bottom:483.555000px;}
.yb4{bottom:485.175000px;}
.yeb{bottom:489.495000px;}
.y15c{bottom:489.675000px;}
.y1f{bottom:493.635000px;}
.y91{bottom:495.975000px;}
.y5c{bottom:503.355000px;}
.yb3{bottom:504.975000px;}
.y109{bottom:508.395000px;}
.yea{bottom:509.295000px;}
.y15b{bottom:509.475000px;}
.y1e{bottom:513.615000px;}
.y90{bottom:515.775000px;}
.y5b{bottom:523.155000px;}
.yb2{bottom:524.775000px;}
.ye9{bottom:529.095000px;}
.y15a{bottom:529.275000px;}
.y1d{bottom:533.775000px;}
.y8f{bottom:535.755000px;}
.y108{bottom:537.555000px;}
.y5a{bottom:542.955000px;}
.yb1{bottom:544.755000px;}
.ye8{bottom:548.895000px;}
.y159{bottom:549.075000px;}
.y8e{bottom:555.555000px;}
.y1c{bottom:555.915000px;}
.y107{bottom:557.355000px;}
.y59{bottom:562.935000px;}
.yb0{bottom:564.195000px;}
.y16e{bottom:564.555000px;}
.ye7{bottom:567.435000px;}
.y158{bottom:568.875000px;}
.y127{bottom:574.995000px;}
.y8d{bottom:575.355000px;}
.y106{bottom:577.155000px;}
.y58{bottom:582.735000px;}
.yaf{bottom:584.355000px;}
.y1b{bottom:584.715000px;}
.y157{bottom:588.855000px;}
.ye5{bottom:590.835000px;}
.y8c{bottom:595.185000px;}
.y105{bottom:596.985000px;}
.y57{bottom:602.565000px;}
.yae{bottom:604.185000px;}
.y1a{bottom:604.545000px;}
.y156{bottom:608.685000px;}
.ye3{bottom:614.085000px;}
.y8b{bottom:614.985000px;}
.y104{bottom:616.965000px;}
.y56{bottom:622.365000px;}
.yad{bottom:623.985000px;}
.y19{bottom:624.345000px;}
.y155{bottom:628.125000px;}
.y8a{bottom:634.605000px;}
.y126{bottom:634.965000px;}
.y103{bottom:636.765000px;}
.ye1{bottom:637.305000px;}
.y55{bottom:642.165000px;}
.yac{bottom:643.965000px;}
.y18{bottom:644.145000px;}
.y154{bottom:647.925000px;}
.y125{bottom:654.765000px;}
.y102{bottom:656.205000px;}
.y54{bottom:662.145000px;}
.y89{bottom:663.765000px;}
.y17{bottom:664.125000px;}
.ye0{bottom:665.205000px;}
.y153{bottom:668.085000px;}
.y124{bottom:674.205000px;}
.y53{bottom:681.945000px;}
.y88{bottom:683.565000px;}
.y16{bottom:683.925000px;}
.ydf{bottom:685.365000px;}
.y152{bottom:688.065000px;}
.y123{bottom:694.365000px;}
.y52{bottom:701.745000px;}
.yab{bottom:703.005000px;}
.y87{bottom:703.365000px;}
.y15{bottom:703.725000px;}
.yde{bottom:705.165000px;}
.y151{bottom:707.865000px;}
.y122{bottom:714.165000px;}
.y51{bottom:721.545000px;}
.y86{bottom:723.165000px;}
.y14{bottom:723.525000px;}
.ydd{bottom:724.785000px;}
.y101{bottom:725.145000px;}
.y150{bottom:727.665000px;}
.y121{bottom:734.145000px;}
.y50{bottom:741.345000px;}
.y85{bottom:743.145000px;}
.y13{bottom:743.325000px;}
.y100{bottom:744.945000px;}
.y14f{bottom:747.465000px;}
.ydc{bottom:753.945000px;}
.y4f{bottom:761.325000px;}
.y84{bottom:762.945000px;}
.y12{bottom:763.305000px;}
.yff{bottom:764.745000px;}
.y14e{bottom:767.265000px;}
.y120{bottom:773.385000px;}
.ydb{bottom:773.745000px;}
.y4e{bottom:781.125000px;}
.y83{bottom:782.745000px;}
.y11{bottom:783.105000px;}
.yfe{bottom:784.545000px;}
.y14d{bottom:787.245000px;}
.yda{bottom:793.545000px;}
.y4d{bottom:800.565000px;}
.y82{bottom:802.545000px;}
.y10{bottom:802.905000px;}
.yfd{bottom:803.985000px;}
.y14c{bottom:807.045000px;}
.yd9{bottom:813.345000px;}
.y4c{bottom:820.365000px;}
.y81{bottom:822.345000px;}
.yf{bottom:822.705000px;}
.y14b{bottom:826.845000px;}
.yd8{bottom:833.325000px;}
.y4b{bottom:835.125000px;}
.y80{bottom:842.325000px;}
.ye{bottom:842.505000px;}
.y14a{bottom:846.645000px;}
.yd7{bottom:853.125000px;}
.y49{bottom:854.925000px;}
.y7f{bottom:861.765000px;}
.yaa{bottom:862.170000px;}
.y149{bottom:866.130000px;}
.yd{bottom:869.910000px;}
.yd6{bottom:872.970000px;}
.y47{bottom:874.590000px;}
.ya9{bottom:881.610000px;}
.y7e{bottom:881.970000px;}
.yc{bottom:889.710000px;}
.y11f{bottom:892.410000px;}
.yd5{bottom:892.770000px;}
.y148{bottom:895.470000px;}
.y46{bottom:897.630000px;}
.y7d{bottom:901.770000px;}
.yb{bottom:904.650000px;}
.yd4{bottom:912.210000px;}
.yfc{bottom:912.570000px;}
.y147{bottom:915.270000px;}
.y45{bottom:917.610000px;}
.y7c{bottom:921.570000px;}
.ya{bottom:925.890000px;}
.yd3{bottom:932.550000px;}
.y146{bottom:934.710000px;}
.y44{bottom:937.410000px;}
.ya8{bottom:941.190000px;}
.y7b{bottom:941.550000px;}
.y9{bottom:949.290000px;}
.yd2{bottom:952.350000px;}
.y145{bottom:954.510000px;}
.y43{bottom:957.210000px;}
.ya7{bottom:960.990000px;}
.y7a{bottom:961.350000px;}
.y144{bottom:969.270000px;}
.yd1{bottom:972.150000px;}
.y42{bottom:977.190000px;}
.y8{bottom:980.970000px;}
.y79{bottom:981.150000px;}
.y141{bottom:987.990000px;}
.yfb{bottom:991.590000px;}
.yd0{bottom:991.950000px;}
.y41{bottom:996.990000px;}
.y78{bottom:1000.950000px;}
.y13e{bottom:1009.230000px;}
.ycf{bottom:1011.750000px;}
.y7{bottom:1012.830000px;}
.y40{bottom:1016.790000px;}
.y77{bottom:1020.750000px;}
.y13c{bottom:1027.770000px;}
.yce{bottom:1031.730000px;}
.y3f{bottom:1036.230000px;}
.y76{bottom:1040.730000px;}
.y13a{bottom:1046.490000px;}
.ycd{bottom:1051.530000px;}
.y5{bottom:1051.710000px;}
.y3e{bottom:1056.030000px;}
.y75{bottom:1060.530000px;}
.y3c{bottom:1070.790000px;}
.ycc{bottom:1070.970000px;}
.y74{bottom:1079.970000px;}
.ya6{bottom:1080.330000px;}
.y4{bottom:1082.490000px;}
.ycb{bottom:1090.770000px;}
.y3b{bottom:1092.210000px;}
.y73{bottom:1100.130000px;}
.y3a{bottom:1112.190000px;}
.y3{bottom:1113.270000px;}
.yca{bottom:1119.570000px;}
.y72{bottom:1119.930000px;}
.y38{bottom:1132.200000px;}
.yc9{bottom:1139.580000px;}
.y71{bottom:1139.940000px;}
.y2{bottom:1143.900000px;}
.y37{bottom:1170.180000px;}
.y1{bottom:1177.560000px;}
.y36{bottom:1193.400000px;}
.h1b{height:2.864531px;}
.h15{height:17.100000px;}
.h14{height:17.136000px;}
.h13{height:17.280000px;}
.h16{height:17.316000px;}
.h18{height:17.820000px;}
.h17{height:18.000000px;}
.h10{height:18.900000px;}
.h11{height:18.936000px;}
.hb{height:19.260000px;}
.he{height:19.296000px;}
.h9{height:19.440000px;}
.h19{height:20.340000px;}
.hd{height:20.520000px;}
.hf{height:20.700000px;}
.h6{height:38.158594px;}
.h1c{height:53.573906px;}
.ha{height:58.621992px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.h12{height:61.423863px;}
.h8{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.hc{height:67.824844px;}
.h1a{height:95.580000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:79.236000px;}
.w8{width:98.100000px;}
.w12{width:108.216000px;}
.w15{width:111.636000px;}
.w14{width:118.620000px;}
.w7{width:119.736000px;}
.w10{width:121.356000px;}
.w4{width:126.396000px;}
.wf{width:133.236000px;}
.w5{width:147.096000px;}
.w3{width:157.350000px;}
.wc{width:179.310000px;}
.wd{width:183.450000px;}
.w16{width:206.310000px;}
.wa{width:228.990000px;}
.we{width:230.070000px;}
.w11{width:232.410000px;}
.w13{width:308.055000px;}
.w9{width:329.115000px;}
.w6{width:342.210000px;}
.w17{width:568.905000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.080000px;}
.x3{left:7.740000px;}
.x1{left:54.179987px;}
.xf{left:55.979987px;}
.x9{left:57.420000px;}
.x2{left:58.860000px;}
.x1d{left:67.499987px;}
.xe{left:74.339987px;}
.x1c{left:94.535987px;}
.x19{left:176.610000px;}
.xa{left:177.870000px;}
.x1e{left:191.370000px;}
.x14{left:200.550000px;}
.x17{left:201.990000px;}
.x7{left:215.849987px;}
.x4{left:216.930000px;}
.x10{left:221.790000px;}
.x1f{left:260.310000px;}
.xb{left:276.690000px;}
.xd{left:301.574987px;}
.x12{left:304.815000px;}
.x5{left:344.235000px;}
.x15{left:434.415000px;}
.x8{left:446.474987px;}
.x1a{left:485.385000px;}
.x13{left:487.905000px;}
.x6{left:492.045000px;}
.x16{left:571.245000px;}
.x18{left:582.945000px;}
.x1b{left:604.905000px;}
.xc{left:606.525000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-1.045333pt;}
.ls13{letter-spacing:-0.821333pt;}
.ls1a{letter-spacing:-0.592000pt;}
.lsb{letter-spacing:-0.330133pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.230933pt;}
.ls10{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.277333pt;}
.ls1c{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.592000pt;}
.ls7{letter-spacing:0.688000pt;}
.ls12{letter-spacing:9.760000pt;}
.ls18{letter-spacing:10.320640pt;}
.ls17{letter-spacing:12.880640pt;}
.lsa{letter-spacing:13.392640pt;}
.ls2{letter-spacing:14.672640pt;}
.ls11{letter-spacing:15.952640pt;}
.ls1{letter-spacing:17.232640pt;}
.lse{letter-spacing:18.512640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.968000pt;}
.ws1{word-spacing:-13.674667pt;}
.ws6{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.wse{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.976747pt;}
.ws11{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.688000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-2256.995840pt;}
._3{margin-left:-1285.930240pt;}
._5{margin-left:-1281.337173pt;}
._4{margin-left:-883.833600pt;}
._6{margin-left:-510.862720pt;}
._15{margin-left:-13.801173pt;}
._7{margin-left:-7.143253pt;}
._8{margin-left:-3.879467pt;}
._11{margin-left:-2.656000pt;}
._1{margin-left:-1.447040pt;}
._0{width:1.106560pt;}
._c{width:2.562773pt;}
._d{width:3.718400pt;}
._10{width:4.970880pt;}
._9{width:6.554240pt;}
._b{width:7.575680pt;}
._a{width:8.622293pt;}
._16{width:9.696427pt;}
._12{width:10.746880pt;}
._e{width:11.686400pt;}
._19{width:14.351360pt;}
._f{width:15.389653pt;}
._1a{width:16.360320pt;}
._14{width:18.159787pt;}
._13{width:19.123200pt;}
._18{width:21.108267pt;}
._17{width:22.363520pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:3.040000pt;}
.ye6{bottom:3.200000pt;}
.ye4{bottom:3.360000pt;}
.y13f{bottom:3.520000pt;}
.y13d{bottom:3.680000pt;}
.y140{bottom:3.840000pt;}
.y13b{bottom:4.000000pt;}
.y48{bottom:4.480000pt;}
.y4a{bottom:4.800000pt;}
.y33{bottom:4.960000pt;}
.y35{bottom:5.120000pt;}
.y10b{bottom:5.280000pt;}
.y142{bottom:5.760000pt;}
.y143{bottom:6.080000pt;}
.y39{bottom:6.240000pt;}
.y3d{bottom:6.400000pt;}
.y174{bottom:19.840000pt;}
.y173{bottom:37.440000pt;}
.y170{bottom:41.120000pt;}
.y6{bottom:53.952000pt;}
.y172{bottom:55.040000pt;}
.y171{bottom:72.794667pt;}
.y16f{bottom:74.752000pt;}
.yc8{bottom:78.592000pt;}
.ya5{bottom:80.192000pt;}
.y34{bottom:80.672000pt;}
.y70{bottom:86.752000pt;}
.yfa{bottom:88.192000pt;}
.y11e{bottom:88.672000pt;}
.yc7{bottom:96.192000pt;}
.ya4{bottom:97.472000pt;}
.y139{bottom:97.792000pt;}
.y32{bottom:98.432000pt;}
.y6f{bottom:104.352000pt;}
.yf9{bottom:105.792000pt;}
.y11d{bottom:106.432000pt;}
.y16d{bottom:109.792000pt;}
.yc6{bottom:113.792000pt;}
.y138{bottom:115.552000pt;}
.y31{bottom:121.472000pt;}
.y6e{bottom:121.952000pt;}
.yf8{bottom:123.072000pt;}
.ya3{bottom:123.552000pt;}
.y11c{bottom:124.032000pt;}
.y16c{bottom:127.392000pt;}
.yc5{bottom:131.552000pt;}
.y137{bottom:132.832000pt;}
.y30{bottom:139.386667pt;}
.y6d{bottom:139.706667pt;}
.yf7{bottom:140.666667pt;}
.ya2{bottom:141.146667pt;}
.y11b{bottom:141.306667pt;}
.y16b{bottom:144.986667pt;}
.yc4{bottom:149.146667pt;}
.y136{bottom:150.746667pt;}
.y2f{bottom:156.986667pt;}
.y6c{bottom:157.306667pt;}
.ya1{bottom:158.746667pt;}
.y16a{bottom:162.426667pt;}
.yf6{bottom:166.586667pt;}
.yc3{bottom:166.746667pt;}
.y11a{bottom:167.226667pt;}
.y135{bottom:168.346667pt;}
.y2e{bottom:174.586667pt;}
.y6b{bottom:174.906667pt;}
.ya0{bottom:176.346667pt;}
.yc2{bottom:184.346667pt;}
.y119{bottom:184.826667pt;}
.y134{bottom:185.946667pt;}
.y169{bottom:188.346667pt;}
.y6a{bottom:192.186667pt;}
.y2d{bottom:192.346667pt;}
.y9f{bottom:193.946667pt;}
.yc1{bottom:201.946667pt;}
.y118{bottom:202.586667pt;}
.y133{bottom:203.386667pt;}
.y168{bottom:205.946667pt;}
.y2c{bottom:209.946667pt;}
.y9e{bottom:211.706667pt;}
.y69{bottom:218.106667pt;}
.yf5{bottom:219.546667pt;}
.yc0{bottom:219.706667pt;}
.y117{bottom:220.186667pt;}
.y132{bottom:221.306667pt;}
.y167{bottom:223.546667pt;}
.y2b{bottom:227.546667pt;}
.y9d{bottom:229.306667pt;}
.y68{bottom:235.866667pt;}
.yf4{bottom:236.026667pt;}
.ybf{bottom:237.306667pt;}
.y116{bottom:237.786667pt;}
.y131{bottom:238.906667pt;}
.y166{bottom:241.146667pt;}
.y2a{bottom:245.146667pt;}
.y9c{bottom:246.906667pt;}
.y67{bottom:253.466667pt;}
.ybe{bottom:254.906667pt;}
.y115{bottom:255.066667pt;}
.y130{bottom:256.506667pt;}
.yf3{bottom:256.666667pt;}
.y165{bottom:258.906667pt;}
.y29{bottom:262.746667pt;}
.y9b{bottom:264.506667pt;}
.y66{bottom:271.066667pt;}
.ybd{bottom:272.506667pt;}
.y114{bottom:272.986667pt;}
.y12f{bottom:274.106667pt;}
.y164{bottom:276.506667pt;}
.yf2{bottom:277.306667pt;}
.y28{bottom:280.506667pt;}
.y9a{bottom:282.106667pt;}
.y65{bottom:288.666667pt;}
.ybc{bottom:290.106667pt;}
.y113{bottom:290.746667pt;}
.y12e{bottom:291.906667pt;}
.y163{bottom:294.146667pt;}
.y27{bottom:298.146667pt;}
.y99{bottom:299.906667pt;}
.y64{bottom:306.306667pt;}
.ybb{bottom:307.906667pt;}
.y112{bottom:308.386667pt;}
.y12d{bottom:309.186667pt;}
.y162{bottom:311.746667pt;}
.y26{bottom:315.746667pt;}
.y98{bottom:317.506667pt;}
.yf1{bottom:318.786667pt;}
.y111{bottom:321.186667pt;}
.y63{bottom:324.066667pt;}
.yba{bottom:325.506667pt;}
.y12c{bottom:327.106667pt;}
.y161{bottom:329.346667pt;}
.y25{bottom:333.346667pt;}
.y97{bottom:335.106667pt;}
.y110{bottom:339.106667pt;}
.yf0{bottom:339.426667pt;}
.y62{bottom:341.666667pt;}
.yb9{bottom:343.106667pt;}
.y12b{bottom:344.706667pt;}
.y160{bottom:347.106667pt;}
.y24{bottom:350.946667pt;}
.y96{bottom:352.706667pt;}
.y10f{bottom:357.026667pt;}
.y61{bottom:359.266667pt;}
.yb8{bottom:360.706667pt;}
.y12a{bottom:362.306667pt;}
.yef{bottom:364.226667pt;}
.y15f{bottom:364.706667pt;}
.y23{bottom:368.706667pt;}
.y95{bottom:370.306667pt;}
.y10e{bottom:374.946667pt;}
.y60{bottom:376.866667pt;}
.yb7{bottom:378.306667pt;}
.y129{bottom:379.746667pt;}
.yee{bottom:382.146667pt;}
.y15e{bottom:382.306667pt;}
.y22{bottom:386.306667pt;}
.y94{bottom:388.066667pt;}
.y10d{bottom:392.866667pt;}
.y5f{bottom:394.466667pt;}
.yb6{bottom:396.066667pt;}
.y128{bottom:397.346667pt;}
.yed{bottom:399.746667pt;}
.y15d{bottom:399.906667pt;}
.y21{bottom:403.906667pt;}
.y93{bottom:405.666667pt;}
.y10c{bottom:410.786667pt;}
.y5e{bottom:412.226667pt;}
.yb5{bottom:413.666667pt;}
.yec{bottom:417.506667pt;}
.y20{bottom:421.506667pt;}
.y92{bottom:423.266667pt;}
.y10a{bottom:428.706667pt;}
.y5d{bottom:429.826667pt;}
.yb4{bottom:431.266667pt;}
.yeb{bottom:435.106667pt;}
.y15c{bottom:435.266667pt;}
.y1f{bottom:438.786667pt;}
.y91{bottom:440.866667pt;}
.y5c{bottom:447.426667pt;}
.yb3{bottom:448.866667pt;}
.y109{bottom:451.906667pt;}
.yea{bottom:452.706667pt;}
.y15b{bottom:452.866667pt;}
.y1e{bottom:456.546667pt;}
.y90{bottom:458.466667pt;}
.y5b{bottom:465.026667pt;}
.yb2{bottom:466.466667pt;}
.ye9{bottom:470.306667pt;}
.y15a{bottom:470.466667pt;}
.y1d{bottom:474.466667pt;}
.y8f{bottom:476.226667pt;}
.y108{bottom:477.826667pt;}
.y5a{bottom:482.626667pt;}
.yb1{bottom:484.226667pt;}
.ye8{bottom:487.906667pt;}
.y159{bottom:488.066667pt;}
.y8e{bottom:493.826667pt;}
.y1c{bottom:494.146667pt;}
.y107{bottom:495.426667pt;}
.y59{bottom:500.386667pt;}
.yb0{bottom:501.506667pt;}
.y16e{bottom:501.826667pt;}
.ye7{bottom:504.386667pt;}
.y158{bottom:505.666667pt;}
.y127{bottom:511.106667pt;}
.y8d{bottom:511.426667pt;}
.y106{bottom:513.026667pt;}
.y58{bottom:517.986667pt;}
.yaf{bottom:519.426667pt;}
.y1b{bottom:519.746667pt;}
.y157{bottom:523.426667pt;}
.ye5{bottom:525.186667pt;}
.y8c{bottom:529.053333pt;}
.y105{bottom:530.653333pt;}
.y57{bottom:535.613333pt;}
.yae{bottom:537.053333pt;}
.y1a{bottom:537.373333pt;}
.y156{bottom:541.053333pt;}
.ye3{bottom:545.853333pt;}
.y8b{bottom:546.653333pt;}
.y104{bottom:548.413333pt;}
.y56{bottom:553.213333pt;}
.yad{bottom:554.653333pt;}
.y19{bottom:554.973333pt;}
.y155{bottom:558.333333pt;}
.y8a{bottom:564.093333pt;}
.y126{bottom:564.413333pt;}
.y103{bottom:566.013333pt;}
.ye1{bottom:566.493333pt;}
.y55{bottom:570.813333pt;}
.yac{bottom:572.413333pt;}
.y18{bottom:572.573333pt;}
.y154{bottom:575.933333pt;}
.y125{bottom:582.013333pt;}
.y102{bottom:583.293333pt;}
.y54{bottom:588.573333pt;}
.y89{bottom:590.013333pt;}
.y17{bottom:590.333333pt;}
.ye0{bottom:591.293333pt;}
.y153{bottom:593.853333pt;}
.y124{bottom:599.293333pt;}
.y53{bottom:606.173333pt;}
.y88{bottom:607.613333pt;}
.y16{bottom:607.933333pt;}
.ydf{bottom:609.213333pt;}
.y152{bottom:611.613333pt;}
.y123{bottom:617.213333pt;}
.y52{bottom:623.773333pt;}
.yab{bottom:624.893333pt;}
.y87{bottom:625.213333pt;}
.y15{bottom:625.533333pt;}
.yde{bottom:626.813333pt;}
.y151{bottom:629.213333pt;}
.y122{bottom:634.813333pt;}
.y51{bottom:641.373333pt;}
.y86{bottom:642.813333pt;}
.y14{bottom:643.133333pt;}
.ydd{bottom:644.253333pt;}
.y101{bottom:644.573333pt;}
.y150{bottom:646.813333pt;}
.y121{bottom:652.573333pt;}
.y50{bottom:658.973333pt;}
.y85{bottom:660.573333pt;}
.y13{bottom:660.733333pt;}
.y100{bottom:662.173333pt;}
.y14f{bottom:664.413333pt;}
.ydc{bottom:670.173333pt;}
.y4f{bottom:676.733333pt;}
.y84{bottom:678.173333pt;}
.y12{bottom:678.493333pt;}
.yff{bottom:679.773333pt;}
.y14e{bottom:682.013333pt;}
.y120{bottom:687.453333pt;}
.ydb{bottom:687.773333pt;}
.y4e{bottom:694.333333pt;}
.y83{bottom:695.773333pt;}
.y11{bottom:696.093333pt;}
.yfe{bottom:697.373333pt;}
.y14d{bottom:699.773333pt;}
.yda{bottom:705.373333pt;}
.y4d{bottom:711.613333pt;}
.y82{bottom:713.373333pt;}
.y10{bottom:713.693333pt;}
.yfd{bottom:714.653333pt;}
.y14c{bottom:717.373333pt;}
.yd9{bottom:722.973333pt;}
.y4c{bottom:729.213333pt;}
.y81{bottom:730.973333pt;}
.yf{bottom:731.293333pt;}
.y14b{bottom:734.973333pt;}
.yd8{bottom:740.733333pt;}
.y4b{bottom:742.333333pt;}
.y80{bottom:748.733333pt;}
.ye{bottom:748.893333pt;}
.y14a{bottom:752.573333pt;}
.yd7{bottom:758.333333pt;}
.y49{bottom:759.933333pt;}
.y7f{bottom:766.013333pt;}
.yaa{bottom:766.373333pt;}
.y149{bottom:769.893333pt;}
.yd{bottom:773.253333pt;}
.yd6{bottom:775.973333pt;}
.y47{bottom:777.413333pt;}
.ya9{bottom:783.653333pt;}
.y7e{bottom:783.973333pt;}
.yc{bottom:790.853333pt;}
.y11f{bottom:793.253333pt;}
.yd5{bottom:793.573333pt;}
.y148{bottom:795.973333pt;}
.y46{bottom:797.893333pt;}
.y7d{bottom:801.573333pt;}
.yb{bottom:804.133333pt;}
.yd4{bottom:810.853333pt;}
.yfc{bottom:811.173333pt;}
.y147{bottom:813.573333pt;}
.y45{bottom:815.653333pt;}
.y7c{bottom:819.173333pt;}
.ya{bottom:823.013333pt;}
.yd3{bottom:828.933333pt;}
.y146{bottom:830.853333pt;}
.y44{bottom:833.253333pt;}
.ya8{bottom:836.613333pt;}
.y7b{bottom:836.933333pt;}
.y9{bottom:843.813333pt;}
.yd2{bottom:846.533333pt;}
.y145{bottom:848.453333pt;}
.y43{bottom:850.853333pt;}
.ya7{bottom:854.213333pt;}
.y7a{bottom:854.533333pt;}
.y144{bottom:861.573333pt;}
.yd1{bottom:864.133333pt;}
.y42{bottom:868.613333pt;}
.y8{bottom:871.973333pt;}
.y79{bottom:872.133333pt;}
.y141{bottom:878.213333pt;}
.yfb{bottom:881.413333pt;}
.yd0{bottom:881.733333pt;}
.y41{bottom:886.213333pt;}
.y78{bottom:889.733333pt;}
.y13e{bottom:897.093333pt;}
.ycf{bottom:899.333333pt;}
.y7{bottom:900.293333pt;}
.y40{bottom:903.813333pt;}
.y77{bottom:907.333333pt;}
.y13c{bottom:913.573333pt;}
.yce{bottom:917.093333pt;}
.y3f{bottom:921.093333pt;}
.y76{bottom:925.093333pt;}
.y13a{bottom:930.213333pt;}
.ycd{bottom:934.693333pt;}
.y5{bottom:934.853333pt;}
.y3e{bottom:938.693333pt;}
.y75{bottom:942.693333pt;}
.y3c{bottom:951.813333pt;}
.ycc{bottom:951.973333pt;}
.y74{bottom:959.973333pt;}
.ya6{bottom:960.293333pt;}
.y4{bottom:962.213333pt;}
.ycb{bottom:969.573333pt;}
.y3b{bottom:970.853333pt;}
.y73{bottom:977.893333pt;}
.y3a{bottom:988.613333pt;}
.y3{bottom:989.573333pt;}
.yca{bottom:995.173333pt;}
.y72{bottom:995.493333pt;}
.y38{bottom:1006.400000pt;}
.yc9{bottom:1012.960000pt;}
.y71{bottom:1013.280000pt;}
.y2{bottom:1016.800000pt;}
.y37{bottom:1040.160000pt;}
.y1{bottom:1046.720000pt;}
.y36{bottom:1060.800000pt;}
.h1b{height:2.546250pt;}
.h15{height:15.200000pt;}
.h14{height:15.232000pt;}
.h13{height:15.360000pt;}
.h16{height:15.392000pt;}
.h18{height:15.840000pt;}
.h17{height:16.000000pt;}
.h10{height:16.800000pt;}
.h11{height:16.832000pt;}
.hb{height:17.120000pt;}
.he{height:17.152000pt;}
.h9{height:17.280000pt;}
.h19{height:18.080000pt;}
.hd{height:18.240000pt;}
.hf{height:18.400000pt;}
.h6{height:33.918750pt;}
.h1c{height:47.621250pt;}
.ha{height:52.108438pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.h12{height:54.598989pt;}
.h8{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.hc{height:60.288750pt;}
.h1a{height:84.960000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:70.432000pt;}
.w8{width:87.200000pt;}
.w12{width:96.192000pt;}
.w15{width:99.232000pt;}
.w14{width:105.440000pt;}
.w7{width:106.432000pt;}
.w10{width:107.872000pt;}
.w4{width:112.352000pt;}
.wf{width:118.432000pt;}
.w5{width:130.752000pt;}
.w3{width:139.866667pt;}
.wc{width:159.386667pt;}
.wd{width:163.066667pt;}
.w16{width:183.386667pt;}
.wa{width:203.546667pt;}
.we{width:204.506667pt;}
.w11{width:206.586667pt;}
.w13{width:273.826667pt;}
.w9{width:292.546667pt;}
.w6{width:304.186667pt;}
.w17{width:505.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:0.960000pt;}
.x3{left:6.880000pt;}
.x1{left:48.159988pt;}
.xf{left:49.759988pt;}
.x9{left:51.040000pt;}
.x2{left:52.320000pt;}
.x1d{left:59.999988pt;}
.xe{left:66.079988pt;}
.x1c{left:84.031988pt;}
.x19{left:156.986667pt;}
.xa{left:158.106667pt;}
.x1e{left:170.106667pt;}
.x14{left:178.266667pt;}
.x17{left:179.546667pt;}
.x7{left:191.866655pt;}
.x4{left:192.826667pt;}
.x10{left:197.146667pt;}
.x1f{left:231.386667pt;}
.xb{left:245.946667pt;}
.xd{left:268.066655pt;}
.x12{left:270.946667pt;}
.x5{left:305.986667pt;}
.x15{left:386.146667pt;}
.x8{left:396.866655pt;}
.x1a{left:431.453333pt;}
.x13{left:433.693333pt;}
.x6{left:437.373333pt;}
.x16{left:507.773333pt;}
.x18{left:518.173333pt;}
.x1b{left:537.693333pt;}
.xc{left:539.133333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  