
    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_9ec14de3d06df7974b21edd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128418;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_434735f0e6ff853106609bb7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d0f1dabfe64d90636060d2ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_1fc6591fcfbe6b4687deacfc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9dc1468d282a6e81f5ca0038.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_36bc4f0c8d0a360e22261246.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_de2cccdd66aee1c0951517bf.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3ca68705347e9515a58baac1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_bb0a67ce3b138c87025ea1e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731445;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_ed15abf9bd39fd3086f80b2b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_82d60460a34bd61389d5e87a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_70fe78f83820673b8754da89.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f6d222ca43d7fbdb7a856a11.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_c57b8db1951627397c68d10c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.084961;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);}
.v4{vertical-align:-76.320000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.400000px;}
.v1{vertical-align:21.600000px;}
.v5{vertical-align:24.480000px;}
.ls10{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.266000px;}
.lsf{letter-spacing:-0.942000px;}
.lsb{letter-spacing:-0.810000px;}
.lsd{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.472200px;}
.lsa{letter-spacing:-0.184200px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.156000px;}
.ls11{letter-spacing:0.313800px;}
.ls18{letter-spacing:0.457920px;}
.ls3{letter-spacing:0.483840px;}
.ls7{letter-spacing:0.498240px;}
.ls1e{letter-spacing:0.610560px;}
.ls1{letter-spacing:0.627840px;}
.ls4{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.869760px;}
.lse{letter-spacing:1.080000px;}
.ls17{letter-spacing:2.280000px;}
.ls8{letter-spacing:5.040000px;}
.ls15{letter-spacing:13.680000px;}
.ls2{letter-spacing:19.800000px;}
.ls1b{letter-spacing:40.625280px;}
.ls1c{letter-spacing:45.360000px;}
.ls1a{letter-spacing:91.440000px;}
.ls16{letter-spacing:120.396000px;}
.ls0{letter-spacing:196.829760px;}
.ls14{letter-spacing:199.800000px;}
.ls12{letter-spacing:795.876000px;}
.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;}
}
.ws1{word-spacing:-54.720000px;}
.wsc{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.948000px;}
.ws3{word-spacing:-15.212160px;}
.ws7{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.027960px;}
.ws2{word-spacing:-14.402160px;}
.wsa{word-spacing:-13.993800px;}
.ws9{word-spacing:-13.680000px;}
.ws6{word-spacing:-12.003960px;}
.ws8{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.440000px;}
.wse{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._17{margin-left:-5.536800px;}
._7{margin-left:-3.604320px;}
._2{margin-left:-2.185440px;}
._0{margin-left:-1.152000px;}
._1{width:1.212000px;}
._4{width:2.246400px;}
._e{width:3.831840px;}
._c{width:5.117280px;}
._1e{width:6.127200px;}
._a{width:7.187520px;}
._8{width:8.562240px;}
._9{width:10.038720px;}
._b{width:11.206080px;}
._d{width:12.603360px;}
._15{width:14.598240px;}
._10{width:18.238560px;}
._f{width:19.531680px;}
._14{width:21.196320px;}
._21{width:22.232640px;}
._1d{width:23.330880px;}
._1c{width:24.382560px;}
._1b{width:26.098080px;}
._1f{width:27.861600px;}
._16{width:29.350080px;}
._12{width:30.861120px;}
._11{width:32.496960px;}
._1a{width:33.583680px;}
._19{width:34.791840px;}
._18{width:36.034560px;}
._20{width:38.284320px;}
._26{width:39.839040px;}
._25{width:40.936320px;}
._24{width:45.197760px;}
._3{width:152.778240px;}
._23{width:195.120000px;}
._6{width:197.865120px;}
._5{width:199.104960px;}
._22{width:847.716000px;}
._13{width:948.665760px;}
.fc5{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(83,129,53);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsb{font-size:11.520000px;}
.fs3{font-size:18.720000px;}
.fsc{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs8{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsd{font-size:83.520000px;}
.fs7{font-size:90.720000px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.080000px;}
.y18{bottom:1.440000px;}
.y26{bottom:2.880000px;}
.y4b{bottom:2.910000px;}
.y46{bottom:3.240000px;}
.y2b{bottom:4.680000px;}
.y3a{bottom:5.040000px;}
.y38{bottom:7.200000px;}
.y16{bottom:7.560000px;}
.y7{bottom:7.920000px;}
.y1a{bottom:9.360000px;}
.y13{bottom:10.080000px;}
.y29{bottom:10.440000px;}
.y83{bottom:11.880000px;}
.y2e{bottom:17.280000px;}
.y25{bottom:18.360000px;}
.y45{bottom:18.720000px;}
.y49{bottom:18.723000px;}
.y81{bottom:20.520000px;}
.y3d{bottom:23.400000px;}
.y6{bottom:23.760000px;}
.y11{bottom:27.000000px;}
.y82{bottom:29.205000px;}
.y24{bottom:33.840000px;}
.y44{bottom:34.200000px;}
.y5{bottom:37.080000px;}
.y84{bottom:37.845000px;}
.y2d{bottom:43.230000px;}
.y4{bottom:45.000000px;}
.y3c{bottom:49.320000px;}
.y35{bottom:49.350000px;}
.y23{bottom:49.365000px;}
.y43{bottom:49.680000px;}
.y10{bottom:52.560000px;}
.y7f{bottom:54.756000px;}
.yb{bottom:55.116000px;}
.y4f{bottom:55.476000px;}
.y2{bottom:60.120000px;}
.y34{bottom:64.830000px;}
.y22{bottom:64.845000px;}
.y42{bottom:65.160000px;}
.y3{bottom:65.880000px;}
.ya{bottom:68.796000px;}
.y21{bottom:80.325000px;}
.y41{bottom:80.640000px;}
.y33{bottom:80.670000px;}
.yc6{bottom:88.596000px;}
.y32{bottom:96.150000px;}
.y20{bottom:96.165000px;}
.y7e{bottom:98.316000px;}
.y116{bottom:100.116000px;}
.yc5{bottom:107.676000px;}
.ya6{bottom:109.476000px;}
.y115{bottom:109.836000px;}
.y31{bottom:111.630000px;}
.y1f{bottom:111.645000px;}
.y7d{bottom:117.036000px;}
.ye{bottom:122.076000px;}
.ydc{bottom:124.236000px;}
.yc4{bottom:126.756000px;}
.y30{bottom:127.110000px;}
.y1e{bottom:127.125000px;}
.y114{bottom:127.152000px;}
.ya5{bottom:128.232000px;}
.y7c{bottom:136.152000px;}
.y48{bottom:137.232000px;}
.y1d{bottom:142.605000px;}
.y40{bottom:142.950000px;}
.ydb{bottom:142.992000px;}
.y113{bottom:144.432000px;}
.yc3{bottom:145.512000px;}
.ya4{bottom:147.312000px;}
.y7b{bottom:155.235000px;}
.y3f{bottom:158.430000px;}
.y112{bottom:161.715000px;}
.yda{bottom:162.075000px;}
.yc2{bottom:164.595000px;}
.ya3{bottom:166.395000px;}
.y47{bottom:168.555000px;}
.y3e{bottom:172.155000px;}
.y7a{bottom:173.955000px;}
.y111{bottom:178.995000px;}
.yd9{bottom:181.155000px;}
.yc1{bottom:183.675000px;}
.ya2{bottom:185.115000px;}
.y79{bottom:193.035000px;}
.y110{bottom:196.275000px;}
.yd8{bottom:200.235000px;}
.yc0{bottom:202.395000px;}
.ya1{bottom:204.195000px;}
.y78{bottom:212.115000px;}
.y10f{bottom:213.555000px;}
.yd7{bottom:218.955000px;}
.ybf{bottom:221.475000px;}
.ya0{bottom:223.275000px;}
.y10e{bottom:230.835000px;}
.y77{bottom:231.195000px;}
.yd6{bottom:238.035000px;}
.ybe{bottom:240.555000px;}
.y9f{bottom:242.355000px;}
.y10d{bottom:248.115000px;}
.y76{bottom:249.915000px;}
.yd5{bottom:257.115000px;}
.ybd{bottom:259.635000px;}
.y9e{bottom:261.105000px;}
.y10c{bottom:265.425000px;}
.y75{bottom:269.025000px;}
.yd4{bottom:275.865000px;}
.ybc{bottom:278.385000px;}
.y9d{bottom:280.185000px;}
.y10b{bottom:283.065000px;}
.y74{bottom:288.105000px;}
.yd3{bottom:294.945000px;}
.ybb{bottom:297.465000px;}
.y9c{bottom:299.265000px;}
.y10a{bottom:301.785000px;}
.y73{bottom:306.825000px;}
.yd2{bottom:314.025000px;}
.yba{bottom:316.545000px;}
.y9b{bottom:317.985000px;}
.y109{bottom:320.865000px;}
.yd1{bottom:333.105000px;}
.yb9{bottom:335.265000px;}
.y9a{bottom:337.065000px;}
.y108{bottom:339.945000px;}
.y3b{bottom:343.185000px;}
.y72{bottom:344.985000px;}
.yd0{bottom:351.825000px;}
.yb8{bottom:354.345000px;}
.y99{bottom:356.145000px;}
.y107{bottom:358.665000px;}
.y71{bottom:360.465000px;}
.ycf{bottom:370.905000px;}
.yb7{bottom:373.425000px;}
.y98{bottom:374.865000px;}
.y106{bottom:377.745000px;}
.yce{bottom:389.985000px;}
.yb6{bottom:392.145000px;}
.y97{bottom:393.945000px;}
.y105{bottom:396.870000px;}
.ycd{bottom:408.750000px;}
.yb5{bottom:411.270000px;}
.y96{bottom:413.070000px;}
.y104{bottom:415.950000px;}
.ycc{bottom:427.830000px;}
.yb4{bottom:430.350000px;}
.y39{bottom:431.790000px;}
.y95{bottom:432.150000px;}
.y103{bottom:434.670000px;}
.ycb{bottom:446.910000px;}
.yb3{bottom:449.430000px;}
.y94{bottom:450.870000px;}
.y37{bottom:451.230000px;}
.y102{bottom:453.750000px;}
.yca{bottom:465.630000px;}
.yb2{bottom:468.150000px;}
.y93{bottom:469.950000px;}
.y101{bottom:472.830000px;}
.y36{bottom:475.350000px;}
.y2f{bottom:478.950000px;}
.yc9{bottom:484.710000px;}
.yb1{bottom:487.230000px;}
.y92{bottom:489.030000px;}
.y100{bottom:491.550000px;}
.yc8{bottom:503.790000px;}
.yb0{bottom:506.310000px;}
.y91{bottom:507.750000px;}
.yff{bottom:510.630000px;}
.yc7{bottom:522.870000px;}
.yaf{bottom:525.030000px;}
.y90{bottom:526.830000px;}
.yfe{bottom:529.740000px;}
.y70{bottom:541.620000px;}
.yae{bottom:544.140000px;}
.y8f{bottom:545.940000px;}
.yfd{bottom:548.460000px;}
.y6f{bottom:560.700000px;}
.yad{bottom:563.220000px;}
.y8e{bottom:565.740000px;}
.yfc{bottom:567.540000px;}
.y6e{bottom:579.780000px;}
.yac{bottom:580.140000px;}
.y8d{bottom:584.820000px;}
.yfb{bottom:586.620000px;}
.yab{bottom:589.140000px;}
.y6d{bottom:598.500000px;}
.y8c{bottom:602.100000px;}
.yfa{bottom:605.700000px;}
.y8b{bottom:609.660000px;}
.y6c{bottom:617.580000px;}
.y2c{bottom:618.660000px;}
.yf9{bottom:624.420000px;}
.yaa{bottom:626.940000px;}
.y6b{bottom:636.660000px;}
.ya9{bottom:642.420000px;}
.yf8{bottom:643.500000px;}
.y8a{bottom:644.940000px;}
.y6a{bottom:655.380000px;}
.yf7{bottom:662.610000px;}
.y89{bottom:662.970000px;}
.y69{bottom:674.490000px;}
.yf6{bottom:681.330000px;}
.y68{bottom:693.570000px;}
.y2a{bottom:695.010000px;}
.y88{bottom:698.250000px;}
.yf5{bottom:700.410000px;}
.y67{bottom:712.650000px;}
.y28{bottom:714.090000px;}
.y87{bottom:716.250000px;}
.yf4{bottom:719.490000px;}
.y66{bottom:731.370000px;}
.y86{bottom:734.250000px;}
.yf3{bottom:738.210000px;}
.y27{bottom:744.690000px;}
.y1c{bottom:748.650000px;}
.y65{bottom:750.450000px;}
.y85{bottom:752.250000px;}
.yf2{bottom:757.290000px;}
.y64{bottom:769.530000px;}
.y80{bottom:770.250000px;}
.yf1{bottom:776.370000px;}
.y63{bottom:788.250000px;}
.yf0{bottom:795.495000px;}
.y62{bottom:807.375000px;}
.yef{bottom:814.215000px;}
.y61{bottom:826.455000px;}
.yee{bottom:833.295000px;}
.y60{bottom:845.535000px;}
.yed{bottom:852.375000px;}
.y5f{bottom:864.255000px;}
.yec{bottom:871.095000px;}
.ya8{bottom:876.495000px;}
.y5e{bottom:883.335000px;}
.yeb{bottom:890.175000px;}
.ya7{bottom:893.415000px;}
.y5d{bottom:902.415000px;}
.y1b{bottom:903.855000px;}
.y19{bottom:907.455000px;}
.yea{bottom:909.255000px;}
.y5c{bottom:921.135000px;}
.ye9{bottom:928.335000px;}
.y17{bottom:930.885000px;}
.y15{bottom:934.485000px;}
.y5b{bottom:940.245000px;}
.ye8{bottom:947.085000px;}
.y14{bottom:957.885000px;}
.y5a{bottom:959.325000px;}
.y12{bottom:961.125000px;}
.ye7{bottom:966.165000px;}
.y59{bottom:978.045000px;}
.ye6{bottom:985.245000px;}
.yf{bottom:991.725000px;}
.y58{bottom:997.125000px;}
.ye5{bottom:1003.965000px;}
.y57{bottom:1016.205000px;}
.ye4{bottom:1023.045000px;}
.y56{bottom:1035.285000px;}
.ye3{bottom:1042.125000px;}
.y55{bottom:1054.005000px;}
.ye2{bottom:1060.845000px;}
.y54{bottom:1073.130000px;}
.ye1{bottom:1079.970000px;}
.y53{bottom:1092.210000px;}
.yd{bottom:1094.370000px;}
.ye0{bottom:1099.050000px;}
.y52{bottom:1110.930000px;}
.yc{bottom:1112.730000px;}
.ydf{bottom:1118.130000px;}
.y9{bottom:1125.690000px;}
.y1{bottom:1127.130000px;}
.y51{bottom:1130.010000px;}
.yde{bottom:1134.690000px;}
.ydd{bottom:1145.130000px;}
.y50{bottom:1149.090000px;}
.y4e{bottom:1168.890000px;}
.y4d{bottom:1189.770000px;}
.y4c{bottom:1191.930000px;}
.y4a{bottom:1194.810000px;}
.h13{height:3.240000px;}
.h16{height:3.600000px;}
.h1e{height:3.960000px;}
.h17{height:5.650313px;}
.h8{height:5.729063px;}
.h14{height:5.805000px;}
.h2a{height:11.458125px;}
.h28{height:15.156000px;}
.h2d{height:17.280000px;}
.h30{height:17.316000px;}
.h7{height:18.372656px;}
.h5{height:18.674297px;}
.h1f{height:19.080000px;}
.h23{height:19.440000px;}
.h15{height:23.400000px;}
.h18{height:23.436000px;}
.h32{height:24.025781px;}
.h22{height:24.120000px;}
.h35{height:24.671250px;}
.h39{height:29.664141px;}
.h31{height:29.678906px;}
.h11{height:30.600000px;}
.h26{height:31.320000px;}
.h2f{height:34.560000px;}
.h1d{height:38.368125px;}
.hb{height:39.330000px;}
.h9{height:40.985156px;}
.h2b{height:46.445625px;}
.h19{height:46.615078px;}
.h29{height:46.638281px;}
.h38{height:49.848750px;}
.h2c{height:51.876000px;}
.h27{height:53.677969px;}
.h1c{height:53.704687px;}
.h1b{height:55.147500px;}
.h6{height:57.071250px;}
.h37{height:59.328281px;}
.h2e{height:59.357813px;}
.h12{height:60.952500px;}
.h36{height:63.663750px;}
.hf{height:64.008984px;}
.hd{height:64.978594px;}
.hc{height:65.010937px;}
.h3{height:65.884219px;}
.ha{height:66.757500px;}
.h33{height:69.086250px;}
.h4{height:75.093750px;}
.h20{height:76.356000px;}
.h2{height:82.836000px;}
.h34{height:84.172500px;}
.h24{height:88.596000px;}
.h10{height:91.428750px;}
.he{height:95.436000px;}
.h21{height:139.716000px;}
.h1a{height:155.190000px;}
.h25{height:171.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:78.876000px;}
.wd{width:84.636000px;}
.wa{width:108.756000px;}
.wb{width:123.516000px;}
.wc{width:137.592000px;}
.w7{width:212.145000px;}
.w9{width:222.945000px;}
.w2{width:287.385000px;}
.w3{width:435.060000px;}
.w8{width:499.500000px;}
.w6{width:510.300000px;}
.w5{width:722.445000px;}
.w1{width:892.500000px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.xb{left:11.160000px;}
.x17{left:14.760000px;}
.x1b{left:19.080000px;}
.x19{left:21.990000px;}
.x7{left:31.680000px;}
.x5{left:43.920000px;}
.x1{left:84.636000px;}
.x9{left:86.799000px;}
.x20{left:111.995987px;}
.x2{left:117.399000px;}
.x1e{left:137.915987px;}
.x14{left:138.995987px;}
.x23{left:142.271987px;}
.xc{left:154.869000px;}
.xa{left:158.469000px;}
.x6{left:167.469000px;}
.x15{left:178.635000px;}
.xe{left:203.835000px;}
.x12{left:214.995000px;}
.x16{left:288.105000px;}
.x8{left:361.224000px;}
.x1f{left:368.429987px;}
.x21{left:369.509987px;}
.x3{left:372.030000px;}
.x18{left:412.350000px;}
.x22{left:446.579987px;}
.x1c{left:473.579987px;}
.x1a{left:550.650000px;}
.x11{left:584.490000px;}
.xd{left:595.290000px;}
.x10{left:620.534987px;}
.x13{left:636.734987px;}
.x1d{left:676.694987px;}
.xf{left:795.884987px;}
@media print{
.v4{vertical-align:-67.840000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.800000pt;}
.v1{vertical-align:19.200000pt;}
.v5{vertical-align:21.760000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.125333pt;}
.lsf{letter-spacing:-0.837333pt;}
.lsb{letter-spacing:-0.720000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.419733pt;}
.lsa{letter-spacing:-0.163733pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.138667pt;}
.ls11{letter-spacing:0.278933pt;}
.ls18{letter-spacing:0.407040pt;}
.ls3{letter-spacing:0.430080pt;}
.ls7{letter-spacing:0.442880pt;}
.ls1e{letter-spacing:0.542720pt;}
.ls1{letter-spacing:0.558080pt;}
.ls4{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.773120pt;}
.lse{letter-spacing:0.960000pt;}
.ls17{letter-spacing:2.026667pt;}
.ls8{letter-spacing:4.480000pt;}
.ls15{letter-spacing:12.160000pt;}
.ls2{letter-spacing:17.600000pt;}
.ls1b{letter-spacing:36.111360pt;}
.ls1c{letter-spacing:40.320000pt;}
.ls1a{letter-spacing:81.280000pt;}
.ls16{letter-spacing:107.018667pt;}
.ls0{letter-spacing:174.959787pt;}
.ls14{letter-spacing:177.600000pt;}
.ls12{letter-spacing:707.445333pt;}
.ws1{word-spacing:-48.640000pt;}
.wsc{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.176000pt;}
.ws3{word-spacing:-13.521920pt;}
.ws7{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.358187pt;}
.ws2{word-spacing:-12.801920pt;}
.wsa{word-spacing:-12.438933pt;}
.ws9{word-spacing:-12.160000pt;}
.ws6{word-spacing:-10.670187pt;}
.ws8{word-spacing:-10.560000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._17{margin-left:-4.921600pt;}
._7{margin-left:-3.203840pt;}
._2{margin-left:-1.942613pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.077333pt;}
._4{width:1.996800pt;}
._e{width:3.406080pt;}
._c{width:4.548693pt;}
._1e{width:5.446400pt;}
._a{width:6.388907pt;}
._8{width:7.610880pt;}
._9{width:8.923307pt;}
._b{width:9.960960pt;}
._d{width:11.202987pt;}
._15{width:12.976213pt;}
._10{width:16.212053pt;}
._f{width:17.361493pt;}
._14{width:18.841173pt;}
._21{width:19.762347pt;}
._1d{width:20.738560pt;}
._1c{width:21.673387pt;}
._1b{width:23.198293pt;}
._1f{width:24.765867pt;}
._16{width:26.088960pt;}
._12{width:27.432107pt;}
._11{width:28.886187pt;}
._1a{width:29.852160pt;}
._19{width:30.926080pt;}
._18{width:32.030720pt;}
._20{width:34.030507pt;}
._26{width:35.412480pt;}
._25{width:36.387840pt;}
._24{width:40.175787pt;}
._3{width:135.802880pt;}
._23{width:173.440000pt;}
._6{width:175.880107pt;}
._5{width:176.982187pt;}
._22{width:753.525333pt;}
._13{width:843.258453pt;}
.fs5{font-size:5.120000pt;}
.fsb{font-size:10.240000pt;}
.fs3{font-size:16.640000pt;}
.fsc{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs8{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsd{font-size:74.240000pt;}
.fs7{font-size:80.640000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.960000pt;}
.y18{bottom:1.280000pt;}
.y26{bottom:2.560000pt;}
.y4b{bottom:2.586667pt;}
.y46{bottom:2.880000pt;}
.y2b{bottom:4.160000pt;}
.y3a{bottom:4.480000pt;}
.y38{bottom:6.400000pt;}
.y16{bottom:6.720000pt;}
.y7{bottom:7.040000pt;}
.y1a{bottom:8.320000pt;}
.y13{bottom:8.960000pt;}
.y29{bottom:9.280000pt;}
.y83{bottom:10.560000pt;}
.y2e{bottom:15.360000pt;}
.y25{bottom:16.320000pt;}
.y45{bottom:16.640000pt;}
.y49{bottom:16.642667pt;}
.y81{bottom:18.240000pt;}
.y3d{bottom:20.800000pt;}
.y6{bottom:21.120000pt;}
.y11{bottom:24.000000pt;}
.y82{bottom:25.960000pt;}
.y24{bottom:30.080000pt;}
.y44{bottom:30.400000pt;}
.y5{bottom:32.960000pt;}
.y84{bottom:33.640000pt;}
.y2d{bottom:38.426667pt;}
.y4{bottom:40.000000pt;}
.y3c{bottom:43.840000pt;}
.y35{bottom:43.866667pt;}
.y23{bottom:43.880000pt;}
.y43{bottom:44.160000pt;}
.y10{bottom:46.720000pt;}
.y7f{bottom:48.672000pt;}
.yb{bottom:48.992000pt;}
.y4f{bottom:49.312000pt;}
.y2{bottom:53.440000pt;}
.y34{bottom:57.626667pt;}
.y22{bottom:57.640000pt;}
.y42{bottom:57.920000pt;}
.y3{bottom:58.560000pt;}
.ya{bottom:61.152000pt;}
.y21{bottom:71.400000pt;}
.y41{bottom:71.680000pt;}
.y33{bottom:71.706667pt;}
.yc6{bottom:78.752000pt;}
.y32{bottom:85.466667pt;}
.y20{bottom:85.480000pt;}
.y7e{bottom:87.392000pt;}
.y116{bottom:88.992000pt;}
.yc5{bottom:95.712000pt;}
.ya6{bottom:97.312000pt;}
.y115{bottom:97.632000pt;}
.y31{bottom:99.226667pt;}
.y1f{bottom:99.240000pt;}
.y7d{bottom:104.032000pt;}
.ye{bottom:108.512000pt;}
.ydc{bottom:110.432000pt;}
.yc4{bottom:112.672000pt;}
.y30{bottom:112.986667pt;}
.y1e{bottom:113.000000pt;}
.y114{bottom:113.024000pt;}
.ya5{bottom:113.984000pt;}
.y7c{bottom:121.024000pt;}
.y48{bottom:121.984000pt;}
.y1d{bottom:126.760000pt;}
.y40{bottom:127.066667pt;}
.ydb{bottom:127.104000pt;}
.y113{bottom:128.384000pt;}
.yc3{bottom:129.344000pt;}
.ya4{bottom:130.944000pt;}
.y7b{bottom:137.986667pt;}
.y3f{bottom:140.826667pt;}
.y112{bottom:143.746667pt;}
.yda{bottom:144.066667pt;}
.yc2{bottom:146.306667pt;}
.ya3{bottom:147.906667pt;}
.y47{bottom:149.826667pt;}
.y3e{bottom:153.026667pt;}
.y7a{bottom:154.626667pt;}
.y111{bottom:159.106667pt;}
.yd9{bottom:161.026667pt;}
.yc1{bottom:163.266667pt;}
.ya2{bottom:164.546667pt;}
.y79{bottom:171.586667pt;}
.y110{bottom:174.466667pt;}
.yd8{bottom:177.986667pt;}
.yc0{bottom:179.906667pt;}
.ya1{bottom:181.506667pt;}
.y78{bottom:188.546667pt;}
.y10f{bottom:189.826667pt;}
.yd7{bottom:194.626667pt;}
.ybf{bottom:196.866667pt;}
.ya0{bottom:198.466667pt;}
.y10e{bottom:205.186667pt;}
.y77{bottom:205.506667pt;}
.yd6{bottom:211.586667pt;}
.ybe{bottom:213.826667pt;}
.y9f{bottom:215.426667pt;}
.y10d{bottom:220.546667pt;}
.y76{bottom:222.146667pt;}
.yd5{bottom:228.546667pt;}
.ybd{bottom:230.786667pt;}
.y9e{bottom:232.093333pt;}
.y10c{bottom:235.933333pt;}
.y75{bottom:239.133333pt;}
.yd4{bottom:245.213333pt;}
.ybc{bottom:247.453333pt;}
.y9d{bottom:249.053333pt;}
.y10b{bottom:251.613333pt;}
.y74{bottom:256.093333pt;}
.yd3{bottom:262.173333pt;}
.ybb{bottom:264.413333pt;}
.y9c{bottom:266.013333pt;}
.y10a{bottom:268.253333pt;}
.y73{bottom:272.733333pt;}
.yd2{bottom:279.133333pt;}
.yba{bottom:281.373333pt;}
.y9b{bottom:282.653333pt;}
.y109{bottom:285.213333pt;}
.yd1{bottom:296.093333pt;}
.yb9{bottom:298.013333pt;}
.y9a{bottom:299.613333pt;}
.y108{bottom:302.173333pt;}
.y3b{bottom:305.053333pt;}
.y72{bottom:306.653333pt;}
.yd0{bottom:312.733333pt;}
.yb8{bottom:314.973333pt;}
.y99{bottom:316.573333pt;}
.y107{bottom:318.813333pt;}
.y71{bottom:320.413333pt;}
.ycf{bottom:329.693333pt;}
.yb7{bottom:331.933333pt;}
.y98{bottom:333.213333pt;}
.y106{bottom:335.773333pt;}
.yce{bottom:346.653333pt;}
.yb6{bottom:348.573333pt;}
.y97{bottom:350.173333pt;}
.y105{bottom:352.773333pt;}
.ycd{bottom:363.333333pt;}
.yb5{bottom:365.573333pt;}
.y96{bottom:367.173333pt;}
.y104{bottom:369.733333pt;}
.ycc{bottom:380.293333pt;}
.yb4{bottom:382.533333pt;}
.y39{bottom:383.813333pt;}
.y95{bottom:384.133333pt;}
.y103{bottom:386.373333pt;}
.ycb{bottom:397.253333pt;}
.yb3{bottom:399.493333pt;}
.y94{bottom:400.773333pt;}
.y37{bottom:401.093333pt;}
.y102{bottom:403.333333pt;}
.yca{bottom:413.893333pt;}
.yb2{bottom:416.133333pt;}
.y93{bottom:417.733333pt;}
.y101{bottom:420.293333pt;}
.y36{bottom:422.533333pt;}
.y2f{bottom:425.733333pt;}
.yc9{bottom:430.853333pt;}
.yb1{bottom:433.093333pt;}
.y92{bottom:434.693333pt;}
.y100{bottom:436.933333pt;}
.yc8{bottom:447.813333pt;}
.yb0{bottom:450.053333pt;}
.y91{bottom:451.333333pt;}
.yff{bottom:453.893333pt;}
.yc7{bottom:464.773333pt;}
.yaf{bottom:466.693333pt;}
.y90{bottom:468.293333pt;}
.yfe{bottom:470.880000pt;}
.y70{bottom:481.440000pt;}
.yae{bottom:483.680000pt;}
.y8f{bottom:485.280000pt;}
.yfd{bottom:487.520000pt;}
.y6f{bottom:498.400000pt;}
.yad{bottom:500.640000pt;}
.y8e{bottom:502.880000pt;}
.yfc{bottom:504.480000pt;}
.y6e{bottom:515.360000pt;}
.yac{bottom:515.680000pt;}
.y8d{bottom:519.840000pt;}
.yfb{bottom:521.440000pt;}
.yab{bottom:523.680000pt;}
.y6d{bottom:532.000000pt;}
.y8c{bottom:535.200000pt;}
.yfa{bottom:538.400000pt;}
.y8b{bottom:541.920000pt;}
.y6c{bottom:548.960000pt;}
.y2c{bottom:549.920000pt;}
.yf9{bottom:555.040000pt;}
.yaa{bottom:557.280000pt;}
.y6b{bottom:565.920000pt;}
.ya9{bottom:571.040000pt;}
.yf8{bottom:572.000000pt;}
.y8a{bottom:573.280000pt;}
.y6a{bottom:582.560000pt;}
.yf7{bottom:588.986667pt;}
.y89{bottom:589.306667pt;}
.y69{bottom:599.546667pt;}
.yf6{bottom:605.626667pt;}
.y68{bottom:616.506667pt;}
.y2a{bottom:617.786667pt;}
.y88{bottom:620.666667pt;}
.yf5{bottom:622.586667pt;}
.y67{bottom:633.466667pt;}
.y28{bottom:634.746667pt;}
.y87{bottom:636.666667pt;}
.yf4{bottom:639.546667pt;}
.y66{bottom:650.106667pt;}
.y86{bottom:652.666667pt;}
.yf3{bottom:656.186667pt;}
.y27{bottom:661.946667pt;}
.y1c{bottom:665.466667pt;}
.y65{bottom:667.066667pt;}
.y85{bottom:668.666667pt;}
.yf2{bottom:673.146667pt;}
.y64{bottom:684.026667pt;}
.y80{bottom:684.666667pt;}
.yf1{bottom:690.106667pt;}
.y63{bottom:700.666667pt;}
.yf0{bottom:707.106667pt;}
.y62{bottom:717.666667pt;}
.yef{bottom:723.746667pt;}
.y61{bottom:734.626667pt;}
.yee{bottom:740.706667pt;}
.y60{bottom:751.586667pt;}
.yed{bottom:757.666667pt;}
.y5f{bottom:768.226667pt;}
.yec{bottom:774.306667pt;}
.ya8{bottom:779.106667pt;}
.y5e{bottom:785.186667pt;}
.yeb{bottom:791.266667pt;}
.ya7{bottom:794.146667pt;}
.y5d{bottom:802.146667pt;}
.y1b{bottom:803.426667pt;}
.y19{bottom:806.626667pt;}
.yea{bottom:808.226667pt;}
.y5c{bottom:818.786667pt;}
.ye9{bottom:825.186667pt;}
.y17{bottom:827.453333pt;}
.y15{bottom:830.653333pt;}
.y5b{bottom:835.773333pt;}
.ye8{bottom:841.853333pt;}
.y14{bottom:851.453333pt;}
.y5a{bottom:852.733333pt;}
.y12{bottom:854.333333pt;}
.ye7{bottom:858.813333pt;}
.y59{bottom:869.373333pt;}
.ye6{bottom:875.773333pt;}
.yf{bottom:881.533333pt;}
.y58{bottom:886.333333pt;}
.ye5{bottom:892.413333pt;}
.y57{bottom:903.293333pt;}
.ye4{bottom:909.373333pt;}
.y56{bottom:920.253333pt;}
.ye3{bottom:926.333333pt;}
.y55{bottom:936.893333pt;}
.ye2{bottom:942.973333pt;}
.y54{bottom:953.893333pt;}
.ye1{bottom:959.973333pt;}
.y53{bottom:970.853333pt;}
.yd{bottom:972.773333pt;}
.ye0{bottom:976.933333pt;}
.y52{bottom:987.493333pt;}
.yc{bottom:989.093333pt;}
.ydf{bottom:993.893333pt;}
.y9{bottom:1000.613333pt;}
.y1{bottom:1001.893333pt;}
.y51{bottom:1004.453333pt;}
.yde{bottom:1008.613333pt;}
.ydd{bottom:1017.893333pt;}
.y50{bottom:1021.413333pt;}
.y4e{bottom:1039.013333pt;}
.y4d{bottom:1057.573333pt;}
.y4c{bottom:1059.493333pt;}
.y4a{bottom:1062.053333pt;}
.h13{height:2.880000pt;}
.h16{height:3.200000pt;}
.h1e{height:3.520000pt;}
.h17{height:5.022500pt;}
.h8{height:5.092500pt;}
.h14{height:5.160000pt;}
.h2a{height:10.185000pt;}
.h28{height:13.472000pt;}
.h2d{height:15.360000pt;}
.h30{height:15.392000pt;}
.h7{height:16.331250pt;}
.h5{height:16.599375pt;}
.h1f{height:16.960000pt;}
.h23{height:17.280000pt;}
.h15{height:20.800000pt;}
.h18{height:20.832000pt;}
.h32{height:21.356250pt;}
.h22{height:21.440000pt;}
.h35{height:21.930000pt;}
.h39{height:26.368125pt;}
.h31{height:26.381250pt;}
.h11{height:27.200000pt;}
.h26{height:27.840000pt;}
.h2f{height:30.720000pt;}
.h1d{height:34.105000pt;}
.hb{height:34.960000pt;}
.h9{height:36.431250pt;}
.h2b{height:41.285000pt;}
.h19{height:41.435625pt;}
.h29{height:41.456250pt;}
.h38{height:44.310000pt;}
.h2c{height:46.112000pt;}
.h27{height:47.713750pt;}
.h1c{height:47.737500pt;}
.h1b{height:49.020000pt;}
.h6{height:50.730000pt;}
.h37{height:52.736250pt;}
.h2e{height:52.762500pt;}
.h12{height:54.180000pt;}
.h36{height:56.590000pt;}
.hf{height:56.896875pt;}
.hd{height:57.758750pt;}
.hc{height:57.787500pt;}
.h3{height:58.563750pt;}
.ha{height:59.340000pt;}
.h33{height:61.410000pt;}
.h4{height:66.750000pt;}
.h20{height:67.872000pt;}
.h2{height:73.632000pt;}
.h34{height:74.820000pt;}
.h24{height:78.752000pt;}
.h10{height:81.270000pt;}
.he{height:84.832000pt;}
.h21{height:124.192000pt;}
.h1a{height:137.946667pt;}
.h25{height:152.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:70.112000pt;}
.wd{width:75.232000pt;}
.wa{width:96.672000pt;}
.wb{width:109.792000pt;}
.wc{width:122.304000pt;}
.w7{width:188.573333pt;}
.w9{width:198.173333pt;}
.w2{width:255.453333pt;}
.w3{width:386.720000pt;}
.w8{width:444.000000pt;}
.w6{width:453.600000pt;}
.w5{width:642.173333pt;}
.w1{width:793.333333pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.xb{left:9.920000pt;}
.x17{left:13.120000pt;}
.x1b{left:16.960000pt;}
.x19{left:19.546667pt;}
.x7{left:28.160000pt;}
.x5{left:39.040000pt;}
.x1{left:75.232000pt;}
.x9{left:77.154667pt;}
.x20{left:99.551988pt;}
.x2{left:104.354667pt;}
.x1e{left:122.591988pt;}
.x14{left:123.551988pt;}
.x23{left:126.463988pt;}
.xc{left:137.661333pt;}
.xa{left:140.861333pt;}
.x6{left:148.861333pt;}
.x15{left:158.786667pt;}
.xe{left:181.186667pt;}
.x12{left:191.106667pt;}
.x16{left:256.093333pt;}
.x8{left:321.088000pt;}
.x1f{left:327.493322pt;}
.x21{left:328.453322pt;}
.x3{left:330.693333pt;}
.x18{left:366.533333pt;}
.x22{left:396.959988pt;}
.x1c{left:420.959988pt;}
.x1a{left:489.466667pt;}
.x11{left:519.546667pt;}
.xd{left:529.146667pt;}
.x10{left:551.586655pt;}
.x13{left:565.986655pt;}
.x1d{left:601.506655pt;}
.xf{left:707.453322pt;}
}




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