
    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_9c316ed6c7a558c8459c90f6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_efd06a7bc987dbfb5d07a128.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.860840;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_904a71262ca44972a154ad7f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9aaa8a1517e3409a870d6a07.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8a9982ed1b0e7ec7b4fd5252.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.877930;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_29f40d0aae697bf0c57e87ff.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c58b10a0993f0d6fa4559a27.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.693359;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_ea9e40d446c4418bcf24a59e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_00921fd478521ebbdda17388.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b953fd05fbd467853605dfe0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.706055;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_4f39f62265efca28c7dfdf0b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692383;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_9fad7783710347b906c6faf1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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_d0bceb682549744b7bdc5ec6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_25ec79c82d08ed0025c78f85.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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_e6ad44e5c75e5d0078a826de.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c72589fa28b17e618a7926a3.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_770103342a35cc063b77a8a6.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v3{vertical-align:-24.480000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v1{vertical-align:24.480000px;}
.ls18{letter-spacing:-0.426240px;}
.ls3d{letter-spacing:-0.417312px;}
.ls39{letter-spacing:-0.399168px;}
.ls52{letter-spacing:-0.381024px;}
.ls17{letter-spacing:-0.374400px;}
.ls19{letter-spacing:-0.338688px;}
.ls2b{letter-spacing:-0.320544px;}
.ls1b{letter-spacing:-0.302400px;}
.ls31{letter-spacing:-0.272160px;}
.ls26{letter-spacing:-0.260064px;}
.ls11{letter-spacing:-0.241920px;}
.ls1c{letter-spacing:-0.223776px;}
.ls15{letter-spacing:-0.198720px;}
.ls47{letter-spacing:-0.175392px;}
.ls13{letter-spacing:-0.158976px;}
.ls1a{letter-spacing:-0.157248px;}
.ls16{letter-spacing:-0.149760px;}
.ls3b{letter-spacing:-0.145152px;}
.ls3e{letter-spacing:-0.120960px;}
.ls14{letter-spacing:-0.086112px;}
.ls30{letter-spacing:-0.078624px;}
.ls2f{letter-spacing:-0.014400px;}
.lsf{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000576px;}
.lsb{letter-spacing:0.012096px;}
.lsc{letter-spacing:0.012960px;}
.ls1f{letter-spacing:0.014400px;}
.ls34{letter-spacing:0.054288px;}
.lsd{letter-spacing:0.060048px;}
.ls5f{letter-spacing:0.066240px;}
.ls4f{letter-spacing:0.068976px;}
.ls3{letter-spacing:0.159840px;}
.ls63{letter-spacing:0.174384px;}
.ls6{letter-spacing:0.200160px;}
.ls9{letter-spacing:0.240048px;}
.ls2{letter-spacing:0.279360px;}
.ls1{letter-spacing:0.319536px;}
.ls5{letter-spacing:0.319680px;}
.ls20{letter-spacing:0.325728px;}
.ls10{letter-spacing:0.356400px;}
.ls12{letter-spacing:0.359136px;}
.ls7{letter-spacing:0.360720px;}
.ls29{letter-spacing:0.362016px;}
.ls1e{letter-spacing:0.367488px;}
.ls32{letter-spacing:0.387360px;}
.ls8{letter-spacing:0.440640px;}
.ls27{letter-spacing:0.522720px;}
.ls28{letter-spacing:0.570240px;}
.ls21{letter-spacing:0.605808px;}
.ls36{letter-spacing:0.708480px;}
.ls3a{letter-spacing:0.719280px;}
.ls45{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.720576px;}
.ls38{letter-spacing:0.722304px;}
.ls37{letter-spacing:0.828000px;}
.ls2c{letter-spacing:0.912816px;}
.ls33{letter-spacing:1.007424px;}
.ls54{letter-spacing:1.069920px;}
.ls35{letter-spacing:1.105920px;}
.ls57{letter-spacing:1.133856px;}
.ls53{letter-spacing:1.281744px;}
.ls5a{letter-spacing:1.379952px;}
.ls4d{letter-spacing:1.913184px;}
.ls4e{letter-spacing:1.915200px;}
.ls6d{letter-spacing:1.996704px;}
.ls6a{letter-spacing:2.066976px;}
.ls59{letter-spacing:2.661696px;}
.ls67{letter-spacing:2.764224px;}
.ls68{letter-spacing:2.766240px;}
.ls25{letter-spacing:2.890080px;}
.ls24{letter-spacing:2.890368px;}
.ls43{letter-spacing:2.928240px;}
.ls22{letter-spacing:3.216672px;}
.ls46{letter-spacing:3.660768px;}
.ls6f{letter-spacing:4.685760px;}
.ls5d{letter-spacing:5.422896px;}
.ls5e{letter-spacing:5.423040px;}
.ls40{letter-spacing:5.587056px;}
.ls41{letter-spacing:5.588640px;}
.ls4b{letter-spacing:6.013296px;}
.ls4c{letter-spacing:6.013440px;}
.ls3f{letter-spacing:6.026400px;}
.ls42{letter-spacing:6.249600px;}
.ls71{letter-spacing:6.616800px;}
.ls66{letter-spacing:6.722352px;}
.ls48{letter-spacing:6.807168px;}
.ls4a{letter-spacing:6.808320px;}
.ls49{letter-spacing:6.808752px;}
.ls3c{letter-spacing:6.840000px;}
.ls2a{letter-spacing:7.472304px;}
.ls44{letter-spacing:7.744608px;}
.ls70{letter-spacing:8.433216px;}
.ls69{letter-spacing:9.454176px;}
.ls50{letter-spacing:9.728064px;}
.lse{letter-spacing:10.555776px;}
.ls5b{letter-spacing:10.804464px;}
.ls5c{letter-spacing:12.738240px;}
.ls6e{letter-spacing:12.914064px;}
.ls6b{letter-spacing:15.184656px;}
.ls60{letter-spacing:15.430752px;}
.ls51{letter-spacing:16.760880px;}
.ls55{letter-spacing:17.367264px;}
.ls56{letter-spacing:17.367840px;}
.ls62{letter-spacing:26.584128px;}
.ls2d{letter-spacing:31.100256px;}
.ls2e{letter-spacing:31.102560px;}
.ls61{letter-spacing:41.487408px;}
.ls4{letter-spacing:68.041440px;}
.ls0{letter-spacing:84.781440px;}
.ls1d{letter-spacing:87.984000px;}
.ls6c{letter-spacing:127.593792px;}
.ls58{letter-spacing:344.204640px;}
.ls64{letter-spacing:785.199456px;}
.ls65{letter-spacing:785.200320px;}
.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;}
}
.wsb{word-spacing:-21.247488px;}
.ws3{word-spacing:-21.239136px;}
.wsa{word-spacing:-18.014400px;}
.ws13{word-spacing:-18.000576px;}
.ws5{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.985600px;}
.ws4{word-spacing:-16.401024px;}
.ws0{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.974848px;}
.wse{word-spacing:-14.962752px;}
.ws15{word-spacing:-14.944608px;}
.ws14{word-spacing:-14.896224px;}
.ws2{word-spacing:-14.878080px;}
.ws1a{word-spacing:-14.859936px;}
.ws17{word-spacing:-14.847840px;}
.ws16{word-spacing:-14.817600px;}
.ws12{word-spacing:-14.799456px;}
.ws11{word-spacing:-14.781312px;}
.ws18{word-spacing:-14.738976px;}
.ws6{word-spacing:-14.025600px;}
.ws7{word-spacing:-13.973760px;}
.wsd{word-spacing:-12.602304px;}
.ws1{word-spacing:-12.236400px;}
.ws19{word-spacing:-0.769824px;}
.wsf{word-spacing:-0.758160px;}
.ws8{word-spacing:-0.047520px;}
.ws9{word-spacing:0.000000px;}
._1b{margin-left:-5.091696px;}
._6{margin-left:-3.937968px;}
._0{margin-left:-2.470032px;}
._1{margin-left:-1.123056px;}
._4{width:1.078416px;}
._e{width:2.548800px;}
._13{width:3.816000px;}
._1f{width:5.047200px;}
._19{width:6.242400px;}
._b{width:7.617600px;}
._5{width:9.021600px;}
._12{width:10.311408px;}
._10{width:12.052800px;}
._18{width:13.651200px;}
._14{width:14.760000px;}
._7{width:16.344000px;}
._2b{width:17.825328px;}
._22{width:19.036800px;}
._1a{width:20.116800px;}
._a{width:21.297600px;}
._9{width:22.622400px;}
._d{width:23.832000px;}
._c{width:25.149600px;}
._8{width:26.755200px;}
._16{width:27.812160px;}
._3{width:29.211840px;}
._17{width:30.513600px;}
._20{width:32.400000px;}
._21{width:33.479856px;}
._1e{width:35.172000px;}
._2f{width:36.208800px;}
._29{width:37.466784px;}
._1c{width:38.498400px;}
._f{width:39.844800px;}
._11{width:40.874400px;}
._23{width:42.156000px;}
._38{width:43.408800px;}
._2a{width:45.309600px;}
._15{width:46.634400px;}
._30{width:48.608496px;}
._24{width:49.975200px;}
._1d{width:53.402400px;}
._33{width:55.180800px;}
._3c{width:56.750400px;}
._3d{width:63.273600px;}
._26{width:66.283200px;}
._2{width:67.662144px;}
._39{width:71.426880px;}
._34{width:91.929600px;}
._3b{width:94.590720px;}
._37{width:127.379232px;}
._36{width:128.640960px;}
._28{width:153.014400px;}
._27{width:154.103040px;}
._35{width:162.509760px;}
._25{width:164.568096px;}
._3a{width:168.205104px;}
._2c{width:207.506880px;}
._2d{width:208.535040px;}
._31{width:265.386240px;}
._32{width:277.734384px;}
._2e{width:345.342096px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs1{font-size:47.520000px;}
.fs5{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs7{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:26.931000px;}
.y3{bottom:57.240000px;}
.y68{bottom:111.240000px;}
.yc2{bottom:111.960000px;}
.y23{bottom:113.760000px;}
.y84{bottom:116.640000px;}
.y3d{bottom:125.280000px;}
.yce{bottom:127.440000px;}
.y9c{bottom:128.520000px;}
.yc1{bottom:131.760000px;}
.y56{bottom:132.480000px;}
.y22{bottom:133.560000px;}
.y67{bottom:133.920000px;}
.y7a{bottom:145.800000px;}
.y66{bottom:146.520000px;}
.y83{bottom:151.200000px;}
.y21{bottom:153.360000px;}
.yc0{bottom:154.440000px;}
.y3c{bottom:156.240000px;}
.ycd{bottom:158.760000px;}
.y79{bottom:163.080000px;}
.y55{bottom:163.440000px;}
.y91{bottom:163.800000px;}
.ybf{bottom:166.320000px;}
.y82{bottom:168.480000px;}
.y20{bottom:173.160000px;}
.y9d{bottom:180.360000px;}
.y9f{bottom:181.080000px;}
.ybe{bottom:183.600000px;}
.y78{bottom:185.760000px;}
.y3b{bottom:187.200000px;}
.ycc{bottom:189.720000px;}
.y1f{bottom:192.960000px;}
.y54{bottom:194.760000px;}
.yac{bottom:197.640000px;}
.y77{bottom:198.360000px;}
.ybd{bottom:200.880000px;}
.y65{bottom:202.680000px;}
.y81{bottom:203.040000px;}
.ya3{bottom:207.720000px;}
.y9e{bottom:212.760000px;}
.y1e{bottom:213.120000px;}
.y92{bottom:214.560000px;}
.ya0{bottom:215.640000px;}
.y3a{bottom:218.160000px;}
.y80{bottom:219.960000px;}
.y7d{bottom:220.680000px;}
.y53{bottom:225.720000px;}
.yab{bottom:231.840000px;}
.y64{bottom:233.640000px;}
.y7f{bottom:237.240000px;}
.y1d{bottom:238.320000px;}
.ya2{bottom:238.680000px;}
.ybc{bottom:240.840000px;}
.y90{bottom:243.720000px;}
.yaa{bottom:249.120000px;}
.y39{bottom:249.480000px;}
.y7e{bottom:250.200000px;}
.y1c{bottom:250.920000px;}
.y7c{bottom:251.640000px;}
.ybb{bottom:252.720000px;}
.yb0{bottom:254.520000px;}
.y52{bottom:256.680000px;}
.y63{bottom:264.600000px;}
.yc4{bottom:266.400000px;}
.yaf{bottom:267.480000px;}
.ya1{bottom:269.640000px;}
.yba{bottom:270.000000px;}
.ya9{bottom:271.800000px;}
.y8f{bottom:274.680000px;}
.ycb{bottom:279.720000px;}
.y38{bottom:280.440000px;}
.y7b{bottom:282.960000px;}
.y51{bottom:287.640000px;}
.ya8{bottom:289.080000px;}
.yb9{bottom:292.680000px;}
.y62{bottom:295.560000px;}
.y76{bottom:300.960000px;}
.y1b{bottom:301.680000px;}
.yc3{bottom:302.040000px;}
.yb8{bottom:304.560000px;}
.y8e{bottom:305.640000px;}
.yca{bottom:311.040000px;}
.y9b{bottom:313.920000px;}
.ya7{bottom:318.240000px;}
.y50{bottom:318.960000px;}
.y1a{bottom:322.560000px;}
.y61{bottom:326.880000px;}
.yb7{bottom:327.240000px;}
.y37{bottom:329.400000px;}
.y75{bottom:331.920000px;}
.ya6{bottom:335.520000px;}
.y8d{bottom:336.960000px;}
.yb6{bottom:338.760000px;}
.yc9{bottom:342.000000px;}
.y19{bottom:343.080000px;}
.y9a{bottom:344.880000px;}
.y4f{bottom:349.920000px;}
.yb5{bottom:355.320000px;}
.y60{bottom:357.840000px;}
.ya5{bottom:358.200000px;}
.y36{bottom:360.360000px;}
.y74{bottom:362.880000px;}
.y18{bottom:363.960000px;}
.y8c{bottom:367.920000px;}
.ya4{bottom:370.800000px;}
.yc8{bottom:372.960000px;}
.yb4{bottom:373.320000px;}
.y99{bottom:375.840000px;}
.y4e{bottom:380.880000px;}
.y17{bottom:384.480000px;}
.y5f{bottom:388.800000px;}
.y35{bottom:391.320000px;}
.y73{bottom:393.840000px;}
.yb3{bottom:396.000000px;}
.y8b{bottom:398.880000px;}
.yc7{bottom:403.920000px;}
.y16{bottom:405.360000px;}
.y98{bottom:407.160000px;}
.yb2{bottom:407.880000px;}
.y4d{bottom:411.840000px;}
.y5e{bottom:419.760000px;}
.y34{bottom:422.640000px;}
.y72{bottom:425.160000px;}
.y15{bottom:425.880000px;}
.y8a{bottom:429.840000px;}
.yb1{bottom:430.560000px;}
.y97{bottom:438.120000px;}
.y4c{bottom:443.160000px;}
.y14{bottom:446.760000px;}
.y5d{bottom:450.720000px;}
.yc6{bottom:453.240000px;}
.y33{bottom:453.600000px;}
.y71{bottom:456.120000px;}
.y89{bottom:461.160000px;}
.y13{bottom:467.280000px;}
.y96{bottom:469.080000px;}
.y4b{bottom:474.120000px;}
.y5c{bottom:482.040000px;}
.yc5{bottom:484.200000px;}
.y32{bottom:484.560000px;}
.y70{bottom:487.080000px;}
.y12{bottom:488.160000px;}
.y88{bottom:492.120000px;}
.y4a{bottom:505.080000px;}
.y11{bottom:508.680000px;}
.y5b{bottom:513.000000px;}
.y31{bottom:515.520000px;}
.y95{bottom:518.040000px;}
.y87{bottom:523.080000px;}
.y10{bottom:529.560000px;}
.y49{bottom:536.040000px;}
.y5a{bottom:543.960000px;}
.y30{bottom:546.840000px;}
.y94{bottom:549.360000px;}
.yf{bottom:550.080000px;}
.y86{bottom:554.040000px;}
.y48{bottom:567.360000px;}
.ye{bottom:570.960000px;}
.y59{bottom:574.920000px;}
.y2f{bottom:577.800000px;}
.yae{bottom:580.320000px;}
.y85{bottom:585.360000px;}
.yd{bottom:591.480000px;}
.y6f{bottom:598.320000px;}
.y58{bottom:606.240000px;}
.y2e{bottom:608.760000px;}
.yad{bottom:611.280000px;}
.yc{bottom:612.360000px;}
.y47{bottom:616.320000px;}
.y6e{bottom:629.280000px;}
.ycf{bottom:629.640000px;}
.yb{bottom:632.880000px;}
.y2d{bottom:639.720000px;}
.y46{bottom:647.280000px;}
.ya{bottom:653.760000px;}
.y57{bottom:657.720000px;}
.y6d{bottom:660.240000px;}
.y2c{bottom:671.040000px;}
.y9{bottom:674.280000px;}
.y45{bottom:678.240000px;}
.y6c{bottom:691.560000px;}
.y2b{bottom:702.000000px;}
.y44{bottom:709.560000px;}
.y6b{bottom:722.520000px;}
.y8{bottom:722.880000px;}
.y43{bottom:740.520000px;}
.y6a{bottom:753.480000px;}
.y2a{bottom:753.840000px;}
.y42{bottom:771.480000px;}
.y7{bottom:775.080000px;}
.y69{bottom:784.440000px;}
.y29{bottom:794.880000px;}
.y41{bottom:802.440000px;}
.y93{bottom:815.760000px;}
.y28{bottom:816.120000px;}
.y6{bottom:820.800000px;}
.y40{bottom:833.760000px;}
.y27{bottom:836.640000px;}
.y5{bottom:856.800000px;}
.y3f{bottom:864.720000px;}
.y26{bottom:875.160000px;}
.y4{bottom:893.160000px;}
.y3e{bottom:895.680000px;}
.y25{bottom:896.040000px;}
.y2{bottom:928.800000px;}
.y1{bottom:951.480000px;}
.h8{height:26.995781px;}
.h9{height:42.022969px;}
.h2{height:44.149219px;}
.hc{height:44.902969px;}
.h6{height:48.761719px;}
.hb{height:48.796875px;}
.h7{height:49.992188px;}
.h3{height:50.027344px;}
.h4{height:56.604375px;}
.h5{height:57.474844px;}
.ha{height:60.375000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:71.239752px;}
.xa{left:101.999988px;}
.x1{left:108.000000px;}
.xc{left:110.894904px;}
.xe{left:117.500976px;}
.xf{left:119.415888px;}
.x4{left:135.000000px;}
.x12{left:157.916376px;}
.x7{left:161.174916px;}
.x14{left:173.437884px;}
.xb{left:176.967396px;}
.x11{left:205.188372px;}
.x9{left:265.947156px;}
.x5{left:284.757588px;}
.xd{left:289.936872px;}
.x8{left:324.000000px;}
.x13{left:325.449108px;}
.x10{left:341.959320px;}
.x6{left:343.846440px;}
.x2{left:361.462320px;}
@media print{
.v3{vertical-align:-21.760000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v1{vertical-align:21.760000pt;}
.ls18{letter-spacing:-0.378880pt;}
.ls3d{letter-spacing:-0.370944pt;}
.ls39{letter-spacing:-0.354816pt;}
.ls52{letter-spacing:-0.338688pt;}
.ls17{letter-spacing:-0.332800pt;}
.ls19{letter-spacing:-0.301056pt;}
.ls2b{letter-spacing:-0.284928pt;}
.ls1b{letter-spacing:-0.268800pt;}
.ls31{letter-spacing:-0.241920pt;}
.ls26{letter-spacing:-0.231168pt;}
.ls11{letter-spacing:-0.215040pt;}
.ls1c{letter-spacing:-0.198912pt;}
.ls15{letter-spacing:-0.176640pt;}
.ls47{letter-spacing:-0.155904pt;}
.ls13{letter-spacing:-0.141312pt;}
.ls1a{letter-spacing:-0.139776pt;}
.ls16{letter-spacing:-0.133120pt;}
.ls3b{letter-spacing:-0.129024pt;}
.ls3e{letter-spacing:-0.107520pt;}
.ls14{letter-spacing:-0.076544pt;}
.ls30{letter-spacing:-0.069888pt;}
.ls2f{letter-spacing:-0.012800pt;}
.lsf{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000512pt;}
.lsb{letter-spacing:0.010752pt;}
.lsc{letter-spacing:0.011520pt;}
.ls1f{letter-spacing:0.012800pt;}
.ls34{letter-spacing:0.048256pt;}
.lsd{letter-spacing:0.053376pt;}
.ls5f{letter-spacing:0.058880pt;}
.ls4f{letter-spacing:0.061312pt;}
.ls3{letter-spacing:0.142080pt;}
.ls63{letter-spacing:0.155008pt;}
.ls6{letter-spacing:0.177920pt;}
.ls9{letter-spacing:0.213376pt;}
.ls2{letter-spacing:0.248320pt;}
.ls1{letter-spacing:0.284032pt;}
.ls5{letter-spacing:0.284160pt;}
.ls20{letter-spacing:0.289536pt;}
.ls10{letter-spacing:0.316800pt;}
.ls12{letter-spacing:0.319232pt;}
.ls7{letter-spacing:0.320640pt;}
.ls29{letter-spacing:0.321792pt;}
.ls1e{letter-spacing:0.326656pt;}
.ls32{letter-spacing:0.344320pt;}
.ls8{letter-spacing:0.391680pt;}
.ls27{letter-spacing:0.464640pt;}
.ls28{letter-spacing:0.506880pt;}
.ls21{letter-spacing:0.538496pt;}
.ls36{letter-spacing:0.629760pt;}
.ls3a{letter-spacing:0.639360pt;}
.ls45{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.640512pt;}
.ls38{letter-spacing:0.642048pt;}
.ls37{letter-spacing:0.736000pt;}
.ls2c{letter-spacing:0.811392pt;}
.ls33{letter-spacing:0.895488pt;}
.ls54{letter-spacing:0.951040pt;}
.ls35{letter-spacing:0.983040pt;}
.ls57{letter-spacing:1.007872pt;}
.ls53{letter-spacing:1.139328pt;}
.ls5a{letter-spacing:1.226624pt;}
.ls4d{letter-spacing:1.700608pt;}
.ls4e{letter-spacing:1.702400pt;}
.ls6d{letter-spacing:1.774848pt;}
.ls6a{letter-spacing:1.837312pt;}
.ls59{letter-spacing:2.365952pt;}
.ls67{letter-spacing:2.457088pt;}
.ls68{letter-spacing:2.458880pt;}
.ls25{letter-spacing:2.568960pt;}
.ls24{letter-spacing:2.569216pt;}
.ls43{letter-spacing:2.602880pt;}
.ls22{letter-spacing:2.859264pt;}
.ls46{letter-spacing:3.254016pt;}
.ls6f{letter-spacing:4.165120pt;}
.ls5d{letter-spacing:4.820352pt;}
.ls5e{letter-spacing:4.820480pt;}
.ls40{letter-spacing:4.966272pt;}
.ls41{letter-spacing:4.967680pt;}
.ls4b{letter-spacing:5.345152pt;}
.ls4c{letter-spacing:5.345280pt;}
.ls3f{letter-spacing:5.356800pt;}
.ls42{letter-spacing:5.555200pt;}
.ls71{letter-spacing:5.881600pt;}
.ls66{letter-spacing:5.975424pt;}
.ls48{letter-spacing:6.050816pt;}
.ls4a{letter-spacing:6.051840pt;}
.ls49{letter-spacing:6.052224pt;}
.ls3c{letter-spacing:6.080000pt;}
.ls2a{letter-spacing:6.642048pt;}
.ls44{letter-spacing:6.884096pt;}
.ls70{letter-spacing:7.496192pt;}
.ls69{letter-spacing:8.403712pt;}
.ls50{letter-spacing:8.647168pt;}
.lse{letter-spacing:9.382912pt;}
.ls5b{letter-spacing:9.603968pt;}
.ls5c{letter-spacing:11.322880pt;}
.ls6e{letter-spacing:11.479168pt;}
.ls6b{letter-spacing:13.497472pt;}
.ls60{letter-spacing:13.716224pt;}
.ls51{letter-spacing:14.898560pt;}
.ls55{letter-spacing:15.437568pt;}
.ls56{letter-spacing:15.438080pt;}
.ls62{letter-spacing:23.630336pt;}
.ls2d{letter-spacing:27.644672pt;}
.ls2e{letter-spacing:27.646720pt;}
.ls61{letter-spacing:36.877696pt;}
.ls4{letter-spacing:60.481280pt;}
.ls0{letter-spacing:75.361280pt;}
.ls1d{letter-spacing:78.208000pt;}
.ls6c{letter-spacing:113.416704pt;}
.ls58{letter-spacing:305.959680pt;}
.ls64{letter-spacing:697.955072pt;}
.ls65{letter-spacing:697.955840pt;}
.wsb{word-spacing:-18.886656pt;}
.ws3{word-spacing:-18.879232pt;}
.wsa{word-spacing:-16.012800pt;}
.ws13{word-spacing:-16.000512pt;}
.ws5{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.987200pt;}
.ws4{word-spacing:-14.578688pt;}
.ws0{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.310976pt;}
.wse{word-spacing:-13.300224pt;}
.ws15{word-spacing:-13.284096pt;}
.ws14{word-spacing:-13.241088pt;}
.ws2{word-spacing:-13.224960pt;}
.ws1a{word-spacing:-13.208832pt;}
.ws17{word-spacing:-13.198080pt;}
.ws16{word-spacing:-13.171200pt;}
.ws12{word-spacing:-13.155072pt;}
.ws11{word-spacing:-13.138944pt;}
.ws18{word-spacing:-13.101312pt;}
.ws6{word-spacing:-12.467200pt;}
.ws7{word-spacing:-12.421120pt;}
.wsd{word-spacing:-11.202048pt;}
.ws1{word-spacing:-10.876800pt;}
.ws19{word-spacing:-0.684288pt;}
.wsf{word-spacing:-0.673920pt;}
.ws8{word-spacing:-0.042240pt;}
.ws9{word-spacing:0.000000pt;}
._1b{margin-left:-4.525952pt;}
._6{margin-left:-3.500416pt;}
._0{margin-left:-2.195584pt;}
._1{margin-left:-0.998272pt;}
._4{width:0.958592pt;}
._e{width:2.265600pt;}
._13{width:3.392000pt;}
._1f{width:4.486400pt;}
._19{width:5.548800pt;}
._b{width:6.771200pt;}
._5{width:8.019200pt;}
._12{width:9.165696pt;}
._10{width:10.713600pt;}
._18{width:12.134400pt;}
._14{width:13.120000pt;}
._7{width:14.528000pt;}
._2b{width:15.844736pt;}
._22{width:16.921600pt;}
._1a{width:17.881600pt;}
._a{width:18.931200pt;}
._9{width:20.108800pt;}
._d{width:21.184000pt;}
._c{width:22.355200pt;}
._8{width:23.782400pt;}
._16{width:24.721920pt;}
._3{width:25.966080pt;}
._17{width:27.123200pt;}
._20{width:28.800000pt;}
._21{width:29.759872pt;}
._1e{width:31.264000pt;}
._2f{width:32.185600pt;}
._29{width:33.303808pt;}
._1c{width:34.220800pt;}
._f{width:35.417600pt;}
._11{width:36.332800pt;}
._23{width:37.472000pt;}
._38{width:38.585600pt;}
._2a{width:40.275200pt;}
._15{width:41.452800pt;}
._30{width:43.207552pt;}
._24{width:44.422400pt;}
._1d{width:47.468800pt;}
._33{width:49.049600pt;}
._3c{width:50.444800pt;}
._3d{width:56.243200pt;}
._26{width:58.918400pt;}
._2{width:60.144128pt;}
._39{width:63.490560pt;}
._34{width:81.715200pt;}
._3b{width:84.080640pt;}
._37{width:113.225984pt;}
._36{width:114.347520pt;}
._28{width:136.012800pt;}
._27{width:136.980480pt;}
._35{width:144.453120pt;}
._25{width:146.282752pt;}
._3a{width:149.515648pt;}
._2c{width:184.450560pt;}
._2d{width:185.364480pt;}
._31{width:235.898880pt;}
._32{width:246.875008pt;}
._2e{width:306.970752pt;}
.fs6{font-size:34.560000pt;}
.fs1{font-size:42.240000pt;}
.fs5{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs7{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:23.938667pt;}
.y3{bottom:50.880000pt;}
.y68{bottom:98.880000pt;}
.yc2{bottom:99.520000pt;}
.y23{bottom:101.120000pt;}
.y84{bottom:103.680000pt;}
.y3d{bottom:111.360000pt;}
.yce{bottom:113.280000pt;}
.y9c{bottom:114.240000pt;}
.yc1{bottom:117.120000pt;}
.y56{bottom:117.760000pt;}
.y22{bottom:118.720000pt;}
.y67{bottom:119.040000pt;}
.y7a{bottom:129.600000pt;}
.y66{bottom:130.240000pt;}
.y83{bottom:134.400000pt;}
.y21{bottom:136.320000pt;}
.yc0{bottom:137.280000pt;}
.y3c{bottom:138.880000pt;}
.ycd{bottom:141.120000pt;}
.y79{bottom:144.960000pt;}
.y55{bottom:145.280000pt;}
.y91{bottom:145.600000pt;}
.ybf{bottom:147.840000pt;}
.y82{bottom:149.760000pt;}
.y20{bottom:153.920000pt;}
.y9d{bottom:160.320000pt;}
.y9f{bottom:160.960000pt;}
.ybe{bottom:163.200000pt;}
.y78{bottom:165.120000pt;}
.y3b{bottom:166.400000pt;}
.ycc{bottom:168.640000pt;}
.y1f{bottom:171.520000pt;}
.y54{bottom:173.120000pt;}
.yac{bottom:175.680000pt;}
.y77{bottom:176.320000pt;}
.ybd{bottom:178.560000pt;}
.y65{bottom:180.160000pt;}
.y81{bottom:180.480000pt;}
.ya3{bottom:184.640000pt;}
.y9e{bottom:189.120000pt;}
.y1e{bottom:189.440000pt;}
.y92{bottom:190.720000pt;}
.ya0{bottom:191.680000pt;}
.y3a{bottom:193.920000pt;}
.y80{bottom:195.520000pt;}
.y7d{bottom:196.160000pt;}
.y53{bottom:200.640000pt;}
.yab{bottom:206.080000pt;}
.y64{bottom:207.680000pt;}
.y7f{bottom:210.880000pt;}
.y1d{bottom:211.840000pt;}
.ya2{bottom:212.160000pt;}
.ybc{bottom:214.080000pt;}
.y90{bottom:216.640000pt;}
.yaa{bottom:221.440000pt;}
.y39{bottom:221.760000pt;}
.y7e{bottom:222.400000pt;}
.y1c{bottom:223.040000pt;}
.y7c{bottom:223.680000pt;}
.ybb{bottom:224.640000pt;}
.yb0{bottom:226.240000pt;}
.y52{bottom:228.160000pt;}
.y63{bottom:235.200000pt;}
.yc4{bottom:236.800000pt;}
.yaf{bottom:237.760000pt;}
.ya1{bottom:239.680000pt;}
.yba{bottom:240.000000pt;}
.ya9{bottom:241.600000pt;}
.y8f{bottom:244.160000pt;}
.ycb{bottom:248.640000pt;}
.y38{bottom:249.280000pt;}
.y7b{bottom:251.520000pt;}
.y51{bottom:255.680000pt;}
.ya8{bottom:256.960000pt;}
.yb9{bottom:260.160000pt;}
.y62{bottom:262.720000pt;}
.y76{bottom:267.520000pt;}
.y1b{bottom:268.160000pt;}
.yc3{bottom:268.480000pt;}
.yb8{bottom:270.720000pt;}
.y8e{bottom:271.680000pt;}
.yca{bottom:276.480000pt;}
.y9b{bottom:279.040000pt;}
.ya7{bottom:282.880000pt;}
.y50{bottom:283.520000pt;}
.y1a{bottom:286.720000pt;}
.y61{bottom:290.560000pt;}
.yb7{bottom:290.880000pt;}
.y37{bottom:292.800000pt;}
.y75{bottom:295.040000pt;}
.ya6{bottom:298.240000pt;}
.y8d{bottom:299.520000pt;}
.yb6{bottom:301.120000pt;}
.yc9{bottom:304.000000pt;}
.y19{bottom:304.960000pt;}
.y9a{bottom:306.560000pt;}
.y4f{bottom:311.040000pt;}
.yb5{bottom:315.840000pt;}
.y60{bottom:318.080000pt;}
.ya5{bottom:318.400000pt;}
.y36{bottom:320.320000pt;}
.y74{bottom:322.560000pt;}
.y18{bottom:323.520000pt;}
.y8c{bottom:327.040000pt;}
.ya4{bottom:329.600000pt;}
.yc8{bottom:331.520000pt;}
.yb4{bottom:331.840000pt;}
.y99{bottom:334.080000pt;}
.y4e{bottom:338.560000pt;}
.y17{bottom:341.760000pt;}
.y5f{bottom:345.600000pt;}
.y35{bottom:347.840000pt;}
.y73{bottom:350.080000pt;}
.yb3{bottom:352.000000pt;}
.y8b{bottom:354.560000pt;}
.yc7{bottom:359.040000pt;}
.y16{bottom:360.320000pt;}
.y98{bottom:361.920000pt;}
.yb2{bottom:362.560000pt;}
.y4d{bottom:366.080000pt;}
.y5e{bottom:373.120000pt;}
.y34{bottom:375.680000pt;}
.y72{bottom:377.920000pt;}
.y15{bottom:378.560000pt;}
.y8a{bottom:382.080000pt;}
.yb1{bottom:382.720000pt;}
.y97{bottom:389.440000pt;}
.y4c{bottom:393.920000pt;}
.y14{bottom:397.120000pt;}
.y5d{bottom:400.640000pt;}
.yc6{bottom:402.880000pt;}
.y33{bottom:403.200000pt;}
.y71{bottom:405.440000pt;}
.y89{bottom:409.920000pt;}
.y13{bottom:415.360000pt;}
.y96{bottom:416.960000pt;}
.y4b{bottom:421.440000pt;}
.y5c{bottom:428.480000pt;}
.yc5{bottom:430.400000pt;}
.y32{bottom:430.720000pt;}
.y70{bottom:432.960000pt;}
.y12{bottom:433.920000pt;}
.y88{bottom:437.440000pt;}
.y4a{bottom:448.960000pt;}
.y11{bottom:452.160000pt;}
.y5b{bottom:456.000000pt;}
.y31{bottom:458.240000pt;}
.y95{bottom:460.480000pt;}
.y87{bottom:464.960000pt;}
.y10{bottom:470.720000pt;}
.y49{bottom:476.480000pt;}
.y5a{bottom:483.520000pt;}
.y30{bottom:486.080000pt;}
.y94{bottom:488.320000pt;}
.yf{bottom:488.960000pt;}
.y86{bottom:492.480000pt;}
.y48{bottom:504.320000pt;}
.ye{bottom:507.520000pt;}
.y59{bottom:511.040000pt;}
.y2f{bottom:513.600000pt;}
.yae{bottom:515.840000pt;}
.y85{bottom:520.320000pt;}
.yd{bottom:525.760000pt;}
.y6f{bottom:531.840000pt;}
.y58{bottom:538.880000pt;}
.y2e{bottom:541.120000pt;}
.yad{bottom:543.360000pt;}
.yc{bottom:544.320000pt;}
.y47{bottom:547.840000pt;}
.y6e{bottom:559.360000pt;}
.ycf{bottom:559.680000pt;}
.yb{bottom:562.560000pt;}
.y2d{bottom:568.640000pt;}
.y46{bottom:575.360000pt;}
.ya{bottom:581.120000pt;}
.y57{bottom:584.640000pt;}
.y6d{bottom:586.880000pt;}
.y2c{bottom:596.480000pt;}
.y9{bottom:599.360000pt;}
.y45{bottom:602.880000pt;}
.y6c{bottom:614.720000pt;}
.y2b{bottom:624.000000pt;}
.y44{bottom:630.720000pt;}
.y6b{bottom:642.240000pt;}
.y8{bottom:642.560000pt;}
.y43{bottom:658.240000pt;}
.y6a{bottom:669.760000pt;}
.y2a{bottom:670.080000pt;}
.y42{bottom:685.760000pt;}
.y7{bottom:688.960000pt;}
.y69{bottom:697.280000pt;}
.y29{bottom:706.560000pt;}
.y41{bottom:713.280000pt;}
.y93{bottom:725.120000pt;}
.y28{bottom:725.440000pt;}
.y6{bottom:729.600000pt;}
.y40{bottom:741.120000pt;}
.y27{bottom:743.680000pt;}
.y5{bottom:761.600000pt;}
.y3f{bottom:768.640000pt;}
.y26{bottom:777.920000pt;}
.y4{bottom:793.920000pt;}
.y3e{bottom:796.160000pt;}
.y25{bottom:796.480000pt;}
.y2{bottom:825.600000pt;}
.y1{bottom:845.760000pt;}
.h8{height:23.996250pt;}
.h9{height:37.353750pt;}
.h2{height:39.243750pt;}
.hc{height:39.913750pt;}
.h6{height:43.343750pt;}
.hb{height:43.375000pt;}
.h7{height:44.437500pt;}
.h3{height:44.468750pt;}
.h4{height:50.315000pt;}
.h5{height:51.088750pt;}
.ha{height:53.666667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:63.324224pt;}
.xa{left:90.666656pt;}
.x1{left:96.000000pt;}
.xc{left:98.573248pt;}
.xe{left:104.445312pt;}
.xf{left:106.147456pt;}
.x4{left:120.000000pt;}
.x12{left:140.370112pt;}
.x7{left:143.266592pt;}
.x14{left:154.167008pt;}
.xb{left:157.304352pt;}
.x11{left:182.389664pt;}
.x9{left:236.397472pt;}
.x5{left:253.117856pt;}
.xd{left:257.721664pt;}
.x8{left:288.000000pt;}
.x13{left:289.288096pt;}
.x10{left:303.963840pt;}
.x6{left:305.641280pt;}
.x2{left:321.299840pt;}
}




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