
    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_44314b193139fd643848b796.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_7b73a10fce51877092050f22.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_17a9ef1645430aae1115c083.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_31d138f70eb8faa348450df2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_13b56d1dd091289d4b1d8d95.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5c6676f56571f404e7ecd02f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c95a69051c252b68da54cefb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0f9629b638d251c381d402a7.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_c23596be8c78953854cfbe5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.680176;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_873930eee8d17206b7e16e8f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_de947a3dfd3806fe5efa2796.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.858398;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_220d35846f2beacd60010d9a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.762207;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_c4d01175cbbc65b7e2b72724.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5a41f9e97d36cce652b4a3d4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a4cbea86a16a194616e7a5ae.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_947c307866a48209cd210889.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_80abe1afa8ff65fb85764f0d.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_d4a03a10af118eced3a568bc.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls31{letter-spacing:-1.712736px;}
.ls2a{letter-spacing:-1.679904px;}
.ls2b{letter-spacing:-1.647072px;}
.ls56{letter-spacing:-1.622880px;}
.ls30{letter-spacing:-1.592352px;}
.ls2c{letter-spacing:-1.559520px;}
.ls1a{letter-spacing:-1.536192px;}
.ls2e{letter-spacing:-1.526688px;}
.ls19{letter-spacing:-1.518048px;}
.ls32{letter-spacing:-1.471968px;}
.lsf{letter-spacing:-1.457568px;}
.ls29{letter-spacing:-1.445472px;}
.ls12{letter-spacing:-1.439424px;}
.ls2d{letter-spacing:-1.439136px;}
.lsc{letter-spacing:-1.437552px;}
.ls44{letter-spacing:-1.437408px;}
.ls15{letter-spacing:-1.421280px;}
.lsb{letter-spacing:-1.418256px;}
.lsd{letter-spacing:-1.408608px;}
.ls2f{letter-spacing:-1.406304px;}
.ls42{letter-spacing:-1.404288px;}
.ls3c{letter-spacing:-1.397664px;}
.ls34{letter-spacing:-1.364544px;}
.ls10{letter-spacing:-1.360800px;}
.lsa{letter-spacing:-1.360368px;}
.ls36{letter-spacing:-1.357920px;}
.ls11{letter-spacing:-1.342656px;}
.ls3b{letter-spacing:-1.324800px;}
.ls3a{letter-spacing:-1.324512px;}
.ls1b{letter-spacing:-1.318464px;}
.ls33{letter-spacing:-1.318176px;}
.ls37{letter-spacing:-1.285056px;}
.ls35{letter-spacing:-1.278432px;}
.ls41{letter-spacing:-1.258560px;}
.ls3d{letter-spacing:-1.209600px;}
.ls3e{letter-spacing:-1.202400px;}
.ls3f{letter-spacing:-1.188000px;}
.ls9{letter-spacing:-1.040688px;}
.ls8{letter-spacing:-0.959904px;}
.ls7{letter-spacing:-0.926640px;}
.ls25{letter-spacing:-0.569088px;}
.ls24{letter-spacing:-0.508896px;}
.ls1e{letter-spacing:-0.481536px;}
.ls1f{letter-spacing:-0.448704px;}
.lse{letter-spacing:-0.426240px;}
.ls14{letter-spacing:-0.374400px;}
.ls20{letter-spacing:-0.361152px;}
.ls18{letter-spacing:-0.338688px;}
.ls22{letter-spacing:-0.328320px;}
.ls16{letter-spacing:-0.320544px;}
.ls1c{letter-spacing:-0.302400px;}
.ls57{letter-spacing:-0.273600px;}
.ls13{letter-spacing:-0.241920px;}
.ls23{letter-spacing:-0.240768px;}
.ls51{letter-spacing:-0.238464px;}
.ls21{letter-spacing:-0.207936px;}
.ls55{letter-spacing:-0.205344px;}
.ls4e{letter-spacing:-0.198720px;}
.ls4c{letter-spacing:-0.158976px;}
.ls50{letter-spacing:-0.145728px;}
.ls17{letter-spacing:-0.145152px;}
.ls4b{letter-spacing:-0.125856px;}
.ls1d{letter-spacing:-0.120960px;}
.ls4a{letter-spacing:-0.119232px;}
.ls4d{letter-spacing:-0.086112px;}
.ls49{letter-spacing:-0.079488px;}
.ls4f{letter-spacing:-0.059616px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000576px;}
.ls3{letter-spacing:0.010944px;}
.ls2{letter-spacing:0.012096px;}
.ls26{letter-spacing:0.205344px;}
.ls53{letter-spacing:0.456480px;}
.ls5{letter-spacing:0.514512px;}
.ls54{letter-spacing:1.237968px;}
.ls47{letter-spacing:1.482480px;}
.ls46{letter-spacing:2.678400px;}
.ls39{letter-spacing:5.586912px;}
.ls27{letter-spacing:5.613120px;}
.ls43{letter-spacing:5.714496px;}
.ls45{letter-spacing:11.734560px;}
.ls4{letter-spacing:12.384000px;}
.ls48{letter-spacing:16.189632px;}
.ls28{letter-spacing:16.469280px;}
.ls52{letter-spacing:16.513920px;}
.ls40{letter-spacing:25.452000px;}
.ls58{letter-spacing:244.718208px;}
.ls0{letter-spacing:1030.699152px;}
.ls38{letter-spacing:1452.465504px;}
.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;}
}
.ws17{word-spacing:-18.000000px;}
.ws15{word-spacing:-16.560000px;}
.ws1b{word-spacing:-16.480512px;}
.ws1d{word-spacing:-16.473888px;}
.ws1a{word-spacing:-16.440768px;}
.ws1f{word-spacing:-16.434144px;}
.ws1c{word-spacing:-16.401024px;}
.ws10{word-spacing:-15.355872px;}
.ws19{word-spacing:-15.281568px;}
.ws14{word-spacing:-15.241824px;}
.ws20{word-spacing:-15.235200px;}
.ws3{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.974848px;}
.ws1e{word-spacing:-14.937120px;}
.ws8{word-spacing:-14.878080px;}
.ws7{word-spacing:-14.400000px;}
.ws2{word-spacing:-13.973760px;}
.ws5{word-spacing:-13.777344px;}
.ws4{word-spacing:-13.759200px;}
.ws9{word-spacing:-13.698720px;}
.ws6{word-spacing:-13.680576px;}
.wse{word-spacing:-13.680000px;}
.wsb{word-spacing:-13.662432px;}
.wsd{word-spacing:-13.351680px;}
.ws11{word-spacing:-13.171104px;}
.ws13{word-spacing:-13.110912px;}
.ws12{word-spacing:-12.240864px;}
.ws18{word-spacing:-12.000096px;}
.ws16{word-spacing:-11.967264px;}
.ws0{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.920096px;}
.wsf{word-spacing:0.000000px;}
.wsc{word-spacing:0.426816px;}
._1f{margin-left:-5.449536px;}
._15{margin-left:-4.061088px;}
._a{margin-left:-2.994912px;}
._0{margin-left:-1.601568px;}
._1{width:1.089936px;}
._3{width:2.901744px;}
._5{width:4.705920px;}
._6{width:6.402240px;}
._c{width:7.419168px;}
._8{width:8.426880px;}
._7{width:9.576000px;}
._b{width:11.128320px;}
._13{width:12.224160px;}
._10{width:13.380480px;}
._2{width:14.701392px;}
._d{width:16.419888px;}
._4{width:17.841600px;}
._e{width:19.494720px;}
._11{width:20.795184px;}
._16{width:22.248000px;}
._17{width:23.613120px;}
._14{width:24.768000px;}
._f{width:26.164800px;}
._12{width:28.039104px;}
._18{width:29.106432px;}
._1a{width:30.404160px;}
._1b{width:31.662720px;}
._1d{width:33.451200px;}
._1e{width:35.305920px;}
._24{width:40.737600px;}
._1c{width:42.327360px;}
._19{width:44.115840px;}
._9{width:118.898064px;}
._27{width:147.582720px;}
._21{width:176.198400px;}
._20{width:177.390720px;}
._2a{width:188.651520px;}
._29{width:244.229184px;}
._28{width:245.348208px;}
._26{width:273.908304px;}
._25{width:275.028480px;}
._23{width:285.958080px;}
._22{width:678.350880px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(37,37,37);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs5{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:7.980000px;}
.y3{bottom:45.000000px;}
.y2{bottom:59.040000px;}
.ybb{bottom:97.920000px;}
.y5c{bottom:99.360000px;}
.y12e{bottom:102.960000px;}
.y101{bottom:106.560000px;}
.y92{bottom:106.920000px;}
.y86{bottom:108.360000px;}
.y10c{bottom:108.720000px;}
.yde{bottom:109.080000px;}
.yfb{bottom:110.160000px;}
.y2c{bottom:111.240000px;}
.yba{bottom:117.000000px;}
.y5b{bottom:118.440000px;}
.y12d{bottom:122.040000px;}
.y100{bottom:125.280000px;}
.y2b{bottom:126.720000px;}
.y85{bottom:127.080000px;}
.y91{bottom:127.800000px;}
.ydd{bottom:128.160000px;}
.yfa{bottom:129.240000px;}
.yb9{bottom:135.720000px;}
.y5a{bottom:137.520000px;}
.y12c{bottom:141.120000px;}
.y2a{bottom:142.200000px;}
.yff{bottom:144.360000px;}
.y84{bottom:146.160000px;}
.ydc{bottom:147.240000px;}
.yf9{bottom:147.960000px;}
.y90{bottom:148.320000px;}
.y10b{bottom:150.120000px;}
.yb8{bottom:154.800000px;}
.y59{bottom:156.600000px;}
.y29{bottom:157.680000px;}
.y12b{bottom:159.840000px;}
.yfe{bottom:163.440000px;}
.y83{bottom:165.240000px;}
.ydb{bottom:165.960000px;}
.yf8{bottom:167.040000px;}
.y8f{bottom:169.200000px;}
.y28{bottom:173.160000px;}
.yb7{bottom:173.880000px;}
.y58{bottom:175.320000px;}
.y12a{bottom:178.920000px;}
.y82{bottom:183.960000px;}
.yda{bottom:185.040000px;}
.yf7{bottom:186.120000px;}
.y27{bottom:188.640000px;}
.y8e{bottom:189.720000px;}
.yb6{bottom:192.600000px;}
.y57{bottom:194.400000px;}
.y129{bottom:198.000000px;}
.yfd{bottom:200.520000px;}
.y81{bottom:203.040000px;}
.y26{bottom:204.120000px;}
.yf6{bottom:205.200000px;}
.y10a{bottom:209.520000px;}
.y8d{bottom:210.600000px;}
.yb5{bottom:211.680000px;}
.y56{bottom:213.480000px;}
.y128{bottom:216.720000px;}
.y25{bottom:219.960000px;}
.yfc{bottom:220.320000px;}
.y80{bottom:222.120000px;}
.yd9{bottom:223.200000px;}
.yf5{bottom:223.920000px;}
.y109{bottom:230.040000px;}
.yb4{bottom:230.760000px;}
.y8c{bottom:231.120000px;}
.y55{bottom:232.200000px;}
.y24{bottom:235.440000px;}
.y127{bottom:235.800000px;}
.y7f{bottom:241.200000px;}
.yd8{bottom:241.920000px;}
.yf4{bottom:243.000000px;}
.yb3{bottom:249.480000px;}
.y23{bottom:250.920000px;}
.y54{bottom:251.280000px;}
.y8b{bottom:252.000000px;}
.y126{bottom:254.880000px;}
.y7e{bottom:259.920000px;}
.yd7{bottom:261.000000px;}
.yf3{bottom:262.080000px;}
.y22{bottom:266.400000px;}
.yb2{bottom:268.560000px;}
.y53{bottom:270.360000px;}
.y108{bottom:271.440000px;}
.y8a{bottom:272.520000px;}
.y125{bottom:273.960000px;}
.y7d{bottom:279.000000px;}
.yd6{bottom:280.080000px;}
.yf2{bottom:280.800000px;}
.y21{bottom:281.880000px;}
.yb1{bottom:287.640000px;}
.y52{bottom:289.440000px;}
.y107{bottom:292.320000px;}
.y124{bottom:292.680000px;}
.y89{bottom:293.400000px;}
.y20{bottom:297.720000px;}
.y7c{bottom:298.080000px;}
.yd5{bottom:298.800000px;}
.yf1{bottom:299.880000px;}
.yb0{bottom:306.720000px;}
.y51{bottom:308.160000px;}
.y123{bottom:311.760000px;}
.y106{bottom:312.840000px;}
.y88{bottom:313.920000px;}
.y1f{bottom:315.000000px;}
.y7b{bottom:316.800000px;}
.yd4{bottom:317.880000px;}
.yf0{bottom:318.960000px;}
.yaf{bottom:325.440000px;}
.y50{bottom:327.240000px;}
.y122{bottom:330.840000px;}
.y1e{bottom:332.280000px;}
.y105{bottom:333.720000px;}
.y87{bottom:334.800000px;}
.y7a{bottom:335.880000px;}
.yd3{bottom:336.960000px;}
.yef{bottom:337.680000px;}
.yae{bottom:344.520000px;}
.y4f{bottom:346.320000px;}
.y1d{bottom:349.560000px;}
.y104{bottom:354.240000px;}
.y79{bottom:354.960000px;}
.yd2{bottom:355.680000px;}
.yee{bottom:356.760000px;}
.yad{bottom:363.600000px;}
.y4e{bottom:365.040000px;}
.y1c{bottom:366.840000px;}
.y121{bottom:368.640000px;}
.y78{bottom:373.680000px;}
.yd1{bottom:374.760000px;}
.yed{bottom:375.840000px;}
.yac{bottom:382.320000px;}
.y1b{bottom:384.120000px;}
.y120{bottom:387.720000px;}
.y103{bottom:392.400000px;}
.y77{bottom:392.760000px;}
.yd0{bottom:393.840000px;}
.yec{bottom:394.920000px;}
.y1a{bottom:401.040000px;}
.yab{bottom:401.400000px;}
.y4d{bottom:403.200000px;}
.y11f{bottom:406.440000px;}
.y76{bottom:411.840000px;}
.y102{bottom:412.560000px;}
.ycf{bottom:412.920000px;}
.yeb{bottom:413.640000px;}
.y19{bottom:418.320000px;}
.yaa{bottom:420.480000px;}
.y4c{bottom:421.920000px;}
.y11e{bottom:425.520000px;}
.y75{bottom:430.920000px;}
.yce{bottom:431.640000px;}
.yea{bottom:432.720000px;}
.y18{bottom:435.600000px;}
.ya9{bottom:439.560000px;}
.y4b{bottom:441.000000px;}
.y11d{bottom:444.600000px;}
.y74{bottom:449.640000px;}
.ycd{bottom:450.720000px;}
.ye9{bottom:451.800000px;}
.y17{bottom:452.880000px;}
.ya8{bottom:458.280000px;}
.y4a{bottom:460.080000px;}
.y11c{bottom:463.680000px;}
.y73{bottom:468.720000px;}
.ycc{bottom:469.800000px;}
.y16{bottom:470.160000px;}
.ye8{bottom:470.520000px;}
.ya7{bottom:477.360000px;}
.y49{bottom:479.160000px;}
.y11b{bottom:482.400000px;}
.y15{bottom:487.440000px;}
.y72{bottom:487.800000px;}
.ycb{bottom:488.520000px;}
.ye7{bottom:489.600000px;}
.ya6{bottom:496.440000px;}
.y48{bottom:498.600000px;}
.y11a{bottom:501.480000px;}
.y14{bottom:504.720000px;}
.y71{bottom:506.520000px;}
.yca{bottom:507.600000px;}
.ye6{bottom:508.680000px;}
.ya5{bottom:515.160000px;}
.y47{bottom:518.760000px;}
.y119{bottom:520.560000px;}
.y13{bottom:522.000000px;}
.y70{bottom:525.600000px;}
.yc9{bottom:526.680000px;}
.ye5{bottom:527.400000px;}
.ya4{bottom:534.240000px;}
.y46{bottom:537.480000px;}
.y118{bottom:539.280000px;}
.y12{bottom:540.000000px;}
.y6f{bottom:544.680000px;}
.yc8{bottom:545.400000px;}
.ye4{bottom:546.480000px;}
.ya3{bottom:553.320000px;}
.y117{bottom:558.360000px;}
.y45{bottom:562.680000px;}
.y6e{bottom:563.400000px;}
.yc7{bottom:564.480000px;}
.ye3{bottom:565.560000px;}
.y11{bottom:568.800000px;}
.ya2{bottom:572.040000px;}
.y116{bottom:577.440000px;}
.y44{bottom:578.520000px;}
.y6d{bottom:582.480000px;}
.yc6{bottom:583.560000px;}
.ye2{bottom:584.640000px;}
.y10{bottom:586.080000px;}
.ya1{bottom:591.120000px;}
.y43{bottom:594.000000px;}
.y115{bottom:596.520000px;}
.y6c{bottom:601.560000px;}
.yc5{bottom:602.640000px;}
.yf{bottom:603.360000px;}
.y42{bottom:609.480000px;}
.ya0{bottom:610.200000px;}
.y114{bottom:615.960000px;}
.y6b{bottom:620.640000px;}
.ye{bottom:621.360000px;}
.ye1{bottom:622.440000px;}
.y41{bottom:624.960000px;}
.y9f{bottom:629.280000px;}
.y113{bottom:636.480000px;}
.y6a{bottom:639.360000px;}
.y40{bottom:640.440000px;}
.ye0{bottom:641.520000px;}
.y9e{bottom:648.000000px;}
.yd{bottom:650.160000px;}
.y3f{bottom:655.920000px;}
.y112{bottom:657.360000px;}
.y69{bottom:658.440000px;}
.yc4{bottom:659.520000px;}
.ydf{bottom:660.240000px;}
.y9d{bottom:667.080000px;}
.yc{bottom:667.440000px;}
.y3e{bottom:671.400000px;}
.y68{bottom:677.520000px;}
.y111{bottom:677.880000px;}
.yc3{bottom:678.240000px;}
.yb{bottom:684.720000px;}
.y9c{bottom:686.160000px;}
.y3d{bottom:687.240000px;}
.y67{bottom:696.240000px;}
.yc2{bottom:697.320000px;}
.y110{bottom:698.760000px;}
.y3c{bottom:702.720000px;}
.ya{bottom:703.080000px;}
.y9b{bottom:704.880000px;}
.y66{bottom:715.320000px;}
.yc1{bottom:716.400000px;}
.y3b{bottom:718.200000px;}
.y10f{bottom:719.280000px;}
.y9a{bottom:723.960000px;}
.y3a{bottom:733.680000px;}
.y65{bottom:734.400000px;}
.yc0{bottom:735.480000px;}
.y9{bottom:737.640000px;}
.y10e{bottom:740.160000px;}
.y99{bottom:743.040000px;}
.y39{bottom:749.160000px;}
.y64{bottom:753.480000px;}
.ybf{bottom:754.200000px;}
.y10d{bottom:760.680000px;}
.y8{bottom:761.760000px;}
.y38{bottom:764.640000px;}
.y63{bottom:772.200000px;}
.ybe{bottom:773.280000px;}
.y37{bottom:780.120000px;}
.y98{bottom:781.560000px;}
.y7{bottom:790.920000px;}
.y62{bottom:791.280000px;}
.ybd{bottom:792.360000px;}
.y36{bottom:795.600000px;}
.y97{bottom:802.080000px;}
.y61{bottom:810.360000px;}
.ybc{bottom:811.080000px;}
.y35{bottom:811.440000px;}
.y6{bottom:820.080000px;}
.y96{bottom:822.960000px;}
.y34{bottom:826.920000px;}
.y60{bottom:829.080000px;}
.y33{bottom:842.400000px;}
.y95{bottom:843.480000px;}
.y5f{bottom:848.160000px;}
.y5{bottom:849.600000px;}
.y32{bottom:857.880000px;}
.y94{bottom:864.360000px;}
.y5e{bottom:867.240000px;}
.y31{bottom:873.360000px;}
.y4{bottom:878.760000px;}
.y93{bottom:884.880000px;}
.y5d{bottom:885.960000px;}
.y30{bottom:888.840000px;}
.y2e{bottom:925.500000px;}
.y2d{bottom:938.160000px;}
.y1{bottom:939.960000px;}
.h9{height:27.000000px;}
.hb{height:36.471094px;}
.h2{height:38.020781px;}
.h8{height:41.137031px;}
.h3{height:41.696016px;}
.h7{height:42.022969px;}
.hc{height:44.893125px;}
.ha{height:45.360000px;}
.hd{height:46.025156px;}
.h5{height:47.988281px;}
.h6{height:50.027344px;}
.h4{height:66.047344px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w2{width:60.000000px;}
.w0{width:722.925000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:34.709880px;}
.xa{left:94.500000px;}
.x2{left:95.760144px;}
.x8{left:105.960204px;}
.x9{left:122.760144px;}
.xd{left:133.335216px;}
.xc{left:134.725716px;}
.xb{left:138.285288px;}
.x7{left:148.485348px;}
.xe{left:149.760144px;}
.x4{left:356.404932px;}
.x1{left:467.010000px;}
.x3{left:547.444080px;}
.x5{left:568.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls31{letter-spacing:-1.522432pt;}
.ls2a{letter-spacing:-1.493248pt;}
.ls2b{letter-spacing:-1.464064pt;}
.ls56{letter-spacing:-1.442560pt;}
.ls30{letter-spacing:-1.415424pt;}
.ls2c{letter-spacing:-1.386240pt;}
.ls1a{letter-spacing:-1.365504pt;}
.ls2e{letter-spacing:-1.357056pt;}
.ls19{letter-spacing:-1.349376pt;}
.ls32{letter-spacing:-1.308416pt;}
.lsf{letter-spacing:-1.295616pt;}
.ls29{letter-spacing:-1.284864pt;}
.ls12{letter-spacing:-1.279488pt;}
.ls2d{letter-spacing:-1.279232pt;}
.lsc{letter-spacing:-1.277824pt;}
.ls44{letter-spacing:-1.277696pt;}
.ls15{letter-spacing:-1.263360pt;}
.lsb{letter-spacing:-1.260672pt;}
.lsd{letter-spacing:-1.252096pt;}
.ls2f{letter-spacing:-1.250048pt;}
.ls42{letter-spacing:-1.248256pt;}
.ls3c{letter-spacing:-1.242368pt;}
.ls34{letter-spacing:-1.212928pt;}
.ls10{letter-spacing:-1.209600pt;}
.lsa{letter-spacing:-1.209216pt;}
.ls36{letter-spacing:-1.207040pt;}
.ls11{letter-spacing:-1.193472pt;}
.ls3b{letter-spacing:-1.177600pt;}
.ls3a{letter-spacing:-1.177344pt;}
.ls1b{letter-spacing:-1.171968pt;}
.ls33{letter-spacing:-1.171712pt;}
.ls37{letter-spacing:-1.142272pt;}
.ls35{letter-spacing:-1.136384pt;}
.ls41{letter-spacing:-1.118720pt;}
.ls3d{letter-spacing:-1.075200pt;}
.ls3e{letter-spacing:-1.068800pt;}
.ls3f{letter-spacing:-1.056000pt;}
.ls9{letter-spacing:-0.925056pt;}
.ls8{letter-spacing:-0.853248pt;}
.ls7{letter-spacing:-0.823680pt;}
.ls25{letter-spacing:-0.505856pt;}
.ls24{letter-spacing:-0.452352pt;}
.ls1e{letter-spacing:-0.428032pt;}
.ls1f{letter-spacing:-0.398848pt;}
.lse{letter-spacing:-0.378880pt;}
.ls14{letter-spacing:-0.332800pt;}
.ls20{letter-spacing:-0.321024pt;}
.ls18{letter-spacing:-0.301056pt;}
.ls22{letter-spacing:-0.291840pt;}
.ls16{letter-spacing:-0.284928pt;}
.ls1c{letter-spacing:-0.268800pt;}
.ls57{letter-spacing:-0.243200pt;}
.ls13{letter-spacing:-0.215040pt;}
.ls23{letter-spacing:-0.214016pt;}
.ls51{letter-spacing:-0.211968pt;}
.ls21{letter-spacing:-0.184832pt;}
.ls55{letter-spacing:-0.182528pt;}
.ls4e{letter-spacing:-0.176640pt;}
.ls4c{letter-spacing:-0.141312pt;}
.ls50{letter-spacing:-0.129536pt;}
.ls17{letter-spacing:-0.129024pt;}
.ls4b{letter-spacing:-0.111872pt;}
.ls1d{letter-spacing:-0.107520pt;}
.ls4a{letter-spacing:-0.105984pt;}
.ls4d{letter-spacing:-0.076544pt;}
.ls49{letter-spacing:-0.070656pt;}
.ls4f{letter-spacing:-0.052992pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000512pt;}
.ls3{letter-spacing:0.009728pt;}
.ls2{letter-spacing:0.010752pt;}
.ls26{letter-spacing:0.182528pt;}
.ls53{letter-spacing:0.405760pt;}
.ls5{letter-spacing:0.457344pt;}
.ls54{letter-spacing:1.100416pt;}
.ls47{letter-spacing:1.317760pt;}
.ls46{letter-spacing:2.380800pt;}
.ls39{letter-spacing:4.966144pt;}
.ls27{letter-spacing:4.989440pt;}
.ls43{letter-spacing:5.079552pt;}
.ls45{letter-spacing:10.430720pt;}
.ls4{letter-spacing:11.008000pt;}
.ls48{letter-spacing:14.390784pt;}
.ls28{letter-spacing:14.639360pt;}
.ls52{letter-spacing:14.679040pt;}
.ls40{letter-spacing:22.624000pt;}
.ls58{letter-spacing:217.527296pt;}
.ls0{letter-spacing:916.177024pt;}
.ls38{letter-spacing:1291.080448pt;}
.ws17{word-spacing:-16.000000pt;}
.ws15{word-spacing:-14.720000pt;}
.ws1b{word-spacing:-14.649344pt;}
.ws1d{word-spacing:-14.643456pt;}
.ws1a{word-spacing:-14.614016pt;}
.ws1f{word-spacing:-14.608128pt;}
.ws1c{word-spacing:-14.578688pt;}
.ws10{word-spacing:-13.649664pt;}
.ws19{word-spacing:-13.583616pt;}
.ws14{word-spacing:-13.548288pt;}
.ws20{word-spacing:-13.542400pt;}
.ws3{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.310976pt;}
.ws1e{word-spacing:-13.277440pt;}
.ws8{word-spacing:-13.224960pt;}
.ws7{word-spacing:-12.800000pt;}
.ws2{word-spacing:-12.421120pt;}
.ws5{word-spacing:-12.246528pt;}
.ws4{word-spacing:-12.230400pt;}
.ws9{word-spacing:-12.176640pt;}
.ws6{word-spacing:-12.160512pt;}
.wse{word-spacing:-12.160000pt;}
.wsb{word-spacing:-12.144384pt;}
.wsd{word-spacing:-11.868160pt;}
.ws11{word-spacing:-11.707648pt;}
.ws13{word-spacing:-11.654144pt;}
.ws12{word-spacing:-10.880768pt;}
.ws18{word-spacing:-10.666752pt;}
.ws16{word-spacing:-10.637568pt;}
.ws0{word-spacing:-10.560000pt;}
.ws1{word-spacing:-9.706752pt;}
.wsf{word-spacing:0.000000pt;}
.wsc{word-spacing:0.379392pt;}
._1f{margin-left:-4.844032pt;}
._15{margin-left:-3.609856pt;}
._a{margin-left:-2.662144pt;}
._0{margin-left:-1.423616pt;}
._1{width:0.968832pt;}
._3{width:2.579328pt;}
._5{width:4.183040pt;}
._6{width:5.690880pt;}
._c{width:6.594816pt;}
._8{width:7.490560pt;}
._7{width:8.512000pt;}
._b{width:9.891840pt;}
._13{width:10.865920pt;}
._10{width:11.893760pt;}
._2{width:13.067904pt;}
._d{width:14.595456pt;}
._4{width:15.859200pt;}
._e{width:17.328640pt;}
._11{width:18.484608pt;}
._16{width:19.776000pt;}
._17{width:20.989440pt;}
._14{width:22.016000pt;}
._f{width:23.257600pt;}
._12{width:24.923648pt;}
._18{width:25.872384pt;}
._1a{width:27.025920pt;}
._1b{width:28.144640pt;}
._1d{width:29.734400pt;}
._1e{width:31.383040pt;}
._24{width:36.211200pt;}
._1c{width:37.624320pt;}
._19{width:39.214080pt;}
._9{width:105.687168pt;}
._27{width:131.184640pt;}
._21{width:156.620800pt;}
._20{width:157.680640pt;}
._2a{width:167.690240pt;}
._29{width:217.092608pt;}
._28{width:218.087296pt;}
._26{width:243.474048pt;}
._25{width:244.469760pt;}
._23{width:254.184960pt;}
._22{width:602.978560pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs5{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:7.093333pt;}
.y3{bottom:40.000000pt;}
.y2{bottom:52.480000pt;}
.ybb{bottom:87.040000pt;}
.y5c{bottom:88.320000pt;}
.y12e{bottom:91.520000pt;}
.y101{bottom:94.720000pt;}
.y92{bottom:95.040000pt;}
.y86{bottom:96.320000pt;}
.y10c{bottom:96.640000pt;}
.yde{bottom:96.960000pt;}
.yfb{bottom:97.920000pt;}
.y2c{bottom:98.880000pt;}
.yba{bottom:104.000000pt;}
.y5b{bottom:105.280000pt;}
.y12d{bottom:108.480000pt;}
.y100{bottom:111.360000pt;}
.y2b{bottom:112.640000pt;}
.y85{bottom:112.960000pt;}
.y91{bottom:113.600000pt;}
.ydd{bottom:113.920000pt;}
.yfa{bottom:114.880000pt;}
.yb9{bottom:120.640000pt;}
.y5a{bottom:122.240000pt;}
.y12c{bottom:125.440000pt;}
.y2a{bottom:126.400000pt;}
.yff{bottom:128.320000pt;}
.y84{bottom:129.920000pt;}
.ydc{bottom:130.880000pt;}
.yf9{bottom:131.520000pt;}
.y90{bottom:131.840000pt;}
.y10b{bottom:133.440000pt;}
.yb8{bottom:137.600000pt;}
.y59{bottom:139.200000pt;}
.y29{bottom:140.160000pt;}
.y12b{bottom:142.080000pt;}
.yfe{bottom:145.280000pt;}
.y83{bottom:146.880000pt;}
.ydb{bottom:147.520000pt;}
.yf8{bottom:148.480000pt;}
.y8f{bottom:150.400000pt;}
.y28{bottom:153.920000pt;}
.yb7{bottom:154.560000pt;}
.y58{bottom:155.840000pt;}
.y12a{bottom:159.040000pt;}
.y82{bottom:163.520000pt;}
.yda{bottom:164.480000pt;}
.yf7{bottom:165.440000pt;}
.y27{bottom:167.680000pt;}
.y8e{bottom:168.640000pt;}
.yb6{bottom:171.200000pt;}
.y57{bottom:172.800000pt;}
.y129{bottom:176.000000pt;}
.yfd{bottom:178.240000pt;}
.y81{bottom:180.480000pt;}
.y26{bottom:181.440000pt;}
.yf6{bottom:182.400000pt;}
.y10a{bottom:186.240000pt;}
.y8d{bottom:187.200000pt;}
.yb5{bottom:188.160000pt;}
.y56{bottom:189.760000pt;}
.y128{bottom:192.640000pt;}
.y25{bottom:195.520000pt;}
.yfc{bottom:195.840000pt;}
.y80{bottom:197.440000pt;}
.yd9{bottom:198.400000pt;}
.yf5{bottom:199.040000pt;}
.y109{bottom:204.480000pt;}
.yb4{bottom:205.120000pt;}
.y8c{bottom:205.440000pt;}
.y55{bottom:206.400000pt;}
.y24{bottom:209.280000pt;}
.y127{bottom:209.600000pt;}
.y7f{bottom:214.400000pt;}
.yd8{bottom:215.040000pt;}
.yf4{bottom:216.000000pt;}
.yb3{bottom:221.760000pt;}
.y23{bottom:223.040000pt;}
.y54{bottom:223.360000pt;}
.y8b{bottom:224.000000pt;}
.y126{bottom:226.560000pt;}
.y7e{bottom:231.040000pt;}
.yd7{bottom:232.000000pt;}
.yf3{bottom:232.960000pt;}
.y22{bottom:236.800000pt;}
.yb2{bottom:238.720000pt;}
.y53{bottom:240.320000pt;}
.y108{bottom:241.280000pt;}
.y8a{bottom:242.240000pt;}
.y125{bottom:243.520000pt;}
.y7d{bottom:248.000000pt;}
.yd6{bottom:248.960000pt;}
.yf2{bottom:249.600000pt;}
.y21{bottom:250.560000pt;}
.yb1{bottom:255.680000pt;}
.y52{bottom:257.280000pt;}
.y107{bottom:259.840000pt;}
.y124{bottom:260.160000pt;}
.y89{bottom:260.800000pt;}
.y20{bottom:264.640000pt;}
.y7c{bottom:264.960000pt;}
.yd5{bottom:265.600000pt;}
.yf1{bottom:266.560000pt;}
.yb0{bottom:272.640000pt;}
.y51{bottom:273.920000pt;}
.y123{bottom:277.120000pt;}
.y106{bottom:278.080000pt;}
.y88{bottom:279.040000pt;}
.y1f{bottom:280.000000pt;}
.y7b{bottom:281.600000pt;}
.yd4{bottom:282.560000pt;}
.yf0{bottom:283.520000pt;}
.yaf{bottom:289.280000pt;}
.y50{bottom:290.880000pt;}
.y122{bottom:294.080000pt;}
.y1e{bottom:295.360000pt;}
.y105{bottom:296.640000pt;}
.y87{bottom:297.600000pt;}
.y7a{bottom:298.560000pt;}
.yd3{bottom:299.520000pt;}
.yef{bottom:300.160000pt;}
.yae{bottom:306.240000pt;}
.y4f{bottom:307.840000pt;}
.y1d{bottom:310.720000pt;}
.y104{bottom:314.880000pt;}
.y79{bottom:315.520000pt;}
.yd2{bottom:316.160000pt;}
.yee{bottom:317.120000pt;}
.yad{bottom:323.200000pt;}
.y4e{bottom:324.480000pt;}
.y1c{bottom:326.080000pt;}
.y121{bottom:327.680000pt;}
.y78{bottom:332.160000pt;}
.yd1{bottom:333.120000pt;}
.yed{bottom:334.080000pt;}
.yac{bottom:339.840000pt;}
.y1b{bottom:341.440000pt;}
.y120{bottom:344.640000pt;}
.y103{bottom:348.800000pt;}
.y77{bottom:349.120000pt;}
.yd0{bottom:350.080000pt;}
.yec{bottom:351.040000pt;}
.y1a{bottom:356.480000pt;}
.yab{bottom:356.800000pt;}
.y4d{bottom:358.400000pt;}
.y11f{bottom:361.280000pt;}
.y76{bottom:366.080000pt;}
.y102{bottom:366.720000pt;}
.ycf{bottom:367.040000pt;}
.yeb{bottom:367.680000pt;}
.y19{bottom:371.840000pt;}
.yaa{bottom:373.760000pt;}
.y4c{bottom:375.040000pt;}
.y11e{bottom:378.240000pt;}
.y75{bottom:383.040000pt;}
.yce{bottom:383.680000pt;}
.yea{bottom:384.640000pt;}
.y18{bottom:387.200000pt;}
.ya9{bottom:390.720000pt;}
.y4b{bottom:392.000000pt;}
.y11d{bottom:395.200000pt;}
.y74{bottom:399.680000pt;}
.ycd{bottom:400.640000pt;}
.ye9{bottom:401.600000pt;}
.y17{bottom:402.560000pt;}
.ya8{bottom:407.360000pt;}
.y4a{bottom:408.960000pt;}
.y11c{bottom:412.160000pt;}
.y73{bottom:416.640000pt;}
.ycc{bottom:417.600000pt;}
.y16{bottom:417.920000pt;}
.ye8{bottom:418.240000pt;}
.ya7{bottom:424.320000pt;}
.y49{bottom:425.920000pt;}
.y11b{bottom:428.800000pt;}
.y15{bottom:433.280000pt;}
.y72{bottom:433.600000pt;}
.ycb{bottom:434.240000pt;}
.ye7{bottom:435.200000pt;}
.ya6{bottom:441.280000pt;}
.y48{bottom:443.200000pt;}
.y11a{bottom:445.760000pt;}
.y14{bottom:448.640000pt;}
.y71{bottom:450.240000pt;}
.yca{bottom:451.200000pt;}
.ye6{bottom:452.160000pt;}
.ya5{bottom:457.920000pt;}
.y47{bottom:461.120000pt;}
.y119{bottom:462.720000pt;}
.y13{bottom:464.000000pt;}
.y70{bottom:467.200000pt;}
.yc9{bottom:468.160000pt;}
.ye5{bottom:468.800000pt;}
.ya4{bottom:474.880000pt;}
.y46{bottom:477.760000pt;}
.y118{bottom:479.360000pt;}
.y12{bottom:480.000000pt;}
.y6f{bottom:484.160000pt;}
.yc8{bottom:484.800000pt;}
.ye4{bottom:485.760000pt;}
.ya3{bottom:491.840000pt;}
.y117{bottom:496.320000pt;}
.y45{bottom:500.160000pt;}
.y6e{bottom:500.800000pt;}
.yc7{bottom:501.760000pt;}
.ye3{bottom:502.720000pt;}
.y11{bottom:505.600000pt;}
.ya2{bottom:508.480000pt;}
.y116{bottom:513.280000pt;}
.y44{bottom:514.240000pt;}
.y6d{bottom:517.760000pt;}
.yc6{bottom:518.720000pt;}
.ye2{bottom:519.680000pt;}
.y10{bottom:520.960000pt;}
.ya1{bottom:525.440000pt;}
.y43{bottom:528.000000pt;}
.y115{bottom:530.240000pt;}
.y6c{bottom:534.720000pt;}
.yc5{bottom:535.680000pt;}
.yf{bottom:536.320000pt;}
.y42{bottom:541.760000pt;}
.ya0{bottom:542.400000pt;}
.y114{bottom:547.520000pt;}
.y6b{bottom:551.680000pt;}
.ye{bottom:552.320000pt;}
.ye1{bottom:553.280000pt;}
.y41{bottom:555.520000pt;}
.y9f{bottom:559.360000pt;}
.y113{bottom:565.760000pt;}
.y6a{bottom:568.320000pt;}
.y40{bottom:569.280000pt;}
.ye0{bottom:570.240000pt;}
.y9e{bottom:576.000000pt;}
.yd{bottom:577.920000pt;}
.y3f{bottom:583.040000pt;}
.y112{bottom:584.320000pt;}
.y69{bottom:585.280000pt;}
.yc4{bottom:586.240000pt;}
.ydf{bottom:586.880000pt;}
.y9d{bottom:592.960000pt;}
.yc{bottom:593.280000pt;}
.y3e{bottom:596.800000pt;}
.y68{bottom:602.240000pt;}
.y111{bottom:602.560000pt;}
.yc3{bottom:602.880000pt;}
.yb{bottom:608.640000pt;}
.y9c{bottom:609.920000pt;}
.y3d{bottom:610.880000pt;}
.y67{bottom:618.880000pt;}
.yc2{bottom:619.840000pt;}
.y110{bottom:621.120000pt;}
.y3c{bottom:624.640000pt;}
.ya{bottom:624.960000pt;}
.y9b{bottom:626.560000pt;}
.y66{bottom:635.840000pt;}
.yc1{bottom:636.800000pt;}
.y3b{bottom:638.400000pt;}
.y10f{bottom:639.360000pt;}
.y9a{bottom:643.520000pt;}
.y3a{bottom:652.160000pt;}
.y65{bottom:652.800000pt;}
.yc0{bottom:653.760000pt;}
.y9{bottom:655.680000pt;}
.y10e{bottom:657.920000pt;}
.y99{bottom:660.480000pt;}
.y39{bottom:665.920000pt;}
.y64{bottom:669.760000pt;}
.ybf{bottom:670.400000pt;}
.y10d{bottom:676.160000pt;}
.y8{bottom:677.120000pt;}
.y38{bottom:679.680000pt;}
.y63{bottom:686.400000pt;}
.ybe{bottom:687.360000pt;}
.y37{bottom:693.440000pt;}
.y98{bottom:694.720000pt;}
.y7{bottom:703.040000pt;}
.y62{bottom:703.360000pt;}
.ybd{bottom:704.320000pt;}
.y36{bottom:707.200000pt;}
.y97{bottom:712.960000pt;}
.y61{bottom:720.320000pt;}
.ybc{bottom:720.960000pt;}
.y35{bottom:721.280000pt;}
.y6{bottom:728.960000pt;}
.y96{bottom:731.520000pt;}
.y34{bottom:735.040000pt;}
.y60{bottom:736.960000pt;}
.y33{bottom:748.800000pt;}
.y95{bottom:749.760000pt;}
.y5f{bottom:753.920000pt;}
.y5{bottom:755.200000pt;}
.y32{bottom:762.560000pt;}
.y94{bottom:768.320000pt;}
.y5e{bottom:770.880000pt;}
.y31{bottom:776.320000pt;}
.y4{bottom:781.120000pt;}
.y93{bottom:786.560000pt;}
.y5d{bottom:787.520000pt;}
.y30{bottom:790.080000pt;}
.y2e{bottom:822.666667pt;}
.y2d{bottom:833.920000pt;}
.y1{bottom:835.520000pt;}
.h9{height:24.000000pt;}
.hb{height:32.418750pt;}
.h2{height:33.796250pt;}
.h8{height:36.566250pt;}
.h3{height:37.063125pt;}
.h7{height:37.353750pt;}
.hc{height:39.905000pt;}
.ha{height:40.320000pt;}
.hd{height:40.911250pt;}
.h5{height:42.656250pt;}
.h6{height:44.468750pt;}
.h4{height:58.708750pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w2{width:53.333333pt;}
.w0{width:642.600000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:30.853227pt;}
.xa{left:84.000000pt;}
.x2{left:85.120128pt;}
.x8{left:94.186848pt;}
.x9{left:109.120128pt;}
.xd{left:118.520192pt;}
.xc{left:119.756192pt;}
.xb{left:122.920256pt;}
.x7{left:131.986976pt;}
.xe{left:133.120128pt;}
.x4{left:316.804384pt;}
.x1{left:415.120000pt;}
.x3{left:486.616960pt;}
.x5{left:505.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; }
  