
    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_289ce91719d946a39189a535.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dcf56693cb72df9c127bc077.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.665000;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_c88ac46e6fe44db94cd4dd0d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.665000;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_cf8afd78f9401321e0433615.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.905000;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_86ffd34f39430f2deeb92d9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4da6e67ad82f013b05cf8f45.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.845000;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_af3acb8d86d9244eff24c71b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706000;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_c213c1f6455124c2a1e98a9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_85712aa955c9c00ff8a1228d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_92f5a35e8d3a059581f3d9e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_94d9d7164b9eb63173e2f630.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.716000;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_6b3e1b09e8e7aaf4d21c1e4d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_900bb81843280ef29709210c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.842000;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_41050b6da1769e4d1910aa2e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;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_5337935bc1b2967898574df1.woff2')format("woff");}.fff{font-family:fff;line-height:0.106000;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_9a84119a111af41f8a584820.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5d1bc9868441c29347b2ac5c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.664000;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:-22.855143px;}
.v3{vertical-align:-8.964448px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:15.558778px;}
.v6{vertical-align:17.934897px;}
.v1{vertical-align:26.029301px;}
.v5{vertical-align:30.055503px;}
.v7{vertical-align:39.625981px;}
.v4{vertical-align:44.834242px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000993px;}
.ls2{letter-spacing:0.001002px;}
.lsa{letter-spacing:0.002015px;}
.lse{letter-spacing:0.002877px;}
.lsd{letter-spacing:0.003031px;}
.lsf{letter-spacing:1.006918px;}
.ls1{letter-spacing:2.988681px;}
.ls11{letter-spacing:6.764446px;}
.ls9{letter-spacing:13.279202px;}
.lsc{letter-spacing:13.281002px;}
.ls8{letter-spacing:13.287695px;}
.lsb{letter-spacing:13.287934px;}
.ls12{letter-spacing:19.906270px;}
.ls6{letter-spacing:19.966049px;}
.ls7{letter-spacing:21.580071px;}
.ls5{letter-spacing:21.938742px;}
.ls13{letter-spacing:24.210328px;}
.ls0{letter-spacing:29.890410px;}
.ls3{letter-spacing:29.891672px;}
.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;}
}
.ws29{word-spacing:-38.939773px;}
.ws17{word-spacing:-16.606492px;}
.ws2b{word-spacing:-3.335645px;}
.ws5f{word-spacing:-2.737859px;}
.ws3b{word-spacing:-1.661845px;}
.ws32{word-spacing:-1.422730px;}
.ws7{word-spacing:-1.318127px;}
.ws8{word-spacing:-1.210525px;}
.ws68{word-spacing:-1.183616px;}
.ws40{word-spacing:-0.944502px;}
.wsc{word-spacing:-0.188304px;}
.ws37{word-spacing:-0.059779px;}
.ws2a{word-spacing:-0.041845px;}
.ws1d{word-spacing:0.000000px;}
.ws24{word-spacing:0.011956px;}
.ws5{word-spacing:0.188304px;}
.ws57{word-spacing:0.430406px;}
.ws5a{word-spacing:0.609742px;}
.ws18{word-spacing:0.669520px;}
.ws5e{word-spacing:0.789077px;}
.ws9{word-spacing:0.833917px;}
.ws1c{word-spacing:0.908635px;}
.ws4a{word-spacing:0.968413px;}
.ws1a{word-spacing:1.087970px;}
.wsa{word-spacing:1.371928px;}
.ws36{word-spacing:1.386863px;}
.ws27{word-spacing:1.566199px;}
.ws2d{word-spacing:1.625978px;}
.ws3d{word-spacing:1.984649px;}
.ws59{word-spacing:2.223764px;}
.ws67{word-spacing:2.522656px;}
.ws60{word-spacing:2.582435px;}
.ws19{word-spacing:2.701992px;}
.ws6{word-spacing:3.093563px;}
.ws2e{word-spacing:3.298878px;}
.ws13{word-spacing:3.299778px;}
.ws1b{word-spacing:3.359557px;}
.ws34{word-spacing:3.419335px;}
.ws65{word-spacing:3.538892px;}
.wse{word-spacing:3.631574px;}
.ws12{word-spacing:3.658450px;}
.ws20{word-spacing:3.778007px;}
.ws66{word-spacing:3.837785px;}
.ws49{word-spacing:4.136678px;}
.ws16{word-spacing:4.196457px;}
.ws38{word-spacing:4.375793px;}
.wsb{word-spacing:4.438590px;}
.ws43{word-spacing:4.495350px;}
.ws64{word-spacing:4.734464px;}
.ws28{word-spacing:4.973579px;}
.ws23{word-spacing:5.332250px;}
.ws22{word-spacing:5.631143px;}
.ws6a{word-spacing:5.690922px;}
.ws21{word-spacing:5.810479px;}
.ws3e{word-spacing:5.870257px;}
.wsf{word-spacing:5.891219px;}
.ws5c{word-spacing:5.930036px;}
.ws47{word-spacing:6.109372px;}
.ws30{word-spacing:6.169150px;}
.ws3f{word-spacing:6.288708px;}
.ws52{word-spacing:6.707158px;}
.ws35{word-spacing:7.125608px;}
.ws33{word-spacing:7.245165px;}
.ws41{word-spacing:7.364722px;}
.ws39{word-spacing:7.603836px;}
.ws4f{word-spacing:7.842951px;}
.ws61{word-spacing:8.022287px;}
.ws62{word-spacing:8.261401px;}
.ws10{word-spacing:8.312268px;}
.ws4c{word-spacing:8.560294px;}
.ws1f{word-spacing:8.978744px;}
.wsd{word-spacing:9.549693px;}
.ws4d{word-spacing:9.875423px;}
.ws5b{word-spacing:9.935201px;}
.ws55{word-spacing:10.114537px;}
.ws53{word-spacing:10.413430px;}
.ws26{word-spacing:10.712323px;}
.ws5d{word-spacing:11.130773px;}
.ws50{word-spacing:12.206788px;}
.ws2c{word-spacing:12.909192px;}
.ws46{word-spacing:12.924131px;}
.ws45{word-spacing:13.581695px;}
.ws63{word-spacing:14.059924px;}
.ws3c{word-spacing:14.777267px;}
.ws56{word-spacing:19.547599px;}
.ws2f{word-spacing:19.864961px;}
.ws2{word-spacing:22.219850px;}
.ws3{word-spacing:22.249855px;}
.ws31{word-spacing:22.835421px;}
.ws54{word-spacing:23.014757px;}
.ws48{word-spacing:24.748336px;}
.ws51{word-spacing:26.721029px;}
.ws1{word-spacing:26.828810px;}
.ws11{word-spacing:27.229672px;}
.ws69{word-spacing:27.868778px;}
.ws4e{word-spacing:28.036158px;}
.ws4{word-spacing:28.191771px;}
.ws58{word-spacing:28.227450px;}
.ws4b{word-spacing:28.873058px;}
.ws1e{word-spacing:32.194482px;}
.ws44{word-spacing:34.671581px;}
.ws0{word-spacing:38.633289px;}
.ws15{word-spacing:80.629900px;}
.ws25{word-spacing:88.653224px;}
.ws14{word-spacing:96.755610px;}
.ws42{word-spacing:208.627369px;}
.ws3a{word-spacing:268.405958px;}
._0{margin-left:-9.709971px;}
._e{margin-left:-8.091661px;}
._4{margin-left:-5.783139px;}
._5{margin-left:-4.570973px;}
._1{margin-left:-3.202225px;}
._6{margin-left:-1.560232px;}
._7{width:1.614033px;}
._3{width:3.202225px;}
._c{width:4.447557px;}
._1a{width:14.226986px;}
._26{width:15.608518px;}
._a{width:16.624537px;}
._30{width:18.316180px;}
._1d{width:19.966038px;}
._1f{width:21.867906px;}
._31{width:23.178709px;}
._8{width:24.587098px;}
._b{width:26.577738px;}
._23{width:27.758902px;}
._9{width:28.837384px;}
._13{width:29.889294px;}
._32{width:32.493733px;}
._12{width:33.786879px;}
._11{width:35.867393px;}
._28{width:37.694449px;}
._29{width:39.771145px;}
._33{width:40.888555px;}
._f{width:43.417210px;}
._34{width:45.476101px;}
._2f{width:48.035476px;}
._2{width:51.648782px;}
._27{width:68.745377px;}
._16{width:74.144961px;}
._10{width:80.701635px;}
._d{width:96.841692px;}
._24{width:118.495749px;}
._21{width:126.464234px;}
._19{width:132.560608px;}
._20{width:154.906909px;}
._17{width:186.642287px;}
._18{width:195.662886px;}
._25{width:264.391340px;}
._14{width:291.242861px;}
._15{width:295.391495px;}
._22{width:313.507991px;}
._2d{width:402.746736px;}
._1c{width:418.174310px;}
._2a{width:432.636031px;}
._2b{width:500.549226px;}
._2c{width:567.798789px;}
._1e{width:585.420328px;}
._1b{width:604.902139px;}
._2e{width:693.997098px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.867393px;}
.fs8{font-size:41.844892px;}
.fs2{font-size:47.822991px;}
.fs4{font-size:53.801090px;}
.fs5{font-size:59.778589px;}
.fs7{font-size:65.454600px;}
.fs1{font-size:71.734787px;}
.fs6{font-size:86.081504px;}
.fs0{font-size:103.297565px;}
.y0{bottom:0.000000px;}
.y27{bottom:22.740000px;}
.yf2{bottom:110.419779px;}
.yc5{bottom:115.860551px;}
.y4e{bottom:118.475182px;}
.yac{bottom:119.394728px;}
.yf1{bottom:128.354676px;}
.yc4{bottom:133.793948px;}
.y5f{bottom:143.664441px;}
.y4d{bottom:148.364176px;}
.y98{bottom:148.784197px;}
.yab{bottom:149.283722px;}
.yc3{bottom:151.727344px;}
.yf0{bottom:158.243670px;}
.y5e{bottom:161.597838px;}
.y97{bottom:166.717594px;}
.y82{bottom:173.577437px;}
.y78{bottom:176.507083px;}
.y4c{bottom:178.253170px;}
.yaa{bottom:179.172716px;}
.yc2{bottom:181.617839px;}
.y96{bottom:184.650990px;}
.yef{bottom:188.132664px;}
.y77{bottom:194.440480px;}
.y4b{bottom:196.186567px;}
.y5d{bottom:196.341075px;}
.y26{bottom:197.614639px;}
.yc1{bottom:199.551235px;}
.yee{bottom:206.066061px;}
.ya9{bottom:209.063211px;}
.y95{bottom:212.237370px;}
.y4a{bottom:214.121464px;}
.y25{bottom:215.548035px;}
.yc0{bottom:217.484632px;}
.y76{bottom:222.025359px;}
.yed{bottom:223.999458px;}
.y49{bottom:232.054860px;}
.ya8{bottom:238.952205px;}
.y24{bottom:245.437030px;}
.y5c{bottom:245.761046px;}
.ybf{bottom:247.373626px;}
.yec{bottom:253.889952px;}
.y94{bottom:254.071461px;}
.y48{bottom:259.639740px;}
.y5b{bottom:263.695942px;}
.y75{bottom:263.860951px;}
.ybe{bottom:265.308523px;}
.ya7{bottom:268.841200px;}
.yeb{bottom:271.823349px;}
.y93{bottom:272.004858px;}
.y23{bottom:275.326024px;}
.y5a{bottom:281.629339px;}
.y74{bottom:281.794347px;}
.y81{bottom:282.893902px;}
.ybd{bottom:283.241920px;}
.yea{bottom:289.756745px;}
.ya6{bottom:298.731694px;}
.y59{bottom:299.562736px;}
.y80{bottom:300.827299px;}
.ybc{bottom:301.175316px;}
.y47{bottom:301.475331px;}
.y22{bottom:305.216518px;}
.y92{bottom:307.873151px;}
.y73{bottom:309.379226px;}
.ya5{bottom:316.665091px;}
.y7f{bottom:318.760696px;}
.y46{bottom:319.408728px;}
.ye9{bottom:319.645740px;}
.ybb{bottom:331.064311px;}
.y21{bottom:335.105513px;}
.ye8{bottom:337.580636px;}
.y7e{bottom:346.345575px;}
.ya4{bottom:346.554085px;}
.yba{bottom:348.997707px;}
.y72{bottom:351.214818px;}
.y20{bottom:353.038909px;}
.ye7{bottom:355.514033px;}
.y57{bottom:357.846650px;}
.y45{bottom:358.347675px;}
.y58{bottom:358.440679px;}
.y56{bottom:362.330374px;}
.yb9{bottom:366.932604px;}
.y71{bottom:369.148215px;}
.y44{bottom:376.281071px;}
.ya3{bottom:376.443079px;}
.y1f{bottom:380.623789px;}
.yb8{bottom:384.866001px;}
.ye6{bottom:385.403027px;}
.y70{bottom:387.081611px;}
.y7d{bottom:388.181166px;}
.y43{bottom:394.214468px;}
.ye5{bottom:403.336424px;}
.y7c{bottom:406.114563px;}
.ya2{bottom:406.333574px;}
.y42{bottom:412.147865px;}
.y6f{bottom:414.666491px;}
.yb7{bottom:414.754995px;}
.y1e{bottom:422.459380px;}
.y55{bottom:425.098012px;}
.y41{bottom:430.082761px;}
.yb6{bottom:432.688392px;}
.ye4{bottom:433.225418px;}
.ya1{bottom:436.222568px;}
.y1d{bottom:440.392777px;}
.y7b{bottom:440.856300px;}
.y54{bottom:443.031409px;}
.y40{bottom:448.016158px;}
.ye3{bottom:451.160315px;}
.y6e{bottom:453.512433px;}
.ya0{bottom:454.155965px;}
.y1c{bottom:458.326173px;}
.y53{bottom:460.966305px;}
.yb5{bottom:462.577386px;}
.y3f{bottom:465.949555px;}
.ye2{bottom:469.093712px;}
.y9f{bottom:472.089362px;}
.y6d{bottom:481.098812px;}
.y3e{bottom:484.481481px;}
.y1b{bottom:485.912553px;}
.y52{bottom:490.855300px;}
.yb4{bottom:492.467880px;}
.y7a{bottom:492.482881px;}
.ye1{bottom:498.982706px;}
.y3d{bottom:502.863400px;}
.y9e{bottom:506.832599px;}
.ye0{bottom:516.916103px;}
.y6c{bottom:519.943254px;}
.y51{bottom:520.744294px;}
.yb3{bottom:522.356875px;}
.y1a{bottom:527.746644px;}
.y19{bottom:545.680041px;}
.ydf{bottom:546.806597px;}
.y6b{bottom:547.529633px;}
.y3c{bottom:549.856250px;}
.y50{bottom:550.633289px;}
.yb2{bottom:552.245869px;}
.y9d{bottom:556.252570px;}
.yde{bottom:564.739994px;}
.y18{bottom:573.264920px;}
.y9c{bottom:574.187466px;}
.y3b{bottom:579.745244px;}
.y91{bottom:588.898702px;}
.ydd{bottom:594.628988px;}
.y6a{bottom:598.341674px;}
.y4f{bottom:598.374676px;}
.yb1{bottom:599.985756px;}
.y9b{bottom:601.772345px;}
.y3a{bottom:609.634238px;}
.y17{bottom:612.275871px;}
.ydc{bottom:612.562385px;}
.y69{bottom:616.275070px;}
.y68{bottom:634.806997px;}
.y39{bottom:639.523233px;}
.ydb{bottom:642.451379px;}
.y9a{bottom:649.512232px;}
.y67{bottom:652.740394px;}
.yda{bottom:660.386276px;}
.y16{bottom:661.697342px;}
.y38{bottom:669.413727px;}
.y66{bottom:671.272320px;}
.y15{bottom:679.630738px;}
.y37{bottom:687.347124px;}
.y65{bottom:689.205717px;}
.yd9{bottom:690.275270px;}
.y14{bottom:706.530083px;}
.y64{bottom:707.736143px;}
.yd8{bottom:708.208667px;}
.y36{bottom:714.932003px;}
.y13{bottom:722.969405px;}
.y63{bottom:725.671040px;}
.yd7{bottom:738.097661px;}
.y12{bottom:739.408727px;}
.y62{bottom:744.201466px;}
.y11{bottom:755.848049px;}
.yd6{bottom:756.032558px;}
.y35{bottom:756.767595px;}
.y61{bottom:761.753844px;}
.y10{bottom:772.287371px;}
.yd5{bottom:773.965955px;}
.yf{bottom:788.726693px;}
.y34{bottom:791.509332px;}
.yd4{bottom:803.854949px;}
.ye{bottom:805.166015px;}
.y60{bottom:807.915652px;}
.y79{bottom:807.920152px;}
.yd{bottom:821.605337px;}
.yd3{bottom:821.788346px;}
.yc{bottom:838.044658px;}
.y33{bottom:840.930803px;}
.yd2{bottom:851.677340px;}
.y90{bottom:851.998356px;}
.yb{bottom:854.483980px;}
.y32{bottom:858.864199px;}
.yd1{bottom:869.612237px;}
.y8f{bottom:869.931753px;}
.ya{bottom:870.923302px;}
.y31{bottom:876.797596px;}
.y9{bottom:887.361124px;}
.yd0{bottom:887.545633px;}
.y8e{bottom:887.865149px;}
.y8{bottom:903.800446px;}
.y30{bottom:904.383975px;}
.y99{bottom:912.604386px;}
.y8d{bottom:915.450029px;}
.y7{bottom:920.239768px;}
.ycf{bottom:923.118412px;}
.y6{bottom:943.666439px;}
.y2f{bottom:946.218067px;}
.y2e{bottom:964.151463px;}
.y8c{bottom:966.262069px;}
.yce{bottom:972.539883px;}
.y5{bottom:982.999906px;}
.y8b{bottom:984.195466px;}
.ycd{bottom:990.473279px;}
.y2d{bottom:991.737843px;}
.y8a{bottom:1002.130362px;}
.y4{bottom:1005.153013px;}
.ycc{bottom:1008.406676px;}
.y89{bottom:1020.063759px;}
.y3{bottom:1030.823797px;}
.y2c{bottom:1033.571934px;}
.y88{bottom:1037.997156px;}
.ycb{bottom:1038.295670px;}
.y2b{bottom:1051.505331px;}
.y87{bottom:1055.930552px;}
.yca{bottom:1056.229067px;}
.y2{bottom:1059.218717px;}
.y2a{bottom:1069.438728px;}
.y86{bottom:1073.863949px;}
.yc9{bottom:1074.163964px;}
.yb0{bottom:1075.524532px;}
.y85{bottom:1091.797345px;}
.y1{bottom:1092.097360px;}
.yaf{bottom:1094.056458px;}
.y29{bottom:1097.025107px;}
.yc8{bottom:1104.052958px;}
.y84{bottom:1110.329272px;}
.yae{bottom:1111.607336px;}
.yc7{bottom:1121.986355px;}
.y83{bottom:1128.711191px;}
.yad{bottom:1129.542233px;}
.y28{bottom:1136.034557px;}
.yc6{bottom:1139.919751px;}
.h4{height:23.851817px;}
.h6{height:37.660763px;}
.h5{height:40.350817px;}
.h7{height:44.833942px;}
.ha{height:46.149071px;}
.hb{height:49.090950px;}
.h9{height:53.801090px;}
.h3{height:57.831590px;}
.hc{height:59.095858px;}
.he{height:60.392719px;}
.h8{height:64.561128px;}
.hd{height:68.666336px;}
.h2{height:77.473173px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:107.986499px;}
.x1e{left:115.458373px;}
.x13{left:117.550977px;}
.xc{left:126.252912px;}
.x9{left:130.403620px;}
.x19{left:135.319366px;}
.x2{left:137.084954px;}
.x1{left:138.190509px;}
.x4{left:142.959248px;}
.x8{left:145.348867px;}
.x16{left:158.380019px;}
.x7{left:166.084404px;}
.x17{left:173.490274px;}
.xe{left:189.329566px;}
.x1b{left:194.371318px;}
.x1a{left:196.447422px;}
.x1d{left:235.603880px;}
.x3{left:247.721485px;}
.x18{left:250.144107px;}
.x1c{left:254.756837px;}
.x5{left:269.888094px;}
.xd{left:282.794739px;}
.x12{left:289.249562px;}
.x10{left:334.148307px;}
.xf{left:342.947747px;}
.x15{left:359.477073px;}
.x11{left:378.109504px;}
.x6{left:416.017900px;}
.xb{left:434.184000px;}
.x14{left:601.401669px;}
@media print{
.v2{vertical-align:-20.315682pt;}
.v3{vertical-align:-7.968398pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:13.830025pt;}
.v6{vertical-align:15.942130pt;}
.v1{vertical-align:23.137157pt;}
.v5{vertical-align:26.716002pt;}
.v7{vertical-align:35.223094pt;}
.v4{vertical-align:39.852659pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000882pt;}
.ls2{letter-spacing:0.000891pt;}
.lsa{letter-spacing:0.001791pt;}
.lse{letter-spacing:0.002557pt;}
.lsd{letter-spacing:0.002694pt;}
.lsf{letter-spacing:0.895038pt;}
.ls1{letter-spacing:2.656606pt;}
.ls11{letter-spacing:6.012841pt;}
.ls9{letter-spacing:11.803735pt;}
.lsc{letter-spacing:11.805335pt;}
.ls8{letter-spacing:11.811285pt;}
.lsb{letter-spacing:11.811496pt;}
.ls12{letter-spacing:17.694462pt;}
.ls6{letter-spacing:17.747599pt;}
.ls7{letter-spacing:19.182285pt;}
.ls5{letter-spacing:19.501104pt;}
.ls13{letter-spacing:21.520292pt;}
.ls0{letter-spacing:26.569253pt;}
.ls3{letter-spacing:26.570375pt;}
.ws29{word-spacing:-34.613131pt;}
.ws17{word-spacing:-14.761326pt;}
.ws2b{word-spacing:-2.965018pt;}
.ws5f{word-spacing:-2.433653pt;}
.ws3b{word-spacing:-1.477195pt;}
.ws32{word-spacing:-1.264649pt;}
.ws7{word-spacing:-1.171668pt;}
.ws8{word-spacing:-1.076022pt;}
.ws68{word-spacing:-1.052103pt;}
.ws40{word-spacing:-0.839557pt;}
.wsc{word-spacing:-0.167381pt;}
.ws37{word-spacing:-0.053137pt;}
.ws2a{word-spacing:-0.037195pt;}
.ws1d{word-spacing:0.000000pt;}
.ws24{word-spacing:0.010627pt;}
.ws5{word-spacing:0.167381pt;}
.ws57{word-spacing:0.382583pt;}
.ws5a{word-spacing:0.541993pt;}
.ws18{word-spacing:0.595129pt;}
.ws5e{word-spacing:0.701402pt;}
.ws9{word-spacing:0.741259pt;}
.ws1c{word-spacing:0.807675pt;}
.ws4a{word-spacing:0.860812pt;}
.ws1a{word-spacing:0.967085pt;}
.wsa{word-spacing:1.219491pt;}
.ws36{word-spacing:1.232767pt;}
.ws27{word-spacing:1.392177pt;}
.ws2d{word-spacing:1.445313pt;}
.ws3d{word-spacing:1.764133pt;}
.ws59{word-spacing:1.976679pt;}
.ws67{word-spacing:2.242361pt;}
.ws60{word-spacing:2.295498pt;}
.ws19{word-spacing:2.401771pt;}
.ws6{word-spacing:2.749833pt;}
.ws2e{word-spacing:2.932336pt;}
.ws13{word-spacing:2.933136pt;}
.ws1b{word-spacing:2.986273pt;}
.ws34{word-spacing:3.039409pt;}
.ws65{word-spacing:3.145682pt;}
.wse{word-spacing:3.228065pt;}
.ws12{word-spacing:3.251955pt;}
.ws20{word-spacing:3.358228pt;}
.ws66{word-spacing:3.411365pt;}
.ws49{word-spacing:3.677047pt;}
.ws16{word-spacing:3.730184pt;}
.ws38{word-spacing:3.889594pt;}
.wsb{word-spacing:3.945413pt;}
.ws43{word-spacing:3.995867pt;}
.ws64{word-spacing:4.208413pt;}
.ws28{word-spacing:4.420959pt;}
.ws23{word-spacing:4.739778pt;}
.ws22{word-spacing:5.005461pt;}
.ws6a{word-spacing:5.058597pt;}
.ws21{word-spacing:5.164870pt;}
.ws3e{word-spacing:5.218007pt;}
.wsf{word-spacing:5.236639pt;}
.ws5c{word-spacing:5.271143pt;}
.ws47{word-spacing:5.430553pt;}
.ws30{word-spacing:5.483689pt;}
.ws3f{word-spacing:5.589962pt;}
.ws52{word-spacing:5.961918pt;}
.ws35{word-spacing:6.333874pt;}
.ws33{word-spacing:6.440147pt;}
.ws41{word-spacing:6.546420pt;}
.ws39{word-spacing:6.758966pt;}
.ws4f{word-spacing:6.971512pt;}
.ws61{word-spacing:7.130921pt;}
.ws62{word-spacing:7.343468pt;}
.ws10{word-spacing:7.388683pt;}
.ws4c{word-spacing:7.609150pt;}
.ws1f{word-spacing:7.981106pt;}
.wsd{word-spacing:8.488616pt;}
.ws4d{word-spacing:8.778154pt;}
.ws5b{word-spacing:8.831290pt;}
.ws55{word-spacing:8.990700pt;}
.ws53{word-spacing:9.256382pt;}
.ws26{word-spacing:9.522065pt;}
.ws5d{word-spacing:9.894021pt;}
.ws50{word-spacing:10.850478pt;}
.ws2c{word-spacing:11.474838pt;}
.ws46{word-spacing:11.488116pt;}
.ws45{word-spacing:12.072618pt;}
.ws63{word-spacing:12.497710pt;}
.ws3c{word-spacing:13.135349pt;}
.ws56{word-spacing:17.375643pt;}
.ws2f{word-spacing:17.657743pt;}
.ws2{word-spacing:19.750978pt;}
.ws3{word-spacing:19.777649pt;}
.ws31{word-spacing:20.298152pt;}
.ws54{word-spacing:20.457561pt;}
.ws48{word-spacing:21.998521pt;}
.ws51{word-spacing:23.752026pt;}
.ws1{word-spacing:23.847831pt;}
.ws11{word-spacing:24.204153pt;}
.ws69{word-spacing:24.772247pt;}
.ws4e{word-spacing:24.921029pt;}
.ws4{word-spacing:25.059352pt;}
.ws58{word-spacing:25.091066pt;}
.ws4b{word-spacing:25.664941pt;}
.ws1e{word-spacing:28.617318pt;}
.ws44{word-spacing:30.819184pt;}
.ws0{word-spacing:34.340701pt;}
.ws15{word-spacing:71.671022pt;}
.ws25{word-spacing:78.802866pt;}
.ws14{word-spacing:86.004987pt;}
.ws42{word-spacing:185.446550pt;}
.ws3a{word-spacing:238.583074pt;}
._0{margin-left:-8.631085pt;}
._e{margin-left:-7.192588pt;}
._4{margin-left:-5.140568pt;}
._5{margin-left:-4.063087pt;}
._1{margin-left:-2.846422pt;}
._6{margin-left:-1.386873pt;}
._7{width:1.434696pt;}
._3{width:2.846422pt;}
._c{width:3.953384pt;}
._1a{width:12.646209pt;}
._26{width:13.874239pt;}
._a{width:14.777366pt;}
._30{width:16.281049pt;}
._1d{width:17.747589pt;}
._1f{width:19.438139pt;}
._31{width:20.603297pt;}
._8{width:21.855198pt;}
._b{width:23.624656pt;}
._23{width:24.674580pt;}
._9{width:25.633230pt;}
._13{width:26.568262pt;}
._32{width:28.883318pt;}
._12{width:30.032782pt;}
._11{width:31.882127pt;}
._28{width:33.506177pt;}
._29{width:35.352129pt;}
._33{width:36.345382pt;}
._f{width:38.593075pt;}
._34{width:40.423201pt;}
._2f{width:42.698201pt;}
._2{width:45.910029pt;}
._27{width:61.107002pt;}
._16{width:65.906632pt;}
._10{width:71.734787pt;}
._d{width:86.081504pt;}
._24{width:105.329555pt;}
._21{width:112.412652pt;}
._19{width:117.831652pt;}
._20{width:137.695030pt;}
._17{width:165.904255pt;}
._18{width:173.922566pt;}
._25{width:235.014524pt;}
._14{width:258.882543pt;}
._15{width:262.570218pt;}
._22{width:278.673769pt;}
._2d{width:357.997099pt;}
._1c{width:371.710497pt;}
._2a{width:384.565361pt;}
._2b{width:444.932646pt;}
._2c{width:504.710034pt;}
._1e{width:520.373625pt;}
._1b{width:537.690790pt;}
._2e{width:616.886309pt;}
.fs3{font-size:31.882127pt;}
.fs8{font-size:37.195460pt;}
.fs2{font-size:42.509325pt;}
.fs4{font-size:47.823191pt;}
.fs5{font-size:53.136523pt;}
.fs7{font-size:58.181867pt;}
.fs1{font-size:63.764255pt;}
.fs6{font-size:76.516892pt;}
.fs0{font-size:91.820057pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:20.213333pt;}
.yf2{bottom:98.150915pt;}
.yc5{bottom:102.987156pt;}
.y4e{bottom:105.311273pt;}
.yac{bottom:106.128647pt;}
.yf1{bottom:114.093045pt;}
.yc4{bottom:118.927953pt;}
.y5f{bottom:127.701725pt;}
.y4d{bottom:131.879268pt;}
.y98{bottom:132.252620pt;}
.yab{bottom:132.696642pt;}
.yc3{bottom:134.868750pt;}
.yf0{bottom:140.661040pt;}
.y5e{bottom:143.642522pt;}
.y97{bottom:148.193417pt;}
.y82{bottom:154.291055pt;}
.y78{bottom:156.895185pt;}
.y4c{bottom:158.447263pt;}
.yaa{bottom:159.264637pt;}
.yc2{bottom:161.438079pt;}
.y96{bottom:164.134214pt;}
.yef{bottom:167.229035pt;}
.y77{bottom:172.835982pt;}
.y4b{bottom:174.388060pt;}
.y5d{bottom:174.525400pt;}
.y26{bottom:175.657456pt;}
.yc1{bottom:177.378876pt;}
.yee{bottom:183.169832pt;}
.ya9{bottom:185.833965pt;}
.y95{bottom:188.655440pt;}
.y4a{bottom:190.330190pt;}
.y25{bottom:191.598253pt;}
.yc0{bottom:193.319673pt;}
.y76{bottom:197.355875pt;}
.yed{bottom:199.110629pt;}
.y49{bottom:206.270987pt;}
.ya8{bottom:212.401960pt;}
.y24{bottom:218.166248pt;}
.y5c{bottom:218.454263pt;}
.ybf{bottom:219.887668pt;}
.yec{bottom:225.679957pt;}
.y94{bottom:225.841299pt;}
.y48{bottom:230.790880pt;}
.y5b{bottom:234.396393pt;}
.y75{bottom:234.543067pt;}
.ybe{bottom:235.829798pt;}
.ya7{bottom:238.969955pt;}
.yeb{bottom:241.620754pt;}
.y93{bottom:241.782096pt;}
.y23{bottom:244.734243pt;}
.y5a{bottom:250.337190pt;}
.y74{bottom:250.483864pt;}
.y81{bottom:251.461246pt;}
.ybd{bottom:251.770595pt;}
.yea{bottom:257.561551pt;}
.ya6{bottom:265.539284pt;}
.y59{bottom:266.277987pt;}
.y80{bottom:267.402043pt;}
.ybc{bottom:267.711392pt;}
.y47{bottom:267.978072pt;}
.y22{bottom:271.303572pt;}
.y92{bottom:273.665023pt;}
.y73{bottom:275.003757pt;}
.ya5{bottom:281.480081pt;}
.y7f{bottom:283.342840pt;}
.y46{bottom:283.918869pt;}
.ye9{bottom:284.129546pt;}
.ybb{bottom:294.279387pt;}
.y21{bottom:297.871567pt;}
.ye8{bottom:300.071677pt;}
.y7e{bottom:307.862733pt;}
.ya4{bottom:308.048076pt;}
.yba{bottom:310.220184pt;}
.y72{bottom:312.190949pt;}
.y20{bottom:313.812364pt;}
.ye7{bottom:316.012474pt;}
.y57{bottom:318.085911pt;}
.y45{bottom:318.531266pt;}
.y58{bottom:318.613937pt;}
.y56{bottom:322.071443pt;}
.yb9{bottom:326.162315pt;}
.y71{bottom:328.131746pt;}
.y44{bottom:334.472063pt;}
.ya3{bottom:334.616071pt;}
.y1f{bottom:338.332256pt;}
.yb8{bottom:342.103112pt;}
.ye6{bottom:342.580469pt;}
.y70{bottom:344.072543pt;}
.y7d{bottom:345.049926pt;}
.y43{bottom:350.412860pt;}
.ye5{bottom:358.521266pt;}
.y7c{bottom:360.990723pt;}
.ya2{bottom:361.185399pt;}
.y42{bottom:366.353657pt;}
.y6f{bottom:368.592436pt;}
.yb7{bottom:368.671107pt;}
.y1e{bottom:375.519449pt;}
.y55{bottom:377.864900pt;}
.y41{bottom:382.295788pt;}
.yb6{bottom:384.611904pt;}
.ye4{bottom:385.089261pt;}
.ya1{bottom:387.753394pt;}
.y1d{bottom:391.460246pt;}
.y7b{bottom:391.872267pt;}
.y54{bottom:393.805697pt;}
.y40{bottom:398.236585pt;}
.ye3{bottom:401.031391pt;}
.y6e{bottom:403.122162pt;}
.ya0{bottom:403.694191pt;}
.y1c{bottom:407.401043pt;}
.y53{bottom:409.747827pt;}
.yb5{bottom:411.179899pt;}
.y3f{bottom:414.177382pt;}
.ye2{bottom:416.972188pt;}
.y9f{bottom:419.634988pt;}
.y6d{bottom:427.643388pt;}
.y3e{bottom:430.650205pt;}
.y1b{bottom:431.922269pt;}
.y52{bottom:436.315822pt;}
.yb4{bottom:437.749227pt;}
.y7a{bottom:437.762561pt;}
.ye1{bottom:443.540183pt;}
.y3d{bottom:446.989689pt;}
.y9e{bottom:450.517865pt;}
.ye0{bottom:459.480980pt;}
.y6c{bottom:462.171781pt;}
.y51{bottom:462.883817pt;}
.yb3{bottom:464.317222pt;}
.y1a{bottom:469.108128pt;}
.y19{bottom:485.048925pt;}
.ydf{bottom:486.050309pt;}
.y6b{bottom:486.693007pt;}
.y3c{bottom:488.761111pt;}
.y50{bottom:489.451812pt;}
.yb2{bottom:490.885217pt;}
.y9d{bottom:494.446728pt;}
.yde{bottom:501.991106pt;}
.y18{bottom:509.568818pt;}
.y9c{bottom:510.388859pt;}
.y3b{bottom:515.329106pt;}
.y91{bottom:523.465513pt;}
.ydd{bottom:528.559101pt;}
.y6a{bottom:531.859266pt;}
.y4f{bottom:531.888600pt;}
.yb1{bottom:533.320672pt;}
.y9b{bottom:534.908751pt;}
.y3a{bottom:541.897101pt;}
.y17{bottom:544.245218pt;}
.ydc{bottom:544.499898pt;}
.y69{bottom:547.800063pt;}
.y68{bottom:564.272886pt;}
.y39{bottom:568.465096pt;}
.ydb{bottom:571.067893pt;}
.y9a{bottom:577.344206pt;}
.y67{bottom:580.213683pt;}
.yda{bottom:587.010023pt;}
.y16{bottom:588.175415pt;}
.y38{bottom:595.034424pt;}
.y66{bottom:596.686507pt;}
.y15{bottom:604.116212pt;}
.y37{bottom:610.975221pt;}
.y65{bottom:612.627304pt;}
.yd9{bottom:613.578018pt;}
.y14{bottom:628.026740pt;}
.y64{bottom:629.098794pt;}
.yd8{bottom:629.518815pt;}
.y36{bottom:635.495114pt;}
.y13{bottom:642.639471pt;}
.y63{bottom:645.040924pt;}
.yd7{bottom:656.086810pt;}
.y12{bottom:657.252202pt;}
.y62{bottom:661.512415pt;}
.y11{bottom:671.864932pt;}
.yd6{bottom:672.028940pt;}
.y35{bottom:672.682306pt;}
.y61{bottom:677.114528pt;}
.y10{bottom:686.477663pt;}
.yd5{bottom:687.969737pt;}
.yf{bottom:701.090393pt;}
.y34{bottom:703.563850pt;}
.yd4{bottom:714.537732pt;}
.ye{bottom:715.703124pt;}
.y60{bottom:718.147246pt;}
.y79{bottom:718.151246pt;}
.yd{bottom:730.315855pt;}
.yd3{bottom:730.478529pt;}
.yc{bottom:744.928585pt;}
.y33{bottom:747.494047pt;}
.yd2{bottom:757.046524pt;}
.y90{bottom:757.331872pt;}
.yb{bottom:759.541316pt;}
.y32{bottom:763.434844pt;}
.yd1{bottom:772.988655pt;}
.y8f{bottom:773.272669pt;}
.ya{bottom:774.154046pt;}
.y31{bottom:779.375641pt;}
.y9{bottom:788.765444pt;}
.yd0{bottom:788.929452pt;}
.y8e{bottom:789.213466pt;}
.y8{bottom:803.378174pt;}
.y30{bottom:803.896867pt;}
.y99{bottom:811.203899pt;}
.y8d{bottom:813.733359pt;}
.y7{bottom:817.990905pt;}
.ycf{bottom:820.549699pt;}
.y6{bottom:838.814613pt;}
.y2f{bottom:841.082726pt;}
.y2e{bottom:857.023523pt;}
.y8c{bottom:858.899617pt;}
.yce{bottom:864.479896pt;}
.y5{bottom:873.777694pt;}
.y8b{bottom:874.840414pt;}
.ycd{bottom:880.420693pt;}
.y2d{bottom:881.544749pt;}
.y8a{bottom:890.782544pt;}
.y4{bottom:893.469345pt;}
.ycc{bottom:896.361490pt;}
.y89{bottom:906.723341pt;}
.y3{bottom:916.287819pt;}
.y2c{bottom:918.730608pt;}
.y88{bottom:922.664138pt;}
.ycb{bottom:922.929485pt;}
.y2b{bottom:934.671405pt;}
.y87{bottom:938.604935pt;}
.yca{bottom:938.870282pt;}
.y2{bottom:941.527748pt;}
.y2a{bottom:950.612202pt;}
.y86{bottom:954.545732pt;}
.yc9{bottom:954.812412pt;}
.yb0{bottom:956.021806pt;}
.y85{bottom:970.486529pt;}
.y1{bottom:970.753209pt;}
.yaf{bottom:972.494630pt;}
.y29{bottom:975.133428pt;}
.yc8{bottom:981.380407pt;}
.y84{bottom:986.959353pt;}
.yae{bottom:988.095410pt;}
.yc7{bottom:997.321204pt;}
.y83{bottom:1003.298836pt;}
.yad{bottom:1004.037540pt;}
.y28{bottom:1009.808495pt;}
.yc6{bottom:1013.262001pt;}
.h4{height:21.201615pt;}
.h6{height:33.476234pt;}
.h5{height:35.867393pt;}
.h7{height:39.852393pt;}
.ha{height:41.021396pt;}
.hb{height:43.636400pt;}
.h9{height:47.823191pt;}
.h3{height:51.405858pt;}
.hc{height:52.529651pt;}
.he{height:53.682417pt;}
.h8{height:57.387669pt;}
.hd{height:61.036743pt;}
.h2{height:68.865043pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:95.987999pt;}
.x1e{left:102.629665pt;}
.x13{left:104.489758pt;}
.xc{left:112.224811pt;}
.x9{left:115.914329pt;}
.x19{left:120.283881pt;}
.x2{left:121.853292pt;}
.x1{left:122.836008pt;}
.x4{left:127.074887pt;}
.x8{left:129.198993pt;}
.x16{left:140.782239pt;}
.x7{left:147.630581pt;}
.x17{left:154.213577pt;}
.xe{left:168.292948pt;}
.x1b{left:172.774505pt;}
.x1a{left:174.619931pt;}
.x1d{left:209.425671pt;}
.x3{left:220.196876pt;}
.x18{left:222.350317pt;}
.x1c{left:226.450522pt;}
.x5{left:239.900528pt;}
.xd{left:251.373101pt;}
.x12{left:257.110722pt;}
.x10{left:297.020717pt;}
.xf{left:304.842441pt;}
.x15{left:319.535176pt;}
.x11{left:336.097337pt;}
.x6{left:369.793689pt;}
.xb{left:385.941333pt;}
.x14{left:534.579261pt;}
}




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