
    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_d99550594f3d27d997f6bc9c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_90fdfa60c0ad2360a1d4e592.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_3ebb7c793f93b38b437b30b4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.912598;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_78c5bb47b605cb18b4731d3d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_3c1ecd4d3c2930d030c81f5e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_174e6189598b886105561bcd.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_01c049e05664a58e5f5c274c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.728027;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_c544cabe540811b4854c2ea6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740723;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_7b820505d2fe35d5947132c3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_47f0846fec310ff4bb0c085b.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6d53def737176aeed4848e67.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_90c271fd5b5896b16cd31a6d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.940000;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_6ca4b13344f4145df1f29341.woff')format("woff");}.ffd{font-family:ffd;line-height:0.947000;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_42ebac849abd02cc9036ffb5.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5d0606dce93e443ab9b508b5.woff')format("woff");}.fff{font-family:fff;line-height:0.690918;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:ff10;src:url('chunks/assets/font_505c97ada16c51b25b070f83.woff')format("woff");}.ff10{font-family:ff10;line-height:0.912598;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:ff11;src:url('chunks/assets/font_c742b9ea55e5287432e17dc2.woff')format("woff");}.ff11{font-family:ff11;line-height:0.893555;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:ff12;src:url('chunks/assets/font_89f933fe852f041c06701d1e.woff')format("woff");}.ff12{font-family:ff12;line-height:0.940000;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:ff13;src:url('chunks/assets/font_6ca4b13344f4145df1f29341.woff')format("woff");}.ff13{font-family:ff13;line-height:0.947000;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);}
