
    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_4fcdcc390e7a762f5d803d79.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_b3da918f51f1fe717915a856.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_deb3f9a123d15b577e5a6033.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_f584c77d49a744b4a4b45025.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_eda003a017f2ce82e4701cd4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_1b3ac940653bcff27cb47474.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_69f2aeb34da478f1b6d63c98.woff')format("woff");}.ffb{font-family:ffb;line-height:0.995605;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_5b6cea255aaebe169a131937.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_bf12a7ab7659ab28814f96b5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.892578;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffe{font-family:ffe;line-height:1.035156;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_72a94bead9271bbf45ced0f1.woff')format("woff");}.fff{font-family:fff;line-height:0.976562;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff10{font-family:ff10;line-height:1.003906;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_06dd51ba975d52a8e9b6c887.woff')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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_bc99af8b613fbf3daebc8e2d.woff')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.483600px;}
.ls16{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.420600px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.078000px;}
.ls14{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.152400px;}
.ls15{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.828000px;}
.lse{letter-spacing:12.240000px;}
.lsd{letter-spacing:22.320000px;}
.ls7{letter-spacing:40.625280px;}
.lsf{letter-spacing:40.769280px;}
.ls11{letter-spacing:46.546560px;}
.ls13{letter-spacing:46.690560px;}
.ls8{letter-spacing:59.465280px;}
.ls6{letter-spacing:59.489280px;}
.ls10{letter-spacing:63.946560px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-83.520000px;}
.ws9{word-spacing:-66.240000px;}
.ws4{word-spacing:-60.480000px;}
.ws8{word-spacing:-23.549640px;}
.ws0{word-spacing:-19.010880px;}
.ws7{word-spacing:-17.890800px;}
.wsa{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.416000px;}
.wse{word-spacing:-16.102200px;}
.wsc{word-spacing:-15.948000px;}
.wsd{word-spacing:-15.120000px;}
.ws2{word-spacing:-14.650800px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-3.163200px;}
._2{margin-left:-1.722240px;}
._0{width:1.085760px;}
._1{width:2.589120px;}
._6{width:4.438080px;}
._7{width:5.696640px;}
._8{width:7.368960px;}
._e{width:8.501760px;}
._b{width:10.201920px;}
._a{width:12.243360px;}
._12{width:13.291680px;}
._f{width:14.316480px;}
._17{width:15.333120px;}
._11{width:18.216000px;}
._c{width:19.805760px;}
._d{width:21.263040px;}
._10{width:22.335360px;}
._4{width:23.515200px;}
._3{width:25.104960px;}
._5{width:26.726400px;}
._2e{width:27.840960px;}
._1e{width:29.516160px;}
._1f{width:31.235520px;}
._26{width:32.731200px;}
._2d{width:34.085760px;}
._46{width:35.291520px;}
._1b{width:36.450240px;}
._35{width:37.518720px;}
._13{width:38.882880px;}
._14{width:40.705440px;}
._28{width:41.885760px;}
._33{width:43.247040px;}
._27{width:44.512800px;}
._29{width:45.587520px;}
._3a{width:46.872000px;}
._1c{width:47.926080px;}
._37{width:49.654080px;}
._25{width:52.940160px;}
._24{width:54.719520px;}
._31{width:55.728000px;}
._30{width:57.007680px;}
._3d{width:58.530240px;}
._2b{width:60.425280px;}
._2c{width:61.787520px;}
._2a{width:62.795520px;}
._19{width:64.491840px;}
._18{width:65.908800px;}
._1a{width:67.191360px;}
._36{width:69.246720px;}
._32{width:70.339680px;}
._15{width:71.833440px;}
._16{width:73.725120px;}
._40{width:75.728640px;}
._3f{width:76.970880px;}
._3e{width:78.940800px;}
._42{width:81.679680px;}
._2f{width:90.881280px;}
._38{width:94.888320px;}
._39{width:95.915520px;}
._41{width:97.946880px;}
._3c{width:119.820480px;}
._3b{width:122.832000px;}
._1d{width:137.929920px;}
._22{width:154.875840px;}
._34{width:166.527360px;}
._44{width:170.873280px;}
._45{width:173.109120px;}
._43{width:186.435840px;}
._20{width:190.783200px;}
._21{width:197.745600px;}
._23{width:240.774720px;}
._47{width:847.896000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs5{font-size:24.480000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fs8{font-size:93.600000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y1a{bottom:1.425000px;}
.y13{bottom:2.160000px;}
.y3{bottom:3.600000px;}
.yb{bottom:6.480000px;}
.y9f{bottom:6.825000px;}
.y9{bottom:6.840000px;}
.ya3{bottom:7.185000px;}
.yc{bottom:7.200000px;}
.y11{bottom:7.920000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.yc0{bottom:9.360000px;}
.yc4{bottom:9.720000px;}
.yb5{bottom:10.080000px;}
.yb7{bottom:10.440000px;}
.y9e{bottom:17.655000px;}
.y17{bottom:26.625000px;}
.y9d{bottom:28.815000px;}
.y5{bottom:33.120000px;}
.y10{bottom:33.840000px;}
.y16{bottom:47.895000px;}
.y1{bottom:51.120000px;}
.y15{bottom:70.575000px;}
.y41{bottom:75.240000px;}
.yc7{bottom:115.596000px;}
.y3d{bottom:118.116000px;}
.yb2{bottom:123.516000px;}
.yc6{bottom:136.476000px;}
.y3c{bottom:142.596000px;}
.ydb{bottom:154.110000px;}
.y92{bottom:156.270000px;}
.yee{bottom:158.790000px;}
.y3b{bottom:167.430000px;}
.y6a{bottom:177.510000px;}
.yda{bottom:178.590000px;}
.y91{bottom:181.110000px;}
.yed{bottom:183.630000px;}
.y3a{bottom:191.910000px;}
.y69{bottom:202.395000px;}
.yd9{bottom:203.475000px;}
.y90{bottom:205.995000px;}
.yec{bottom:208.155000px;}
.y39{bottom:216.795000px;}
.y68{bottom:226.875000px;}
.yd8{bottom:227.955000px;}
.y8f{bottom:230.475000px;}
.yeb{bottom:232.995000px;}
.y38{bottom:241.275000px;}
.y67{bottom:251.715000px;}
.yd7{bottom:252.795000px;}
.y8e{bottom:255.315000px;}
.yea{bottom:257.115000px;}
.y37{bottom:266.115000px;}
.y66{bottom:276.195000px;}
.yd6{bottom:277.275000px;}
.y8d{bottom:280.875000px;}
.ye9{bottom:281.955000px;}
.y36{bottom:290.595000px;}
.y65{bottom:301.035000px;}
.yd5{bottom:302.115000px;}
.y8c{bottom:305.715000px;}
.ye8{bottom:306.795000px;}
.y35{bottom:315.435000px;}
.y64{bottom:325.905000px;}
.yd4{bottom:326.985000px;}
.y8b{bottom:330.225000px;}
.yb1{bottom:331.305000px;}
.ye7{bottom:331.665000px;}
.y34{bottom:339.945000px;}
.yb0{bottom:347.865000px;}
.y63{bottom:351.465000px;}
.y8a{bottom:355.065000px;}
.ye6{bottom:356.145000px;}
.y33{bottom:364.785000px;}
.yaf{bottom:371.265000px;}
.y62{bottom:376.305000px;}
.y89{bottom:379.545000px;}
.ye5{bottom:380.985000px;}
.y32{bottom:389.265000px;}
.yae{bottom:394.665000px;}
.y61{bottom:400.785000px;}
.y88{bottom:404.385000px;}
.ye4{bottom:405.465000px;}
.yc5{bottom:405.825000px;}
.y31{bottom:414.105000px;}
.yad{bottom:418.065000px;}
.yd3{bottom:425.265000px;}
.y60{bottom:425.625000px;}
.y87{bottom:429.225000px;}
.ye3{bottom:430.305000px;}
.yc3{bottom:432.105000px;}
.y30{bottom:438.945000px;}
.yac{bottom:441.105000px;}
.yd2{bottom:449.745000px;}
.y5f{bottom:450.105000px;}
.y86{bottom:454.470000px;}
.ye2{bottom:454.830000px;}
.yc2{bottom:458.070000px;}
.y2f{bottom:463.110000px;}
.y3e{bottom:463.470000px;}
.yab{bottom:474.270000px;}
.y5e{bottom:474.990000px;}
.y85{bottom:479.670000px;}
.yc1{bottom:484.350000px;}
.y2e{bottom:487.950000px;}
.yaa{bottom:499.110000px;}
.y5d{bottom:499.470000px;}
.y84{bottom:504.150000px;}
.ybf{bottom:510.630000px;}
.y2d{bottom:511.710000px;}
.ya9{bottom:523.950000px;}
.yd1{bottom:524.310000px;}
.y5c{bottom:525.390000px;}
.y83{bottom:528.990000px;}
.y2c{bottom:533.670000px;}
.ybe{bottom:546.270000px;}
.ya8{bottom:548.430000px;}
.yd0{bottom:548.790000px;}
.y5b{bottom:549.870000px;}
.y82{bottom:553.470000px;}
.y2b{bottom:560.310000px;}
.ybd{bottom:571.110000px;}
.ya7{bottom:573.270000px;}
.y5a{bottom:574.710000px;}
.y81{bottom:578.340000px;}
.y2a{bottom:582.300000px;}
.ybc{bottom:595.980000px;}
.ya6{bottom:597.780000px;}
.y59{bottom:599.220000px;}
.y80{bottom:602.820000px;}
.y29{bottom:603.900000px;}
.ya5{bottom:618.300000px;}
.ybb{bottom:620.820000px;}
.y58{bottom:624.060000px;}
.y28{bottom:625.860000px;}
.y7f{bottom:627.300000px;}
.ye1{bottom:627.660000px;}
.yba{bottom:641.340000px;}
.y27{bottom:647.820000px;}
.y57{bottom:648.540000px;}
.y7e{bottom:651.780000px;}
.ye0{bottom:652.140000px;}
.y26{bottom:669.420000px;}
.ycf{bottom:673.380000px;}
.y56{bottom:674.460000px;}
.ydf{bottom:676.620000px;}
.y7d{bottom:676.980000px;}
.y25{bottom:691.380000px;}
.y55{bottom:699.300000px;}
.yde{bottom:701.130000px;}
.y7c{bottom:701.490000px;}
.y24{bottom:713.010000px;}
.y54{bottom:723.810000px;}
.yef{bottom:725.970000px;}
.y7b{bottom:726.330000px;}
.y23{bottom:734.970000px;}
.y53{bottom:748.650000px;}
.y7a{bottom:750.810000px;}
.y22{bottom:756.930000px;}
.y52{bottom:773.130000px;}
.yce{bottom:773.490000px;}
.y79{bottom:775.650000px;}
.y21{bottom:778.530000px;}
.y51{bottom:797.970000px;}
.ycd{bottom:799.050000px;}
.y78{bottom:800.130000px;}
.y20{bottom:800.490000px;}
.y1f{bottom:822.090000px;}
.y50{bottom:822.450000px;}
.ycc{bottom:823.890000px;}
.y77{bottom:824.970000px;}
.y1e{bottom:844.095000px;}
.y4f{bottom:847.335000px;}
.ycb{bottom:848.415000px;}
.y76{bottom:849.495000px;}
.ya4{bottom:855.255000px;}
.y1d{bottom:866.055000px;}
.ya2{bottom:871.470000px;}
.y4e{bottom:871.815000px;}
.yca{bottom:873.255000px;}
.ydd{bottom:873.975000px;}
.y75{bottom:874.335000px;}
.y1c{bottom:887.295000px;}
.ya1{bottom:894.870000px;}
.y4d{bottom:897.735000px;}
.ydc{bottom:898.815000px;}
.y74{bottom:899.175000px;}
.y1b{bottom:906.735000px;}
.y19{bottom:915.030000px;}
.ya0{bottom:918.270000px;}
.y14{bottom:922.230000px;}
.y4c{bottom:922.575000px;}
.y73{bottom:923.655000px;}
.y18{bottom:926.396347px;}
.yb9{bottom:939.495000px;}
.y9c{bottom:941.310000px;}
.y4b{bottom:947.055000px;}
.yc9{bottom:948.135000px;}
.y72{bottom:948.495000px;}
.yb8{bottom:956.085000px;}
.y4a{bottom:971.925000px;}
.yc8{bottom:972.645000px;}
.y71{bottom:973.005000px;}
.yb6{bottom:983.085000px;}
.y9b{bottom:996.045000px;}
.y49{bottom:996.405000px;}
.y70{bottom:997.845000px;}
.yb4{bottom:1010.085000px;}
.y12{bottom:1018.365000px;}
.y9a{bottom:1020.885000px;}
.y48{bottom:1021.245000px;}
.y6f{bottom:1022.325000px;}
.yf{bottom:1024.845000px;}
.y99{bottom:1045.365000px;}
.y47{bottom:1045.725000px;}
.yb3{bottom:1046.805000px;}
.y6e{bottom:1047.165000px;}
.y97{bottom:1070.565000px;}
.y6d{bottom:1071.285000px;}
.y46{bottom:1071.645000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.y96{bottom:1095.090000px;}
.y6c{bottom:1096.170000px;}
.y45{bottom:1096.530000px;}
.y2{bottom:1106.250000px;}
.y95{bottom:1119.930000px;}
.y44{bottom:1121.010000px;}
.y7{bottom:1128.570000px;}
.y94{bottom:1144.410000px;}
.y43{bottom:1145.850000px;}
.y4{bottom:1156.650000px;}
.y93{bottom:1168.890000px;}
.y98{bottom:1169.250000px;}
.y42{bottom:1169.970000px;}
.y6b{bottom:1170.330000px;}
.y40{bottom:1187.250000px;}
.y3f{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.857187px;}
.h17{height:18.120938px;}
.h11{height:19.584000px;}
.h20{height:21.585000px;}
.h21{height:21.945000px;}
.h22{height:21.990000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h24{height:24.465000px;}
.h26{height:24.510000px;}
.h25{height:24.825000px;}
.h23{height:25.545000px;}
.h7{height:28.065000px;}
.h1c{height:30.480469px;}
.h18{height:36.861328px;}
.h1f{height:43.920000px;}
.h27{height:46.251562px;}
.he{height:51.870000px;}
.h5{height:52.950000px;}
.h9{height:56.084062px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h15{height:63.984375px;}
.h19{height:64.978594px;}
.h1b{height:65.010937px;}
.h1d{height:65.884219px;}
.h1a{height:66.757500px;}
.h14{height:67.803750px;}
.h1e{height:68.084282px;}
.h6{height:70.714687px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h12{height:96.120000px;}
.h3{height:103.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:67.701000px;}
.w12{width:69.150000px;}
.w11{width:71.265000px;}
.wc{width:79.560000px;}
.w18{width:88.581000px;}
.wd{width:94.350000px;}
.w13{width:99.756000px;}
.w15{width:99.765000px;}
.wa{width:103.356000px;}
.w9{width:105.150000px;}
.w14{width:106.941000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w17{width:122.436000px;}
.wf{width:136.152000px;}
.w16{width:171.075000px;}
.w10{width:179.325000px;}
.w8{width:199.530000px;}
.we{width:215.355000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.186500px;}
.x18{left:8.266500px;}
.x5{left:11.145000px;}
.x10{left:20.520000px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x12{left:51.505500px;}
.x9{left:53.295000px;}
.x2{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.xd{left:96.150000px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x1d{left:113.076000px;}
.x20{left:118.129500px;}
.x2b{left:130.009500px;}
.x1c{left:135.072000px;}
.x15{left:140.455500px;}
.x19{left:162.075000px;}
.x4{left:168.930000px;}
.x13{left:182.215500px;}
.x16{left:189.055500px;}
.x6{left:208.860000px;}
.x14{left:249.940500px;}
.x32{left:254.265000px;}
.x28{left:270.105000px;}
.x2c{left:310.830000px;}
.x22{left:319.110000px;}
.x17{left:325.030998px;}
.x11{left:335.650500px;}
.x2d{left:383.550000px;}
.x23{left:425.700000px;}
.x33{left:426.780000px;}
.xa{left:445.860000px;}
.x2e{left:454.140000px;}
.x1a{left:473.580000px;}
.x1e{left:478.620000px;}
.x29{left:486.900000px;}
.x1f{left:505.650000px;}
.x1b{left:527.610000px;}
.x24{left:530.505000px;}
.x34{left:550.665000px;}
.x2f{left:555.345000px;}
.x25{left:600.030000px;}
.x35{left:649.335000px;}
.x2a{left:662.655000px;}
.x30{left:663.750000px;}
.x27{left:671.685000px;}
.x26{left:681.045000px;}
.x31{left:704.085000px;}
.x7{left:722.445000px;}
.x1{left:761.370000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.429867pt;}
.ls16{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.373867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.069333pt;}
.ls14{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.135467pt;}
.ls15{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.736000pt;}
.lse{letter-spacing:10.880000pt;}
.lsd{letter-spacing:19.840000pt;}
.ls7{letter-spacing:36.111360pt;}
.lsf{letter-spacing:36.239360pt;}
.ls11{letter-spacing:41.374720pt;}
.ls13{letter-spacing:41.502720pt;}
.ls8{letter-spacing:52.858027pt;}
.ls6{letter-spacing:52.879360pt;}
.ls10{letter-spacing:56.841387pt;}
.ws1{word-spacing:-74.240000pt;}
.ws9{word-spacing:-58.880000pt;}
.ws4{word-spacing:-53.760000pt;}
.ws8{word-spacing:-20.933013pt;}
.ws0{word-spacing:-16.898560pt;}
.ws7{word-spacing:-15.902933pt;}
.wsa{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.592000pt;}
.wse{word-spacing:-14.313067pt;}
.wsc{word-spacing:-14.176000pt;}
.wsd{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.022933pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-2.811733pt;}
._2{margin-left:-1.530880pt;}
._0{width:0.965120pt;}
._1{width:2.301440pt;}
._6{width:3.944960pt;}
._7{width:5.063680pt;}
._8{width:6.550187pt;}
._e{width:7.557120pt;}
._b{width:9.068373pt;}
._a{width:10.882987pt;}
._12{width:11.814827pt;}
._f{width:12.725760pt;}
._17{width:13.629440pt;}
._11{width:16.192000pt;}
._c{width:17.605120pt;}
._d{width:18.900480pt;}
._10{width:19.853653pt;}
._4{width:20.902400pt;}
._3{width:22.315520pt;}
._5{width:23.756800pt;}
._2e{width:24.747520pt;}
._1e{width:26.236587pt;}
._1f{width:27.764907pt;}
._26{width:29.094400pt;}
._2d{width:30.298453pt;}
._46{width:31.370240pt;}
._1b{width:32.400213pt;}
._35{width:33.349973pt;}
._13{width:34.562560pt;}
._14{width:36.182613pt;}
._28{width:37.231787pt;}
._33{width:38.441813pt;}
._27{width:39.566933pt;}
._29{width:40.522240pt;}
._3a{width:41.664000pt;}
._1c{width:42.600960pt;}
._37{width:44.136960pt;}
._25{width:47.057920pt;}
._24{width:48.639573pt;}
._31{width:49.536000pt;}
._30{width:50.673493pt;}
._3d{width:52.026880pt;}
._2b{width:53.711360pt;}
._2c{width:54.922240pt;}
._2a{width:55.818240pt;}
._19{width:57.326080pt;}
._18{width:58.585600pt;}
._1a{width:59.725653pt;}
._36{width:61.552640pt;}
._32{width:62.524160pt;}
._15{width:63.851947pt;}
._16{width:65.533440pt;}
._40{width:67.314347pt;}
._3f{width:68.418560pt;}
._3e{width:70.169600pt;}
._42{width:72.604160pt;}
._2f{width:80.783360pt;}
._38{width:84.345173pt;}
._39{width:85.258240pt;}
._41{width:87.063893pt;}
._3c{width:106.507093pt;}
._3b{width:109.184000pt;}
._1d{width:122.604373pt;}
._22{width:137.667413pt;}
._34{width:148.024320pt;}
._44{width:151.887360pt;}
._45{width:153.874773pt;}
._43{width:165.720747pt;}
._20{width:169.585067pt;}
._21{width:175.773867pt;}
._23{width:214.021973pt;}
._47{width:753.685333pt;}
.fs4{font-size:16.640000pt;}
.fs5{font-size:21.760000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fs8{font-size:83.200000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y1a{bottom:1.266667pt;}
.y13{bottom:1.920000pt;}
.y3{bottom:3.200000pt;}
.yb{bottom:5.760000pt;}
.y9f{bottom:6.066667pt;}
.y9{bottom:6.080000pt;}
.ya3{bottom:6.386667pt;}
.yc{bottom:6.400000pt;}
.y11{bottom:7.040000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.yc0{bottom:8.320000pt;}
.yc4{bottom:8.640000pt;}
.yb5{bottom:8.960000pt;}
.yb7{bottom:9.280000pt;}
.y9e{bottom:15.693333pt;}
.y17{bottom:23.666667pt;}
.y9d{bottom:25.613333pt;}
.y5{bottom:29.440000pt;}
.y10{bottom:30.080000pt;}
.y16{bottom:42.573333pt;}
.y1{bottom:45.440000pt;}
.y15{bottom:62.733333pt;}
.y41{bottom:66.880000pt;}
.yc7{bottom:102.752000pt;}
.y3d{bottom:104.992000pt;}
.yb2{bottom:109.792000pt;}
.yc6{bottom:121.312000pt;}
.y3c{bottom:126.752000pt;}
.ydb{bottom:136.986667pt;}
.y92{bottom:138.906667pt;}
.yee{bottom:141.146667pt;}
.y3b{bottom:148.826667pt;}
.y6a{bottom:157.786667pt;}
.yda{bottom:158.746667pt;}
.y91{bottom:160.986667pt;}
.yed{bottom:163.226667pt;}
.y3a{bottom:170.586667pt;}
.y69{bottom:179.906667pt;}
.yd9{bottom:180.866667pt;}
.y90{bottom:183.106667pt;}
.yec{bottom:185.026667pt;}
.y39{bottom:192.706667pt;}
.y68{bottom:201.666667pt;}
.yd8{bottom:202.626667pt;}
.y8f{bottom:204.866667pt;}
.yeb{bottom:207.106667pt;}
.y38{bottom:214.466667pt;}
.y67{bottom:223.746667pt;}
.yd7{bottom:224.706667pt;}
.y8e{bottom:226.946667pt;}
.yea{bottom:228.546667pt;}
.y37{bottom:236.546667pt;}
.y66{bottom:245.506667pt;}
.yd6{bottom:246.466667pt;}
.y8d{bottom:249.666667pt;}
.ye9{bottom:250.626667pt;}
.y36{bottom:258.306667pt;}
.y65{bottom:267.586667pt;}
.yd5{bottom:268.546667pt;}
.y8c{bottom:271.746667pt;}
.ye8{bottom:272.706667pt;}
.y35{bottom:280.386667pt;}
.y64{bottom:289.693333pt;}
.yd4{bottom:290.653333pt;}
.y8b{bottom:293.533333pt;}
.yb1{bottom:294.493333pt;}
.ye7{bottom:294.813333pt;}
.y34{bottom:302.173333pt;}
.yb0{bottom:309.213333pt;}
.y63{bottom:312.413333pt;}
.y8a{bottom:315.613333pt;}
.ye6{bottom:316.573333pt;}
.y33{bottom:324.253333pt;}
.yaf{bottom:330.013333pt;}
.y62{bottom:334.493333pt;}
.y89{bottom:337.373333pt;}
.ye5{bottom:338.653333pt;}
.y32{bottom:346.013333pt;}
.yae{bottom:350.813333pt;}
.y61{bottom:356.253333pt;}
.y88{bottom:359.453333pt;}
.ye4{bottom:360.413333pt;}
.yc5{bottom:360.733333pt;}
.y31{bottom:368.093333pt;}
.yad{bottom:371.613333pt;}
.yd3{bottom:378.013333pt;}
.y60{bottom:378.333333pt;}
.y87{bottom:381.533333pt;}
.ye3{bottom:382.493333pt;}
.yc3{bottom:384.093333pt;}
.y30{bottom:390.173333pt;}
.yac{bottom:392.093333pt;}
.yd2{bottom:399.773333pt;}
.y5f{bottom:400.093333pt;}
.y86{bottom:403.973333pt;}
.ye2{bottom:404.293333pt;}
.yc2{bottom:407.173333pt;}
.y2f{bottom:411.653333pt;}
.y3e{bottom:411.973333pt;}
.yab{bottom:421.573333pt;}
.y5e{bottom:422.213333pt;}
.y85{bottom:426.373333pt;}
.yc1{bottom:430.533333pt;}
.y2e{bottom:433.733333pt;}
.yaa{bottom:443.653333pt;}
.y5d{bottom:443.973333pt;}
.y84{bottom:448.133333pt;}
.ybf{bottom:453.893333pt;}
.y2d{bottom:454.853333pt;}
.ya9{bottom:465.733333pt;}
.yd1{bottom:466.053333pt;}
.y5c{bottom:467.013333pt;}
.y83{bottom:470.213333pt;}
.y2c{bottom:474.373333pt;}
.ybe{bottom:485.573333pt;}
.ya8{bottom:487.493333pt;}
.yd0{bottom:487.813333pt;}
.y5b{bottom:488.773333pt;}
.y82{bottom:491.973333pt;}
.y2b{bottom:498.053333pt;}
.ybd{bottom:507.653333pt;}
.ya7{bottom:509.573333pt;}
.y5a{bottom:510.853333pt;}
.y81{bottom:514.080000pt;}
.y2a{bottom:517.600000pt;}
.ybc{bottom:529.760000pt;}
.ya6{bottom:531.360000pt;}
.y59{bottom:532.640000pt;}
.y80{bottom:535.840000pt;}
.y29{bottom:536.800000pt;}
.ya5{bottom:549.600000pt;}
.ybb{bottom:551.840000pt;}
.y58{bottom:554.720000pt;}
.y28{bottom:556.320000pt;}
.y7f{bottom:557.600000pt;}
.ye1{bottom:557.920000pt;}
.yba{bottom:570.080000pt;}
.y27{bottom:575.840000pt;}
.y57{bottom:576.480000pt;}
.y7e{bottom:579.360000pt;}
.ye0{bottom:579.680000pt;}
.y26{bottom:595.040000pt;}
.ycf{bottom:598.560000pt;}
.y56{bottom:599.520000pt;}
.ydf{bottom:601.440000pt;}
.y7d{bottom:601.760000pt;}
.y25{bottom:614.560000pt;}
.y55{bottom:621.600000pt;}
.yde{bottom:623.226667pt;}
.y7c{bottom:623.546667pt;}
.y24{bottom:633.786667pt;}
.y54{bottom:643.386667pt;}
.yef{bottom:645.306667pt;}
.y7b{bottom:645.626667pt;}
.y23{bottom:653.306667pt;}
.y53{bottom:665.466667pt;}
.y7a{bottom:667.386667pt;}
.y22{bottom:672.826667pt;}
.y52{bottom:687.226667pt;}
.yce{bottom:687.546667pt;}
.y79{bottom:689.466667pt;}
.y21{bottom:692.026667pt;}
.y51{bottom:709.306667pt;}
.ycd{bottom:710.266667pt;}
.y78{bottom:711.226667pt;}
.y20{bottom:711.546667pt;}
.y1f{bottom:730.746667pt;}
.y50{bottom:731.066667pt;}
.ycc{bottom:732.346667pt;}
.y77{bottom:733.306667pt;}
.y1e{bottom:750.306667pt;}
.y4f{bottom:753.186667pt;}
.ycb{bottom:754.146667pt;}
.y76{bottom:755.106667pt;}
.ya4{bottom:760.226667pt;}
.y1d{bottom:769.826667pt;}
.ya2{bottom:774.640000pt;}
.y4e{bottom:774.946667pt;}
.yca{bottom:776.226667pt;}
.ydd{bottom:776.866667pt;}
.y75{bottom:777.186667pt;}
.y1c{bottom:788.706667pt;}
.ya1{bottom:795.440000pt;}
.y4d{bottom:797.986667pt;}
.ydc{bottom:798.946667pt;}
.y74{bottom:799.266667pt;}
.y1b{bottom:805.986667pt;}
.y19{bottom:813.360000pt;}
.ya0{bottom:816.240000pt;}
.y14{bottom:819.760000pt;}
.y4c{bottom:820.066667pt;}
.y73{bottom:821.026667pt;}
.y18{bottom:823.463420pt;}
.yb9{bottom:835.106667pt;}
.y9c{bottom:836.720000pt;}
.y4b{bottom:841.826667pt;}
.yc9{bottom:842.786667pt;}
.y72{bottom:843.106667pt;}
.yb8{bottom:849.853333pt;}
.y4a{bottom:863.933333pt;}
.yc8{bottom:864.573333pt;}
.y71{bottom:864.893333pt;}
.yb6{bottom:873.853333pt;}
.y9b{bottom:885.373333pt;}
.y49{bottom:885.693333pt;}
.y70{bottom:886.973333pt;}
.yb4{bottom:897.853333pt;}
.y12{bottom:905.213333pt;}
.y9a{bottom:907.453333pt;}
.y48{bottom:907.773333pt;}
.y6f{bottom:908.733333pt;}
.yf{bottom:910.973333pt;}
.y99{bottom:929.213333pt;}
.y47{bottom:929.533333pt;}
.yb3{bottom:930.493333pt;}
.y6e{bottom:930.813333pt;}
.y97{bottom:951.613333pt;}
.y6d{bottom:952.253333pt;}
.y46{bottom:952.573333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.y96{bottom:973.413333pt;}
.y6c{bottom:974.373333pt;}
.y45{bottom:974.693333pt;}
.y2{bottom:983.333333pt;}
.y95{bottom:995.493333pt;}
.y44{bottom:996.453333pt;}
.y7{bottom:1003.173333pt;}
.y94{bottom:1017.253333pt;}
.y43{bottom:1018.533333pt;}
.y4{bottom:1028.133333pt;}
.y93{bottom:1039.013333pt;}
.y98{bottom:1039.333333pt;}
.y42{bottom:1039.973333pt;}
.y6b{bottom:1040.293333pt;}
.y40{bottom:1055.333333pt;}
.y3f{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:12.317500pt;}
.h17{height:16.107500pt;}
.h11{height:17.408000pt;}
.h20{height:19.186667pt;}
.h21{height:19.506667pt;}
.h22{height:19.546667pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h24{height:21.746667pt;}
.h26{height:21.786667pt;}
.h25{height:22.066667pt;}
.h23{height:22.706667pt;}
.h7{height:24.946667pt;}
.h1c{height:27.093750pt;}
.h18{height:32.765625pt;}
.h1f{height:39.040000pt;}
.h27{height:41.112500pt;}
.he{height:46.106667pt;}
.h5{height:47.066667pt;}
.h9{height:49.852500pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h15{height:56.875000pt;}
.h19{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h1d{height:58.563750pt;}
.h1a{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1e{height:60.519362pt;}
.h6{height:62.857500pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h12{height:85.440000pt;}
.h3{height:91.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:60.178667pt;}
.w12{width:61.466667pt;}
.w11{width:63.346667pt;}
.wc{width:70.720000pt;}
.w18{width:78.738667pt;}
.wd{width:83.866667pt;}
.w13{width:88.672000pt;}
.w15{width:88.680000pt;}
.wa{width:91.872000pt;}
.w9{width:93.466667pt;}
.w14{width:95.058667pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w17{width:108.832000pt;}
.wf{width:121.024000pt;}
.w16{width:152.066667pt;}
.w10{width:159.400000pt;}
.w8{width:177.360000pt;}
.we{width:191.426667pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.388000pt;}
.x18{left:7.348000pt;}
.x5{left:9.906667pt;}
.x10{left:18.240000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x12{left:45.782667pt;}
.x9{left:47.373333pt;}
.x2{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.xd{left:85.466667pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x1d{left:100.512000pt;}
.x20{left:105.004000pt;}
.x2b{left:115.564000pt;}
.x1c{left:120.064000pt;}
.x15{left:124.849333pt;}
.x19{left:144.066667pt;}
.x4{left:150.160000pt;}
.x13{left:161.969333pt;}
.x16{left:168.049333pt;}
.x6{left:185.653333pt;}
.x14{left:222.169333pt;}
.x32{left:226.013333pt;}
.x28{left:240.093333pt;}
.x2c{left:276.293333pt;}
.x22{left:283.653333pt;}
.x17{left:288.916443pt;}
.x11{left:298.356000pt;}
.x2d{left:340.933333pt;}
.x23{left:378.400000pt;}
.x33{left:379.360000pt;}
.xa{left:396.320000pt;}
.x2e{left:403.680000pt;}
.x1a{left:420.960000pt;}
.x1e{left:425.440000pt;}
.x29{left:432.800000pt;}
.x1f{left:449.466667pt;}
.x1b{left:468.986667pt;}
.x24{left:471.560000pt;}
.x34{left:489.480000pt;}
.x2f{left:493.640000pt;}
.x25{left:533.360000pt;}
.x35{left:577.186667pt;}
.x2a{left:589.026667pt;}
.x30{left:590.000000pt;}
.x27{left:597.053333pt;}
.x26{left:605.373333pt;}
.x31{left:625.853333pt;}
.x7{left:642.173333pt;}
.x1{left:676.773333pt;}
}




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