
    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_2e69031abe68d8bc9e87048a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cc6c8b01ad0b545e7bcdaabc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_07994fd8b7296ac9f0f10929.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_f10e2ac7f21b8367d7ad055e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_1e90aedb8aff6fb16cd02af8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097656;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_aac56777e7ed066531c98b8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_fd2439f478689e89aefedc03.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9b701ccfe4795316319319ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_583f6a95ca2bcc180f6824e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_95d0c76b067823acfe553f7e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.675781;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_f7fb8484251ec34989d818e5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.717285;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_44a21b20f49ce3821a455381.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.713867;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_e282a57a33eea6aa4a524427.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692871;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_7ed04fc59aedd0f98dddd7a3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.880371;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_a2ea6bdd831fba32e7d0373f.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_cd2cc4bf26d6feb16fed58d0.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_158363716fea3855ae1d71f8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_650ac3d8c73b2f1de1927b0d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1757d9b51c4f6810f048b6ca.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_bbd5ffa34f1f167e44cc7523.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758789;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:ff15;src:url('chunks/assets/font_0bf2a79c169e20083b057204.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.104004;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:ff16;src:url('chunks/assets/font_5edf8fd5d327e453a3401fb7.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_7f1d6b0b9fbd249c6e03f2eb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e195e149100fb8d32bdd9b87.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_48a77e2068428722abac74b1.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.675781;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:ff1a;src:url('chunks/assets/font_bd75c896fc1f95b0e50b1a73.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.893066;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);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls18{letter-spacing:-0.569088px;}
.ls15{letter-spacing:-0.470592px;}
.ls9{letter-spacing:-0.454176px;}
.ls17{letter-spacing:-0.432288px;}
.ls1b{letter-spacing:-0.421344px;}
.ls16{letter-spacing:-0.361152px;}
.lsf{letter-spacing:-0.338688px;}
.ls10{letter-spacing:-0.320544px;}
.lse{letter-spacing:-0.241920px;}
.lsc{letter-spacing:-0.241200px;}
.ls12{letter-spacing:-0.223776px;}
.ls1a{letter-spacing:-0.213408px;}
.lsa{letter-spacing:-0.186048px;}
.ls19{letter-spacing:-0.169632px;}
.ls6{letter-spacing:-0.158976px;}
.ls11{letter-spacing:-0.157248px;}
.ls13{letter-spacing:-0.145152px;}
.ls8{letter-spacing:-0.125856px;}
.lsb{letter-spacing:-0.115776px;}
.lsd{letter-spacing:-0.014400px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.014400px;}
.ls27{letter-spacing:0.020592px;}
.ls14{letter-spacing:0.113616px;}
.ls1c{letter-spacing:0.123552px;}
.ls2{letter-spacing:0.158400px;}
.ls4{letter-spacing:0.239040px;}
.ls21{letter-spacing:0.240048px;}
.ls0{letter-spacing:0.240480px;}
.ls1d{letter-spacing:0.285120px;}
.ls1e{letter-spacing:0.294624px;}
.ls1f{letter-spacing:0.356832px;}
.ls25{letter-spacing:1.067040px;}
.ls23{letter-spacing:6.877440px;}
.ls24{letter-spacing:10.860480px;}
.ls22{letter-spacing:19.478880px;}
.ls26{letter-spacing:26.568000px;}
.ls20{letter-spacing:31.466016px;}
.ls3{letter-spacing:77.760000px;}
.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;}
}
.ws3{word-spacing:-26.821440px;}
.ws0{word-spacing:-18.288864px;}
.ws4{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.985600px;}
.wse{word-spacing:-16.257600px;}
.ws8{word-spacing:-14.974848px;}
.ws7{word-spacing:-14.896224px;}
.wsa{word-spacing:-14.227200px;}
.ws2{word-spacing:-14.041152px;}
.wsb{word-spacing:-13.866048px;}
.wsd{word-spacing:-13.805856px;}
.ws1{word-spacing:-13.773024px;}
.wsc{word-spacing:-13.658112px;}
.ws6{word-spacing:-0.072000px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-7.825536px;}
._d{margin-left:-6.561936px;}
._5{margin-left:-5.529600px;}
._1{margin-left:-3.841920px;}
._0{margin-left:-2.119680px;}
._3{margin-left:-1.023552px;}
._2{width:1.059840px;}
._12{width:3.052944px;}
._7{width:4.161600px;}
._11{width:5.392944px;}
._8{width:6.400800px;}
._10{width:8.216496px;}
._9{width:9.525600px;}
._f{width:10.749600px;}
._e{width:12.276000px;}
._18{width:13.564800px;}
._14{width:14.752800px;}
._16{width:15.796800px;}
._17{width:16.869600px;}
._13{width:19.058400px;}
._15{width:20.548800px;}
._1b{width:21.715200px;}
._1d{width:22.838400px;}
._a{width:24.372000px;}
._19{width:25.876800px;}
._1a{width:26.935200px;}
._1c{width:28.051200px;}
._1e{width:29.476800px;}
._1f{width:54.914400px;}
._c{width:58.550400px;}
._b{width:64.440000px;}
._23{width:69.141600px;}
._6{width:77.877936px;}
._22{width:183.297600px;}
._20{width:295.624512px;}
._21{width:357.984000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(121,124,143);}
.fc2{color:rgb(51,198,119);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.480000px;}
.fs7{font-size:47.520000px;}
.fs8{font-size:50.400000px;}
.fs2{font-size:54.720000px;}
.fsa{font-size:60.480000px;}
.fs9{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:108.000000px;}
.fs5{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y11{bottom:1.620000px;}
.y4b{bottom:3.660000px;}
.y6f{bottom:4.740000px;}
.y4e{bottom:4.860000px;}
.y57{bottom:5.460000px;}
.y6c{bottom:5.640000px;}
.y9{bottom:6.900000px;}
.y4d{bottom:7.380000px;}
.y10{bottom:11.340000px;}
.y4a{bottom:20.580000px;}
.ya6{bottom:23.460000px;}
.y6e{bottom:25.260000px;}
.y18{bottom:25.920000px;}
.y6b{bottom:26.160000px;}
.y3b{bottom:26.340000px;}
.y8{bottom:29.220000px;}
.ye{bottom:31.140000px;}
.yf{bottom:31.860000px;}
.yc{bottom:36.060000px;}
.y49{bottom:37.860000px;}
.y17{bottom:46.800000px;}
.y6a{bottom:47.040000px;}
.y3a{bottom:47.220000px;}
.ya5{bottom:54.420000px;}
.ya8{bottom:54.780000px;}
.y48{bottom:55.140000px;}
.y55{bottom:56.880000px;}
.y4{bottom:57.240000px;}
.y69{bottom:67.560000px;}
.y16{bottom:67.680000px;}
.y39{bottom:67.740000px;}
.y47{bottom:72.420000px;}
.y54{bottom:73.080000px;}
.y3{bottom:76.320000px;}
.y56{bottom:79.500000px;}
.ya4{bottom:85.380000px;}
.yb{bottom:85.740000px;}
.y68{bottom:88.440000px;}
.y15{bottom:88.560000px;}
.y38{bottom:88.620000px;}
.y53{bottom:89.640000px;}
.ybd{bottom:105.840000px;}
.y67{bottom:108.960000px;}
.y37{bottom:109.140000px;}
.y14{bottom:109.440000px;}
.y82{bottom:126.360000px;}
.y66{bottom:129.840000px;}
.y36{bottom:130.020000px;}
.y13{bottom:130.680000px;}
.ya{bottom:135.060000px;}
.ybc{bottom:137.160000px;}
.y7{bottom:143.340000px;}
.y65{bottom:150.360000px;}
.y35{bottom:150.540000px;}
.yb2{bottom:151.920000px;}
.ya2{bottom:155.520000px;}
.y81{bottom:157.320000px;}
.yc7{bottom:159.120000px;}
.y4f{bottom:162.000000px;}
.ybb{bottom:168.120000px;}
.y64{bottom:171.240000px;}
.y34{bottom:171.420000px;}
.y4c{bottom:175.500000px;}
.yb1{bottom:182.880000px;}
.ya1{bottom:187.560000px;}
.y80{bottom:188.640000px;}
.yc6{bottom:190.080000px;}
.y63{bottom:191.760000px;}
.y33{bottom:191.940000px;}
.y19{bottom:196.500000px;}
.yba{bottom:199.080000px;}
.y62{bottom:212.640000px;}
.y32{bottom:212.820000px;}
.yb0{bottom:213.840000px;}
.y7f{bottom:219.600000px;}
.ya0{bottom:219.960000px;}
.yc5{bottom:221.040000px;}
.yb9{bottom:230.040000px;}
.y61{bottom:233.160000px;}
.y31{bottom:233.340000px;}
.yaf{bottom:245.160000px;}
.y7e{bottom:250.560000px;}
.y9f{bottom:252.360000px;}
.y60{bottom:254.040000px;}
.y30{bottom:254.220000px;}
.yb8{bottom:261.360000px;}
.y5f{bottom:274.560000px;}
.y2f{bottom:274.740000px;}
.yae{bottom:276.120000px;}
.y7d{bottom:281.520000px;}
.y3c{bottom:282.000000px;}
.y9e{bottom:283.320000px;}
.yb7{bottom:292.320000px;}
.y5e{bottom:295.440000px;}
.y2e{bottom:295.620000px;}
.y7c{bottom:312.840000px;}
.y9d{bottom:314.280000px;}
.y5d{bottom:315.960000px;}
.yad{bottom:316.080000px;}
.y2d{bottom:316.140000px;}
.yb6{bottom:323.280000px;}
.y5c{bottom:336.840000px;}
.y2c{bottom:337.020000px;}
.y46{bottom:340.440000px;}
.y7b{bottom:343.800000px;}
.y9c{bottom:345.240000px;}
.yb5{bottom:354.240000px;}
.yac{bottom:356.040000px;}
.y5b{bottom:357.360000px;}
.y2b{bottom:357.540000px;}
.y45{bottom:357.720000px;}
.y7a{bottom:374.760000px;}
.y44{bottom:375.000000px;}
.y9b{bottom:376.560000px;}
.y5a{bottom:378.240000px;}
.y2a{bottom:378.420000px;}
.yb4{bottom:385.560000px;}
.y43{bottom:392.280000px;}
.yab{bottom:396.360000px;}
.y59{bottom:398.760000px;}
.y29{bottom:398.940000px;}
.y79{bottom:405.720000px;}
.y9a{bottom:407.520000px;}
.y42{bottom:409.560000px;}
.yb3{bottom:416.520000px;}
.y28{bottom:419.820000px;}
.y41{bottom:426.480000px;}
.yaa{bottom:427.320000px;}
.y78{bottom:436.680000px;}
.yc4{bottom:438.480000px;}
.y27{bottom:440.340000px;}
.y40{bottom:443.760000px;}
.y99{bottom:447.480000px;}
.ya9{bottom:458.280000px;}
.y3f{bottom:461.040000px;}
.y26{bottom:461.220000px;}
.y77{bottom:468.000000px;}
.yc3{bottom:469.440000px;}
.ya7{bottom:475.500000px;}
.y3e{bottom:478.320000px;}
.y98{bottom:478.440000px;}
.y25{bottom:481.740000px;}
.y3d{bottom:495.600000px;}
.y76{bottom:498.960000px;}
.yc2{bottom:500.760000px;}
.yd4{bottom:502.200000px;}
.y24{bottom:502.620000px;}
.y97{bottom:509.760000px;}
.y23{bottom:523.140000px;}
.y75{bottom:529.920000px;}
.yc1{bottom:531.720000px;}
.y96{bottom:540.720000px;}
.yd3{bottom:542.520000px;}
.y22{bottom:544.020000px;}
.ya3{bottom:547.500000px;}
.y74{bottom:560.880000px;}
.yc0{bottom:562.680000px;}
.y21{bottom:564.540000px;}
.y95{bottom:571.680000px;}
.yd2{bottom:582.480000px;}
.y20{bottom:585.420000px;}
.y73{bottom:592.200000px;}
.ybf{bottom:593.640000px;}
.y94{bottom:602.640000px;}
.y1f{bottom:605.940000px;}
.yd1{bottom:622.440000px;}
.y72{bottom:623.160000px;}
.ybe{bottom:624.600000px;}
.y1e{bottom:626.820000px;}
.y93{bottom:633.600000px;}
.y71{bottom:644.040000px;}
.y1d{bottom:647.340000px;}
.yd0{bottom:662.400000px;}
.y92{bottom:664.920000px;}
.y1c{bottom:671.100000px;}
.y70{bottom:675.000000px;}
.y6d{bottom:691.500000px;}
.y91{bottom:695.880000px;}
.y1b{bottom:697.380000px;}
.ycf{bottom:702.720000px;}
.y1a{bottom:724.020000px;}
.y90{bottom:726.840000px;}
.y58{bottom:732.000000px;}
.yce{bottom:742.680000px;}
.y8f{bottom:757.800000px;}
.ycd{bottom:782.640000px;}
.y8e{bottom:789.120000px;}
.y12{bottom:792.000000px;}
.y8d{bottom:820.080000px;}
.ycc{bottom:822.600000px;}
.y8c{bottom:851.040000px;}
.ycb{bottom:862.920000px;}
.y8b{bottom:882.000000px;}
.yca{bottom:902.880000px;}
.y8a{bottom:913.320000px;}
.yc9{bottom:923.760000px;}
.yd{bottom:940.500000px;}
.y89{bottom:944.280000px;}
.yc8{bottom:944.640000px;}
.y88{bottom:975.240000px;}
.y6{bottom:988.500000px;}
.y87{bottom:1006.200000px;}
.y86{bottom:1037.520000px;}
.y85{bottom:1068.480000px;}
.y84{bottom:1099.440000px;}
.y83{bottom:1130.400000px;}
.y52{bottom:1152.000000px;}
.y5{bottom:1154.520000px;}
.y51{bottom:1173.240000px;}
.y2{bottom:1175.400000px;}
.y50{bottom:1192.680000px;}
.y1{bottom:1194.480000px;}
.hb{height:16.316016px;}
.h13{height:22.500000px;}
.h17{height:24.000000px;}
.h15{height:36.405703px;}
.h4{height:41.574375px;}
.h14{height:41.868281px;}
.h11{height:41.993438px;}
.h1a{height:42.000000px;}
.h3{height:47.988281px;}
.h2{height:48.256875px;}
.hf{height:48.761719px;}
.h9{height:49.500000px;}
.ha{height:50.027344px;}
.h19{height:54.000000px;}
.he{height:56.593125px;}
.h7{height:62.472656px;}
.h16{height:63.175781px;}
.h1b{height:63.949219px;}
.h1d{height:72.000000px;}
.h6{height:72.360000px;}
.h12{height:87.000000px;}
.h8{height:89.068359px;}
.h1c{height:103.500000px;}
.hc{height:148.500000px;}
.h5{height:160.500000px;}
.h18{height:415.500000px;}
.h10{height:510.000000px;}
.hd{height:744.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:28.500000px;}
.w9{width:117.000000px;}
.w6{width:120.000000px;}
.wb{width:171.000000px;}
.wa{width:223.500000px;}
.w3{width:247.500000px;}
.w2{width:249.000000px;}
.w4{width:552.000000px;}
.w7{width:666.000000px;}
.w8{width:786.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x16{left:7.859964px;}
.xc{left:9.480108px;}
.x12{left:21.688464px;}
.xa{left:25.334112px;}
.x14{left:28.809444px;}
.x13{left:32.782476px;}
.xb{left:35.083380px;}
.x3{left:42.000000px;}
.x6{left:45.805656px;}
.x1{left:54.000000px;}
.x15{left:56.084844px;}
.x9{left:75.853560px;}
.x11{left:77.433096px;}
.x10{left:86.072772px;}
.xf{left:89.254416px;}
.x1a{left:107.174916px;}
.x4{left:124.379904px;}
.x1b{left:139.049928px;}
.xd{left:160.749480px;}
.x19{left:174.000000px;}
.x17{left:184.902456px;}
.x7{left:202.954080px;}
.x1c{left:223.500000px;}
.x5{left:233.819832px;}
.xe{left:275.459880px;}
.x8{left:289.500000px;}
.x1d{left:445.500000px;}
.x1e{left:616.500000px;}
.x2{left:685.130400px;}
.x18{left:811.500000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls18{letter-spacing:-0.505856pt;}
.ls15{letter-spacing:-0.418304pt;}
.ls9{letter-spacing:-0.403712pt;}
.ls17{letter-spacing:-0.384256pt;}
.ls1b{letter-spacing:-0.374528pt;}
.ls16{letter-spacing:-0.321024pt;}
.lsf{letter-spacing:-0.301056pt;}
.ls10{letter-spacing:-0.284928pt;}
.lse{letter-spacing:-0.215040pt;}
.lsc{letter-spacing:-0.214400pt;}
.ls12{letter-spacing:-0.198912pt;}
.ls1a{letter-spacing:-0.189696pt;}
.lsa{letter-spacing:-0.165376pt;}
.ls19{letter-spacing:-0.150784pt;}
.ls6{letter-spacing:-0.141312pt;}
.ls11{letter-spacing:-0.139776pt;}
.ls13{letter-spacing:-0.129024pt;}
.ls8{letter-spacing:-0.111872pt;}
.lsb{letter-spacing:-0.102912pt;}
.lsd{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.012800pt;}
.ls27{letter-spacing:0.018304pt;}
.ls14{letter-spacing:0.100992pt;}
.ls1c{letter-spacing:0.109824pt;}
.ls2{letter-spacing:0.140800pt;}
.ls4{letter-spacing:0.212480pt;}
.ls21{letter-spacing:0.213376pt;}
.ls0{letter-spacing:0.213760pt;}
.ls1d{letter-spacing:0.253440pt;}
.ls1e{letter-spacing:0.261888pt;}
.ls1f{letter-spacing:0.317184pt;}
.ls25{letter-spacing:0.948480pt;}
.ls23{letter-spacing:6.113280pt;}
.ls24{letter-spacing:9.653760pt;}
.ls22{letter-spacing:17.314560pt;}
.ls26{letter-spacing:23.616000pt;}
.ls20{letter-spacing:27.969792pt;}
.ls3{letter-spacing:69.120000pt;}
.ws3{word-spacing:-23.841280pt;}
.ws0{word-spacing:-16.256768pt;}
.ws4{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.987200pt;}
.wse{word-spacing:-14.451200pt;}
.ws8{word-spacing:-13.310976pt;}
.ws7{word-spacing:-13.241088pt;}
.wsa{word-spacing:-12.646400pt;}
.ws2{word-spacing:-12.481024pt;}
.wsb{word-spacing:-12.325376pt;}
.wsd{word-spacing:-12.271872pt;}
.ws1{word-spacing:-12.242688pt;}
.wsc{word-spacing:-12.140544pt;}
.ws6{word-spacing:-0.064000pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-6.956032pt;}
._d{margin-left:-5.832832pt;}
._5{margin-left:-4.915200pt;}
._1{margin-left:-3.415040pt;}
._0{margin-left:-1.884160pt;}
._3{margin-left:-0.909824pt;}
._2{width:0.942080pt;}
._12{width:2.713728pt;}
._7{width:3.699200pt;}
._11{width:4.793728pt;}
._8{width:5.689600pt;}
._10{width:7.303552pt;}
._9{width:8.467200pt;}
._f{width:9.555200pt;}
._e{width:10.912000pt;}
._18{width:12.057600pt;}
._14{width:13.113600pt;}
._16{width:14.041600pt;}
._17{width:14.995200pt;}
._13{width:16.940800pt;}
._15{width:18.265600pt;}
._1b{width:19.302400pt;}
._1d{width:20.300800pt;}
._a{width:21.664000pt;}
._19{width:23.001600pt;}
._1a{width:23.942400pt;}
._1c{width:24.934400pt;}
._1e{width:26.201600pt;}
._1f{width:48.812800pt;}
._c{width:52.044800pt;}
._b{width:57.280000pt;}
._23{width:61.459200pt;}
._6{width:69.224832pt;}
._22{width:162.931200pt;}
._20{width:262.777344pt;}
._21{width:318.208000pt;}
.fs6{font-size:21.760000pt;}
.fs7{font-size:42.240000pt;}
.fs8{font-size:44.800000pt;}
.fs2{font-size:48.640000pt;}
.fsa{font-size:53.760000pt;}
.fs9{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:96.000000pt;}
.fs5{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:1.440000pt;}
.y4b{bottom:3.253333pt;}
.y6f{bottom:4.213333pt;}
.y4e{bottom:4.320000pt;}
.y57{bottom:4.853333pt;}
.y6c{bottom:5.013333pt;}
.y9{bottom:6.133333pt;}
.y4d{bottom:6.560000pt;}
.y10{bottom:10.080000pt;}
.y4a{bottom:18.293333pt;}
.ya6{bottom:20.853333pt;}
.y6e{bottom:22.453333pt;}
.y18{bottom:23.040000pt;}
.y6b{bottom:23.253333pt;}
.y3b{bottom:23.413333pt;}
.y8{bottom:25.973333pt;}
.ye{bottom:27.680000pt;}
.yf{bottom:28.320000pt;}
.yc{bottom:32.053333pt;}
.y49{bottom:33.653333pt;}
.y17{bottom:41.600000pt;}
.y6a{bottom:41.813333pt;}
.y3a{bottom:41.973333pt;}
.ya5{bottom:48.373333pt;}
.ya8{bottom:48.693333pt;}
.y48{bottom:49.013333pt;}
.y55{bottom:50.560000pt;}
.y4{bottom:50.880000pt;}
.y69{bottom:60.053333pt;}
.y16{bottom:60.160000pt;}
.y39{bottom:60.213333pt;}
.y47{bottom:64.373333pt;}
.y54{bottom:64.960000pt;}
.y3{bottom:67.840000pt;}
.y56{bottom:70.666667pt;}
.ya4{bottom:75.893333pt;}
.yb{bottom:76.213333pt;}
.y68{bottom:78.613333pt;}
.y15{bottom:78.720000pt;}
.y38{bottom:78.773333pt;}
.y53{bottom:79.680000pt;}
.ybd{bottom:94.080000pt;}
.y67{bottom:96.853333pt;}
.y37{bottom:97.013333pt;}
.y14{bottom:97.280000pt;}
.y82{bottom:112.320000pt;}
.y66{bottom:115.413333pt;}
.y36{bottom:115.573333pt;}
.y13{bottom:116.160000pt;}
.ya{bottom:120.053333pt;}
.ybc{bottom:121.920000pt;}
.y7{bottom:127.413333pt;}
.y65{bottom:133.653333pt;}
.y35{bottom:133.813333pt;}
.yb2{bottom:135.040000pt;}
.ya2{bottom:138.240000pt;}
.y81{bottom:139.840000pt;}
.yc7{bottom:141.440000pt;}
.y4f{bottom:144.000000pt;}
.ybb{bottom:149.440000pt;}
.y64{bottom:152.213333pt;}
.y34{bottom:152.373333pt;}
.y4c{bottom:156.000000pt;}
.yb1{bottom:162.560000pt;}
.ya1{bottom:166.720000pt;}
.y80{bottom:167.680000pt;}
.yc6{bottom:168.960000pt;}
.y63{bottom:170.453333pt;}
.y33{bottom:170.613333pt;}
.y19{bottom:174.666667pt;}
.yba{bottom:176.960000pt;}
.y62{bottom:189.013333pt;}
.y32{bottom:189.173333pt;}
.yb0{bottom:190.080000pt;}
.y7f{bottom:195.200000pt;}
.ya0{bottom:195.520000pt;}
.yc5{bottom:196.480000pt;}
.yb9{bottom:204.480000pt;}
.y61{bottom:207.253333pt;}
.y31{bottom:207.413333pt;}
.yaf{bottom:217.920000pt;}
.y7e{bottom:222.720000pt;}
.y9f{bottom:224.320000pt;}
.y60{bottom:225.813333pt;}
.y30{bottom:225.973333pt;}
.yb8{bottom:232.320000pt;}
.y5f{bottom:244.053333pt;}
.y2f{bottom:244.213333pt;}
.yae{bottom:245.440000pt;}
.y7d{bottom:250.240000pt;}
.y3c{bottom:250.666667pt;}
.y9e{bottom:251.840000pt;}
.yb7{bottom:259.840000pt;}
.y5e{bottom:262.613333pt;}
.y2e{bottom:262.773333pt;}
.y7c{bottom:278.080000pt;}
.y9d{bottom:279.360000pt;}
.y5d{bottom:280.853333pt;}
.yad{bottom:280.960000pt;}
.y2d{bottom:281.013333pt;}
.yb6{bottom:287.360000pt;}
.y5c{bottom:299.413333pt;}
.y2c{bottom:299.573333pt;}
.y46{bottom:302.613333pt;}
.y7b{bottom:305.600000pt;}
.y9c{bottom:306.880000pt;}
.yb5{bottom:314.880000pt;}
.yac{bottom:316.480000pt;}
.y5b{bottom:317.653333pt;}
.y2b{bottom:317.813333pt;}
.y45{bottom:317.973333pt;}
.y7a{bottom:333.120000pt;}
.y44{bottom:333.333333pt;}
.y9b{bottom:334.720000pt;}
.y5a{bottom:336.213333pt;}
.y2a{bottom:336.373333pt;}
.yb4{bottom:342.720000pt;}
.y43{bottom:348.693333pt;}
.yab{bottom:352.320000pt;}
.y59{bottom:354.453333pt;}
.y29{bottom:354.613333pt;}
.y79{bottom:360.640000pt;}
.y9a{bottom:362.240000pt;}
.y42{bottom:364.053333pt;}
.yb3{bottom:370.240000pt;}
.y28{bottom:373.173333pt;}
.y41{bottom:379.093333pt;}
.yaa{bottom:379.840000pt;}
.y78{bottom:388.160000pt;}
.yc4{bottom:389.760000pt;}
.y27{bottom:391.413333pt;}
.y40{bottom:394.453333pt;}
.y99{bottom:397.760000pt;}
.ya9{bottom:407.360000pt;}
.y3f{bottom:409.813333pt;}
.y26{bottom:409.973333pt;}
.y77{bottom:416.000000pt;}
.yc3{bottom:417.280000pt;}
.ya7{bottom:422.666667pt;}
.y3e{bottom:425.173333pt;}
.y98{bottom:425.280000pt;}
.y25{bottom:428.213333pt;}
.y3d{bottom:440.533333pt;}
.y76{bottom:443.520000pt;}
.yc2{bottom:445.120000pt;}
.yd4{bottom:446.400000pt;}
.y24{bottom:446.773333pt;}
.y97{bottom:453.120000pt;}
.y23{bottom:465.013333pt;}
.y75{bottom:471.040000pt;}
.yc1{bottom:472.640000pt;}
.y96{bottom:480.640000pt;}
.yd3{bottom:482.240000pt;}
.y22{bottom:483.573333pt;}
.ya3{bottom:486.666667pt;}
.y74{bottom:498.560000pt;}
.yc0{bottom:500.160000pt;}
.y21{bottom:501.813333pt;}
.y95{bottom:508.160000pt;}
.yd2{bottom:517.760000pt;}
.y20{bottom:520.373333pt;}
.y73{bottom:526.400000pt;}
.ybf{bottom:527.680000pt;}
.y94{bottom:535.680000pt;}
.y1f{bottom:538.613333pt;}
.yd1{bottom:553.280000pt;}
.y72{bottom:553.920000pt;}
.ybe{bottom:555.200000pt;}
.y1e{bottom:557.173333pt;}
.y93{bottom:563.200000pt;}
.y71{bottom:572.480000pt;}
.y1d{bottom:575.413333pt;}
.yd0{bottom:588.800000pt;}
.y92{bottom:591.040000pt;}
.y1c{bottom:596.533333pt;}
.y70{bottom:600.000000pt;}
.y6d{bottom:614.666667pt;}
.y91{bottom:618.560000pt;}
.y1b{bottom:619.893333pt;}
.ycf{bottom:624.640000pt;}
.y1a{bottom:643.573333pt;}
.y90{bottom:646.080000pt;}
.y58{bottom:650.666667pt;}
.yce{bottom:660.160000pt;}
.y8f{bottom:673.600000pt;}
.ycd{bottom:695.680000pt;}
.y8e{bottom:701.440000pt;}
.y12{bottom:704.000000pt;}
.y8d{bottom:728.960000pt;}
.ycc{bottom:731.200000pt;}
.y8c{bottom:756.480000pt;}
.ycb{bottom:767.040000pt;}
.y8b{bottom:784.000000pt;}
.yca{bottom:802.560000pt;}
.y8a{bottom:811.840000pt;}
.yc9{bottom:821.120000pt;}
.yd{bottom:836.000000pt;}
.y89{bottom:839.360000pt;}
.yc8{bottom:839.680000pt;}
.y88{bottom:866.880000pt;}
.y6{bottom:878.666667pt;}
.y87{bottom:894.400000pt;}
.y86{bottom:922.240000pt;}
.y85{bottom:949.760000pt;}
.y84{bottom:977.280000pt;}
.y83{bottom:1004.800000pt;}
.y52{bottom:1024.000000pt;}
.y5{bottom:1026.240000pt;}
.y51{bottom:1042.880000pt;}
.y2{bottom:1044.800000pt;}
.y50{bottom:1060.160000pt;}
.y1{bottom:1061.760000pt;}
.hb{height:14.503125pt;}
.h13{height:20.000000pt;}
.h17{height:21.333333pt;}
.h15{height:32.360625pt;}
.h4{height:36.955000pt;}
.h14{height:37.216250pt;}
.h11{height:37.327500pt;}
.h1a{height:37.333333pt;}
.h3{height:42.656250pt;}
.h2{height:42.895000pt;}
.hf{height:43.343750pt;}
.h9{height:44.000000pt;}
.ha{height:44.468750pt;}
.h19{height:48.000000pt;}
.he{height:50.305000pt;}
.h7{height:55.531250pt;}
.h16{height:56.156250pt;}
.h1b{height:56.843750pt;}
.h1d{height:64.000000pt;}
.h6{height:64.320000pt;}
.h12{height:77.333333pt;}
.h8{height:79.171875pt;}
.h1c{height:92.000000pt;}
.hc{height:132.000000pt;}
.h5{height:142.666667pt;}
.h18{height:369.333333pt;}
.h10{height:453.333333pt;}
.hd{height:661.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:25.333333pt;}
.w9{width:104.000000pt;}
.w6{width:106.666667pt;}
.wb{width:152.000000pt;}
.wa{width:198.666667pt;}
.w3{width:220.000000pt;}
.w2{width:221.333333pt;}
.w4{width:490.666667pt;}
.w7{width:592.000000pt;}
.w8{width:698.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x16{left:6.986635pt;}
.xc{left:8.426763pt;}
.x12{left:19.278635pt;}
.xa{left:22.519211pt;}
.x14{left:25.608395pt;}
.x13{left:29.139979pt;}
.xb{left:31.185227pt;}
.x3{left:37.333333pt;}
.x6{left:40.716139pt;}
.x1{left:48.000000pt;}
.x15{left:49.853195pt;}
.x9{left:67.425387pt;}
.x11{left:68.829419pt;}
.x10{left:76.509131pt;}
.xf{left:79.337259pt;}
.x1a{left:95.266592pt;}
.x4{left:110.559915pt;}
.x1b{left:123.599936pt;}
.xd{left:142.888427pt;}
.x19{left:154.666667pt;}
.x17{left:164.357739pt;}
.x7{left:180.403627pt;}
.x1c{left:198.666667pt;}
.x5{left:207.839851pt;}
.xe{left:244.853227pt;}
.x8{left:257.333333pt;}
.x1d{left:396.000000pt;}
.x1e{left:548.000000pt;}
.x2{left:609.004800pt;}
.x18{left:721.333333pt;}
}




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