
    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_7c02a0479070b319aa300db6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_2515048f0c349b232bd1a3ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_faf615921823c0f164ea2f09.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_69945919c195d43c337e87ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080078;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_4c201dc9adcb843f07831337.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_5f7b072ff6d8f10fd72a59eb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930176;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_9f4bad7e38b57af40f2cc15d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls60{letter-spacing:-0.018000px;}
.ls37{letter-spacing:-0.015552px;}
.ls13{letter-spacing:-0.014400px;}
.ls12{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.012000px;}
.lse{letter-spacing:0.014400px;}
.ls5f{letter-spacing:0.018000px;}
.ls29{letter-spacing:0.073140px;}
.ls5a{letter-spacing:0.223320px;}
.ls15{letter-spacing:0.224352px;}
.ls18{letter-spacing:0.253872px;}
.ls8{letter-spacing:0.256680px;}
.ls36{letter-spacing:0.256740px;}
.ls40{letter-spacing:0.256800px;}
.ls2a{letter-spacing:0.256860px;}
.ls3f{letter-spacing:0.257280px;}
.ls10{letter-spacing:0.283968px;}
.ls65{letter-spacing:0.296280px;}
.ls1{letter-spacing:0.317376px;}
.ls16{letter-spacing:0.318816px;}
.ls3{letter-spacing:0.319680px;}
.lsc{letter-spacing:0.320280px;}
.ls1c{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.359136px;}
.ls22{letter-spacing:0.402120px;}
.ls28{letter-spacing:0.428520px;}
.ls17{letter-spacing:0.478224px;}
.ls2f{letter-spacing:0.507744px;}
.ls69{letter-spacing:0.516840px;}
.lsa{letter-spacing:0.519552px;}
.ls2b{letter-spacing:0.525456px;}
.ls6{letter-spacing:0.531360px;}
.ls5{letter-spacing:0.537264px;}
.ls7{letter-spacing:0.542760px;}
.ls4{letter-spacing:0.543168px;}
.ls26{letter-spacing:0.543360px;}
.ls1e{letter-spacing:0.549072px;}
.ls32{letter-spacing:0.554976px;}
.ls31{letter-spacing:0.560880px;}
.ls4d{letter-spacing:0.566784px;}
.ls2e{letter-spacing:0.578592px;}
.ls1d{letter-spacing:0.602640px;}
.ls64{letter-spacing:0.624480px;}
.ls14{letter-spacing:0.637632px;}
.ls33{letter-spacing:0.640320px;}
.ls6d{letter-spacing:0.649680px;}
.ls20{letter-spacing:0.667320px;}
.ls19{letter-spacing:0.702576px;}
.ls30{letter-spacing:0.738000px;}
.ls2{letter-spacing:0.788880px;}
.ls1a{letter-spacing:0.826560px;}
.ls61{letter-spacing:0.835680px;}
.ls1b{letter-spacing:0.874800px;}
.ls38{letter-spacing:0.885600px;}
.ls6e{letter-spacing:0.897408px;}
.ls3b{letter-spacing:1.163280px;}
.ls1f{letter-spacing:1.614480px;}
.ls43{letter-spacing:1.670280px;}
.ls34{letter-spacing:1.807920px;}
.ls49{letter-spacing:2.003880px;}
.lsd{letter-spacing:2.534280px;}
.ls45{letter-spacing:2.591880px;}
.ls48{letter-spacing:2.621280px;}
.ls51{letter-spacing:2.860080px;}
.ls56{letter-spacing:3.125280px;}
.ls47{letter-spacing:3.575880px;}
.ls59{letter-spacing:3.610080px;}
.ls2d{letter-spacing:3.915480px;}
.ls9{letter-spacing:4.028880px;}
.ls4b{letter-spacing:4.192680px;}
.ls4c{letter-spacing:4.194480px;}
.ls41{letter-spacing:4.298280px;}
.ls67{letter-spacing:4.415280px;}
.ls4e{letter-spacing:5.003280px;}
.ls5d{letter-spacing:5.036280px;}
.ls42{letter-spacing:5.072880px;}
.ls6b{letter-spacing:5.893680px;}
.ls6c{letter-spacing:5.894880px;}
.ls44{letter-spacing:6.238080px;}
.ls63{letter-spacing:6.488280px;}
.ls4a{letter-spacing:6.618480px;}
.ls21{letter-spacing:7.745280px;}
.ls39{letter-spacing:7.947480px;}
.ls5c{letter-spacing:8.018880px;}
.ls24{letter-spacing:8.321880px;}
.ls50{letter-spacing:8.579280px;}
.ls57{letter-spacing:8.694480px;}
.ls3d{letter-spacing:9.095880px;}
.ls3c{letter-spacing:10.477080px;}
.ls2c{letter-spacing:10.923480px;}
.ls46{letter-spacing:11.080080px;}
.ls3a{letter-spacing:12.564480px;}
.lsf{letter-spacing:13.606620px;}
.ls5b{letter-spacing:13.627680px;}
.ls23{letter-spacing:14.864280px;}
.ls66{letter-spacing:15.716880px;}
.ls68{letter-spacing:15.915480px;}
.ls58{letter-spacing:16.320480px;}
.lsb{letter-spacing:16.661880px;}
.ls27{letter-spacing:17.948280px;}
.ls4f{letter-spacing:20.244480px;}
.ls25{letter-spacing:20.504280px;}
.ls3e{letter-spacing:24.085080px;}
.ls53{letter-spacing:25.248480px;}
.ls52{letter-spacing:25.250280px;}
.ls35{letter-spacing:30.919080px;}
.ls54{letter-spacing:41.548080px;}
.ls55{letter-spacing:44.917080px;}
.ls6a{letter-spacing:58.657080px;}
.ls62{letter-spacing:65.237280px;}
.ls0{letter-spacing:189.180840px;}
.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;}
}
.ws0{word-spacing:-23.577696px;}
.ws1c{word-spacing:-20.030400px;}
.ws1{word-spacing:-20.001600px;}
.ws5{word-spacing:-18.617040px;}
.ws1d{word-spacing:-17.239680px;}
.ws13{word-spacing:-17.151120px;}
.wsf{word-spacing:-17.115696px;}
.ws10{word-spacing:-17.050752px;}
.ws12{word-spacing:-16.991712px;}
.ws1e{word-spacing:-16.968096px;}
.wsb{word-spacing:-16.956288px;}
.ws11{word-spacing:-16.950384px;}
.ws1a{word-spacing:-16.944480px;}
.ws19{word-spacing:-16.932672px;}
.ws8{word-spacing:-16.920864px;}
.ws2{word-spacing:-16.891344px;}
.ws7{word-spacing:-16.731936px;}
.wsa{word-spacing:-16.666992px;}
.ws3{word-spacing:-16.637472px;}
.ws18{word-spacing:-16.413120px;}
.ws9{word-spacing:-10.808640px;}
.wsc{word-spacing:-10.793088px;}
.wsd{word-spacing:-6.715548px;}
.ws14{word-spacing:-0.108000px;}
.ws4{word-spacing:-0.086400px;}
.ws17{word-spacing:-0.078000px;}
.ws15{word-spacing:-0.072000px;}
.ws16{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:0.766656px;}
.ws1b{word-spacing:173.626056px;}
._d{margin-left:-7.991400px;}
._0{margin-left:-1.002240px;}
._2{width:1.199412px;}
._6{width:3.129120px;}
._8{width:4.220184px;}
._9{width:5.472708px;}
._13{width:6.646596px;}
._7{width:7.672320px;}
._3{width:9.033120px;}
._4{width:10.272960px;}
._5{width:11.394720px;}
._12{width:12.457440px;}
._c{width:13.697280px;}
._1{width:15.348960px;}
._18{width:17.811468px;}
._10{width:18.904740px;}
._11{width:20.093940px;}
._16{width:21.176748px;}
._b{width:22.279896px;}
._17{width:24.022872px;}
._14{width:25.210080px;}
._e{width:26.727840px;}
._f{width:28.222560px;}
._1b{width:29.391840px;}
._15{width:30.405600px;}
._a{width:32.412960px;}
._1a{width:34.184160px;}
._1c{width:36.840960px;}
._19{width:43.449120px;}
._1e{width:85.430880px;}
._1f{width:86.788800px;}
._1d{width:197.429760px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:47.520000px;}
.fs3{font-size:59.040000px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:12.734985px;}
.y111{bottom:20.859750px;}
.y107{bottom:39.859050px;}
.y108{bottom:47.359200px;}
.y110{bottom:54.300600px;}
.y106{bottom:84.859200px;}
.y10f{bottom:87.741300px;}
.y109{bottom:92.359050px;}
.y68{bottom:95.715060px;}
.y35{bottom:96.075075px;}
.y155{bottom:101.115060px;}
.y8d{bottom:103.275060px;}
.y67{bottom:112.995075px;}
.y154{bottom:118.035075px;}
.yaa{bottom:120.555075px;}
.y10e{bottom:121.182150px;}
.y34{bottom:122.715060px;}
.y66{bottom:130.275060px;}
.y33{bottom:134.235060px;}
.y153{bottom:135.315075px;}
.ya9{bottom:137.835015px;}
.y10a{bottom:138.859200px;}
.y65{bottom:147.555015px;}
.y152{bottom:152.595015px;}
.y10d{bottom:154.622850px;}
.ybc{bottom:155.115015px;}
.y32{bottom:161.235015px;}
.y64{bottom:164.835015px;}
.ybb{bottom:165.195015px;}
.y10c{bottom:170.359050px;}
.y151{bottom:170.955015px;}
.y11c{bottom:172.395015px;}
.y31{bottom:178.515015px;}
.y63{bottom:182.115015px;}
.y150{bottom:188.235015px;}
.ya8{bottom:189.675015px;}
.y30{bottom:195.795015px;}
.y62{bottom:199.395015px;}
.yed{bottom:199.755015px;}
.y10b{bottom:201.859050px;}
.yba{bottom:205.155015px;}
.y14f{bottom:205.515015px;}
.ya7{bottom:206.955015px;}
.y2f{bottom:213.075015px;}
.y61{bottom:216.675015px;}
.ya6{bottom:217.035015px;}
.yb9{bottom:222.435015px;}
.y14e{bottom:223.875015px;}
.y104{bottom:224.235015px;}
.y2e{bottom:230.355015px;}
.y60{bottom:233.595015px;}
.yc3{bottom:237.195015px;}
.y14d{bottom:240.795015px;}
.y103{bottom:241.155015px;}
.y2d{bottom:247.635015px;}
.y5f{bottom:250.875015px;}
.yb8{bottom:254.475015px;}
.yec{bottom:255.555015px;}
.y102{bottom:258.435015px;}
.y14c{bottom:259.155015px;}
.y2c{bottom:264.915015px;}
.y5e{bottom:268.155015px;}
.y12f{bottom:268.875015px;}
.yb7{bottom:271.755015px;}
.yeb{bottom:272.835015px;}
.y101{bottom:275.715015px;}
.y14b{bottom:276.435015px;}
.y2b{bottom:282.195015px;}
.y8c{bottom:285.435015px;}
.y100{bottom:286.155015px;}
.ya5{bottom:286.875015px;}
.yb6{bottom:289.035015px;}
.yea{bottom:290.115015px;}
.y11b{bottom:292.995015px;}
.y14a{bottom:294.795015px;}
.y2a{bottom:299.475015px;}
.y5d{bottom:301.635015px;}
.y8b{bottom:302.715015px;}
.y11a{bottom:303.435015px;}
.ya4{bottom:304.155015px;}
.yb5{bottom:306.315015px;}
.ye9{bottom:307.395015px;}
.y149{bottom:312.075015px;}
.y29{bottom:316.395015px;}
.y5c{bottom:318.915015px;}
.y8a{bottom:319.995015px;}
.ya3{bottom:321.435015px;}
.yb4{bottom:323.595015px;}
.y12e{bottom:324.675015px;}
.y5b{bottom:328.635015px;}
.y148{bottom:330.075015px;}
.y28{bottom:333.675015px;}
.y89{bottom:337.275015px;}
.ya2{bottom:338.355015px;}
.ye8{bottom:339.435015px;}
.yb3{bottom:340.875015px;}
.y12d{bottom:341.955015px;}
.yff{bottom:343.035015px;}
.y119{bottom:345.195015px;}
.y5a{bottom:345.915015px;}
.y147{bottom:347.355015px;}
.y27{bottom:350.955015px;}
.y88{bottom:354.555015px;}
.ya1{bottom:355.635015px;}
.ye7{bottom:356.715015px;}
.yb2{bottom:358.155015px;}
.y105{bottom:358.650000px;}
.y12c{bottom:359.235015px;}
.y118{bottom:362.475015px;}
.y59{bottom:363.195015px;}
.y146{bottom:365.715015px;}
.y26{bottom:368.955015px;}
.ya0{bottom:372.915015px;}
.ye6{bottom:373.995015px;}
.yc2{bottom:375.435015px;}
.y12b{bottom:376.155015px;}
.y87{bottom:379.395015px;}
.y117{bottom:379.755015px;}
.y58{bottom:380.475015px;}
.y145{bottom:382.995015px;}
.y25{bottom:389.475015px;}
.y9f{bottom:390.195015px;}
.ye5{bottom:391.275015px;}
.yc1{bottom:392.355015px;}
.y12a{bottom:393.435015px;}
.y86{bottom:396.675015px;}
.y116{bottom:397.035015px;}
.y57{bottom:397.755015px;}
.y144{bottom:400.275015px;}
.y9e{bottom:407.475015px;}
.ye4{bottom:408.555015px;}
.yc0{bottom:409.635015px;}
.y24{bottom:409.995015px;}
.y85{bottom:413.955015px;}
.y115{bottom:414.315015px;}
.y56{bottom:415.035015px;}
.y143{bottom:418.635015px;}
.y9d{bottom:424.755015px;}
.ye3{bottom:425.835015px;}
.y129{bottom:426.555015px;}
.y23{bottom:429.075015px;}
.y84{bottom:430.875015px;}
.y114{bottom:431.595015px;}
.y55{bottom:431.955015px;}
.y142{bottom:435.915015px;}
.y83{bottom:441.315015px;}
.yb1{bottom:442.035015px;}
.ye2{bottom:443.115015px;}
.y22{bottom:449.955015px;}
.y141{bottom:452.835015px;}
.y54{bottom:456.795015px;}
.y9c{bottom:457.155015px;}
.yb0{bottom:459.315015px;}
.y128{bottom:461.475015px;}
.y113{bottom:463.635015px;}
.y53{bottom:466.515015px;}
.y21{bottom:467.595015px;}
.y140{bottom:471.195015px;}
.y9b{bottom:474.435015px;}
.ye1{bottom:475.155015px;}
.ybf{bottom:476.595015px;}
.y127{bottom:478.755015px;}
.y20{bottom:484.875015px;}
.y13f{bottom:488.475015px;}
.y52{bottom:491.355015px;}
.ye0{bottom:492.435015px;}
.ybe{bottom:493.875015px;}
.y112{bottom:496.035015px;}
.y51{bottom:501.795015px;}
.y1f{bottom:502.155015px;}
.y13e{bottom:505.755015px;}
.y9a{bottom:508.635015px;}
.ydf{bottom:509.715015px;}
.y82{bottom:511.155015px;}
.y126{bottom:513.315015px;}
.y1e{bottom:519.435015px;}
.y13d{bottom:524.115015px;}
.y99{bottom:525.915015px;}
.yde{bottom:526.995015px;}
.y81{bottom:528.075015px;}
.y1d{bottom:536.355015px;}
.y13c{bottom:541.035015px;}
.y98{bottom:543.195015px;}
.ydd{bottom:544.275015px;}
.y80{bottom:545.355015px;}
.y50{bottom:548.955015px;}
.y1c{bottom:553.635015px;}
.y13b{bottom:559.395015px;}
.y97{bottom:560.475015px;}
.ydc{bottom:561.555015px;}
.y7f{bottom:562.635015px;}
.y4f{bottom:566.235015px;}
.y1b{bottom:570.915015px;}
.y13a{bottom:576.675015px;}
.y96{bottom:577.755015px;}
.ydb{bottom:578.835015px;}
.y125{bottom:579.915015px;}
.y4e{bottom:583.515015px;}
.y1a{bottom:588.195015px;}
.y139{bottom:593.955015px;}
.y7e{bottom:595.035015px;}
.yda{bottom:596.115015px;}
.y124{bottom:597.195015px;}
.y4d{bottom:600.795015px;}
.y19{bottom:605.475015px;}
.yfe{bottom:607.635015px;}
.y7d{bottom:612.315015px;}
.yd9{bottom:613.395015px;}
.y123{bottom:614.475015px;}
.y4c{bottom:618.075015px;}
.y18{bottom:622.755015px;}
.yaf{bottom:627.075015px;}
.y7c{bottom:629.595015px;}
.yd8{bottom:630.675015px;}
.y122{bottom:631.755015px;}
.y4b{bottom:635.355015px;}
.yfd{bottom:639.675015px;}
.y17{bottom:640.035015px;}
.yae{bottom:644.355015px;}
.y7b{bottom:646.875015px;}
.y121{bottom:649.035015px;}
.yfc{bottom:656.955015px;}
.y16{bottom:657.315015px;}
.yad{bottom:661.635015px;}
.yd7{bottom:662.715015px;}
.y138{bottom:663.435015px;}
.y95{bottom:664.155015px;}
.y120{bottom:666.315015px;}
.y4a{bottom:667.755015px;}
.yfb{bottom:674.235015px;}
.y15{bottom:674.595015px;}
.y7a{bottom:678.915015px;}
.yd6{bottom:679.995015px;}
.y94{bottom:681.075015px;}
.y49{bottom:684.675015px;}
.yfa{bottom:691.515015px;}
.y14{bottom:691.875015px;}
.y79{bottom:696.195015px;}
.yd5{bottom:697.275015px;}
.y93{bottom:698.355015px;}
.y48{bottom:701.955015px;}
.yf9{bottom:708.795015px;}
.y13{bottom:709.155015px;}
.y78{bottom:713.475015px;}
.yd4{bottom:714.555015px;}
.y11f{bottom:715.635015px;}
.y47{bottom:719.235015px;}
.y12{bottom:726.075015px;}
.y77{bottom:730.755015px;}
.yd3{bottom:731.835015px;}
.y11e{bottom:732.915015px;}
.y46{bottom:736.515015px;}
.yf8{bottom:741.195015px;}
.y11{bottom:743.355015px;}
.y76{bottom:748.035015px;}
.yd2{bottom:749.115015px;}
.y11d{bottom:750.195015px;}
.y45{bottom:753.795015px;}
.yf7{bottom:758.475015px;}
.y10{bottom:760.635015px;}
.y75{bottom:765.315015px;}
.y137{bottom:767.475015px;}
.y44{bottom:771.075015px;}
.yf6{bottom:775.755015px;}
.yf{bottom:777.915015px;}
.yd1{bottom:781.155015px;}
.y74{bottom:782.595015px;}
.y136{bottom:784.755015px;}
.y43{bottom:788.355015px;}
.yf5{bottom:792.675015px;}
.ye{bottom:795.195015px;}
.ybd{bottom:797.355015px;}
.yd0{bottom:798.435015px;}
.y92{bottom:799.875165px;}
.y135{bottom:802.035165px;}
.y42{bottom:805.635015px;}
.yf4{bottom:809.955015px;}
.yd{bottom:812.475015px;}
.y73{bottom:814.635015px;}
.y91{bottom:817.155015px;}
.y134{bottom:819.315015px;}
.y41{bottom:822.915015px;}
.yf3{bottom:827.235015px;}
.yc{bottom:829.755015px;}
.ycf{bottom:830.835015px;}
.y72{bottom:831.915015px;}
.y90{bottom:834.075015px;}
.y40{bottom:840.195015px;}
.yf2{bottom:844.515015px;}
.yb{bottom:847.395015px;}
.yce{bottom:848.115015px;}
.y71{bottom:849.195015px;}
.y8f{bottom:851.355015px;}
.y3f{bottom:857.475015px;}
.yf1{bottom:861.795015px;}
.y70{bottom:866.475015px;}
.ya{bottom:868.275015px;}
.y8e{bottom:868.635015px;}
.y3e{bottom:874.755015px;}
.yf0{bottom:879.795015px;}
.ycd{bottom:880.155015px;}
.y6f{bottom:883.755015px;}
.y133{bottom:885.915015px;}
.y9{bottom:888.795015px;}
.y3d{bottom:891.675015px;}
.ycc{bottom:897.435015px;}
.yef{bottom:900.315015px;}
.y6e{bottom:901.035165px;}
.y132{bottom:903.195015px;}
.y8{bottom:909.675015px;}
.yac{bottom:915.795015px;}
.y6d{bottom:918.315015px;}
.y131{bottom:920.475015px;}
.ycb{bottom:929.835015px;}
.y7{bottom:930.195015px;}
.yab{bottom:933.075015px;}
.y6c{bottom:935.595015px;}
.y130{bottom:937.755015px;}
.yca{bottom:947.115015px;}
.y15c{bottom:948.555015px;}
.y3c{bottom:950.355015px;}
.y6{bottom:951.075015px;}
.y6b{bottom:952.875165px;}
.yc9{bottom:964.395015px;}
.y15b{bottom:965.835015px;}
.y3b{bottom:967.635015px;}
.y6a{bottom:969.795015px;}
.y5{bottom:975.555015px;}
.yc8{bottom:981.675015px;}
.y15a{bottom:983.115015px;}
.y3a{bottom:984.915015px;}
.y69{bottom:987.075015px;}
.yc7{bottom:998.595015px;}
.y4{bottom:999.675015px;}
.y159{bottom:1000.035015px;}
.y39{bottom:1002.195015px;}
.yee{bottom:1004.355015px;}
.yc6{bottom:1015.875165px;}
.y158{bottom:1018.395015px;}
.y38{bottom:1019.475015px;}
.y3{bottom:1023.795015px;}
.yc5{bottom:1033.155015px;}
.y157{bottom:1035.675015px;}
.y37{bottom:1036.755015px;}
.y2{bottom:1047.915015px;}
.yc4{bottom:1051.155015px;}
.y156{bottom:1052.955015px;}
.y36{bottom:1054.035015px;}
.he{height:34.855313px;}
.h9{height:37.437188px;}
.hf{height:43.040391px;}
.h10{height:43.126875px;}
.ha{height:47.239453px;}
.h14{height:52.207031px;}
.h5{height:52.928438px;}
.h6{height:58.092188px;}
.hd{height:58.583672px;}
.h11{height:58.640625px;}
.h8{height:62.648438px;}
.h7{height:64.546875px;}
.h3{height:65.003906px;}
.h12{height:65.094713px;}
.hb{height:65.095313px;}
.hc{height:65.095913px;}
.h2{height:75.404531px;}
.h4{height:76.022578px;}
.h15{height:77.783203px;}
.h13{height:243.000000px;}
.h1{height:1167.795000px;}
.h0{height:1188.000000px;}
.w2{width:432.360000px;}
.w1{width:891.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:13.500000px;}
.x14{left:72.334230px;}
.x13{left:86.394540px;}
.x9{left:113.760135px;}
.x2{left:124.863285px;}
.x11{left:133.530135px;}
.xc{left:140.760150px;}
.x10{left:144.030075px;}
.x5{left:157.247700px;}
.x12{left:160.530075px;}
.xf{left:165.030075px;}
.xb{left:166.935000px;}
.x3{left:180.331800px;}
.xe{left:187.530135px;}
.x16{left:200.685000px;}
.x6{left:259.656000px;}
.x7{left:328.807650px;}
.x15{left:348.030300px;}
.x8{left:375.184500px;}
.xa{left:408.670800px;}
.x4{left:445.185000px;}
.xd{left:601.935000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls60{letter-spacing:-0.016000pt;}
.ls37{letter-spacing:-0.013824pt;}
.ls13{letter-spacing:-0.012800pt;}
.ls12{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.010667pt;}
.lse{letter-spacing:0.012800pt;}
.ls5f{letter-spacing:0.016000pt;}
.ls29{letter-spacing:0.065013pt;}
.ls5a{letter-spacing:0.198507pt;}
.ls15{letter-spacing:0.199424pt;}
.ls18{letter-spacing:0.225664pt;}
.ls8{letter-spacing:0.228160pt;}
.ls36{letter-spacing:0.228213pt;}
.ls40{letter-spacing:0.228267pt;}
.ls2a{letter-spacing:0.228320pt;}
.ls3f{letter-spacing:0.228693pt;}
.ls10{letter-spacing:0.252416pt;}
.ls65{letter-spacing:0.263360pt;}
.ls1{letter-spacing:0.282112pt;}
.ls16{letter-spacing:0.283392pt;}
.ls3{letter-spacing:0.284160pt;}
.lsc{letter-spacing:0.284693pt;}
.ls1c{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.319232pt;}
.ls22{letter-spacing:0.357440pt;}
.ls28{letter-spacing:0.380907pt;}
.ls17{letter-spacing:0.425088pt;}
.ls2f{letter-spacing:0.451328pt;}
.ls69{letter-spacing:0.459413pt;}
.lsa{letter-spacing:0.461824pt;}
.ls2b{letter-spacing:0.467072pt;}
.ls6{letter-spacing:0.472320pt;}
.ls5{letter-spacing:0.477568pt;}
.ls7{letter-spacing:0.482453pt;}
.ls4{letter-spacing:0.482816pt;}
.ls26{letter-spacing:0.482987pt;}
.ls1e{letter-spacing:0.488064pt;}
.ls32{letter-spacing:0.493312pt;}
.ls31{letter-spacing:0.498560pt;}
.ls4d{letter-spacing:0.503808pt;}
.ls2e{letter-spacing:0.514304pt;}
.ls1d{letter-spacing:0.535680pt;}
.ls64{letter-spacing:0.555093pt;}
.ls14{letter-spacing:0.566784pt;}
.ls33{letter-spacing:0.569173pt;}
.ls6d{letter-spacing:0.577493pt;}
.ls20{letter-spacing:0.593173pt;}
.ls19{letter-spacing:0.624512pt;}
.ls30{letter-spacing:0.656000pt;}
.ls2{letter-spacing:0.701227pt;}
.ls1a{letter-spacing:0.734720pt;}
.ls61{letter-spacing:0.742827pt;}
.ls1b{letter-spacing:0.777600pt;}
.ls38{letter-spacing:0.787200pt;}
.ls6e{letter-spacing:0.797696pt;}
.ls3b{letter-spacing:1.034027pt;}
.ls1f{letter-spacing:1.435093pt;}
.ls43{letter-spacing:1.484693pt;}
.ls34{letter-spacing:1.607040pt;}
.ls49{letter-spacing:1.781227pt;}
.lsd{letter-spacing:2.252693pt;}
.ls45{letter-spacing:2.303893pt;}
.ls48{letter-spacing:2.330027pt;}
.ls51{letter-spacing:2.542293pt;}
.ls56{letter-spacing:2.778027pt;}
.ls47{letter-spacing:3.178560pt;}
.ls59{letter-spacing:3.208960pt;}
.ls2d{letter-spacing:3.480427pt;}
.ls9{letter-spacing:3.581227pt;}
.ls4b{letter-spacing:3.726827pt;}
.ls4c{letter-spacing:3.728427pt;}
.ls41{letter-spacing:3.820693pt;}
.ls67{letter-spacing:3.924693pt;}
.ls4e{letter-spacing:4.447360pt;}
.ls5d{letter-spacing:4.476693pt;}
.ls42{letter-spacing:4.509227pt;}
.ls6b{letter-spacing:5.238827pt;}
.ls6c{letter-spacing:5.239893pt;}
.ls44{letter-spacing:5.544960pt;}
.ls63{letter-spacing:5.767360pt;}
.ls4a{letter-spacing:5.883093pt;}
.ls21{letter-spacing:6.884693pt;}
.ls39{letter-spacing:7.064427pt;}
.ls5c{letter-spacing:7.127893pt;}
.ls24{letter-spacing:7.397227pt;}
.ls50{letter-spacing:7.626027pt;}
.ls57{letter-spacing:7.728427pt;}
.ls3d{letter-spacing:8.085227pt;}
.ls3c{letter-spacing:9.312960pt;}
.ls2c{letter-spacing:9.709760pt;}
.ls46{letter-spacing:9.848960pt;}
.ls3a{letter-spacing:11.168427pt;}
.lsf{letter-spacing:12.094773pt;}
.ls5b{letter-spacing:12.113493pt;}
.ls23{letter-spacing:13.212693pt;}
.ls66{letter-spacing:13.970560pt;}
.ls68{letter-spacing:14.147093pt;}
.ls58{letter-spacing:14.507093pt;}
.lsb{letter-spacing:14.810560pt;}
.ls27{letter-spacing:15.954027pt;}
.ls4f{letter-spacing:17.995093pt;}
.ls25{letter-spacing:18.226027pt;}
.ls3e{letter-spacing:21.408960pt;}
.ls53{letter-spacing:22.443093pt;}
.ls52{letter-spacing:22.444693pt;}
.ls35{letter-spacing:27.483627pt;}
.ls54{letter-spacing:36.931627pt;}
.ls55{letter-spacing:39.926293pt;}
.ls6a{letter-spacing:52.139627pt;}
.ls62{letter-spacing:57.988693pt;}
.ls0{letter-spacing:168.160747pt;}
.ws0{word-spacing:-20.957952pt;}
.ws1c{word-spacing:-17.804800pt;}
.ws1{word-spacing:-17.779200pt;}
.ws5{word-spacing:-16.548480pt;}
.ws1d{word-spacing:-15.324160pt;}
.ws13{word-spacing:-15.245440pt;}
.wsf{word-spacing:-15.213952pt;}
.ws10{word-spacing:-15.156224pt;}
.ws12{word-spacing:-15.103744pt;}
.ws1e{word-spacing:-15.082752pt;}
.wsb{word-spacing:-15.072256pt;}
.ws11{word-spacing:-15.067008pt;}
.ws1a{word-spacing:-15.061760pt;}
.ws19{word-spacing:-15.051264pt;}
.ws8{word-spacing:-15.040768pt;}
.ws2{word-spacing:-15.014528pt;}
.ws7{word-spacing:-14.872832pt;}
.wsa{word-spacing:-14.815104pt;}
.ws3{word-spacing:-14.788864pt;}
.ws18{word-spacing:-14.589440pt;}
.ws9{word-spacing:-9.607680pt;}
.wsc{word-spacing:-9.593856pt;}
.wsd{word-spacing:-5.969376pt;}
.ws14{word-spacing:-0.096000pt;}
.ws4{word-spacing:-0.076800pt;}
.ws17{word-spacing:-0.069333pt;}
.ws15{word-spacing:-0.064000pt;}
.ws16{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:0.681472pt;}
.ws1b{word-spacing:154.334272pt;}
._d{margin-left:-7.103467pt;}
._0{margin-left:-0.890880pt;}
._2{width:1.066144pt;}
._6{width:2.781440pt;}
._8{width:3.751275pt;}
._9{width:4.864629pt;}
._13{width:5.908085pt;}
._7{width:6.819840pt;}
._3{width:8.029440pt;}
._4{width:9.131520pt;}
._5{width:10.128640pt;}
._12{width:11.073280pt;}
._c{width:12.175360pt;}
._1{width:13.643520pt;}
._18{width:15.832416pt;}
._10{width:16.804213pt;}
._11{width:17.861280pt;}
._16{width:18.823776pt;}
._b{width:19.804352pt;}
._17{width:21.353664pt;}
._14{width:22.408960pt;}
._e{width:23.758080pt;}
._f{width:25.086720pt;}
._1b{width:26.126080pt;}
._15{width:27.027200pt;}
._a{width:28.811520pt;}
._1a{width:30.385920pt;}
._1c{width:32.747520pt;}
._19{width:38.621440pt;}
._1e{width:75.938560pt;}
._1f{width:77.145600pt;}
._1d{width:175.493120pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.240000pt;}
.fs3{font-size:52.480000pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:11.319987pt;}
.y111{bottom:18.542000pt;}
.y107{bottom:35.430267pt;}
.y108{bottom:42.097067pt;}
.y110{bottom:48.267200pt;}
.y106{bottom:75.430400pt;}
.y10f{bottom:77.992267pt;}
.y109{bottom:82.096933pt;}
.y68{bottom:85.080053pt;}
.y35{bottom:85.400067pt;}
.y155{bottom:89.880053pt;}
.y8d{bottom:91.800053pt;}
.y67{bottom:100.440067pt;}
.y154{bottom:104.920067pt;}
.yaa{bottom:107.160067pt;}
.y10e{bottom:107.717467pt;}
.y34{bottom:109.080053pt;}
.y66{bottom:115.800053pt;}
.y33{bottom:119.320053pt;}
.y153{bottom:120.280067pt;}
.ya9{bottom:122.520013pt;}
.y10a{bottom:123.430400pt;}
.y65{bottom:131.160013pt;}
.y152{bottom:135.640013pt;}
.y10d{bottom:137.442533pt;}
.ybc{bottom:137.880013pt;}
.y32{bottom:143.320013pt;}
.y64{bottom:146.520013pt;}
.ybb{bottom:146.840013pt;}
.y10c{bottom:151.430267pt;}
.y151{bottom:151.960013pt;}
.y11c{bottom:153.240013pt;}
.y31{bottom:158.680013pt;}
.y63{bottom:161.880013pt;}
.y150{bottom:167.320013pt;}
.ya8{bottom:168.600013pt;}
.y30{bottom:174.040013pt;}
.y62{bottom:177.240013pt;}
.yed{bottom:177.560013pt;}
.y10b{bottom:179.430267pt;}
.yba{bottom:182.360013pt;}
.y14f{bottom:182.680013pt;}
.ya7{bottom:183.960013pt;}
.y2f{bottom:189.400013pt;}
.y61{bottom:192.600013pt;}
.ya6{bottom:192.920013pt;}
.yb9{bottom:197.720013pt;}
.y14e{bottom:199.000013pt;}
.y104{bottom:199.320013pt;}
.y2e{bottom:204.760013pt;}
.y60{bottom:207.640013pt;}
.yc3{bottom:210.840013pt;}
.y14d{bottom:214.040013pt;}
.y103{bottom:214.360013pt;}
.y2d{bottom:220.120013pt;}
.y5f{bottom:223.000013pt;}
.yb8{bottom:226.200013pt;}
.yec{bottom:227.160013pt;}
.y102{bottom:229.720013pt;}
.y14c{bottom:230.360013pt;}
.y2c{bottom:235.480013pt;}
.y5e{bottom:238.360013pt;}
.y12f{bottom:239.000013pt;}
.yb7{bottom:241.560013pt;}
.yeb{bottom:242.520013pt;}
.y101{bottom:245.080013pt;}
.y14b{bottom:245.720013pt;}
.y2b{bottom:250.840013pt;}
.y8c{bottom:253.720013pt;}
.y100{bottom:254.360013pt;}
.ya5{bottom:255.000013pt;}
.yb6{bottom:256.920013pt;}
.yea{bottom:257.880013pt;}
.y11b{bottom:260.440013pt;}
.y14a{bottom:262.040013pt;}
.y2a{bottom:266.200013pt;}
.y5d{bottom:268.120013pt;}
.y8b{bottom:269.080013pt;}
.y11a{bottom:269.720013pt;}
.ya4{bottom:270.360013pt;}
.yb5{bottom:272.280013pt;}
.ye9{bottom:273.240013pt;}
.y149{bottom:277.400013pt;}
.y29{bottom:281.240013pt;}
.y5c{bottom:283.480013pt;}
.y8a{bottom:284.440013pt;}
.ya3{bottom:285.720013pt;}
.yb4{bottom:287.640013pt;}
.y12e{bottom:288.600013pt;}
.y5b{bottom:292.120013pt;}
.y148{bottom:293.400013pt;}
.y28{bottom:296.600013pt;}
.y89{bottom:299.800013pt;}
.ya2{bottom:300.760013pt;}
.ye8{bottom:301.720013pt;}
.yb3{bottom:303.000013pt;}
.y12d{bottom:303.960013pt;}
.yff{bottom:304.920013pt;}
.y119{bottom:306.840013pt;}
.y5a{bottom:307.480013pt;}
.y147{bottom:308.760013pt;}
.y27{bottom:311.960013pt;}
.y88{bottom:315.160013pt;}
.ya1{bottom:316.120013pt;}
.ye7{bottom:317.080013pt;}
.yb2{bottom:318.360013pt;}
.y105{bottom:318.800000pt;}
.y12c{bottom:319.320013pt;}
.y118{bottom:322.200013pt;}
.y59{bottom:322.840013pt;}
.y146{bottom:325.080013pt;}
.y26{bottom:327.960013pt;}
.ya0{bottom:331.480013pt;}
.ye6{bottom:332.440013pt;}
.yc2{bottom:333.720013pt;}
.y12b{bottom:334.360013pt;}
.y87{bottom:337.240013pt;}
.y117{bottom:337.560013pt;}
.y58{bottom:338.200013pt;}
.y145{bottom:340.440013pt;}
.y25{bottom:346.200013pt;}
.y9f{bottom:346.840013pt;}
.ye5{bottom:347.800013pt;}
.yc1{bottom:348.760013pt;}
.y12a{bottom:349.720013pt;}
.y86{bottom:352.600013pt;}
.y116{bottom:352.920013pt;}
.y57{bottom:353.560013pt;}
.y144{bottom:355.800013pt;}
.y9e{bottom:362.200013pt;}
.ye4{bottom:363.160013pt;}
.yc0{bottom:364.120013pt;}
.y24{bottom:364.440013pt;}
.y85{bottom:367.960013pt;}
.y115{bottom:368.280013pt;}
.y56{bottom:368.920013pt;}
.y143{bottom:372.120013pt;}
.y9d{bottom:377.560013pt;}
.ye3{bottom:378.520013pt;}
.y129{bottom:379.160013pt;}
.y23{bottom:381.400013pt;}
.y84{bottom:383.000013pt;}
.y114{bottom:383.640013pt;}
.y55{bottom:383.960013pt;}
.y142{bottom:387.480013pt;}
.y83{bottom:392.280013pt;}
.yb1{bottom:392.920013pt;}
.ye2{bottom:393.880013pt;}
.y22{bottom:399.960013pt;}
.y141{bottom:402.520013pt;}
.y54{bottom:406.040013pt;}
.y9c{bottom:406.360013pt;}
.yb0{bottom:408.280013pt;}
.y128{bottom:410.200013pt;}
.y113{bottom:412.120013pt;}
.y53{bottom:414.680013pt;}
.y21{bottom:415.640013pt;}
.y140{bottom:418.840013pt;}
.y9b{bottom:421.720013pt;}
.ye1{bottom:422.360013pt;}
.ybf{bottom:423.640013pt;}
.y127{bottom:425.560013pt;}
.y20{bottom:431.000013pt;}
.y13f{bottom:434.200013pt;}
.y52{bottom:436.760013pt;}
.ye0{bottom:437.720013pt;}
.ybe{bottom:439.000013pt;}
.y112{bottom:440.920013pt;}
.y51{bottom:446.040013pt;}
.y1f{bottom:446.360013pt;}
.y13e{bottom:449.560013pt;}
.y9a{bottom:452.120013pt;}
.ydf{bottom:453.080013pt;}
.y82{bottom:454.360013pt;}
.y126{bottom:456.280013pt;}
.y1e{bottom:461.720013pt;}
.y13d{bottom:465.880013pt;}
.y99{bottom:467.480013pt;}
.yde{bottom:468.440013pt;}
.y81{bottom:469.400013pt;}
.y1d{bottom:476.760013pt;}
.y13c{bottom:480.920013pt;}
.y98{bottom:482.840013pt;}
.ydd{bottom:483.800013pt;}
.y80{bottom:484.760013pt;}
.y50{bottom:487.960013pt;}
.y1c{bottom:492.120013pt;}
.y13b{bottom:497.240013pt;}
.y97{bottom:498.200013pt;}
.ydc{bottom:499.160013pt;}
.y7f{bottom:500.120013pt;}
.y4f{bottom:503.320013pt;}
.y1b{bottom:507.480013pt;}
.y13a{bottom:512.600013pt;}
.y96{bottom:513.560013pt;}
.ydb{bottom:514.520013pt;}
.y125{bottom:515.480013pt;}
.y4e{bottom:518.680013pt;}
.y1a{bottom:522.840013pt;}
.y139{bottom:527.960013pt;}
.y7e{bottom:528.920013pt;}
.yda{bottom:529.880013pt;}
.y124{bottom:530.840013pt;}
.y4d{bottom:534.040013pt;}
.y19{bottom:538.200013pt;}
.yfe{bottom:540.120013pt;}
.y7d{bottom:544.280013pt;}
.yd9{bottom:545.240013pt;}
.y123{bottom:546.200013pt;}
.y4c{bottom:549.400013pt;}
.y18{bottom:553.560013pt;}
.yaf{bottom:557.400013pt;}
.y7c{bottom:559.640013pt;}
.yd8{bottom:560.600013pt;}
.y122{bottom:561.560013pt;}
.y4b{bottom:564.760013pt;}
.yfd{bottom:568.600013pt;}
.y17{bottom:568.920013pt;}
.yae{bottom:572.760013pt;}
.y7b{bottom:575.000013pt;}
.y121{bottom:576.920013pt;}
.yfc{bottom:583.960013pt;}
.y16{bottom:584.280013pt;}
.yad{bottom:588.120013pt;}
.yd7{bottom:589.080013pt;}
.y138{bottom:589.720013pt;}
.y95{bottom:590.360013pt;}
.y120{bottom:592.280013pt;}
.y4a{bottom:593.560013pt;}
.yfb{bottom:599.320013pt;}
.y15{bottom:599.640013pt;}
.y7a{bottom:603.480013pt;}
.yd6{bottom:604.440013pt;}
.y94{bottom:605.400013pt;}
.y49{bottom:608.600013pt;}
.yfa{bottom:614.680013pt;}
.y14{bottom:615.000013pt;}
.y79{bottom:618.840013pt;}
.yd5{bottom:619.800013pt;}
.y93{bottom:620.760013pt;}
.y48{bottom:623.960013pt;}
.yf9{bottom:630.040013pt;}
.y13{bottom:630.360013pt;}
.y78{bottom:634.200013pt;}
.yd4{bottom:635.160013pt;}
.y11f{bottom:636.120013pt;}
.y47{bottom:639.320013pt;}
.y12{bottom:645.400013pt;}
.y77{bottom:649.560013pt;}
.yd3{bottom:650.520013pt;}
.y11e{bottom:651.480013pt;}
.y46{bottom:654.680013pt;}
.yf8{bottom:658.840013pt;}
.y11{bottom:660.760013pt;}
.y76{bottom:664.920013pt;}
.yd2{bottom:665.880013pt;}
.y11d{bottom:666.840013pt;}
.y45{bottom:670.040013pt;}
.yf7{bottom:674.200013pt;}
.y10{bottom:676.120013pt;}
.y75{bottom:680.280013pt;}
.y137{bottom:682.200013pt;}
.y44{bottom:685.400013pt;}
.yf6{bottom:689.560013pt;}
.yf{bottom:691.480013pt;}
.yd1{bottom:694.360013pt;}
.y74{bottom:695.640013pt;}
.y136{bottom:697.560013pt;}
.y43{bottom:700.760013pt;}
.yf5{bottom:704.600013pt;}
.ye{bottom:706.840013pt;}
.ybd{bottom:708.760013pt;}
.yd0{bottom:709.720013pt;}
.y92{bottom:711.000147pt;}
.y135{bottom:712.920147pt;}
.y42{bottom:716.120013pt;}
.yf4{bottom:719.960013pt;}
.yd{bottom:722.200013pt;}
.y73{bottom:724.120013pt;}
.y91{bottom:726.360013pt;}
.y134{bottom:728.280013pt;}
.y41{bottom:731.480013pt;}
.yf3{bottom:735.320013pt;}
.yc{bottom:737.560013pt;}
.ycf{bottom:738.520013pt;}
.y72{bottom:739.480013pt;}
.y90{bottom:741.400013pt;}
.y40{bottom:746.840013pt;}
.yf2{bottom:750.680013pt;}
.yb{bottom:753.240013pt;}
.yce{bottom:753.880013pt;}
.y71{bottom:754.840013pt;}
.y8f{bottom:756.760013pt;}
.y3f{bottom:762.200013pt;}
.yf1{bottom:766.040013pt;}
.y70{bottom:770.200013pt;}
.ya{bottom:771.800013pt;}
.y8e{bottom:772.120013pt;}
.y3e{bottom:777.560013pt;}
.yf0{bottom:782.040013pt;}
.ycd{bottom:782.360013pt;}
.y6f{bottom:785.560013pt;}
.y133{bottom:787.480013pt;}
.y9{bottom:790.040013pt;}
.y3d{bottom:792.600013pt;}
.ycc{bottom:797.720013pt;}
.yef{bottom:800.280013pt;}
.y6e{bottom:800.920147pt;}
.y132{bottom:802.840013pt;}
.y8{bottom:808.600013pt;}
.yac{bottom:814.040013pt;}
.y6d{bottom:816.280013pt;}
.y131{bottom:818.200013pt;}
.ycb{bottom:826.520013pt;}
.y7{bottom:826.840013pt;}
.yab{bottom:829.400013pt;}
.y6c{bottom:831.640013pt;}
.y130{bottom:833.560013pt;}
.yca{bottom:841.880013pt;}
.y15c{bottom:843.160013pt;}
.y3c{bottom:844.760013pt;}
.y6{bottom:845.400013pt;}
.y6b{bottom:847.000147pt;}
.yc9{bottom:857.240013pt;}
.y15b{bottom:858.520013pt;}
.y3b{bottom:860.120013pt;}
.y6a{bottom:862.040013pt;}
.y5{bottom:867.160013pt;}
.yc8{bottom:872.600013pt;}
.y15a{bottom:873.880013pt;}
.y3a{bottom:875.480013pt;}
.y69{bottom:877.400013pt;}
.yc7{bottom:887.640013pt;}
.y4{bottom:888.600013pt;}
.y159{bottom:888.920013pt;}
.y39{bottom:890.840013pt;}
.yee{bottom:892.760013pt;}
.yc6{bottom:903.000147pt;}
.y158{bottom:905.240013pt;}
.y38{bottom:906.200013pt;}
.y3{bottom:910.040013pt;}
.yc5{bottom:918.360013pt;}
.y157{bottom:920.600013pt;}
.y37{bottom:921.560013pt;}
.y2{bottom:931.480013pt;}
.yc4{bottom:934.360013pt;}
.y156{bottom:935.960013pt;}
.y36{bottom:936.920013pt;}
.he{height:30.982500pt;}
.h9{height:33.277500pt;}
.hf{height:38.258125pt;}
.h10{height:38.335000pt;}
.ha{height:41.990625pt;}
.h14{height:46.406250pt;}
.h5{height:47.047500pt;}
.h6{height:51.637500pt;}
.hd{height:52.074375pt;}
.h11{height:52.125000pt;}
.h8{height:55.687500pt;}
.h7{height:57.375000pt;}
.h3{height:57.781250pt;}
.h12{height:57.861967pt;}
.hb{height:57.862500pt;}
.hc{height:57.863033pt;}
.h2{height:67.026250pt;}
.h4{height:67.575625pt;}
.h15{height:69.140625pt;}
.h13{height:216.000000pt;}
.h1{height:1038.040000pt;}
.h0{height:1056.000000pt;}
.w2{width:384.320000pt;}
.w1{width:792.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:12.000000pt;}
.x14{left:64.297093pt;}
.x13{left:76.795147pt;}
.x9{left:101.120120pt;}
.x2{left:110.989587pt;}
.x11{left:118.693453pt;}
.xc{left:125.120133pt;}
.x10{left:128.026733pt;}
.x5{left:139.775733pt;}
.x12{left:142.693400pt;}
.xf{left:146.693400pt;}
.xb{left:148.386667pt;}
.x3{left:160.294933pt;}
.xe{left:166.693453pt;}
.x16{left:178.386667pt;}
.x6{left:230.805333pt;}
.x7{left:292.273467pt;}
.x15{left:309.360267pt;}
.x8{left:333.497333pt;}
.xa{left:363.262933pt;}
.x4{left:395.720000pt;}
.xd{left:535.053333pt;}
}




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