
    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_d05e45887f4c2594a4209267.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_93067529f4b12586677a852d.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_e2737d09618f253e5c199ef9.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_beff3d630886c27f9116520c.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_1c34e4705872a8c270403eb4.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_ce665e3cc9323f3c606430ac.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_0541641989e7bbf03b30a20b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_c96d9c26e69fb4718e0775c3.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cda5ce973b07a1e734903e82.woff')format("woff");}.ffc{font-family:ffc;line-height:1.084961;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_bfcfcaa440641ac1b5764f5a.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2a8bc1094c1ec271107ef363.woff')format("woff");}.ffe{font-family:ffe;line-height:0.886719;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_dbfcaa7f04500d8d854314e8.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_defcbeba17f19b85090d20ec.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_71e68afd5df3633cb7b5699b.woff')format("woff");}.ff12{font-family:ff12;line-height:1.435059;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_c20d307e020219c48e9a7518.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_b58e0c6f8f2fd356d8618ed8.woff')format("woff");}.ff15{font-family:ff15;line-height:0.897461;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;}
.ls12{letter-spacing:-1.134000px;}
.ls13{letter-spacing:-1.026000px;}
.ls27{letter-spacing:-0.864000px;}
.ls18{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.457800px;}
.ls17{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.190200px;}
.ls22{letter-spacing:-0.152400px;}
.ls9{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.114000px;}
.lsa{letter-spacing:-0.017280px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls23{letter-spacing:0.109200px;}
.ls16{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls21{letter-spacing:0.262200px;}
.lsb{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.414600px;}
.ls25{letter-spacing:0.567600px;}
.ls3{letter-spacing:0.576000px;}
.ls1d{letter-spacing:0.720000px;}
.ls29{letter-spacing:6.785280px;}
.ls1a{letter-spacing:7.200000px;}
.ls1e{letter-spacing:11.520000px;}
.ls1f{letter-spacing:12.960000px;}
.lsd{letter-spacing:13.680000px;}
.ls1c{letter-spacing:18.720000px;}
.ls24{letter-spacing:28.080000px;}
.ls11{letter-spacing:33.840000px;}
.lsf{letter-spacing:36.305280px;}
.ls26{letter-spacing:38.340000px;}
.ls15{letter-spacing:39.905280px;}
.ls20{letter-spacing:41.760000px;}
.lsc{letter-spacing:43.505280px;}
.lse{letter-spacing:51.840000px;}
.ls19{letter-spacing:56.465280px;}
.ls10{letter-spacing:66.545280px;}
.ls1b{letter-spacing:77.760000px;}
.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;}
}
.wsc{word-spacing:-66.240000px;}
.ws0{word-spacing:-24.062880px;}
.ws1{word-spacing:-19.010880px;}
.ws3{word-spacing:-18.532800px;}
.ws2{word-spacing:-18.342600px;}
.ws7{word-spacing:-17.280000px;}
.ws13{word-spacing:-17.127600px;}
.wsd{word-spacing:-16.974600px;}
.ws9{word-spacing:-16.865400px;}
.ws10{word-spacing:-16.822200px;}
.wse{word-spacing:-16.712400px;}
.ws12{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.407600px;}
.wsf{word-spacing:-16.254600px;}
.ws5{word-spacing:-15.912000px;}
.ws14{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.696000px;}
.wsb{word-spacing:-15.426000px;}
.ws4{word-spacing:-14.650800px;}
.wsa{word-spacing:0.000000px;}
._3{margin-left:-2.279520px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._4{width:2.244960px;}
._9{width:3.476880px;}
._7{width:5.061600px;}
._8{width:6.642000px;}
._a{width:7.720320px;}
._d{width:8.833680px;}
._5{width:9.932400px;}
._6{width:11.417760px;}
._b{width:12.857760px;}
._c{width:14.613840px;}
._5f{width:16.704000px;}
._e{width:17.808480px;}
._13{width:19.506720px;}
._15{width:20.879760px;}
._11{width:22.080960px;}
._f{width:23.106960px;}
._10{width:24.221280px;}
._2d{width:26.125920px;}
._1b{width:27.290880px;}
._1f{width:29.079360px;}
._12{width:30.478080px;}
._17{width:32.060160px;}
._16{width:33.120000px;}
._41{width:34.184880px;}
._28{width:35.208000px;}
._25{width:36.432000px;}
._27{width:37.823040px;}
._1d{width:39.058560px;}
._1c{width:40.273920px;}
._22{width:42.128640px;}
._33{width:43.356240px;}
._20{width:44.910720px;}
._21{width:46.500480px;}
._2e{width:47.669760px;}
._2c{width:48.686400px;}
._2f{width:50.130720px;}
._60{width:51.150240px;}
._26{width:52.435200px;}
._61{width:53.451600px;}
._36{width:54.683280px;}
._4c{width:55.906560px;}
._49{width:57.337680px;}
._44{width:58.663680px;}
._24{width:60.218400px;}
._23{width:62.141760px;}
._39{width:63.313920px;}
._3a{width:65.180160px;}
._35{width:66.758400px;}
._2a{width:68.823360px;}
._2b{width:69.852240px;}
._32{width:70.943040px;}
._31{width:72.626400px;}
._34{width:73.764000px;}
._14{width:75.646080px;}
._3e{width:77.006160px;}
._48{width:78.299760px;}
._3c{width:79.554240px;}
._54{width:80.675040px;}
._38{width:82.970640px;}
._37{width:84.016080px;}
._59{width:85.098960px;}
._47{width:86.392800px;}
._4d{width:87.635520px;}
._4e{width:88.695360px;}
._43{width:90.020160px;}
._42{width:91.514880px;}
._4b{width:92.911680px;}
._50{width:95.089680px;}
._57{width:96.418080px;}
._4f{width:98.818560px;}
._46{width:101.678400px;}
._45{width:102.773520px;}
._4a{width:104.328000px;}
._1e{width:105.676560px;}
._5e{width:107.441280px;}
._52{width:108.801360px;}
._51{width:109.825920px;}
._55{width:111.481920px;}
._40{width:113.016000px;}
._5a{width:114.233040px;}
._3d{width:115.347600px;}
._62{width:117.576000px;}
._5c{width:120.194640px;}
._30{width:122.380560px;}
._29{width:125.946000px;}
._5b{width:134.599680px;}
._3f{width:141.114960px;}
._3b{width:148.245120px;}
._58{width:149.889600px;}
._1a{width:152.893440px;}
._63{width:154.970640px;}
._64{width:160.764480px;}
._53{width:169.787520px;}
._5d{width:174.211200px;}
._18{width:189.617520px;}
._19{width:197.647200px;}
._2{width:199.416000px;}
._56{width:351.469440px;}
._65{width:499.278720px;}
._66{width:544.263120px;}
._67{width:846.876000px;}
.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.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y15{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y14{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y13{bottom:70.380000px;}
.y41{bottom:75.240000px;}
.y3c{bottom:123.120000px;}
.y6e{bottom:124.920000px;}
.yac{bottom:125.640000px;}
.ycd{bottom:126.000000px;}
.y9e{bottom:126.180000px;}
.y9b{bottom:126.540000px;}
.y3b{bottom:146.700000px;}
.y6d{bottom:148.680000px;}
.yab{bottom:149.220000px;}
.y99{bottom:149.400000px;}
.ycc{bottom:149.760000px;}
.yb8{bottom:149.940000px;}
.y7b{bottom:150.300000px;}
.y3a{bottom:170.460000px;}
.ybc{bottom:172.260000px;}
.y6c{bottom:172.440000px;}
.yaa{bottom:172.980000px;}
.y98{bottom:173.160000px;}
.y9d{bottom:173.520000px;}
.y7a{bottom:173.880000px;}
.y39{bottom:194.220000px;}
.ybb{bottom:196.200000px;}
.y6b{bottom:196.560000px;}
.ya9{bottom:196.740000px;}
.y97{bottom:197.280000px;}
.y79{bottom:197.640000px;}
.y38{bottom:218.010000px;}
.yba{bottom:219.990000px;}
.y6a{bottom:220.170000px;}
.y96{bottom:220.890000px;}
.yaf{bottom:221.070000px;}
.y78{bottom:221.430000px;}
.y37{bottom:241.590000px;}
.y69{bottom:243.930000px;}
.y95{bottom:244.650000px;}
.yae{bottom:244.830000px;}
.y77{bottom:245.190000px;}
.y36{bottom:265.350000px;}
.y68{bottom:267.690000px;}
.ya8{bottom:267.870000px;}
.y94{bottom:268.410000px;}
.y76{bottom:268.770000px;}
.y35{bottom:289.110000px;}
.y67{bottom:291.270000px;}
.ya7{bottom:291.630000px;}
.ycb{bottom:291.810000px;}
.y93{bottom:292.170000px;}
.y75{bottom:292.530000px;}
.y34{bottom:312.870000px;}
.ya6{bottom:315.390000px;}
.y92{bottom:315.750000px;}
.yce{bottom:315.930000px;}
.y66{bottom:316.290000px;}
.y33{bottom:336.450000px;}
.ya5{bottom:339.150000px;}
.y91{bottom:339.510000px;}
.ya3{bottom:339.690000px;}
.y65{bottom:340.050000px;}
.y32{bottom:359.850000px;}
.y3e{bottom:360.210000px;}
.y90{bottom:363.270000px;}
.y64{bottom:363.630000px;}
.y31{bottom:383.610000px;}
.y3d{bottom:383.970000px;}
.y8f{bottom:387.030000px;}
.y63{bottom:387.390000px;}
.y30{bottom:403.050000px;}
.y8e{bottom:410.610000px;}
.ya2{bottom:410.790000px;}
.y62{bottom:411.150000px;}
.y2f{bottom:426.630000px;}
.y8d{bottom:434.370000px;}
.y9c{bottom:434.550000px;}
.y61{bottom:434.910000px;}
.y2e{bottom:448.635000px;}
.y8c{bottom:458.175000px;}
.y74{bottom:458.355000px;}
.y60{bottom:458.715000px;}
.y2d{bottom:472.935000px;}
.y8b{bottom:481.935000px;}
.y5f{bottom:482.295000px;}
.y2c{bottom:494.895000px;}
.y8a{bottom:505.155000px;}
.yca{bottom:505.515000px;}
.yb1{bottom:505.695000px;}
.y5e{bottom:506.055000px;}
.y2b{bottom:516.675000px;}
.y89{bottom:528.915000px;}
.yc9{bottom:529.275000px;}
.yb9{bottom:529.455000px;}
.y5d{bottom:529.815000px;}
.y2a{bottom:538.455000px;}
.y88{bottom:552.675000px;}
.yc8{bottom:553.035000px;}
.yb5{bottom:553.215000px;}
.y5c{bottom:553.575000px;}
.y29{bottom:560.235000px;}
.y87{bottom:576.795000px;}
.y5b{bottom:577.155000px;}
.yd0{bottom:580.035000px;}
.y28{bottom:582.015000px;}
.ycf{bottom:600.195000px;}
.y86{bottom:600.555000px;}
.y5a{bottom:600.915000px;}
.y27{bottom:603.975000px;}
.y85{bottom:624.135000px;}
.yb0{bottom:624.315000px;}
.y59{bottom:624.675000px;}
.y26{bottom:625.755000px;}
.y25{bottom:647.535000px;}
.y84{bottom:647.895000px;}
.ya4{bottom:648.075000px;}
.y58{bottom:648.435000px;}
.y24{bottom:669.315000px;}
.y57{bottom:671.655000px;}
.y73{bottom:672.015000px;}
.y23{bottom:691.305000px;}
.y83{bottom:695.445000px;}
.y56{bottom:695.805000px;}
.y22{bottom:713.085000px;}
.y82{bottom:719.025000px;}
.yb3{bottom:719.205000px;}
.y55{bottom:719.565000px;}
.y21{bottom:734.865000px;}
.y81{bottom:742.785000px;}
.ya1{bottom:742.965000px;}
.y54{bottom:743.325000px;}
.y20{bottom:756.645000px;}
.y80{bottom:766.545000px;}
.y53{bottom:766.905000px;}
.y1f{bottom:778.425000px;}
.y7f{bottom:790.305000px;}
.y52{bottom:790.665000px;}
.y1e{bottom:800.385000px;}
.yc7{bottom:813.885000px;}
.yb4{bottom:814.065000px;}
.y51{bottom:814.425000px;}
.y1d{bottom:822.165000px;}
.yc6{bottom:837.645000px;}
.yad{bottom:837.825000px;}
.y50{bottom:838.185000px;}
.y1c{bottom:843.945000px;}
.y4f{bottom:861.405000px;}
.y72{bottom:861.765000px;}
.y1b{bottom:865.725000px;}
.yc5{bottom:885.165000px;}
.y4e{bottom:885.525000px;}
.y1a{bottom:887.325000px;}
.y19{bottom:906.585000px;}
.yc4{bottom:908.745000px;}
.yb6{bottom:908.925000px;}
.y4d{bottom:909.285000px;}
.y17{bottom:915.270000px;}
.y12{bottom:922.470000px;}
.y16{bottom:926.396347px;}
.yc3{bottom:932.550000px;}
.yb2{bottom:932.730000px;}
.y4c{bottom:933.090000px;}
.yc2{bottom:956.310000px;}
.y7e{bottom:956.490000px;}
.y4b{bottom:956.850000px;}
.y7d{bottom:980.070000px;}
.y4a{bottom:980.430000px;}
.yc1{bottom:1003.650000px;}
.y7c{bottom:1003.830000px;}
.y49{bottom:1004.190000px;}
.y10{bottom:1018.590000px;}
.yd{bottom:1025.070000px;}
.yc0{bottom:1027.410000px;}
.ya0{bottom:1027.590000px;}
.y48{bottom:1027.950000px;}
.ybf{bottom:1051.170000px;}
.y47{bottom:1051.350000px;}
.y71{bottom:1051.710000px;}
.ybe{bottom:1074.570000px;}
.y70{bottom:1074.930000px;}
.y46{bottom:1075.290000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.ybd{bottom:1098.150000px;}
.yb7{bottom:1098.690000px;}
.y45{bottom:1099.050000px;}
.y2{bottom:1106.250000px;}
.y9f{bottom:1122.450000px;}
.y44{bottom:1122.810000px;}
.y7{bottom:1128.570000px;}
.y9a{bottom:1146.240000px;}
.y43{bottom:1146.600000px;}
.y4{bottom:1156.860000px;}
.y6f{bottom:1169.820000px;}
.y42{bottom:1170.180000px;}
.y40{bottom:1187.280000px;}
.y3f{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1e{height:30.480469px;}
.h18{height:36.861328px;}
.h1d{height:47.901094px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h1a{height:54.596250px;}
.h9{height:56.084062px;}
.h1f{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1b{height:65.010937px;}
.h1c{height:66.757500px;}
.h14{height:67.803750px;}
.h22{height:67.837500px;}
.h21{height:68.084282px;}
.h20{height:68.956875px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h12{height:96.105000px;}
.h3{height:103.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.089500px;}
.x5{left:10.965000px;}
.x13{left:18.349500px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.x16{left:78.283500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x20{left:113.076000px;}
.x1c{left:129.276000px;}
.x1f{left:135.036000px;}
.x21{left:140.076000px;}
.x19{left:162.030000px;}
.x4{left:168.885000px;}
.x6{left:209.010000px;}
.x15{left:274.528500px;}
.x14{left:276.148500px;}
.x17{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1a{left:473.505000px;}
.x1d{left:478.545000px;}
.x22{left:500.505000px;}
.x1e{left:505.545000px;}
.x1b{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.008000pt;}
.ls13{letter-spacing:-0.912000pt;}
.ls27{letter-spacing:-0.768000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.406933pt;}
.ls17{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls22{letter-spacing:-0.135467pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.101333pt;}
.lsa{letter-spacing:-0.015360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls23{letter-spacing:0.097067pt;}
.ls16{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls21{letter-spacing:0.233067pt;}
.lsb{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.368533pt;}
.ls25{letter-spacing:0.504533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls29{letter-spacing:6.031360pt;}
.ls1a{letter-spacing:6.400000pt;}
.ls1e{letter-spacing:10.240000pt;}
.ls1f{letter-spacing:11.520000pt;}
.lsd{letter-spacing:12.160000pt;}
.ls1c{letter-spacing:16.640000pt;}
.ls24{letter-spacing:24.960000pt;}
.ls11{letter-spacing:30.080000pt;}
.lsf{letter-spacing:32.271360pt;}
.ls26{letter-spacing:34.080000pt;}
.ls15{letter-spacing:35.471360pt;}
.ls20{letter-spacing:37.120000pt;}
.lsc{letter-spacing:38.671360pt;}
.lse{letter-spacing:46.080000pt;}
.ls19{letter-spacing:50.191360pt;}
.ls10{letter-spacing:59.151360pt;}
.ls1b{letter-spacing:69.120000pt;}
.wsc{word-spacing:-58.880000pt;}
.ws0{word-spacing:-21.389227pt;}
.ws1{word-spacing:-16.898560pt;}
.ws3{word-spacing:-16.473600pt;}
.ws2{word-spacing:-16.304533pt;}
.ws7{word-spacing:-15.360000pt;}
.ws13{word-spacing:-15.224533pt;}
.wsd{word-spacing:-15.088533pt;}
.ws9{word-spacing:-14.991467pt;}
.ws10{word-spacing:-14.953067pt;}
.wse{word-spacing:-14.855467pt;}
.ws12{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.584533pt;}
.wsf{word-spacing:-14.448533pt;}
.ws5{word-spacing:-14.144000pt;}
.ws14{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.952000pt;}
.wsb{word-spacing:-13.712000pt;}
.ws4{word-spacing:-13.022933pt;}
.wsa{word-spacing:0.000000pt;}
._3{margin-left:-2.026240pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._4{width:1.995520pt;}
._9{width:3.090560pt;}
._7{width:4.499200pt;}
._8{width:5.904000pt;}
._a{width:6.862507pt;}
._d{width:7.852160pt;}
._5{width:8.828800pt;}
._6{width:10.149120pt;}
._b{width:11.429120pt;}
._c{width:12.990080pt;}
._5f{width:14.848000pt;}
._e{width:15.829760pt;}
._13{width:17.339307pt;}
._15{width:18.559787pt;}
._11{width:19.627520pt;}
._f{width:20.539520pt;}
._10{width:21.530027pt;}
._2d{width:23.223040pt;}
._1b{width:24.258560pt;}
._1f{width:25.848320pt;}
._12{width:27.091627pt;}
._17{width:28.497920pt;}
._16{width:29.440000pt;}
._41{width:30.386560pt;}
._28{width:31.296000pt;}
._25{width:32.384000pt;}
._27{width:33.620480pt;}
._1d{width:34.718720pt;}
._1c{width:35.799040pt;}
._22{width:37.447680pt;}
._33{width:38.538880pt;}
._20{width:39.920640pt;}
._21{width:41.333760pt;}
._2e{width:42.373120pt;}
._2c{width:43.276800pt;}
._2f{width:44.560640pt;}
._60{width:45.466880pt;}
._26{width:46.609067pt;}
._61{width:47.512533pt;}
._36{width:48.607360pt;}
._4c{width:49.694720pt;}
._49{width:50.966827pt;}
._44{width:52.145493pt;}
._24{width:53.527467pt;}
._23{width:55.237120pt;}
._39{width:56.279040pt;}
._3a{width:57.937920pt;}
._35{width:59.340800pt;}
._2a{width:61.176320pt;}
._2b{width:62.090880pt;}
._32{width:63.060480pt;}
._31{width:64.556800pt;}
._34{width:65.568000pt;}
._14{width:67.240960pt;}
._3e{width:68.449920pt;}
._48{width:69.599787pt;}
._3c{width:70.714880pt;}
._54{width:71.711147pt;}
._38{width:73.751680pt;}
._37{width:74.680960pt;}
._59{width:75.643520pt;}
._47{width:76.793600pt;}
._4d{width:77.898240pt;}
._4e{width:78.840320pt;}
._43{width:80.017920pt;}
._42{width:81.346560pt;}
._4b{width:82.588160pt;}
._50{width:84.524160pt;}
._57{width:85.704960pt;}
._4f{width:87.838720pt;}
._46{width:90.380800pt;}
._45{width:91.354240pt;}
._4a{width:92.736000pt;}
._1e{width:93.934720pt;}
._5e{width:95.503360pt;}
._52{width:96.712320pt;}
._51{width:97.623040pt;}
._55{width:99.095040pt;}
._40{width:100.458667pt;}
._5a{width:101.540480pt;}
._3d{width:102.531200pt;}
._62{width:104.512000pt;}
._5c{width:106.839680pt;}
._30{width:108.782720pt;}
._29{width:111.952000pt;}
._5b{width:119.644160pt;}
._3f{width:125.435520pt;}
._3b{width:131.773440pt;}
._58{width:133.235200pt;}
._1a{width:135.905280pt;}
._63{width:137.751680pt;}
._64{width:142.901760pt;}
._53{width:150.922240pt;}
._5d{width:154.854400pt;}
._18{width:168.548907pt;}
._19{width:175.686400pt;}
._2{width:177.258667pt;}
._56{width:312.417280pt;}
._65{width:443.803307pt;}
._66{width:483.789440pt;}
._67{width:752.778667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y15{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y14{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y13{bottom:62.560000pt;}
.y41{bottom:66.880000pt;}
.y3c{bottom:109.440000pt;}
.y6e{bottom:111.040000pt;}
.yac{bottom:111.680000pt;}
.ycd{bottom:112.000000pt;}
.y9e{bottom:112.160000pt;}
.y9b{bottom:112.480000pt;}
.y3b{bottom:130.400000pt;}
.y6d{bottom:132.160000pt;}
.yab{bottom:132.640000pt;}
.y99{bottom:132.800000pt;}
.ycc{bottom:133.120000pt;}
.yb8{bottom:133.280000pt;}
.y7b{bottom:133.600000pt;}
.y3a{bottom:151.520000pt;}
.ybc{bottom:153.120000pt;}
.y6c{bottom:153.280000pt;}
.yaa{bottom:153.760000pt;}
.y98{bottom:153.920000pt;}
.y9d{bottom:154.240000pt;}
.y7a{bottom:154.560000pt;}
.y39{bottom:172.640000pt;}
.ybb{bottom:174.400000pt;}
.y6b{bottom:174.720000pt;}
.ya9{bottom:174.880000pt;}
.y97{bottom:175.360000pt;}
.y79{bottom:175.680000pt;}
.y38{bottom:193.786667pt;}
.yba{bottom:195.546667pt;}
.y6a{bottom:195.706667pt;}
.y96{bottom:196.346667pt;}
.yaf{bottom:196.506667pt;}
.y78{bottom:196.826667pt;}
.y37{bottom:214.746667pt;}
.y69{bottom:216.826667pt;}
.y95{bottom:217.466667pt;}
.yae{bottom:217.626667pt;}
.y77{bottom:217.946667pt;}
.y36{bottom:235.866667pt;}
.y68{bottom:237.946667pt;}
.ya8{bottom:238.106667pt;}
.y94{bottom:238.586667pt;}
.y76{bottom:238.906667pt;}
.y35{bottom:256.986667pt;}
.y67{bottom:258.906667pt;}
.ya7{bottom:259.226667pt;}
.ycb{bottom:259.386667pt;}
.y93{bottom:259.706667pt;}
.y75{bottom:260.026667pt;}
.y34{bottom:278.106667pt;}
.ya6{bottom:280.346667pt;}
.y92{bottom:280.666667pt;}
.yce{bottom:280.826667pt;}
.y66{bottom:281.146667pt;}
.y33{bottom:299.066667pt;}
.ya5{bottom:301.466667pt;}
.y91{bottom:301.786667pt;}
.ya3{bottom:301.946667pt;}
.y65{bottom:302.266667pt;}
.y32{bottom:319.866667pt;}
.y3e{bottom:320.186667pt;}
.y90{bottom:322.906667pt;}
.y64{bottom:323.226667pt;}
.y31{bottom:340.986667pt;}
.y3d{bottom:341.306667pt;}
.y8f{bottom:344.026667pt;}
.y63{bottom:344.346667pt;}
.y30{bottom:358.266667pt;}
.y8e{bottom:364.986667pt;}
.ya2{bottom:365.146667pt;}
.y62{bottom:365.466667pt;}
.y2f{bottom:379.226667pt;}
.y8d{bottom:386.106667pt;}
.y9c{bottom:386.266667pt;}
.y61{bottom:386.586667pt;}
.y2e{bottom:398.786667pt;}
.y8c{bottom:407.266667pt;}
.y74{bottom:407.426667pt;}
.y60{bottom:407.746667pt;}
.y2d{bottom:420.386667pt;}
.y8b{bottom:428.386667pt;}
.y5f{bottom:428.706667pt;}
.y2c{bottom:439.906667pt;}
.y8a{bottom:449.026667pt;}
.yca{bottom:449.346667pt;}
.yb1{bottom:449.506667pt;}
.y5e{bottom:449.826667pt;}
.y2b{bottom:459.266667pt;}
.y89{bottom:470.146667pt;}
.yc9{bottom:470.466667pt;}
.yb9{bottom:470.626667pt;}
.y5d{bottom:470.946667pt;}
.y2a{bottom:478.626667pt;}
.y88{bottom:491.266667pt;}
.yc8{bottom:491.586667pt;}
.yb5{bottom:491.746667pt;}
.y5c{bottom:492.066667pt;}
.y29{bottom:497.986667pt;}
.y87{bottom:512.706667pt;}
.y5b{bottom:513.026667pt;}
.yd0{bottom:515.586667pt;}
.y28{bottom:517.346667pt;}
.ycf{bottom:533.506667pt;}
.y86{bottom:533.826667pt;}
.y5a{bottom:534.146667pt;}
.y27{bottom:536.866667pt;}
.y85{bottom:554.786667pt;}
.yb0{bottom:554.946667pt;}
.y59{bottom:555.266667pt;}
.y26{bottom:556.226667pt;}
.y25{bottom:575.586667pt;}
.y84{bottom:575.906667pt;}
.ya4{bottom:576.066667pt;}
.y58{bottom:576.386667pt;}
.y24{bottom:594.946667pt;}
.y57{bottom:597.026667pt;}
.y73{bottom:597.346667pt;}
.y23{bottom:614.493333pt;}
.y83{bottom:618.173333pt;}
.y56{bottom:618.493333pt;}
.y22{bottom:633.853333pt;}
.y82{bottom:639.133333pt;}
.yb3{bottom:639.293333pt;}
.y55{bottom:639.613333pt;}
.y21{bottom:653.213333pt;}
.y81{bottom:660.253333pt;}
.ya1{bottom:660.413333pt;}
.y54{bottom:660.733333pt;}
.y20{bottom:672.573333pt;}
.y80{bottom:681.373333pt;}
.y53{bottom:681.693333pt;}
.y1f{bottom:691.933333pt;}
.y7f{bottom:702.493333pt;}
.y52{bottom:702.813333pt;}
.y1e{bottom:711.453333pt;}
.yc7{bottom:723.453333pt;}
.yb4{bottom:723.613333pt;}
.y51{bottom:723.933333pt;}
.y1d{bottom:730.813333pt;}
.yc6{bottom:744.573333pt;}
.yad{bottom:744.733333pt;}
.y50{bottom:745.053333pt;}
.y1c{bottom:750.173333pt;}
.y4f{bottom:765.693333pt;}
.y72{bottom:766.013333pt;}
.y1b{bottom:769.533333pt;}
.yc5{bottom:786.813333pt;}
.y4e{bottom:787.133333pt;}
.y1a{bottom:788.733333pt;}
.y19{bottom:805.853333pt;}
.yc4{bottom:807.773333pt;}
.yb6{bottom:807.933333pt;}
.y4d{bottom:808.253333pt;}
.y17{bottom:813.573333pt;}
.y12{bottom:819.973333pt;}
.y16{bottom:823.463420pt;}
.yc3{bottom:828.933333pt;}
.yb2{bottom:829.093333pt;}
.y4c{bottom:829.413333pt;}
.yc2{bottom:850.053333pt;}
.y7e{bottom:850.213333pt;}
.y4b{bottom:850.533333pt;}
.y7d{bottom:871.173333pt;}
.y4a{bottom:871.493333pt;}
.yc1{bottom:892.133333pt;}
.y7c{bottom:892.293333pt;}
.y49{bottom:892.613333pt;}
.y10{bottom:905.413333pt;}
.yd{bottom:911.173333pt;}
.yc0{bottom:913.253333pt;}
.ya0{bottom:913.413333pt;}
.y48{bottom:913.733333pt;}
.ybf{bottom:934.373333pt;}
.y47{bottom:934.533333pt;}
.y71{bottom:934.853333pt;}
.ybe{bottom:955.173333pt;}
.y70{bottom:955.493333pt;}
.y46{bottom:955.813333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.ybd{bottom:976.133333pt;}
.yb7{bottom:976.613333pt;}
.y45{bottom:976.933333pt;}
.y2{bottom:983.333333pt;}
.y9f{bottom:997.733333pt;}
.y44{bottom:998.053333pt;}
.y7{bottom:1003.173333pt;}
.y9a{bottom:1018.880000pt;}
.y43{bottom:1019.200000pt;}
.y4{bottom:1028.320000pt;}
.y6f{bottom:1039.840000pt;}
.y42{bottom:1040.160000pt;}
.y40{bottom:1055.360000pt;}
.y3f{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1e{height:27.093750pt;}
.h18{height:32.765625pt;}
.h1d{height:42.578750pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h1a{height:48.530000pt;}
.h9{height:49.852500pt;}
.h1f{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h1c{height:59.340000pt;}
.h14{height:60.270000pt;}
.h22{height:60.300000pt;}
.h21{height:60.519362pt;}
.h20{height:61.295000pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h12{height:85.426667pt;}
.h3{height:92.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.190667pt;}
.x5{left:9.746667pt;}
.x13{left:16.310667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.x16{left:69.585333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x20{left:100.512000pt;}
.x1c{left:114.912000pt;}
.x1f{left:120.032000pt;}
.x21{left:124.512000pt;}
.x19{left:144.026667pt;}
.x4{left:150.120000pt;}
.x6{left:185.786667pt;}
.x15{left:244.025333pt;}
.x14{left:245.465333pt;}
.x17{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1a{left:420.893333pt;}
.x1d{left:425.373333pt;}
.x22{left:444.893333pt;}
.x1e{left:449.373333pt;}
.x1b{left:468.893333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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