
    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_90227b51a85173ba24305f07.woff')format("woff");}.ff1{font-family:ff1;line-height:1.147461;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_81fbc999045bd79d5aa2f5af.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6622c779b54454825088cd8a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.147461;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_3b39d7a3b16dbb51cbf7b7dc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f38c8abdedbffe3a7f5f4e44.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_b5030e215b61b5d58d66075c.woff')format("woff");}.ff7{font-family:ff7;line-height:2.549805;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_1a40c3a527a377c2c819accb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_1d8541952aa46fccec50e36d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.948242;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_2abae7bf6743c3d4baf0089f.woff')format("woff");}.ffa{font-family:ffa;line-height:2.549805;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;}
.m4{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,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);}
.m3{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);}
.v13{vertical-align:-126.000000px;}
.v5{vertical-align:-27.000000px;}
.v2{vertical-align:-15.000000px;}
.v11{vertical-align:-12.000000px;}
.v1{vertical-align:-9.000000px;}
.v7{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:3.000000px;}
.v3{vertical-align:15.000000px;}
.v6{vertical-align:17.940000px;}
.vd{vertical-align:21.000000px;}
.v18{vertical-align:24.000000px;}
.v8{vertical-align:27.000000px;}
.v19{vertical-align:33.000000px;}
.vf{vertical-align:36.000000px;}
.ve{vertical-align:39.000000px;}
.v4{vertical-align:42.000000px;}
.v17{vertical-align:48.180000px;}
.v16{vertical-align:51.180000px;}
.v14{vertical-align:54.000000px;}
.va{vertical-align:69.000000px;}
.v12{vertical-align:72.000000px;}
.v1b{vertical-align:78.000000px;}
.v1a{vertical-align:93.000000px;}
.v15{vertical-align:102.180000px;}
.vb{vertical-align:111.180000px;}
.vc{vertical-align:114.180000px;}
.v10{vertical-align:117.000000px;}
.ls4a{letter-spacing:-3.048000px;}
.lsc{letter-spacing:-1.032000px;}
.lsb{letter-spacing:-0.984000px;}
.ls1f{letter-spacing:-0.888000px;}
.ls43{letter-spacing:-0.312000px;}
.ls9{letter-spacing:-0.036000px;}
.ls20{letter-spacing:-0.024000px;}
.ls7{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.021000px;}
.lsa{letter-spacing:0.024000px;}
.ls33{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.180000px;}
.ls3d{letter-spacing:0.204000px;}
.ls2d{letter-spacing:0.240000px;}
.ls17{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.312000px;}
.ls46{letter-spacing:0.516000px;}
.ls6{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.636000px;}
.ls22{letter-spacing:0.648000px;}
.lsd{letter-spacing:0.696000px;}
.ls29{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.756000px;}
.ls28{letter-spacing:0.792000px;}
.lse{letter-spacing:0.876000px;}
.ls2c{letter-spacing:0.954000px;}
.ls8{letter-spacing:0.984000px;}
.ls44{letter-spacing:1.248000px;}
.ls2{letter-spacing:1.320000px;}
.ls3b{letter-spacing:1.344000px;}
.ls21{letter-spacing:1.416000px;}
.ls3c{letter-spacing:1.464000px;}
.ls4c{letter-spacing:1.476000px;}
.ls31{letter-spacing:1.560000px;}
.ls14{letter-spacing:1.716000px;}
.ls24{letter-spacing:1.728000px;}
.ls30{letter-spacing:1.908000px;}
.ls4b{letter-spacing:1.968000px;}
.ls1e{letter-spacing:2.148000px;}
.ls4d{letter-spacing:2.976000px;}
.ls40{letter-spacing:3.072000px;}
.ls41{letter-spacing:3.120000px;}
.ls3e{letter-spacing:3.192000px;}
.ls1a{letter-spacing:3.411000px;}
.lsf{letter-spacing:3.471000px;}
.ls49{letter-spacing:3.984000px;}
.ls48{letter-spacing:4.044000px;}
.ls38{letter-spacing:5.145000px;}
.ls34{letter-spacing:5.325000px;}
.ls36{letter-spacing:6.081000px;}
.ls35{letter-spacing:6.099000px;}
.ls47{letter-spacing:10.044000px;}
.ls32{letter-spacing:15.120000px;}
.ls19{letter-spacing:15.396000px;}
.ls25{letter-spacing:18.120000px;}
.ls37{letter-spacing:18.201000px;}
.ls13{letter-spacing:18.216000px;}
.ls18{letter-spacing:18.471000px;}
.ls12{letter-spacing:18.651000px;}
.ls11{letter-spacing:20.844000px;}
.ls26{letter-spacing:21.336000px;}
.ls10{letter-spacing:22.872000px;}
.ls2f{letter-spacing:23.292000px;}
.ls2a{letter-spacing:23.940000px;}
.ls39{letter-spacing:26.085000px;}
.ls3f{letter-spacing:51.852000px;}
.ls27{letter-spacing:75.720000px;}
.ls0{letter-spacing:166.806000px;}
.ls3a{letter-spacing:204.240000px;}
.ls3{letter-spacing:488.016000px;}
.ls15{letter-spacing:764.412000px;}
.ls1b{letter-spacing:812.592000px;}
.ls1d{letter-spacing:964.191000px;}
.ls42{letter-spacing:972.672000px;}
.ls2b{letter-spacing:1102.620000px;}
.ls2e{letter-spacing:1402.611000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws11{word-spacing:-71.688000px;}
.ws3{word-spacing:-29.988000px;}
.ws1b{word-spacing:-22.992000px;}
.ws5{word-spacing:-21.000000px;}
.ws4{word-spacing:-20.040000px;}
.wsf{word-spacing:-20.016000px;}
.wse{word-spacing:-19.992000px;}
.ws7{word-spacing:-19.032000px;}
.ws8{word-spacing:-18.984000px;}
.ws1a{word-spacing:-17.088000px;}
.wsd{word-spacing:-16.824000px;}
.ws6{word-spacing:-16.680000px;}
.ws15{word-spacing:-16.080000px;}
.wsa{word-spacing:-15.840000px;}
.wsc{word-spacing:-14.952000px;}
.ws12{word-spacing:-14.856000px;}
.ws2{word-spacing:-14.328000px;}
.ws0{word-spacing:-13.656000px;}
.ws1{word-spacing:-13.344000px;}
.ws19{word-spacing:-12.360000px;}
.ws14{word-spacing:-11.826800px;}
.ws10{word-spacing:-11.220000px;}
.ws9{word-spacing:0.000000px;}
.ws17{word-spacing:14.376000px;}
.ws13{word-spacing:34.176000px;}
.ws18{word-spacing:511.731000px;}
.ws16{word-spacing:952.032000px;}
._2b{margin-left:-8.538000px;}
._1d{margin-left:-7.206000px;}
._19{margin-left:-5.826000px;}
._5{margin-left:-4.446000px;}
._2{margin-left:-2.454000px;}
._1{margin-left:-1.008000px;}
._0{width:1.584000px;}
._3{width:3.222000px;}
._7{width:4.806000px;}
._8{width:6.834000px;}
._e{width:8.298000px;}
._b{width:9.936000px;}
._1e{width:11.493000px;}
._f{width:12.690000px;}
._18{width:13.740000px;}
._a{width:15.582000px;}
._9{width:16.848000px;}
._c{width:18.594000px;}
._17{width:20.130000px;}
._d{width:21.960000px;}
._16{width:23.088000px;}
._10{width:24.840000px;}
._11{width:25.848000px;}
._21{width:27.936000px;}
._14{width:30.522000px;}
._15{width:31.824000px;}
._20{width:33.228000px;}
._1f{width:34.440000px;}
._2f{width:35.472000px;}
._12{width:36.594000px;}
._13{width:37.854000px;}
._24{width:39.204000px;}
._23{width:40.542000px;}
._25{width:42.522000px;}
._22{width:43.524000px;}
._2d{width:45.864000px;}
._2e{width:46.872000px;}
._28{width:48.096000px;}
._29{width:49.686000px;}
._1a{width:51.840000px;}
._2c{width:84.960000px;}
._1c{width:91.236000px;}
._27{width:114.984000px;}
._26{width:115.992000px;}
._4{width:508.986000px;}
._1b{width:794.220000px;}
._2a{width:1119.120000px;}
._6{width:1146.120000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:12.000000px;}
.fs1{font-size:30.000000px;}
.fs4{font-size:34.059259px;}
.fsa{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs9{font-size:53.758183px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.754693px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:0.750000px;}
.yc9{bottom:1.500000px;}
.y8f{bottom:3.750000px;}
.ycc{bottom:6.000000px;}
.y8e{bottom:20.250000px;}
.yd4{bottom:21.000000px;}
.yc8{bottom:21.750000px;}
.yd0{bottom:24.750000px;}
.ycb{bottom:27.000000px;}
.y6{bottom:28.413862px;}
.y7{bottom:36.114559px;}
.yd3{bottom:38.250000px;}
.yc7{bottom:39.000000px;}
.yd2{bottom:42.030000px;}
.ycf{bottom:42.787500px;}
.yca{bottom:44.280000px;}
.yce{bottom:45.037500px;}
.y4{bottom:45.787500px;}
.y3{bottom:65.287500px;}
.y8d{bottom:96.075000px;}
.yc6{bottom:97.575000px;}
.ycd{bottom:98.325000px;}
.yb4{bottom:102.825000px;}
.yde{bottom:105.825000px;}
.ye7{bottom:118.575000px;}
.y64{bottom:120.075000px;}
.yb3{bottom:123.825000px;}
.ydd{bottom:126.075000px;}
.ye6{bottom:139.612500px;}
.y63{bottom:140.362500px;}
.yb1{bottom:146.362500px;}
.ydc{bottom:147.112500px;}
.yb0{bottom:158.370000px;}
.ye5{bottom:159.870000px;}
.y62{bottom:161.370000px;}
.yb2{bottom:165.120000px;}
.ydb{bottom:168.120000px;}
.ye4{bottom:180.870000px;}
.y61{bottom:182.355000px;}
.yfe{bottom:185.370000px;}
.yda{bottom:188.370000px;}
.yaf{bottom:192.855000px;}
.ye3{bottom:201.120000px;}
.y60{bottom:202.605000px;}
.yfd{bottom:206.400000px;}
.yd9{bottom:209.400000px;}
.yae{bottom:213.900000px;}
.ye2{bottom:222.150000px;}
.y5f{bottom:223.650000px;}
.yfc{bottom:226.650000px;}
.yd8{bottom:229.650000px;}
.yad{bottom:234.150000px;}
.y32{bottom:243.150000px;}
.y5e{bottom:243.900000px;}
.yfb{bottom:249.900000px;}
.yd7{bottom:250.650000px;}
.yac{bottom:255.150000px;}
.y31{bottom:263.400000px;}
.y5d{bottom:264.900000px;}
.yfa{bottom:270.195000px;}
.yd6{bottom:272.445000px;}
.yab{bottom:276.195000px;}
.y30{bottom:284.445000px;}
.y5c{bottom:285.945000px;}
.yf9{bottom:291.195000px;}
.yaa{bottom:294.945000px;}
.ydf{bottom:303.945000px;}
.y2f{bottom:304.695000px;}
.y5b{bottom:306.195000px;}
.yf8{bottom:311.445000px;}
.ya8{bottom:318.195000px;}
.y2e{bottom:325.695000px;}
.y5a{bottom:327.195000px;}
.yf7{bottom:332.475000px;}
.ya9{bottom:345.225000px;}
.y2d{bottom:345.975000px;}
.y59{bottom:347.475000px;}
.y8c{bottom:349.725000px;}
.yf6{bottom:353.475000px;}
.ya7{bottom:360.225000px;}
.y2c{bottom:366.975000px;}
.y58{bottom:368.475000px;}
.y8b{bottom:370.725000px;}
.yf5{bottom:373.725000px;}
.ya6{bottom:380.475000px;}
.y2b{bottom:387.975000px;}
.y57{bottom:389.475000px;}
.y8a{bottom:390.975000px;}
.yf4{bottom:394.725000px;}
.ya5{bottom:401.505000px;}
.y2a{bottom:408.255000px;}
.y56{bottom:409.755000px;}
.y89{bottom:412.005000px;}
.yf3{bottom:415.005000px;}
.ya4{bottom:421.755000px;}
.y29{bottom:429.255000px;}
.y55{bottom:430.755000px;}
.y88{bottom:432.255000px;}
.yf2{bottom:436.005000px;}
.ya3{bottom:442.755000px;}
.y28{bottom:449.505000px;}
.y54{bottom:451.005000px;}
.y87{bottom:453.255000px;}
.yf1{bottom:457.005000px;}
.ya2{bottom:460.755000px;}
.y27{bottom:470.550000px;}
.y53{bottom:472.050000px;}
.y86{bottom:474.300000px;}
.yf0{bottom:477.300000px;}
.y26{bottom:491.550000px;}
.y52{bottom:493.050000px;}
.y85{bottom:494.550000px;}
.yef{bottom:498.300000px;}
.ya1{bottom:504.300000px;}
.y25{bottom:511.800000px;}
.y51{bottom:513.300000px;}
.y84{bottom:515.550000px;}
.yee{bottom:518.550000px;}
.ya0{bottom:525.345000px;}
.y24{bottom:532.830000px;}
.y50{bottom:534.345000px;}
.y83{bottom:535.845000px;}
.yed{bottom:539.580000px;}
.y9f{bottom:546.330000px;}
.yd1{bottom:551.595000px;}
.y23{bottom:553.080000px;}
.y4f{bottom:555.345000px;}
.y82{bottom:556.830000px;}
.yec{bottom:560.595000px;}
.y9e{bottom:566.580000px;}
.y22{bottom:574.095000px;}
.y4e{bottom:576.345000px;}
.y81{bottom:577.845000px;}
.yeb{bottom:580.845000px;}
.y9d{bottom:587.595000px;}
.y21{bottom:595.125000px;}
.y4d{bottom:597.375000px;}
.y80{bottom:598.125000px;}
.yea{bottom:601.875000px;}
.y9c{bottom:603.375000px;}
.y20{bottom:615.375000px;}
.y99{bottom:616.875000px;}
.y4c{bottom:618.375000px;}
.y7f{bottom:619.125000px;}
.y98{bottom:620.625000px;}
.y9a{bottom:621.375000px;}
.ye9{bottom:622.125000px;}
.y1f{bottom:636.375000px;}
.y4b{bottom:638.625000px;}
.yc5{bottom:639.375000px;}
.y7e{bottom:640.875000px;}
.y9b{bottom:641.625000px;}
.ye8{bottom:643.125000px;}
.y97{bottom:654.405000px;}
.y1e{bottom:656.670000px;}
.y4a{bottom:659.670000px;}
.yc4{bottom:660.405000px;}
.y7d{bottom:664.155000px;}
.y96{bottom:675.405000px;}
.y1d{bottom:677.655000px;}
.y49{bottom:680.655000px;}
.yc3{bottom:681.405000px;}
.y7c{bottom:684.405000px;}
.y95{bottom:696.405000px;}
.y1c{bottom:698.670000px;}
.y48{bottom:700.905000px;}
.yc2{bottom:701.655000px;}
.y7b{bottom:705.420000px;}
.y94{bottom:716.655000px;}
.y1b{bottom:718.950000px;}
.y47{bottom:721.950000px;}
.yc1{bottom:722.700000px;}
.y7a{bottom:725.700000px;}
.y93{bottom:733.950000px;}
.y1a{bottom:739.950000px;}
.ye1{bottom:740.700000px;}
.y46{bottom:742.200000px;}
.y92{bottom:742.950000px;}
.y79{bottom:746.700000px;}
.y19{bottom:760.200000px;}
.y45{bottom:763.200000px;}
.yc0{bottom:763.950000px;}
.y78{bottom:767.700000px;}
.y91{bottom:771.450000px;}
.y18{bottom:781.200000px;}
.y44{bottom:784.230000px;}
.ybf{bottom:784.995000px;}
.y77{bottom:787.995000px;}
.y17{bottom:802.245000px;}
.y43{bottom:804.480000px;}
.ybe{bottom:805.245000px;}
.y90{bottom:808.245000px;}
.y76{bottom:808.995000px;}
.y16{bottom:823.230000px;}
.y42{bottom:825.495000px;}
.ybd{bottom:826.230000px;}
.y75{bottom:829.245000px;}
.y41{bottom:845.745000px;}
.y15{bottom:846.495000px;}
.y74{bottom:850.275000px;}
.y40{bottom:866.775000px;}
.y14{bottom:867.525000px;}
.y73{bottom:871.275000px;}
.y13{bottom:887.775000px;}
.ybc{bottom:888.525000px;}
.y72{bottom:891.525000px;}
.y12{bottom:905.025000px;}
.y3f{bottom:908.025000px;}
.ybb{bottom:908.775000px;}
.y71{bottom:912.570000px;}
.y11{bottom:923.070000px;}
.y3e{bottom:929.070000px;}
.yba{bottom:929.820000px;}
.ye0{bottom:930.570000px;}
.y70{bottom:932.820000px;}
.y10{bottom:943.320000px;}
.y3d{bottom:949.320000px;}
.yb9{bottom:950.070000px;}
.y6f{bottom:953.820000px;}
.yf{bottom:964.320000px;}
.y3c{bottom:970.320000px;}
.yb8{bottom:971.070000px;}
.y6e{bottom:974.820000px;}
.ye{bottom:984.600000px;}
.y3b{bottom:991.350000px;}
.yb7{bottom:992.100000px;}
.y6d{bottom:995.100000px;}
.yd{bottom:1005.600000px;}
.y3a{bottom:1012.350000px;}
.y6c{bottom:1016.100000px;}
.yc{bottom:1028.100000px;}
.y39{bottom:1032.600000px;}
.yb6{bottom:1033.350000px;}
.y6b{bottom:1036.350000px;}
.y38{bottom:1053.630000px;}
.y6a{bottom:1057.380000px;}
.yb{bottom:1058.880000px;}
.y37{bottom:1074.630000px;}
.y69{bottom:1078.380000px;}
.ya{bottom:1090.380000px;}
.y36{bottom:1095.630000px;}
.y68{bottom:1098.630000px;}
.y35{bottom:1115.925000px;}
.yb5{bottom:1116.675000px;}
.y67{bottom:1119.675000px;}
.y9{bottom:1121.175000px;}
.y34{bottom:1136.925000px;}
.y66{bottom:1139.925000px;}
.y8{bottom:1152.675000px;}
.y33{bottom:1158.675000px;}
.y65{bottom:1160.925000px;}
.y2{bottom:1189.455000px;}
.y5{bottom:1192.050000px;}
.y1{bottom:1208.955000px;}
.h23{height:8.332031px;}
.h6{height:33.876323px;}
.h3{height:44.070184px;}
.h5{height:44.098032px;}
.h1{height:44.976562px;}
.h2{height:49.992188px;}
.h27{height:53.121094px;}
.ha{height:54.140625px;}
.hb{height:56.220703px;}
.hc{height:63.164062px;}
.h4{height:66.396148px;}
.h9{height:67.464844px;}
.h16{height:79.612793px;}
.h8{height:81.210938px;}
.h15{height:83.918413px;}
.h1f{height:88.334531px;}
.h7{height:101.197266px;}
.hd{height:112.394531px;}
.he{height:115.334531px;}
.hf{height:115.394531px;}
.h12{height:151.394531px;}
.h13{height:154.394531px;}
.h1b{height:160.394531px;}
.h1e{height:160.424531px;}
.h19{height:163.574531px;}
.h1a{height:166.394531px;}
.h1d{height:169.334531px;}
.h17{height:184.394531px;}
.h1c{height:208.394531px;}
.h18{height:214.574531px;}
.h11{height:226.574531px;}
.h14{height:229.394531px;}
.h10{height:234.870000px;}
.h22{height:255.150000px;}
.h21{height:354.975000px;}
.h26{height:385.725000px;}
.h20{height:408.225000px;}
.h24{height:415.725000px;}
.h25{height:450.270000px;}
.h0{height:1263.000000px;}
.w2{width:53.450377px;}
.w3{width:53.557224px;}
.w5{width:673.305000px;}
.w9{width:678.555000px;}
.w8{width:681.555000px;}
.w6{width:701.805000px;}
.wa{width:715.350000px;}
.w4{width:718.350000px;}
.w7{width:737.100000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:14.250000px;}
.x2e{left:19.537500px;}
.x2b{left:30.787500px;}
.x39{left:35.287500px;}
.x2f{left:42.787500px;}
.x3e{left:61.545000px;}
.x2{left:73.491283px;}
.x30{left:83.325000px;}
.x1{left:84.824987px;}
.x12{left:87.075000px;}
.x3c{left:89.325000px;}
.x34{left:93.825000px;}
.x2d{left:96.075000px;}
.xa{left:105.074987px;}
.x7{left:107.324987px;}
.x6{left:109.574987px;}
.x41{left:117.862487px;}
.x3a{left:126.120000px;}
.x37{left:130.620000px;}
.x14{left:132.870000px;}
.x8{left:136.612487px;}
.x5{left:146.362487px;}
.x20{left:160.649987px;}
.x9{left:166.649987px;}
.x42{left:180.899987px;}
.x33{left:221.445000px;}
.xb{left:226.694987px;}
.x24{left:242.444987px;}
.x25{left:244.694987px;}
.x2c{left:253.725000px;}
.x23{left:274.724987px;}
.x22{left:281.474987px;}
.xe{left:299.519987px;}
.x21{left:302.504987px;}
.xf{left:312.269987px;}
.x11{left:334.019987px;}
.x3f{left:347.549987px;}
.x10{left:350.549987px;}
.x26{left:352.799987px;}
.x15{left:364.049987px;}
.x32{left:368.550000px;}
.x19{left:370.799987px;}
.x3b{left:377.549987px;}
.x27{left:382.799987px;}
.xd{left:385.049987px;}
.x1e{left:388.049987px;}
.x40{left:389.594987px;}
.x29{left:397.094987px;}
.x1f{left:400.844987px;}
.xc{left:403.844987px;}
.x3{left:407.594987px;}
.x1d{left:425.594987px;}
.x1c{left:433.094987px;}
.x4{left:446.624987px;}
.x1a{left:455.624987px;}
.x16{left:458.624987px;}
.x17{left:468.374987px;}
.x1b{left:476.624987px;}
.x18{left:481.919987px;}
.x28{left:514.904987px;}
.x2a{left:595.245000px;}
.x35{left:610.995000px;}
.x38{left:614.025000px;}
.x3d{left:630.525000px;}
.x13{left:697.305000px;}
.x31{left:717.555000px;}
@media print{
.v13{vertical-align:-112.000000pt;}
.v5{vertical-align:-24.000000pt;}
.v2{vertical-align:-13.333333pt;}
.v11{vertical-align:-10.666667pt;}
.v1{vertical-align:-8.000000pt;}
.v7{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.666667pt;}
.v3{vertical-align:13.333333pt;}
.v6{vertical-align:15.946667pt;}
.vd{vertical-align:18.666667pt;}
.v18{vertical-align:21.333333pt;}
.v8{vertical-align:24.000000pt;}
.v19{vertical-align:29.333333pt;}
.vf{vertical-align:32.000000pt;}
.ve{vertical-align:34.666667pt;}
.v4{vertical-align:37.333333pt;}
.v17{vertical-align:42.826667pt;}
.v16{vertical-align:45.493333pt;}
.v14{vertical-align:48.000000pt;}
.va{vertical-align:61.333333pt;}
.v12{vertical-align:64.000000pt;}
.v1b{vertical-align:69.333333pt;}
.v1a{vertical-align:82.666667pt;}
.v15{vertical-align:90.826667pt;}
.vb{vertical-align:98.826667pt;}
.vc{vertical-align:101.493333pt;}
.v10{vertical-align:104.000000pt;}
.ls4a{letter-spacing:-2.709333pt;}
.lsc{letter-spacing:-0.917333pt;}
.lsb{letter-spacing:-0.874667pt;}
.ls1f{letter-spacing:-0.789333pt;}
.ls43{letter-spacing:-0.277333pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls20{letter-spacing:-0.021333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.018667pt;}
.lsa{letter-spacing:0.021333pt;}
.ls33{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls3d{letter-spacing:0.181333pt;}
.ls2d{letter-spacing:0.213333pt;}
.ls17{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.277333pt;}
.ls46{letter-spacing:0.458667pt;}
.ls6{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.565333pt;}
.ls22{letter-spacing:0.576000pt;}
.lsd{letter-spacing:0.618667pt;}
.ls29{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.672000pt;}
.ls28{letter-spacing:0.704000pt;}
.lse{letter-spacing:0.778667pt;}
.ls2c{letter-spacing:0.848000pt;}
.ls8{letter-spacing:0.874667pt;}
.ls44{letter-spacing:1.109333pt;}
.ls2{letter-spacing:1.173333pt;}
.ls3b{letter-spacing:1.194667pt;}
.ls21{letter-spacing:1.258667pt;}
.ls3c{letter-spacing:1.301333pt;}
.ls4c{letter-spacing:1.312000pt;}
.ls31{letter-spacing:1.386667pt;}
.ls14{letter-spacing:1.525333pt;}
.ls24{letter-spacing:1.536000pt;}
.ls30{letter-spacing:1.696000pt;}
.ls4b{letter-spacing:1.749333pt;}
.ls1e{letter-spacing:1.909333pt;}
.ls4d{letter-spacing:2.645333pt;}
.ls40{letter-spacing:2.730667pt;}
.ls41{letter-spacing:2.773333pt;}
.ls3e{letter-spacing:2.837333pt;}
.ls1a{letter-spacing:3.032000pt;}
.lsf{letter-spacing:3.085333pt;}
.ls49{letter-spacing:3.541333pt;}
.ls48{letter-spacing:3.594667pt;}
.ls38{letter-spacing:4.573333pt;}
.ls34{letter-spacing:4.733333pt;}
.ls36{letter-spacing:5.405333pt;}
.ls35{letter-spacing:5.421333pt;}
.ls47{letter-spacing:8.928000pt;}
.ls32{letter-spacing:13.440000pt;}
.ls19{letter-spacing:13.685333pt;}
.ls25{letter-spacing:16.106667pt;}
.ls37{letter-spacing:16.178667pt;}
.ls13{letter-spacing:16.192000pt;}
.ls18{letter-spacing:16.418667pt;}
.ls12{letter-spacing:16.578667pt;}
.ls11{letter-spacing:18.528000pt;}
.ls26{letter-spacing:18.965333pt;}
.ls10{letter-spacing:20.330667pt;}
.ls2f{letter-spacing:20.704000pt;}
.ls2a{letter-spacing:21.280000pt;}
.ls39{letter-spacing:23.186667pt;}
.ls3f{letter-spacing:46.090667pt;}
.ls27{letter-spacing:67.306667pt;}
.ls0{letter-spacing:148.272000pt;}
.ls3a{letter-spacing:181.546667pt;}
.ls3{letter-spacing:433.792000pt;}
.ls15{letter-spacing:679.477333pt;}
.ls1b{letter-spacing:722.304000pt;}
.ls1d{letter-spacing:857.058667pt;}
.ls42{letter-spacing:864.597333pt;}
.ls2b{letter-spacing:980.106667pt;}
.ls2e{letter-spacing:1246.765333pt;}
.wsb{word-spacing:-64.000000pt;}
.ws11{word-spacing:-63.722667pt;}
.ws3{word-spacing:-26.656000pt;}
.ws1b{word-spacing:-20.437333pt;}
.ws5{word-spacing:-18.666667pt;}
.ws4{word-spacing:-17.813333pt;}
.wsf{word-spacing:-17.792000pt;}
.wse{word-spacing:-17.770667pt;}
.ws7{word-spacing:-16.917333pt;}
.ws8{word-spacing:-16.874667pt;}
.ws1a{word-spacing:-15.189333pt;}
.wsd{word-spacing:-14.954667pt;}
.ws6{word-spacing:-14.826667pt;}
.ws15{word-spacing:-14.293333pt;}
.wsa{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.290667pt;}
.ws12{word-spacing:-13.205333pt;}
.ws2{word-spacing:-12.736000pt;}
.ws0{word-spacing:-12.138667pt;}
.ws1{word-spacing:-11.861333pt;}
.ws19{word-spacing:-10.986667pt;}
.ws14{word-spacing:-10.512711pt;}
.ws10{word-spacing:-9.973333pt;}
.ws9{word-spacing:0.000000pt;}
.ws17{word-spacing:12.778667pt;}
.ws13{word-spacing:30.378667pt;}
.ws18{word-spacing:454.872000pt;}
.ws16{word-spacing:846.250667pt;}
._2b{margin-left:-7.589333pt;}
._1d{margin-left:-6.405333pt;}
._19{margin-left:-5.178667pt;}
._5{margin-left:-3.952000pt;}
._2{margin-left:-2.181333pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.408000pt;}
._3{width:2.864000pt;}
._7{width:4.272000pt;}
._8{width:6.074667pt;}
._e{width:7.376000pt;}
._b{width:8.832000pt;}
._1e{width:10.216000pt;}
._f{width:11.280000pt;}
._18{width:12.213333pt;}
._a{width:13.850667pt;}
._9{width:14.976000pt;}
._c{width:16.528000pt;}
._17{width:17.893333pt;}
._d{width:19.520000pt;}
._16{width:20.522667pt;}
._10{width:22.080000pt;}
._11{width:22.976000pt;}
._21{width:24.832000pt;}
._14{width:27.130667pt;}
._15{width:28.288000pt;}
._20{width:29.536000pt;}
._1f{width:30.613333pt;}
._2f{width:31.530667pt;}
._12{width:32.528000pt;}
._13{width:33.648000pt;}
._24{width:34.848000pt;}
._23{width:36.037333pt;}
._25{width:37.797333pt;}
._22{width:38.688000pt;}
._2d{width:40.768000pt;}
._2e{width:41.664000pt;}
._28{width:42.752000pt;}
._29{width:44.165333pt;}
._1a{width:46.080000pt;}
._2c{width:75.520000pt;}
._1c{width:81.098667pt;}
._27{width:102.208000pt;}
._26{width:103.104000pt;}
._4{width:452.432000pt;}
._1b{width:705.973333pt;}
._2a{width:994.773333pt;}
._6{width:1018.773333pt;}
.fsb{font-size:10.666667pt;}
.fs1{font-size:26.666667pt;}
.fs4{font-size:30.274897pt;}
.fsa{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs9{font-size:47.785051pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:59.337505pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:0.666667pt;}
.yc9{bottom:1.333333pt;}
.y8f{bottom:3.333333pt;}
.ycc{bottom:5.333333pt;}
.y8e{bottom:18.000000pt;}
.yd4{bottom:18.666667pt;}
.yc8{bottom:19.333333pt;}
.yd0{bottom:22.000000pt;}
.ycb{bottom:24.000000pt;}
.y6{bottom:25.256766pt;}
.y7{bottom:32.101830pt;}
.yd3{bottom:34.000000pt;}
.yc7{bottom:34.666667pt;}
.yd2{bottom:37.360000pt;}
.ycf{bottom:38.033333pt;}
.yca{bottom:39.360000pt;}
.yce{bottom:40.033333pt;}
.y4{bottom:40.700000pt;}
.y3{bottom:58.033333pt;}
.y8d{bottom:85.400000pt;}
.yc6{bottom:86.733333pt;}
.ycd{bottom:87.400000pt;}
.yb4{bottom:91.400000pt;}
.yde{bottom:94.066667pt;}
.ye7{bottom:105.400000pt;}
.y64{bottom:106.733333pt;}
.yb3{bottom:110.066667pt;}
.ydd{bottom:112.066667pt;}
.ye6{bottom:124.100000pt;}
.y63{bottom:124.766667pt;}
.yb1{bottom:130.100000pt;}
.ydc{bottom:130.766667pt;}
.yb0{bottom:140.773333pt;}
.ye5{bottom:142.106667pt;}
.y62{bottom:143.440000pt;}
.yb2{bottom:146.773333pt;}
.ydb{bottom:149.440000pt;}
.ye4{bottom:160.773333pt;}
.y61{bottom:162.093333pt;}
.yfe{bottom:164.773333pt;}
.yda{bottom:167.440000pt;}
.yaf{bottom:171.426667pt;}
.ye3{bottom:178.773333pt;}
.y60{bottom:180.093333pt;}
.yfd{bottom:183.466667pt;}
.yd9{bottom:186.133333pt;}
.yae{bottom:190.133333pt;}
.ye2{bottom:197.466667pt;}
.y5f{bottom:198.800000pt;}
.yfc{bottom:201.466667pt;}
.yd8{bottom:204.133333pt;}
.yad{bottom:208.133333pt;}
.y32{bottom:216.133333pt;}
.y5e{bottom:216.800000pt;}
.yfb{bottom:222.133333pt;}
.yd7{bottom:222.800000pt;}
.yac{bottom:226.800000pt;}
.y31{bottom:234.133333pt;}
.y5d{bottom:235.466667pt;}
.yfa{bottom:240.173333pt;}
.yd6{bottom:242.173333pt;}
.yab{bottom:245.506667pt;}
.y30{bottom:252.840000pt;}
.y5c{bottom:254.173333pt;}
.yf9{bottom:258.840000pt;}
.yaa{bottom:262.173333pt;}
.ydf{bottom:270.173333pt;}
.y2f{bottom:270.840000pt;}
.y5b{bottom:272.173333pt;}
.yf8{bottom:276.840000pt;}
.ya8{bottom:282.840000pt;}
.y2e{bottom:289.506667pt;}
.y5a{bottom:290.840000pt;}
.yf7{bottom:295.533333pt;}
.ya9{bottom:306.866667pt;}
.y2d{bottom:307.533333pt;}
.y59{bottom:308.866667pt;}
.y8c{bottom:310.866667pt;}
.yf6{bottom:314.200000pt;}
.ya7{bottom:320.200000pt;}
.y2c{bottom:326.200000pt;}
.y58{bottom:327.533333pt;}
.y8b{bottom:329.533333pt;}
.yf5{bottom:332.200000pt;}
.ya6{bottom:338.200000pt;}
.y2b{bottom:344.866667pt;}
.y57{bottom:346.200000pt;}
.y8a{bottom:347.533333pt;}
.yf4{bottom:350.866667pt;}
.ya5{bottom:356.893333pt;}
.y2a{bottom:362.893333pt;}
.y56{bottom:364.226667pt;}
.y89{bottom:366.226667pt;}
.yf3{bottom:368.893333pt;}
.ya4{bottom:374.893333pt;}
.y29{bottom:381.560000pt;}
.y55{bottom:382.893333pt;}
.y88{bottom:384.226667pt;}
.yf2{bottom:387.560000pt;}
.ya3{bottom:393.560000pt;}
.y28{bottom:399.560000pt;}
.y54{bottom:400.893333pt;}
.y87{bottom:402.893333pt;}
.yf1{bottom:406.226667pt;}
.ya2{bottom:409.560000pt;}
.y27{bottom:418.266667pt;}
.y53{bottom:419.600000pt;}
.y86{bottom:421.600000pt;}
.yf0{bottom:424.266667pt;}
.y26{bottom:436.933333pt;}
.y52{bottom:438.266667pt;}
.y85{bottom:439.600000pt;}
.yef{bottom:442.933333pt;}
.ya1{bottom:448.266667pt;}
.y25{bottom:454.933333pt;}
.y51{bottom:456.266667pt;}
.y84{bottom:458.266667pt;}
.yee{bottom:460.933333pt;}
.ya0{bottom:466.973333pt;}
.y24{bottom:473.626667pt;}
.y50{bottom:474.973333pt;}
.y83{bottom:476.306667pt;}
.yed{bottom:479.626667pt;}
.y9f{bottom:485.626667pt;}
.yd1{bottom:490.306667pt;}
.y23{bottom:491.626667pt;}
.y4f{bottom:493.640000pt;}
.y82{bottom:494.960000pt;}
.yec{bottom:498.306667pt;}
.y9e{bottom:503.626667pt;}
.y22{bottom:510.306667pt;}
.y4e{bottom:512.306667pt;}
.y81{bottom:513.640000pt;}
.yeb{bottom:516.306667pt;}
.y9d{bottom:522.306667pt;}
.y21{bottom:529.000000pt;}
.y4d{bottom:531.000000pt;}
.y80{bottom:531.666667pt;}
.yea{bottom:535.000000pt;}
.y9c{bottom:536.333333pt;}
.y20{bottom:547.000000pt;}
.y99{bottom:548.333333pt;}
.y4c{bottom:549.666667pt;}
.y7f{bottom:550.333333pt;}
.y98{bottom:551.666667pt;}
.y9a{bottom:552.333333pt;}
.ye9{bottom:553.000000pt;}
.y1f{bottom:565.666667pt;}
.y4b{bottom:567.666667pt;}
.yc5{bottom:568.333333pt;}
.y7e{bottom:569.666667pt;}
.y9b{bottom:570.333333pt;}
.ye8{bottom:571.666667pt;}
.y97{bottom:581.693333pt;}
.y1e{bottom:583.706667pt;}
.y4a{bottom:586.373333pt;}
.yc4{bottom:587.026667pt;}
.y7d{bottom:590.360000pt;}
.y96{bottom:600.360000pt;}
.y1d{bottom:602.360000pt;}
.y49{bottom:605.026667pt;}
.yc3{bottom:605.693333pt;}
.y7c{bottom:608.360000pt;}
.y95{bottom:619.026667pt;}
.y1c{bottom:621.040000pt;}
.y48{bottom:623.026667pt;}
.yc2{bottom:623.693333pt;}
.y7b{bottom:627.040000pt;}
.y94{bottom:637.026667pt;}
.y1b{bottom:639.066667pt;}
.y47{bottom:641.733333pt;}
.yc1{bottom:642.400000pt;}
.y7a{bottom:645.066667pt;}
.y93{bottom:652.400000pt;}
.y1a{bottom:657.733333pt;}
.ye1{bottom:658.400000pt;}
.y46{bottom:659.733333pt;}
.y92{bottom:660.400000pt;}
.y79{bottom:663.733333pt;}
.y19{bottom:675.733333pt;}
.y45{bottom:678.400000pt;}
.yc0{bottom:679.066667pt;}
.y78{bottom:682.400000pt;}
.y91{bottom:685.733333pt;}
.y18{bottom:694.400000pt;}
.y44{bottom:697.093333pt;}
.ybf{bottom:697.773333pt;}
.y77{bottom:700.440000pt;}
.y17{bottom:713.106667pt;}
.y43{bottom:715.093333pt;}
.ybe{bottom:715.773333pt;}
.y90{bottom:718.440000pt;}
.y76{bottom:719.106667pt;}
.y16{bottom:731.760000pt;}
.y42{bottom:733.773333pt;}
.ybd{bottom:734.426667pt;}
.y75{bottom:737.106667pt;}
.y41{bottom:751.773333pt;}
.y15{bottom:752.440000pt;}
.y74{bottom:755.800000pt;}
.y40{bottom:770.466667pt;}
.y14{bottom:771.133333pt;}
.y73{bottom:774.466667pt;}
.y13{bottom:789.133333pt;}
.ybc{bottom:789.800000pt;}
.y72{bottom:792.466667pt;}
.y12{bottom:804.466667pt;}
.y3f{bottom:807.133333pt;}
.ybb{bottom:807.800000pt;}
.y71{bottom:811.173333pt;}
.y11{bottom:820.506667pt;}
.y3e{bottom:825.840000pt;}
.yba{bottom:826.506667pt;}
.ye0{bottom:827.173333pt;}
.y70{bottom:829.173333pt;}
.y10{bottom:838.506667pt;}
.y3d{bottom:843.840000pt;}
.yb9{bottom:844.506667pt;}
.y6f{bottom:847.840000pt;}
.yf{bottom:857.173333pt;}
.y3c{bottom:862.506667pt;}
.yb8{bottom:863.173333pt;}
.y6e{bottom:866.506667pt;}
.ye{bottom:875.200000pt;}
.y3b{bottom:881.200000pt;}
.yb7{bottom:881.866667pt;}
.y6d{bottom:884.533333pt;}
.yd{bottom:893.866667pt;}
.y3a{bottom:899.866667pt;}
.y6c{bottom:903.200000pt;}
.yc{bottom:913.866667pt;}
.y39{bottom:917.866667pt;}
.yb6{bottom:918.533333pt;}
.y6b{bottom:921.200000pt;}
.y38{bottom:936.560000pt;}
.y6a{bottom:939.893333pt;}
.yb{bottom:941.226667pt;}
.y37{bottom:955.226667pt;}
.y69{bottom:958.560000pt;}
.ya{bottom:969.226667pt;}
.y36{bottom:973.893333pt;}
.y68{bottom:976.560000pt;}
.y35{bottom:991.933333pt;}
.yb5{bottom:992.600000pt;}
.y67{bottom:995.266667pt;}
.y9{bottom:996.600000pt;}
.y34{bottom:1010.600000pt;}
.y66{bottom:1013.266667pt;}
.y8{bottom:1024.600000pt;}
.y33{bottom:1029.933333pt;}
.y65{bottom:1031.933333pt;}
.y2{bottom:1057.293333pt;}
.y5{bottom:1059.600000pt;}
.y1{bottom:1074.626667pt;}
.h23{height:7.406250pt;}
.h6{height:30.112287pt;}
.h3{height:39.173497pt;}
.h5{height:39.198251pt;}
.h1{height:39.979167pt;}
.h2{height:44.437500pt;}
.h27{height:47.218750pt;}
.ha{height:48.125000pt;}
.hb{height:49.973958pt;}
.hc{height:56.145833pt;}
.h4{height:59.018798pt;}
.h9{height:59.968750pt;}
.h16{height:70.766927pt;}
.h8{height:72.187500pt;}
.h15{height:74.594145pt;}
.h1f{height:78.519583pt;}
.h7{height:89.953125pt;}
.hd{height:99.906250pt;}
.he{height:102.519583pt;}
.hf{height:102.572917pt;}
.h12{height:134.572917pt;}
.h13{height:137.239583pt;}
.h1b{height:142.572917pt;}
.h1e{height:142.599583pt;}
.h19{height:145.399583pt;}
.h1a{height:147.906250pt;}
.h1d{height:150.519583pt;}
.h17{height:163.906250pt;}
.h1c{height:185.239583pt;}
.h18{height:190.732917pt;}
.h11{height:201.399583pt;}
.h14{height:203.906250pt;}
.h10{height:208.773333pt;}
.h22{height:226.800000pt;}
.h21{height:315.533333pt;}
.h26{height:342.866667pt;}
.h20{height:362.866667pt;}
.h24{height:369.533333pt;}
.h25{height:400.240000pt;}
.h0{height:1122.666667pt;}
.w2{width:47.511447pt;}
.w3{width:47.606421pt;}
.w5{width:598.493333pt;}
.w9{width:603.160000pt;}
.w8{width:605.826667pt;}
.w6{width:623.826667pt;}
.wa{width:635.866667pt;}
.w4{width:638.533333pt;}
.w7{width:655.200000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:12.666667pt;}
.x2e{left:17.366667pt;}
.x2b{left:27.366667pt;}
.x39{left:31.366667pt;}
.x2f{left:38.033333pt;}
.x3e{left:54.706667pt;}
.x2{left:65.325585pt;}
.x30{left:74.066667pt;}
.x1{left:75.399988pt;}
.x12{left:77.400000pt;}
.x3c{left:79.400000pt;}
.x34{left:83.400000pt;}
.x2d{left:85.400000pt;}
.xa{left:93.399988pt;}
.x7{left:95.399988pt;}
.x6{left:97.399988pt;}
.x41{left:104.766655pt;}
.x3a{left:112.106667pt;}
.x37{left:116.106667pt;}
.x14{left:118.106667pt;}
.x8{left:121.433322pt;}
.x5{left:130.099988pt;}
.x20{left:142.799988pt;}
.x9{left:148.133322pt;}
.x42{left:160.799988pt;}
.x33{left:196.840000pt;}
.xb{left:201.506655pt;}
.x24{left:215.506655pt;}
.x25{left:217.506655pt;}
.x2c{left:225.533333pt;}
.x23{left:244.199988pt;}
.x22{left:250.199988pt;}
.xe{left:266.239988pt;}
.x21{left:268.893322pt;}
.xf{left:277.573322pt;}
.x11{left:296.906655pt;}
.x3f{left:308.933322pt;}
.x10{left:311.599988pt;}
.x26{left:313.599988pt;}
.x15{left:323.599988pt;}
.x32{left:327.600000pt;}
.x19{left:329.599988pt;}
.x3b{left:335.599988pt;}
.x27{left:340.266655pt;}
.xd{left:342.266655pt;}
.x1e{left:344.933322pt;}
.x40{left:346.306655pt;}
.x29{left:352.973322pt;}
.x1f{left:356.306655pt;}
.xc{left:358.973322pt;}
.x3{left:362.306655pt;}
.x1d{left:378.306655pt;}
.x1c{left:384.973322pt;}
.x4{left:396.999988pt;}
.x1a{left:404.999988pt;}
.x16{left:407.666655pt;}
.x17{left:416.333322pt;}
.x1b{left:423.666655pt;}
.x18{left:428.373322pt;}
.x28{left:457.693322pt;}
.x2a{left:529.106667pt;}
.x35{left:543.106667pt;}
.x38{left:545.800000pt;}
.x3d{left:560.466667pt;}
.x13{left:619.826667pt;}
.x31{left:637.826667pt;}
}




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