
    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_46035625cd69c62e870ab667.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_9e217ccde0bd6d50ca830f67.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.053223;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_3f2d68fda8456787207098a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_a9f79313b619a25f4b2e428e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_ba42bf50295285262078e8d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_df33f5c2fcd596f5852da52a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_389e3edbc957fd8c8bf4944c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_47b43408309751923f245601.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_f4de7e6d238f9a153b52813d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_70ff6c29471cbca31c6c62cf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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_fea9e7be6260db57f092e0f7.woff2')format("woff");}.fff{font-family:fff;line-height:0.921387;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_664b66a78c164dc375f087f0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_fe522e8e56a407e16038e228.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.052734;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_68f0be0ff37e58e620d28fa6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_69e1859b141929e140a384b4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls41{letter-spacing:-7.140000px;}
.ls39{letter-spacing:-5.148000px;}
.ls12{letter-spacing:-4.680000px;}
.ls37{letter-spacing:-4.428000px;}
.ls35{letter-spacing:-4.116000px;}
.ls38{letter-spacing:-3.972000px;}
.ls20{letter-spacing:-0.774000px;}
.ls2c{letter-spacing:-0.666000px;}
.ls34{letter-spacing:-0.612000px;}
.ls36{letter-spacing:-0.566400px;}
.ls11{letter-spacing:-0.460200px;}
.ls23{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.298200px;}
.ls2e{letter-spacing:-0.262800px;}
.ls18{letter-spacing:-0.259800px;}
.ls22{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.127200px;}
.ls2d{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.093600px;}
.ls13{letter-spacing:-0.053280px;}
.ls2b{letter-spacing:-0.050700px;}
.lsc{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012960px;}
.ls40{letter-spacing:0.037440px;}
.ls1e{letter-spacing:0.042600px;}
.ls5{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.132600px;}
.ls19{letter-spacing:0.144000px;}
.ls3f{letter-spacing:0.149760px;}
.ls1c{letter-spacing:0.153600px;}
.ls24{letter-spacing:0.179280px;}
.ls4{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.197400px;}
.ls27{letter-spacing:0.206400px;}
.ls2a{letter-spacing:0.250800px;}
.ls15{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls21{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.298800px;}
.ls29{letter-spacing:0.306600px;}
.lsf{letter-spacing:0.314400px;}
.ls3{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.413568px;}
.ls2{letter-spacing:0.447840px;}
.ls1f{letter-spacing:0.493920px;}
.ls17{letter-spacing:0.504000px;}
.ls31{letter-spacing:0.900000px;}
.ls30{letter-spacing:1.620000px;}
.ls6{letter-spacing:2.340000px;}
.ls1b{letter-spacing:3.060000px;}
.ls3c{letter-spacing:3.780000px;}
.ls25{letter-spacing:4.500000px;}
.ls28{letter-spacing:5.220000px;}
.ls32{letter-spacing:6.660000px;}
.ls1a{letter-spacing:7.380000px;}
.ls1d{letter-spacing:8.100000px;}
.ls3d{letter-spacing:10.980000px;}
.ls3a{letter-spacing:16.506720px;}
.ls7{letter-spacing:20.340000px;}
.ls3e{letter-spacing:23.909760px;}
.ls3b{letter-spacing:26.820000px;}
.ls33{letter-spacing:46.026720px;}
.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;}
}
.ws13{word-spacing:-59.772960px;}
.ws10{word-spacing:-59.760000px;}
.ws16{word-spacing:-43.200720px;}
.ws23{word-spacing:-43.080720px;}
.ws25{word-spacing:-42.706080px;}
.ws12{word-spacing:-42.600240px;}
.ws1d{word-spacing:-42.480720px;}
.ws8{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.626360px;}
.ws4{word-spacing:-16.493760px;}
.ws18{word-spacing:-15.444000px;}
.ws9{word-spacing:-15.300000px;}
.ws1e{word-spacing:-15.264000px;}
.ws2d{word-spacing:-15.246600px;}
.ws11{word-spacing:-15.238800px;}
.ws14{word-spacing:-15.199800px;}
.ws24{word-spacing:-15.190800px;}
.ws27{word-spacing:-15.146400px;}
.ws15{word-spacing:-15.137400px;}
.ws20{word-spacing:-15.093600px;}
.wse{word-spacing:-15.046800px;}
.ws21{word-spacing:-15.018600px;}
.wsd{word-spacing:-14.993280px;}
.ws34{word-spacing:-14.977440px;}
.ws1b{word-spacing:-14.976000px;}
.ws2{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.940000px;}
.ws26{word-spacing:-14.925300px;}
.wsc{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.882400px;}
.ws2a{word-spacing:-14.833200px;}
.ws2c{word-spacing:-14.733600px;}
.ws1f{word-spacing:-14.724000px;}
.ws2b{word-spacing:-14.713200px;}
.ws19{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.580000px;}
.ws22{word-spacing:-14.544000px;}
.ws28{word-spacing:-14.479800px;}
.ws30{word-spacing:-14.373600px;}
.ws2e{word-spacing:-14.328000px;}
.ws29{word-spacing:-14.274000px;}
.ws1c{word-spacing:-14.166000px;}
.ws5{word-spacing:-13.820160px;}
.ws17{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws32{word-spacing:-10.968000px;}
.ws2f{word-spacing:-10.824000px;}
.ws31{word-spacing:-10.512000px;}
.wsb{word-spacing:-10.260000px;}
.ws33{word-spacing:-9.792000px;}
.ws6{word-spacing:-8.786880px;}
.ws35{word-spacing:-7.800000px;}
.ws1a{word-spacing:0.000000px;}
._18{margin-left:-7.964640px;}
._3{margin-left:-5.557680px;}
._6{margin-left:-4.073040px;}
._2{margin-left:-2.843040px;}
._0{margin-left:-1.032000px;}
._1{width:1.236000px;}
._c{width:2.853360px;}
._4{width:4.207200px;}
._10{width:5.733360px;}
._d{width:6.910560px;}
._9{width:8.264400px;}
._8{width:9.396960px;}
._17{width:10.508160px;}
._b{width:11.812800px;}
._7{width:13.483680px;}
._a{width:16.790640px;}
._f{width:18.432960px;}
._14{width:19.444080px;}
._e{width:20.857200px;}
._19{width:22.046400px;}
._1a{width:23.213880px;}
._12{width:24.218640px;}
._11{width:25.303920px;}
._5{width:26.920080px;}
._13{width:30.646800px;}
._16{width:110.245440px;}
._15{width:111.263760px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:3.090000px;}
.yb6{bottom:3.135000px;}
.ya2{bottom:3.165000px;}
.y98{bottom:3.210000px;}
.y42{bottom:3.240000px;}
.yb4{bottom:3.345000px;}
.y9b{bottom:3.390000px;}
.yb3{bottom:3.525000px;}
.y9a{bottom:3.570000px;}
.y3{bottom:3.600000px;}
.y47{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y45{bottom:10.620000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.y41{bottom:20.415000px;}
.y19{bottom:20.520000px;}
.y46{bottom:22.320000px;}
.y44{bottom:25.200000px;}
.yb{bottom:30.240000px;}
.y40{bottom:37.695000px;}
.y18{bottom:43.920000px;}
.ya{bottom:46.440000px;}
.y3f{bottom:54.975000px;}
.y5{bottom:58.680000px;}
.y17{bottom:62.325000px;}
.y3e{bottom:72.255000px;}
.y9{bottom:73.440000px;}
.y1{bottom:81.216000px;}
.y16{bottom:83.205000px;}
.y3d{bottom:89.535000px;}
.y8{bottom:93.090000px;}
.y15{bottom:95.625000px;}
.y3c{bottom:106.995000px;}
.y14{bottom:110.205000px;}
.y7{bottom:111.270000px;}
.y3b{bottom:124.275000px;}
.y13{bottom:125.505000px;}
.yd1{bottom:129.456000px;}
.y90{bottom:131.076000px;}
.yf9{bottom:132.876000px;}
.y53{bottom:140.256000px;}
.y3a{bottom:141.735000px;}
.y12{bottom:144.585000px;}
.yd0{bottom:146.556000px;}
.y8f{bottom:148.356000px;}
.yf8{bottom:149.976000px;}
.y52{bottom:157.530000px;}
.y39{bottom:159.195000px;}
.ycf{bottom:163.830000px;}
.y8e{bottom:165.630000px;}
.yf7{bottom:167.250000px;}
.y11{bottom:170.325000px;}
.y51{bottom:174.810000px;}
.y38{bottom:176.295000px;}
.yce{bottom:181.110000px;}
.y8d{bottom:183.090000px;}
.yf6{bottom:184.530000px;}
.y29{bottom:186.300000px;}
.y50{bottom:191.910000px;}
.y37{bottom:193.755000px;}
.y10{bottom:194.625000px;}
.ycd{bottom:198.390000px;}
.y8c{bottom:200.370000px;}
.y28{bottom:201.600000px;}
.yf5{bottom:201.810000px;}
.y4f{bottom:209.190000px;}
.y36{bottom:211.215000px;}
.ycc{bottom:215.670000px;}
.y8b{bottom:217.650000px;}
.y27{bottom:219.060000px;}
.yf4{bottom:219.090000px;}
.y4e{bottom:226.470000px;}
.y35{bottom:228.525000px;}
.ycb{bottom:232.770000px;}
.y8a{bottom:234.930000px;}
.y26{bottom:236.370000px;}
.y4d{bottom:243.750000px;}
.y34{bottom:245.805000px;}
.yca{bottom:250.050000px;}
.y89{bottom:252.210000px;}
.yf3{bottom:253.470000px;}
.y25{bottom:253.650000px;}
.y4c{bottom:261.030000px;}
.y33{bottom:262.905000px;}
.yc9{bottom:267.330000px;}
.y88{bottom:269.490000px;}
.yf2{bottom:270.750000px;}
.y24{bottom:271.470000px;}
.y4b{bottom:278.310000px;}
.y32{bottom:280.185000px;}
.yc8{bottom:284.610000px;}
.y87{bottom:286.770000px;}
.yf1{bottom:288.030000px;}
.y23{bottom:288.930000px;}
.y4a{bottom:295.410000px;}
.y31{bottom:297.465000px;}
.yc7{bottom:299.520000px;}
.y86{bottom:303.870000px;}
.yf0{bottom:305.310000px;}
.y22{bottom:306.210000px;}
.y49{bottom:312.690000px;}
.y30{bottom:314.745000px;}
.yc5{bottom:317.520000px;}
.y85{bottom:321.150000px;}
.yef{bottom:322.590000px;}
.y21{bottom:323.670000px;}
.y48{bottom:329.970000px;}
.y2f{bottom:332.025000px;}
.yc4{bottom:335.520000px;}
.y84{bottom:338.475000px;}
.yee{bottom:339.915000px;}
.y20{bottom:340.950000px;}
.y43{bottom:344.055000px;}
.y2e{bottom:349.125000px;}
.yc3{bottom:353.520000px;}
.y83{bottom:355.755000px;}
.yed{bottom:357.015000px;}
.y1f{bottom:358.590000px;}
.y2d{bottom:366.405000px;}
.y82{bottom:373.035000px;}
.yec{bottom:374.295000px;}
.yc2{bottom:374.835000px;}
.y1c{bottom:380.595000px;}
.y2a{bottom:380.700000px;}
.y2c{bottom:383.685000px;}
.y1e{bottom:385.950000px;}
.y81{bottom:390.315000px;}
.yeb{bottom:391.575000px;}
.yc1{bottom:392.295000px;}
.y2b{bottom:400.965000px;}
.y1d{bottom:403.770000px;}
.y80{bottom:407.415000px;}
.yea{bottom:408.855000px;}
.yc0{bottom:409.395000px;}
.y7f{bottom:424.695000px;}
.ye9{bottom:426.135000px;}
.ybf{bottom:426.675000px;}
.y7e{bottom:441.975000px;}
.ye8{bottom:443.415000px;}
.ybe{bottom:443.955000px;}
.y7d{bottom:459.255000px;}
.ye7{bottom:460.515000px;}
.ybd{bottom:461.235000px;}
.y7c{bottom:476.535000px;}
.ye6{bottom:477.795000px;}
.ybc{bottom:478.515000px;}
.y7b{bottom:493.815000px;}
.ye5{bottom:495.075000px;}
.ybb{bottom:495.795000px;}
.yba{bottom:510.660000px;}
.y7a{bottom:510.915000px;}
.ye4{bottom:512.355000px;}
.y79{bottom:528.195000px;}
.yb9{bottom:528.660000px;}
.ye3{bottom:529.635000px;}
.y78{bottom:545.475000px;}
.yb8{bottom:546.660000px;}
.ye2{bottom:546.735000px;}
.y77{bottom:562.755000px;}
.ye1{bottom:564.015000px;}
.yb7{bottom:564.660000px;}
.y76{bottom:580.035000px;}
.ye0{bottom:581.295000px;}
.yb5{bottom:582.660000px;}
.y75{bottom:597.135000px;}
.ydf{bottom:598.575000px;}
.yb2{bottom:600.480000px;}
.y74{bottom:614.445000px;}
.yde{bottom:615.885000px;}
.yb1{bottom:622.005000px;}
.y73{bottom:631.905000px;}
.ydd{bottom:633.165000px;}
.yb0{bottom:639.285000px;}
.y72{bottom:649.365000px;}
.ydc{bottom:650.265000px;}
.yaf{bottom:656.745000px;}
.y71{bottom:666.645000px;}
.ydb{bottom:667.545000px;}
.yae{bottom:674.205000px;}
.y70{bottom:683.745000px;}
.yda{bottom:684.825000px;}
.yad{bottom:691.485000px;}
.y6f{bottom:701.205000px;}
.yd9{bottom:702.105000px;}
.yac{bottom:708.585000px;}
.yfb{bottom:718.305000px;}
.y6e{bottom:718.665000px;}
.yd8{bottom:719.385000px;}
.yab{bottom:725.865000px;}
.y6d{bottom:735.945000px;}
.yfa{bottom:736.305000px;}
.yd7{bottom:736.665000px;}
.yaa{bottom:743.145000px;}
.y6c{bottom:753.225000px;}
.yd6{bottom:753.765000px;}
.ya9{bottom:760.425000px;}
.y6b{bottom:770.325000px;}
.yd5{bottom:771.045000px;}
.ya8{bottom:777.705000px;}
.y6a{bottom:787.605000px;}
.yd4{bottom:788.325000px;}
.ya7{bottom:794.805000px;}
.y1a{bottom:795.705000px;}
.y69{bottom:804.885000px;}
.yd3{bottom:805.605000px;}
.ya6{bottom:809.640000px;}
.y68{bottom:822.345000px;}
.yd2{bottom:822.885000px;}
.yf{bottom:825.225000px;}
.ya5{bottom:827.640000px;}
.y67{bottom:839.985000px;}
.ya4{bottom:845.640000px;}
.y66{bottom:857.265000px;}
.ya3{bottom:863.565000px;}
.ya1{bottom:863.640000px;}
.y65{bottom:874.590000px;}
.ya0{bottom:881.640000px;}
.y64{bottom:891.870000px;}
.y9f{bottom:899.640000px;}
.y63{bottom:909.150000px;}
.y9e{bottom:917.640000px;}
.y62{bottom:926.430000px;}
.y9d{bottom:935.640000px;}
.y61{bottom:943.530000px;}
.y9c{bottom:953.640000px;}
.y60{bottom:960.810000px;}
.y99{bottom:971.640000px;}
.y5f{bottom:978.090000px;}
.y97{bottom:990.000000px;}
.y5e{bottom:995.370000px;}
.y96{bottom:1011.390000px;}
.y5d{bottom:1012.650000px;}
.y95{bottom:1028.850000px;}
.y5c{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.y94{bottom:1046.310000px;}
.y5b{bottom:1047.030000px;}
.y6{bottom:1060.350000px;}
.y93{bottom:1063.590000px;}
.y5a{bottom:1064.310000px;}
.y92{bottom:1081.050000px;}
.y59{bottom:1081.590000px;}
.y91{bottom:1098.690000px;}
.y58{bottom:1098.870000px;}
.y57{bottom:1116.150000px;}
.y56{bottom:1133.430000px;}
.y55{bottom:1150.560000px;}
.y54{bottom:1167.840000px;}
.h27{height:17.100000px;}
.h23{height:17.280000px;}
.h25{height:17.316000px;}
.h24{height:17.640000px;}
.hb{height:25.020000px;}
.h14{height:29.520000px;}
.h2{height:32.940000px;}
.h11{height:34.001016px;}
.h8{height:36.180000px;}
.h21{height:36.540000px;}
.h1e{height:41.726953px;}
.h1f{height:41.827500px;}
.h1d{height:42.164648px;}
.h1b{height:42.186445px;}
.h22{height:42.266250px;}
.h1a{height:42.281367px;}
.h28{height:42.383250px;}
.h29{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h4{height:47.223633px;}
.h17{height:47.980898px;}
.h19{height:49.742227px;}
.h20{height:50.364141px;}
.h26{height:50.485500px;}
.h12{height:52.260820px;}
.h13{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h2a{height:65.884219px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:209.730000px;}
.h1c{height:415.080000px;}
.h16{height:415.110000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w11{width:100.260000px;}
.w16{width:109.260000px;}
.w12{width:111.060000px;}
.we{width:118.440000px;}
.w13{width:129.600000px;}
.w5{width:151.950000px;}
.w14{width:161.460000px;}
.wf{width:202.860000px;}
.w15{width:214.920000px;}
.w8{width:223.455000px;}
.w10{width:305.820000px;}
.wc{width:321.660000px;}
.wd{width:321.690000px;}
.wb{width:406.980000px;}
.wa{width:507.600000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.635000px;}
.x2{left:8.676000px;}
.x12{left:12.600000px;}
.xf{left:31.716000px;}
.xe{left:79.410000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.xd{left:102.990000px;}
.x1e{left:108.035987px;}
.x1f{left:135.035987px;}
.x19{left:193.500000px;}
.x15{left:200.880000px;}
.xc{left:203.835000px;}
.x11{left:215.175000px;}
.x14{left:227.729987px;}
.x5{left:232.950000px;}
.x18{left:269.129987px;}
.x8{left:272.235000px;}
.xb{left:299.595000px;}
.x10{left:304.455000px;}
.x1a{left:324.000000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x16{left:404.460000px;}
.x9{left:439.500000px;}
.x1c{left:486.360000px;}
.x13{left:489.600000px;}
.x1d{left:702.000000px;}
.x17{left:711.000000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls41{letter-spacing:-6.346667pt;}
.ls39{letter-spacing:-4.576000pt;}
.ls12{letter-spacing:-4.160000pt;}
.ls37{letter-spacing:-3.936000pt;}
.ls35{letter-spacing:-3.658667pt;}
.ls38{letter-spacing:-3.530667pt;}
.ls20{letter-spacing:-0.688000pt;}
.ls2c{letter-spacing:-0.592000pt;}
.ls34{letter-spacing:-0.544000pt;}
.ls36{letter-spacing:-0.503467pt;}
.ls11{letter-spacing:-0.409067pt;}
.ls23{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.265067pt;}
.ls2e{letter-spacing:-0.233600pt;}
.ls18{letter-spacing:-0.230933pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.113067pt;}
.ls2d{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.083200pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls2b{letter-spacing:-0.045067pt;}
.lsc{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011520pt;}
.ls40{letter-spacing:0.033280pt;}
.ls1e{letter-spacing:0.037867pt;}
.ls5{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.117867pt;}
.ls19{letter-spacing:0.128000pt;}
.ls3f{letter-spacing:0.133120pt;}
.ls1c{letter-spacing:0.136533pt;}
.ls24{letter-spacing:0.159360pt;}
.ls4{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.175467pt;}
.ls27{letter-spacing:0.183467pt;}
.ls2a{letter-spacing:0.222933pt;}
.ls15{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls21{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls29{letter-spacing:0.272533pt;}
.lsf{letter-spacing:0.279467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.367616pt;}
.ls2{letter-spacing:0.398080pt;}
.ls1f{letter-spacing:0.439040pt;}
.ls17{letter-spacing:0.448000pt;}
.ls31{letter-spacing:0.800000pt;}
.ls30{letter-spacing:1.440000pt;}
.ls6{letter-spacing:2.080000pt;}
.ls1b{letter-spacing:2.720000pt;}
.ls3c{letter-spacing:3.360000pt;}
.ls25{letter-spacing:4.000000pt;}
.ls28{letter-spacing:4.640000pt;}
.ls32{letter-spacing:5.920000pt;}
.ls1a{letter-spacing:6.560000pt;}
.ls1d{letter-spacing:7.200000pt;}
.ls3d{letter-spacing:9.760000pt;}
.ls3a{letter-spacing:14.672640pt;}
.ls7{letter-spacing:18.080000pt;}
.ls3e{letter-spacing:21.253120pt;}
.ls3b{letter-spacing:23.840000pt;}
.ls33{letter-spacing:40.912640pt;}
.ws13{word-spacing:-53.131520pt;}
.ws10{word-spacing:-53.120000pt;}
.ws16{word-spacing:-38.400640pt;}
.ws23{word-spacing:-38.293973pt;}
.ws25{word-spacing:-37.960960pt;}
.ws12{word-spacing:-37.866880pt;}
.ws1d{word-spacing:-37.760640pt;}
.ws8{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.778987pt;}
.ws4{word-spacing:-14.661120pt;}
.ws18{word-spacing:-13.728000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws1e{word-spacing:-13.568000pt;}
.ws2d{word-spacing:-13.552533pt;}
.ws11{word-spacing:-13.545600pt;}
.ws14{word-spacing:-13.510933pt;}
.ws24{word-spacing:-13.502933pt;}
.ws27{word-spacing:-13.463467pt;}
.ws15{word-spacing:-13.455467pt;}
.ws20{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.374933pt;}
.ws21{word-spacing:-13.349867pt;}
.wsd{word-spacing:-13.327360pt;}
.ws34{word-spacing:-13.313280pt;}
.ws1b{word-spacing:-13.312000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.280000pt;}
.ws26{word-spacing:-13.266933pt;}
.wsc{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.228800pt;}
.ws2a{word-spacing:-13.185067pt;}
.ws2c{word-spacing:-13.096533pt;}
.ws1f{word-spacing:-13.088000pt;}
.ws2b{word-spacing:-13.078400pt;}
.ws19{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws22{word-spacing:-12.928000pt;}
.ws28{word-spacing:-12.870933pt;}
.ws30{word-spacing:-12.776533pt;}
.ws2e{word-spacing:-12.736000pt;}
.ws29{word-spacing:-12.688000pt;}
.ws1c{word-spacing:-12.592000pt;}
.ws5{word-spacing:-12.284587pt;}
.ws17{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws32{word-spacing:-9.749333pt;}
.ws2f{word-spacing:-9.621333pt;}
.ws31{word-spacing:-9.344000pt;}
.wsb{word-spacing:-9.120000pt;}
.ws33{word-spacing:-8.704000pt;}
.ws6{word-spacing:-7.810560pt;}
.ws35{word-spacing:-6.933333pt;}
.ws1a{word-spacing:0.000000pt;}
._18{margin-left:-7.079680pt;}
._3{margin-left:-4.940160pt;}
._6{margin-left:-3.620480pt;}
._2{margin-left:-2.527147pt;}
._0{margin-left:-0.917333pt;}
._1{width:1.098667pt;}
._c{width:2.536320pt;}
._4{width:3.739733pt;}
._10{width:5.096320pt;}
._d{width:6.142720pt;}
._9{width:7.346133pt;}
._8{width:8.352853pt;}
._17{width:9.340587pt;}
._b{width:10.500267pt;}
._7{width:11.985493pt;}
._a{width:14.925013pt;}
._f{width:16.384853pt;}
._14{width:17.283627pt;}
._e{width:18.539733pt;}
._19{width:19.596800pt;}
._1a{width:20.634560pt;}
._12{width:21.527680pt;}
._11{width:22.492373pt;}
._5{width:23.928960pt;}
._13{width:27.241600pt;}
._16{width:97.995947pt;}
._15{width:98.901120pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:2.746667pt;}
.yb6{bottom:2.786667pt;}
.ya2{bottom:2.813333pt;}
.y98{bottom:2.853333pt;}
.y42{bottom:2.880000pt;}
.yb4{bottom:2.973333pt;}
.y9b{bottom:3.013333pt;}
.yb3{bottom:3.133333pt;}
.y9a{bottom:3.173333pt;}
.y3{bottom:3.200000pt;}
.y47{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y45{bottom:9.440000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.y41{bottom:18.146667pt;}
.y19{bottom:18.240000pt;}
.y46{bottom:19.840000pt;}
.y44{bottom:22.400000pt;}
.yb{bottom:26.880000pt;}
.y40{bottom:33.506667pt;}
.y18{bottom:39.040000pt;}
.ya{bottom:41.280000pt;}
.y3f{bottom:48.866667pt;}
.y5{bottom:52.160000pt;}
.y17{bottom:55.400000pt;}
.y3e{bottom:64.226667pt;}
.y9{bottom:65.280000pt;}
.y1{bottom:72.192000pt;}
.y16{bottom:73.960000pt;}
.y3d{bottom:79.586667pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:85.000000pt;}
.y3c{bottom:95.106667pt;}
.y14{bottom:97.960000pt;}
.y7{bottom:98.906667pt;}
.y3b{bottom:110.466667pt;}
.y13{bottom:111.560000pt;}
.yd1{bottom:115.072000pt;}
.y90{bottom:116.512000pt;}
.yf9{bottom:118.112000pt;}
.y53{bottom:124.672000pt;}
.y3a{bottom:125.986667pt;}
.y12{bottom:128.520000pt;}
.yd0{bottom:130.272000pt;}
.y8f{bottom:131.872000pt;}
.yf8{bottom:133.312000pt;}
.y52{bottom:140.026667pt;}
.y39{bottom:141.506667pt;}
.ycf{bottom:145.626667pt;}
.y8e{bottom:147.226667pt;}
.yf7{bottom:148.666667pt;}
.y11{bottom:151.400000pt;}
.y51{bottom:155.386667pt;}
.y38{bottom:156.706667pt;}
.yce{bottom:160.986667pt;}
.y8d{bottom:162.746667pt;}
.yf6{bottom:164.026667pt;}
.y29{bottom:165.600000pt;}
.y50{bottom:170.586667pt;}
.y37{bottom:172.226667pt;}
.y10{bottom:173.000000pt;}
.ycd{bottom:176.346667pt;}
.y8c{bottom:178.106667pt;}
.y28{bottom:179.200000pt;}
.yf5{bottom:179.386667pt;}
.y4f{bottom:185.946667pt;}
.y36{bottom:187.746667pt;}
.ycc{bottom:191.706667pt;}
.y8b{bottom:193.466667pt;}
.y27{bottom:194.720000pt;}
.yf4{bottom:194.746667pt;}
.y4e{bottom:201.306667pt;}
.y35{bottom:203.133333pt;}
.ycb{bottom:206.906667pt;}
.y8a{bottom:208.826667pt;}
.y26{bottom:210.106667pt;}
.y4d{bottom:216.666667pt;}
.y34{bottom:218.493333pt;}
.yca{bottom:222.266667pt;}
.y89{bottom:224.186667pt;}
.yf3{bottom:225.306667pt;}
.y25{bottom:225.466667pt;}
.y4c{bottom:232.026667pt;}
.y33{bottom:233.693333pt;}
.yc9{bottom:237.626667pt;}
.y88{bottom:239.546667pt;}
.yf2{bottom:240.666667pt;}
.y24{bottom:241.306667pt;}
.y4b{bottom:247.386667pt;}
.y32{bottom:249.053333pt;}
.yc8{bottom:252.986667pt;}
.y87{bottom:254.906667pt;}
.yf1{bottom:256.026667pt;}
.y23{bottom:256.826667pt;}
.y4a{bottom:262.586667pt;}
.y31{bottom:264.413333pt;}
.yc7{bottom:266.240000pt;}
.y86{bottom:270.106667pt;}
.yf0{bottom:271.386667pt;}
.y22{bottom:272.186667pt;}
.y49{bottom:277.946667pt;}
.y30{bottom:279.773333pt;}
.yc5{bottom:282.240000pt;}
.y85{bottom:285.466667pt;}
.yef{bottom:286.746667pt;}
.y21{bottom:287.706667pt;}
.y48{bottom:293.306667pt;}
.y2f{bottom:295.133333pt;}
.yc4{bottom:298.240000pt;}
.y84{bottom:300.866667pt;}
.yee{bottom:302.146667pt;}
.y20{bottom:303.066667pt;}
.y43{bottom:305.826667pt;}
.y2e{bottom:310.333333pt;}
.yc3{bottom:314.240000pt;}
.y83{bottom:316.226667pt;}
.yed{bottom:317.346667pt;}
.y1f{bottom:318.746667pt;}
.y2d{bottom:325.693333pt;}
.y82{bottom:331.586667pt;}
.yec{bottom:332.706667pt;}
.yc2{bottom:333.186667pt;}
.y1c{bottom:338.306667pt;}
.y2a{bottom:338.400000pt;}
.y2c{bottom:341.053333pt;}
.y1e{bottom:343.066667pt;}
.y81{bottom:346.946667pt;}
.yeb{bottom:348.066667pt;}
.yc1{bottom:348.706667pt;}
.y2b{bottom:356.413333pt;}
.y1d{bottom:358.906667pt;}
.y80{bottom:362.146667pt;}
.yea{bottom:363.426667pt;}
.yc0{bottom:363.906667pt;}
.y7f{bottom:377.506667pt;}
.ye9{bottom:378.786667pt;}
.ybf{bottom:379.266667pt;}
.y7e{bottom:392.866667pt;}
.ye8{bottom:394.146667pt;}
.ybe{bottom:394.626667pt;}
.y7d{bottom:408.226667pt;}
.ye7{bottom:409.346667pt;}
.ybd{bottom:409.986667pt;}
.y7c{bottom:423.586667pt;}
.ye6{bottom:424.706667pt;}
.ybc{bottom:425.346667pt;}
.y7b{bottom:438.946667pt;}
.ye5{bottom:440.066667pt;}
.ybb{bottom:440.706667pt;}
.yba{bottom:453.920000pt;}
.y7a{bottom:454.146667pt;}
.ye4{bottom:455.426667pt;}
.y79{bottom:469.506667pt;}
.yb9{bottom:469.920000pt;}
.ye3{bottom:470.786667pt;}
.y78{bottom:484.866667pt;}
.yb8{bottom:485.920000pt;}
.ye2{bottom:485.986667pt;}
.y77{bottom:500.226667pt;}
.ye1{bottom:501.346667pt;}
.yb7{bottom:501.920000pt;}
.y76{bottom:515.586667pt;}
.ye0{bottom:516.706667pt;}
.yb5{bottom:517.920000pt;}
.y75{bottom:530.786667pt;}
.ydf{bottom:532.066667pt;}
.yb2{bottom:533.760000pt;}
.y74{bottom:546.173333pt;}
.yde{bottom:547.453333pt;}
.yb1{bottom:552.893333pt;}
.y73{bottom:561.693333pt;}
.ydd{bottom:562.813333pt;}
.yb0{bottom:568.253333pt;}
.y72{bottom:577.213333pt;}
.ydc{bottom:578.013333pt;}
.yaf{bottom:583.773333pt;}
.y71{bottom:592.573333pt;}
.ydb{bottom:593.373333pt;}
.yae{bottom:599.293333pt;}
.y70{bottom:607.773333pt;}
.yda{bottom:608.733333pt;}
.yad{bottom:614.653333pt;}
.y6f{bottom:623.293333pt;}
.yd9{bottom:624.093333pt;}
.yac{bottom:629.853333pt;}
.yfb{bottom:638.493333pt;}
.y6e{bottom:638.813333pt;}
.yd8{bottom:639.453333pt;}
.yab{bottom:645.213333pt;}
.y6d{bottom:654.173333pt;}
.yfa{bottom:654.493333pt;}
.yd7{bottom:654.813333pt;}
.yaa{bottom:660.573333pt;}
.y6c{bottom:669.533333pt;}
.yd6{bottom:670.013333pt;}
.ya9{bottom:675.933333pt;}
.y6b{bottom:684.733333pt;}
.yd5{bottom:685.373333pt;}
.ya8{bottom:691.293333pt;}
.y6a{bottom:700.093333pt;}
.yd4{bottom:700.733333pt;}
.ya7{bottom:706.493333pt;}
.y1a{bottom:707.293333pt;}
.y69{bottom:715.453333pt;}
.yd3{bottom:716.093333pt;}
.ya6{bottom:719.680000pt;}
.y68{bottom:730.973333pt;}
.yd2{bottom:731.453333pt;}
.yf{bottom:733.533333pt;}
.ya5{bottom:735.680000pt;}
.y67{bottom:746.653333pt;}
.ya4{bottom:751.680000pt;}
.y66{bottom:762.013333pt;}
.ya3{bottom:767.613333pt;}
.ya1{bottom:767.680000pt;}
.y65{bottom:777.413333pt;}
.ya0{bottom:783.680000pt;}
.y64{bottom:792.773333pt;}
.y9f{bottom:799.680000pt;}
.y63{bottom:808.133333pt;}
.y9e{bottom:815.680000pt;}
.y62{bottom:823.493333pt;}
.y9d{bottom:831.680000pt;}
.y61{bottom:838.693333pt;}
.y9c{bottom:847.680000pt;}
.y60{bottom:854.053333pt;}
.y99{bottom:863.680000pt;}
.y5f{bottom:869.413333pt;}
.y97{bottom:880.000000pt;}
.y5e{bottom:884.773333pt;}
.y96{bottom:899.013333pt;}
.y5d{bottom:900.133333pt;}
.y95{bottom:914.533333pt;}
.y5c{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.y94{bottom:930.053333pt;}
.y5b{bottom:930.693333pt;}
.y6{bottom:942.533333pt;}
.y93{bottom:945.413333pt;}
.y5a{bottom:946.053333pt;}
.y92{bottom:960.933333pt;}
.y59{bottom:961.413333pt;}
.y91{bottom:976.613333pt;}
.y58{bottom:976.773333pt;}
.y57{bottom:992.133333pt;}
.y56{bottom:1007.493333pt;}
.y55{bottom:1022.720000pt;}
.y54{bottom:1038.080000pt;}
.h27{height:15.200000pt;}
.h23{height:15.360000pt;}
.h25{height:15.392000pt;}
.h24{height:15.680000pt;}
.hb{height:22.240000pt;}
.h14{height:26.240000pt;}
.h2{height:29.280000pt;}
.h11{height:30.223125pt;}
.h8{height:32.160000pt;}
.h21{height:32.480000pt;}
.h1e{height:37.090625pt;}
.h1f{height:37.180000pt;}
.h1d{height:37.479688pt;}
.h1b{height:37.499062pt;}
.h22{height:37.570000pt;}
.h1a{height:37.583438pt;}
.h28{height:37.674000pt;}
.h29{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h4{height:41.976562pt;}
.h17{height:42.649687pt;}
.h19{height:44.215312pt;}
.h20{height:44.768125pt;}
.h26{height:44.876000pt;}
.h12{height:46.454062pt;}
.h13{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h2a{height:58.563750pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:186.426667pt;}
.h1c{height:368.960000pt;}
.h16{height:368.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w11{width:89.120000pt;}
.w16{width:97.120000pt;}
.w12{width:98.720000pt;}
.we{width:105.280000pt;}
.w13{width:115.200000pt;}
.w5{width:135.066667pt;}
.w14{width:143.520000pt;}
.wf{width:180.320000pt;}
.w15{width:191.040000pt;}
.w8{width:198.626667pt;}
.w10{width:271.840000pt;}
.wc{width:285.920000pt;}
.wd{width:285.946667pt;}
.wb{width:361.760000pt;}
.wa{width:451.200000pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.786667pt;}
.x2{left:7.712000pt;}
.x12{left:11.200000pt;}
.xf{left:28.192000pt;}
.xe{left:70.586667pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.xd{left:91.546667pt;}
.x1e{left:96.031988pt;}
.x1f{left:120.031988pt;}
.x19{left:172.000000pt;}
.x15{left:178.560000pt;}
.xc{left:181.186667pt;}
.x11{left:191.266667pt;}
.x14{left:202.426655pt;}
.x5{left:207.066667pt;}
.x18{left:239.226655pt;}
.x8{left:241.986667pt;}
.xb{left:266.306667pt;}
.x10{left:270.626667pt;}
.x1a{left:288.000000pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x16{left:359.520000pt;}
.x9{left:390.666667pt;}
.x1c{left:432.320000pt;}
.x13{left:435.200000pt;}
.x1d{left:624.000000pt;}
.x17{left:632.000000pt;}
.x3{left:656.933333pt;}
}




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