
    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_c26499fe175c94b3d793d8ae.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_05defd068253e488f041b1b8.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_ee4ab2245141f68fe39ddf59.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_f661a3f6a9b4459e8a13263b.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_626c2b9db521a2bb9eefa028.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_ad7a80afb109be92eab4c991.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c201d9a1d65105c1740383ca.woff')format("woff");}.ffb{font-family:ffb;line-height:0.970703;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_3267b8cbb156eaa51c593406.woff')format("woff");}.ffc{font-family:ffc;line-height:0.738770;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_fe28381cb13a47d7617be17e.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_657f6fe34cdebb630accbaa3.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_d5abbfa57a7771920b5ddcf0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.978027;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_4d2b909d15199fa8f5435cd8.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_b8f395c76872495e8bae5eaf.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_172cc3dd5fb000bb2b0b6c0d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.853027;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;}
.m2{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);}
.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;}
.ls11{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.414600px;}
.ls14{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.190200px;}
.ls10{letter-spacing:-0.152400px;}
.ls9{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.114000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls4{letter-spacing:0.106560px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls12{letter-spacing:0.262200px;}
.ls17{letter-spacing:0.305400px;}
.lse{letter-spacing:0.328320px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.414600px;}
.ls3{letter-spacing:0.576000px;}
.ls16{letter-spacing:6.785280px;}
.lsd{letter-spacing:22.296000px;}
.ls15{letter-spacing:39.905280px;}
.lsa{letter-spacing:59.345280px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.ws6{word-spacing:-59.760000px;}
.wsa{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws7{word-spacing:-18.000000px;}
.wse{word-spacing:-16.974600px;}
.ws11{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.822200px;}
.ws8{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.407600px;}
.wsf{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.ws10{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-2.220000px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._8{width:2.454000px;}
._1e{width:4.374000px;}
._d{width:5.511600px;}
._3{width:6.734160px;}
._9{width:8.149440px;}
._1c{width:9.936000px;}
._7{width:11.430480px;}
._6{width:12.954000px;}
._1b{width:14.439840px;}
._3d{width:15.468960px;}
._5{width:17.621760px;}
._1a{width:18.874560px;}
._18{width:20.799360px;}
._19{width:21.959520px;}
._1d{width:23.780160px;}
._3c{width:24.981600px;}
._27{width:26.001360px;}
._17{width:27.688320px;}
._c{width:29.257440px;}
._b{width:30.571920px;}
._16{width:32.060160px;}
._15{width:33.154080px;}
._3a{width:34.177920px;}
._e{width:35.769600px;}
._28{width:37.293120px;}
._10{width:38.684160px;}
._11{width:40.044240px;}
._38{width:41.103360px;}
._3b{width:42.524160px;}
._1f{width:44.184000px;}
._f{width:45.308160px;}
._14{width:46.317600px;}
._29{width:47.626560px;}
._43{width:48.708720px;}
._a{width:51.358080px;}
._39{width:53.385600px;}
._12{width:54.979200px;}
._13{width:56.439600px;}
._37{width:58.516560px;}
._40{width:60.742080px;}
._35{width:62.632080px;}
._4d{width:64.319040px;}
._3e{width:67.101120px;}
._20{width:69.154560px;}
._21{width:70.579680px;}
._45{width:71.670720px;}
._46{width:73.495440px;}
._4a{width:74.655600px;}
._2a{width:76.043520px;}
._2b{width:77.832000px;}
._2e{width:85.582080px;}
._2f{width:86.677200px;}
._32{width:89.026560px;}
._31{width:91.047840px;}
._48{width:95.186880px;}
._2d{width:96.909120px;}
._2c{width:98.996640px;}
._49{width:101.479680px;}
._36{width:103.898880px;}
._25{width:105.371520px;}
._26{width:106.844160px;}
._47{width:108.633600px;}
._44{width:109.825920px;}
._33{width:113.270400px;}
._34{width:114.496800px;}
._3f{width:115.721280px;}
._4b{width:120.062160px;}
._30{width:134.930880px;}
._41{width:136.795440px;}
._42{width:137.911680px;}
._24{width:152.893440px;}
._22{width:189.617520px;}
._23{width:197.647200px;}
._2{width:199.416000px;}
._4f{width:241.047360px;}
._4c{width:572.512320px;}
._4e{width:658.823040px;}
._50{width:779.578560px;}
._51{width:846.876000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.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;}
.fsa{font-size:69.822393px;}
.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;}
.y17{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ye{bottom:22.860000px;}
.y5{bottom:33.120000px;}
.y13{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y12{bottom:70.560000px;}
.y3f{bottom:75.240000px;}
.y3a{bottom:119.340000px;}
.y93{bottom:121.140000px;}
.ycf{bottom:130.140000px;}
.y6a{bottom:130.500000px;}
.ya1{bottom:134.100000px;}
.y39{bottom:144.180000px;}
.y92{bottom:145.800000px;}
.yf3{bottom:152.820000px;}
.yce{bottom:154.800000px;}
.y69{bottom:155.340000px;}
.yb1{bottom:157.860000px;}
.ya0{bottom:158.760000px;}
.y38{bottom:168.840000px;}
.y91{bottom:170.460000px;}
.yf2{bottom:177.480000px;}
.ycd{bottom:179.100000px;}
.y68{bottom:181.080000px;}
.yb0{bottom:182.520000px;}
.y9f{bottom:183.420000px;}
.y37{bottom:193.500000px;}
.y90{bottom:196.200000px;}
.yf1{bottom:202.140000px;}
.ycc{bottom:205.200000px;}
.y67{bottom:205.740000px;}
.yaf{bottom:207.210000px;}
.y9e{bottom:208.110000px;}
.y36{bottom:218.190000px;}
.y8f{bottom:220.890000px;}
.yf0{bottom:226.830000px;}
.ycb{bottom:229.890000px;}
.y66{bottom:230.430000px;}
.yae{bottom:231.870000px;}
.y9d{bottom:232.770000px;}
.y35{bottom:242.850000px;}
.y8e{bottom:245.730000px;}
.yef{bottom:251.490000px;}
.yca{bottom:254.550000px;}
.y65{bottom:255.090000px;}
.yad{bottom:256.530000px;}
.y9c{bottom:257.430000px;}
.yfd{bottom:266.790000px;}
.y34{bottom:267.510000px;}
.y8d{bottom:271.470000px;}
.yee{bottom:276.150000px;}
.yc9{bottom:279.210000px;}
.y64{bottom:279.930000px;}
.yac{bottom:281.190000px;}
.y9b{bottom:282.090000px;}
.yfc{bottom:286.590000px;}
.y33{bottom:292.170000px;}
.y8c{bottom:296.130000px;}
.yed{bottom:300.810000px;}
.yc8{bottom:304.050000px;}
.y63{bottom:305.670000px;}
.yab{bottom:305.850000px;}
.y9a{bottom:306.750000px;}
.y32{bottom:316.830000px;}
.y8b{bottom:320.970000px;}
.yec{bottom:325.470000px;}
.yc7{bottom:329.790000px;}
.yaa{bottom:330.150000px;}
.y62{bottom:330.330000px;}
.y99{bottom:331.410000px;}
.y31{bottom:341.490000px;}
.y8a{bottom:346.710000px;}
.yeb{bottom:350.130000px;}
.yc6{bottom:354.450000px;}
.y61{bottom:354.990000px;}
.ya9{bottom:355.170000px;}
.yfb{bottom:355.710000px;}
.y98{bottom:356.070000px;}
.y30{bottom:366.150000px;}
.y89{bottom:371.370000px;}
.yea{bottom:374.790000px;}
.yc5{bottom:379.110000px;}
.y60{bottom:379.650000px;}
.ya8{bottom:379.830000px;}
.yfa{bottom:380.370000px;}
.y97{bottom:380.730000px;}
.y2f{bottom:390.810000px;}
.y88{bottom:396.030000px;}
.ye9{bottom:399.630000px;}
.yc4{bottom:403.950000px;}
.y5f{bottom:404.310000px;}
.ya7{bottom:404.490000px;}
.y96{bottom:405.030000px;}
.yb3{bottom:405.390000px;}
.y2e{bottom:415.470000px;}
.y87{bottom:421.770000px;}
.ye8{bottom:424.290000px;}
.ya6{bottom:429.150000px;}
.yc3{bottom:429.330000px;}
.y5e{bottom:429.690000px;}
.yb2{bottom:430.050000px;}
.y2d{bottom:440.130000px;}
.y86{bottom:446.475000px;}
.ye7{bottom:448.995000px;}
.ya5{bottom:453.855000px;}
.yc2{bottom:454.035000px;}
.y5d{bottom:454.395000px;}
.y95{bottom:454.755000px;}
.y2c{bottom:464.835000px;}
.y85{bottom:471.315000px;}
.ye6{bottom:473.655000px;}
.ya4{bottom:478.695000px;}
.yc1{bottom:479.055000px;}
.yf9{bottom:479.235000px;}
.y5c{bottom:479.595000px;}
.y2b{bottom:489.495000px;}
.y84{bottom:496.695000px;}
.ye5{bottom:497.955000px;}
.ya3{bottom:503.715000px;}
.y5b{bottom:504.255000px;}
.y2a{bottom:514.155000px;}
.y83{bottom:521.355000px;}
.ye4{bottom:522.615000px;}
.yc0{bottom:528.375000px;}
.ya2{bottom:528.555000px;}
.y5a{bottom:528.915000px;}
.y29{bottom:538.815000px;}
.y82{bottom:546.375000px;}
.ye3{bottom:547.635000px;}
.ybf{bottom:553.035000px;}
.y59{bottom:553.575000px;}
.y28{bottom:563.115000px;}
.y3c{bottom:563.475000px;}
.y81{bottom:571.035000px;}
.ye2{bottom:572.295000px;}
.ybe{bottom:577.695000px;}
.y58{bottom:578.235000px;}
.y27{bottom:587.775000px;}
.y3b{bottom:588.135000px;}
.y80{bottom:595.695000px;}
.ye1{bottom:596.955000px;}
.ybd{bottom:602.355000px;}
.y57{bottom:602.895000px;}
.y26{bottom:611.895000px;}
.y7f{bottom:620.535000px;}
.ye0{bottom:621.255000px;}
.ybc{bottom:627.015000px;}
.y56{bottom:627.555000px;}
.y25{bottom:633.855000px;}
.y7e{bottom:646.275000px;}
.ydf{bottom:647.355000px;}
.ybb{bottom:651.675000px;}
.y55{bottom:652.215000px;}
.y24{bottom:658.155000px;}
.y7d{bottom:670.935000px;}
.yde{bottom:672.015000px;}
.yba{bottom:676.365000px;}
.y54{bottom:676.905000px;}
.y23{bottom:679.965000px;}
.y7c{bottom:695.625000px;}
.ydd{bottom:696.705000px;}
.yb9{bottom:701.025000px;}
.yf6{bottom:701.205000px;}
.y53{bottom:701.565000px;}
.y22{bottom:701.745000px;}
.y7b{bottom:720.285000px;}
.ydc{bottom:721.545000px;}
.y21{bottom:723.525000px;}
.yb8{bottom:725.685000px;}
.yf5{bottom:725.865000px;}
.y52{bottom:726.225000px;}
.y20{bottom:745.485000px;}
.y7a{bottom:746.205000px;}
.ydb{bottom:747.285000px;}
.yb7{bottom:750.345000px;}
.y51{bottom:750.885000px;}
.y1f{bottom:767.265000px;}
.y79{bottom:770.865000px;}
.yda{bottom:771.945000px;}
.yb6{bottom:775.005000px;}
.y50{bottom:775.545000px;}
.y1e{bottom:789.045000px;}
.y78{bottom:795.525000px;}
.yd9{bottom:796.605000px;}
.yb5{bottom:799.665000px;}
.y4f{bottom:800.205000px;}
.y1d{bottom:810.825000px;}
.y77{bottom:819.825000px;}
.yd8{bottom:821.265000px;}
.yb4{bottom:824.505000px;}
.y4e{bottom:824.865000px;}
.y1c{bottom:832.605000px;}
.y76{bottom:845.925000px;}
.yd7{bottom:846.105000px;}
.yf8{bottom:849.165000px;}
.y4d{bottom:849.525000px;}
.y1b{bottom:854.565000px;}
.y75{bottom:870.585000px;}
.yd6{bottom:871.845000px;}
.yf7{bottom:873.825000px;}
.y4c{bottom:874.185000px;}
.y1a{bottom:876.345000px;}
.y74{bottom:895.245000px;}
.yd5{bottom:896.505000px;}
.y19{bottom:897.765000px;}
.y4b{bottom:898.845000px;}
.y18{bottom:917.070000px;}
.y73{bottom:919.770000px;}
.yd4{bottom:921.210000px;}
.y4a{bottom:923.550000px;}
.y16{bottom:925.710000px;}
.y11{bottom:932.910000px;}
.y15{bottom:937.050043px;}
.y72{bottom:945.870000px;}
.yf4{bottom:947.850000px;}
.y49{bottom:948.210000px;}
.y14{bottom:959.595683px;}
.y71{bottom:970.530000px;}
.yd3{bottom:970.710000px;}
.y48{bottom:972.870000px;}
.y70{bottom:995.190000px;}
.yd2{bottom:996.450000px;}
.y47{bottom:997.530000px;}
.y6f{bottom:1020.030000px;}
.yd1{bottom:1021.110000px;}
.y46{bottom:1022.190000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.y6e{bottom:1045.770000px;}
.y45{bottom:1046.850000px;}
.y6d{bottom:1070.430000px;}
.y44{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.yd0{bottom:1094.730000px;}
.y6c{bottom:1095.090000px;}
.y43{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y6b{bottom:1119.750000px;}
.y42{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y94{bottom:1145.130000px;}
.y41{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y40{bottom:1170.180000px;}
.y3e{bottom:1187.280000px;}
.y3d{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.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;}
.h1d{height:30.480469px;}
.h18{height:36.861328px;}
.he{height:41.025000px;}
.h1c{height:46.251562px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1e{height:58.621992px;}
.h20{height:58.844458px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1b{height:65.010937px;}
.h1a{height:66.757500px;}
.h14{height:67.803750px;}
.h1f{height:68.084282px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h12{height:96.285000px;}
.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;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x13{left:92.863500px;}
.xd{left:95.925000px;}
.x15{left:100.243500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1c{left:135.036000px;}
.x19{left:162.030000px;}
.x4{left:168.885000px;}
.x6{left:209.010000px;}
.x14{left:269.308500px;}
.x16{left:313.455002px;}
.x17{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1a{left:473.505000px;}
.x1d{left:500.505000px;}
.x1b{left:527.505000px;}
.x20{left:561.885000px;}
.x21{left:567.465000px;}
.x1e{left:571.065000px;}
.x1f{left:576.645000px;}
.x22{left:586.005000px;}
.x23{left:591.585000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls14{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls10{letter-spacing:-0.135467pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls4{letter-spacing:0.094720pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls12{letter-spacing:0.233067pt;}
.ls17{letter-spacing:0.271467pt;}
.lse{letter-spacing:0.291840pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.368533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls16{letter-spacing:6.031360pt;}
.lsd{letter-spacing:19.818667pt;}
.ls15{letter-spacing:35.471360pt;}
.lsa{letter-spacing:52.751360pt;}
.wsb{word-spacing:-58.880000pt;}
.ws6{word-spacing:-53.120000pt;}
.wsa{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws7{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.088533pt;}
.ws11{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.953067pt;}
.ws8{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.584533pt;}
.wsf{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.ws10{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-1.973333pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._8{width:2.181333pt;}
._1e{width:3.888000pt;}
._d{width:4.899200pt;}
._3{width:5.985920pt;}
._9{width:7.243947pt;}
._1c{width:8.832000pt;}
._7{width:10.160427pt;}
._6{width:11.514667pt;}
._1b{width:12.835413pt;}
._3d{width:13.750187pt;}
._5{width:15.663787pt;}
._1a{width:16.777387pt;}
._18{width:18.488320pt;}
._19{width:19.519573pt;}
._1d{width:21.137920pt;}
._3c{width:22.205867pt;}
._27{width:23.112320pt;}
._17{width:24.611840pt;}
._c{width:26.006613pt;}
._b{width:27.175040pt;}
._16{width:28.497920pt;}
._15{width:29.470293pt;}
._3a{width:30.380373pt;}
._e{width:31.795200pt;}
._28{width:33.149440pt;}
._10{width:34.385920pt;}
._11{width:35.594880pt;}
._38{width:36.536320pt;}
._3b{width:37.799253pt;}
._1f{width:39.274667pt;}
._f{width:40.273920pt;}
._14{width:41.171200pt;}
._29{width:42.334720pt;}
._43{width:43.296640pt;}
._a{width:45.651627pt;}
._39{width:47.453867pt;}
._12{width:48.870400pt;}
._13{width:50.168533pt;}
._37{width:52.014720pt;}
._40{width:53.992960pt;}
._35{width:55.672960pt;}
._4d{width:57.172480pt;}
._3e{width:59.645440pt;}
._20{width:61.470720pt;}
._21{width:62.737493pt;}
._45{width:63.707307pt;}
._46{width:65.329280pt;}
._4a{width:66.360533pt;}
._2a{width:67.594240pt;}
._2b{width:69.184000pt;}
._2e{width:76.072960pt;}
._2f{width:77.046400pt;}
._32{width:79.134720pt;}
._31{width:80.931413pt;}
._48{width:84.610560pt;}
._2d{width:86.141440pt;}
._2c{width:87.997013pt;}
._49{width:90.204160pt;}
._36{width:92.354560pt;}
._25{width:93.663573pt;}
._26{width:94.972587pt;}
._47{width:96.563200pt;}
._44{width:97.623040pt;}
._33{width:100.684800pt;}
._34{width:101.774933pt;}
._3f{width:102.863360pt;}
._4b{width:106.721920pt;}
._30{width:119.938560pt;}
._41{width:121.595947pt;}
._42{width:122.588160pt;}
._24{width:135.905280pt;}
._22{width:168.548907pt;}
._23{width:175.686400pt;}
._2{width:177.258667pt;}
._4f{width:214.264320pt;}
._4c{width:508.899840pt;}
._4e{width:585.620480pt;}
._50{width:692.958720pt;}
._51{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;}
.fsa{font-size:62.064349pt;}
.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;}
.y17{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ye{bottom:20.320000pt;}
.y5{bottom:29.440000pt;}
.y13{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y12{bottom:62.720000pt;}
.y3f{bottom:66.880000pt;}
.y3a{bottom:106.080000pt;}
.y93{bottom:107.680000pt;}
.ycf{bottom:115.680000pt;}
.y6a{bottom:116.000000pt;}
.ya1{bottom:119.200000pt;}
.y39{bottom:128.160000pt;}
.y92{bottom:129.600000pt;}
.yf3{bottom:135.840000pt;}
.yce{bottom:137.600000pt;}
.y69{bottom:138.080000pt;}
.yb1{bottom:140.320000pt;}
.ya0{bottom:141.120000pt;}
.y38{bottom:150.080000pt;}
.y91{bottom:151.520000pt;}
.yf2{bottom:157.760000pt;}
.ycd{bottom:159.200000pt;}
.y68{bottom:160.960000pt;}
.yb0{bottom:162.240000pt;}
.y9f{bottom:163.040000pt;}
.y37{bottom:172.000000pt;}
.y90{bottom:174.400000pt;}
.yf1{bottom:179.680000pt;}
.ycc{bottom:182.400000pt;}
.y67{bottom:182.880000pt;}
.yaf{bottom:184.186667pt;}
.y9e{bottom:184.986667pt;}
.y36{bottom:193.946667pt;}
.y8f{bottom:196.346667pt;}
.yf0{bottom:201.626667pt;}
.ycb{bottom:204.346667pt;}
.y66{bottom:204.826667pt;}
.yae{bottom:206.106667pt;}
.y9d{bottom:206.906667pt;}
.y35{bottom:215.866667pt;}
.y8e{bottom:218.426667pt;}
.yef{bottom:223.546667pt;}
.yca{bottom:226.266667pt;}
.y65{bottom:226.746667pt;}
.yad{bottom:228.026667pt;}
.y9c{bottom:228.826667pt;}
.yfd{bottom:237.146667pt;}
.y34{bottom:237.786667pt;}
.y8d{bottom:241.306667pt;}
.yee{bottom:245.466667pt;}
.yc9{bottom:248.186667pt;}
.y64{bottom:248.826667pt;}
.yac{bottom:249.946667pt;}
.y9b{bottom:250.746667pt;}
.yfc{bottom:254.746667pt;}
.y33{bottom:259.706667pt;}
.y8c{bottom:263.226667pt;}
.yed{bottom:267.386667pt;}
.yc8{bottom:270.266667pt;}
.y63{bottom:271.706667pt;}
.yab{bottom:271.866667pt;}
.y9a{bottom:272.666667pt;}
.y32{bottom:281.626667pt;}
.y8b{bottom:285.306667pt;}
.yec{bottom:289.306667pt;}
.yc7{bottom:293.146667pt;}
.yaa{bottom:293.466667pt;}
.y62{bottom:293.626667pt;}
.y99{bottom:294.586667pt;}
.y31{bottom:303.546667pt;}
.y8a{bottom:308.186667pt;}
.yeb{bottom:311.226667pt;}
.yc6{bottom:315.066667pt;}
.y61{bottom:315.546667pt;}
.ya9{bottom:315.706667pt;}
.yfb{bottom:316.186667pt;}
.y98{bottom:316.506667pt;}
.y30{bottom:325.466667pt;}
.y89{bottom:330.106667pt;}
.yea{bottom:333.146667pt;}
.yc5{bottom:336.986667pt;}
.y60{bottom:337.466667pt;}
.ya8{bottom:337.626667pt;}
.yfa{bottom:338.106667pt;}
.y97{bottom:338.426667pt;}
.y2f{bottom:347.386667pt;}
.y88{bottom:352.026667pt;}
.ye9{bottom:355.226667pt;}
.yc4{bottom:359.066667pt;}
.y5f{bottom:359.386667pt;}
.ya7{bottom:359.546667pt;}
.y96{bottom:360.026667pt;}
.yb3{bottom:360.346667pt;}
.y2e{bottom:369.306667pt;}
.y87{bottom:374.906667pt;}
.ye8{bottom:377.146667pt;}
.ya6{bottom:381.466667pt;}
.yc3{bottom:381.626667pt;}
.y5e{bottom:381.946667pt;}
.yb2{bottom:382.266667pt;}
.y2d{bottom:391.226667pt;}
.y86{bottom:396.866667pt;}
.ye7{bottom:399.106667pt;}
.ya5{bottom:403.426667pt;}
.yc2{bottom:403.586667pt;}
.y5d{bottom:403.906667pt;}
.y95{bottom:404.226667pt;}
.y2c{bottom:413.186667pt;}
.y85{bottom:418.946667pt;}
.ye6{bottom:421.026667pt;}
.ya4{bottom:425.506667pt;}
.yc1{bottom:425.826667pt;}
.yf9{bottom:425.986667pt;}
.y5c{bottom:426.306667pt;}
.y2b{bottom:435.106667pt;}
.y84{bottom:441.506667pt;}
.ye5{bottom:442.626667pt;}
.ya3{bottom:447.746667pt;}
.y5b{bottom:448.226667pt;}
.y2a{bottom:457.026667pt;}
.y83{bottom:463.426667pt;}
.ye4{bottom:464.546667pt;}
.yc0{bottom:469.666667pt;}
.ya2{bottom:469.826667pt;}
.y5a{bottom:470.146667pt;}
.y29{bottom:478.946667pt;}
.y82{bottom:485.666667pt;}
.ye3{bottom:486.786667pt;}
.ybf{bottom:491.586667pt;}
.y59{bottom:492.066667pt;}
.y28{bottom:500.546667pt;}
.y3c{bottom:500.866667pt;}
.y81{bottom:507.586667pt;}
.ye2{bottom:508.706667pt;}
.ybe{bottom:513.506667pt;}
.y58{bottom:513.986667pt;}
.y27{bottom:522.466667pt;}
.y3b{bottom:522.786667pt;}
.y80{bottom:529.506667pt;}
.ye1{bottom:530.626667pt;}
.ybd{bottom:535.426667pt;}
.y57{bottom:535.906667pt;}
.y26{bottom:543.906667pt;}
.y7f{bottom:551.586667pt;}
.ye0{bottom:552.226667pt;}
.ybc{bottom:557.346667pt;}
.y56{bottom:557.826667pt;}
.y25{bottom:563.426667pt;}
.y7e{bottom:574.466667pt;}
.ydf{bottom:575.426667pt;}
.ybb{bottom:579.266667pt;}
.y55{bottom:579.746667pt;}
.y24{bottom:585.026667pt;}
.y7d{bottom:596.386667pt;}
.yde{bottom:597.346667pt;}
.yba{bottom:601.213333pt;}
.y54{bottom:601.693333pt;}
.y23{bottom:604.413333pt;}
.y7c{bottom:618.333333pt;}
.ydd{bottom:619.293333pt;}
.yb9{bottom:623.133333pt;}
.yf6{bottom:623.293333pt;}
.y53{bottom:623.613333pt;}
.y22{bottom:623.773333pt;}
.y7b{bottom:640.253333pt;}
.ydc{bottom:641.373333pt;}
.y21{bottom:643.133333pt;}
.yb8{bottom:645.053333pt;}
.yf5{bottom:645.213333pt;}
.y52{bottom:645.533333pt;}
.y20{bottom:662.653333pt;}
.y7a{bottom:663.293333pt;}
.ydb{bottom:664.253333pt;}
.yb7{bottom:666.973333pt;}
.y51{bottom:667.453333pt;}
.y1f{bottom:682.013333pt;}
.y79{bottom:685.213333pt;}
.yda{bottom:686.173333pt;}
.yb6{bottom:688.893333pt;}
.y50{bottom:689.373333pt;}
.y1e{bottom:701.373333pt;}
.y78{bottom:707.133333pt;}
.yd9{bottom:708.093333pt;}
.yb5{bottom:710.813333pt;}
.y4f{bottom:711.293333pt;}
.y1d{bottom:720.733333pt;}
.y77{bottom:728.733333pt;}
.yd8{bottom:730.013333pt;}
.yb4{bottom:732.893333pt;}
.y4e{bottom:733.213333pt;}
.y1c{bottom:740.093333pt;}
.y76{bottom:751.933333pt;}
.yd7{bottom:752.093333pt;}
.yf8{bottom:754.813333pt;}
.y4d{bottom:755.133333pt;}
.y1b{bottom:759.613333pt;}
.y75{bottom:773.853333pt;}
.yd6{bottom:774.973333pt;}
.yf7{bottom:776.733333pt;}
.y4c{bottom:777.053333pt;}
.y1a{bottom:778.973333pt;}
.y74{bottom:795.773333pt;}
.yd5{bottom:796.893333pt;}
.y19{bottom:798.013333pt;}
.y4b{bottom:798.973333pt;}
.y18{bottom:815.173333pt;}
.y73{bottom:817.573333pt;}
.yd4{bottom:818.853333pt;}
.y4a{bottom:820.933333pt;}
.y16{bottom:822.853333pt;}
.y11{bottom:829.253333pt;}
.y15{bottom:832.933372pt;}
.y72{bottom:840.773333pt;}
.yf4{bottom:842.533333pt;}
.y49{bottom:842.853333pt;}
.y14{bottom:852.973940pt;}
.y71{bottom:862.693333pt;}
.yd3{bottom:862.853333pt;}
.y48{bottom:864.773333pt;}
.y70{bottom:884.613333pt;}
.yd2{bottom:885.733333pt;}
.y47{bottom:886.693333pt;}
.y6f{bottom:906.693333pt;}
.yd1{bottom:907.653333pt;}
.y46{bottom:908.613333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.y6e{bottom:929.573333pt;}
.y45{bottom:930.533333pt;}
.y6d{bottom:951.493333pt;}
.y44{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.yd0{bottom:973.093333pt;}
.y6c{bottom:973.413333pt;}
.y43{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y6b{bottom:995.333333pt;}
.y42{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y94{bottom:1017.893333pt;}
.y41{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y40{bottom:1040.160000pt;}
.y3e{bottom:1055.360000pt;}
.y3d{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.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;}
.h1d{height:27.093750pt;}
.h18{height:32.765625pt;}
.he{height:36.466667pt;}
.h1c{height:41.112500pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1e{height:52.108438pt;}
.h20{height:52.306185pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h1a{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1f{height:60.519362pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h12{height:85.586667pt;}
.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;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x13{left:82.545333pt;}
.xd{left:85.266667pt;}
.x15{left:89.105333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1c{left:120.032000pt;}
.x19{left:144.026667pt;}
.x4{left:150.120000pt;}
.x6{left:185.786667pt;}
.x14{left:239.385333pt;}
.x16{left:278.626668pt;}
.x17{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1a{left:420.893333pt;}
.x1d{left:444.893333pt;}
.x1b{left:468.893333pt;}
.x20{left:499.453333pt;}
.x21{left:504.413333pt;}
.x1e{left:507.613333pt;}
.x1f{left:512.573333pt;}
.x22{left:520.893333pt;}
.x23{left:525.853333pt;}
.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; }
  