
    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_739e66aabc6966aea0ccb2a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_c3b52cd685b688c5dd64ca4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_8115d6ab4d7d90e8a82f9290.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_21011daebeaeba952e960cd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_ff41cb1baef3cad7962687da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_3480d18a2ebc432f509785c3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1cef72263a9a0832c9daa871.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_0db06b5678352b2998faf0d9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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:ffc;src:url('chunks/assets/font_334dffc3eff80f297e7b1d78.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0401a9e920cae29f3233aaec.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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:ffe;src:url('chunks/assets/font_c745753f71c63de39e95127d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v2{vertical-align:21.600000px;}
.v4{vertical-align:25.920000px;}
.v3{vertical-align:47.520000px;}
.v1{vertical-align:54.720000px;}
.lsa{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.423600px;}
.ls4{letter-spacing:-0.382800px;}
.ls7{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.504000px;}
.ls2{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.984960px;}
.lsf{letter-spacing:1.656000px;}
.lsc{letter-spacing:3.938400px;}
.ls11{letter-spacing:6.480000px;}
.ls15{letter-spacing:12.240000px;}
.ls10{letter-spacing:24.098400px;}
.ls13{letter-spacing:30.396000px;}
.ls8{letter-spacing:33.276000px;}
.lsb{letter-spacing:63.838560px;}
.ls1{letter-spacing:193.692000px;}
.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;}
}
.wsc{word-spacing:-72.432000px;}
.ws8{word-spacing:-60.480000px;}
.wsa{word-spacing:-57.168000px;}
.wsb{word-spacing:-52.344000px;}
.ws9{word-spacing:-51.288000px;}
.wsf{word-spacing:-18.504000px;}
.wsd{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.wse{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.496000px;}
.ws2{word-spacing:-16.560000px;}
.ws7{word-spacing:-13.244880px;}
.ws1{word-spacing:-11.983920px;}
.ws0{word-spacing:-10.739520px;}
.ws6{word-spacing:0.000000px;}
._c{margin-left:-4.512480px;}
._5{margin-left:-3.456000px;}
._0{margin-left:-2.056320px;}
._2{margin-left:-1.028160px;}
._1{width:1.209600px;}
._3{width:2.246400px;}
._4{width:3.397920px;}
._6{width:4.478880px;}
._1a{width:5.772000px;}
._16{width:7.632000px;}
._13{width:8.712000px;}
._12{width:9.976320px;}
._11{width:11.100000px;}
._14{width:12.960000px;}
._15{width:14.166720px;}
._1b{width:15.517440px;}
._19{width:16.928640px;}
._9{width:19.800000px;}
._b{width:21.286080px;}
._a{width:22.590720px;}
._d{width:23.849280px;}
._10{width:25.683840px;}
._f{width:27.288000px;}
._e{width:28.350720px;}
._24{width:29.502720px;}
._7{width:30.600000px;}
._8{width:31.668480px;}
._23{width:32.927040px;}
._1e{width:34.439040px;}
._17{width:36.288000px;}
._18{width:37.768320px;}
._20{width:39.352320px;}
._1f{width:40.504320px;}
._1c{width:43.128000px;}
._1d{width:44.464320px;}
._2b{width:45.918720px;}
._2a{width:47.160000px;}
._22{width:50.904000px;}
._2c{width:54.864000px;}
._2d{width:56.070720px;}
._25{width:66.888000px;}
._28{width:85.824000px;}
._27{width:95.454720px;}
._29{width:123.192000px;}
._26{width:141.984000px;}
._21{width:147.816000px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,3,34);}
.fs4{font-size:47.520000px;}
.fs6{font-size:50.400000px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.240000px;}
.y2b{bottom:3.600000px;}
.yb8{bottom:14.040000px;}
.ybd{bottom:14.070000px;}
.yce{bottom:14.085000px;}
.ybb{bottom:14.400000px;}
.yb6{bottom:14.445000px;}
.ya{bottom:17.316000px;}
.y8{bottom:17.676000px;}
.ye1{bottom:26.280000px;}
.yed{bottom:29.520000px;}
.ye3{bottom:29.550000px;}
.ye9{bottom:29.565000px;}
.ye7{bottom:29.880000px;}
.yb{bottom:30.600000px;}
.y7{bottom:32.436000px;}
.yec{bottom:45.000000px;}
.yea{bottom:45.045000px;}
.ye6{bottom:45.360000px;}
.ye4{bottom:45.390000px;}
.y6{bottom:57.240000px;}
.y2a{bottom:91.476000px;}
.y5{bottom:118.836000px;}
.yd0{bottom:147.276000px;}
.yeb{bottom:153.390000px;}
.y68{bottom:156.270000px;}
.y117{bottom:158.790000px;}
.y70{bottom:163.470000px;}
.ycf{bottom:164.910000px;}
.yff{bottom:169.590000px;}
.yb4{bottom:170.670000px;}
.ye8{bottom:171.030000px;}
.y9d{bottom:172.470000px;}
.y49{bottom:177.870000px;}
.y67{bottom:187.590000px;}
.y116{bottom:190.110000px;}
.y6f{bottom:194.430000px;}
.ycd{bottom:196.950000px;}
.y28{bottom:198.795000px;}
.yfe{bottom:200.595000px;}
.yb3{bottom:201.675000px;}
.y9c{bottom:203.835000px;}
.y48{bottom:208.875000px;}
.y82{bottom:214.635000px;}
.y66{bottom:218.595000px;}
.y115{bottom:221.115000px;}
.y6e{bottom:225.435000px;}
.ycc{bottom:228.675000px;}
.y27{bottom:229.755000px;}
.yfd{bottom:231.555000px;}
.yb2{bottom:232.635000px;}
.ye5{bottom:233.715000px;}
.y9b{bottom:234.795000px;}
.y47{bottom:240.195000px;}
.y81{bottom:245.595000px;}
.y65{bottom:249.555000px;}
.y114{bottom:252.075000px;}
.y6d{bottom:256.755000px;}
.ycb{bottom:260.355000px;}
.y26{bottom:260.715000px;}
.yfc{bottom:262.515000px;}
.yb1{bottom:263.595000px;}
.y46{bottom:271.155000px;}
.y80{bottom:276.915000px;}
.y9a{bottom:277.635000px;}
.y64{bottom:280.515000px;}
.y113{bottom:283.035000px;}
.y6c{bottom:287.715000px;}
.y25{bottom:291.675000px;}
.yca{bottom:292.395000px;}
.yfb{bottom:293.475000px;}
.yb0{bottom:294.915000px;}
.ye2{bottom:296.715000px;}
.y45{bottom:302.115000px;}
.y99{bottom:308.955000px;}
.y63{bottom:311.835000px;}
.y112{bottom:314.355000px;}
.y6b{bottom:318.675000px;}
.y7f{bottom:319.755000px;}
.y24{bottom:322.995000px;}
.yaf{bottom:325.905000px;}
.yfa{bottom:336.705000px;}
.yc9{bottom:338.145000px;}
.y44{bottom:342.105000px;}
.y62{bottom:342.825000px;}
.y111{bottom:345.345000px;}
.y129{bottom:349.665000px;}
.y7e{bottom:351.105000px;}
.y98{bottom:351.825000px;}
.yae{bottom:356.865000px;}
.ye0{bottom:359.745000px;}
.y6a{bottom:361.905000px;}
.yf9{bottom:367.665000px;}
.yc8{bottom:369.465000px;}
.y61{bottom:373.785000px;}
.y23{bottom:374.865000px;}
.y110{bottom:376.305000px;}
.y128{bottom:380.985000px;}
.yad{bottom:387.825000px;}
.y69{bottom:392.865000px;}
.y43{bottom:393.945000px;}
.y97{bottom:395.025000px;}
.yf8{bottom:398.985000px;}
.yc7{bottom:400.425000px;}
.y60{bottom:404.745000px;}
.y22{bottom:405.825000px;}
.y10f{bottom:407.265000px;}
.ydf{bottom:415.905000px;}
.yac{bottom:418.785000px;}
.y127{bottom:423.825000px;}
.y42{bottom:424.905000px;}
.y96{bottom:425.985000px;}
.yf7{bottom:429.945000px;}
.yc6{bottom:431.385000px;}
.y5f{bottom:436.065000px;}
.y21{bottom:437.145000px;}
.y10e{bottom:438.585000px;}
.yab{bottom:450.150000px;}
.y126{bottom:454.830000px;}
.y41{bottom:455.910000px;}
.y95{bottom:456.990000px;}
.yf6{bottom:460.950000px;}
.yde{bottom:461.670000px;}
.yc5{bottom:462.390000px;}
.y5e{bottom:467.070000px;}
.y20{bottom:468.150000px;}
.y10d{bottom:469.590000px;}
.yaa{bottom:481.110000px;}
.y125{bottom:486.150000px;}
.y40{bottom:487.230000px;}
.y94{bottom:488.310000px;}
.yf5{bottom:491.910000px;}
.ydd{bottom:492.630000px;}
.yc4{bottom:493.710000px;}
.y5d{bottom:498.030000px;}
.y1f{bottom:499.110000px;}
.y10c{bottom:500.550000px;}
.ya9{bottom:512.070000px;}
.y124{bottom:517.110000px;}
.y3f{bottom:518.190000px;}
.y93{bottom:519.270000px;}
.yf4{bottom:523.230000px;}
.ydc{bottom:523.950000px;}
.yc3{bottom:524.670000px;}
.y5c{bottom:528.990000px;}
.y1e{bottom:530.070000px;}
.y10b{bottom:531.510000px;}
.ya8{bottom:543.030000px;}
.y123{bottom:548.070000px;}
.y3e{bottom:549.150000px;}
.y92{bottom:550.230000px;}
.yf3{bottom:554.190000px;}
.ydb{bottom:554.910000px;}
.yc2{bottom:555.630000px;}
.y5b{bottom:560.310000px;}
.y1d{bottom:561.390000px;}
.y10a{bottom:562.830000px;}
.ya7{bottom:574.350000px;}
.y122{bottom:579.060000px;}
.y3d{bottom:580.140000px;}
.y91{bottom:581.220000px;}
.yf2{bottom:585.180000px;}
.yda{bottom:585.900000px;}
.yc1{bottom:586.620000px;}
.y5a{bottom:591.300000px;}
.y1c{bottom:592.380000px;}
.y109{bottom:593.820000px;}
.y12c{bottom:599.220000px;}
.ya6{bottom:605.340000px;}
.y121{bottom:610.380000px;}
.y3c{bottom:611.460000px;}
.y90{bottom:612.540000px;}
.yf1{bottom:616.140000px;}
.yd9{bottom:616.860000px;}
.yc0{bottom:617.940000px;}
.y59{bottom:622.260000px;}
.y1b{bottom:623.340000px;}
.y12b{bottom:630.540000px;}
.y7d{bottom:635.220000px;}
.ya5{bottom:636.300000px;}
.y120{bottom:641.340000px;}
.y3b{bottom:642.420000px;}
.y8f{bottom:643.500000px;}
.yf0{bottom:647.820000px;}
.yd8{bottom:648.180000px;}
.ybf{bottom:648.900000px;}
.y58{bottom:653.220000px;}
.y1a{bottom:654.300000px;}
.ya4{bottom:667.260000px;}
.y11f{bottom:672.300000px;}
.y3a{bottom:673.380000px;}
.y8e{bottom:674.460000px;}
.y7c{bottom:678.420000px;}
.yd7{bottom:679.140000px;}
.ybe{bottom:679.860000px;}
.y12a{bottom:682.380000px;}
.y57{bottom:684.540000px;}
.y19{bottom:685.620000px;}
.yef{bottom:696.780000px;}
.ybc{bottom:697.500000px;}
.ya3{bottom:698.580000px;}
.y11e{bottom:703.290000px;}
.y39{bottom:704.370000px;}
.y108{bottom:706.170000px;}
.yd6{bottom:710.130000px;}
.y56{bottom:715.530000px;}
.y8d{bottom:717.690000px;}
.y18{bottom:719.130000px;}
.y7b{bottom:721.650000px;}
.yd5{bottom:727.770000px;}
.yee{bottom:728.490000px;}
.yba{bottom:729.210000px;}
.ya2{bottom:729.570000px;}
.y11d{bottom:734.610000px;}
.y38{bottom:735.690000px;}
.y55{bottom:746.490000px;}
.y8c{bottom:748.650000px;}
.y17{bottom:750.090000px;}
.y7a{bottom:752.610000px;}
.yd4{bottom:759.810000px;}
.ya1{bottom:760.530000px;}
.yb9{bottom:761.250000px;}
.y11c{bottom:765.570000px;}
.y37{bottom:766.650000px;}
.y107{bottom:768.810000px;}
.y54{bottom:777.450000px;}
.y16{bottom:781.410000px;}
.y79{bottom:783.570000px;}
.y8b{bottom:791.490000px;}
.yb7{bottom:792.930000px;}
.y11b{bottom:796.530000px;}
.y36{bottom:797.610000px;}
.ya0{bottom:803.730000px;}
.y53{bottom:808.410000px;}
.y15{bottom:812.370000px;}
.y78{bottom:814.530000px;}
.yd3{bottom:823.170000px;}
.yb5{bottom:824.610000px;}
.y11a{bottom:827.535000px;}
.y35{bottom:828.615000px;}
.y106{bottom:831.855000px;}
.y8a{bottom:834.735000px;}
.y52{bottom:839.775000px;}
.y77{bottom:845.895000px;}
.y9f{bottom:846.615000px;}
.y14{bottom:852.375000px;}
.yd2{bottom:855.255000px;}
.y119{bottom:858.855000px;}
.y34{bottom:859.935000px;}
.y89{bottom:865.695000px;}
.y51{bottom:870.735000px;}
.y76{bottom:876.855000px;}
.y105{bottom:877.935000px;}
.y13{bottom:883.335000px;}
.yd1{bottom:886.935000px;}
.y9e{bottom:889.815000px;}
.y33{bottom:890.895000px;}
.y88{bottom:896.655000px;}
.y50{bottom:901.695000px;}
.y75{bottom:908.175000px;}
.y104{bottom:908.895000px;}
.y12{bottom:914.655000px;}
.y118{bottom:920.775000px;}
.y32{bottom:921.855000px;}
.y87{bottom:927.975000px;}
.y4f{bottom:932.655000px;}
.y74{bottom:939.855000px;}
.y11{bottom:945.615000px;}
.y103{bottom:951.735000px;}
.y31{bottom:952.845000px;}
.y86{bottom:958.965000px;}
.y4e{bottom:964.005000px;}
.y73{bottom:971.205000px;}
.y10{bottom:976.605000px;}
.y102{bottom:983.085000px;}
.y30{bottom:984.165000px;}
.y85{bottom:989.925000px;}
.y4d{bottom:994.965000px;}
.y72{bottom:1002.525000px;}
.y101{bottom:1014.045000px;}
.y71{bottom:1014.405000px;}
.yf{bottom:1016.205000px;}
.y4c{bottom:1025.925000px;}
.y84{bottom:1033.125000px;}
.y2f{bottom:1036.005000px;}
.y100{bottom:1045.005000px;}
.ye{bottom:1052.565000px;}
.y4b{bottom:1056.885000px;}
.y2e{bottom:1066.965000px;}
.y83{bottom:1075.965000px;}
.yd{bottom:1086.090000px;}
.y4a{bottom:1088.250000px;}
.yc{bottom:1115.970000px;}
.y2d{bottom:1119.210000px;}
.y4{bottom:1137.210000px;}
.y2c{bottom:1150.170000px;}
.y3{bottom:1156.290000px;}
.y2{bottom:1175.010000px;}
.y1{bottom:1193.010000px;}
.y29{bottom:1195.170000px;}
.hc{height:16.596000px;}
.h10{height:30.960000px;}
.h12{height:30.996000px;}
.h11{height:31.320000px;}
.hf{height:31.356000px;}
.h6{height:43.956000px;}
.h7{height:47.264766px;}
.h8{height:54.426094px;}
.h13{height:55.440000px;}
.h4{height:58.121719px;}
.h3{height:58.833281px;}
.h17{height:61.920000px;}
.hb{height:61.927031px;}
.h16{height:61.956000px;}
.h15{height:62.280000px;}
.h14{height:62.316000px;}
.ha{height:63.175781px;}
.h2{height:63.949219px;}
.h5{height:65.884219px;}
.h18{height:68.395781px;}
.h9{height:74.181094px;}
.he{height:108.199688px;}
.hd{height:115.399687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:39.636000px;}
.w14{width:73.836000px;}
.wb{width:94.752000px;}
.w17{width:105.516000px;}
.wc{width:126.756000px;}
.w10{width:145.872000px;}
.w19{width:148.392000px;}
.w11{width:153.390000px;}
.w15{width:158.835000px;}
.wd{width:169.275000px;}
.w8{width:201.315000px;}
.w9{width:211.755000px;}
.we{width:212.115000px;}
.w13{width:222.585000px;}
.w7{width:222.945000px;}
.w12{width:224.025000px;}
.w16{width:243.825000px;}
.wa{width:286.665000px;}
.wf{width:310.470000px;}
.w6{width:332.790000px;}
.w5{width:347.910000px;}
.w18{width:392.550000px;}
.w3{width:641.055000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x19{left:7.560000px;}
.xf{left:8.640000px;}
.x7{left:10.485000px;}
.x1f{left:32.400000px;}
.x25{left:42.876000px;}
.x1e{left:64.116000px;}
.xe{left:83.915987px;}
.x17{left:85.356000px;}
.x1{left:106.235987px;}
.x9{left:132.911987px;}
.x5{left:144.429000px;}
.x26{left:149.472000px;}
.x12{left:155.594987px;}
.x14{left:160.274987px;}
.x2{left:241.664987px;}
.x22{left:255.705000px;}
.xa{left:259.664987px;}
.xc{left:267.584987px;}
.xb{left:277.304987px;}
.x11{left:303.630000px;}
.x18{left:309.030000px;}
.x20{left:343.590000px;}
.x23{left:383.190000px;}
.x13{left:388.589987px;}
.x15{left:390.749987px;}
.x1b{left:393.990000px;}
.x16{left:424.979987px;}
.x4{left:433.259987px;}
.xd{left:446.579987px;}
.x10{left:454.140000px;}
.x24{left:457.740000px;}
.x1c{left:489.450000px;}
.x1a{left:511.050000px;}
.x8{left:543.449987px;}
.x1d{left:616.935000px;}
.x21{left:644.295000px;}
.x3{left:696.524987px;}
.x27{left:702.285000px;}
.x6{left:747.285000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.v4{vertical-align:23.040000pt;}
.v3{vertical-align:42.240000pt;}
.v1{vertical-align:48.640000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.376533pt;}
.ls4{letter-spacing:-0.340267pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.875520pt;}
.lsf{letter-spacing:1.472000pt;}
.lsc{letter-spacing:3.500800pt;}
.ls11{letter-spacing:5.760000pt;}
.ls15{letter-spacing:10.880000pt;}
.ls10{letter-spacing:21.420800pt;}
.ls13{letter-spacing:27.018667pt;}
.ls8{letter-spacing:29.578667pt;}
.lsb{letter-spacing:56.745387pt;}
.ls1{letter-spacing:172.170667pt;}
.wsc{word-spacing:-64.384000pt;}
.ws8{word-spacing:-53.760000pt;}
.wsa{word-spacing:-50.816000pt;}
.wsb{word-spacing:-46.528000pt;}
.ws9{word-spacing:-45.589333pt;}
.wsf{word-spacing:-16.448000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.552000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws7{word-spacing:-11.773227pt;}
.ws1{word-spacing:-10.652373pt;}
.ws0{word-spacing:-9.546240pt;}
.ws6{word-spacing:0.000000pt;}
._c{margin-left:-4.011093pt;}
._5{margin-left:-3.072000pt;}
._0{margin-left:-1.827840pt;}
._2{margin-left:-0.913920pt;}
._1{width:1.075200pt;}
._3{width:1.996800pt;}
._4{width:3.020373pt;}
._6{width:3.981227pt;}
._1a{width:5.130667pt;}
._16{width:6.784000pt;}
._13{width:7.744000pt;}
._12{width:8.867840pt;}
._11{width:9.866667pt;}
._14{width:11.520000pt;}
._15{width:12.592640pt;}
._1b{width:13.793280pt;}
._19{width:15.047680pt;}
._9{width:17.600000pt;}
._b{width:18.920960pt;}
._a{width:20.080640pt;}
._d{width:21.199360pt;}
._10{width:22.830080pt;}
._f{width:24.256000pt;}
._e{width:25.200640pt;}
._24{width:26.224640pt;}
._7{width:27.200000pt;}
._8{width:28.149760pt;}
._23{width:29.268480pt;}
._1e{width:30.612480pt;}
._17{width:32.256000pt;}
._18{width:33.571840pt;}
._20{width:34.979840pt;}
._1f{width:36.003840pt;}
._1c{width:38.336000pt;}
._1d{width:39.523840pt;}
._2b{width:40.816640pt;}
._2a{width:41.920000pt;}
._22{width:45.248000pt;}
._2c{width:48.768000pt;}
._2d{width:49.840640pt;}
._25{width:59.456000pt;}
._28{width:76.288000pt;}
._27{width:84.848640pt;}
._29{width:109.504000pt;}
._26{width:126.208000pt;}
._21{width:131.392000pt;}
.fs4{font-size:42.240000pt;}
.fs6{font-size:44.800000pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.880000pt;}
.y2b{bottom:3.200000pt;}
.yb8{bottom:12.480000pt;}
.ybd{bottom:12.506667pt;}
.yce{bottom:12.520000pt;}
.ybb{bottom:12.800000pt;}
.yb6{bottom:12.840000pt;}
.ya{bottom:15.392000pt;}
.y8{bottom:15.712000pt;}
.ye1{bottom:23.360000pt;}
.yed{bottom:26.240000pt;}
.ye3{bottom:26.266667pt;}
.ye9{bottom:26.280000pt;}
.ye7{bottom:26.560000pt;}
.yb{bottom:27.200000pt;}
.y7{bottom:28.832000pt;}
.yec{bottom:40.000000pt;}
.yea{bottom:40.040000pt;}
.ye6{bottom:40.320000pt;}
.ye4{bottom:40.346667pt;}
.y6{bottom:50.880000pt;}
.y2a{bottom:81.312000pt;}
.y5{bottom:105.632000pt;}
.yd0{bottom:130.912000pt;}
.yeb{bottom:136.346667pt;}
.y68{bottom:138.906667pt;}
.y117{bottom:141.146667pt;}
.y70{bottom:145.306667pt;}
.ycf{bottom:146.586667pt;}
.yff{bottom:150.746667pt;}
.yb4{bottom:151.706667pt;}
.ye8{bottom:152.026667pt;}
.y9d{bottom:153.306667pt;}
.y49{bottom:158.106667pt;}
.y67{bottom:166.746667pt;}
.y116{bottom:168.986667pt;}
.y6f{bottom:172.826667pt;}
.ycd{bottom:175.066667pt;}
.y28{bottom:176.706667pt;}
.yfe{bottom:178.306667pt;}
.yb3{bottom:179.266667pt;}
.y9c{bottom:181.186667pt;}
.y48{bottom:185.666667pt;}
.y82{bottom:190.786667pt;}
.y66{bottom:194.306667pt;}
.y115{bottom:196.546667pt;}
.y6e{bottom:200.386667pt;}
.ycc{bottom:203.266667pt;}
.y27{bottom:204.226667pt;}
.yfd{bottom:205.826667pt;}
.yb2{bottom:206.786667pt;}
.ye5{bottom:207.746667pt;}
.y9b{bottom:208.706667pt;}
.y47{bottom:213.506667pt;}
.y81{bottom:218.306667pt;}
.y65{bottom:221.826667pt;}
.y114{bottom:224.066667pt;}
.y6d{bottom:228.226667pt;}
.ycb{bottom:231.426667pt;}
.y26{bottom:231.746667pt;}
.yfc{bottom:233.346667pt;}
.yb1{bottom:234.306667pt;}
.y46{bottom:241.026667pt;}
.y80{bottom:246.146667pt;}
.y9a{bottom:246.786667pt;}
.y64{bottom:249.346667pt;}
.y113{bottom:251.586667pt;}
.y6c{bottom:255.746667pt;}
.y25{bottom:259.266667pt;}
.yca{bottom:259.906667pt;}
.yfb{bottom:260.866667pt;}
.yb0{bottom:262.146667pt;}
.ye2{bottom:263.746667pt;}
.y45{bottom:268.546667pt;}
.y99{bottom:274.626667pt;}
.y63{bottom:277.186667pt;}
.y112{bottom:279.426667pt;}
.y6b{bottom:283.266667pt;}
.y7f{bottom:284.226667pt;}
.y24{bottom:287.106667pt;}
.yaf{bottom:289.693333pt;}
.yfa{bottom:299.293333pt;}
.yc9{bottom:300.573333pt;}
.y44{bottom:304.093333pt;}
.y62{bottom:304.733333pt;}
.y111{bottom:306.973333pt;}
.y129{bottom:310.813333pt;}
.y7e{bottom:312.093333pt;}
.y98{bottom:312.733333pt;}
.yae{bottom:317.213333pt;}
.ye0{bottom:319.773333pt;}
.y6a{bottom:321.693333pt;}
.yf9{bottom:326.813333pt;}
.yc8{bottom:328.413333pt;}
.y61{bottom:332.253333pt;}
.y23{bottom:333.213333pt;}
.y110{bottom:334.493333pt;}
.y128{bottom:338.653333pt;}
.yad{bottom:344.733333pt;}
.y69{bottom:349.213333pt;}
.y43{bottom:350.173333pt;}
.y97{bottom:351.133333pt;}
.yf8{bottom:354.653333pt;}
.yc7{bottom:355.933333pt;}
.y60{bottom:359.773333pt;}
.y22{bottom:360.733333pt;}
.y10f{bottom:362.013333pt;}
.ydf{bottom:369.693333pt;}
.yac{bottom:372.253333pt;}
.y127{bottom:376.733333pt;}
.y42{bottom:377.693333pt;}
.y96{bottom:378.653333pt;}
.yf7{bottom:382.173333pt;}
.yc6{bottom:383.453333pt;}
.y5f{bottom:387.613333pt;}
.y21{bottom:388.573333pt;}
.y10e{bottom:389.853333pt;}
.yab{bottom:400.133333pt;}
.y126{bottom:404.293333pt;}
.y41{bottom:405.253333pt;}
.y95{bottom:406.213333pt;}
.yf6{bottom:409.733333pt;}
.yde{bottom:410.373333pt;}
.yc5{bottom:411.013333pt;}
.y5e{bottom:415.173333pt;}
.y20{bottom:416.133333pt;}
.y10d{bottom:417.413333pt;}
.yaa{bottom:427.653333pt;}
.y125{bottom:432.133333pt;}
.y40{bottom:433.093333pt;}
.y94{bottom:434.053333pt;}
.yf5{bottom:437.253333pt;}
.ydd{bottom:437.893333pt;}
.yc4{bottom:438.853333pt;}
.y5d{bottom:442.693333pt;}
.y1f{bottom:443.653333pt;}
.y10c{bottom:444.933333pt;}
.ya9{bottom:455.173333pt;}
.y124{bottom:459.653333pt;}
.y3f{bottom:460.613333pt;}
.y93{bottom:461.573333pt;}
.yf4{bottom:465.093333pt;}
.ydc{bottom:465.733333pt;}
.yc3{bottom:466.373333pt;}
.y5c{bottom:470.213333pt;}
.y1e{bottom:471.173333pt;}
.y10b{bottom:472.453333pt;}
.ya8{bottom:482.693333pt;}
.y123{bottom:487.173333pt;}
.y3e{bottom:488.133333pt;}
.y92{bottom:489.093333pt;}
.yf3{bottom:492.613333pt;}
.ydb{bottom:493.253333pt;}
.yc2{bottom:493.893333pt;}
.y5b{bottom:498.053333pt;}
.y1d{bottom:499.013333pt;}
.y10a{bottom:500.293333pt;}
.ya7{bottom:510.533333pt;}
.y122{bottom:514.720000pt;}
.y3d{bottom:515.680000pt;}
.y91{bottom:516.640000pt;}
.yf2{bottom:520.160000pt;}
.yda{bottom:520.800000pt;}
.yc1{bottom:521.440000pt;}
.y5a{bottom:525.600000pt;}
.y1c{bottom:526.560000pt;}
.y109{bottom:527.840000pt;}
.y12c{bottom:532.640000pt;}
.ya6{bottom:538.080000pt;}
.y121{bottom:542.560000pt;}
.y3c{bottom:543.520000pt;}
.y90{bottom:544.480000pt;}
.yf1{bottom:547.680000pt;}
.yd9{bottom:548.320000pt;}
.yc0{bottom:549.280000pt;}
.y59{bottom:553.120000pt;}
.y1b{bottom:554.080000pt;}
.y12b{bottom:560.480000pt;}
.y7d{bottom:564.640000pt;}
.ya5{bottom:565.600000pt;}
.y120{bottom:570.080000pt;}
.y3b{bottom:571.040000pt;}
.y8f{bottom:572.000000pt;}
.yf0{bottom:575.840000pt;}
.yd8{bottom:576.160000pt;}
.ybf{bottom:576.800000pt;}
.y58{bottom:580.640000pt;}
.y1a{bottom:581.600000pt;}
.ya4{bottom:593.120000pt;}
.y11f{bottom:597.600000pt;}
.y3a{bottom:598.560000pt;}
.y8e{bottom:599.520000pt;}
.y7c{bottom:603.040000pt;}
.yd7{bottom:603.680000pt;}
.ybe{bottom:604.320000pt;}
.y12a{bottom:606.560000pt;}
.y57{bottom:608.480000pt;}
.y19{bottom:609.440000pt;}
.yef{bottom:619.360000pt;}
.ybc{bottom:620.000000pt;}
.ya3{bottom:620.960000pt;}
.y11e{bottom:625.146667pt;}
.y39{bottom:626.106667pt;}
.y108{bottom:627.706667pt;}
.yd6{bottom:631.226667pt;}
.y56{bottom:636.026667pt;}
.y8d{bottom:637.946667pt;}
.y18{bottom:639.226667pt;}
.y7b{bottom:641.466667pt;}
.yd5{bottom:646.906667pt;}
.yee{bottom:647.546667pt;}
.yba{bottom:648.186667pt;}
.ya2{bottom:648.506667pt;}
.y11d{bottom:652.986667pt;}
.y38{bottom:653.946667pt;}
.y55{bottom:663.546667pt;}
.y8c{bottom:665.466667pt;}
.y17{bottom:666.746667pt;}
.y7a{bottom:668.986667pt;}
.yd4{bottom:675.386667pt;}
.ya1{bottom:676.026667pt;}
.yb9{bottom:676.666667pt;}
.y11c{bottom:680.506667pt;}
.y37{bottom:681.466667pt;}
.y107{bottom:683.386667pt;}
.y54{bottom:691.066667pt;}
.y16{bottom:694.586667pt;}
.y79{bottom:696.506667pt;}
.y8b{bottom:703.546667pt;}
.yb7{bottom:704.826667pt;}
.y11b{bottom:708.026667pt;}
.y36{bottom:708.986667pt;}
.ya0{bottom:714.426667pt;}
.y53{bottom:718.586667pt;}
.y15{bottom:722.106667pt;}
.y78{bottom:724.026667pt;}
.yd3{bottom:731.706667pt;}
.yb5{bottom:732.986667pt;}
.y11a{bottom:735.586667pt;}
.y35{bottom:736.546667pt;}
.y106{bottom:739.426667pt;}
.y8a{bottom:741.986667pt;}
.y52{bottom:746.466667pt;}
.y77{bottom:751.906667pt;}
.y9f{bottom:752.546667pt;}
.y14{bottom:757.666667pt;}
.yd2{bottom:760.226667pt;}
.y119{bottom:763.426667pt;}
.y34{bottom:764.386667pt;}
.y89{bottom:769.506667pt;}
.y51{bottom:773.986667pt;}
.y76{bottom:779.426667pt;}
.y105{bottom:780.386667pt;}
.y13{bottom:785.186667pt;}
.yd1{bottom:788.386667pt;}
.y9e{bottom:790.946667pt;}
.y33{bottom:791.906667pt;}
.y88{bottom:797.026667pt;}
.y50{bottom:801.506667pt;}
.y75{bottom:807.266667pt;}
.y104{bottom:807.906667pt;}
.y12{bottom:813.026667pt;}
.y118{bottom:818.466667pt;}
.y32{bottom:819.426667pt;}
.y87{bottom:824.866667pt;}
.y4f{bottom:829.026667pt;}
.y74{bottom:835.426667pt;}
.y11{bottom:840.546667pt;}
.y103{bottom:845.986667pt;}
.y31{bottom:846.973333pt;}
.y86{bottom:852.413333pt;}
.y4e{bottom:856.893333pt;}
.y73{bottom:863.293333pt;}
.y10{bottom:868.093333pt;}
.y102{bottom:873.853333pt;}
.y30{bottom:874.813333pt;}
.y85{bottom:879.933333pt;}
.y4d{bottom:884.413333pt;}
.y72{bottom:891.133333pt;}
.y101{bottom:901.373333pt;}
.y71{bottom:901.693333pt;}
.yf{bottom:903.293333pt;}
.y4c{bottom:911.933333pt;}
.y84{bottom:918.333333pt;}
.y2f{bottom:920.893333pt;}
.y100{bottom:928.893333pt;}
.ye{bottom:935.613333pt;}
.y4b{bottom:939.453333pt;}
.y2e{bottom:948.413333pt;}
.y83{bottom:956.413333pt;}
.yd{bottom:965.413333pt;}
.y4a{bottom:967.333333pt;}
.yc{bottom:991.973333pt;}
.y2d{bottom:994.853333pt;}
.y4{bottom:1010.853333pt;}
.y2c{bottom:1022.373333pt;}
.y3{bottom:1027.813333pt;}
.y2{bottom:1044.453333pt;}
.y1{bottom:1060.453333pt;}
.y29{bottom:1062.373333pt;}
.hc{height:14.752000pt;}
.h10{height:27.520000pt;}
.h12{height:27.552000pt;}
.h11{height:27.840000pt;}
.hf{height:27.872000pt;}
.h6{height:39.072000pt;}
.h7{height:42.013125pt;}
.h8{height:48.378750pt;}
.h13{height:49.280000pt;}
.h4{height:51.663750pt;}
.h3{height:52.296250pt;}
.h17{height:55.040000pt;}
.hb{height:55.046250pt;}
.h16{height:55.072000pt;}
.h15{height:55.360000pt;}
.h14{height:55.392000pt;}
.ha{height:56.156250pt;}
.h2{height:56.843750pt;}
.h5{height:58.563750pt;}
.h18{height:60.796250pt;}
.h9{height:65.938750pt;}
.he{height:96.177500pt;}
.hd{height:102.577500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:35.232000pt;}
.w14{width:65.632000pt;}
.wb{width:84.224000pt;}
.w17{width:93.792000pt;}
.wc{width:112.672000pt;}
.w10{width:129.664000pt;}
.w19{width:131.904000pt;}
.w11{width:136.346667pt;}
.w15{width:141.186667pt;}
.wd{width:150.466667pt;}
.w8{width:178.946667pt;}
.w9{width:188.226667pt;}
.we{width:188.546667pt;}
.w13{width:197.853333pt;}
.w7{width:198.173333pt;}
.w12{width:199.133333pt;}
.w16{width:216.733333pt;}
.wa{width:254.813333pt;}
.wf{width:275.973333pt;}
.w6{width:295.813333pt;}
.w5{width:309.253333pt;}
.w18{width:348.933333pt;}
.w3{width:569.826667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x19{left:6.720000pt;}
.xf{left:7.680000pt;}
.x7{left:9.320000pt;}
.x1f{left:28.800000pt;}
.x25{left:38.112000pt;}
.x1e{left:56.992000pt;}
.xe{left:74.591988pt;}
.x17{left:75.872000pt;}
.x1{left:94.431988pt;}
.x9{left:118.143988pt;}
.x5{left:128.381333pt;}
.x26{left:132.864000pt;}
.x12{left:138.306655pt;}
.x14{left:142.466655pt;}
.x2{left:214.813322pt;}
.x22{left:227.293333pt;}
.xa{left:230.813322pt;}
.xc{left:237.853322pt;}
.xb{left:246.493322pt;}
.x11{left:269.893333pt;}
.x18{left:274.693333pt;}
.x20{left:305.413333pt;}
.x23{left:340.613333pt;}
.x13{left:345.413322pt;}
.x15{left:347.333322pt;}
.x1b{left:350.213333pt;}
.x16{left:377.759988pt;}
.x4{left:385.119988pt;}
.xd{left:396.959988pt;}
.x10{left:403.680000pt;}
.x24{left:406.880000pt;}
.x1c{left:435.066667pt;}
.x1a{left:454.266667pt;}
.x8{left:483.066655pt;}
.x1d{left:548.386667pt;}
.x21{left:572.706667pt;}
.x3{left:619.133322pt;}
.x27{left:624.253333pt;}
.x6{left:664.253333pt;}
}




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