
    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_31bd68a3445c4e55532fbef7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e3cea4b0b6b5b8f3c08975f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9d3e77c1c849fea0877605e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_350e30a5428ae2642f0d7f1e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_682104489680b4718d5c0209.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8d4af5560ef50c30df95c2f9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_807ed5cea8231bc37b85044e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_68cb0fd7640ae7b3bea7adcb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e25457bf2e2a96bf653b87b9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_156c916e51d238b498b35aad.woff2')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_9e88eacf7971ee245e989f98.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.233771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233771,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.239493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239493,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247516,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252366,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253552,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253608,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253838,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254422,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.269785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269785,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);}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-32.777033px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.206400px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.306600px;}
.ls3{letter-spacing:0.360000px;}
.ls15{letter-spacing:2.106720px;}
.ls9{letter-spacing:8.820000px;}
.ls13{letter-spacing:31.602720px;}
.ls14{letter-spacing:31.626720px;}
.ls8{letter-spacing:67.707476px;}
.lsb{letter-spacing:130.636965px;}
.lse{letter-spacing:143.802382px;}
.ls11{letter-spacing:157.214218px;}
.ls10{letter-spacing:164.849999px;}
.lsd{letter-spacing:195.570698px;}
.lsf{letter-spacing:259.557359px;}
.ls1{letter-spacing:420.636000px;}
.ls12{letter-spacing:434.316000px;}
.ls0{letter-spacing:2177.196000px;}
.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;}
}
.ws15{word-spacing:-259.630354px;}
.wsa{word-spacing:-195.643694px;}
.ws18{word-spacing:-164.922994px;}
.ws12{word-spacing:-143.871546px;}
.ws7{word-spacing:-130.709960px;}
.wsb{word-spacing:-24.672546px;}
.ws10{word-spacing:-24.453559px;}
.ws0{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.246600px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.733600px;}
.ws3{word-spacing:-14.680200px;}
.wsf{word-spacing:-7.080583px;}
.wsc{word-spacing:-0.079623px;}
.wsd{word-spacing:-0.076246px;}
.ws5{word-spacing:0.000000px;}
.ws16{word-spacing:17.445972px;}
.ws8{word-spacing:22.336684px;}
.ws1b{word-spacing:25.738646px;}
.ws1a{word-spacing:29.098970px;}
.wse{word-spacing:40.220629px;}
.ws13{word-spacing:40.253585px;}
.ws14{word-spacing:66.645072px;}
.ws11{word-spacing:66.674322px;}
.ws6{word-spacing:69.345913px;}
.ws19{word-spacing:70.566789px;}
.ws9{word-spacing:137.012925px;}
.ws17{word-spacing:141.976632px;}
._45{margin-left:-539.546741px;}
._44{margin-left:-524.689382px;}
._3d{margin-left:-430.722349px;}
._3f{margin-left:-418.745465px;}
._35{margin-left:-407.767321px;}
._32{margin-left:-401.313962px;}
._34{margin-left:-388.611601px;}
._3b{margin-left:-361.663897px;}
._48{margin-left:-345.198359px;}
._47{margin-left:-337.164102px;}
._40{margin-left:-306.828608px;}
._33{margin-left:-251.125539px;}
._37{margin-left:-82.569259px;}
._38{margin-left:-79.859189px;}
._59{margin-left:-10.640160px;}
._56{margin-left:-4.447440px;}
._a{margin-left:-3.124800px;}
._9{margin-left:-1.536480px;}
._1{width:1.015920px;}
._2{width:2.786880px;}
._8{width:3.947280px;}
._c{width:5.079600px;}
._e{width:6.155280px;}
._f{width:7.230960px;}
._7{width:9.083520px;}
._6{width:10.390800px;}
._5{width:11.473920px;}
._10{width:12.763440px;}
._b{width:13.787280px;}
._4{width:16.135200px;}
._3{width:17.210880px;}
._28{width:18.943920px;}
._17{width:20.437920px;}
._1c{width:21.556080px;}
._d{width:22.768560px;}
._24{width:23.844240px;}
._21{width:25.158960px;}
._14{width:26.652960px;}
._12{width:27.848160px;}
._11{width:28.864080px;}
._1f{width:30.836160px;}
._2b{width:31.911840px;}
._15{width:33.226560px;}
._1b{width:35.138880px;}
._1a{width:36.154800px;}
._1d{width:37.469520px;}
._1e{width:38.664720px;}
._27{width:39.667440px;}
._26{width:40.756320px;}
._2c{width:41.759040px;}
._57{width:42.967440px;}
._20{width:43.983360px;}
._2a{width:45.716400px;}
._55{width:46.851120px;}
._19{width:47.867760px;}
._18{width:48.943440px;}
._53{width:51.548789px;}
._50{width:52.621233px;}
._4b{width:54.660294px;}
._51{width:56.124549px;}
._2f{width:58.385520px;}
._23{width:59.819280px;}
._22{width:60.895920px;}
._29{width:62.269920px;}
._30{width:63.786720px;}
._13{width:67.170240px;}
._42{width:68.834943px;}
._3a{width:71.071074px;}
._2e{width:73.766880px;}
._2d{width:74.819520px;}
._39{width:88.803360px;}
._4a{width:91.086210px;}
._25{width:92.986560px;}
._3e{width:95.308315px;}
._31{width:98.398201px;}
._4c{width:99.880248px;}
._16{width:101.336160px;}
._3c{width:111.286916px;}
._4e{width:116.181390px;}
._43{width:131.030848px;}
._36{width:133.071157px;}
._41{width:136.461035px;}
._46{width:149.417603px;}
._54{width:153.670320px;}
._4d{width:162.582450px;}
._49{width:167.158210px;}
._52{width:288.201344px;}
._4f{width:297.138374px;}
._0{width:767.850240px;}
._5a{width:849.216000px;}
._58{width:941.817600px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.361545px;}
.fs3{font-size:42.134121px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:69.164235px;}
.fs9{font-size:71.496240px;}
.fs4{font-size:72.995698px;}
.fs6{font-size:76.245755px;}
.fs5{font-size:79.622601px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yab{bottom:3.179042px;}
.ya6{bottom:4.733680px;}
.yb5{bottom:7.128325px;}
.yaf{bottom:7.523168px;}
.ya2{bottom:7.523193px;}
.ybd{bottom:7.523196px;}
.yba{bottom:7.523201px;}
.yb1{bottom:7.523208px;}
.yc5{bottom:8.229531px;}
.y9f{bottom:12.679984px;}
.y81{bottom:12.680056px;}
.yc3{bottom:16.281440px;}
.yc4{bottom:37.300439px;}
.yc2{bottom:45.351603px;}
.y2{bottom:55.800000px;}
.yd2{bottom:88.560000px;}
.y3f{bottom:91.440000px;}
.y7f{bottom:104.760000px;}
.yd1{bottom:105.840000px;}
.y3e{bottom:108.720000px;}
.y7e{bottom:122.040000px;}
.yd0{bottom:123.120000px;}
.y3d{bottom:126.000000px;}
.y7d{bottom:139.356000px;}
.ycf{bottom:140.436000px;}
.y3c{bottom:143.136000px;}
.y7c{bottom:156.630000px;}
.yce{bottom:157.710000px;}
.y3b{bottom:160.410000px;}
.y7b{bottom:173.910000px;}
.ycd{bottom:174.810000px;}
.y3a{bottom:177.690000px;}
.y7a{bottom:191.010000px;}
.ycc{bottom:192.090000px;}
.y39{bottom:194.970000px;}
.y79{bottom:208.290000px;}
.ycb{bottom:209.370000px;}
.y38{bottom:212.250000px;}
.y78{bottom:225.570000px;}
.yca{bottom:226.650000px;}
.y37{bottom:229.530000px;}
.y77{bottom:242.850000px;}
.yc9{bottom:243.930000px;}
.y36{bottom:246.630000px;}
.y76{bottom:260.130000px;}
.yc8{bottom:261.210000px;}
.y35{bottom:263.910000px;}
.y75{bottom:277.410000px;}
.yc7{bottom:278.310000px;}
.y34{bottom:281.190000px;}
.yc1{bottom:292.440000px;}
.y74{bottom:294.510000px;}
.y33{bottom:298.470000px;}
.y73{bottom:311.790000px;}
.y32{bottom:315.750000px;}
.yc6{bottom:316.290000px;}
.y72{bottom:329.070000px;}
.y31{bottom:332.850000px;}
.y71{bottom:346.350000px;}
.y30{bottom:350.130000px;}
.yc0{bottom:352.650000px;}
.y70{bottom:363.630000px;}
.y2f{bottom:367.410000px;}
.ybf{bottom:369.930000px;}
.y6f{bottom:380.730000px;}
.y2e{bottom:384.690000px;}
.ybe{bottom:387.255000px;}
.y6e{bottom:398.055000px;}
.ybc{bottom:401.114959px;}
.y2d{bottom:402.015000px;}
.ybb{bottom:408.675000px;}
.y6d{bottom:415.335000px;}
.y2c{bottom:419.295000px;}
.yb9{bottom:425.414959px;}
.y6c{bottom:432.615000px;}
.yb8{bottom:432.975000px;}
.y2b{bottom:436.395000px;}
.y6b{bottom:449.895000px;}
.yb7{bottom:452.955000px;}
.y2a{bottom:453.675000px;}
.yb4{bottom:467.039959px;}
.y6a{bottom:467.175000px;}
.y29{bottom:470.955000px;}
.yb6{bottom:474.555000px;}
.y69{bottom:484.275000px;}
.y28{bottom:488.235000px;}
.yb3{bottom:493.275000px;}
.y68{bottom:501.555000px;}
.y27{bottom:505.515000px;}
.yb0{bottom:507.314959px;}
.yb2{bottom:514.875000px;}
.y67{bottom:518.835000px;}
.y26{bottom:522.795000px;}
.yae{bottom:531.615000px;}
.yad{bottom:534.689959px;}
.yaa{bottom:536.114959px;}
.y66{bottom:536.115000px;}
.yac{bottom:539.175000px;}
.y25{bottom:539.895000px;}
.y65{bottom:553.395000px;}
.y24{bottom:557.175000px;}
.ya9{bottom:560.955000px;}
.y64{bottom:570.675000px;}
.y23{bottom:574.455000px;}
.ya8{bottom:578.055000px;}
.y63{bottom:587.775000px;}
.y22{bottom:591.735000px;}
.ya5{bottom:592.139959px;}
.ya7{bottom:596.595000px;}
.y62{bottom:605.055000px;}
.y21{bottom:609.015000px;}
.ya4{bottom:618.375000px;}
.y61{bottom:622.335000px;}
.y20{bottom:626.295000px;}
.ya3{bottom:635.655000px;}
.y60{bottom:639.615000px;}
.y1f{bottom:643.425000px;}
.ya1{bottom:649.739959px;}
.y5f{bottom:656.925000px;}
.ya0{bottom:657.285000px;}
.y1e{bottom:660.705000px;}
.y5e{bottom:674.025000px;}
.y9e{bottom:674.040000px;}
.y1d{bottom:677.985000px;}
.y9d{bottom:678.525000px;}
.y5d{bottom:691.305000px;}
.y1c{bottom:695.265000px;}
.y9c{bottom:701.565000px;}
.y5c{bottom:708.585000px;}
.y40{bottom:712.545000px;}
.y9b{bottom:718.845000px;}
.y5b{bottom:725.865000px;}
.y1b{bottom:729.645000px;}
.y9a{bottom:736.125000px;}
.y5a{bottom:743.145000px;}
.y1a{bottom:746.925000px;}
.y99{bottom:753.225000px;}
.y59{bottom:760.425000px;}
.y19{bottom:764.205000px;}
.y98{bottom:770.505000px;}
.y58{bottom:777.525000px;}
.y18{bottom:781.665000px;}
.y97{bottom:787.785000px;}
.y57{bottom:794.805000px;}
.y17{bottom:798.945000px;}
.y96{bottom:805.065000px;}
.y56{bottom:812.085000px;}
.y16{bottom:816.225000px;}
.y95{bottom:822.345000px;}
.y55{bottom:829.365000px;}
.y15{bottom:833.325000px;}
.y94{bottom:839.625000px;}
.y54{bottom:846.645000px;}
.y14{bottom:850.605000px;}
.y93{bottom:856.725000px;}
.y53{bottom:863.925000px;}
.y13{bottom:867.885000px;}
.y92{bottom:874.005000px;}
.y52{bottom:881.025000px;}
.y12{bottom:885.165000px;}
.y91{bottom:891.285000px;}
.y51{bottom:898.350000px;}
.y11{bottom:902.490000px;}
.y90{bottom:908.610000px;}
.y50{bottom:915.630000px;}
.y10{bottom:919.770000px;}
.y8f{bottom:925.890000px;}
.y4f{bottom:932.910000px;}
.yf{bottom:936.870000px;}
.y8e{bottom:942.990000px;}
.y4e{bottom:950.190000px;}
.ye{bottom:954.150000px;}
.y8d{bottom:960.270000px;}
.y4d{bottom:967.470000px;}
.yd{bottom:971.250000px;}
.y8c{bottom:977.550000px;}
.y4c{bottom:984.570000px;}
.yc{bottom:988.530000px;}
.y8b{bottom:994.830000px;}
.y4b{bottom:1001.850000px;}
.yb{bottom:1005.990000px;}
.y8a{bottom:1012.110000px;}
.y4a{bottom:1019.130000px;}
.ya{bottom:1023.090000px;}
.y89{bottom:1029.390000px;}
.y49{bottom:1036.410000px;}
.y9{bottom:1040.190000px;}
.y88{bottom:1046.490000px;}
.y48{bottom:1053.690000px;}
.y8{bottom:1057.470000px;}
.y87{bottom:1063.770000px;}
.y47{bottom:1070.790000px;}
.y7{bottom:1074.750000px;}
.y86{bottom:1081.050000px;}
.y46{bottom:1088.070000px;}
.y85{bottom:1098.330000px;}
.y45{bottom:1105.350000px;}
.y6{bottom:1109.310000px;}
.y84{bottom:1115.610000px;}
.y44{bottom:1122.630000px;}
.y5{bottom:1126.410000px;}
.y83{bottom:1132.890000px;}
.y43{bottom:1139.910000px;}
.y4{bottom:1143.690000px;}
.y80{bottom:1146.689919px;}
.y82{bottom:1151.280000px;}
.y42{bottom:1157.220000px;}
.y3{bottom:1163.880000px;}
.y41{bottom:1174.320000px;}
.y1{bottom:1195.560000px;}
.h10{height:20.700007px;}
.h12{height:23.024406px;}
.he{height:23.024973px;}
.hb{height:24.299837px;}
.hc{height:24.299878px;}
.h9{height:24.299918px;}
.h15{height:40.594095px;}
.ha{height:41.352335px;}
.h18{height:49.642409px;}
.h3{height:52.998047px;}
.h8{height:53.573906px;}
.h14{height:57.001460px;}
.h6{height:58.621992px;}
.h7{height:58.651172px;}
.h2{height:59.439023px;}
.h5{height:60.226875px;}
.h19{height:61.423863px;}
.h13{height:67.880914px;}
.h17{height:70.134740px;}
.h16{height:70.169650px;}
.hd{height:71.641285px;}
.h11{height:74.831039px;}
.hf{height:78.145228px;}
.h4{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:24.300161px;}
.w7{width:24.300171px;}
.wc{width:98.328226px;}
.w5{width:101.850772px;}
.w8{width:104.401751px;}
.w3{width:108.000022px;}
.w4{width:108.000032px;}
.w9{width:117.751685px;}
.wa{width:126.219172px;}
.wb{width:150.522484px;}
.wd{width:376.040763px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:2.473879px;}
.x15{left:12.434213px;}
.x28{left:27.793631px;}
.x2b{left:30.334737px;}
.x2e{left:34.316845px;}
.x1a{left:39.154190px;}
.x2d{left:48.519633px;}
.x1{left:106.415987px;}
.x2c{left:109.509853px;}
.x1c{left:130.715987px;}
.x5{left:136.115987px;}
.x1f{left:152.339990px;}
.x11{left:160.949987px;}
.x1d{left:174.689980px;}
.x4{left:176.969987px;}
.x1e{left:198.929987px;}
.x19{left:205.139980px;}
.x26{left:208.829987px;}
.x27{left:212.639980px;}
.x16{left:214.409987px;}
.x24{left:222.914980px;}
.x23{left:224.129987px;}
.xc{left:230.249987px;}
.x2{left:277.994987px;}
.x20{left:283.964980px;}
.x2a{left:290.414980px;}
.x1b{left:306.974987px;}
.x17{left:324.239980px;}
.x25{left:349.094987px;}
.x29{left:363.134987px;}
.x22{left:388.334987px;}
.x7{left:391.394987px;}
.x18{left:432.254987px;}
.x8{left:449.204987px;}
.x6{left:451.364987px;}
.xd{left:457.304987px;}
.x3{left:461.444987px;}
.x10{left:487.004987px;}
.x13{left:492.764987px;}
.x12{left:498.884987px;}
.xe{left:504.104987px;}
.x2f{left:512.204987px;}
.xa{left:537.944987px;}
.x14{left:554.864987px;}
.xf{left:581.144987px;}
.x30{left:599.324987px;}
.x9{left:682.529987px;}
.xb{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-29.135141pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.272533pt;}
.ls3{letter-spacing:0.320000pt;}
.ls15{letter-spacing:1.872640pt;}
.ls9{letter-spacing:7.840000pt;}
.ls13{letter-spacing:28.091307pt;}
.ls14{letter-spacing:28.112640pt;}
.ls8{letter-spacing:60.184423pt;}
.lsb{letter-spacing:116.121746pt;}
.lse{letter-spacing:127.824340pt;}
.ls11{letter-spacing:139.745971pt;}
.ls10{letter-spacing:146.533332pt;}
.lsd{letter-spacing:173.840621pt;}
.lsf{letter-spacing:230.717652pt;}
.ls1{letter-spacing:373.898667pt;}
.ls12{letter-spacing:386.058667pt;}
.ls0{letter-spacing:1935.285333pt;}
.ws15{word-spacing:-230.782537pt;}
.wsa{word-spacing:-173.905506pt;}
.ws18{word-spacing:-146.598217pt;}
.ws12{word-spacing:-127.885819pt;}
.ws7{word-spacing:-116.186631pt;}
.wsb{word-spacing:-21.931152pt;}
.ws10{word-spacing:-21.736497pt;}
.ws0{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.552533pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.096533pt;}
.ws3{word-spacing:-13.049067pt;}
.wsf{word-spacing:-6.293851pt;}
.wsc{word-spacing:-0.070776pt;}
.wsd{word-spacing:-0.067774pt;}
.ws5{word-spacing:0.000000pt;}
.ws16{word-spacing:15.507530pt;}
.ws8{word-spacing:19.854830pt;}
.ws1b{word-spacing:22.878797pt;}
.ws1a{word-spacing:25.865751pt;}
.wse{word-spacing:35.751671pt;}
.ws13{word-spacing:35.780964pt;}
.ws14{word-spacing:59.240064pt;}
.ws11{word-spacing:59.266064pt;}
.ws6{word-spacing:61.640811pt;}
.ws19{word-spacing:62.726035pt;}
.ws9{word-spacing:121.789266pt;}
.ws17{word-spacing:126.201451pt;}
._45{margin-left:-479.597103pt;}
._44{margin-left:-466.390561pt;}
._3d{margin-left:-382.864310pt;}
._3f{margin-left:-372.218191pt;}
._35{margin-left:-362.459841pt;}
._32{margin-left:-356.723522pt;}
._34{margin-left:-345.432534pt;}
._3b{margin-left:-321.479019pt;}
._48{margin-left:-306.842986pt;}
._47{margin-left:-299.701424pt;}
._40{margin-left:-272.736540pt;}
._33{margin-left:-223.222701pt;}
._37{margin-left:-73.394897pt;}
._38{margin-left:-70.985946pt;}
._59{margin-left:-9.457920pt;}
._56{margin-left:-3.953280pt;}
._a{margin-left:-2.777600pt;}
._9{margin-left:-1.365760pt;}
._1{width:0.903040pt;}
._2{width:2.477227pt;}
._8{width:3.508693pt;}
._c{width:4.515200pt;}
._e{width:5.471360pt;}
._f{width:6.427520pt;}
._7{width:8.074240pt;}
._6{width:9.236267pt;}
._5{width:10.199040pt;}
._10{width:11.345280pt;}
._b{width:12.255360pt;}
._4{width:14.342400pt;}
._3{width:15.298560pt;}
._28{width:16.839040pt;}
._17{width:18.167040pt;}
._1c{width:19.160960pt;}
._d{width:20.238720pt;}
._24{width:21.194880pt;}
._21{width:22.363520pt;}
._14{width:23.691520pt;}
._12{width:24.753920pt;}
._11{width:25.656960pt;}
._1f{width:27.409920pt;}
._2b{width:28.366080pt;}
._15{width:29.534720pt;}
._1b{width:31.234560pt;}
._1a{width:32.137600pt;}
._1d{width:33.306240pt;}
._1e{width:34.368640pt;}
._27{width:35.259947pt;}
._26{width:36.227840pt;}
._2c{width:37.119147pt;}
._57{width:38.193280pt;}
._20{width:39.096320pt;}
._2a{width:40.636800pt;}
._55{width:41.645440pt;}
._19{width:42.549120pt;}
._18{width:43.505280pt;}
._53{width:45.821146pt;}
._50{width:46.774429pt;}
._4b{width:48.586928pt;}
._51{width:49.888488pt;}
._2f{width:51.898240pt;}
._23{width:53.172693pt;}
._22{width:54.129707pt;}
._29{width:55.351040pt;}
._30{width:56.699307pt;}
._13{width:59.706880pt;}
._42{width:61.186616pt;}
._3a{width:63.174288pt;}
._2e{width:65.570560pt;}
._2d{width:66.506240pt;}
._39{width:78.936320pt;}
._4a{width:80.965520pt;}
._25{width:82.654720pt;}
._3e{width:84.718503pt;}
._31{width:87.465067pt;}
._4c{width:88.782442pt;}
._16{width:90.076587pt;}
._3c{width:98.921703pt;}
._4e{width:103.272347pt;}
._43{width:116.471865pt;}
._36{width:118.285473pt;}
._41{width:121.298698pt;}
._46{width:132.815647pt;}
._54{width:136.595840pt;}
._4d{width:144.517734pt;}
._49{width:148.585075pt;}
._52{width:256.178973pt;}
._4f{width:264.122999pt;}
._0{width:682.533547pt;}
._5a{width:754.858667pt;}
._58{width:837.171200pt;}
.fs8{font-size:36.765818pt;}
.fs3{font-size:37.452552pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:61.479320pt;}
.fs9{font-size:63.552214pt;}
.fs4{font-size:64.885065pt;}
.fs6{font-size:67.774005pt;}
.fs5{font-size:70.775645pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:2.825815pt;}
.ya6{bottom:4.207716pt;}
.yb5{bottom:6.336289pt;}
.yaf{bottom:6.687260pt;}
.ya2{bottom:6.687283pt;}
.ybd{bottom:6.687285pt;}
.yba{bottom:6.687290pt;}
.yb1{bottom:6.687296pt;}
.yc5{bottom:7.315138pt;}
.y9f{bottom:11.271097pt;}
.y81{bottom:11.271161pt;}
.yc3{bottom:14.472391pt;}
.yc4{bottom:33.155946pt;}
.yc2{bottom:40.312536pt;}
.y2{bottom:49.600000pt;}
.yd2{bottom:78.720000pt;}
.y3f{bottom:81.280000pt;}
.y7f{bottom:93.120000pt;}
.yd1{bottom:94.080000pt;}
.y3e{bottom:96.640000pt;}
.y7e{bottom:108.480000pt;}
.yd0{bottom:109.440000pt;}
.y3d{bottom:112.000000pt;}
.y7d{bottom:123.872000pt;}
.ycf{bottom:124.832000pt;}
.y3c{bottom:127.232000pt;}
.y7c{bottom:139.226667pt;}
.yce{bottom:140.186667pt;}
.y3b{bottom:142.586667pt;}
.y7b{bottom:154.586667pt;}
.ycd{bottom:155.386667pt;}
.y3a{bottom:157.946667pt;}
.y7a{bottom:169.786667pt;}
.ycc{bottom:170.746667pt;}
.y39{bottom:173.306667pt;}
.y79{bottom:185.146667pt;}
.ycb{bottom:186.106667pt;}
.y38{bottom:188.666667pt;}
.y78{bottom:200.506667pt;}
.yca{bottom:201.466667pt;}
.y37{bottom:204.026667pt;}
.y77{bottom:215.866667pt;}
.yc9{bottom:216.826667pt;}
.y36{bottom:219.226667pt;}
.y76{bottom:231.226667pt;}
.yc8{bottom:232.186667pt;}
.y35{bottom:234.586667pt;}
.y75{bottom:246.586667pt;}
.yc7{bottom:247.386667pt;}
.y34{bottom:249.946667pt;}
.yc1{bottom:259.946667pt;}
.y74{bottom:261.786667pt;}
.y33{bottom:265.306667pt;}
.y73{bottom:277.146667pt;}
.y32{bottom:280.666667pt;}
.yc6{bottom:281.146667pt;}
.y72{bottom:292.506667pt;}
.y31{bottom:295.866667pt;}
.y71{bottom:307.866667pt;}
.y30{bottom:311.226667pt;}
.yc0{bottom:313.466667pt;}
.y70{bottom:323.226667pt;}
.y2f{bottom:326.586667pt;}
.ybf{bottom:328.826667pt;}
.y6f{bottom:338.426667pt;}
.y2e{bottom:341.946667pt;}
.ybe{bottom:344.226667pt;}
.y6e{bottom:353.826667pt;}
.ybc{bottom:356.546630pt;}
.y2d{bottom:357.346667pt;}
.ybb{bottom:363.266667pt;}
.y6d{bottom:369.186667pt;}
.y2c{bottom:372.706667pt;}
.yb9{bottom:378.146630pt;}
.y6c{bottom:384.546667pt;}
.yb8{bottom:384.866667pt;}
.y2b{bottom:387.906667pt;}
.y6b{bottom:399.906667pt;}
.yb7{bottom:402.626667pt;}
.y2a{bottom:403.266667pt;}
.yb4{bottom:415.146630pt;}
.y6a{bottom:415.266667pt;}
.y29{bottom:418.626667pt;}
.yb6{bottom:421.826667pt;}
.y69{bottom:430.466667pt;}
.y28{bottom:433.986667pt;}
.yb3{bottom:438.466667pt;}
.y68{bottom:445.826667pt;}
.y27{bottom:449.346667pt;}
.yb0{bottom:450.946630pt;}
.yb2{bottom:457.666667pt;}
.y67{bottom:461.186667pt;}
.y26{bottom:464.706667pt;}
.yae{bottom:472.546667pt;}
.yad{bottom:475.279964pt;}
.yaa{bottom:476.546630pt;}
.y66{bottom:476.546667pt;}
.yac{bottom:479.266667pt;}
.y25{bottom:479.906667pt;}
.y65{bottom:491.906667pt;}
.y24{bottom:495.266667pt;}
.ya9{bottom:498.626667pt;}
.y64{bottom:507.266667pt;}
.y23{bottom:510.626667pt;}
.ya8{bottom:513.826667pt;}
.y63{bottom:522.466667pt;}
.y22{bottom:525.986667pt;}
.ya5{bottom:526.346630pt;}
.ya7{bottom:530.306667pt;}
.y62{bottom:537.826667pt;}
.y21{bottom:541.346667pt;}
.ya4{bottom:549.666667pt;}
.y61{bottom:553.186667pt;}
.y20{bottom:556.706667pt;}
.ya3{bottom:565.026667pt;}
.y60{bottom:568.546667pt;}
.y1f{bottom:571.933333pt;}
.ya1{bottom:577.546630pt;}
.y5f{bottom:583.933333pt;}
.ya0{bottom:584.253333pt;}
.y1e{bottom:587.293333pt;}
.y5e{bottom:599.133333pt;}
.y9e{bottom:599.146667pt;}
.y1d{bottom:602.653333pt;}
.y9d{bottom:603.133333pt;}
.y5d{bottom:614.493333pt;}
.y1c{bottom:618.013333pt;}
.y9c{bottom:623.613333pt;}
.y5c{bottom:629.853333pt;}
.y40{bottom:633.373333pt;}
.y9b{bottom:638.973333pt;}
.y5b{bottom:645.213333pt;}
.y1b{bottom:648.573333pt;}
.y9a{bottom:654.333333pt;}
.y5a{bottom:660.573333pt;}
.y1a{bottom:663.933333pt;}
.y99{bottom:669.533333pt;}
.y59{bottom:675.933333pt;}
.y19{bottom:679.293333pt;}
.y98{bottom:684.893333pt;}
.y58{bottom:691.133333pt;}
.y18{bottom:694.813333pt;}
.y97{bottom:700.253333pt;}
.y57{bottom:706.493333pt;}
.y17{bottom:710.173333pt;}
.y96{bottom:715.613333pt;}
.y56{bottom:721.853333pt;}
.y16{bottom:725.533333pt;}
.y95{bottom:730.973333pt;}
.y55{bottom:737.213333pt;}
.y15{bottom:740.733333pt;}
.y94{bottom:746.333333pt;}
.y54{bottom:752.573333pt;}
.y14{bottom:756.093333pt;}
.y93{bottom:761.533333pt;}
.y53{bottom:767.933333pt;}
.y13{bottom:771.453333pt;}
.y92{bottom:776.893333pt;}
.y52{bottom:783.133333pt;}
.y12{bottom:786.813333pt;}
.y91{bottom:792.253333pt;}
.y51{bottom:798.533333pt;}
.y11{bottom:802.213333pt;}
.y90{bottom:807.653333pt;}
.y50{bottom:813.893333pt;}
.y10{bottom:817.573333pt;}
.y8f{bottom:823.013333pt;}
.y4f{bottom:829.253333pt;}
.yf{bottom:832.773333pt;}
.y8e{bottom:838.213333pt;}
.y4e{bottom:844.613333pt;}
.ye{bottom:848.133333pt;}
.y8d{bottom:853.573333pt;}
.y4d{bottom:859.973333pt;}
.yd{bottom:863.333333pt;}
.y8c{bottom:868.933333pt;}
.y4c{bottom:875.173333pt;}
.yc{bottom:878.693333pt;}
.y8b{bottom:884.293333pt;}
.y4b{bottom:890.533333pt;}
.yb{bottom:894.213333pt;}
.y8a{bottom:899.653333pt;}
.y4a{bottom:905.893333pt;}
.ya{bottom:909.413333pt;}
.y89{bottom:915.013333pt;}
.y49{bottom:921.253333pt;}
.y9{bottom:924.613333pt;}
.y88{bottom:930.213333pt;}
.y48{bottom:936.613333pt;}
.y8{bottom:939.973333pt;}
.y87{bottom:945.573333pt;}
.y47{bottom:951.813333pt;}
.y7{bottom:955.333333pt;}
.y86{bottom:960.933333pt;}
.y46{bottom:967.173333pt;}
.y85{bottom:976.293333pt;}
.y45{bottom:982.533333pt;}
.y6{bottom:986.053333pt;}
.y84{bottom:991.653333pt;}
.y44{bottom:997.893333pt;}
.y5{bottom:1001.253333pt;}
.y83{bottom:1007.013333pt;}
.y43{bottom:1013.253333pt;}
.y4{bottom:1016.613333pt;}
.y80{bottom:1019.279928pt;}
.y82{bottom:1023.360000pt;}
.y42{bottom:1028.640000pt;}
.y3{bottom:1034.560000pt;}
.y41{bottom:1043.840000pt;}
.y1{bottom:1062.720000pt;}
.h10{height:18.400007pt;}
.h12{height:20.466139pt;}
.he{height:20.466642pt;}
.hb{height:21.599855pt;}
.hc{height:21.599891pt;}
.h9{height:21.599927pt;}
.h15{height:36.083640pt;}
.ha{height:36.757631pt;}
.h18{height:44.126586pt;}
.h3{height:47.109375pt;}
.h8{height:47.621250pt;}
.h14{height:50.667964pt;}
.h6{height:52.108438pt;}
.h7{height:52.134375pt;}
.h2{height:52.834688pt;}
.h5{height:53.535000pt;}
.h19{height:54.598989pt;}
.h13{height:60.338590pt;}
.h17{height:62.341991pt;}
.h16{height:62.373022pt;}
.hd{height:63.681143pt;}
.h11{height:66.516479pt;}
.hf{height:69.462425pt;}
.h4{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:21.600143pt;}
.w7{width:21.600152pt;}
.wc{width:87.402868pt;}
.w5{width:90.534019pt;}
.w8{width:92.801556pt;}
.w3{width:96.000020pt;}
.w4{width:96.000029pt;}
.w9{width:104.668164pt;}
.wa{width:112.194819pt;}
.wb{width:133.797763pt;}
.wd{width:334.258456pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:2.199004pt;}
.x15{left:11.052634pt;}
.x28{left:24.705450pt;}
.x2b{left:26.964211pt;}
.x2e{left:30.503862pt;}
.x1a{left:34.803725pt;}
.x2d{left:43.128562pt;}
.x1{left:94.591988pt;}
.x2c{left:97.342091pt;}
.x1c{left:116.191988pt;}
.x5{left:120.991988pt;}
.x1f{left:135.413324pt;}
.x11{left:143.066655pt;}
.x1d{left:155.279982pt;}
.x4{left:157.306655pt;}
.x1e{left:176.826655pt;}
.x19{left:182.346649pt;}
.x26{left:185.626655pt;}
.x27{left:189.013315pt;}
.x16{left:190.586655pt;}
.x24{left:198.146649pt;}
.x23{left:199.226655pt;}
.xc{left:204.666655pt;}
.x2{left:247.106655pt;}
.x20{left:252.413315pt;}
.x2a{left:258.146649pt;}
.x1b{left:272.866655pt;}
.x17{left:288.213315pt;}
.x25{left:310.306655pt;}
.x29{left:322.786655pt;}
.x22{left:345.186655pt;}
.x7{left:347.906655pt;}
.x18{left:384.226655pt;}
.x8{left:399.293322pt;}
.x6{left:401.213322pt;}
.xd{left:406.493322pt;}
.x3{left:410.173322pt;}
.x10{left:432.893322pt;}
.x13{left:438.013322pt;}
.x12{left:443.453322pt;}
.xe{left:448.093322pt;}
.x2f{left:455.293322pt;}
.xa{left:478.173322pt;}
.x14{left:493.213322pt;}
.xf{left:516.573322pt;}
.x30{left:532.733322pt;}
.x9{left:606.693322pt;}
.xb{left:699.333322pt;}
}




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