
    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_fa5659bfcabc8e281f14f1cb.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_47c7bb93016f11bf7c18e709.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_596c97fa388bc632ee0691a6.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_68c20280b0359f70016c2a46.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_b889cfb8f8a29bfc0f2d0e53.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_93cc5f05c55258a07f72982a.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_b2612fa5010193618d81575e.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_da4c6b9624a0462f18a08228.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064453;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_38829abc01cbd6ef92060793.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bead1a5360f0a92bfa459fae.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.080566;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_699f3019f508dde769c0775f.woff2')format("woff");}.fff{font-family:fff;line-height:0.766602;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);}
.v3{vertical-align:-92.160000px;}
.v2{vertical-align:-76.320000px;}
.v4{vertical-align:-61.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.v5{vertical-align:24.480000px;}
.lsd{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.266000px;}
.ls9{letter-spacing:-0.810000px;}
.lse{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.630000px;}
.lsb{letter-spacing:-0.472200px;}
.ls13{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.184200px;}
.ls7{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.086400px;}
.ls4{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.305400px;}
.ls11{letter-spacing:0.313800px;}
.ls18{letter-spacing:0.449280px;}
.ls3{letter-spacing:0.483840px;}
.ls6{letter-spacing:0.498240px;}
.ls1a{letter-spacing:0.569280px;}
.ls22{letter-spacing:0.610560px;}
.ls1{letter-spacing:0.627840px;}
.ls10{letter-spacing:0.630000px;}
.lsa{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.869760px;}
.lsc{letter-spacing:1.080000px;}
.ls15{letter-spacing:6.480000px;}
.ls20{letter-spacing:7.505280px;}
.ls1c{letter-spacing:15.120000px;}
.ls2{letter-spacing:19.800000px;}
.ls1b{letter-spacing:25.200000px;}
.ls1f{letter-spacing:40.625280px;}
.ls1d{letter-spacing:66.960000px;}
.ls0{letter-spacing:196.829760px;}
.ls14{letter-spacing:199.800000px;}
.ls16{letter-spacing:533.796000px;}
.ls1e{letter-spacing:1380.096000px;}
.ls17{letter-spacing:2527.476000px;}
.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;}
.ws11{word-spacing:-16.865400px;}
.ws10{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.254600px;}
.ws3{word-spacing:-15.212160px;}
.ws7{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.027960px;}
.ws2{word-spacing:-14.402160px;}
.wsc{word-spacing:-14.310000px;}
.wsd{word-spacing:-13.993800px;}
.wsa{word-spacing:-13.680000px;}
.wsb{word-spacing:-13.050000px;}
.ws9{word-spacing:-12.240000px;}
.ws6{word-spacing:-12.003960px;}
.ws8{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.440000px;}
.ws12{word-spacing:-9.720000px;}
.wse{word-spacing:0.000000px;}
._22{margin-left:-5.566560px;}
._21{margin-left:-4.495200px;}
._7{margin-left:-3.208800px;}
._2{margin-left:-2.185440px;}
._0{margin-left:-1.152000px;}
._1{width:1.212000px;}
._4{width:2.246400px;}
._1e{width:3.312480px;}
._d{width:4.371840px;}
._e{width:5.821920px;}
._f{width:7.161600px;}
._c{width:9.048480px;}
._9{width:10.455360px;}
._8{width:12.155520px;}
._19{width:13.186080px;}
._1b{width:14.208000px;}
._b{width:15.881760px;}
._a{width:17.395200px;}
._1a{width:19.434240px;}
._1d{width:21.263040px;}
._1c{width:22.834080px;}
._17{width:24.308160px;}
._18{width:25.944960px;}
._10{width:27.942240px;}
._14{width:29.286720px;}
._12{width:30.469440px;}
._13{width:31.544160px;}
._15{width:32.924640px;}
._16{width:34.642560px;}
._1f{width:36.400320px;}
._20{width:37.428000px;}
._27{width:40.538880px;}
._26{width:41.863200px;}
._25{width:45.838080px;}
._24{width:46.857600px;}
._2c{width:51.865920px;}
._2a{width:53.654400px;}
._2b{width:54.915840px;}
._23{width:64.125600px;}
._3{width:152.778240px;}
._29{width:195.120000px;}
._6{width:197.865120px;}
._5{width:199.104960px;}
._28{width:847.716000px;}
._11{width:948.665760px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc7{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;}
.fsa{font-size:11.520000px;}
.fs3{font-size:18.720000px;}
.fsc{font-size:24.480000px;}
.fs9{font-size:30.240000px;}
.fsd{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;}
.fsb{font-size:83.520000px;}
.fs7{font-size:90.720000px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.080000px;}
.y1a{bottom:1.440000px;}
.y27{bottom:2.880000px;}
.y4a{bottom:2.910000px;}
.y38{bottom:3.240000px;}
.y3c{bottom:4.680000px;}
.y2b{bottom:5.040000px;}
.y18{bottom:7.560000px;}
.y7{bottom:7.920000px;}
.y1c{bottom:9.360000px;}
.y15{bottom:10.080000px;}
.yad{bottom:11.520000px;}
.y8f{bottom:11.880000px;}
.y2e{bottom:17.280000px;}
.y26{bottom:18.360000px;}
.y48{bottom:18.363000px;}
.y37{bottom:18.720000px;}
.y95{bottom:20.160000px;}
.y8e{bottom:20.520000px;}
.y6{bottom:23.760000px;}
.y13{bottom:27.000000px;}
.y45{bottom:33.840000px;}
.y25{bottom:33.885000px;}
.y36{bottom:34.230000px;}
.y5{bottom:37.080000px;}
.y94{bottom:37.440000px;}
.y97{bottom:37.800000px;}
.y9d{bottom:37.845000px;}
.y2d{bottom:42.870000px;}
.y4{bottom:45.000000px;}
.y24{bottom:49.365000px;}
.y44{bottom:49.680000px;}
.y35{bottom:49.710000px;}
.y3e{bottom:49.725000px;}
.y12{bottom:52.560000px;}
.y93{bottom:54.750000px;}
.y86{bottom:54.756000px;}
.y9b{bottom:55.080000px;}
.y99{bottom:55.110000px;}
.yb{bottom:55.116000px;}
.y4e{bottom:55.476000px;}
.y2{bottom:60.120000px;}
.y23{bottom:64.845000px;}
.y43{bottom:65.160000px;}
.y34{bottom:65.190000px;}
.y3{bottom:65.880000px;}
.ya{bottom:68.796000px;}
.y92{bottom:72.030000px;}
.y33{bottom:80.670000px;}
.y22{bottom:80.685000px;}
.y91{bottom:89.310000px;}
.y10{bottom:92.196000px;}
.ye1{bottom:92.916000px;}
.y32{bottom:96.150000px;}
.y21{bottom:96.165000px;}
.y8c{bottom:97.236000px;}
.yab{bottom:100.116000px;}
.y138{bottom:109.836000px;}
.yf{bottom:111.276000px;}
.y31{bottom:111.630000px;}
.y20{bottom:111.645000px;}
.ye0{bottom:111.996000px;}
.y8b{bottom:116.316000px;}
.yaa{bottom:118.836000px;}
.ydc{bottom:120.996000px;}
.y85{bottom:124.236000px;}
.y42{bottom:127.110000px;}
.y1f{bottom:127.125000px;}
.y137{bottom:127.152000px;}
.y30{bottom:127.470000px;}
.ye{bottom:130.032000px;}
.ydf{bottom:131.112000px;}
.y8a{bottom:135.432000px;}
.ya9{bottom:137.952000px;}
.ydb{bottom:140.112000px;}
.y41{bottom:142.590000px;}
.y84{bottom:142.992000px;}
.y136{bottom:144.432000px;}
.y47{bottom:145.512000px;}
.yde{bottom:150.195000px;}
.y89{bottom:154.155000px;}
.ya8{bottom:157.035000px;}
.y40{bottom:158.070000px;}
.yda{bottom:159.195000px;}
.y135{bottom:161.715000px;}
.y83{bottom:162.075000px;}
.ya7{bottom:175.755000px;}
.y46{bottom:176.475000px;}
.yd9{bottom:178.275000px;}
.y134{bottom:178.995000px;}
.y3f{bottom:180.435000px;}
.y82{bottom:181.155000px;}
.ydd{bottom:184.755000px;}
.y88{bottom:192.315000px;}
.ya6{bottom:194.835000px;}
.y133{bottom:196.275000px;}
.yd8{bottom:196.995000px;}
.y81{bottom:200.235000px;}
.y87{bottom:207.795000px;}
.y132{bottom:213.555000px;}
.ya5{bottom:213.915000px;}
.yd7{bottom:216.075000px;}
.y80{bottom:218.955000px;}
.y131{bottom:230.835000px;}
.ya4{bottom:232.635000px;}
.yd6{bottom:235.155000px;}
.y7f{bottom:238.035000px;}
.y130{bottom:248.115000px;}
.ya3{bottom:251.715000px;}
.yd5{bottom:253.875000px;}
.y7e{bottom:257.115000px;}
.y12f{bottom:265.425000px;}
.ya2{bottom:270.825000px;}
.yd4{bottom:272.985000px;}
.y7d{bottom:275.865000px;}
.y12e{bottom:283.065000px;}
.ya1{bottom:289.905000px;}
.yd3{bottom:292.065000px;}
.y7c{bottom:294.945000px;}
.y12d{bottom:301.785000px;}
.ya0{bottom:308.625000px;}
.yd2{bottom:310.785000px;}
.y7b{bottom:314.025000px;}
.y12c{bottom:320.865000px;}
.y9f{bottom:327.705000px;}
.yd1{bottom:329.865000px;}
.y7a{bottom:333.105000px;}
.y12b{bottom:339.945000px;}
.y9e{bottom:346.785000px;}
.yd0{bottom:348.945000px;}
.y3d{bottom:351.105000px;}
.y79{bottom:351.825000px;}
.y12a{bottom:358.665000px;}
.y9c{bottom:362.625000px;}
.ycf{bottom:368.025000px;}
.y78{bottom:370.905000px;}
.y129{bottom:377.745000px;}
.yce{bottom:386.745000px;}
.y77{bottom:389.985000px;}
.y128{bottom:396.870000px;}
.ycd{bottom:405.870000px;}
.y76{bottom:408.750000px;}
.y9a{bottom:415.230000px;}
.y127{bottom:415.950000px;}
.ycc{bottom:424.950000px;}
.y75{bottom:427.830000px;}
.y126{bottom:434.670000px;}
.y3b{bottom:440.070000px;}
.ycb{bottom:443.670000px;}
.y74{bottom:446.910000px;}
.y125{bottom:453.750000px;}
.y3a{bottom:459.150000px;}
.yca{bottom:462.750000px;}
.y73{bottom:465.630000px;}
.y124{bottom:472.830000px;}
.yc9{bottom:481.830000px;}
.y72{bottom:484.710000px;}
.y98{bottom:485.070000px;}
.y39{bottom:490.470000px;}
.y123{bottom:491.550000px;}
.y2f{bottom:493.710000px;}
.yc8{bottom:500.910000px;}
.y71{bottom:503.790000px;}
.y122{bottom:510.630000px;}
.yc7{bottom:519.630000px;}
.y70{bottom:522.870000px;}
.yff{bottom:524.310000px;}
.y121{bottom:529.740000px;}
.yc6{bottom:538.740000px;}
.y6f{bottom:541.620000px;}
.yfe{bottom:543.060000px;}
.y120{bottom:548.460000px;}
.y96{bottom:554.940000px;}
.yc5{bottom:557.820000px;}
.y6e{bottom:560.700000px;}
.y11f{bottom:567.540000px;}
.yfd{bottom:575.460000px;}
.yc4{bottom:576.540000px;}
.y6d{bottom:579.780000px;}
.y11e{bottom:586.620000px;}
.yfc{bottom:594.540000px;}
.yc3{bottom:595.620000px;}
.y6c{bottom:598.500000px;}
.y11d{bottom:605.700000px;}
.y90{bottom:607.500000px;}
.yfb{bottom:613.620000px;}
.yc2{bottom:614.700000px;}
.y6b{bottom:617.580000px;}
.y11c{bottom:624.420000px;}
.yc1{bottom:633.420000px;}
.y2c{bottom:633.780000px;}
.y6a{bottom:636.660000px;}
.y11b{bottom:643.500000px;}
.yc0{bottom:652.500000px;}
.yfa{bottom:653.580000px;}
.y69{bottom:655.380000px;}
.y11a{bottom:662.610000px;}
.ybf{bottom:671.610000px;}
.yf9{bottom:672.690000px;}
.y68{bottom:674.490000px;}
.y119{bottom:681.330000px;}
.ybe{bottom:690.690000px;}
.yf8{bottom:691.410000px;}
.y67{bottom:693.570000px;}
.y118{bottom:700.410000px;}
.ybd{bottom:709.410000px;}
.y2a{bottom:709.770000px;}
.yf7{bottom:710.490000px;}
.y8d{bottom:711.570000px;}
.y66{bottom:712.650000px;}
.y117{bottom:719.490000px;}
.ybc{bottom:728.490000px;}
.y29{bottom:729.210000px;}
.yf6{bottom:729.570000px;}
.y65{bottom:731.370000px;}
.y116{bottom:738.210000px;}
.ybb{bottom:744.690000px;}
.yf5{bottom:748.290000px;}
.y64{bottom:750.450000px;}
.y115{bottom:757.290000px;}
.y28{bottom:760.170000px;}
.yba{bottom:762.690000px;}
.y1e{bottom:764.130000px;}
.yf4{bottom:767.370000px;}
.y63{bottom:769.530000px;}
.y114{bottom:776.370000px;}
.yb9{bottom:780.690000px;}
.yf3{bottom:786.450000px;}
.y62{bottom:788.250000px;}
.y113{bottom:795.495000px;}
.yb8{bottom:798.735000px;}
.yf2{bottom:805.215000px;}
.y61{bottom:807.375000px;}
.y112{bottom:814.215000px;}
.yb7{bottom:816.735000px;}
.yf1{bottom:824.295000px;}
.y60{bottom:826.455000px;}
.y111{bottom:833.295000px;}
.yb6{bottom:834.735000px;}
.yf0{bottom:843.375000px;}
.y5f{bottom:845.535000px;}
.y110{bottom:852.375000px;}
.yb5{bottom:852.735000px;}
.yef{bottom:862.455000px;}
.y5e{bottom:864.255000px;}
.yb4{bottom:870.735000px;}
.y10f{bottom:871.095000px;}
.yee{bottom:881.175000px;}
.y5d{bottom:883.335000px;}
.yb3{bottom:888.735000px;}
.y10e{bottom:890.175000px;}
.yed{bottom:900.255000px;}
.y5c{bottom:902.415000px;}
.y1d{bottom:903.855000px;}
.yb2{bottom:906.735000px;}
.y1b{bottom:907.455000px;}
.y10d{bottom:909.255000px;}
.yec{bottom:919.335000px;}
.y5b{bottom:921.135000px;}
.yb1{bottom:924.735000px;}
.y10c{bottom:928.335000px;}
.y19{bottom:930.885000px;}
.y17{bottom:934.485000px;}
.yeb{bottom:938.085000px;}
.y5a{bottom:940.245000px;}
.yb0{bottom:942.765000px;}
.y10b{bottom:947.085000px;}
.yea{bottom:957.165000px;}
.y16{bottom:957.885000px;}
.y59{bottom:959.325000px;}
.yaf{bottom:960.765000px;}
.y14{bottom:961.125000px;}
.y10a{bottom:966.165000px;}
.ye9{bottom:976.245000px;}
.y58{bottom:978.045000px;}
.yae{bottom:978.765000px;}
.y109{bottom:985.245000px;}
.y11{bottom:991.725000px;}
.ye8{bottom:995.325000px;}
.yac{bottom:996.765000px;}
.y57{bottom:997.125000px;}
.y108{bottom:1003.965000px;}
.ye7{bottom:1014.045000px;}
.y56{bottom:1016.205000px;}
.y107{bottom:1023.045000px;}
.ye6{bottom:1033.125000px;}
.y55{bottom:1035.285000px;}
.y106{bottom:1042.125000px;}
.ye5{bottom:1052.205000px;}
.y54{bottom:1054.005000px;}
.y105{bottom:1060.845000px;}
.ye4{bottom:1070.970000px;}
.y53{bottom:1073.130000px;}
.y104{bottom:1079.970000px;}
.ye3{bottom:1090.050000px;}
.y52{bottom:1092.210000px;}
.yd{bottom:1094.370000px;}
.y103{bottom:1099.050000px;}
.ye2{bottom:1109.130000px;}
.y51{bottom:1110.930000px;}
.yc{bottom:1112.730000px;}
.y102{bottom:1118.130000px;}
.y9{bottom:1125.690000px;}
.y1{bottom:1127.130000px;}
.y50{bottom:1130.010000px;}
.y101{bottom:1134.690000px;}
.y100{bottom:1145.130000px;}
.y4f{bottom:1149.090000px;}
.y4d{bottom:1168.890000px;}
.y4c{bottom:1189.770000px;}
.y4b{bottom:1191.930000px;}
.y49{bottom:1194.810000px;}
.h12{height:3.240000px;}
.h15{height:3.600000px;}
.h1c{height:3.960000px;}
.h16{height:5.650313px;}
.h37{height:5.653125px;}
.h8{height:5.729063px;}
.h13{height:5.805000px;}
.h2a{height:11.458125px;}
.h28{height:15.156000px;}
.h35{height:17.280000px;}
.h36{height:17.316000px;}
.h7{height:18.372656px;}
.h5{height:18.674297px;}
.h24{height:19.080000px;}
.h1f{height:19.440000px;}
.h14{height:23.400000px;}
.h17{height:23.436000px;}
.h3a{height:24.671250px;}
.h3e{height:29.664141px;}
.h10{height:30.600000px;}
.h1d{height:30.960000px;}
.h23{height:31.320000px;}
.h34{height:33.840000px;}
.h2c{height:34.560000px;}
.h22{height:38.368125px;}
.hb{height:39.330000px;}
.h9{height:40.985156px;}
.h30{height:42.406875px;}
.h2b{height:46.445625px;}
.h18{height:46.615078px;}
.h29{height:46.638281px;}
.h3d{height:51.325313px;}
.h2f{height:51.480000px;}
.h33{height:51.876000px;}
.h1e{height:53.677969px;}
.h1b{height:53.704687px;}
.h1a{height:55.147500px;}
.h6{height:57.071250px;}
.h3c{height:59.328281px;}
.h2e{height:59.357813px;}
.h11{height:60.952500px;}
.h3b{height:63.663750px;}
.hd{height:64.978594px;}
.hc{height:65.010937px;}
.h3{height:65.884219px;}
.ha{height:66.757500px;}
.h38{height:69.086250px;}
.h32{height:69.120000px;}
.h31{height:69.156000px;}
.h4{height:75.093750px;}
.h20{height:75.996000px;}
.h26{height:78.449766px;}
.h2{height:82.836000px;}
.h39{height:84.172500px;}
.h25{height:88.956000px;}
.hf{height:91.428750px;}
.he{height:95.436000px;}
.h2d{height:103.356000px;}
.h19{height:139.716000px;}
.h21{height:140.076000px;}
.h27{height:170.670000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:52.236000px;}
.wd{width:73.836000px;}
.w10{width:83.916000px;}
.w11{width:84.636000px;}
.we{width:94.716000px;}
.wf{width:137.592000px;}
.wa{width:163.875000px;}
.w7{width:212.145000px;}
.w9{width:222.945000px;}
.w2{width:287.385000px;}
.wc{width:328.785000px;}
.w3{width:435.060000px;}
.w8{width:499.500000px;}
.w6{width:510.300000px;}
.wb{width:557.130000px;}
.w5{width:722.445000px;}
.w1{width:892.500000px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x1d{left:21.630000px;}
.x1f{left:22.680000px;}
.x21{left:27.000000px;}
.x7{left:31.680000px;}
.x16{left:34.560000px;}
.x15{left:45.360000px;}
.x9{left:52.560000px;}
.x5{left:66.639000px;}
.xa{left:79.959000px;}
.x1{left:84.636000px;}
.x14{left:85.716000px;}
.x24{left:111.995987px;}
.x2{left:117.399000px;}
.x27{left:130.715987px;}
.x25{left:138.995987px;}
.x1a{left:191.234987px;}
.xd{left:203.835000px;}
.x10{left:214.995000px;}
.x13{left:217.514987px;}
.xb{left:231.549000px;}
.x18{left:238.035000px;}
.x17{left:250.305000px;}
.x6{left:265.794000px;}
.x8{left:361.224000px;}
.x26{left:369.509987px;}
.x3{left:372.030000px;}
.x1c{left:415.230000px;}
.x1b{left:446.579987px;}
.x23{left:462.419987px;}
.x1e{left:489.780000px;}
.xf{left:584.490000px;}
.xc{left:595.290000px;}
.x11{left:636.734987px;}
.x22{left:670.575000px;}
.x20{left:723.525000px;}
.x12{left:744.764987px;}
.x19{left:753.044987px;}
.xe{left:795.884987px;}
@media print{
.v3{vertical-align:-81.920000pt;}
.v2{vertical-align:-67.840000pt;}
.v4{vertical-align:-55.040000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.v5{vertical-align:21.760000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-1.125333pt;}
.ls9{letter-spacing:-0.720000pt;}
.lse{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.560000pt;}
.lsb{letter-spacing:-0.419733pt;}
.ls13{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.163733pt;}
.ls7{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.076800pt;}
.ls4{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.271467pt;}
.ls11{letter-spacing:0.278933pt;}
.ls18{letter-spacing:0.399360pt;}
.ls3{letter-spacing:0.430080pt;}
.ls6{letter-spacing:0.442880pt;}
.ls1a{letter-spacing:0.506027pt;}
.ls22{letter-spacing:0.542720pt;}
.ls1{letter-spacing:0.558080pt;}
.ls10{letter-spacing:0.560000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.773120pt;}
.lsc{letter-spacing:0.960000pt;}
.ls15{letter-spacing:5.760000pt;}
.ls20{letter-spacing:6.671360pt;}
.ls1c{letter-spacing:13.440000pt;}
.ls2{letter-spacing:17.600000pt;}
.ls1b{letter-spacing:22.400000pt;}
.ls1f{letter-spacing:36.111360pt;}
.ls1d{letter-spacing:59.520000pt;}
.ls0{letter-spacing:174.959787pt;}
.ls14{letter-spacing:177.600000pt;}
.ls16{letter-spacing:474.485333pt;}
.ls1e{letter-spacing:1226.752000pt;}
.ls17{letter-spacing:2246.645333pt;}
.ws1{word-spacing:-48.640000pt;}
.ws11{word-spacing:-14.991467pt;}
.ws10{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.448533pt;}
.ws3{word-spacing:-13.521920pt;}
.ws7{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.358187pt;}
.ws2{word-spacing:-12.801920pt;}
.wsc{word-spacing:-12.720000pt;}
.wsd{word-spacing:-12.438933pt;}
.wsa{word-spacing:-12.160000pt;}
.wsb{word-spacing:-11.600000pt;}
.ws9{word-spacing:-10.880000pt;}
.ws6{word-spacing:-10.670187pt;}
.ws8{word-spacing:-10.560000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws12{word-spacing:-8.640000pt;}
.wse{word-spacing:0.000000pt;}
._22{margin-left:-4.948053pt;}
._21{margin-left:-3.995733pt;}
._7{margin-left:-2.852267pt;}
._2{margin-left:-1.942613pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.077333pt;}
._4{width:1.996800pt;}
._1e{width:2.944427pt;}
._d{width:3.886080pt;}
._e{width:5.175040pt;}
._f{width:6.365867pt;}
._c{width:8.043093pt;}
._9{width:9.293653pt;}
._8{width:10.804907pt;}
._19{width:11.720960pt;}
._1b{width:12.629333pt;}
._b{width:14.117120pt;}
._a{width:15.462400pt;}
._1a{width:17.274880pt;}
._1d{width:18.900480pt;}
._1c{width:20.296960pt;}
._17{width:21.607253pt;}
._18{width:23.062187pt;}
._10{width:24.837547pt;}
._14{width:26.032640pt;}
._12{width:27.083947pt;}
._13{width:28.039253pt;}
._15{width:29.266347pt;}
._16{width:30.793387pt;}
._1f{width:32.355840pt;}
._20{width:33.269333pt;}
._27{width:36.034560pt;}
._26{width:37.211733pt;}
._25{width:40.744960pt;}
._24{width:41.651200pt;}
._2c{width:46.103040pt;}
._2a{width:47.692800pt;}
._2b{width:48.814080pt;}
._23{width:57.000533pt;}
._3{width:135.802880pt;}
._29{width:173.440000pt;}
._6{width:175.880107pt;}
._5{width:176.982187pt;}
._28{width:753.525333pt;}
._11{width:843.258453pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:10.240000pt;}
.fs3{font-size:16.640000pt;}
.fsc{font-size:21.760000pt;}
.fs9{font-size:26.880000pt;}
.fsd{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;}
.fsb{font-size:74.240000pt;}
.fs7{font-size:80.640000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.960000pt;}
.y1a{bottom:1.280000pt;}
.y27{bottom:2.560000pt;}
.y4a{bottom:2.586667pt;}
.y38{bottom:2.880000pt;}
.y3c{bottom:4.160000pt;}
.y2b{bottom:4.480000pt;}
.y18{bottom:6.720000pt;}
.y7{bottom:7.040000pt;}
.y1c{bottom:8.320000pt;}
.y15{bottom:8.960000pt;}
.yad{bottom:10.240000pt;}
.y8f{bottom:10.560000pt;}
.y2e{bottom:15.360000pt;}
.y26{bottom:16.320000pt;}
.y48{bottom:16.322667pt;}
.y37{bottom:16.640000pt;}
.y95{bottom:17.920000pt;}
.y8e{bottom:18.240000pt;}
.y6{bottom:21.120000pt;}
.y13{bottom:24.000000pt;}
.y45{bottom:30.080000pt;}
.y25{bottom:30.120000pt;}
.y36{bottom:30.426667pt;}
.y5{bottom:32.960000pt;}
.y94{bottom:33.280000pt;}
.y97{bottom:33.600000pt;}
.y9d{bottom:33.640000pt;}
.y2d{bottom:38.106667pt;}
.y4{bottom:40.000000pt;}
.y24{bottom:43.880000pt;}
.y44{bottom:44.160000pt;}
.y35{bottom:44.186667pt;}
.y3e{bottom:44.200000pt;}
.y12{bottom:46.720000pt;}
.y93{bottom:48.666667pt;}
.y86{bottom:48.672000pt;}
.y9b{bottom:48.960000pt;}
.y99{bottom:48.986667pt;}
.yb{bottom:48.992000pt;}
.y4e{bottom:49.312000pt;}
.y2{bottom:53.440000pt;}
.y23{bottom:57.640000pt;}
.y43{bottom:57.920000pt;}
.y34{bottom:57.946667pt;}
.y3{bottom:58.560000pt;}
.ya{bottom:61.152000pt;}
.y92{bottom:64.026667pt;}
.y33{bottom:71.706667pt;}
.y22{bottom:71.720000pt;}
.y91{bottom:79.386667pt;}
.y10{bottom:81.952000pt;}
.ye1{bottom:82.592000pt;}
.y32{bottom:85.466667pt;}
.y21{bottom:85.480000pt;}
.y8c{bottom:86.432000pt;}
.yab{bottom:88.992000pt;}
.y138{bottom:97.632000pt;}
.yf{bottom:98.912000pt;}
.y31{bottom:99.226667pt;}
.y20{bottom:99.240000pt;}
.ye0{bottom:99.552000pt;}
.y8b{bottom:103.392000pt;}
.yaa{bottom:105.632000pt;}
.ydc{bottom:107.552000pt;}
.y85{bottom:110.432000pt;}
.y42{bottom:112.986667pt;}
.y1f{bottom:113.000000pt;}
.y137{bottom:113.024000pt;}
.y30{bottom:113.306667pt;}
.ye{bottom:115.584000pt;}
.ydf{bottom:116.544000pt;}
.y8a{bottom:120.384000pt;}
.ya9{bottom:122.624000pt;}
.ydb{bottom:124.544000pt;}
.y41{bottom:126.746667pt;}
.y84{bottom:127.104000pt;}
.y136{bottom:128.384000pt;}
.y47{bottom:129.344000pt;}
.yde{bottom:133.506667pt;}
.y89{bottom:137.026667pt;}
.ya8{bottom:139.586667pt;}
.y40{bottom:140.506667pt;}
.yda{bottom:141.506667pt;}
.y135{bottom:143.746667pt;}
.y83{bottom:144.066667pt;}
.ya7{bottom:156.226667pt;}
.y46{bottom:156.866667pt;}
.yd9{bottom:158.466667pt;}
.y134{bottom:159.106667pt;}
.y3f{bottom:160.386667pt;}
.y82{bottom:161.026667pt;}
.ydd{bottom:164.226667pt;}
.y88{bottom:170.946667pt;}
.ya6{bottom:173.186667pt;}
.y133{bottom:174.466667pt;}
.yd8{bottom:175.106667pt;}
.y81{bottom:177.986667pt;}
.y87{bottom:184.706667pt;}
.y132{bottom:189.826667pt;}
.ya5{bottom:190.146667pt;}
.yd7{bottom:192.066667pt;}
.y80{bottom:194.626667pt;}
.y131{bottom:205.186667pt;}
.ya4{bottom:206.786667pt;}
.yd6{bottom:209.026667pt;}
.y7f{bottom:211.586667pt;}
.y130{bottom:220.546667pt;}
.ya3{bottom:223.746667pt;}
.yd5{bottom:225.666667pt;}
.y7e{bottom:228.546667pt;}
.y12f{bottom:235.933333pt;}
.ya2{bottom:240.733333pt;}
.yd4{bottom:242.653333pt;}
.y7d{bottom:245.213333pt;}
.y12e{bottom:251.613333pt;}
.ya1{bottom:257.693333pt;}
.yd3{bottom:259.613333pt;}
.y7c{bottom:262.173333pt;}
.y12d{bottom:268.253333pt;}
.ya0{bottom:274.333333pt;}
.yd2{bottom:276.253333pt;}
.y7b{bottom:279.133333pt;}
.y12c{bottom:285.213333pt;}
.y9f{bottom:291.293333pt;}
.yd1{bottom:293.213333pt;}
.y7a{bottom:296.093333pt;}
.y12b{bottom:302.173333pt;}
.y9e{bottom:308.253333pt;}
.yd0{bottom:310.173333pt;}
.y3d{bottom:312.093333pt;}
.y79{bottom:312.733333pt;}
.y12a{bottom:318.813333pt;}
.y9c{bottom:322.333333pt;}
.ycf{bottom:327.133333pt;}
.y78{bottom:329.693333pt;}
.y129{bottom:335.773333pt;}
.yce{bottom:343.773333pt;}
.y77{bottom:346.653333pt;}
.y128{bottom:352.773333pt;}
.ycd{bottom:360.773333pt;}
.y76{bottom:363.333333pt;}
.y9a{bottom:369.093333pt;}
.y127{bottom:369.733333pt;}
.ycc{bottom:377.733333pt;}
.y75{bottom:380.293333pt;}
.y126{bottom:386.373333pt;}
.y3b{bottom:391.173333pt;}
.ycb{bottom:394.373333pt;}
.y74{bottom:397.253333pt;}
.y125{bottom:403.333333pt;}
.y3a{bottom:408.133333pt;}
.yca{bottom:411.333333pt;}
.y73{bottom:413.893333pt;}
.y124{bottom:420.293333pt;}
.yc9{bottom:428.293333pt;}
.y72{bottom:430.853333pt;}
.y98{bottom:431.173333pt;}
.y39{bottom:435.973333pt;}
.y123{bottom:436.933333pt;}
.y2f{bottom:438.853333pt;}
.yc8{bottom:445.253333pt;}
.y71{bottom:447.813333pt;}
.y122{bottom:453.893333pt;}
.yc7{bottom:461.893333pt;}
.y70{bottom:464.773333pt;}
.yff{bottom:466.053333pt;}
.y121{bottom:470.880000pt;}
.yc6{bottom:478.880000pt;}
.y6f{bottom:481.440000pt;}
.yfe{bottom:482.720000pt;}
.y120{bottom:487.520000pt;}
.y96{bottom:493.280000pt;}
.yc5{bottom:495.840000pt;}
.y6e{bottom:498.400000pt;}
.y11f{bottom:504.480000pt;}
.yfd{bottom:511.520000pt;}
.yc4{bottom:512.480000pt;}
.y6d{bottom:515.360000pt;}
.y11e{bottom:521.440000pt;}
.yfc{bottom:528.480000pt;}
.yc3{bottom:529.440000pt;}
.y6c{bottom:532.000000pt;}
.y11d{bottom:538.400000pt;}
.y90{bottom:540.000000pt;}
.yfb{bottom:545.440000pt;}
.yc2{bottom:546.400000pt;}
.y6b{bottom:548.960000pt;}
.y11c{bottom:555.040000pt;}
.yc1{bottom:563.040000pt;}
.y2c{bottom:563.360000pt;}
.y6a{bottom:565.920000pt;}
.y11b{bottom:572.000000pt;}
.yc0{bottom:580.000000pt;}
.yfa{bottom:580.960000pt;}
.y69{bottom:582.560000pt;}
.y11a{bottom:588.986667pt;}
.ybf{bottom:596.986667pt;}
.yf9{bottom:597.946667pt;}
.y68{bottom:599.546667pt;}
.y119{bottom:605.626667pt;}
.ybe{bottom:613.946667pt;}
.yf8{bottom:614.586667pt;}
.y67{bottom:616.506667pt;}
.y118{bottom:622.586667pt;}
.ybd{bottom:630.586667pt;}
.y2a{bottom:630.906667pt;}
.yf7{bottom:631.546667pt;}
.y8d{bottom:632.506667pt;}
.y66{bottom:633.466667pt;}
.y117{bottom:639.546667pt;}
.ybc{bottom:647.546667pt;}
.y29{bottom:648.186667pt;}
.yf6{bottom:648.506667pt;}
.y65{bottom:650.106667pt;}
.y116{bottom:656.186667pt;}
.ybb{bottom:661.946667pt;}
.yf5{bottom:665.146667pt;}
.y64{bottom:667.066667pt;}
.y115{bottom:673.146667pt;}
.y28{bottom:675.706667pt;}
.yba{bottom:677.946667pt;}
.y1e{bottom:679.226667pt;}
.yf4{bottom:682.106667pt;}
.y63{bottom:684.026667pt;}
.y114{bottom:690.106667pt;}
.yb9{bottom:693.946667pt;}
.yf3{bottom:699.066667pt;}
.y62{bottom:700.666667pt;}
.y113{bottom:707.106667pt;}
.yb8{bottom:709.986667pt;}
.yf2{bottom:715.746667pt;}
.y61{bottom:717.666667pt;}
.y112{bottom:723.746667pt;}
.yb7{bottom:725.986667pt;}
.yf1{bottom:732.706667pt;}
.y60{bottom:734.626667pt;}
.y111{bottom:740.706667pt;}
.yb6{bottom:741.986667pt;}
.yf0{bottom:749.666667pt;}
.y5f{bottom:751.586667pt;}
.y110{bottom:757.666667pt;}
.yb5{bottom:757.986667pt;}
.yef{bottom:766.626667pt;}
.y5e{bottom:768.226667pt;}
.yb4{bottom:773.986667pt;}
.y10f{bottom:774.306667pt;}
.yee{bottom:783.266667pt;}
.y5d{bottom:785.186667pt;}
.yb3{bottom:789.986667pt;}
.y10e{bottom:791.266667pt;}
.yed{bottom:800.226667pt;}
.y5c{bottom:802.146667pt;}
.y1d{bottom:803.426667pt;}
.yb2{bottom:805.986667pt;}
.y1b{bottom:806.626667pt;}
.y10d{bottom:808.226667pt;}
.yec{bottom:817.186667pt;}
.y5b{bottom:818.786667pt;}
.yb1{bottom:821.986667pt;}
.y10c{bottom:825.186667pt;}
.y19{bottom:827.453333pt;}
.y17{bottom:830.653333pt;}
.yeb{bottom:833.853333pt;}
.y5a{bottom:835.773333pt;}
.yb0{bottom:838.013333pt;}
.y10b{bottom:841.853333pt;}
.yea{bottom:850.813333pt;}
.y16{bottom:851.453333pt;}
.y59{bottom:852.733333pt;}
.yaf{bottom:854.013333pt;}
.y14{bottom:854.333333pt;}
.y10a{bottom:858.813333pt;}
.ye9{bottom:867.773333pt;}
.y58{bottom:869.373333pt;}
.yae{bottom:870.013333pt;}
.y109{bottom:875.773333pt;}
.y11{bottom:881.533333pt;}
.ye8{bottom:884.733333pt;}
.yac{bottom:886.013333pt;}
.y57{bottom:886.333333pt;}
.y108{bottom:892.413333pt;}
.ye7{bottom:901.373333pt;}
.y56{bottom:903.293333pt;}
.y107{bottom:909.373333pt;}
.ye6{bottom:918.333333pt;}
.y55{bottom:920.253333pt;}
.y106{bottom:926.333333pt;}
.ye5{bottom:935.293333pt;}
.y54{bottom:936.893333pt;}
.y105{bottom:942.973333pt;}
.ye4{bottom:951.973333pt;}
.y53{bottom:953.893333pt;}
.y104{bottom:959.973333pt;}
.ye3{bottom:968.933333pt;}
.y52{bottom:970.853333pt;}
.yd{bottom:972.773333pt;}
.y103{bottom:976.933333pt;}
.ye2{bottom:985.893333pt;}
.y51{bottom:987.493333pt;}
.yc{bottom:989.093333pt;}
.y102{bottom:993.893333pt;}
.y9{bottom:1000.613333pt;}
.y1{bottom:1001.893333pt;}
.y50{bottom:1004.453333pt;}
.y101{bottom:1008.613333pt;}
.y100{bottom:1017.893333pt;}
.y4f{bottom:1021.413333pt;}
.y4d{bottom:1039.013333pt;}
.y4c{bottom:1057.573333pt;}
.y4b{bottom:1059.493333pt;}
.y49{bottom:1062.053333pt;}
.h12{height:2.880000pt;}
.h15{height:3.200000pt;}
.h1c{height:3.520000pt;}
.h16{height:5.022500pt;}
.h37{height:5.025000pt;}
.h8{height:5.092500pt;}
.h13{height:5.160000pt;}
.h2a{height:10.185000pt;}
.h28{height:13.472000pt;}
.h35{height:15.360000pt;}
.h36{height:15.392000pt;}
.h7{height:16.331250pt;}
.h5{height:16.599375pt;}
.h24{height:16.960000pt;}
.h1f{height:17.280000pt;}
.h14{height:20.800000pt;}
.h17{height:20.832000pt;}
.h3a{height:21.930000pt;}
.h3e{height:26.368125pt;}
.h10{height:27.200000pt;}
.h1d{height:27.520000pt;}
.h23{height:27.840000pt;}
.h34{height:30.080000pt;}
.h2c{height:30.720000pt;}
.h22{height:34.105000pt;}
.hb{height:34.960000pt;}
.h9{height:36.431250pt;}
.h30{height:37.695000pt;}
.h2b{height:41.285000pt;}
.h18{height:41.435625pt;}
.h29{height:41.456250pt;}
.h3d{height:45.622500pt;}
.h2f{height:45.760000pt;}
.h33{height:46.112000pt;}
.h1e{height:47.713750pt;}
.h1b{height:47.737500pt;}
.h1a{height:49.020000pt;}
.h6{height:50.730000pt;}
.h3c{height:52.736250pt;}
.h2e{height:52.762500pt;}
.h11{height:54.180000pt;}
.h3b{height:56.590000pt;}
.hd{height:57.758750pt;}
.hc{height:57.787500pt;}
.h3{height:58.563750pt;}
.ha{height:59.340000pt;}
.h38{height:61.410000pt;}
.h32{height:61.440000pt;}
.h31{height:61.472000pt;}
.h4{height:66.750000pt;}
.h20{height:67.552000pt;}
.h26{height:69.733125pt;}
.h2{height:73.632000pt;}
.h39{height:74.820000pt;}
.h25{height:79.072000pt;}
.hf{height:81.270000pt;}
.he{height:84.832000pt;}
.h2d{height:91.872000pt;}
.h19{height:124.192000pt;}
.h21{height:124.512000pt;}
.h27{height:151.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:46.432000pt;}
.wd{width:65.632000pt;}
.w10{width:74.592000pt;}
.w11{width:75.232000pt;}
.we{width:84.192000pt;}
.wf{width:122.304000pt;}
.wa{width:145.666667pt;}
.w7{width:188.573333pt;}
.w9{width:198.173333pt;}
.w2{width:255.453333pt;}
.wc{width:292.253333pt;}
.w3{width:386.720000pt;}
.w8{width:444.000000pt;}
.w6{width:453.600000pt;}
.wb{width:495.226667pt;}
.w5{width:642.173333pt;}
.w1{width:793.333333pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x1d{left:19.226667pt;}
.x1f{left:20.160000pt;}
.x21{left:24.000000pt;}
.x7{left:28.160000pt;}
.x16{left:30.720000pt;}
.x15{left:40.320000pt;}
.x9{left:46.720000pt;}
.x5{left:59.234667pt;}
.xa{left:71.074667pt;}
.x1{left:75.232000pt;}
.x14{left:76.192000pt;}
.x24{left:99.551988pt;}
.x2{left:104.354667pt;}
.x27{left:116.191988pt;}
.x25{left:123.551988pt;}
.x1a{left:169.986655pt;}
.xd{left:181.186667pt;}
.x10{left:191.106667pt;}
.x13{left:193.346655pt;}
.xb{left:205.821333pt;}
.x18{left:211.586667pt;}
.x17{left:222.493333pt;}
.x6{left:236.261333pt;}
.x8{left:321.088000pt;}
.x26{left:328.453322pt;}
.x3{left:330.693333pt;}
.x1c{left:369.093333pt;}
.x1b{left:396.959988pt;}
.x23{left:411.039988pt;}
.x1e{left:435.360000pt;}
.xf{left:519.546667pt;}
.xc{left:529.146667pt;}
.x11{left:565.986655pt;}
.x22{left:596.066667pt;}
.x20{left:643.133333pt;}
.x12{left:662.013322pt;}
.x19{left:669.373322pt;}
.xe{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; }
  