.v2{vertical-align:-19.980000px;}
.v4{vertical-align:-16.368600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.712000px;}
.v1{vertical-align:23.976000px;}
.lsd{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-0.252000px;}
.ls9{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024600px;}
.lsb{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.600000px;}
.ls4{letter-spacing:1.800000px;}
.lse{letter-spacing:2.100000px;}
.ls6{letter-spacing:3.300000px;}
.ls3{letter-spacing:5.832000px;}
.ls5{letter-spacing:7.440000px;}
.ls2{letter-spacing:7.873200px;}
.ls8{letter-spacing:2072.664000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.000000px;}
.ws10{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.250000px;}
.ws6{word-spacing:-16.800000px;}
.ws21{word-spacing:-15.552000px;}
.ws5{word-spacing:-15.000000px;}
.ws11{word-spacing:-10.494000px;}
.ws12{word-spacing:-8.745000px;}
.ws41{word-spacing:-4.680000px;}
.ws36{word-spacing:-4.620000px;}
.ws23{word-spacing:-2.580000px;}
.ws17{word-spacing:-2.100000px;}
.ws22{word-spacing:-1.998000px;}
.wsf{word-spacing:-1.800000px;}
.ws1f{word-spacing:-1.080000px;}
.ws35{word-spacing:-0.660000px;}
.ws37{word-spacing:-0.600000px;}
.ws1d{word-spacing:-0.420000px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:0.120000px;}
.ws24{word-spacing:0.144000px;}
.ws25{word-spacing:0.432000px;}
.wsd{word-spacing:0.480000px;}
.ws3c{word-spacing:0.600000px;}
.ws9{word-spacing:0.720000px;}
.ws1a{word-spacing:0.780000px;}
.ws8{word-spacing:0.840000px;}
.ws3f{word-spacing:1.200000px;}
.ws30{word-spacing:1.260000px;}
.wse{word-spacing:2.220000px;}
.ws34{word-spacing:2.340000px;}
.ws7{word-spacing:3.213000px;}
.wsc{word-spacing:3.720000px;}
.ws28{word-spacing:3.900000px;}
.ws2a{word-spacing:3.960000px;}
.ws3b{word-spacing:4.020000px;}
.ws4{word-spacing:5.400000px;}
.wsb{word-spacing:6.180000px;}
.ws20{word-spacing:6.660000px;}
.ws2c{word-spacing:6.780000px;}
.ws31{word-spacing:6.960000px;}
.ws39{word-spacing:7.020000px;}
.ws32{word-spacing:7.200000px;}
.ws1c{word-spacing:7.380000px;}
.ws15{word-spacing:7.560000px;}
.ws3a{word-spacing:8.100000px;}
.ws2f{word-spacing:8.460000px;}
.ws2d{word-spacing:9.480000px;}
.ws16{word-spacing:9.960000px;}
.ws2b{word-spacing:10.260000px;}
.ws26{word-spacing:10.860000px;}
.ws40{word-spacing:11.220000px;}
.ws13{word-spacing:11.340000px;}
.ws14{word-spacing:11.940000px;}
.ws2e{word-spacing:12.360000px;}
.wsa{word-spacing:12.600000px;}
.ws3e{word-spacing:13.020000px;}
.ws19{word-spacing:14.280000px;}
.ws33{word-spacing:15.600000px;}
.ws1e{word-spacing:16.020000px;}
.ws18{word-spacing:16.260000px;}
.ws38{word-spacing:16.500000px;}
.ws1b{word-spacing:19.140000px;}
.ws27{word-spacing:19.620000px;}
.ws3d{word-spacing:23.760000px;}
._4{margin-left:-9.840000px;}
._0{margin-left:-7.920000px;}
._3{margin-left:-6.216000px;}
._2{margin-left:-4.620000px;}
._1b{margin-left:-3.600000px;}
._1{margin-left:-2.592000px;}
._5{margin-left:-1.404000px;}
._9{width:1.380000px;}
._6{width:3.150000px;}
._c{width:4.290000px;}
._b{width:5.547000px;}
._8{width:6.693000px;}
._d{width:7.866000px;}
._1e{width:8.940000px;}
._16{width:9.960000px;}
._7{width:11.403000px;}
._a{width:12.480000px;}
._13{width:13.740000px;}
._10{width:16.092000px;}
._e{width:17.340000px;}
._f{width:18.564000px;}
._18{width:19.716000px;}
._19{width:21.324000px;}
._11{width:23.340000px;}
._12{width:24.420000px;}
._23{width:25.740000px;}
._1f{width:26.760000px;}
._15{width:28.200000px;}
._14{width:29.640000px;}
._1c{width:31.560000px;}
._20{width:33.000000px;}
._21{width:34.812000px;}
._1d{width:36.300000px;}
._26{width:37.380000px;}
._25{width:39.360000px;}
._24{width:40.440000px;}
._17{width:41.700000px;}
._22{width:42.792000px;}
._1a{width:309.997800px;}
.fc2{color:rgb(64,0,64);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:34.980000px;}
.fsb{font-size:41.976000px;}
.fsd{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:69.000000px;}
.fsa{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.fs3{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:80.038350px;}
.yb1{bottom:96.238350px;}
.yb0{bottom:112.438350px;}
.y74{bottom:122.644350px;}
.yb3{bottom:126.889800px;}
.y103{bottom:127.008600px;}
.y62{bottom:127.051650px;}
.y48{bottom:127.061550px;}
.ycd{bottom:127.434300px;}
.yaf{bottom:128.638350px;}
.y12f{bottom:128.833200px;}
.yab{bottom:130.623300px;}
.y29{bottom:137.614800px;}
.y73{bottom:138.844350px;}
.y102{bottom:145.008600px;}
.y61{bottom:145.051650px;}
.y47{bottom:145.061550px;}
.ycc{bottom:145.434300px;}
.y12e{bottom:146.833200px;}
.yaa{bottom:148.623300px;}
.y101{bottom:163.008600px;}
.y46{bottom:163.061550px;}
.ycb{bottom:163.434300px;}
.y12d{bottom:164.833200px;}
.ya9{bottom:166.623300px;}
.y28{bottom:175.414800px;}
.y5{bottom:177.399150px;}
.y100{bottom:181.008600px;}
.y60{bottom:181.051650px;}
.y45{bottom:181.061550px;}
.yca{bottom:181.434300px;}
.ya8{bottom:184.623300px;}
.yff{bottom:199.008600px;}
.y5f{bottom:199.051650px;}
.y44{bottom:199.061550px;}
.yc9{bottom:199.434300px;}
.y12c{bottom:200.833200px;}
.ya7{bottom:202.623300px;}
.yfe{bottom:217.008600px;}
.y5e{bottom:217.051650px;}
.y43{bottom:217.061550px;}
.yc8{bottom:217.434300px;}
.y12b{bottom:218.833200px;}
.ya6{bottom:220.623300px;}
.yfd{bottom:235.008600px;}
.y5d{bottom:235.051650px;}
.y42{bottom:235.061550px;}
.yc7{bottom:235.434300px;}
.y27{bottom:235.466700px;}
.y12a{bottom:236.833200px;}
.ya5{bottom:238.623300px;}
.y5c{bottom:253.051650px;}
.y41{bottom:253.061550px;}
.yc6{bottom:253.434300px;}
.y26{bottom:253.466700px;}
.ya4{bottom:256.623300px;}
.yfc{bottom:271.008600px;}
.y40{bottom:271.061550px;}
.yc5{bottom:271.434300px;}
.y25{bottom:271.466700px;}
.y129{bottom:272.833200px;}
.ya3{bottom:274.623300px;}
.y5b{bottom:289.051650px;}
.y3f{bottom:289.061550px;}
.yc4{bottom:289.434300px;}
.y24{bottom:289.466700px;}
.y128{bottom:290.833200px;}
.ya2{bottom:292.623300px;}
.y4{bottom:299.165550px;}
.y5a{bottom:307.051650px;}
.y3e{bottom:307.061550px;}
.yc3{bottom:307.434300px;}
.yfb{bottom:310.608600px;}
.ya1{bottom:310.623300px;}
.y59{bottom:325.051650px;}
.y3d{bottom:325.061550px;}
.yc2{bottom:325.434300px;}
.y23{bottom:325.466700px;}
.y127{bottom:326.833200px;}
.yfa{bottom:328.608600px;}
.ya0{bottom:328.623300px;}
.y58{bottom:343.051650px;}
.y3c{bottom:343.061550px;}
.yc1{bottom:343.434300px;}
.y22{bottom:343.466700px;}
.y126{bottom:344.833200px;}
.yf9{bottom:346.608600px;}
.y9f{bottom:346.623300px;}
.y3b{bottom:361.061550px;}
.yc0{bottom:361.434300px;}
.y21{bottom:361.466700px;}
.y125{bottom:362.833200px;}
.y57{bottom:362.851650px;}
.yf8{bottom:364.608600px;}
.y9e{bottom:364.623300px;}
.y3{bottom:367.565550px;}
.y3a{bottom:379.061550px;}
.ybf{bottom:379.434300px;}
.y20{bottom:379.466700px;}
.y124{bottom:380.833200px;}
.yf7{bottom:382.608600px;}
.yad{bottom:382.623300px;}
.y56{bottom:382.651650px;}
.y39{bottom:397.061550px;}
.ybe{bottom:397.434300px;}
.y1f{bottom:397.466700px;}
.yf6{bottom:400.608600px;}
.y9d{bottom:400.623300px;}
.y55{bottom:402.451650px;}
.y2{bottom:410.765550px;}
.y38{bottom:415.061550px;}
.ybd{bottom:415.434300px;}
.y1e{bottom:415.466700px;}
.y123{bottom:416.833200px;}
.yf5{bottom:418.608600px;}
.y9c{bottom:418.623300px;}
.y37{bottom:433.061550px;}
.ybc{bottom:433.434300px;}
.y1d{bottom:433.466700px;}
.y122{bottom:434.833200px;}
.yf4{bottom:436.608600px;}
.y9b{bottom:436.623300px;}
.y54{bottom:437.251650px;}
.y36{bottom:451.061550px;}
.ybb{bottom:451.434300px;}
.y1c{bottom:451.466700px;}
.y121{bottom:452.833200px;}
.y1{bottom:453.965550px;}
.yf3{bottom:454.608600px;}
.y9a{bottom:454.623300px;}
.y53{bottom:455.251650px;}
.y35{bottom:469.061550px;}
.yba{bottom:469.434300px;}
.y1b{bottom:469.466700px;}
.yf2{bottom:472.608600px;}
.y99{bottom:472.623300px;}
.y52{bottom:473.251650px;}
.y34{bottom:487.061550px;}
.yb9{bottom:487.434300px;}
.y1a{bottom:487.466700px;}
.y120{bottom:488.833200px;}
.yf1{bottom:490.608600px;}
.y98{bottom:490.623300px;}
.y51{bottom:491.251650px;}
.y33{bottom:505.061550px;}
.yb8{bottom:505.434300px;}
.y19{bottom:505.466700px;}
.y11f{bottom:506.833200px;}
.yf0{bottom:508.608600px;}
.y97{bottom:508.623300px;}
.y50{bottom:509.251650px;}
.y32{bottom:523.061550px;}
.yb7{bottom:523.434300px;}
.y18{bottom:523.466700px;}
.y11e{bottom:524.833200px;}
.yef{bottom:526.608600px;}
.y96{bottom:526.623300px;}
.y4f{bottom:527.251650px;}
.y31{bottom:541.061550px;}
.yb6{bottom:541.434300px;}
.y11d{bottom:542.833200px;}
.yee{bottom:544.608600px;}
.y95{bottom:544.623300px;}
.y4e{bottom:545.251650px;}
.y30{bottom:559.061550px;}
.yb5{bottom:559.434300px;}
.yed{bottom:562.608600px;}
.y94{bottom:562.623300px;}
.y17{bottom:563.072700px;}
.y2f{bottom:577.061550px;}
.yb4{bottom:577.434300px;}
.y4d{bottom:578.251650px;}
.y11c{bottom:578.833200px;}
.yec{bottom:580.608600px;}
.y93{bottom:580.623300px;}
.y2e{bottom:595.061550px;}
.y11b{bottom:596.833200px;}
.y92{bottom:598.623300px;}
.yce{bottom:611.427000px;}
.y2d{bottom:613.061550px;}
.y11a{bottom:614.833200px;}
.y4c{bottom:614.846550px;}
.yeb{bottom:616.608600px;}
.y91{bottom:616.623300px;}
.y16{bottom:621.266700px;}
.y2c{bottom:631.061550px;}
.y119{bottom:632.833200px;}
.y4b{bottom:632.846550px;}
.yea{bottom:634.608600px;}
.y90{bottom:634.623300px;}
.y4a{bottom:650.846550px;}
.ye9{bottom:652.608600px;}
.y8f{bottom:652.623300px;}
.y15{bottom:663.566700px;}
.y2b{bottom:667.061550px;}
.y118{bottom:668.833200px;}
.y49{bottom:668.846550px;}
.ye8{bottom:670.608600px;}
.y8e{bottom:670.623300px;}
.y14{bottom:684.266700px;}
.y117{bottom:686.833200px;}
.ye7{bottom:688.608600px;}
.y8d{bottom:688.623300px;}
.y116{bottom:704.833200px;}
.y72{bottom:706.443450px;}
.ye6{bottom:706.608600px;}
.y8c{bottom:706.623300px;}
.y71{bottom:724.443450px;}
.ye5{bottom:724.608600px;}
.y8b{bottom:724.623300px;}
.y13{bottom:730.166700px;}
.y115{bottom:740.833200px;}
.y70{bottom:742.443450px;}
.ye4{bottom:742.608600px;}
.y8a{bottom:742.623300px;}
.y12{bottom:750.860700px;}
.y114{bottom:758.833200px;}
.y6f{bottom:760.443450px;}
.ye3{bottom:760.608600px;}
.y89{bottom:760.623300px;}
.y113{bottom:776.833200px;}
.y6e{bottom:778.443450px;}
.ye2{bottom:778.608600px;}
.y88{bottom:778.623300px;}
.y11{bottom:790.466700px;}
.ye1{bottom:796.608600px;}
.y87{bottom:796.623300px;}
.y6d{bottom:809.943450px;}
.y112{bottom:812.833200px;}
.ye0{bottom:814.608600px;}
.y86{bottom:814.623300px;}
.y10{bottom:825.566850px;}
.y111{bottom:830.833200px;}
.ydf{bottom:832.608600px;}
.y85{bottom:832.623300px;}
.yf{bottom:844.466850px;}
.y110{bottom:848.833200px;}
.yde{bottom:850.608600px;}
.y84{bottom:850.623300px;}
.y6c{bottom:853.143450px;}
.ye{bottom:863.366850px;}
.y10f{bottom:866.833200px;}
.ydd{bottom:868.608600px;}
.y83{bottom:868.623300px;}
.yd{bottom:882.266850px;}
.y10e{bottom:884.833200px;}
.ydc{bottom:886.608600px;}
.y82{bottom:886.623300px;}
.y6b{bottom:889.143450px;}
.yc{bottom:901.166850px;}
.ydb{bottom:904.608600px;}
.y81{bottom:904.623300px;}
.y6a{bottom:907.143450px;}
.yb{bottom:920.066850px;}
.y10d{bottom:920.833200px;}
.yda{bottom:922.608600px;}
.y80{bottom:922.623300px;}
.y69{bottom:930.138450px;}
.y10c{bottom:938.833200px;}
.yd9{bottom:940.608600px;}
.y7f{bottom:940.623300px;}
.y68{bottom:948.138450px;}
.y10b{bottom:956.833200px;}
.yd8{bottom:958.608600px;}
.y7e{bottom:958.623300px;}
.ya{bottom:958.766850px;}
.y67{bottom:961.143450px;}
.yd7{bottom:976.608600px;}
.y7d{bottom:976.623300px;}
.y9{bottom:979.466700px;}
.y66{bottom:984.138450px;}
.y10a{bottom:992.833200px;}
.yd6{bottom:994.608600px;}
.y7c{bottom:994.623300px;}
.y8{bottom:1004.666700px;}
.y109{bottom:1010.833200px;}
.yd5{bottom:1012.608600px;}
.y7b{bottom:1012.623300px;}
.y65{bottom:1016.943450px;}
.y108{bottom:1028.833200px;}
.yd4{bottom:1030.608600px;}
.y7a{bottom:1030.623300px;}
.y107{bottom:1046.833200px;}
.y7{bottom:1047.122700px;}
.yd3{bottom:1048.608600px;}
.y79{bottom:1048.623300px;}
.y106{bottom:1064.833200px;}
.yd2{bottom:1066.608600px;}
.y78{bottom:1066.623300px;}
.y64{bottom:1081.743450px;}
.y105{bottom:1082.833200px;}
.yd1{bottom:1084.608600px;}
.yac{bottom:1084.623300px;}
.y6{bottom:1099.778550px;}
.yd0{bottom:1102.608600px;}
.y77{bottom:1102.623300px;}
.y63{bottom:1114.143450px;}
.y104{bottom:1118.833200px;}
.ycf{bottom:1120.608600px;}
.y76{bottom:1120.623300px;}
.y2a{bottom:1162.528500px;}
.yae{bottom:1164.709500px;}
.y75{bottom:1166.620650px;}
.h1a{height:32.666484px;}
.h1b{height:41.660156px;}
.h12{height:41.806641px;}
.h10{height:43.681641px;}
.h11{height:44.730469px;}
.h16{height:45.987305px;}
.h1d{height:47.381836px;}
.h8{height:47.909180px;}
.h7{height:48.077637px;}
.h14{height:48.796875px;}
.ha{height:49.391602px;}
.h15{height:50.167969px;}
.h1e{height:50.616000px;}
.he{height:52.417969px;}
.h19{height:52.424578px;}
.hf{height:52.646484px;}
.h9{height:55.278809px;}
.h17{height:57.911133px;}
.h3{height:58.529297px;}
.h1f{height:58.800000px;}
.h13{height:59.052000px;}
.h1c{height:59.328000px;}
.hc{height:60.543457px;}
.hb{height:60.567457px;}
.hd{height:63.175781px;}
.h18{height:73.195312px;}
.h6{height:78.626953px;}
.h4{height:81.328125px;}
.h2{height:97.593750px;}
.h5{height:121.992188px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:62.716500px;}
.xa{left:63.779550px;}
.x1f{left:76.535400px;}
.xe{left:90.779550px;}
.xf{left:117.779550px;}
.x12{left:140.160450px;}
.x1d{left:143.716500px;}
.x11{left:144.779550px;}
.x2{left:153.509400px;}
.xd{left:157.201800px;}
.x9{left:182.925900px;}
.x4{left:199.269150px;}
.x7{left:214.583550px;}
.xc{left:222.853200px;}
.x1c{left:224.449950px;}
.x8{left:227.796000px;}
.x3{left:262.517400px;}
.x1{left:301.361400px;}
.x5{left:307.706700px;}
.x1b{left:313.000350px;}
.x10{left:336.910650px;}
.x6{left:341.416350px;}
.xb{left:373.127400px;}
.x13{left:459.224550px;}
.x19{left:463.483050px;}
.x14{left:486.212550px;}
.x17{left:515.147550px;}
.x1a{left:534.193050px;}
.x15{left:552.734550px;}
.x16{left:560.687550px;}
.x18{left:584.803050px;}
.x20{left:608.299950px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v4{vertical-align:-14.549867pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.744000pt;}
.v1{vertical-align:21.312000pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.224000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021867pt;}
.lsb{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.533333pt;}
.ls4{letter-spacing:1.600000pt;}
.lse{letter-spacing:1.866667pt;}
.ls6{letter-spacing:2.933333pt;}
.ls3{letter-spacing:5.184000pt;}
.ls5{letter-spacing:6.613333pt;}
.ls2{letter-spacing:6.998400pt;}
.ls8{letter-spacing:1842.368000pt;}
.ws2{word-spacing:-18.666667pt;}
.ws10{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.333333pt;}
.ws6{word-spacing:-14.933333pt;}
.ws21{word-spacing:-13.824000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws11{word-spacing:-9.328000pt;}
.ws12{word-spacing:-7.773333pt;}
.ws41{word-spacing:-4.160000pt;}
.ws36{word-spacing:-4.106667pt;}
.ws23{word-spacing:-2.293333pt;}
.ws17{word-spacing:-1.866667pt;}
.ws22{word-spacing:-1.776000pt;}
.wsf{word-spacing:-1.600000pt;}
.ws1f{word-spacing:-0.960000pt;}
.ws35{word-spacing:-0.586667pt;}
.ws37{word-spacing:-0.533333pt;}
.ws1d{word-spacing:-0.373333pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:0.106667pt;}
.ws24{word-spacing:0.128000pt;}
.ws25{word-spacing:0.384000pt;}
.wsd{word-spacing:0.426667pt;}
.ws3c{word-spacing:0.533333pt;}
.ws9{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.693333pt;}
.ws8{word-spacing:0.746667pt;}
.ws3f{word-spacing:1.066667pt;}
.ws30{word-spacing:1.120000pt;}
.wse{word-spacing:1.973333pt;}
.ws34{word-spacing:2.080000pt;}
.ws7{word-spacing:2.856000pt;}
.wsc{word-spacing:3.306667pt;}
.ws28{word-spacing:3.466667pt;}
.ws2a{word-spacing:3.520000pt;}
.ws3b{word-spacing:3.573333pt;}
.ws4{word-spacing:4.800000pt;}
.wsb{word-spacing:5.493333pt;}
.ws20{word-spacing:5.920000pt;}
.ws2c{word-spacing:6.026667pt;}
.ws31{word-spacing:6.186667pt;}
.ws39{word-spacing:6.240000pt;}
.ws32{word-spacing:6.400000pt;}
.ws1c{word-spacing:6.560000pt;}
.ws15{word-spacing:6.720000pt;}
.ws3a{word-spacing:7.200000pt;}
.ws2f{word-spacing:7.520000pt;}
.ws2d{word-spacing:8.426667pt;}
.ws16{word-spacing:8.853333pt;}
.ws2b{word-spacing:9.120000pt;}
.ws26{word-spacing:9.653333pt;}
.ws40{word-spacing:9.973333pt;}
.ws13{word-spacing:10.080000pt;}
.ws14{word-spacing:10.613333pt;}
.ws2e{word-spacing:10.986667pt;}
.wsa{word-spacing:11.200000pt;}
.ws3e{word-spacing:11.573333pt;}
.ws19{word-spacing:12.693333pt;}
.ws33{word-spacing:13.866667pt;}
.ws1e{word-spacing:14.240000pt;}
.ws18{word-spacing:14.453333pt;}
.ws38{word-spacing:14.666667pt;}
.ws1b{word-spacing:17.013333pt;}
.ws27{word-spacing:17.440000pt;}
.ws3d{word-spacing:21.120000pt;}
._4{margin-left:-8.746667pt;}
._0{margin-left:-7.040000pt;}
._3{margin-left:-5.525333pt;}
._2{margin-left:-4.106667pt;}
._1b{margin-left:-3.200000pt;}
._1{margin-left:-2.304000pt;}
._5{margin-left:-1.248000pt;}
._9{width:1.226667pt;}
._6{width:2.800000pt;}
._c{width:3.813333pt;}
._b{width:4.930667pt;}
._8{width:5.949333pt;}
._d{width:6.992000pt;}
._1e{width:7.946667pt;}
._16{width:8.853333pt;}
._7{width:10.136000pt;}
._a{width:11.093333pt;}
._13{width:12.213333pt;}
._10{width:14.304000pt;}
._e{width:15.413333pt;}
._f{width:16.501333pt;}
._18{width:17.525333pt;}
._19{width:18.954667pt;}
._11{width:20.746667pt;}
._12{width:21.706667pt;}
._23{width:22.880000pt;}
._1f{width:23.786667pt;}
._15{width:25.066667pt;}
._14{width:26.346667pt;}
._1c{width:28.053333pt;}
._20{width:29.333333pt;}
._21{width:30.944000pt;}
._1d{width:32.266667pt;}
._26{width:33.226667pt;}
._25{width:34.986667pt;}
._24{width:35.946667pt;}
._17{width:37.066667pt;}
._22{width:38.037333pt;}
._1a{width:275.553600pt;}
.fsc{font-size:31.093333pt;}
.fsb{font-size:37.312000pt;}
.fsd{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:61.333333pt;}
.fsa{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.fs3{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:71.145200pt;}
.yb1{bottom:85.545200pt;}
.yb0{bottom:99.945200pt;}
.y74{bottom:109.017200pt;}
.yb3{bottom:112.790933pt;}
.y103{bottom:112.896533pt;}
.y62{bottom:112.934800pt;}
.y48{bottom:112.943600pt;}
.ycd{bottom:113.274933pt;}
.yaf{bottom:114.345200pt;}
.y12f{bottom:114.518400pt;}
.yab{bottom:116.109600pt;}
.y29{bottom:122.324267pt;}
.y73{bottom:123.417200pt;}
.y102{bottom:128.896533pt;}
.y61{bottom:128.934800pt;}
.y47{bottom:128.943600pt;}
.ycc{bottom:129.274933pt;}
.y12e{bottom:130.518400pt;}
.yaa{bottom:132.109600pt;}
.y101{bottom:144.896533pt;}
.y46{bottom:144.943600pt;}
.ycb{bottom:145.274933pt;}
.y12d{bottom:146.518400pt;}
.ya9{bottom:148.109600pt;}
.y28{bottom:155.924267pt;}
.y5{bottom:157.688133pt;}
.y100{bottom:160.896533pt;}
.y60{bottom:160.934800pt;}
.y45{bottom:160.943600pt;}
.yca{bottom:161.274933pt;}
.ya8{bottom:164.109600pt;}
.yff{bottom:176.896533pt;}
.y5f{bottom:176.934800pt;}
.y44{bottom:176.943600pt;}
.yc9{bottom:177.274933pt;}
.y12c{bottom:178.518400pt;}
.ya7{bottom:180.109600pt;}
.yfe{bottom:192.896533pt;}
.y5e{bottom:192.934800pt;}
.y43{bottom:192.943600pt;}
.yc8{bottom:193.274933pt;}
.y12b{bottom:194.518400pt;}
.ya6{bottom:196.109600pt;}
.yfd{bottom:208.896533pt;}
.y5d{bottom:208.934800pt;}
.y42{bottom:208.943600pt;}
.yc7{bottom:209.274933pt;}
.y27{bottom:209.303733pt;}
.y12a{bottom:210.518400pt;}
.ya5{bottom:212.109600pt;}
.y5c{bottom:224.934800pt;}
.y41{bottom:224.943600pt;}
.yc6{bottom:225.274933pt;}
.y26{bottom:225.303733pt;}
.ya4{bottom:228.109600pt;}
.yfc{bottom:240.896533pt;}
.y40{bottom:240.943600pt;}
.yc5{bottom:241.274933pt;}
.y25{bottom:241.303733pt;}
.y129{bottom:242.518400pt;}
.ya3{bottom:244.109600pt;}
.y5b{bottom:256.934800pt;}
.y3f{bottom:256.943600pt;}
.yc4{bottom:257.274933pt;}
.y24{bottom:257.303733pt;}
.y128{bottom:258.518400pt;}
.ya2{bottom:260.109600pt;}
.y4{bottom:265.924933pt;}
.y5a{bottom:272.934800pt;}
.y3e{bottom:272.943600pt;}
.yc3{bottom:273.274933pt;}
.yfb{bottom:276.096533pt;}
.ya1{bottom:276.109600pt;}
.y59{bottom:288.934800pt;}
.y3d{bottom:288.943600pt;}
.yc2{bottom:289.274933pt;}
.y23{bottom:289.303733pt;}
.y127{bottom:290.518400pt;}
.yfa{bottom:292.096533pt;}
.ya0{bottom:292.109600pt;}
.y58{bottom:304.934800pt;}
.y3c{bottom:304.943600pt;}
.yc1{bottom:305.274933pt;}
.y22{bottom:305.303733pt;}
.y126{bottom:306.518400pt;}
.yf9{bottom:308.096533pt;}
.y9f{bottom:308.109600pt;}
.y3b{bottom:320.943600pt;}
.yc0{bottom:321.274933pt;}
.y21{bottom:321.303733pt;}
.y125{bottom:322.518400pt;}
.y57{bottom:322.534800pt;}
.yf8{bottom:324.096533pt;}
.y9e{bottom:324.109600pt;}
.y3{bottom:326.724933pt;}
.y3a{bottom:336.943600pt;}
.ybf{bottom:337.274933pt;}
.y20{bottom:337.303733pt;}
.y124{bottom:338.518400pt;}
.yf7{bottom:340.096533pt;}
.yad{bottom:340.109600pt;}
.y56{bottom:340.134800pt;}
.y39{bottom:352.943600pt;}
.ybe{bottom:353.274933pt;}
.y1f{bottom:353.303733pt;}
.yf6{bottom:356.096533pt;}
.y9d{bottom:356.109600pt;}
.y55{bottom:357.734800pt;}
.y2{bottom:365.124933pt;}
.y38{bottom:368.943600pt;}
.ybd{bottom:369.274933pt;}
.y1e{bottom:369.303733pt;}
.y123{bottom:370.518400pt;}
.yf5{bottom:372.096533pt;}
.y9c{bottom:372.109600pt;}
.y37{bottom:384.943600pt;}
.ybc{bottom:385.274933pt;}
.y1d{bottom:385.303733pt;}
.y122{bottom:386.518400pt;}
.yf4{bottom:388.096533pt;}
.y9b{bottom:388.109600pt;}
.y54{bottom:388.668133pt;}
.y36{bottom:400.943600pt;}
.ybb{bottom:401.274933pt;}
.y1c{bottom:401.303733pt;}
.y121{bottom:402.518400pt;}
.y1{bottom:403.524933pt;}
.yf3{bottom:404.096533pt;}
.y9a{bottom:404.109600pt;}
.y53{bottom:404.668133pt;}
.y35{bottom:416.943600pt;}
.yba{bottom:417.274933pt;}
.y1b{bottom:417.303733pt;}
.yf2{bottom:420.096533pt;}
.y99{bottom:420.109600pt;}
.y52{bottom:420.668133pt;}
.y34{bottom:432.943600pt;}
.yb9{bottom:433.274933pt;}
.y1a{bottom:433.303733pt;}
.y120{bottom:434.518400pt;}
.yf1{bottom:436.096533pt;}
.y98{bottom:436.109600pt;}
.y51{bottom:436.668133pt;}
.y33{bottom:448.943600pt;}
.yb8{bottom:449.274933pt;}
.y19{bottom:449.303733pt;}
.y11f{bottom:450.518400pt;}
.yf0{bottom:452.096533pt;}
.y97{bottom:452.109600pt;}
.y50{bottom:452.668133pt;}
.y32{bottom:464.943600pt;}
.yb7{bottom:465.274933pt;}
.y18{bottom:465.303733pt;}
.y11e{bottom:466.518400pt;}
.yef{bottom:468.096533pt;}
.y96{bottom:468.109600pt;}
.y4f{bottom:468.668133pt;}
.y31{bottom:480.943600pt;}
.yb6{bottom:481.274933pt;}
.y11d{bottom:482.518400pt;}
.yee{bottom:484.096533pt;}
.y95{bottom:484.109600pt;}
.y4e{bottom:484.668133pt;}
.y30{bottom:496.943600pt;}
.yb5{bottom:497.274933pt;}
.yed{bottom:500.096533pt;}
.y94{bottom:500.109600pt;}
.y17{bottom:500.509067pt;}
.y2f{bottom:512.943600pt;}
.yb4{bottom:513.274933pt;}
.y4d{bottom:514.001467pt;}
.y11c{bottom:514.518400pt;}
.yec{bottom:516.096533pt;}
.y93{bottom:516.109600pt;}
.y2e{bottom:528.943600pt;}
.y11b{bottom:530.518400pt;}
.y92{bottom:532.109600pt;}
.yce{bottom:543.490667pt;}
.y2d{bottom:544.943600pt;}
.y11a{bottom:546.518400pt;}
.y4c{bottom:546.530267pt;}
.yeb{bottom:548.096533pt;}
.y91{bottom:548.109600pt;}
.y16{bottom:552.237067pt;}
.y2c{bottom:560.943600pt;}
.y119{bottom:562.518400pt;}
.y4b{bottom:562.530267pt;}
.yea{bottom:564.096533pt;}
.y90{bottom:564.109600pt;}
.y4a{bottom:578.530267pt;}
.ye9{bottom:580.096533pt;}
.y8f{bottom:580.109600pt;}
.y15{bottom:589.837067pt;}
.y2b{bottom:592.943600pt;}
.y118{bottom:594.518400pt;}
.y49{bottom:594.530267pt;}
.ye8{bottom:596.096533pt;}
.y8e{bottom:596.109600pt;}
.y14{bottom:608.237067pt;}
.y117{bottom:610.518400pt;}
.ye7{bottom:612.096533pt;}
.y8d{bottom:612.109600pt;}
.y116{bottom:626.518400pt;}
.y72{bottom:627.949733pt;}
.ye6{bottom:628.096533pt;}
.y8c{bottom:628.109600pt;}
.y71{bottom:643.949733pt;}
.ye5{bottom:644.096533pt;}
.y8b{bottom:644.109600pt;}
.y13{bottom:649.037067pt;}
.y115{bottom:658.518400pt;}
.y70{bottom:659.949733pt;}
.ye4{bottom:660.096533pt;}
.y8a{bottom:660.109600pt;}
.y12{bottom:667.431733pt;}
.y114{bottom:674.518400pt;}
.y6f{bottom:675.949733pt;}
.ye3{bottom:676.096533pt;}
.y89{bottom:676.109600pt;}
.y113{bottom:690.518400pt;}
.y6e{bottom:691.949733pt;}
.ye2{bottom:692.096533pt;}
.y88{bottom:692.109600pt;}
.y11{bottom:702.637067pt;}
.ye1{bottom:708.096533pt;}
.y87{bottom:708.109600pt;}
.y6d{bottom:719.949733pt;}
.y112{bottom:722.518400pt;}
.ye0{bottom:724.096533pt;}
.y86{bottom:724.109600pt;}
.y10{bottom:733.837200pt;}
.y111{bottom:738.518400pt;}
.ydf{bottom:740.096533pt;}
.y85{bottom:740.109600pt;}
.yf{bottom:750.637200pt;}
.y110{bottom:754.518400pt;}
.yde{bottom:756.096533pt;}
.y84{bottom:756.109600pt;}
.y6c{bottom:758.349733pt;}
.ye{bottom:767.437200pt;}
.y10f{bottom:770.518400pt;}
.ydd{bottom:772.096533pt;}
.y83{bottom:772.109600pt;}
.yd{bottom:784.237200pt;}
.y10e{bottom:786.518400pt;}
.ydc{bottom:788.096533pt;}
.y82{bottom:788.109600pt;}
.y6b{bottom:790.349733pt;}
.yc{bottom:801.037200pt;}
.ydb{bottom:804.096533pt;}
.y81{bottom:804.109600pt;}
.y6a{bottom:806.349733pt;}
.yb{bottom:817.837200pt;}
.y10d{bottom:818.518400pt;}
.yda{bottom:820.096533pt;}
.y80{bottom:820.109600pt;}
.y69{bottom:826.789733pt;}
.y10c{bottom:834.518400pt;}
.yd9{bottom:836.096533pt;}
.y7f{bottom:836.109600pt;}
.y68{bottom:842.789733pt;}
.y10b{bottom:850.518400pt;}
.yd8{bottom:852.096533pt;}
.y7e{bottom:852.109600pt;}
.ya{bottom:852.237200pt;}
.y67{bottom:854.349733pt;}
.yd7{bottom:868.096533pt;}
.y7d{bottom:868.109600pt;}
.y9{bottom:870.637067pt;}
.y66{bottom:874.789733pt;}
.y10a{bottom:882.518400pt;}
.yd6{bottom:884.096533pt;}
.y7c{bottom:884.109600pt;}
.y8{bottom:893.037067pt;}
.y109{bottom:898.518400pt;}
.yd5{bottom:900.096533pt;}
.y7b{bottom:900.109600pt;}
.y65{bottom:903.949733pt;}
.y108{bottom:914.518400pt;}
.yd4{bottom:916.096533pt;}
.y7a{bottom:916.109600pt;}
.y107{bottom:930.518400pt;}
.y7{bottom:930.775733pt;}
.yd3{bottom:932.096533pt;}
.y79{bottom:932.109600pt;}
.y106{bottom:946.518400pt;}
.yd2{bottom:948.096533pt;}
.y78{bottom:948.109600pt;}
.y64{bottom:961.549733pt;}
.y105{bottom:962.518400pt;}
.yd1{bottom:964.096533pt;}
.yac{bottom:964.109600pt;}
.y6{bottom:977.580933pt;}
.yd0{bottom:980.096533pt;}
.y77{bottom:980.109600pt;}
.y63{bottom:990.349733pt;}
.y104{bottom:994.518400pt;}
.ycf{bottom:996.096533pt;}
.y76{bottom:996.109600pt;}
.y2a{bottom:1033.358667pt;}
.yae{bottom:1035.297333pt;}
.y75{bottom:1036.996133pt;}
.h1a{height:29.036875pt;}
.h1b{height:37.031250pt;}
.h12{height:37.161458pt;}
.h10{height:38.828125pt;}
.h11{height:39.760417pt;}
.h16{height:40.877604pt;}
.h1d{height:42.117188pt;}
.h8{height:42.585938pt;}
.h7{height:42.735677pt;}
.h14{height:43.375000pt;}
.ha{height:43.903646pt;}
.h15{height:44.593750pt;}
.h1e{height:44.992000pt;}
.he{height:46.593750pt;}
.h19{height:46.599625pt;}
.hf{height:46.796875pt;}
.h9{height:49.136719pt;}
.h17{height:51.476562pt;}
.h3{height:52.026042pt;}
.h1f{height:52.266667pt;}
.h13{height:52.490667pt;}
.h1c{height:52.736000pt;}
.hc{height:53.816406pt;}
.hb{height:53.837740pt;}
.hd{height:56.156250pt;}
.h18{height:65.062500pt;}
.h6{height:69.890625pt;}
.h4{height:72.291667pt;}
.h2{height:86.750000pt;}
.h5{height:108.437500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:55.748000pt;}
.xa{left:56.692933pt;}
.x1f{left:68.031467pt;}
.xe{left:80.692933pt;}
.xf{left:104.692933pt;}
.x12{left:124.587067pt;}
.x1d{left:127.748000pt;}
.x11{left:128.692933pt;}
.x2{left:136.452800pt;}
.xd{left:139.734933pt;}
.x9{left:162.600800pt;}
.x4{left:177.128133pt;}
.x7{left:190.740933pt;}
.xc{left:198.091733pt;}
.x1c{left:199.511067pt;}
.x8{left:202.485333pt;}
.x3{left:233.348800pt;}
.x1{left:267.876800pt;}
.x5{left:273.517067pt;}
.x1b{left:278.222533pt;}
.x10{left:299.476133pt;}
.x6{left:303.481200pt;}
.xb{left:331.668800pt;}
.x13{left:408.199600pt;}
.x19{left:411.984933pt;}
.x14{left:432.188933pt;}
.x17{left:457.908933pt;}
.x1a{left:474.838267pt;}
.x15{left:491.319600pt;}
.x16{left:498.388933pt;}
.x18{left:519.824933pt;}
.x20{left:540.711067pt;}
}




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