
    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_cf4dd5beca0b732fda5cf1f5.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_19002c5f862e62824717bae4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_33e57a7928f52de2dcbc0c8f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e082a4ebbf3a4f95c50331fc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943848;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_52404484847577b05542c60f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_287c3173444a2f0d97b45a24.woff')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_b5fb6be523ecb36dba826cf8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_2005fdfe8466749e78ee36f2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_9e8668a7a913e2f718b0def6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973145;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_2a6c2d67836297e6e1a5d2f3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_ca3b9d84df68384981d9b5f9.woff')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_f269e037ed824a62eb8a609d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.916992;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_76e777db035e0a98dc317d88.woff')format("woff");}.fff{font-family:fff;line-height:0.952148;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_3373e34b416faf113a0bec78.woff')format("woff");}.ff10{font-family:ff10;line-height:0.722656;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_7d693fc1ffbc89b51508939f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v1{vertical-align:-23.759990px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.879999px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls2{letter-spacing:0.073080px;}
.ls7{letter-spacing:0.298320px;}
.ls8{letter-spacing:0.316920px;}
.ls1{letter-spacing:0.340926px;}
.lsb{letter-spacing:0.775800px;}
.lsa{letter-spacing:1.336019px;}
.ls4{letter-spacing:2.853479px;}
.ls5{letter-spacing:3.692339px;}
.ls6{letter-spacing:9.337196px;}
.ls9{letter-spacing:12.218875px;}
.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;}
}
.ws1{word-spacing:-22.407831px;}
.ws3{word-spacing:-19.151992px;}
.ws0{word-spacing:-17.999993px;}
.ws5{word-spacing:-15.179034px;}
.ws7{word-spacing:-13.715995px;}
.ws4{word-spacing:-13.013995px;}
.ws2{word-spacing:-10.342076px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-670.683089px;}
._2{margin-left:-607.178273px;}
._b{margin-left:-469.513486px;}
._6{margin-left:-334.821628px;}
._8{margin-left:-87.372063px;}
._9{margin-left:-69.371752px;}
._7{margin-left:-52.559242px;}
._a{margin-left:-34.559225px;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._33{margin-left:-3.585779px;}
._39{margin-left:-2.342914px;}
._0{margin-left:-1.187579px;}
._4{width:1.472618px;}
._17{width:2.676655px;}
._10{width:3.948195px;}
._11{width:5.167804px;}
._18{width:6.368515px;}
._3a{width:7.419970px;}
._2d{width:8.421254px;}
._16{width:10.406346px;}
._15{width:11.407021px;}
._3c{width:12.657852px;}
._e{width:14.046471px;}
._29{width:15.218988px;}
._14{width:16.407247px;}
._13{width:17.894518px;}
._12{width:18.979850px;}
._1d{width:20.251654px;}
._1a{width:21.465986px;}
._2e{width:23.108891px;}
._19{width:24.229277px;}
._30{width:25.567984px;}
._24{width:26.615912px;}
._23{width:27.638974px;}
._2c{width:29.275251px;}
._1b{width:30.772230px;}
._1c{width:31.864079px;}
._2a{width:33.287916px;}
._22{width:34.346244px;}
._36{width:35.697427px;}
._31{width:37.267874px;}
._27{width:38.565616px;}
._28{width:39.844052px;}
._1e{width:40.882072px;}
._2f{width:42.193738px;}
._32{width:43.982109px;}
._34{width:45.186336px;}
._2b{width:46.269477px;}
._3b{width:47.426893px;}
._38{width:49.534192px;}
._d{width:53.883245px;}
._c{width:54.992836px;}
._3e{width:56.036049px;}
._20{width:59.607422px;}
._21{width:60.632854px;}
._3d{width:62.403562px;}
._3f{width:63.514640px;}
._37{width:65.130516px;}
._1f{width:66.329431px;}
._35{width:71.928298px;}
._25{width:106.401416px;}
._26{width:107.830657px;}
._f{width:311.489689px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fsb{font-size:23.759990px;}
.fs8{font-size:33.119987px;}
.fs7{font-size:38.879984px;}
.fse{font-size:45.359982px;}
.fs6{font-size:48.239981px;}
.fsa{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsd{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y49{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.878921px;}
.y78{bottom:3.058981px;}
.y7a{bottom:3.058988px;}
.y7c{bottom:3.058994px;}
.y7e{bottom:3.059001px;}
.y80{bottom:3.059007px;}
.y82{bottom:3.059014px;}
.y84{bottom:3.059021px;}
.y20{bottom:3.059088px;}
.y29{bottom:3.059141px;}
.y95{bottom:3.059165px;}
.y97{bottom:3.059172px;}
.y99{bottom:3.059179px;}
.y9b{bottom:3.059185px;}
.y9d{bottom:3.059192px;}
.y9f{bottom:3.059198px;}
.ya1{bottom:3.059205px;}
.y15{bottom:3.239032px;}
.y26{bottom:3.419130px;}
.y44{bottom:3.778940px;}
.ya{bottom:4.138945px;}
.y22{bottom:4.319088px;}
.y4{bottom:4.320028px;}
.y17{bottom:4.859040px;}
.y1c{bottom:4.859058px;}
.y12{bottom:6.479004px;}
.y6{bottom:58.620277px;}
.y3{bottom:75.000240px;}
.y5{bottom:78.960268px;}
.y2{bottom:79.319968px;}
.y41{bottom:123.419951px;}
.yb1{bottom:125.039950px;}
.y76{bottom:130.619948px;}
.y40{bottom:146.459941px;}
.yb0{bottom:148.079941px;}
.y75{bottom:153.479939px;}
.y3f{bottom:169.499932px;}
.yaf{bottom:170.939932px;}
.y74{bottom:176.519929px;}
.y3e{bottom:192.539923px;}
.yae{bottom:193.979922px;}
.y73{bottom:199.559920px;}
.y3d{bottom:215.579914px;}
.yad{bottom:217.019913px;}
.y72{bottom:222.599911px;}
.y3c{bottom:238.439905px;}
.yac{bottom:240.059904px;}
.y71{bottom:245.639902px;}
.y3b{bottom:261.479895px;}
.yab{bottom:263.099895px;}
.y70{bottom:268.679893px;}
.y3a{bottom:277.679889px;}
.y39{bottom:281.459887px;}
.yaa{bottom:285.959886px;}
.y6f{bottom:291.539883px;}
.y38{bottom:301.979879px;}
.ya9{bottom:308.999876px;}
.y6e{bottom:314.579874px;}
.y37{bottom:325.019870px;}
.ya8{bottom:332.039867px;}
.y6d{bottom:337.619865px;}
.y36{bottom:348.059861px;}
.ya7{bottom:355.079858px;}
.y6c{bottom:360.659856px;}
.y35{bottom:370.919852px;}
.ya6{bottom:378.119849px;}
.y6b{bottom:383.699847px;}
.y34{bottom:393.959842px;}
.ya5{bottom:401.159840px;}
.y6a{bottom:406.739837px;}
.yd3{bottom:408.719837px;}
.y33{bottom:416.999833px;}
.ya4{bottom:424.019830px;}
.y69{bottom:429.599828px;}
.yd2{bottom:431.039828px;}
.y32{bottom:440.039824px;}
.ya3{bottom:447.059821px;}
.y68{bottom:452.639819px;}
.yd1{bottom:453.179819px;}
.y31{bottom:463.079815px;}
.ya2{bottom:470.099812px;}
.yd0{bottom:475.499810px;}
.y67{bottom:475.679810px;}
.ya0{bottom:484.500600px;}
.y30{bottom:486.119806px;}
.ycf{bottom:497.819801px;}
.y66{bottom:498.719801px;}
.y9e{bottom:500.880600px;}
.y2f{bottom:508.979796px;}
.y9c{bottom:517.440600px;}
.yce{bottom:519.959792px;}
.y65{bottom:521.759791px;}
.y2e{bottom:532.019787px;}
.y9a{bottom:533.820600px;}
.ycd{bottom:542.279783px;}
.y64{bottom:544.799782px;}
.y98{bottom:550.380600px;}
.y2d{bottom:555.059778px;}
.ycc{bottom:564.419774px;}
.y96{bottom:566.760600px;}
.y63{bottom:567.659773px;}
.y2c{bottom:578.099769px;}
.y94{bottom:584.400600px;}
.ycb{bottom:586.739765px;}
.y62{bottom:590.699764px;}
.y2b{bottom:601.139760px;}
.yca{bottom:608.879756px;}
.y93{bottom:612.839755px;}
.y61{bottom:613.739755px;}
.y2a{bottom:624.179750px;}
.yc9{bottom:631.199748px;}
.y92{bottom:635.879746px;}
.y60{bottom:636.779745px;}
.y28{bottom:643.980600px;}
.yc8{bottom:653.519739px;}
.y91{bottom:658.919736px;}
.y5f{bottom:659.819736px;}
.y25{bottom:672.060600px;}
.y27{bottom:675.479730px;}
.yc7{bottom:675.659730px;}
.y90{bottom:681.959727px;}
.y5e{bottom:682.679727px;}
.yc6{bottom:697.979721px;}
.y8f{bottom:704.819718px;}
.y5d{bottom:705.719718px;}
.y24{bottom:713.279715px;}
.yc5{bottom:720.119712px;}
.y8e{bottom:727.859709px;}
.y5c{bottom:728.759708px;}
.yc4{bottom:742.439703px;}
.y8d{bottom:750.899700px;}
.y5b{bottom:751.799699px;}
.y23{bottom:757.199697px;}
.yc3{bottom:764.579694px;}
.y8c{bottom:773.939690px;}
.y5a{bottom:774.839690px;}
.y21{bottom:775.920600px;}
.y1f{bottom:777.180600px;}
.yc2{bottom:786.899685px;}
.y1e{bottom:796.259681px;}
.y8b{bottom:796.979681px;}
.y59{bottom:797.879681px;}
.yc1{bottom:809.219676px;}
.y8a{bottom:820.019672px;}
.y58{bottom:820.739672px;}
.y1d{bottom:830.279668px;}
.yc0{bottom:831.359667px;}
.y89{bottom:842.879663px;}
.y57{bottom:843.779662px;}
.y1b{bottom:850.080600px;}
.ybf{bottom:853.679659px;}
.y1a{bottom:860.879656px;}
.y88{bottom:865.919654px;}
.y56{bottom:866.819653px;}
.y19{bottom:872.759651px;}
.ybe{bottom:875.819650px;}
.y87{bottom:888.959644px;}
.y55{bottom:889.859644px;}
.y16{bottom:895.440600px;}
.ybd{bottom:898.139641px;}
.y18{bottom:905.519638px;}
.y86{bottom:911.999635px;}
.y54{bottom:912.899635px;}
.y14{bottom:915.780600px;}
.ybc{bottom:920.279632px;}
.y85{bottom:933.059627px;}
.y53{bottom:935.939626px;}
.ybb{bottom:942.599623px;}
.y83{bottom:945.480600px;}
.y13{bottom:949.259620px;}
.y52{bottom:958.799616px;}
.y81{bottom:962.040600px;}
.yba{bottom:964.739614px;}
.y7f{bottom:978.420600px;}
.y51{bottom:981.839607px;}
.y11{bottom:983.640600px;}
.yb9{bottom:987.059605px;}
.y10{bottom:990.119604px;}
.y7d{bottom:994.980600px;}
.y50{bottom:1004.879598px;}
.yb8{bottom:1009.379596px;}
.y7b{bottom:1011.360600px;}
.yf{bottom:1013.519595px;}
.y79{bottom:1027.740600px;}
.y4f{bottom:1027.919589px;}
.ye{bottom:1029.899588px;}
.yd{bottom:1030.259588px;}
.yb7{bottom:1031.519587px;}
.y77{bottom:1045.380600px;}
.y4e{bottom:1050.959580px;}
.yb6{bottom:1053.839578px;}
.y48{bottom:1073.280600px;}
.y4d{bottom:1073.999570px;}
.yb5{bottom:1075.979570px;}
.y47{bottom:1082.279567px;}
.y4c{bottom:1096.859561px;}
.yb4{bottom:1098.299561px;}
.y46{bottom:1103.519559px;}
.y4b{bottom:1119.899552px;}
.yb3{bottom:1120.439552px;}
.y45{bottom:1124.939550px;}
.yc{bottom:1127.099549px;}
.yb{bottom:1127.459549px;}
.y9{bottom:1134.300600px;}
.yb2{bottom:1142.759543px;}
.y4a{bottom:1142.939543px;}
.y43{bottom:1145.280600px;}
.y42{bottom:1149.059540px;}
.y1{bottom:1192.799523px;}
.y7{bottom:1195.860600px;}
.h27{height:2.880000px;}
.hb{height:8.289489px;}
.hf{height:13.500000px;}
.h1a{height:15.120000px;}
.h2a{height:15.300000px;}
.h21{height:16.091361px;}
.h1c{height:16.380000px;}
.h1f{height:17.100000px;}
.h11{height:20.160000px;}
.h16{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:20.700000px;}
.h4{height:20.880000px;}
.h25{height:21.780000px;}
.h15{height:22.171632px;}
.h18{height:24.439209px;}
.h22{height:25.913662px;}
.h13{height:26.331318px;}
.hd{height:27.180000px;}
.h10{height:32.670338px;}
.h1e{height:33.588971px;}
.h2b{height:34.307916px;}
.h14{height:36.886626px;}
.h19{height:40.005336px;}
.h1b{height:40.842757px;}
.h26{height:41.290999px;}
.h23{height:43.185920px;}
.h20{height:45.199318px;}
.h8{height:47.988262px;}
.h17{height:48.199199px;}
.h12{height:48.761699px;}
.h28{height:49.907793px;}
.h1d{height:50.132792px;}
.ha{height:54.457009px;}
.h24{height:55.054665px;}
.h29{height:56.320290px;}
.h5{height:57.051188px;}
.hc{height:64.853060px;}
.he{height:68.537005px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h9{height:78.468719px;}
.h6{height:84.898091px;}
.h0{height:1263.000000px;}
.w32{width:2.520000px;}
.w1{width:6.480000px;}
.w15{width:6.660000px;}
.w1c{width:7.740000px;}
.w10{width:7.920000px;}
.w7{width:8.280000px;}
.w1a{width:9.900000px;}
.w13{width:10.260000px;}
.w19{width:10.620000px;}
.w5{width:11.160000px;}
.w6{width:11.340000px;}
.wc{width:12.420000px;}
.we{width:12.960000px;}
.w3{width:16.020000px;}
.w23{width:22.680000px;}
.w34{width:23.940000px;}
.w36{width:24.660000px;}
.w3f{width:25.380000px;}
.w39{width:25.560000px;}
.w3c{width:26.100000px;}
.w35{width:26.280000px;}
.w3d{width:26.640000px;}
.w3b{width:26.820000px;}
.w40{width:27.180000px;}
.w33{width:32.580000px;}
.w2d{width:33.300000px;}
.w4{width:33.480000px;}
.w28{width:33.660000px;}
.w29{width:34.020000px;}
.w3a{width:38.340000px;}
.w20{width:39.420000px;}
.w27{width:39.960000px;}
.w38{width:40.500000px;}
.w11{width:42.300000px;}
.w21{width:43.740000px;}
.w25{width:46.260000px;}
.wb{width:50.400000px;}
.w37{width:51.480000px;}
.w30{width:52.740000px;}
.w2f{width:53.640000px;}
.w1e{width:54.000000px;}
.w12{width:54.360000px;}
.w3e{width:57.960000px;}
.w2b{width:60.120000px;}
.w2c{width:60.480000px;}
.w1b{width:62.640000px;}
.w17{width:65.700000px;}
.w1f{width:68.580000px;}
.w24{width:72.000000px;}
.w22{width:72.180000px;}
.w2a{width:79.560000px;}
.wf{width:81.360000px;}
.w1d{width:93.060000px;}
.w26{width:97.740000px;}
.w2e{width:109.980000px;}
.w14{width:112.500000px;}
.w2{width:119.700000px;}
.w31{width:122.940000px;}
.wa{width:137.160000px;}
.w9{width:142.380000px;}
.w8{width:265.140000px;}
.w16{width:360.720000px;}
.wd{width:432.720000px;}
.w18{width:675.540000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x1e{left:109.259956px;}
.x27{left:113.400000px;}
.x20{left:117.179953px;}
.x5{left:120.240000px;}
.x36{left:122.039952px;}
.x3f{left:130.680000px;}
.x2{left:137.699962px;}
.x51{left:140.580000px;}
.x43{left:142.020000px;}
.x5b{left:146.340000px;}
.x3d{left:147.420000px;}
.x57{left:148.500000px;}
.x40{left:154.260000px;}
.x3{left:155.700000px;}
.x44{left:158.040000px;}
.x3b{left:162.000000px;}
.x5d{left:165.960000px;}
.x38{left:170.460000px;}
.x4{left:171.899931px;}
.x2f{left:174.599930px;}
.xa{left:185.219926px;}
.x29{left:190.620000px;}
.x2a{left:198.540000px;}
.x46{left:218.520000px;}
.x6{left:239.940000px;}
.x22{left:251.639899px;}
.xb{left:259.740316px;}
.x23{left:261.720000px;}
.x2b{left:295.020000px;}
.x39{left:297.000000px;}
.x21{left:305.279878px;}
.x4c{left:312.480000px;}
.x58{left:326.160000px;}
.x52{left:327.240000px;}
.x42{left:330.660000px;}
.x31{left:342.539863px;}
.x53{left:351.180000px;}
.x59{left:352.440000px;}
.x3c{left:365.580000px;}
.x3e{left:369.180000px;}
.x45{left:376.560000px;}
.x3a{left:390.060000px;}
.x41{left:394.740000px;}
.x24{left:398.880000px;}
.x47{left:412.020000px;}
.x2c{left:417.600000px;}
.x2d{left:424.260000px;}
.xc{left:427.680106px;}
.xd{left:432.180102px;}
.x33{left:435.959826px;}
.x4d{left:437.760000px;}
.x25{left:449.279820px;}
.x54{left:451.080000px;}
.x26{left:454.500000px;}
.x30{left:462.600512px;}
.x48{left:472.500000px;}
.x37{left:476.639559px;}
.x4e{left:490.500000px;}
.x49{left:505.800000px;}
.xe{left:516.060050px;}
.x4f{left:522.540000px;}
.x1f{left:524.700000px;}
.xf{left:529.380042px;}
.x10{left:542.700033px;}
.x28{left:545.580000px;}
.x35{left:556.199778px;}
.x11{left:564.659960px;}
.x12{left:569.159957px;}
.x5c{left:570.600000px;}
.x55{left:571.680000px;}
.x13{left:582.479948px;}
.x34{left:589.679764px;}
.x14{left:595.619941px;}
.x5a{left:596.700000px;}
.x15{left:608.939932px;}
.x16{left:613.439928px;}
.x17{left:631.079858px;}
.x18{left:635.399856px;}
.x50{left:645.480000px;}
.x19{left:648.719847px;}
.x1a{left:653.039845px;}
.x1b{left:657.539841px;}
.x4a{left:660.420000px;}
.x1c{left:666.359733px;}
.x56{left:689.760000px;}
.x7{left:697.320000px;}
.x8{left:730.800000px;}
.x9{left:741.960000px;}
.x4b{left:770.400000px;}
.x32{left:779.580000px;}
.x2e{left:781.559687px;}
.x1d{left:783.539686px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559999pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls2{letter-spacing:0.064960pt;}
.ls7{letter-spacing:0.265173pt;}
.ls8{letter-spacing:0.281707pt;}
.ls1{letter-spacing:0.303046pt;}
.lsb{letter-spacing:0.689600pt;}
.lsa{letter-spacing:1.187573pt;}
.ls4{letter-spacing:2.536426pt;}
.ls5{letter-spacing:3.282079pt;}
.ls6{letter-spacing:8.299730pt;}
.ls9{letter-spacing:10.861222pt;}
.ws1{word-spacing:-19.918072pt;}
.ws3{word-spacing:-17.023993pt;}
.ws0{word-spacing:-15.999994pt;}
.ws5{word-spacing:-13.492475pt;}
.ws7{word-spacing:-12.191995pt;}
.ws4{word-spacing:-11.567995pt;}
.ws2{word-spacing:-9.192956pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-596.162746pt;}
._2{margin-left:-539.714020pt;}
._b{margin-left:-417.345321pt;}
._6{margin-left:-297.619225pt;}
._8{margin-left:-77.664056pt;}
._9{margin-left:-61.663779pt;}
._7{margin-left:-46.719326pt;}
._a{margin-left:-30.719311pt;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._33{margin-left:-3.187359pt;}
._39{margin-left:-2.082590pt;}
._0{margin-left:-1.055625pt;}
._4{width:1.308994pt;}
._17{width:2.379249pt;}
._10{width:3.509507pt;}
._11{width:4.593604pt;}
._18{width:5.660902pt;}
._3a{width:6.595529pt;}
._2d{width:7.485559pt;}
._16{width:9.250085pt;}
._15{width:10.139574pt;}
._3c{width:11.251424pt;}
._e{width:12.485752pt;}
._29{width:13.527989pt;}
._14{width:14.584220pt;}
._13{width:15.906238pt;}
._12{width:16.870978pt;}
._1d{width:18.001470pt;}
._1a{width:19.080877pt;}
._2e{width:20.541237pt;}
._19{width:21.537135pt;}
._30{width:22.727097pt;}
._24{width:23.658588pt;}
._23{width:24.567977pt;}
._2c{width:26.022445pt;}
._1b{width:27.353093pt;}
._1c{width:28.323625pt;}
._2a{width:29.589259pt;}
._22{width:30.529994pt;}
._36{width:31.731046pt;}
._31{width:33.126999pt;}
._27{width:34.280547pt;}
._28{width:35.416935pt;}
._1e{width:36.339620pt;}
._2f{width:37.505545pt;}
._32{width:39.095208pt;}
._34{width:40.165632pt;}
._2b{width:41.128424pt;}
._3b{width:42.157238pt;}
._38{width:44.030393pt;}
._d{width:47.896217pt;}
._c{width:48.882521pt;}
._3e{width:49.809822pt;}
._20{width:52.984375pt;}
._21{width:53.895870pt;}
._3d{width:55.469833pt;}
._3f{width:56.457458pt;}
._37{width:57.893792pt;}
._1f{width:58.959494pt;}
._35{width:63.936265pt;}
._25{width:94.579037pt;}
._26{width:95.849473pt;}
._f{width:276.879724pt;}
.fsc{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fsb{font-size:21.119992pt;}
.fs8{font-size:29.439988pt;}
.fs7{font-size:34.559986pt;}
.fse{font-size:40.319984pt;}
.fs6{font-size:42.879983pt;}
.fsa{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsd{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y49{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.559040pt;}
.y78{bottom:2.719094pt;}
.y7a{bottom:2.719100pt;}
.y7c{bottom:2.719106pt;}
.y7e{bottom:2.719112pt;}
.y80{bottom:2.719118pt;}
.y82{bottom:2.719124pt;}
.y84{bottom:2.719129pt;}
.y20{bottom:2.719189pt;}
.y29{bottom:2.719237pt;}
.y95{bottom:2.719258pt;}
.y97{bottom:2.719264pt;}
.y99{bottom:2.719270pt;}
.y9b{bottom:2.719276pt;}
.y9d{bottom:2.719282pt;}
.y9f{bottom:2.719287pt;}
.ya1{bottom:2.719293pt;}
.y15{bottom:2.879140pt;}
.y26{bottom:3.039226pt;}
.y44{bottom:3.359058pt;}
.ya{bottom:3.679062pt;}
.y22{bottom:3.839189pt;}
.y4{bottom:3.840025pt;}
.y17{bottom:4.319147pt;}
.y1c{bottom:4.319163pt;}
.y12{bottom:5.759115pt;}
.y6{bottom:52.106912pt;}
.y3{bottom:66.666880pt;}
.y5{bottom:70.186905pt;}
.y2{bottom:70.506638pt;}
.y41{bottom:109.706623pt;}
.yb1{bottom:111.146622pt;}
.y76{bottom:116.106620pt;}
.y40{bottom:130.186615pt;}
.yb0{bottom:131.626614pt;}
.y75{bottom:136.426612pt;}
.y3f{bottom:150.666606pt;}
.yaf{bottom:151.946606pt;}
.y74{bottom:156.906604pt;}
.y3e{bottom:171.146598pt;}
.yae{bottom:172.426598pt;}
.y73{bottom:177.386596pt;}
.y3d{bottom:191.626590pt;}
.yad{bottom:192.906590pt;}
.y72{bottom:197.866588pt;}
.y3c{bottom:211.946582pt;}
.yac{bottom:213.386581pt;}
.y71{bottom:218.346579pt;}
.y3b{bottom:232.426574pt;}
.yab{bottom:233.866573pt;}
.y70{bottom:238.826571pt;}
.y3a{bottom:246.826568pt;}
.y39{bottom:250.186567pt;}
.yaa{bottom:254.186565pt;}
.y6f{bottom:259.146563pt;}
.y38{bottom:268.426559pt;}
.ya9{bottom:274.666557pt;}
.y6e{bottom:279.626555pt;}
.y37{bottom:288.906551pt;}
.ya8{bottom:295.146549pt;}
.y6d{bottom:300.106547pt;}
.y36{bottom:309.386543pt;}
.ya7{bottom:315.626540pt;}
.y6c{bottom:320.586538pt;}
.y35{bottom:329.706535pt;}
.ya6{bottom:336.106532pt;}
.y6b{bottom:341.066530pt;}
.y34{bottom:350.186527pt;}
.ya5{bottom:356.586524pt;}
.y6a{bottom:361.546522pt;}
.yd3{bottom:363.306521pt;}
.y33{bottom:370.666518pt;}
.ya4{bottom:376.906516pt;}
.y69{bottom:381.866514pt;}
.yd2{bottom:383.146513pt;}
.y32{bottom:391.146510pt;}
.ya3{bottom:397.386508pt;}
.y68{bottom:402.346506pt;}
.yd1{bottom:402.826506pt;}
.y31{bottom:411.626502pt;}
.ya2{bottom:417.866500pt;}
.yd0{bottom:422.666498pt;}
.y67{bottom:422.826498pt;}
.ya0{bottom:430.667200pt;}
.y30{bottom:432.106494pt;}
.ycf{bottom:442.506490pt;}
.y66{bottom:443.306489pt;}
.y9e{bottom:445.227200pt;}
.y2f{bottom:452.426486pt;}
.y9c{bottom:459.947200pt;}
.yce{bottom:462.186482pt;}
.y65{bottom:463.786481pt;}
.y2e{bottom:472.906478pt;}
.y9a{bottom:474.507200pt;}
.ycd{bottom:482.026474pt;}
.y64{bottom:484.266473pt;}
.y98{bottom:489.227200pt;}
.y2d{bottom:493.386469pt;}
.ycc{bottom:501.706466pt;}
.y96{bottom:503.787200pt;}
.y63{bottom:504.586465pt;}
.y2c{bottom:513.866461pt;}
.y94{bottom:519.467200pt;}
.ycb{bottom:521.546458pt;}
.y62{bottom:525.066457pt;}
.y2b{bottom:534.346453pt;}
.yca{bottom:541.226450pt;}
.y93{bottom:544.746449pt;}
.y61{bottom:545.546448pt;}
.y2a{bottom:554.826445pt;}
.yc9{bottom:561.066442pt;}
.y92{bottom:565.226441pt;}
.y60{bottom:566.026440pt;}
.y28{bottom:572.427200pt;}
.yc8{bottom:580.906434pt;}
.y91{bottom:585.706432pt;}
.y5f{bottom:586.506432pt;}
.y25{bottom:597.387200pt;}
.y27{bottom:600.426426pt;}
.yc7{bottom:600.586426pt;}
.y90{bottom:606.186424pt;}
.y5e{bottom:606.826424pt;}
.yc6{bottom:620.426418pt;}
.y8f{bottom:626.506416pt;}
.y5d{bottom:627.306416pt;}
.y24{bottom:634.026413pt;}
.yc5{bottom:640.106411pt;}
.y8e{bottom:646.986408pt;}
.y5c{bottom:647.786408pt;}
.yc4{bottom:659.946403pt;}
.y8d{bottom:667.466400pt;}
.y5b{bottom:668.266399pt;}
.y23{bottom:673.066397pt;}
.yc3{bottom:679.626395pt;}
.y8c{bottom:687.946391pt;}
.y5a{bottom:688.746391pt;}
.y21{bottom:689.707200pt;}
.y1f{bottom:690.827200pt;}
.yc2{bottom:699.466387pt;}
.y1e{bottom:707.786384pt;}
.y8b{bottom:708.426383pt;}
.y59{bottom:709.226383pt;}
.yc1{bottom:719.306379pt;}
.y8a{bottom:728.906375pt;}
.y58{bottom:729.546375pt;}
.y1d{bottom:738.026371pt;}
.yc0{bottom:738.986371pt;}
.y89{bottom:749.226367pt;}
.y57{bottom:750.026367pt;}
.y1b{bottom:755.627200pt;}
.ybf{bottom:758.826363pt;}
.y1a{bottom:765.226361pt;}
.y88{bottom:769.706359pt;}
.y56{bottom:770.506358pt;}
.y19{bottom:775.786356pt;}
.ybe{bottom:778.506355pt;}
.y87{bottom:790.186351pt;}
.y55{bottom:790.986350pt;}
.y16{bottom:795.947200pt;}
.ybd{bottom:798.346347pt;}
.y18{bottom:804.906345pt;}
.y86{bottom:810.666342pt;}
.y54{bottom:811.466342pt;}
.y14{bottom:814.027200pt;}
.ybc{bottom:818.026339pt;}
.y85{bottom:829.386335pt;}
.y53{bottom:831.946334pt;}
.ybb{bottom:837.866332pt;}
.y83{bottom:840.427200pt;}
.y13{bottom:843.786329pt;}
.y52{bottom:852.266326pt;}
.y81{bottom:855.147200pt;}
.yba{bottom:857.546324pt;}
.y7f{bottom:869.707200pt;}
.y51{bottom:872.746318pt;}
.y11{bottom:874.347200pt;}
.yb9{bottom:877.386316pt;}
.y10{bottom:880.106315pt;}
.y7d{bottom:884.427200pt;}
.y50{bottom:893.226309pt;}
.yb8{bottom:897.226308pt;}
.y7b{bottom:898.987200pt;}
.yf{bottom:900.906306pt;}
.y79{bottom:913.547200pt;}
.y4f{bottom:913.706301pt;}
.ye{bottom:915.466300pt;}
.yd{bottom:915.786300pt;}
.yb7{bottom:916.906300pt;}
.y77{bottom:929.227200pt;}
.y4e{bottom:934.186293pt;}
.yb6{bottom:936.746292pt;}
.y48{bottom:954.027200pt;}
.y4d{bottom:954.666285pt;}
.yb5{bottom:956.426284pt;}
.y47{bottom:962.026282pt;}
.y4c{bottom:974.986277pt;}
.yb4{bottom:976.266276pt;}
.y46{bottom:980.906274pt;}
.y4b{bottom:995.466268pt;}
.yb3{bottom:995.946268pt;}
.y45{bottom:999.946267pt;}
.yc{bottom:1001.866266pt;}
.yb{bottom:1002.186266pt;}
.y9{bottom:1008.267200pt;}
.yb2{bottom:1015.786260pt;}
.y4a{bottom:1015.946260pt;}
.y43{bottom:1018.027200pt;}
.y42{bottom:1021.386258pt;}
.y1{bottom:1060.266243pt;}
.y7{bottom:1062.987200pt;}
.h27{height:2.560000pt;}
.hb{height:7.368435pt;}
.hf{height:12.000000pt;}
.h1a{height:13.440000pt;}
.h2a{height:13.600000pt;}
.h21{height:14.303432pt;}
.h1c{height:14.560000pt;}
.h1f{height:15.200000pt;}
.h11{height:17.920000pt;}
.h16{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:18.400000pt;}
.h4{height:18.560000pt;}
.h25{height:19.360000pt;}
.h15{height:19.708117pt;}
.h18{height:21.723741pt;}
.h22{height:23.034366pt;}
.h13{height:23.405616pt;}
.hd{height:24.160000pt;}
.h10{height:29.040301pt;}
.h1e{height:29.856863pt;}
.h2b{height:30.495925pt;}
.h14{height:32.788112pt;}
.h19{height:35.560298pt;}
.h1b{height:36.304673pt;}
.h26{height:36.703110pt;}
.h23{height:38.387485pt;}
.h20{height:40.177171pt;}
.h8{height:42.656233pt;}
.h17{height:42.843733pt;}
.h12{height:43.343733pt;}
.h28{height:44.362482pt;}
.h1d{height:44.562482pt;}
.ha{height:48.406231pt;}
.h24{height:48.937480pt;}
.h29{height:50.062480pt;}
.h5{height:50.712167pt;}
.hc{height:57.647164pt;}
.he{height:60.921782pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h9{height:69.749972pt;}
.h6{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w32{width:2.240000pt;}
.w1{width:5.760000pt;}
.w15{width:5.920000pt;}
.w1c{width:6.880000pt;}
.w10{width:7.040000pt;}
.w7{width:7.360000pt;}
.w1a{width:8.800000pt;}
.w13{width:9.120000pt;}
.w19{width:9.440000pt;}
.w5{width:9.920000pt;}
.w6{width:10.080000pt;}
.wc{width:11.040000pt;}
.we{width:11.520000pt;}
.w3{width:14.240000pt;}
.w23{width:20.160000pt;}
.w34{width:21.280000pt;}
.w36{width:21.920000pt;}
.w3f{width:22.560000pt;}
.w39{width:22.720000pt;}
.w3c{width:23.200000pt;}
.w35{width:23.360000pt;}
.w3d{width:23.680000pt;}
.w3b{width:23.840000pt;}
.w40{width:24.160000pt;}
.w33{width:28.960000pt;}
.w2d{width:29.600000pt;}
.w4{width:29.760000pt;}
.w28{width:29.920000pt;}
.w29{width:30.240000pt;}
.w3a{width:34.080000pt;}
.w20{width:35.040000pt;}
.w27{width:35.520000pt;}
.w38{width:36.000000pt;}
.w11{width:37.600000pt;}
.w21{width:38.880000pt;}
.w25{width:41.120000pt;}
.wb{width:44.800000pt;}
.w37{width:45.760000pt;}
.w30{width:46.880000pt;}
.w2f{width:47.680000pt;}
.w1e{width:48.000000pt;}
.w12{width:48.320000pt;}
.w3e{width:51.520000pt;}
.w2b{width:53.440000pt;}
.w2c{width:53.760000pt;}
.w1b{width:55.680000pt;}
.w17{width:58.400000pt;}
.w1f{width:60.960000pt;}
.w24{width:64.000000pt;}
.w22{width:64.160000pt;}
.w2a{width:70.720000pt;}
.wf{width:72.320000pt;}
.w1d{width:82.720000pt;}
.w26{width:86.880000pt;}
.w2e{width:97.760000pt;}
.w14{width:100.000000pt;}
.w2{width:106.400000pt;}
.w31{width:109.280000pt;}
.wa{width:121.920000pt;}
.w9{width:126.560000pt;}
.w8{width:235.680000pt;}
.w16{width:320.640000pt;}
.wd{width:384.640000pt;}
.w18{width:600.480000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x1e{left:97.119961pt;}
.x27{left:100.800000pt;}
.x20{left:104.159958pt;}
.x5{left:106.880000pt;}
.x36{left:108.479958pt;}
.x3f{left:116.160000pt;}
.x2{left:122.399966pt;}
.x51{left:124.960000pt;}
.x43{left:126.240000pt;}
.x5b{left:130.080000pt;}
.x3d{left:131.040000pt;}
.x57{left:132.000000pt;}
.x40{left:137.120000pt;}
.x3{left:138.400000pt;}
.x44{left:140.480000pt;}
.x3b{left:144.000000pt;}
.x5d{left:147.520000pt;}
.x38{left:151.520000pt;}
.x4{left:152.799939pt;}
.x2f{left:155.199938pt;}
.xa{left:164.639934pt;}
.x29{left:169.440000pt;}
.x2a{left:176.480000pt;}
.x46{left:194.240000pt;}
.x6{left:213.280000pt;}
.x22{left:223.679911pt;}
.xb{left:230.880281pt;}
.x23{left:232.640000pt;}
.x2b{left:262.240000pt;}
.x39{left:264.000000pt;}
.x21{left:271.359891pt;}
.x4c{left:277.760000pt;}
.x58{left:289.920000pt;}
.x52{left:290.880000pt;}
.x42{left:293.920000pt;}
.x31{left:304.479878pt;}
.x53{left:312.160000pt;}
.x59{left:313.280000pt;}
.x3c{left:324.960000pt;}
.x3e{left:328.160000pt;}
.x45{left:334.720000pt;}
.x3a{left:346.720000pt;}
.x41{left:350.880000pt;}
.x24{left:354.560000pt;}
.x47{left:366.240000pt;}
.x2c{left:371.200000pt;}
.x2d{left:377.120000pt;}
.xc{left:380.160094pt;}
.xd{left:384.160091pt;}
.x33{left:387.519845pt;}
.x4d{left:389.120000pt;}
.x25{left:399.359840pt;}
.x54{left:400.960000pt;}
.x26{left:404.000000pt;}
.x30{left:411.200455pt;}
.x48{left:420.000000pt;}
.x37{left:423.679608pt;}
.x4e{left:436.000000pt;}
.x49{left:449.600000pt;}
.xe{left:458.720045pt;}
.x4f{left:464.480000pt;}
.x1f{left:466.400000pt;}
.xf{left:470.560037pt;}
.x10{left:482.400029pt;}
.x28{left:484.960000pt;}
.x35{left:494.399802pt;}
.x11{left:501.919965pt;}
.x12{left:505.919962pt;}
.x5c{left:507.200000pt;}
.x55{left:508.160000pt;}
.x13{left:517.759954pt;}
.x34{left:524.159790pt;}
.x14{left:529.439947pt;}
.x5a{left:530.400000pt;}
.x15{left:541.279939pt;}
.x16{left:545.279936pt;}
.x17{left:560.959873pt;}
.x18{left:564.799872pt;}
.x50{left:573.760000pt;}
.x19{left:576.639864pt;}
.x1a{left:580.479862pt;}
.x1b{left:584.479859pt;}
.x4a{left:587.040000pt;}
.x1c{left:592.319763pt;}
.x56{left:613.120000pt;}
.x7{left:619.840000pt;}
.x8{left:649.600000pt;}
.x9{left:659.520000pt;}
.x4b{left:684.800000pt;}
.x32{left:692.960000pt;}
.x2e{left:694.719722pt;}
.x1d{left:696.479721pt;}
}




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