
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_e8f88e4c2f0d09f087ab072b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_f81a0f1497ec2b9a0640284b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_afde6a79085c02898030019b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_7a78e6ee662b9885b2f13a8f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.920000;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_5bad34abf35b59aca84a1a86.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112000;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_8fc97aced3b372ed5c7cdb4c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.061000;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_e7a7d6cedc4fdf2c6a47b10c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.061000;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_c75c04faebe570952c2c1c66.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3f61c7d0a64c6b0a17ba8bac.woff')format("woff");}.ffb{font-family:ffb;line-height:1.018000;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_38f15a84044af8248e478ef8.woff')format("woff");}.ffc{font-family:ffc;line-height:1.018000;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_a88bbe05889b2101b40ff16a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.009000;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d707ac74d7014d27c79ee695.woff')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m5{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls20{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.457800px;}
.ls37{letter-spacing:-0.392400px;}
.ls35{letter-spacing:-0.385800px;}
.ls25{letter-spacing:-0.331200px;}
.ls8{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.280200px;}
.ls3a{letter-spacing:-0.227682px;}
.lse{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.136800px;}
.ls38{letter-spacing:-0.103200px;}
.ls9{letter-spacing:-0.072000px;}
.ls34{letter-spacing:-0.067200px;}
.ls7{letter-spacing:-0.034560px;}
.lsc{letter-spacing:-0.028800px;}
.ls1f{letter-spacing:-0.013680px;}
.ls2b{letter-spacing:-0.008640px;}
.ls33{letter-spacing:-0.000006px;}
.ls4{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.017280px;}
.ls39{letter-spacing:0.040320px;}
.lsb{letter-spacing:0.060600px;}
.ls24{letter-spacing:0.063877px;}
.ls12{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.080400px;}
.ls1e{letter-spacing:0.090000px;}
.ls1b{letter-spacing:0.101520px;}
.ls2{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.206640px;}
.ls2f{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.219600px;}
.ls28{letter-spacing:0.242400px;}
.ls1d{letter-spacing:0.242640px;}
.lsa{letter-spacing:0.262200px;}
.ls23{letter-spacing:0.276380px;}
.ls2a{letter-spacing:0.283800px;}
.ls18{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.291433px;}
.ls2c{letter-spacing:0.305400px;}
.ls29{letter-spacing:0.321000px;}
.ls27{letter-spacing:0.326400px;}
.ls36{letter-spacing:0.406800px;}
.ls11{letter-spacing:0.504000px;}
.ls2e{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.810000px;}
.ls15{letter-spacing:0.936000px;}
.ls14{letter-spacing:1.116000px;}
.ls30{letter-spacing:1.656000px;}
.ls17{letter-spacing:10.296000px;}
.ls16{letter-spacing:11.196000px;}
.ls31{letter-spacing:31.896000px;}
.ls13{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-59.760000px;}
.ws1{word-spacing:-22.708560px;}
.ws2{word-spacing:-22.593600px;}
.ws3{word-spacing:-19.872000px;}
.ws2a{word-spacing:-19.504734px;}
.ws29{word-spacing:-19.277052px;}
.ws18{word-spacing:-19.224000px;}
.ws27{word-spacing:-19.080000px;}
.ws12{word-spacing:-19.051200px;}
.ws10{word-spacing:-19.008000px;}
.ws26{word-spacing:-18.792000px;}
.wse{word-spacing:-18.648000px;}
.ws11{word-spacing:-18.576000px;}
.ws4{word-spacing:-18.504000px;}
.ws28{word-spacing:-18.503994px;}
.ws5{word-spacing:-18.432000px;}
.wsf{word-spacing:-18.360000px;}
.wsd{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.282240px;}
.ws1a{word-spacing:-18.220735px;}
.ws22{word-spacing:-18.216000px;}
.ws1b{word-spacing:-18.008232px;}
.ws19{word-spacing:-17.944355px;}
.ws17{word-spacing:-17.784000px;}
.ws15{word-spacing:-17.568000px;}
.ws24{word-spacing:-17.329080px;}
.ws9{word-spacing:-17.285880px;}
.wsa{word-spacing:-17.084280px;}
.ws25{word-spacing:-17.040960px;}
.ws8{word-spacing:-17.023680px;}
.ws23{word-spacing:-17.015040px;}
.wsb{word-spacing:-16.994880px;}
.wsc{word-spacing:-16.565880px;}
.ws1e{word-spacing:-15.684720px;}
.ws20{word-spacing:-15.679320px;}
.ws21{word-spacing:-15.642120px;}
.ws1f{word-spacing:-15.600720px;}
.ws1d{word-spacing:-15.078120px;}
.ws1c{word-spacing:-15.027120px;}
.ws7{word-spacing:-10.732320px;}
.ws0{word-spacing:-0.156240px;}
.ws14{word-spacing:-0.142560px;}
.ws13{word-spacing:0.000000px;}
._7{margin-left:-4.901760px;}
._8{margin-left:-3.871920px;}
._1d{margin-left:-2.280480px;}
._1{margin-left:-1.157760px;}
._2{width:1.169280px;}
._16{width:2.448000px;}
._3{width:3.986880px;}
._1e{width:5.138400px;}
._9{width:6.160320px;}
._6{width:7.968960px;}
._5{width:9.232320px;}
._19{width:11.198400px;}
._1c{width:13.080000px;}
._13{width:14.328000px;}
._14{width:15.336000px;}
._11{width:16.865760px;}
._e{width:20.566080px;}
._10{width:22.238400px;}
._23{width:23.328000px;}
._18{width:24.677760px;}
._17{width:25.776000px;}
._4{width:27.555840px;}
._21{width:28.584000px;}
._12{width:30.240000px;}
._15{width:31.531200px;}
._2a{width:33.450240px;}
._22{width:34.517760px;}
._20{width:35.760000px;}
._1f{width:37.224000px;}
._b{width:39.214080px;}
._c{width:40.273920px;}
._d{width:41.912160px;}
._a{width:48.553920px;}
._f{width:50.607360px;}
._25{width:51.773760px;}
._26{width:53.508480px;}
._1b{width:54.816000px;}
._1a{width:56.064000px;}
._2c{width:59.328000px;}
._2b{width:61.704000px;}
._27{width:63.936000px;}
._28{width:79.776000px;}
._29{width:81.354720px;}
._24{width:92.928000px;}
._2d{width:125.280000px;}
._0{width:1481.489760px;}
.fc5{color:rgb(21,27,28);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsa{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsb{font-size:69.822393px;}
.fs7{font-size:72.000000px;}
.fsd{font-size:75.893905px;}
.fs6{font-size:77.760000px;}
.fsc{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.320000px;}
.yc{bottom:5.400000px;}
.y72{bottom:6.300000px;}
.y6a{bottom:6.480000px;}
.y42{bottom:6.660000px;}
.yb{bottom:16.740000px;}
.y68{bottom:16.920000px;}
.y6c{bottom:16.965000px;}
.y6f{bottom:17.100000px;}
.y6{bottom:19.650000px;}
.ya{bottom:24.156000px;}
.y7{bottom:26.820000px;}
.y71{bottom:27.360000px;}
.y69{bottom:27.540000px;}
.y6d{bottom:27.585000px;}
.y41{bottom:30.450000px;}
.y43{bottom:39.450000px;}
.y9{bottom:47.520000px;}
.y40{bottom:54.210000px;}
.y4{bottom:58.320000px;}
.y3{bottom:78.156000px;}
.y2{bottom:98.676000px;}
.ya4{bottom:128.196000px;}
.y5{bottom:131.220000px;}
.y75{bottom:132.336000px;}
.y8a{bottom:133.056000px;}
.y3e{bottom:135.216000px;}
.ya3{bottom:150.150000px;}
.y74{bottom:150.510000px;}
.y89{bottom:155.010000px;}
.y3d{bottom:157.170000px;}
.ya2{bottom:172.110000px;}
.y88{bottom:176.970000px;}
.y3c{bottom:178.950000px;}
.y73{bottom:193.350000px;}
.ya1{bottom:194.070000px;}
.y87{bottom:198.930000px;}
.y3b{bottom:200.910000px;}
.ya0{bottom:216.030000px;}
.y86{bottom:220.890000px;}
.y3a{bottom:222.870000px;}
.y70{bottom:236.190000px;}
.y9f{bottom:237.990000px;}
.y85{bottom:242.850000px;}
.y39{bottom:244.830000px;}
.y9e{bottom:259.950000px;}
.y84{bottom:264.630000px;}
.y38{bottom:266.790000px;}
.y6e{bottom:278.850000px;}
.y9d{bottom:281.730000px;}
.y83{bottom:286.590000px;}
.y37{bottom:288.750000px;}
.y9c{bottom:303.690000px;}
.y82{bottom:308.550000px;}
.y36{bottom:310.710000px;}
.y6b{bottom:321.690000px;}
.y9b{bottom:325.650000px;}
.y81{bottom:330.510000px;}
.y35{bottom:332.670000px;}
.y9a{bottom:347.655000px;}
.y80{bottom:352.515000px;}
.y34{bottom:354.675000px;}
.y67{bottom:364.575000px;}
.y99{bottom:369.615000px;}
.y7f{bottom:374.475000px;}
.y33{bottom:376.635000px;}
.y98{bottom:391.575000px;}
.y7e{bottom:396.435000px;}
.y32{bottom:398.415000px;}
.y66{bottom:411.915000px;}
.y97{bottom:413.535000px;}
.y7d{bottom:418.395000px;}
.y31{bottom:420.375000px;}
.y96{bottom:435.495000px;}
.y65{bottom:436.395000px;}
.y7c{bottom:440.355000px;}
.y30{bottom:442.335000px;}
.y95{bottom:457.455000px;}
.y64{bottom:459.615000px;}
.y7b{bottom:462.315000px;}
.y2f{bottom:464.295000px;}
.y94{bottom:479.415000px;}
.y63{bottom:480.135000px;}
.y7a{bottom:484.095000px;}
.y2e{bottom:486.255000px;}
.y93{bottom:501.195000px;}
.y62{bottom:502.095000px;}
.y79{bottom:506.055000px;}
.y2d{bottom:508.215000px;}
.yba{bottom:516.855000px;}
.y92{bottom:523.155000px;}
.y61{bottom:524.055000px;}
.y78{bottom:527.655000px;}
.y2c{bottom:530.175000px;}
.yb9{bottom:538.815000px;}
.y91{bottom:545.115000px;}
.y60{bottom:545.835000px;}
.y77{bottom:547.815000px;}
.y2b{bottom:551.775000px;}
.yb8{bottom:563.655000px;}
.y76{bottom:563.835000px;}
.y90{bottom:567.075000px;}
.y5f{bottom:567.795000px;}
.y2a{bottom:573.195000px;}
.y29{bottom:584.715000px;}
.yb7{bottom:585.615000px;}
.y8f{bottom:589.035000px;}
.y5e{bottom:589.755000px;}
.y28{bottom:604.905000px;}
.yb6{bottom:607.605000px;}
.y8e{bottom:611.025000px;}
.y5d{bottom:611.745000px;}
.y27{bottom:625.065000px;}
.yb5{bottom:632.445000px;}
.y8d{bottom:632.985000px;}
.y5c{bottom:633.705000px;}
.y26{bottom:645.045000px;}
.yb4{bottom:654.405000px;}
.y8c{bottom:654.945000px;}
.y5b{bottom:655.665000px;}
.y25{bottom:665.205000px;}
.y8b{bottom:672.405000px;}
.y5a{bottom:677.625000px;}
.yb3{bottom:679.245000px;}
.y24{bottom:685.365000px;}
.y59{bottom:699.585000px;}
.yb2{bottom:701.205000px;}
.y23{bottom:705.525000px;}
.y58{bottom:721.545000px;}
.yb1{bottom:723.165000px;}
.y22{bottom:725.505000px;}
.y57{bottom:743.505000px;}
.y21{bottom:745.665000px;}
.yb0{bottom:748.005000px;}
.y56{bottom:765.285000px;}
.y20{bottom:765.825000px;}
.yaf{bottom:769.965000px;}
.y1f{bottom:785.805000px;}
.y55{bottom:787.245000px;}
.yae{bottom:794.805000px;}
.y1e{bottom:805.965000px;}
.y54{bottom:809.205000px;}
.yad{bottom:816.585000px;}
.y1d{bottom:826.125000px;}
.y53{bottom:831.165000px;}
.yac{bottom:841.425000px;}
.y1c{bottom:846.285000px;}
.y52{bottom:853.125000px;}
.yab{bottom:863.385000px;}
.y1b{bottom:866.265000px;}
.y51{bottom:875.130000px;}
.y1a{bottom:886.470000px;}
.yaa{bottom:888.270000px;}
.y50{bottom:897.090000px;}
.y19{bottom:903.570000px;}
.ya9{bottom:910.230000px;}
.y18{bottom:912.390000px;}
.y4f{bottom:919.050000px;}
.y17{bottom:931.650000px;}
.ya8{bottom:935.070000px;}
.y4e{bottom:941.010000px;}
.y16{bottom:944.610000px;}
.y15{bottom:956.490000px;}
.ya7{bottom:957.030000px;}
.y4d{bottom:962.970000px;}
.y14{bottom:978.450000px;}
.ya6{bottom:981.870000px;}
.y4c{bottom:984.750000px;}
.y13{bottom:1000.410000px;}
.ya5{bottom:1003.830000px;}
.y4b{bottom:1006.710000px;}
.y4a{bottom:1028.670000px;}
.y12{bottom:1043.610000px;}
.y49{bottom:1050.630000px;}
.y11{bottom:1067.370000px;}
.y48{bottom:1072.590000px;}
.y47{bottom:1094.550000px;}
.y3f{bottom:1114.710000px;}
.y46{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.y45{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.y44{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h12{height:16.398000px;}
.h6{height:17.280000px;}
.h14{height:26.097120px;}
.h11{height:27.548640px;}
.hc{height:30.672000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h9{height:36.228240px;}
.h7{height:39.315600px;}
.h1b{height:41.940000px;}
.h18{height:42.120000px;}
.h1a{height:42.156000px;}
.h19{height:51.572880px;}
.h3{height:56.436480px;}
.h10{height:57.165120px;}
.hd{height:58.397760px;}
.h17{height:60.256725px;}
.h13{height:60.344640px;}
.hf{height:62.136000px;}
.h16{height:63.374400px;}
.h1e{height:65.496440px;}
.he{height:65.592000px;}
.h2{height:65.884219px;}
.h1c{height:72.699120px;}
.h15{height:73.116000px;}
.h1d{height:86.585445px;}
.h5{height:121.070742px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.380000px;}
.w8{width:190.650000px;}
.w7{width:211.530000px;}
.w9{width:296.490000px;}
.w4{width:317.415000px;}
.w6{width:438.195000px;}
.w5{width:797.400000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.910000px;}
.x1d{left:7.740000px;}
.x20{left:10.260000px;}
.x25{left:13.140000px;}
.xf{left:17.640000px;}
.x1e{left:18.720000px;}
.x1b{left:25.380000px;}
.x10{left:28.080000px;}
.x23{left:29.700000px;}
.x28{left:34.200000px;}
.x18{left:40.320000px;}
.x21{left:41.940000px;}
.x27{left:44.820000px;}
.x19{left:46.440000px;}
.x26{left:55.260000px;}
.x29{left:58.320000px;}
.x22{left:61.560000px;}
.x16{left:62.994000px;}
.x1f{left:65.340000px;}
.x6{left:70.740000px;}
.x1{left:80.999987px;}
.x24{left:90.360000px;}
.x1c{left:101.520000px;}
.x5{left:105.165000px;}
.x12{left:108.035987px;}
.x15{left:123.876000px;}
.xc{left:127.475987px;}
.xb{left:131.435987px;}
.xd{left:134.135987px;}
.x2f{left:137.015987px;}
.x31{left:138.995987px;}
.x32{left:140.975987px;}
.x11{left:146.880000px;}
.x36{left:148.175987px;}
.x2b{left:150.509987px;}
.x30{left:153.389987px;}
.xa{left:158.249987px;}
.x9{left:227.595000px;}
.x35{left:250.769987px;}
.x33{left:263.009987px;}
.xe{left:285.735000px;}
.x17{left:336.315000px;}
.x13{left:346.754987px;}
.x2c{left:354.134987px;}
.x2e{left:481.784987px;}
.x1a{left:527.685000px;}
.x4{left:554.145000px;}
.x14{left:648.104987px;}
.x7{left:721.770000px;}
.x2a{left:739.409987px;}
.x2d{left:783.329987px;}
.x8{left:786.600000px;}
.x34{left:815.549987px;}
.x2{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls20{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.406933pt;}
.ls37{letter-spacing:-0.348800pt;}
.ls35{letter-spacing:-0.342933pt;}
.ls25{letter-spacing:-0.294400pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.249067pt;}
.ls3a{letter-spacing:-0.202384pt;}
.lse{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.121600pt;}
.ls38{letter-spacing:-0.091733pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls34{letter-spacing:-0.059733pt;}
.ls7{letter-spacing:-0.030720pt;}
.lsc{letter-spacing:-0.025600pt;}
.ls1f{letter-spacing:-0.012160pt;}
.ls2b{letter-spacing:-0.007680pt;}
.ls33{letter-spacing:-0.000005pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.015360pt;}
.ls39{letter-spacing:0.035840pt;}
.lsb{letter-spacing:0.053867pt;}
.ls24{letter-spacing:0.056780pt;}
.ls12{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.071467pt;}
.ls1e{letter-spacing:0.080000pt;}
.ls1b{letter-spacing:0.090240pt;}
.ls2{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.183680pt;}
.ls2f{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.195200pt;}
.ls28{letter-spacing:0.215467pt;}
.ls1d{letter-spacing:0.215680pt;}
.lsa{letter-spacing:0.233067pt;}
.ls23{letter-spacing:0.245671pt;}
.ls2a{letter-spacing:0.252267pt;}
.ls18{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.259051pt;}
.ls2c{letter-spacing:0.271467pt;}
.ls29{letter-spacing:0.285333pt;}
.ls27{letter-spacing:0.290133pt;}
.ls36{letter-spacing:0.361600pt;}
.ls11{letter-spacing:0.448000pt;}
.ls2e{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.720000pt;}
.ls15{letter-spacing:0.832000pt;}
.ls14{letter-spacing:0.992000pt;}
.ls30{letter-spacing:1.472000pt;}
.ls17{letter-spacing:9.152000pt;}
.ls16{letter-spacing:9.952000pt;}
.ls31{letter-spacing:28.352000pt;}
.ls13{letter-spacing:56.912640pt;}
.ws16{word-spacing:-53.120000pt;}
.ws1{word-spacing:-20.185387pt;}
.ws2{word-spacing:-20.083200pt;}
.ws3{word-spacing:-17.664000pt;}
.ws2a{word-spacing:-17.337541pt;}
.ws29{word-spacing:-17.135157pt;}
.ws18{word-spacing:-17.088000pt;}
.ws27{word-spacing:-16.960000pt;}
.ws12{word-spacing:-16.934400pt;}
.ws10{word-spacing:-16.896000pt;}
.ws26{word-spacing:-16.704000pt;}
.wse{word-spacing:-16.576000pt;}
.ws11{word-spacing:-16.512000pt;}
.ws4{word-spacing:-16.448000pt;}
.ws28{word-spacing:-16.447995pt;}
.ws5{word-spacing:-16.384000pt;}
.wsf{word-spacing:-16.320000pt;}
.wsd{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.250880pt;}
.ws1a{word-spacing:-16.196209pt;}
.ws22{word-spacing:-16.192000pt;}
.ws1b{word-spacing:-16.007318pt;}
.ws19{word-spacing:-15.950538pt;}
.ws17{word-spacing:-15.808000pt;}
.ws15{word-spacing:-15.616000pt;}
.ws24{word-spacing:-15.403627pt;}
.ws9{word-spacing:-15.365227pt;}
.wsa{word-spacing:-15.186027pt;}
.ws25{word-spacing:-15.147520pt;}
.ws8{word-spacing:-15.132160pt;}
.ws23{word-spacing:-15.124480pt;}
.wsb{word-spacing:-15.106560pt;}
.wsc{word-spacing:-14.725227pt;}
.ws1e{word-spacing:-13.941973pt;}
.ws20{word-spacing:-13.937173pt;}
.ws21{word-spacing:-13.904107pt;}
.ws1f{word-spacing:-13.867307pt;}
.ws1d{word-spacing:-13.402773pt;}
.ws1c{word-spacing:-13.357440pt;}
.ws7{word-spacing:-9.539840pt;}
.ws0{word-spacing:-0.138880pt;}
.ws14{word-spacing:-0.126720pt;}
.ws13{word-spacing:0.000000pt;}
._7{margin-left:-4.357120pt;}
._8{margin-left:-3.441707pt;}
._1d{margin-left:-2.027093pt;}
._1{margin-left:-1.029120pt;}
._2{width:1.039360pt;}
._16{width:2.176000pt;}
._3{width:3.543893pt;}
._1e{width:4.567467pt;}
._9{width:5.475840pt;}
._6{width:7.083520pt;}
._5{width:8.206507pt;}
._19{width:9.954133pt;}
._1c{width:11.626667pt;}
._13{width:12.736000pt;}
._14{width:13.632000pt;}
._11{width:14.991787pt;}
._e{width:18.280960pt;}
._10{width:19.767467pt;}
._23{width:20.736000pt;}
._18{width:21.935787pt;}
._17{width:22.912000pt;}
._4{width:24.494080pt;}
._21{width:25.408000pt;}
._12{width:26.880000pt;}
._15{width:28.027733pt;}
._2a{width:29.733547pt;}
._22{width:30.682453pt;}
._20{width:31.786667pt;}
._1f{width:33.088000pt;}
._b{width:34.856960pt;}
._c{width:35.799040pt;}
._d{width:37.255253pt;}
._a{width:43.159040pt;}
._f{width:44.984320pt;}
._25{width:46.021120pt;}
._26{width:47.563093pt;}
._1b{width:48.725333pt;}
._1a{width:49.834667pt;}
._2c{width:52.736000pt;}
._2b{width:54.848000pt;}
._27{width:56.832000pt;}
._28{width:70.912000pt;}
._29{width:72.315307pt;}
._24{width:82.602667pt;}
._2d{width:111.360000pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsa{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsb{font-size:62.064349pt;}
.fs7{font-size:64.000000pt;}
.fsd{font-size:67.461249pt;}
.fs6{font-size:69.120000pt;}
.fsc{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.840000pt;}
.yc{bottom:4.800000pt;}
.y72{bottom:5.600000pt;}
.y6a{bottom:5.760000pt;}
.y42{bottom:5.920000pt;}
.yb{bottom:14.880000pt;}
.y68{bottom:15.040000pt;}
.y6c{bottom:15.080000pt;}
.y6f{bottom:15.200000pt;}
.y6{bottom:17.466667pt;}
.ya{bottom:21.472000pt;}
.y7{bottom:23.840000pt;}
.y71{bottom:24.320000pt;}
.y69{bottom:24.480000pt;}
.y6d{bottom:24.520000pt;}
.y41{bottom:27.066667pt;}
.y43{bottom:35.066667pt;}
.y9{bottom:42.240000pt;}
.y40{bottom:48.186667pt;}
.y4{bottom:51.840000pt;}
.y3{bottom:69.472000pt;}
.y2{bottom:87.712000pt;}
.ya4{bottom:113.952000pt;}
.y5{bottom:116.640000pt;}
.y75{bottom:117.632000pt;}
.y8a{bottom:118.272000pt;}
.y3e{bottom:120.192000pt;}
.ya3{bottom:133.466667pt;}
.y74{bottom:133.786667pt;}
.y89{bottom:137.786667pt;}
.y3d{bottom:139.706667pt;}
.ya2{bottom:152.986667pt;}
.y88{bottom:157.306667pt;}
.y3c{bottom:159.066667pt;}
.y73{bottom:171.866667pt;}
.ya1{bottom:172.506667pt;}
.y87{bottom:176.826667pt;}
.y3b{bottom:178.586667pt;}
.ya0{bottom:192.026667pt;}
.y86{bottom:196.346667pt;}
.y3a{bottom:198.106667pt;}
.y70{bottom:209.946667pt;}
.y9f{bottom:211.546667pt;}
.y85{bottom:215.866667pt;}
.y39{bottom:217.626667pt;}
.y9e{bottom:231.066667pt;}
.y84{bottom:235.226667pt;}
.y38{bottom:237.146667pt;}
.y6e{bottom:247.866667pt;}
.y9d{bottom:250.426667pt;}
.y83{bottom:254.746667pt;}
.y37{bottom:256.666667pt;}
.y9c{bottom:269.946667pt;}
.y82{bottom:274.266667pt;}
.y36{bottom:276.186667pt;}
.y6b{bottom:285.946667pt;}
.y9b{bottom:289.466667pt;}
.y81{bottom:293.786667pt;}
.y35{bottom:295.706667pt;}
.y9a{bottom:309.026667pt;}
.y80{bottom:313.346667pt;}
.y34{bottom:315.266667pt;}
.y67{bottom:324.066667pt;}
.y99{bottom:328.546667pt;}
.y7f{bottom:332.866667pt;}
.y33{bottom:334.786667pt;}
.y98{bottom:348.066667pt;}
.y7e{bottom:352.386667pt;}
.y32{bottom:354.146667pt;}
.y66{bottom:366.146667pt;}
.y97{bottom:367.586667pt;}
.y7d{bottom:371.906667pt;}
.y31{bottom:373.666667pt;}
.y96{bottom:387.106667pt;}
.y65{bottom:387.906667pt;}
.y7c{bottom:391.426667pt;}
.y30{bottom:393.186667pt;}
.y95{bottom:406.626667pt;}
.y64{bottom:408.546667pt;}
.y7b{bottom:410.946667pt;}
.y2f{bottom:412.706667pt;}
.y94{bottom:426.146667pt;}
.y63{bottom:426.786667pt;}
.y7a{bottom:430.306667pt;}
.y2e{bottom:432.226667pt;}
.y93{bottom:445.506667pt;}
.y62{bottom:446.306667pt;}
.y79{bottom:449.826667pt;}
.y2d{bottom:451.746667pt;}
.yba{bottom:459.426667pt;}
.y92{bottom:465.026667pt;}
.y61{bottom:465.826667pt;}
.y78{bottom:469.026667pt;}
.y2c{bottom:471.266667pt;}
.yb9{bottom:478.946667pt;}
.y91{bottom:484.546667pt;}
.y60{bottom:485.186667pt;}
.y77{bottom:486.946667pt;}
.y2b{bottom:490.466667pt;}
.yb8{bottom:501.026667pt;}
.y76{bottom:501.186667pt;}
.y90{bottom:504.066667pt;}
.y5f{bottom:504.706667pt;}
.y2a{bottom:509.506667pt;}
.y29{bottom:519.746667pt;}
.yb7{bottom:520.546667pt;}
.y8f{bottom:523.586667pt;}
.y5e{bottom:524.226667pt;}
.y28{bottom:537.693333pt;}
.yb6{bottom:540.093333pt;}
.y8e{bottom:543.133333pt;}
.y5d{bottom:543.773333pt;}
.y27{bottom:555.613333pt;}
.yb5{bottom:562.173333pt;}
.y8d{bottom:562.653333pt;}
.y5c{bottom:563.293333pt;}
.y26{bottom:573.373333pt;}
.yb4{bottom:581.693333pt;}
.y8c{bottom:582.173333pt;}
.y5b{bottom:582.813333pt;}
.y25{bottom:591.293333pt;}
.y8b{bottom:597.693333pt;}
.y5a{bottom:602.333333pt;}
.yb3{bottom:603.773333pt;}
.y24{bottom:609.213333pt;}
.y59{bottom:621.853333pt;}
.yb2{bottom:623.293333pt;}
.y23{bottom:627.133333pt;}
.y58{bottom:641.373333pt;}
.yb1{bottom:642.813333pt;}
.y22{bottom:644.893333pt;}
.y57{bottom:660.893333pt;}
.y21{bottom:662.813333pt;}
.yb0{bottom:664.893333pt;}
.y56{bottom:680.253333pt;}
.y20{bottom:680.733333pt;}
.yaf{bottom:684.413333pt;}
.y1f{bottom:698.493333pt;}
.y55{bottom:699.773333pt;}
.yae{bottom:706.493333pt;}
.y1e{bottom:716.413333pt;}
.y54{bottom:719.293333pt;}
.yad{bottom:725.853333pt;}
.y1d{bottom:734.333333pt;}
.y53{bottom:738.813333pt;}
.yac{bottom:747.933333pt;}
.y1c{bottom:752.253333pt;}
.y52{bottom:758.333333pt;}
.yab{bottom:767.453333pt;}
.y1b{bottom:770.013333pt;}
.y51{bottom:777.893333pt;}
.y1a{bottom:787.973333pt;}
.yaa{bottom:789.573333pt;}
.y50{bottom:797.413333pt;}
.y19{bottom:803.173333pt;}
.ya9{bottom:809.093333pt;}
.y18{bottom:811.013333pt;}
.y4f{bottom:816.933333pt;}
.y17{bottom:828.133333pt;}
.ya8{bottom:831.173333pt;}
.y4e{bottom:836.453333pt;}
.y16{bottom:839.653333pt;}
.y15{bottom:850.213333pt;}
.ya7{bottom:850.693333pt;}
.y4d{bottom:855.973333pt;}
.y14{bottom:869.733333pt;}
.ya6{bottom:872.773333pt;}
.y4c{bottom:875.333333pt;}
.y13{bottom:889.253333pt;}
.ya5{bottom:892.293333pt;}
.y4b{bottom:894.853333pt;}
.y4a{bottom:914.373333pt;}
.y12{bottom:927.653333pt;}
.y49{bottom:933.893333pt;}
.y11{bottom:948.773333pt;}
.y48{bottom:953.413333pt;}
.y47{bottom:972.933333pt;}
.y3f{bottom:990.853333pt;}
.y46{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.y45{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.y44{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h12{height:14.576000pt;}
.h6{height:15.360000pt;}
.h14{height:23.197440pt;}
.h11{height:24.487680pt;}
.hc{height:27.264000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h9{height:32.202880pt;}
.h7{height:34.947200pt;}
.h1b{height:37.280000pt;}
.h18{height:37.440000pt;}
.h1a{height:37.472000pt;}
.h19{height:45.842560pt;}
.h3{height:50.165760pt;}
.h10{height:50.813440pt;}
.hd{height:51.909120pt;}
.h17{height:53.561533pt;}
.h13{height:53.639680pt;}
.hf{height:55.232000pt;}
.h16{height:56.332800pt;}
.h1e{height:58.219058pt;}
.he{height:58.304000pt;}
.h2{height:58.563750pt;}
.h1c{height:64.621440pt;}
.h15{height:64.992000pt;}
.h1d{height:76.964840pt;}
.h5{height:107.618438pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.560000pt;}
.w8{width:169.466667pt;}
.w7{width:188.026667pt;}
.w9{width:263.546667pt;}
.w4{width:282.146667pt;}
.w6{width:389.506667pt;}
.w5{width:708.800000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:5.253333pt;}
.x1d{left:6.880000pt;}
.x20{left:9.120000pt;}
.x25{left:11.680000pt;}
.xf{left:15.680000pt;}
.x1e{left:16.640000pt;}
.x1b{left:22.560000pt;}
.x10{left:24.960000pt;}
.x23{left:26.400000pt;}
.x28{left:30.400000pt;}
.x18{left:35.840000pt;}
.x21{left:37.280000pt;}
.x27{left:39.840000pt;}
.x19{left:41.280000pt;}
.x26{left:49.120000pt;}
.x29{left:51.840000pt;}
.x22{left:54.720000pt;}
.x16{left:55.994667pt;}
.x1f{left:58.080000pt;}
.x6{left:62.880000pt;}
.x1{left:71.999988pt;}
.x24{left:80.320000pt;}
.x1c{left:90.240000pt;}
.x5{left:93.480000pt;}
.x12{left:96.031988pt;}
.x15{left:110.112000pt;}
.xc{left:113.311988pt;}
.xb{left:116.831988pt;}
.xd{left:119.231988pt;}
.x2f{left:121.791988pt;}
.x31{left:123.551988pt;}
.x32{left:125.311988pt;}
.x11{left:130.560000pt;}
.x36{left:131.711988pt;}
.x2b{left:133.786655pt;}
.x30{left:136.346655pt;}
.xa{left:140.666655pt;}
.x9{left:202.306667pt;}
.x35{left:222.906655pt;}
.x33{left:233.786655pt;}
.xe{left:253.986667pt;}
.x17{left:298.946667pt;}
.x13{left:308.226655pt;}
.x2c{left:314.786655pt;}
.x2e{left:428.253322pt;}
.x1a{left:469.053333pt;}
.x4{left:492.573333pt;}
.x14{left:576.093322pt;}
.x7{left:641.573333pt;}
.x2a{left:657.253322pt;}
.x2d{left:696.293322pt;}
.x8{left:699.200000pt;}
.x34{left:724.933322pt;}
.x2{left:737.120000pt;}
}




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