
    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_d94af1baa9f9c08ef01b544b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a70f32ba592fd7da371ad29a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_07dc3acd985742f51090c034.woff')format("woff");}.ff3{font-family:ff3;line-height:1.372070;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_71bf7d83a2c1a8b0c1414148.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_fdb1dc2c6f10b6d7c144583d.woff')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_8922f01fae174c71324652c3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_108ad77e502a1b867e650fd4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7ebc0a3f600da98e6205114e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3909e500ea904172a52a8201.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b92c46cceac0093e1f96574e.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v8{vertical-align:-48.240000px;}
.v5{vertical-align:-46.800000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:26.100000px;}
.v6{vertical-align:46.800000px;}
.v4{vertical-align:62.040000px;}
.ls13{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.223800px;}
.lsf{letter-spacing:-0.091200px;}
.lsc{letter-spacing:-0.045360px;}
.lse{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.126000px;}
.ls9{letter-spacing:0.129600px;}
.ls8{letter-spacing:0.144720px;}
.ls6{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.181440px;}
.ls5{letter-spacing:0.269400px;}
.ls11{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.496080px;}
.lsd{letter-spacing:0.504000px;}
.ls12{letter-spacing:3.780000px;}
.ls2{letter-spacing:3.960000px;}
.ls14{letter-spacing:57.780000px;}
.lsa{letter-spacing:72.269280px;}
.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.038240px;}
.ws8{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.329400px;}
.wsf{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.060000px;}
.ws11{word-spacing:-12.014640px;}
.ws5{word-spacing:-11.836200px;}
.ws0{word-spacing:-11.700000px;}
.ws6{word-spacing:0.000000px;}
.ws9{word-spacing:54.162000px;}
.ws10{word-spacing:79.200000px;}
.wsa{word-spacing:157.068000px;}
.ws7{word-spacing:253.026000px;}
.wse{word-spacing:276.942000px;}
.wsc{word-spacing:276.953280px;}
.wsd{word-spacing:277.002000px;}
.wsb{word-spacing:277.122000px;}
.ws12{word-spacing:411.960000px;}
._c{margin-left:-3.666240px;}
._5{margin-left:-2.327760px;}
._0{margin-left:-1.206000px;}
._1{width:1.061760px;}
._4{width:2.496480px;}
._2{width:3.815520px;}
._6{width:5.291760px;}
._7{width:6.482880px;}
._8{width:7.585920px;}
._19{width:8.696880px;}
._11{width:10.275120px;}
._3{width:12.593040px;}
._14{width:14.046480px;}
._15{width:15.332400px;}
._16{width:17.139840px;}
._13{width:19.633680px;}
._12{width:20.887920px;}
._17{width:57.405600px;}
._18{width:59.301840px;}
._10{width:64.278000px;}
._d{width:85.776240px;}
._9{width:122.334000px;}
._1a{width:129.136080px;}
._e{width:158.016000px;}
._f{width:166.950000px;}
._a{width:193.632000px;}
._b{width:202.446000px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fs5{font-size:30.240000px;}
.fs6{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:5.610000px;}
.y9b{bottom:7.125000px;}
.y2{bottom:11.520000px;}
.yb1{bottom:12.600000px;}
.y108{bottom:16.530000px;}
.y9c{bottom:17.745000px;}
.y89{bottom:18.075000px;}
.ya2{bottom:21.450000px;}
.y9a{bottom:23.610000px;}
.y7{bottom:28.080000px;}
.y88{bottom:33.585000px;}
.yc8{bottom:39.600000px;}
.y99{bottom:40.065000px;}
.yf3{bottom:42.990000px;}
.y107{bottom:45.285000px;}
.ya1{bottom:45.360000px;}
.ya3{bottom:46.440000px;}
.y7f{bottom:49.425000px;}
.y6{bottom:51.120000px;}
.y9{bottom:56.340000px;}
.y98{bottom:56.550000px;}
.yf7{bottom:60.195000px;}
.y100{bottom:61.170000px;}
.y5{bottom:70.230000px;}
.y80{bottom:71.175000px;}
.ya4{bottom:71.430000px;}
.y97{bottom:73.050000px;}
.y7e{bottom:74.190000px;}
.ya0{bottom:80.310000px;}
.yfb{bottom:80.430000px;}
.yf2{bottom:80.535000px;}
.yf6{bottom:89.565000px;}
.y91{bottom:90.615000px;}
.y81{bottom:92.910000px;}
.ya5{bottom:96.405000px;}
.y101{bottom:98.820000px;}
.y9f{bottom:100.290000px;}
.yff{bottom:102.135000px;}
.y4{bottom:106.050000px;}
.y7d{bottom:106.815000px;}
.yfa{bottom:110.985000px;}
.y92{bottom:111.855000px;}
.y5d{bottom:113.256000px;}
.y131{bottom:114.336000px;}
.y82{bottom:114.660000px;}
.yf5{bottom:117.465000px;}
.ya6{bottom:121.350000px;}
.yef{bottom:121.536000px;}
.y7a{bottom:122.436000px;}
.yd1{bottom:124.776000px;}
.yfe{bottom:126.360000px;}
.y33{bottom:128.736000px;}
.y5c{bottom:131.256000px;}
.y130{bottom:132.336000px;}
.y93{bottom:133.095000px;}
.y90{bottom:133.530000px;}
.y8b{bottom:134.610000px;}
.y83{bottom:136.410000px;}
.y102{bottom:136.440000px;}
.yee{bottom:139.536000px;}
.y8c{bottom:139.890000px;}
.y79{bottom:140.436000px;}
.yd0{bottom:142.776000px;}
.yf1{bottom:143.430000px;}
.yf9{bottom:143.745000px;}
.ya7{bottom:146.340000px;}
.y32{bottom:146.736000px;}
.y5b{bottom:149.256000px;}
.y94{bottom:154.335000px;}
.y84{bottom:158.145000px;}
.y12f{bottom:159.330000px;}
.yfd{bottom:160.275000px;}
.ycf{bottom:160.770000px;}
.y31{bottom:164.730000px;}
.y9e{bottom:165.240000px;}
.yed{bottom:166.530000px;}
.y5a{bottom:167.250000px;}
.y78{bottom:167.430000px;}
.ya8{bottom:171.330000px;}
.y103{bottom:174.090000px;}
.y95{bottom:175.575000px;}
.y8f{bottom:176.010000px;}
.y12e{bottom:177.330000px;}
.yce{bottom:178.770000px;}
.y85{bottom:179.895000px;}
.y8e{bottom:181.335000px;}
.y8d{bottom:182.415000px;}
.y30{bottom:182.730000px;}
.yec{bottom:184.530000px;}
.y59{bottom:185.250000px;}
.y77{bottom:194.430000px;}
.y12d{bottom:195.330000px;}
.ycd{bottom:196.770000px;}
.y96{bottom:196.845000px;}
.y2f{bottom:200.730000px;}
.y86{bottom:201.630000px;}
.y9d{bottom:201.780000px;}
.yeb{bottom:202.530000px;}
.y7c{bottom:209.010000px;}
.y104{bottom:211.755000px;}
.y12c{bottom:213.330000px;}
.ycc{bottom:214.770000px;}
.y2e{bottom:218.730000px;}
.y58{bottom:220.170000px;}
.y76{bottom:221.430000px;}
.y87{bottom:223.380000px;}
.yea{bottom:229.530000px;}
.ycb{bottom:232.770000px;}
.y2d{bottom:236.730000px;}
.yf4{bottom:237.315000px;}
.y12b{bottom:240.330000px;}
.ye9{bottom:247.530000px;}
.y75{bottom:248.430000px;}
.y105{bottom:249.405000px;}
.yca{bottom:250.770000px;}
.yf8{bottom:253.830000px;}
.y57{bottom:254.910000px;}
.y12a{bottom:258.330000px;}
.y2c{bottom:263.730000px;}
.yfc{bottom:268.020000px;}
.y56{bottom:272.910000px;}
.y74{bottom:275.430000px;}
.ye8{bottom:276.690000px;}
.yc9{bottom:277.770000px;}
.y2b{bottom:281.730000px;}
.y129{bottom:285.330000px;}
.y106{bottom:287.070000px;}
.y55{bottom:290.910000px;}
.yc7{bottom:292.890000px;}
.y2a{bottom:299.730000px;}
.y73{bottom:302.430000px;}
.y128{bottom:303.330000px;}
.ye7{bottom:303.690000px;}
.y54{bottom:308.910000px;}
.y29{bottom:317.730000px;}
.ye6{bottom:321.690000px;}
.y53{bottom:326.910000px;}
.y72{bottom:329.430000px;}
.y127{bottom:330.330000px;}
.y28{bottom:335.730000px;}
.ye5{bottom:339.735000px;}
.y52{bottom:344.955000px;}
.yc6{bottom:347.835000px;}
.y126{bottom:348.375000px;}
.y27{bottom:353.775000px;}
.y71{bottom:356.475000px;}
.ye4{bottom:357.735000px;}
.y26{bottom:371.775000px;}
.yc5{bottom:374.835000px;}
.y125{bottom:375.375000px;}
.y51{bottom:380.055000px;}
.y70{bottom:383.475000px;}
.y25{bottom:389.775000px;}
.ye3{bottom:392.835000px;}
.y124{bottom:393.375000px;}
.yc4{bottom:401.835000px;}
.y24{bottom:407.775000px;}
.y6f{bottom:410.475000px;}
.y50{bottom:414.795000px;}
.y123{bottom:420.375000px;}
.y23{bottom:425.775000px;}
.yc3{bottom:428.835000px;}
.ye2{bottom:432.435000px;}
.y8a{bottom:435.780000px;}
.y6e{bottom:437.475000px;}
.y122{bottom:438.375000px;}
.y4f{bottom:441.795000px;}
.ye1{bottom:450.435000px;}
.y22{bottom:452.775000px;}
.yc2{bottom:455.835000px;}
.y6d{bottom:464.475000px;}
.y121{bottom:465.375000px;}
.ye0{bottom:468.435000px;}
.y4e{bottom:468.795000px;}
.y21{bottom:470.775000px;}
.y120{bottom:483.375000px;}
.yc1{bottom:483.555000px;}
.ydf{bottom:486.435000px;}
.y20{bottom:488.775000px;}
.y6c{bottom:491.475000px;}
.y4d{bottom:495.795000px;}
.y11f{bottom:501.375000px;}
.yde{bottom:504.435000px;}
.y1f{bottom:506.775000px;}
.yc0{bottom:511.275000px;}
.y4c{bottom:513.795000px;}
.y6b{bottom:518.475000px;}
.ydd{bottom:522.435000px;}
.y1e{bottom:524.775000px;}
.y11e{bottom:528.375000px;}
.y1d{bottom:542.775000px;}
.y6a{bottom:545.475000px;}
.y11d{bottom:546.375000px;}
.y4b{bottom:548.715000px;}
.ydc{bottom:549.435000px;}
.ybf{bottom:551.595000px;}
.y1c{bottom:560.775000px;}
.y69{bottom:572.475000px;}
.ydb{bottom:572.655000px;}
.yf0{bottom:573.300000px;}
.y11c{bottom:573.375000px;}
.ybe{bottom:578.595000px;}
.y1b{bottom:578.775000px;}
.y4a{bottom:583.455000px;}
.y11b{bottom:591.375000px;}
.ybd{bottom:596.595000px;}
.y68{bottom:599.475000px;}
.y49{bottom:610.485000px;}
.y1a{bottom:613.905000px;}
.ybc{bottom:614.625000px;}
.y11a{bottom:618.405000px;}
.y67{bottom:626.505000px;}
.ybb{bottom:632.625000px;}
.y119{bottom:636.405000px;}
.y48{bottom:637.485000px;}
.yba{bottom:650.625000px;}
.y19{bottom:653.505000px;}
.y118{bottom:654.405000px;}
.y47{bottom:664.485000px;}
.yb9{bottom:677.625000px;}
.y66{bottom:680.505000px;}
.y117{bottom:681.405000px;}
.y18{bottom:682.665000px;}
.y46{bottom:691.485000px;}
.yb8{bottom:692.745000px;}
.y116{bottom:699.405000px;}
.y17{bottom:700.665000px;}
.y65{bottom:703.905000px;}
.y7b{bottom:703.980000px;}
.y115{bottom:717.405000px;}
.y45{bottom:718.485000px;}
.y16{bottom:718.665000px;}
.yb7{bottom:720.465000px;}
.y15{bottom:736.665000px;}
.y114{bottom:744.405000px;}
.y44{bottom:745.485000px;}
.yb6{bottom:747.465000px;}
.y14{bottom:754.665000px;}
.y113{bottom:762.405000px;}
.y43{bottom:772.485000px;}
.y13{bottom:772.665000px;}
.yb5{bottom:774.465000px;}
.y112{bottom:789.405000px;}
.y12{bottom:790.665000px;}
.y42{bottom:799.485000px;}
.yb4{bottom:801.465000px;}
.y111{bottom:807.405000px;}
.y11{bottom:808.665000px;}
.y41{bottom:826.485000px;}
.y10{bottom:826.665000px;}
.yb3{bottom:828.465000px;}
.y110{bottom:834.405000px;}
.y10f{bottom:852.405000px;}
.yb2{bottom:856.365000px;}
.y40{bottom:861.585000px;}
.yf{bottom:861.765000px;}
.y10e{bottom:879.450000px;}
.yb0{bottom:884.130000px;}
.yda{bottom:893.670000px;}
.ye{bottom:896.370000px;}
.y10d{bottom:897.450000px;}
.yd9{bottom:908.790000px;}
.y3f{bottom:914.370000px;}
.yd{bottom:917.970000px;}
.yaf{bottom:924.450000px;}
.y3e{bottom:932.370000px;}
.yd8{bottom:936.510000px;}
.y10c{bottom:942.450000px;}
.yc{bottom:945.330000px;}
.yae{bottom:951.450000px;}
.y64{bottom:957.750000px;}
.y10b{bottom:960.450000px;}
.yd7{bottom:963.510000px;}
.y3d{bottom:967.290000px;}
.yad{bottom:969.450000px;}
.y63{bottom:975.750000px;}
.yac{bottom:987.450000px;}
.yd6{bottom:990.510000px;}
.yb{bottom:995.370000px;}
.y3c{bottom:1001.850000px;}
.yab{bottom:1005.450000px;}
.y62{bottom:1010.850000px;}
.y10a{bottom:1014.450000px;}
.yd5{bottom:1017.510000px;}
.yaa{bottom:1023.450000px;}
.ya{bottom:1028.490000px;}
.y109{bottom:1032.450000px;}
.y3b{bottom:1041.450000px;}
.yd4{bottom:1044.510000px;}
.y61{bottom:1050.450000px;}
.y8{bottom:1056.570000px;}
.y3a{bottom:1059.450000px;}
.y60{bottom:1068.450000px;}
.y3{bottom:1070.250000px;}
.yd3{bottom:1072.410000px;}
.y39{bottom:1077.450000px;}
.y5f{bottom:1086.450000px;}
.y38{bottom:1095.450000px;}
.yd2{bottom:1100.130000px;}
.y5e{bottom:1104.450000px;}
.y37{bottom:1122.450000px;}
.y36{bottom:1140.480000px;}
.y35{bottom:1181.160000px;}
.y1{bottom:1186.020000px;}
.y34{bottom:1197.540000px;}
.h5{height:2.826563px;}
.h2{height:22.860000px;}
.h1e{height:27.000000px;}
.h1f{height:27.036000px;}
.hd{height:29.664141px;}
.h9{height:29.678906px;}
.ha{height:44.496211px;}
.hf{height:44.518359px;}
.he{height:45.714375px;}
.h3{height:47.344922px;}
.h20{height:47.678906px;}
.h11{height:48.616875px;}
.h13{height:49.583118px;}
.h12{height:50.146523px;}
.h15{height:52.998047px;}
.h1d{height:53.139375px;}
.h19{height:53.709961px;}
.h1a{height:53.853187px;}
.h7{height:53.868164px;}
.h21{height:54.036000px;}
.h10{height:57.324375px;}
.hc{height:71.081367px;}
.h16{height:79.098047px;}
.h8{height:83.787539px;}
.hb{height:96.508125px;}
.h6{height:98.051133px;}
.h1b{height:100.509961px;}
.h17{height:115.038047px;}
.h4{height:115.416000px;}
.h1c{height:195.300000px;}
.h18{height:231.480000px;}
.h14{height:241.200000px;}
.h22{height:307.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:71.280000px;}
.we{width:72.360000px;}
.w15{width:84.780000px;}
.w14{width:87.696000px;}
.wd{width:90.360000px;}
.w13{width:104.040000px;}
.w3{width:106.236000px;}
.w10{width:108.540000px;}
.w18{width:109.080000px;}
.w19{width:109.296000px;}
.w17{width:109.476000px;}
.w12{width:109.656000px;}
.wb{width:121.536000px;}
.wa{width:121.680000px;}
.wc{width:121.896000px;}
.w16{width:129.240000px;}
.w11{width:143.316000px;}
.w8{width:360.900000px;}
.w6{width:409.320000px;}
.w1b{width:518.040000px;}
.w7{width:538.920000px;}
.wf{width:638.025000px;}
.w4{width:644.325000px;}
.w9{width:649.365000px;}
.w2{width:750.570000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:2.415000px;}
.x3{left:8.136000px;}
.x1f{left:9.255000px;}
.x12{left:14.730000px;}
.x1e{left:16.095000px;}
.x11{left:21.495000px;}
.x36{left:27.825000px;}
.x5{left:32.220000px;}
.x35{left:34.590000px;}
.x50{left:38.850000px;}
.x51{left:42.690000px;}
.x21{left:48.855000px;}
.x14{left:52.590000px;}
.x18{left:67.530000px;}
.x22{left:72.390000px;}
.x13{left:79.950000px;}
.x1{left:81.000000px;}
.x32{left:88.710000px;}
.x1b{left:94.785000px;}
.x7{left:102.285000px;}
.xa{left:108.035987px;}
.x2{left:119.190000px;}
.x37{left:120.996000px;}
.x40{left:131.616000px;}
.x23{left:141.120000px;}
.x48{left:143.745000px;}
.x4a{left:150.510000px;}
.x33{left:162.930000px;}
.x8{left:165.269987px;}
.x17{left:176.040000px;}
.x4{left:187.230000px;}
.x30{left:220.395000px;}
.x3c{left:229.530000px;}
.x15{left:233.820000px;}
.x26{left:235.875000px;}
.x25{left:238.170000px;}
.xf{left:241.740000px;}
.x24{left:249.375000px;}
.x10{left:254.370000px;}
.x19{left:258.810000px;}
.x41{left:260.850000px;}
.x4e{left:264.060000px;}
.x31{left:265.860000px;}
.x4b{left:267.015000px;}
.x1c{left:286.020000px;}
.x47{left:297.434987px;}
.x34{left:314.895000px;}
.x16{left:318.810000px;}
.x6{left:322.095000px;}
.xd{left:323.714987px;}
.x27{left:344.985000px;}
.xc{left:347.654987px;}
.x29{left:351.510000px;}
.x1a{left:354.420000px;}
.x28{left:358.740000px;}
.x2a{left:361.695000px;}
.x38{left:364.215000px;}
.x42{left:370.335000px;}
.xe{left:373.214987px;}
.x4f{left:379.365000px;}
.x4c{left:380.595000px;}
.x1d{left:381.675000px;}
.x2f{left:426.390000px;}
.x2d{left:427.965000px;}
.x2c{left:434.805000px;}
.x2b{left:439.095000px;}
.x2e{left:449.280000px;}
.x43{left:479.985000px;}
.x3d{left:482.505000px;}
.x4d{left:483.945000px;}
.x39{left:486.105000px;}
.x49{left:490.350000px;}
.x3a{left:576.465000px;}
.x3e{left:586.545000px;}
.x44{left:589.065000px;}
.x3b{left:648.825000px;}
.xb{left:651.164987px;}
.x3f{left:674.250000px;}
.x45{left:698.370000px;}
.x46{left:705.569987px;}
.x9{left:812.129987px;}
@media print{
.v8{vertical-align:-42.880000pt;}
.v5{vertical-align:-41.600000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:23.200000pt;}
.v6{vertical-align:41.600000pt;}
.v4{vertical-align:55.146667pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.198933pt;}
.lsf{letter-spacing:-0.081067pt;}
.lsc{letter-spacing:-0.040320pt;}
.lse{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.112000pt;}
.ls9{letter-spacing:0.115200pt;}
.ls8{letter-spacing:0.128640pt;}
.ls6{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.161280pt;}
.ls5{letter-spacing:0.239467pt;}
.ls11{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.440960pt;}
.lsd{letter-spacing:0.448000pt;}
.ls12{letter-spacing:3.360000pt;}
.ls2{letter-spacing:3.520000pt;}
.ls14{letter-spacing:51.360000pt;}
.lsa{letter-spacing:64.239360pt;}
.ws2{word-spacing:-16.922880pt;}
.ws8{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.959467pt;}
.wsf{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.679680pt;}
.ws5{word-spacing:-10.521067pt;}
.ws0{word-spacing:-10.400000pt;}
.ws6{word-spacing:0.000000pt;}
.ws9{word-spacing:48.144000pt;}
.ws10{word-spacing:70.400000pt;}
.wsa{word-spacing:139.616000pt;}
.ws7{word-spacing:224.912000pt;}
.wse{word-spacing:246.170667pt;}
.wsc{word-spacing:246.180693pt;}
.wsd{word-spacing:246.224000pt;}
.wsb{word-spacing:246.330667pt;}
.ws12{word-spacing:366.186667pt;}
._c{margin-left:-3.258880pt;}
._5{margin-left:-2.069120pt;}
._0{margin-left:-1.072000pt;}
._1{width:0.943787pt;}
._4{width:2.219093pt;}
._2{width:3.391573pt;}
._6{width:4.703787pt;}
._7{width:5.762560pt;}
._8{width:6.743040pt;}
._19{width:7.730560pt;}
._11{width:9.133440pt;}
._3{width:11.193813pt;}
._14{width:12.485760pt;}
._15{width:13.628800pt;}
._16{width:15.235413pt;}
._13{width:17.452160pt;}
._12{width:18.567040pt;}
._17{width:51.027200pt;}
._18{width:52.712747pt;}
._10{width:57.136000pt;}
._d{width:76.245547pt;}
._9{width:108.741333pt;}
._1a{width:114.787627pt;}
._e{width:140.458667pt;}
._f{width:148.400000pt;}
._a{width:172.117333pt;}
._b{width:179.952000pt;}
.fs1{font-size:2.560000pt;}
.fs5{font-size:26.880000pt;}
.fs6{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:4.986667pt;}
.y9b{bottom:6.333333pt;}
.y2{bottom:10.240000pt;}
.yb1{bottom:11.200000pt;}
.y108{bottom:14.693333pt;}
.y9c{bottom:15.773333pt;}
.y89{bottom:16.066667pt;}
.ya2{bottom:19.066667pt;}
.y9a{bottom:20.986667pt;}
.y7{bottom:24.960000pt;}
.y88{bottom:29.853333pt;}
.yc8{bottom:35.200000pt;}
.y99{bottom:35.613333pt;}
.yf3{bottom:38.213333pt;}
.y107{bottom:40.253333pt;}
.ya1{bottom:40.320000pt;}
.ya3{bottom:41.280000pt;}
.y7f{bottom:43.933333pt;}
.y6{bottom:45.440000pt;}
.y9{bottom:50.080000pt;}
.y98{bottom:50.266667pt;}
.yf7{bottom:53.506667pt;}
.y100{bottom:54.373333pt;}
.y5{bottom:62.426667pt;}
.y80{bottom:63.266667pt;}
.ya4{bottom:63.493333pt;}
.y97{bottom:64.933333pt;}
.y7e{bottom:65.946667pt;}
.ya0{bottom:71.386667pt;}
.yfb{bottom:71.493333pt;}
.yf2{bottom:71.586667pt;}
.yf6{bottom:79.613333pt;}
.y91{bottom:80.546667pt;}
.y81{bottom:82.586667pt;}
.ya5{bottom:85.693333pt;}
.y101{bottom:87.840000pt;}
.y9f{bottom:89.146667pt;}
.yff{bottom:90.786667pt;}
.y4{bottom:94.266667pt;}
.y7d{bottom:94.946667pt;}
.yfa{bottom:98.653333pt;}
.y92{bottom:99.426667pt;}
.y5d{bottom:100.672000pt;}
.y131{bottom:101.632000pt;}
.y82{bottom:101.920000pt;}
.yf5{bottom:104.413333pt;}
.ya6{bottom:107.866667pt;}
.yef{bottom:108.032000pt;}
.y7a{bottom:108.832000pt;}
.yd1{bottom:110.912000pt;}
.yfe{bottom:112.320000pt;}
.y33{bottom:114.432000pt;}
.y5c{bottom:116.672000pt;}
.y130{bottom:117.632000pt;}
.y93{bottom:118.306667pt;}
.y90{bottom:118.693333pt;}
.y8b{bottom:119.653333pt;}
.y83{bottom:121.253333pt;}
.y102{bottom:121.280000pt;}
.yee{bottom:124.032000pt;}
.y8c{bottom:124.346667pt;}
.y79{bottom:124.832000pt;}
.yd0{bottom:126.912000pt;}
.yf1{bottom:127.493333pt;}
.yf9{bottom:127.773333pt;}
.ya7{bottom:130.080000pt;}
.y32{bottom:130.432000pt;}
.y5b{bottom:132.672000pt;}
.y94{bottom:137.186667pt;}
.y84{bottom:140.573333pt;}
.y12f{bottom:141.626667pt;}
.yfd{bottom:142.466667pt;}
.ycf{bottom:142.906667pt;}
.y31{bottom:146.426667pt;}
.y9e{bottom:146.880000pt;}
.yed{bottom:148.026667pt;}
.y5a{bottom:148.666667pt;}
.y78{bottom:148.826667pt;}
.ya8{bottom:152.293333pt;}
.y103{bottom:154.746667pt;}
.y95{bottom:156.066667pt;}
.y8f{bottom:156.453333pt;}
.y12e{bottom:157.626667pt;}
.yce{bottom:158.906667pt;}
.y85{bottom:159.906667pt;}
.y8e{bottom:161.186667pt;}
.y8d{bottom:162.146667pt;}
.y30{bottom:162.426667pt;}
.yec{bottom:164.026667pt;}
.y59{bottom:164.666667pt;}
.y77{bottom:172.826667pt;}
.y12d{bottom:173.626667pt;}
.ycd{bottom:174.906667pt;}
.y96{bottom:174.973333pt;}
.y2f{bottom:178.426667pt;}
.y86{bottom:179.226667pt;}
.y9d{bottom:179.360000pt;}
.yeb{bottom:180.026667pt;}
.y7c{bottom:185.786667pt;}
.y104{bottom:188.226667pt;}
.y12c{bottom:189.626667pt;}
.ycc{bottom:190.906667pt;}
.y2e{bottom:194.426667pt;}
.y58{bottom:195.706667pt;}
.y76{bottom:196.826667pt;}
.y87{bottom:198.560000pt;}
.yea{bottom:204.026667pt;}
.ycb{bottom:206.906667pt;}
.y2d{bottom:210.426667pt;}
.yf4{bottom:210.946667pt;}
.y12b{bottom:213.626667pt;}
.ye9{bottom:220.026667pt;}
.y75{bottom:220.826667pt;}
.y105{bottom:221.693333pt;}
.yca{bottom:222.906667pt;}
.yf8{bottom:225.626667pt;}
.y57{bottom:226.586667pt;}
.y12a{bottom:229.626667pt;}
.y2c{bottom:234.426667pt;}
.yfc{bottom:238.240000pt;}
.y56{bottom:242.586667pt;}
.y74{bottom:244.826667pt;}
.ye8{bottom:245.946667pt;}
.yc9{bottom:246.906667pt;}
.y2b{bottom:250.426667pt;}
.y129{bottom:253.626667pt;}
.y106{bottom:255.173333pt;}
.y55{bottom:258.586667pt;}
.yc7{bottom:260.346667pt;}
.y2a{bottom:266.426667pt;}
.y73{bottom:268.826667pt;}
.y128{bottom:269.626667pt;}
.ye7{bottom:269.946667pt;}
.y54{bottom:274.586667pt;}
.y29{bottom:282.426667pt;}
.ye6{bottom:285.946667pt;}
.y53{bottom:290.586667pt;}
.y72{bottom:292.826667pt;}
.y127{bottom:293.626667pt;}
.y28{bottom:298.426667pt;}
.ye5{bottom:301.986667pt;}
.y52{bottom:306.626667pt;}
.yc6{bottom:309.186667pt;}
.y126{bottom:309.666667pt;}
.y27{bottom:314.466667pt;}
.y71{bottom:316.866667pt;}
.ye4{bottom:317.986667pt;}
.y26{bottom:330.466667pt;}
.yc5{bottom:333.186667pt;}
.y125{bottom:333.666667pt;}
.y51{bottom:337.826667pt;}
.y70{bottom:340.866667pt;}
.y25{bottom:346.466667pt;}
.ye3{bottom:349.186667pt;}
.y124{bottom:349.666667pt;}
.yc4{bottom:357.186667pt;}
.y24{bottom:362.466667pt;}
.y6f{bottom:364.866667pt;}
.y50{bottom:368.706667pt;}
.y123{bottom:373.666667pt;}
.y23{bottom:378.466667pt;}
.yc3{bottom:381.186667pt;}
.ye2{bottom:384.386667pt;}
.y8a{bottom:387.360000pt;}
.y6e{bottom:388.866667pt;}
.y122{bottom:389.666667pt;}
.y4f{bottom:392.706667pt;}
.ye1{bottom:400.386667pt;}
.y22{bottom:402.466667pt;}
.yc2{bottom:405.186667pt;}
.y6d{bottom:412.866667pt;}
.y121{bottom:413.666667pt;}
.ye0{bottom:416.386667pt;}
.y4e{bottom:416.706667pt;}
.y21{bottom:418.466667pt;}
.y120{bottom:429.666667pt;}
.yc1{bottom:429.826667pt;}
.ydf{bottom:432.386667pt;}
.y20{bottom:434.466667pt;}
.y6c{bottom:436.866667pt;}
.y4d{bottom:440.706667pt;}
.y11f{bottom:445.666667pt;}
.yde{bottom:448.386667pt;}
.y1f{bottom:450.466667pt;}
.yc0{bottom:454.466667pt;}
.y4c{bottom:456.706667pt;}
.y6b{bottom:460.866667pt;}
.ydd{bottom:464.386667pt;}
.y1e{bottom:466.466667pt;}
.y11e{bottom:469.666667pt;}
.y1d{bottom:482.466667pt;}
.y6a{bottom:484.866667pt;}
.y11d{bottom:485.666667pt;}
.y4b{bottom:487.746667pt;}
.ydc{bottom:488.386667pt;}
.ybf{bottom:490.306667pt;}
.y1c{bottom:498.466667pt;}
.y69{bottom:508.866667pt;}
.ydb{bottom:509.026667pt;}
.yf0{bottom:509.600000pt;}
.y11c{bottom:509.666667pt;}
.ybe{bottom:514.306667pt;}
.y1b{bottom:514.466667pt;}
.y4a{bottom:518.626667pt;}
.y11b{bottom:525.666667pt;}
.ybd{bottom:530.306667pt;}
.y68{bottom:532.866667pt;}
.y49{bottom:542.653333pt;}
.y1a{bottom:545.693333pt;}
.ybc{bottom:546.333333pt;}
.y11a{bottom:549.693333pt;}
.y67{bottom:556.893333pt;}
.ybb{bottom:562.333333pt;}
.y119{bottom:565.693333pt;}
.y48{bottom:566.653333pt;}
.yba{bottom:578.333333pt;}
.y19{bottom:580.893333pt;}
.y118{bottom:581.693333pt;}
.y47{bottom:590.653333pt;}
.yb9{bottom:602.333333pt;}
.y66{bottom:604.893333pt;}
.y117{bottom:605.693333pt;}
.y18{bottom:606.813333pt;}
.y46{bottom:614.653333pt;}
.yb8{bottom:615.773333pt;}
.y116{bottom:621.693333pt;}
.y17{bottom:622.813333pt;}
.y65{bottom:625.693333pt;}
.y7b{bottom:625.760000pt;}
.y115{bottom:637.693333pt;}
.y45{bottom:638.653333pt;}
.y16{bottom:638.813333pt;}
.yb7{bottom:640.413333pt;}
.y15{bottom:654.813333pt;}
.y114{bottom:661.693333pt;}
.y44{bottom:662.653333pt;}
.yb6{bottom:664.413333pt;}
.y14{bottom:670.813333pt;}
.y113{bottom:677.693333pt;}
.y43{bottom:686.653333pt;}
.y13{bottom:686.813333pt;}
.yb5{bottom:688.413333pt;}
.y112{bottom:701.693333pt;}
.y12{bottom:702.813333pt;}
.y42{bottom:710.653333pt;}
.yb4{bottom:712.413333pt;}
.y111{bottom:717.693333pt;}
.y11{bottom:718.813333pt;}
.y41{bottom:734.653333pt;}
.y10{bottom:734.813333pt;}
.yb3{bottom:736.413333pt;}
.y110{bottom:741.693333pt;}
.y10f{bottom:757.693333pt;}
.yb2{bottom:761.213333pt;}
.y40{bottom:765.853333pt;}
.yf{bottom:766.013333pt;}
.y10e{bottom:781.733333pt;}
.yb0{bottom:785.893333pt;}
.yda{bottom:794.373333pt;}
.ye{bottom:796.773333pt;}
.y10d{bottom:797.733333pt;}
.yd9{bottom:807.813333pt;}
.y3f{bottom:812.773333pt;}
.yd{bottom:815.973333pt;}
.yaf{bottom:821.733333pt;}
.y3e{bottom:828.773333pt;}
.yd8{bottom:832.453333pt;}
.y10c{bottom:837.733333pt;}
.yc{bottom:840.293333pt;}
.yae{bottom:845.733333pt;}
.y64{bottom:851.333333pt;}
.y10b{bottom:853.733333pt;}
.yd7{bottom:856.453333pt;}
.y3d{bottom:859.813333pt;}
.yad{bottom:861.733333pt;}
.y63{bottom:867.333333pt;}
.yac{bottom:877.733333pt;}
.yd6{bottom:880.453333pt;}
.yb{bottom:884.773333pt;}
.y3c{bottom:890.533333pt;}
.yab{bottom:893.733333pt;}
.y62{bottom:898.533333pt;}
.y10a{bottom:901.733333pt;}
.yd5{bottom:904.453333pt;}
.yaa{bottom:909.733333pt;}
.ya{bottom:914.213333pt;}
.y109{bottom:917.733333pt;}
.y3b{bottom:925.733333pt;}
.yd4{bottom:928.453333pt;}
.y61{bottom:933.733333pt;}
.y8{bottom:939.173333pt;}
.y3a{bottom:941.733333pt;}
.y60{bottom:949.733333pt;}
.y3{bottom:951.333333pt;}
.yd3{bottom:953.253333pt;}
.y39{bottom:957.733333pt;}
.y5f{bottom:965.733333pt;}
.y38{bottom:973.733333pt;}
.yd2{bottom:977.893333pt;}
.y5e{bottom:981.733333pt;}
.y37{bottom:997.733333pt;}
.y36{bottom:1013.760000pt;}
.y35{bottom:1049.920000pt;}
.y1{bottom:1054.240000pt;}
.y34{bottom:1064.480000pt;}
.h5{height:2.512500pt;}
.h2{height:20.320000pt;}
.h1e{height:24.000000pt;}
.h1f{height:24.032000pt;}
.hd{height:26.368125pt;}
.h9{height:26.381250pt;}
.ha{height:39.552188pt;}
.hf{height:39.571875pt;}
.he{height:40.635000pt;}
.h3{height:42.084375pt;}
.h20{height:42.381250pt;}
.h11{height:43.215000pt;}
.h13{height:44.073883pt;}
.h12{height:44.574687pt;}
.h15{height:47.109375pt;}
.h1d{height:47.235000pt;}
.h19{height:47.742188pt;}
.h1a{height:47.869500pt;}
.h7{height:47.882812pt;}
.h21{height:48.032000pt;}
.h10{height:50.955000pt;}
.hc{height:63.183438pt;}
.h16{height:70.309375pt;}
.h8{height:74.477812pt;}
.hb{height:85.785000pt;}
.h6{height:87.156562pt;}
.h1b{height:89.342187pt;}
.h17{height:102.256042pt;}
.h4{height:102.592000pt;}
.h1c{height:173.600000pt;}
.h18{height:205.760000pt;}
.h14{height:214.400000pt;}
.h22{height:273.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:63.360000pt;}
.we{width:64.320000pt;}
.w15{width:75.360000pt;}
.w14{width:77.952000pt;}
.wd{width:80.320000pt;}
.w13{width:92.480000pt;}
.w3{width:94.432000pt;}
.w10{width:96.480000pt;}
.w18{width:96.960000pt;}
.w19{width:97.152000pt;}
.w17{width:97.312000pt;}
.w12{width:97.472000pt;}
.wb{width:108.032000pt;}
.wa{width:108.160000pt;}
.wc{width:108.352000pt;}
.w16{width:114.880000pt;}
.w11{width:127.392000pt;}
.w8{width:320.800000pt;}
.w6{width:363.840000pt;}
.w1b{width:460.480000pt;}
.w7{width:479.040000pt;}
.wf{width:567.133333pt;}
.w4{width:572.733333pt;}
.w9{width:577.213333pt;}
.w2{width:667.173333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:2.146667pt;}
.x3{left:7.232000pt;}
.x1f{left:8.226667pt;}
.x12{left:13.093333pt;}
.x1e{left:14.306667pt;}
.x11{left:19.106667pt;}
.x36{left:24.733333pt;}
.x5{left:28.640000pt;}
.x35{left:30.746667pt;}
.x50{left:34.533333pt;}
.x51{left:37.946667pt;}
.x21{left:43.426667pt;}
.x14{left:46.746667pt;}
.x18{left:60.026667pt;}
.x22{left:64.346667pt;}
.x13{left:71.066667pt;}
.x1{left:72.000000pt;}
.x32{left:78.853333pt;}
.x1b{left:84.253333pt;}
.x7{left:90.920000pt;}
.xa{left:96.031988pt;}
.x2{left:105.946667pt;}
.x37{left:107.552000pt;}
.x40{left:116.992000pt;}
.x23{left:125.440000pt;}
.x48{left:127.773333pt;}
.x4a{left:133.786667pt;}
.x33{left:144.826667pt;}
.x8{left:146.906655pt;}
.x17{left:156.480000pt;}
.x4{left:166.426667pt;}
.x30{left:195.906667pt;}
.x3c{left:204.026667pt;}
.x15{left:207.840000pt;}
.x26{left:209.666667pt;}
.x25{left:211.706667pt;}
.xf{left:214.880000pt;}
.x24{left:221.666667pt;}
.x10{left:226.106667pt;}
.x19{left:230.053333pt;}
.x41{left:231.866667pt;}
.x4e{left:234.720000pt;}
.x31{left:236.320000pt;}
.x4b{left:237.346667pt;}
.x1c{left:254.240000pt;}
.x47{left:264.386655pt;}
.x34{left:279.906667pt;}
.x16{left:283.386667pt;}
.x6{left:286.306667pt;}
.xd{left:287.746655pt;}
.x27{left:306.653333pt;}
.xc{left:309.026655pt;}
.x29{left:312.453333pt;}
.x1a{left:315.040000pt;}
.x28{left:318.880000pt;}
.x2a{left:321.506667pt;}
.x38{left:323.746667pt;}
.x42{left:329.186667pt;}
.xe{left:331.746655pt;}
.x4f{left:337.213333pt;}
.x4c{left:338.306667pt;}
.x1d{left:339.266667pt;}
.x2f{left:379.013333pt;}
.x2d{left:380.413333pt;}
.x2c{left:386.493333pt;}
.x2b{left:390.306667pt;}
.x2e{left:399.360000pt;}
.x43{left:426.653333pt;}
.x3d{left:428.893333pt;}
.x4d{left:430.173333pt;}
.x39{left:432.093333pt;}
.x49{left:435.866667pt;}
.x3a{left:512.413333pt;}
.x3e{left:521.373333pt;}
.x44{left:523.613333pt;}
.x3b{left:576.733333pt;}
.xb{left:578.813322pt;}
.x3f{left:599.333333pt;}
.x45{left:620.773333pt;}
.x46{left:627.173322pt;}
.x9{left:721.893322pt;}
}




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