
    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_627421910ad382eb4271a002.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_55eb751544480fe0a37507d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_a20bf3f71552bbad681f8746.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_1d8032e34fb1622490102e33.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_04fc1e68da9728d3d27ba676.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_349d67c474a68b61134660e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_81d3e22409aa942c4b27c151.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_80c26bd82076ebdf1c8c784d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.928000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9416893c99e10a333c53ceac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.694000;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_1b1572f6076f6cff60285502.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.719000;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_79cd91ff4044894ccaf895aa.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;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_faedb59b106a87be324c2922.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.414000;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_db30a6e7a48acb8b2646054c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.693000;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_d8250a1112d1a9e88f83a157.woff2')format("woff");}.fff{font-family:fff;line-height:0.923000;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);}
.v1{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:10.758000px;}
.v8{vertical-align:18.132000px;}
.vc{vertical-align:20.724000px;}
.vb{vertical-align:26.028000px;}
.vd{vertical-align:29.616000px;}
.v9{vertical-align:37.770000px;}
.v4{vertical-align:48.528000px;}
.va{vertical-align:97.734000px;}
.v3{vertical-align:101.142000px;}
.v2{vertical-align:122.658000px;}
.v6{vertical-align:134.286000px;}
.v5{vertical-align:150.348000px;}
.v7{vertical-align:171.864000px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000399px;}
.ls2c{letter-spacing:0.000538px;}
.ls22{letter-spacing:0.001114px;}
.ls7{letter-spacing:0.001150px;}
.ls26{letter-spacing:0.001200px;}
.ls1b{letter-spacing:0.001300px;}
.ls2e{letter-spacing:0.001866px;}
.ls18{letter-spacing:0.002523px;}
.ls1{letter-spacing:0.002703px;}
.lsb{letter-spacing:0.002759px;}
.ls20{letter-spacing:0.003056px;}
.lse{letter-spacing:0.003191px;}
.ls23{letter-spacing:0.003206px;}
.ls5{letter-spacing:0.004765px;}
.lsc{letter-spacing:2.573487px;}
.lsa{letter-spacing:2.579487px;}
.ls12{letter-spacing:2.984915px;}
.ls0{letter-spacing:2.988960px;}
.ls29{letter-spacing:2.991226px;}
.ls2d{letter-spacing:4.276641px;}
.ls21{letter-spacing:4.394783px;}
.ls19{letter-spacing:4.400783px;}
.ls1c{letter-spacing:5.344571px;}
.lsd{letter-spacing:14.942915px;}
.ls10{letter-spacing:15.937473px;}
.lsf{letter-spacing:15.940404px;}
.ls2f{letter-spacing:16.602538px;}
.ls14{letter-spacing:19.919518px;}
.ls24{letter-spacing:19.921473px;}
.ls17{letter-spacing:19.924800px;}
.ls16{letter-spacing:19.925518px;}
.ls9{letter-spacing:19.927473px;}
.ls8{letter-spacing:20.512737px;}
.ls15{letter-spacing:22.499487px;}
.ls2b{letter-spacing:22.911226px;}
.ls28{letter-spacing:23.287473px;}
.ls27{letter-spacing:23.413473px;}
.ls1a{letter-spacing:27.095518px;}
.ls2a{letter-spacing:27.603226px;}
.ls6{letter-spacing:27.976478px;}
.ls25{letter-spacing:34.887600px;}
.ls3{letter-spacing:35.865600px;}
.ls4{letter-spacing:39.023831px;}
.ls11{letter-spacing:43.084664px;}
.ls1e{letter-spacing:70.765473px;}
.ls1d{letter-spacing:93.347123px;}
.ls13{letter-spacing:824.511191px;}
.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;}
}
.ws42{word-spacing:-71.731200px;}
.ws2a{word-spacing:-56.789591px;}
.ws28{word-spacing:-45.664082px;}
.ws16{word-spacing:-36.367718px;}
.ws12{word-spacing:-32.278875px;}
.ws18{word-spacing:-29.266330px;}
.ws2d{word-spacing:-25.794540px;}
.ws5b{word-spacing:-22.416000px;}
.ws5{word-spacing:-20.906199px;}
.ws3e{word-spacing:-19.510886px;}
.ws17{word-spacing:-19.439155px;}
.ws69{word-spacing:-19.092327px;}
.ws47{word-spacing:-14.111859px;}
.ws34{word-spacing:-3.873485px;}
.ws41{word-spacing:-3.579673px;}
.ws52{word-spacing:-3.578077px;}
.ws48{word-spacing:-3.573673px;}
.ws3f{word-spacing:-3.572077px;}
.wsa{word-spacing:-1.296001px;}
.ws5d{word-spacing:-1.291162px;}
.wsf{word-spacing:-0.445091px;}
.ws3c{word-spacing:-0.071731px;}
.wsd{word-spacing:-0.065455px;}
.ws6b{word-spacing:-0.059776px;}
.ws2e{word-spacing:-0.047821px;}
.ws6d{word-spacing:-0.041843px;}
.ws15{word-spacing:0.000000px;}
.ws60{word-spacing:0.358656px;}
.ws27{word-spacing:0.396117px;}
.ws4c{word-spacing:0.430387px;}
.ws4e{word-spacing:0.992400px;}
.ws73{word-spacing:1.004237px;}
.ws9{word-spacing:1.019420px;}
.ws36{word-spacing:1.344563px;}
.ws38{word-spacing:1.362893px;}
.ws61{word-spacing:1.506355px;}
.ws55{word-spacing:1.592428px;}
.ws45{word-spacing:2.223667px;}
.ws4{word-spacing:2.238547px;}
.ws67{word-spacing:2.367130px;}
.ws7{word-spacing:2.500366px;}
.ws8{word-spacing:2.696730px;}
.ws57{word-spacing:2.725786px;}
.ws6{word-spacing:2.853821px;}
.ws25{word-spacing:3.012710px;}
.ws6e{word-spacing:3.299613px;}
.ws6f{word-spacing:3.359389px;}
.ws11{word-spacing:3.613094px;}
.ws6a{word-spacing:3.801728px;}
.ws24{word-spacing:3.801754px;}
.ws1d{word-spacing:3.873485px;}
.ws21{word-spacing:3.881265px;}
.ws2b{word-spacing:3.895676px;}
.ws1e{word-spacing:3.945216px;}
.ws56{word-spacing:4.303872px;}
.ws13{word-spacing:4.483200px;}
.ws74{word-spacing:4.519066px;}
.ws50{word-spacing:4.590797px;}
.ws2{word-spacing:4.648169px;}
.ws63{word-spacing:5.092915px;}
.ws1b{word-spacing:5.379825px;}
.ws1f{word-spacing:5.451571px;}
.ws3b{word-spacing:5.595034px;}
.ws5f{word-spacing:5.881958px;}
.ws43{word-spacing:6.097152px;}
.ws10{word-spacing:6.231278px;}
.ws1a{word-spacing:6.455775px;}
.ws35{word-spacing:6.455808px;}
.ws39{word-spacing:6.527539px;}
.ws3d{word-spacing:6.671002px;}
.ws1c{word-spacing:7.244851px;}
.ws0{word-spacing:7.748437px;}
.ws32{word-spacing:7.962163px;}
.wsb{word-spacing:7.998552px;}
.ws26{word-spacing:8.225871px;}
.ws1{word-spacing:8.607720px;}
.wse{word-spacing:8.914917px;}
.ws29{word-spacing:10.140370px;}
.wsc{word-spacing:10.250190px;}
.ws62{word-spacing:10.498986px;}
.ws3{word-spacing:11.074918px;}
.ws71{word-spacing:11.333530px;}
.ws20{word-spacing:11.548723px;}
.ws58{word-spacing:11.698986px;}
.ws31{word-spacing:11.700632px;}
.ws2f{word-spacing:11.704986px;}
.ws40{word-spacing:12.281971px;}
.ws53{word-spacing:12.287971px;}
.ws72{word-spacing:12.624691px;}
.ws65{word-spacing:12.839885px;}
.ws54{word-spacing:13.417920px;}
.ws5c{word-spacing:14.707920px;}
.ws4b{word-spacing:15.350477px;}
.ws14{word-spacing:16.354714px;}
.ws4a{word-spacing:17.681741px;}
.ws4f{word-spacing:18.715920px;}
.ws44{word-spacing:22.855273px;}
.ws46{word-spacing:22.856420px;}
.ws51{word-spacing:22.862420px;}
.ws37{word-spacing:22.864865px;}
.ws5e{word-spacing:24.841822px;}
.ws33{word-spacing:26.350865px;}
.ws2c{word-spacing:26.376370px;}
.ws66{word-spacing:26.688278px;}
.ws30{word-spacing:28.151871px;}
.ws3a{word-spacing:28.918865px;}
.ws22{word-spacing:31.637871px;}
.ws19{word-spacing:42.572467px;}
.ws68{word-spacing:50.665799px;}
.ws6c{word-spacing:76.429082px;}
.ws4d{word-spacing:78.780732px;}
.ws70{word-spacing:83.925075px;}
.ws64{word-spacing:88.157971px;}
.ws5a{word-spacing:96.336732px;}
.ws49{word-spacing:105.713971px;}
.ws59{word-spacing:123.275971px;}
.ws23{word-spacing:1133.369871px;}
._33{margin-left:-45.626293px;}
._36{margin-left:-37.976059px;}
._19{margin-left:-35.865600px;}
._1c{margin-left:-33.396485px;}
._34{margin-left:-27.012247px;}
._1d{margin-left:-16.498176px;}
._1a{margin-left:-13.013601px;}
._1{margin-left:-11.529675px;}
._2f{margin-left:-10.087191px;}
._28{margin-left:-8.091257px;}
._b{margin-left:-6.486918px;}
._3{margin-left:-5.225130px;}
._2{margin-left:-3.843225px;}
._d{margin-left:-2.749093px;}
._4{margin-left:-1.691295px;}
._5{width:1.691295px;}
._c{width:2.824359px;}
._0{width:3.843225px;}
._2a{width:6.072617px;}
._2d{width:11.043423px;}
._14{width:19.431495px;}
._7{width:20.697720px;}
._6{width:21.701916px;}
._11{width:23.250736px;}
._9{width:24.328282px;}
._35{width:25.639035px;}
._a{width:27.244398px;}
._8{width:28.734569px;}
._2e{width:30.269574px;}
._22{width:31.388759px;}
._31{width:33.850180px;}
._2c{width:35.148288px;}
._17{width:36.469703px;}
._16{width:37.659651px;}
._20{width:40.272818px;}
._15{width:43.265908px;}
._23{width:46.104897px;}
._43{width:49.537698px;}
._2b{width:52.023905px;}
._29{width:53.870131px;}
._12{width:59.137618px;}
._30{width:62.190950px;}
._e{width:64.988467px;}
._10{width:71.802931px;}
._32{width:88.290466px;}
._27{width:96.836850px;}
._41{width:99.864350px;}
._1b{width:107.309875px;}
._39{width:110.646603px;}
._26{width:116.203950px;}
._13{width:143.175475px;}
._38{width:152.873280px;}
._3a{width:161.854738px;}
._40{width:280.899821px;}
._42{width:310.952671px;}
._3d{width:340.840471px;}
._3f{width:354.788086px;}
._3c{width:361.010726px;}
._37{width:410.180167px;}
._3b{width:426.259804px;}
._3e{width:456.147604px;}
._21{width:638.675569px;}
._1e{width:850.445963px;}
._18{width:863.069798px;}
._24{width:1157.662891px;}
._f{width:1268.883451px;}
._1f{width:1407.724800px;}
._25{width:2175.965952px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y18{bottom:63.168000px;}
.y17{bottom:108.000000px;}
.y3d{bottom:120.589500px;}
.y51{bottom:134.890500px;}
.y68{bottom:138.835500px;}
.y16{bottom:152.449500px;}
.y3c{bottom:162.423000px;}
.y7e{bottom:193.009500px;}
.y15{bottom:196.899000px;}
.y50{bottom:197.098500px;}
.y67{bottom:198.229500px;}
.y90{bottom:199.021500px;}
.y3b{bottom:221.817000px;}
.y8f{bottom:225.912000px;}
.ya3{bottom:227.518500px;}
.y14{bottom:241.350000px;}
.y66{bottom:242.679000px;}
.y7d{bottom:251.128500px;}
.y65{bottom:269.569500px;}
.ya2{bottom:271.969500px;}
.y3a{bottom:277.849500px;}
.y4f{bottom:281.007000px;}
.y13{bottom:285.799500px;}
.y8e{bottom:288.120000px;}
.ya1{bottom:298.860000px;}
.y7c{bottom:305.532000px;}
.y4e{bottom:307.899000px;}
.y7b{bottom:317.833500px;}
.y64{bottom:325.602000px;}
.ya0{bottom:325.750500px;}
.y8d{bottom:328.920000px;}
.y4d{bottom:346.881000px;}
.y9f{bottom:352.641000px;}
.y39{bottom:353.883000px;}
.y12{bottom:365.566500px;}
.y7a{bottom:370.450500px;}
.y4c{bottom:373.771500px;}
.y9e{bottom:379.533000px;}
.yb5{bottom:398.179500px;}
.y38{bottom:400.200000px;}
.y63{bottom:401.635500px;}
.y37{bottom:412.501500px;}
.y4b{bottom:412.753500px;}
.y8c{bottom:414.303000px;}
.yb4{bottom:425.070000px;}
.y27{bottom:426.810000px;}
.y79{bottom:428.569500px;}
.y9d{bottom:435.564000px;}
.y4a{bottom:439.644000px;}
.y11{bottom:450.634500px;}
.y78{bottom:455.460000px;}
.y8b{bottom:458.752500px;}
.y62{bottom:463.843500px;}
.y36{bottom:471.120000px;}
.y10{bottom:475.857000px;}
.y8a{bottom:485.644500px;}
.yb3{bottom:487.279500px;}
.y26{bottom:488.818500px;}
.y49{bottom:490.479000px;}
.y77{bottom:496.870500px;}
.y35{bottom:498.010500px;}
.yf{bottom:501.078000px;}
.y9c{bottom:503.077500px;}
.y9b{bottom:515.379000px;}
.y34{bottom:524.901000px;}
.ye{bottom:526.300500px;}
.y89{bottom:545.037000px;}
.y48{bottom:546.511500px;}
.y61{bottom:549.226500px;}
.y25{bottom:550.827000px;}
.yd{bottom:551.521500px;}
.y76{bottom:554.989500px;}
.y9a{bottom:567.996000px;}
.yb2{bottom:572.661000px;}
.yc{bottom:576.744000px;}
.y33{bottom:580.933500px;}
.y88{bottom:586.872000px;}
.y24{bottom:595.276500px;}
.y75{bottom:599.439000px;}
.yb1{bottom:599.551500px;}
.yb{bottom:601.965000px;}
.y60{bottom:608.620500px;}
.y47{bottom:621.072000px;}
.y99{bottom:624.249000px;}
.ya{bottom:627.187500px;}
.y5f{bottom:635.511000px;}
.y98{bottom:636.549000px;}
.y23{bottom:639.727500px;}
.yb0{bottom:641.386500px;}
.y87{bottom:646.266000px;}
.y9{bottom:652.408500px;}
.y74{bottom:655.470000px;}
.y32{bottom:656.967000px;}
.y46{bottom:660.054000px;}
.yaf{bottom:668.278500px;}
.y5e{bottom:677.346000px;}
.y8{bottom:677.631000px;}
.y31{bottom:683.857500px;}
.y22{bottom:684.177000px;}
.y97{bottom:690.129000px;}
.y45{bottom:699.036000px;}
.y86{bottom:700.669500px;}
.y30{bottom:710.748000px;}
.y85{bottom:712.971000px;}
.y5d{bottom:719.181000px;}
.y7{bottom:726.805500px;}
.yae{bottom:727.671000px;}
.y73{bottom:731.286000px;}
.y96{bottom:734.578500px;}
.y2f{bottom:737.640000px;}
.y44{bottom:738.018000px;}
.y21{bottom:746.185500px;}
.yad{bottom:754.563000px;}
.y72{bottom:758.176500px;}
.y5c{bottom:761.016000px;}
.y95{bottom:761.469000px;}
.y84{bottom:765.588000px;}
.y20{bottom:790.635000px;}
.y2e{bottom:793.671000px;}
.y43{bottom:794.049000px;}
.y6{bottom:803.571000px;}
.y83{bottom:814.530000px;}
.y71{bottom:816.295500px;}
.yac{bottom:816.771000px;}
.y94{bottom:817.501500px;}
.y5b{bottom:820.408500px;}
.y82{bottom:826.830000px;}
.y1f{bottom:835.084500px;}
.y70{bottom:857.704500px;}
.y5a{bottom:859.300500px;}
.y5{bottom:865.581000px;}
.y42{bottom:868.609500px;}
.y2d{bottom:869.704500px;}
.y59{bottom:871.602000px;}
.y81{bottom:875.976000px;}
.y1e{bottom:879.535500px;}
.y93{bottom:893.535000px;}
.yab{bottom:905.923500px;}
.y2c{bottom:911.539500px;}
.y41{bottom:913.059000px;}
.y6f{bottom:915.823500px;}
.y80{bottom:917.811000px;}
.y92{bottom:920.425500px;}
.y58{bottom:923.422500px;}
.yaa{bottom:923.857500px;}
.y1d{bottom:941.544000px;}
.ya9{bottom:941.790000px;}
.y4{bottom:942.859500px;}
.ya8{bottom:959.722500px;}
.y6e{bottom:960.027000px;}
.y91{bottom:962.260500px;}
.y57{bottom:967.872000px;}
.y2b{bottom:970.933500px;}
.y6d{bottom:972.328500px;}
.y40{bottom:975.267000px;}
.y3{bottom:976.240500px;}
.y7f{bottom:977.205000px;}
.ya7{bottom:977.655000px;}
.y1c{bottom:985.993500px;}
.y56{bottom:994.764000px;}
.y2a{bottom:997.824000px;}
.y6c{bottom:1000.897500px;}
.ya6{bottom:1004.572500px;}
.y2{bottom:1009.623000px;}
.y55{bottom:1021.654500px;}
.ya5{bottom:1022.505000px;}
.y6b{bottom:1027.789500px;}
.ya4{bottom:1046.463000px;}
.y1b{bottom:1048.002000px;}
.y54{bottom:1048.545000px;}
.y29{bottom:1053.856500px;}
.y1{bottom:1055.986500px;}
.y3f{bottom:1059.175500px;}
.y53{bottom:1075.435500px;}
.y6a{bottom:1075.455000px;}
.y3e{bottom:1086.066000px;}
.y69{bottom:1087.756500px;}
.y1a{bottom:1092.451500px;}
.y28{bottom:1126.275000px;}
.y52{bottom:1131.468000px;}
.y19{bottom:1136.902500px;}
.h16{height:44.831700px;}
.hd{height:48.992410px;}
.h4{height:49.090950px;}
.h17{height:49.781453px;}
.h6{height:53.798400px;}
.he{height:59.406779px;}
.h12{height:62.994779px;}
.h3{height:64.557900px;}
.h7{height:68.144640px;}
.ha{height:69.276346px;}
.h5{height:77.469300px;}
.h2{height:92.981250px;}
.h13{height:102.320400px;}
.hb{height:102.326400px;}
.h11{height:103.004400px;}
.hf{height:107.934779px;}
.h14{height:107.940779px;}
.h15{height:112.194779px;}
.h10{height:112.200779px;}
.h8{height:125.527248px;}
.hc{height:151.532400px;}
.h9{height:174.733248px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x25{left:116.779500px;}
.x21{left:121.920000px;}
.x1{left:123.586500px;}
.x10{left:129.460500px;}
.x3{left:130.785000px;}
.xb{left:134.338500px;}
.x26{left:144.093000px;}
.x9{left:151.897500px;}
.x8{left:176.443500px;}
.x20{left:223.461000px;}
.x1e{left:229.317000px;}
.x2{left:231.573000px;}
.x1a{left:243.976500px;}
.x16{left:245.928000px;}
.x4{left:259.351500px;}
.x22{left:288.672000px;}
.x1f{left:315.855000px;}
.x1c{left:324.411000px;}
.x5{left:328.815000px;}
.x18{left:333.843000px;}
.xe{left:336.562500px;}
.x17{left:338.752500px;}
.x1b{left:341.191500px;}
.x6{left:364.663500px;}
.x12{left:367.210500px;}
.x1d{left:399.960000px;}
.x19{left:405.003000px;}
.x7{left:410.455500px;}
.xd{left:411.723000px;}
.x23{left:412.903500px;}
.x13{left:438.130500px;}
.xc{left:442.066500px;}
.x14{left:491.302500px;}
.x11{left:492.873000px;}
.xf{left:494.265000px;}
.x24{left:579.655500px;}
.x15{left:762.477000px;}
@media print{
.v1{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:9.562667pt;}
.v8{vertical-align:16.117333pt;}
.vc{vertical-align:18.421333pt;}
.vb{vertical-align:23.136000pt;}
.vd{vertical-align:26.325333pt;}
.v9{vertical-align:33.573333pt;}
.v4{vertical-align:43.136000pt;}
.va{vertical-align:86.874667pt;}
.v3{vertical-align:89.904000pt;}
.v2{vertical-align:109.029333pt;}
.v6{vertical-align:119.365333pt;}
.v5{vertical-align:133.642667pt;}
.v7{vertical-align:152.768000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000355pt;}
.ls2c{letter-spacing:0.000479pt;}
.ls22{letter-spacing:0.000990pt;}
.ls7{letter-spacing:0.001022pt;}
.ls26{letter-spacing:0.001067pt;}
.ls1b{letter-spacing:0.001155pt;}
.ls2e{letter-spacing:0.001659pt;}
.ls18{letter-spacing:0.002243pt;}
.ls1{letter-spacing:0.002403pt;}
.lsb{letter-spacing:0.002452pt;}
.ls20{letter-spacing:0.002717pt;}
.lse{letter-spacing:0.002836pt;}
.ls23{letter-spacing:0.002850pt;}
.ls5{letter-spacing:0.004236pt;}
.lsc{letter-spacing:2.287544pt;}
.lsa{letter-spacing:2.292878pt;}
.ls12{letter-spacing:2.653258pt;}
.ls0{letter-spacing:2.656853pt;}
.ls29{letter-spacing:2.658868pt;}
.ls2d{letter-spacing:3.801458pt;}
.ls21{letter-spacing:3.906474pt;}
.ls19{letter-spacing:3.911807pt;}
.ls1c{letter-spacing:4.750730pt;}
.lsd{letter-spacing:13.282591pt;}
.ls10{letter-spacing:14.166642pt;}
.lsf{letter-spacing:14.169248pt;}
.ls2f{letter-spacing:14.757812pt;}
.ls14{letter-spacing:17.706238pt;}
.ls24{letter-spacing:17.707976pt;}
.ls17{letter-spacing:17.710933pt;}
.ls16{letter-spacing:17.711572pt;}
.ls9{letter-spacing:17.713309pt;}
.ls8{letter-spacing:18.233544pt;}
.ls15{letter-spacing:19.999544pt;}
.ls2b{letter-spacing:20.365534pt;}
.ls28{letter-spacing:20.699976pt;}
.ls27{letter-spacing:20.811976pt;}
.ls1a{letter-spacing:24.084905pt;}
.ls2a{letter-spacing:24.536201pt;}
.ls6{letter-spacing:24.867980pt;}
.ls25{letter-spacing:31.011200pt;}
.ls3{letter-spacing:31.880533pt;}
.ls4{letter-spacing:34.687850pt;}
.ls11{letter-spacing:38.297479pt;}
.ls1e{letter-spacing:62.902642pt;}
.ls1d{letter-spacing:82.975220pt;}
.ls13{letter-spacing:732.898836pt;}
.ws42{word-spacing:-63.761067pt;}
.ws2a{word-spacing:-50.479636pt;}
.ws28{word-spacing:-40.590295pt;}
.ws16{word-spacing:-32.326861pt;}
.ws12{word-spacing:-28.692333pt;}
.ws18{word-spacing:-26.014515pt;}
.ws2d{word-spacing:-22.928480pt;}
.ws5b{word-spacing:-19.925333pt;}
.ws5{word-spacing:-18.583288pt;}
.ws3e{word-spacing:-17.343010pt;}
.ws17{word-spacing:-17.279249pt;}
.ws69{word-spacing:-16.970957pt;}
.ws47{word-spacing:-12.543875pt;}
.ws34{word-spacing:-3.443098pt;}
.ws41{word-spacing:-3.181932pt;}
.ws52{word-spacing:-3.180513pt;}
.ws48{word-spacing:-3.176598pt;}
.ws3f{word-spacing:-3.175180pt;}
.wsa{word-spacing:-1.152001pt;}
.ws5d{word-spacing:-1.147699pt;}
.wsf{word-spacing:-0.395637pt;}
.ws3c{word-spacing:-0.063761pt;}
.wsd{word-spacing:-0.058182pt;}
.ws6b{word-spacing:-0.053134pt;}
.ws2e{word-spacing:-0.042507pt;}
.ws6d{word-spacing:-0.037194pt;}
.ws15{word-spacing:0.000000pt;}
.ws60{word-spacing:0.318805pt;}
.ws27{word-spacing:0.352104pt;}
.ws4c{word-spacing:0.382566pt;}
.ws4e{word-spacing:0.882133pt;}
.ws73{word-spacing:0.892655pt;}
.ws9{word-spacing:0.906151pt;}
.ws36{word-spacing:1.195167pt;}
.ws38{word-spacing:1.211460pt;}
.ws61{word-spacing:1.338982pt;}
.ws55{word-spacing:1.415492pt;}
.ws45{word-spacing:1.976593pt;}
.ws4{word-spacing:1.989820pt;}
.ws67{word-spacing:2.104115pt;}
.ws7{word-spacing:2.222547pt;}
.ws8{word-spacing:2.397093pt;}
.ws57{word-spacing:2.422921pt;}
.ws6{word-spacing:2.536729pt;}
.ws25{word-spacing:2.677965pt;}
.ws6e{word-spacing:2.932989pt;}
.ws6f{word-spacing:2.986123pt;}
.ws11{word-spacing:3.211639pt;}
.ws6a{word-spacing:3.379314pt;}
.ws24{word-spacing:3.379337pt;}
.ws1d{word-spacing:3.443098pt;}
.ws21{word-spacing:3.450013pt;}
.ws2b{word-spacing:3.462823pt;}
.ws1e{word-spacing:3.506859pt;}
.ws56{word-spacing:3.825664pt;}
.ws13{word-spacing:3.985067pt;}
.ws74{word-spacing:4.016947pt;}
.ws50{word-spacing:4.080708pt;}
.ws2{word-spacing:4.131706pt;}
.ws63{word-spacing:4.527036pt;}
.ws1b{word-spacing:4.782067pt;}
.ws1f{word-spacing:4.845841pt;}
.ws3b{word-spacing:4.973363pt;}
.ws5f{word-spacing:5.228407pt;}
.ws43{word-spacing:5.419691pt;}
.ws10{word-spacing:5.538914pt;}
.ws1a{word-spacing:5.738467pt;}
.ws35{word-spacing:5.738496pt;}
.ws39{word-spacing:5.802257pt;}
.ws3d{word-spacing:5.929779pt;}
.ws1c{word-spacing:6.439868pt;}
.ws0{word-spacing:6.887500pt;}
.ws32{word-spacing:7.077478pt;}
.wsb{word-spacing:7.109824pt;}
.ws26{word-spacing:7.311885pt;}
.ws1{word-spacing:7.651307pt;}
.wse{word-spacing:7.924370pt;}
.ws29{word-spacing:9.013662pt;}
.wsc{word-spacing:9.111280pt;}
.ws62{word-spacing:9.332432pt;}
.ws3{word-spacing:9.844372pt;}
.ws71{word-spacing:10.074249pt;}
.ws20{word-spacing:10.265532pt;}
.ws58{word-spacing:10.399099pt;}
.ws31{word-spacing:10.400561pt;}
.ws2f{word-spacing:10.404432pt;}
.ws40{word-spacing:10.917308pt;}
.ws53{word-spacing:10.922641pt;}
.ws72{word-spacing:11.221948pt;}
.ws65{word-spacing:11.413231pt;}
.ws54{word-spacing:11.927040pt;}
.ws5c{word-spacing:13.073707pt;}
.ws4b{word-spacing:13.644868pt;}
.ws14{word-spacing:14.537523pt;}
.ws4a{word-spacing:15.717103pt;}
.ws4f{word-spacing:16.636373pt;}
.ws44{word-spacing:20.315798pt;}
.ws46{word-spacing:20.316818pt;}
.ws51{word-spacing:20.322151pt;}
.ws37{word-spacing:20.324324pt;}
.ws5e{word-spacing:22.081620pt;}
.ws33{word-spacing:23.422991pt;}
.ws2c{word-spacing:23.445662pt;}
.ws66{word-spacing:23.722914pt;}
.ws30{word-spacing:25.023885pt;}
.ws3a{word-spacing:25.705657pt;}
.ws22{word-spacing:28.122552pt;}
.ws19{word-spacing:37.842193pt;}
.ws68{word-spacing:45.036265pt;}
.ws6c{word-spacing:67.936962pt;}
.ws4d{word-spacing:70.027317pt;}
.ws70{word-spacing:74.600067pt;}
.ws64{word-spacing:78.362641pt;}
.ws5a{word-spacing:85.632650pt;}
.ws49{word-spacing:93.967975pt;}
.ws59{word-spacing:109.578641pt;}
.ws23{word-spacing:1007.439885pt;}
._33{margin-left:-40.556705pt;}
._36{margin-left:-33.756497pt;}
._19{margin-left:-31.880533pt;}
._1c{margin-left:-29.685765pt;}
._34{margin-left:-24.010886pt;}
._1d{margin-left:-14.665045pt;}
._1a{margin-left:-11.567645pt;}
._1{margin-left:-10.248600pt;}
._2f{margin-left:-8.966392pt;}
._28{margin-left:-7.192228pt;}
._b{margin-left:-5.766149pt;}
._3{margin-left:-4.644560pt;}
._2{margin-left:-3.416200pt;}
._d{margin-left:-2.443638pt;}
._4{margin-left:-1.503373pt;}
._5{width:1.503373pt;}
._c{width:2.510541pt;}
._0{width:3.416200pt;}
._2a{width:5.397882pt;}
._2d{width:9.816376pt;}
._14{width:17.272440pt;}
._7{width:18.397973pt;}
._6{width:19.290592pt;}
._11{width:20.667321pt;}
._9{width:21.625140pt;}
._35{width:22.790253pt;}
._a{width:24.217243pt;}
._8{width:25.541839pt;}
._2e{width:26.906288pt;}
._22{width:27.901119pt;}
._31{width:30.089049pt;}
._2c{width:31.242923pt;}
._17{width:32.417514pt;}
._16{width:33.475246pt;}
._20{width:35.798060pt;}
._15{width:38.458585pt;}
._23{width:40.982130pt;}
._43{width:44.033509pt;}
._2b{width:46.243471pt;}
._29{width:47.884561pt;}
._12{width:52.566772pt;}
._30{width:55.280845pt;}
._e{width:57.767526pt;}
._10{width:63.824828pt;}
._32{width:78.480414pt;}
._27{width:86.077200pt;}
._41{width:88.768311pt;}
._1b{width:95.386556pt;}
._39{width:98.352536pt;}
._26{width:103.292400pt;}
._13{width:127.267089pt;}
._38{width:135.887360pt;}
._3a{width:143.870878pt;}
._40{width:249.688730pt;}
._42{width:276.402374pt;}
._3d{width:302.969308pt;}
._3f{width:315.367188pt;}
._3c{width:320.898423pt;}
._37{width:364.604593pt;}
._3b{width:378.897603pt;}
._3e{width:405.464537pt;}
._21{width:567.711617pt;}
._1e{width:755.951967pt;}
._18{width:767.173154pt;}
._24{width:1029.033681pt;}
._f{width:1127.896401pt;}
._1f{width:1251.310933pt;}
._25{width:1934.191957pt;}
.fs7{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:56.149333pt;}
.y17{bottom:96.000000pt;}
.y3d{bottom:107.190667pt;}
.y51{bottom:119.902667pt;}
.y68{bottom:123.409333pt;}
.y16{bottom:135.510667pt;}
.y3c{bottom:144.376000pt;}
.y7e{bottom:171.564000pt;}
.y15{bottom:175.021333pt;}
.y50{bottom:175.198667pt;}
.y67{bottom:176.204000pt;}
.y90{bottom:176.908000pt;}
.y3b{bottom:197.170667pt;}
.y8f{bottom:200.810667pt;}
.ya3{bottom:202.238667pt;}
.y14{bottom:214.533333pt;}
.y66{bottom:215.714667pt;}
.y7d{bottom:223.225333pt;}
.y65{bottom:239.617333pt;}
.ya2{bottom:241.750667pt;}
.y3a{bottom:246.977333pt;}
.y4f{bottom:249.784000pt;}
.y13{bottom:254.044000pt;}
.y8e{bottom:256.106667pt;}
.ya1{bottom:265.653333pt;}
.y7c{bottom:271.584000pt;}
.y4e{bottom:273.688000pt;}
.y7b{bottom:282.518667pt;}
.y64{bottom:289.424000pt;}
.ya0{bottom:289.556000pt;}
.y8d{bottom:292.373333pt;}
.y4d{bottom:308.338667pt;}
.y9f{bottom:313.458667pt;}
.y39{bottom:314.562667pt;}
.y12{bottom:324.948000pt;}
.y7a{bottom:329.289333pt;}
.y4c{bottom:332.241333pt;}
.y9e{bottom:337.362667pt;}
.yb5{bottom:353.937333pt;}
.y38{bottom:355.733333pt;}
.y63{bottom:357.009333pt;}
.y37{bottom:366.668000pt;}
.y4b{bottom:366.892000pt;}
.y8c{bottom:368.269333pt;}
.yb4{bottom:377.840000pt;}
.y27{bottom:379.386667pt;}
.y79{bottom:380.950667pt;}
.y9d{bottom:387.168000pt;}
.y4a{bottom:390.794667pt;}
.y11{bottom:400.564000pt;}
.y78{bottom:404.853333pt;}
.y8b{bottom:407.780000pt;}
.y62{bottom:412.305333pt;}
.y36{bottom:418.773333pt;}
.y10{bottom:422.984000pt;}
.y8a{bottom:431.684000pt;}
.yb3{bottom:433.137333pt;}
.y26{bottom:434.505333pt;}
.y49{bottom:435.981333pt;}
.y77{bottom:441.662667pt;}
.y35{bottom:442.676000pt;}
.yf{bottom:445.402667pt;}
.y9c{bottom:447.180000pt;}
.y9b{bottom:458.114667pt;}
.y34{bottom:466.578667pt;}
.ye{bottom:467.822667pt;}
.y89{bottom:484.477333pt;}
.y48{bottom:485.788000pt;}
.y61{bottom:488.201333pt;}
.y25{bottom:489.624000pt;}
.yd{bottom:490.241333pt;}
.y76{bottom:493.324000pt;}
.y9a{bottom:504.885333pt;}
.yb2{bottom:509.032000pt;}
.yc{bottom:512.661333pt;}
.y33{bottom:516.385333pt;}
.y88{bottom:521.664000pt;}
.y24{bottom:529.134667pt;}
.y75{bottom:532.834667pt;}
.yb1{bottom:532.934667pt;}
.yb{bottom:535.080000pt;}
.y60{bottom:540.996000pt;}
.y47{bottom:552.064000pt;}
.y99{bottom:554.888000pt;}
.ya{bottom:557.500000pt;}
.y5f{bottom:564.898667pt;}
.y98{bottom:565.821333pt;}
.y23{bottom:568.646667pt;}
.yb0{bottom:570.121333pt;}
.y87{bottom:574.458667pt;}
.y9{bottom:579.918667pt;}
.y74{bottom:582.640000pt;}
.y32{bottom:583.970667pt;}
.y46{bottom:586.714667pt;}
.yaf{bottom:594.025333pt;}
.y5e{bottom:602.085333pt;}
.y8{bottom:602.338667pt;}
.y31{bottom:607.873333pt;}
.y22{bottom:608.157333pt;}
.y97{bottom:613.448000pt;}
.y45{bottom:621.365333pt;}
.y86{bottom:622.817333pt;}
.y30{bottom:631.776000pt;}
.y85{bottom:633.752000pt;}
.y5d{bottom:639.272000pt;}
.y7{bottom:646.049333pt;}
.yae{bottom:646.818667pt;}
.y73{bottom:650.032000pt;}
.y96{bottom:652.958667pt;}
.y2f{bottom:655.680000pt;}
.y44{bottom:656.016000pt;}
.y21{bottom:663.276000pt;}
.yad{bottom:670.722667pt;}
.y72{bottom:673.934667pt;}
.y5c{bottom:676.458667pt;}
.y95{bottom:676.861333pt;}
.y84{bottom:680.522667pt;}
.y20{bottom:702.786667pt;}
.y2e{bottom:705.485333pt;}
.y43{bottom:705.821333pt;}
.y6{bottom:714.285333pt;}
.y83{bottom:724.026667pt;}
.y71{bottom:725.596000pt;}
.yac{bottom:726.018667pt;}
.y94{bottom:726.668000pt;}
.y5b{bottom:729.252000pt;}
.y82{bottom:734.960000pt;}
.y1f{bottom:742.297333pt;}
.y70{bottom:762.404000pt;}
.y5a{bottom:763.822667pt;}
.y5{bottom:769.405333pt;}
.y42{bottom:772.097333pt;}
.y2d{bottom:773.070667pt;}
.y59{bottom:774.757333pt;}
.y81{bottom:778.645333pt;}
.y1e{bottom:781.809333pt;}
.y93{bottom:794.253333pt;}
.yab{bottom:805.265333pt;}
.y2c{bottom:810.257333pt;}
.y41{bottom:811.608000pt;}
.y6f{bottom:814.065333pt;}
.y80{bottom:815.832000pt;}
.y92{bottom:818.156000pt;}
.y58{bottom:820.820000pt;}
.yaa{bottom:821.206667pt;}
.y1d{bottom:836.928000pt;}
.ya9{bottom:837.146667pt;}
.y4{bottom:838.097333pt;}
.ya8{bottom:853.086667pt;}
.y6e{bottom:853.357333pt;}
.y91{bottom:855.342667pt;}
.y57{bottom:860.330667pt;}
.y2b{bottom:863.052000pt;}
.y6d{bottom:864.292000pt;}
.y40{bottom:866.904000pt;}
.y3{bottom:867.769333pt;}
.y7f{bottom:868.626667pt;}
.ya7{bottom:869.026667pt;}
.y1c{bottom:876.438667pt;}
.y56{bottom:884.234667pt;}
.y2a{bottom:886.954667pt;}
.y6c{bottom:889.686667pt;}
.ya6{bottom:892.953333pt;}
.y2{bottom:897.442667pt;}
.y55{bottom:908.137333pt;}
.ya5{bottom:908.893333pt;}
.y6b{bottom:913.590667pt;}
.ya4{bottom:930.189333pt;}
.y1b{bottom:931.557333pt;}
.y54{bottom:932.040000pt;}
.y29{bottom:936.761333pt;}
.y1{bottom:938.654667pt;}
.y3f{bottom:941.489333pt;}
.y53{bottom:955.942667pt;}
.y6a{bottom:955.960000pt;}
.y3e{bottom:965.392000pt;}
.y69{bottom:966.894667pt;}
.y1a{bottom:971.068000pt;}
.y28{bottom:1001.133333pt;}
.y52{bottom:1005.749333pt;}
.y19{bottom:1010.580000pt;}
.h16{height:39.850400pt;}
.hd{height:43.548809pt;}
.h4{height:43.636400pt;}
.h17{height:44.250180pt;}
.h6{height:47.820800pt;}
.he{height:52.806026pt;}
.h12{height:55.995359pt;}
.h3{height:57.384800pt;}
.h7{height:60.573013pt;}
.ha{height:61.578974pt;}
.h5{height:68.861600pt;}
.h2{height:82.650000pt;}
.h13{height:90.951467pt;}
.hb{height:90.956800pt;}
.h11{height:91.559467pt;}
.hf{height:95.942026pt;}
.h14{height:95.947359pt;}
.h15{height:99.728692pt;}
.h10{height:99.734026pt;}
.h8{height:111.579776pt;}
.hc{height:134.695467pt;}
.h9{height:155.318443pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x25{left:103.804000pt;}
.x21{left:108.373333pt;}
.x1{left:109.854667pt;}
.x10{left:115.076000pt;}
.x3{left:116.253333pt;}
.xb{left:119.412000pt;}
.x26{left:128.082667pt;}
.x9{left:135.020000pt;}
.x8{left:156.838667pt;}
.x20{left:198.632000pt;}
.x1e{left:203.837333pt;}
.x2{left:205.842667pt;}
.x1a{left:216.868000pt;}
.x16{left:218.602667pt;}
.x4{left:230.534667pt;}
.x22{left:256.597333pt;}
.x1f{left:280.760000pt;}
.x1c{left:288.365333pt;}
.x5{left:292.280000pt;}
.x18{left:296.749333pt;}
.xe{left:299.166667pt;}
.x17{left:301.113333pt;}
.x1b{left:303.281333pt;}
.x6{left:324.145333pt;}
.x12{left:326.409333pt;}
.x1d{left:355.520000pt;}
.x19{left:360.002667pt;}
.x7{left:364.849333pt;}
.xd{left:365.976000pt;}
.x23{left:367.025333pt;}
.x13{left:389.449333pt;}
.xc{left:392.948000pt;}
.x14{left:436.713333pt;}
.x11{left:438.109333pt;}
.xf{left:439.346667pt;}
.x24{left:515.249333pt;}
.x15{left:677.757333pt;}
}




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