
    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_2f1715a09e86dd470e03e24f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_5b5052035c286ed6de12bed7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b26f982c7268542b8e57bb48.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a685a501d846b87717bcafe0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_db39a2464774e2ea61e09f62.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_d09a02ad867b987c694049b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_47fd9d60ea0a4113cbc4eeb9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_ea224f8ca17c9cbbf70611e4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_111d4db38fc941e018ec02b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_0f6753828e8bf68124dc8a1c.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7c1d41bb6735d3496749c6ab.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_065ae16f528efe3846b861e2.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e45e7e7475dd03f08679a2b1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.851562;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_16c0aba7e904a88776768213.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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_bdc14fc22884eb6199759437.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.739746;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lse{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-0.726000px;}
.ls15{letter-spacing:-0.417000px;}
.lsc{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.324000px;}
.lsa{letter-spacing:-0.298200px;}
.ls9{letter-spacing:-0.127200px;}
.ls13{letter-spacing:-0.091200px;}
.ls18{letter-spacing:-0.058320px;}
.lsd{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.087600px;}
.ls17{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.132600px;}
.ls16{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.174240px;}
.lsb{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.379920px;}
.ls10{letter-spacing:0.439920px;}
.ls4{letter-spacing:0.447840px;}
.ls5{letter-spacing:0.627840px;}
.ls1a{letter-spacing:0.666720px;}
.ls3{letter-spacing:0.786240px;}
.ls19{letter-spacing:0.900000px;}
.ls1d{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.505760px;}
.wsc{word-spacing:-12.236544px;}
.ws5{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws17{word-spacing:-8.994000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
.wsd{word-spacing:76.128000px;}
.ws13{word-spacing:79.728000px;}
.wsb{word-spacing:82.224000px;}
.wse{word-spacing:139.362000px;}
.ws14{word-spacing:381.006000px;}
.ws10{word-spacing:387.162000px;}
.wsf{word-spacing:387.996000px;}
.ws12{word-spacing:448.158000px;}
.ws11{word-spacing:813.258000px;}
.ws15{word-spacing:877.266000px;}
._24{margin-left:-8.316000px;}
._27{margin-left:-6.496176px;}
._11{margin-left:-5.423520px;}
._4{margin-left:-3.917520px;}
._2{margin-left:-2.861040px;}
._0{margin-left:-1.014000px;}
._1{width:1.074000px;}
._3{width:2.118000px;}
._a{width:4.065360px;}
._12{width:5.121600px;}
._6{width:6.171120px;}
._5{width:7.693200px;}
._c{width:9.322560px;}
._b{width:10.697040px;}
._17{width:12.250800px;}
._18{width:13.567200px;}
._f{width:16.613040px;}
._e{width:17.808480px;}
._10{width:19.244400px;}
._13{width:20.975760px;}
._1b{width:22.067280px;}
._8{width:23.096400px;}
._7{width:24.202800px;}
._19{width:25.278480px;}
._1a{width:26.832240px;}
._25{width:28.804320px;}
._26{width:29.926080px;}
._9{width:33.978480px;}
._16{width:35.319840px;}
._d{width:36.694320px;}
._15{width:62.351040px;}
._14{width:63.524880px;}
._1e{width:75.348000px;}
._22{width:103.806000px;}
._1d{width:143.802000px;}
._28{width:146.418000px;}
._21{width:150.522000px;}
._1c{width:233.586000px;}
._1f{width:315.504000px;}
._20{width:375.564000px;}
._23{width:498.726000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc8{color:rgb(64,64,64);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fsa{font-size:84.384000px;}
.fsb{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:0.180000px;}
.y55{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y62{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y60{bottom:10.620000px;}
.y1b{bottom:12.600000px;}
.yc{bottom:13.680000px;}
.y4{bottom:17.496000px;}
.yc0{bottom:17.610000px;}
.yd4{bottom:17.640000px;}
.yfc{bottom:17.676000px;}
.yef{bottom:17.715000px;}
.y2{bottom:20.196000px;}
.y54{bottom:20.520000px;}
.y61{bottom:22.320000px;}
.y18{bottom:23.760000px;}
.y5f{bottom:25.200000px;}
.yb{bottom:30.060000px;}
.y53{bottom:37.800000px;}
.y17{bottom:40.365000px;}
.y5{bottom:41.940000px;}
.ybe{bottom:46.410000px;}
.ya{bottom:46.440000px;}
.yed{bottom:46.470000px;}
.y11e{bottom:46.515000px;}
.yfa{bottom:47.595000px;}
.y52{bottom:55.074000px;}
.y5d{bottom:55.080000px;}
.y16{bottom:56.745000px;}
.ybd{bottom:62.850000px;}
.yf9{bottom:64.080000px;}
.y1{bottom:64.440000px;}
.yd1{bottom:68.865000px;}
.y5c{bottom:72.360000px;}
.yec{bottom:72.645000px;}
.y11d{bottom:72.690000px;}
.y9{bottom:73.260000px;}
.y15{bottom:73.305000px;}
.y51{bottom:73.434000px;}
.yf1{bottom:81.615000px;}
.ybc{bottom:85.350000px;}
.yce{bottom:85.650000px;}
.y14{bottom:85.725000px;}
.y5b{bottom:89.460000px;}
.y50{bottom:91.794000px;}
.ycc{bottom:92.085000px;}
.y8{bottom:92.910000px;}
.y126{bottom:96.840000px;}
.yeb{bottom:98.820000px;}
.y11c{bottom:98.850000px;}
.y13{bottom:101.025000px;}
.yf2{bottom:102.750000px;}
.y1c{bottom:106.596000px;}
.y5a{bottom:106.740000px;}
.y94{bottom:108.396000px;}
.y4f{bottom:108.894000px;}
.ye1{bottom:109.296000px;}
.y7{bottom:111.270000px;}
.ye3{bottom:116.385000px;}
.ycd{bottom:117.795000px;}
.y12{bottom:119.925000px;}
.y122{bottom:122.760000px;}
.ye0{bottom:123.156000px;}
.yd0{bottom:123.660000px;}
.yf0{bottom:123.840000px;}
.y59{bottom:124.020000px;}
.y93{bottom:125.496000px;}
.y4e{bottom:126.174000px;}
.y114{bottom:134.130000px;}
.ye4{bottom:135.870000px;}
.yad{bottom:136.296000px;}
.ycf{bottom:138.630000px;}
.y14e{bottom:138.960000px;}
.y123{bottom:140.730000px;}
.y58{bottom:141.330000px;}
.yba{bottom:141.630000px;}
.y92{bottom:142.776000px;}
.y4d{bottom:143.454000px;}
.y14d{bottom:143.460000px;}
.yb9{bottom:144.390000px;}
.yf3{bottom:144.930000px;}
.yd3{bottom:145.335000px;}
.y11{bottom:145.665000px;}
.y125{bottom:147.450000px;}
.yd2{bottom:148.065000px;}
.y115{bottom:151.845000px;}
.ybb{bottom:153.360000px;}
.yac{bottom:153.390000px;}
.ye5{bottom:155.340000px;}
.y57{bottom:158.610000px;}
.y91{bottom:160.050000px;}
.y4c{bottom:160.734000px;}
.yaf{bottom:164.985000px;}
.yf4{bottom:166.035000px;}
.yc2{bottom:168.690000px;}
.y116{bottom:169.560000px;}
.y10{bottom:170.145000px;}
.yab{bottom:170.670000px;}
.ye6{bottom:174.810000px;}
.yb0{bottom:176.040000px;}
.y90{bottom:177.330000px;}
.y4b{bottom:178.014000px;}
.yc3{bottom:179.310000px;}
.yb1{bottom:187.050000px;}
.yf5{bottom:187.170000px;}
.y117{bottom:187.275000px;}
.yaa{bottom:187.950000px;}
.yc4{bottom:189.930000px;}
.y112{bottom:192.450000px;}
.ye7{bottom:194.295000px;}
.y121{bottom:194.580000px;}
.y8f{bottom:194.610000px;}
.y4a{bottom:195.294000px;}
.yb2{bottom:198.105000px;}
.yc5{bottom:200.595000px;}
.y118{bottom:204.990000px;}
.ya9{bottom:205.230000px;}
.y111{bottom:206.490000px;}
.y120{bottom:206.640000px;}
.yf6{bottom:208.260000px;}
.yb3{bottom:209.160000px;}
.yc6{bottom:211.215000px;}
.y8e{bottom:211.890000px;}
.y49{bottom:212.394000px;}
.ye8{bottom:213.765000px;}
.y14a{bottom:218.730000px;}
.yb4{bottom:220.170000px;}
.y14c{bottom:221.115000px;}
.yc7{bottom:221.835000px;}
.ya8{bottom:222.510000px;}
.y119{bottom:222.735000px;}
.y8d{bottom:228.990000px;}
.yf7{bottom:229.350000px;}
.y48{bottom:229.674000px;}
.yb5{bottom:231.225000px;}
.yc8{bottom:232.485000px;}
.ye9{bottom:233.250000px;}
.y149{bottom:236.010000px;}
.ya7{bottom:236.370000px;}
.yc1{bottom:236.700000px;}
.y11a{bottom:240.450000px;}
.yb6{bottom:242.280000px;}
.yc9{bottom:243.105000px;}
.y8c{bottom:246.270000px;}
.y47{bottom:246.999000px;}
.yf8{bottom:250.485000px;}
.yea{bottom:252.720000px;}
.y148{bottom:253.290000px;}
.yb7{bottom:253.335000px;}
.yca{bottom:253.725000px;}
.y11b{bottom:258.150000px;}
.y8b{bottom:263.550000px;}
.y46{bottom:264.279000px;}
.yb8{bottom:264.345000px;}
.ycb{bottom:264.390000px;}
.y147{bottom:270.390000px;}
.yfb{bottom:278.670000px;}
.y8a{bottom:280.830000px;}
.yee{bottom:280.950000px;}
.y45{bottom:281.559000px;}
.y11f{bottom:286.380000px;}
.y124{bottom:286.890000px;}
.y146{bottom:287.670000px;}
.ybf{bottom:292.575000px;}
.y14f{bottom:292.680000px;}
.y89{bottom:298.110000px;}
.y44{bottom:298.839000px;}
.y145{bottom:304.950000px;}
.y88{bottom:315.390000px;}
.y43{bottom:315.939000px;}
.y144{bottom:322.230000px;}
.y87{bottom:332.490000px;}
.y42{bottom:333.219000px;}
.y143{bottom:339.555000px;}
.y86{bottom:349.815000px;}
.y41{bottom:350.499000px;}
.y142{bottom:356.835000px;}
.y85{bottom:367.095000px;}
.y40{bottom:367.779000px;}
.y141{bottom:373.935000px;}
.y84{bottom:384.375000px;}
.y3f{bottom:385.059000px;}
.y140{bottom:391.215000px;}
.y83{bottom:401.655000px;}
.y3e{bottom:402.339000px;}
.y13f{bottom:408.495000px;}
.y82{bottom:418.755000px;}
.y3d{bottom:419.439000px;}
.y13e{bottom:425.775000px;}
.y2c{bottom:428.439000px;}
.y81{bottom:436.035000px;}
.y3c{bottom:436.719000px;}
.ydf{bottom:436.935000px;}
.y13d{bottom:443.055000px;}
.y2b{bottom:443.739000px;}
.yde{bottom:450.975000px;}
.ye2{bottom:451.620000px;}
.y80{bottom:453.315000px;}
.y3b{bottom:453.999000px;}
.y13c{bottom:460.335000px;}
.y2a{bottom:461.379000px;}
.y7f{bottom:470.595000px;}
.y3a{bottom:471.279000px;}
.y13b{bottom:477.435000px;}
.y29{bottom:478.659000px;}
.y7e{bottom:487.875000px;}
.y39{bottom:488.559000px;}
.y13a{bottom:494.715000px;}
.y28{bottom:495.939000px;}
.y7d{bottom:505.155000px;}
.y38{bottom:505.689000px;}
.y139{bottom:511.995000px;}
.y27{bottom:513.789000px;}
.y7c{bottom:522.255000px;}
.y37{bottom:522.969000px;}
.y138{bottom:529.275000px;}
.y26{bottom:531.069000px;}
.y110{bottom:533.775000px;}
.y7b{bottom:539.535000px;}
.y36{bottom:540.249000px;}
.y137{bottom:546.555000px;}
.y25{bottom:548.529000px;}
.y10f{bottom:551.055000px;}
.y7a{bottom:556.815000px;}
.y35{bottom:557.529000px;}
.ya6{bottom:563.655000px;}
.y24{bottom:565.809000px;}
.y10e{bottom:568.155000px;}
.y79{bottom:574.095000px;}
.y34{bottom:574.809000px;}
.ya5{bottom:580.935000px;}
.y23{bottom:583.269000px;}
.y10d{bottom:585.435000px;}
.y78{bottom:591.375000px;}
.y33{bottom:592.089000px;}
.ya4{bottom:594.975000px;}
.yae{bottom:595.260000px;}
.y136{bottom:598.215000px;}
.y22{bottom:600.729000px;}
.y10c{bottom:602.715000px;}
.y77{bottom:608.685000px;}
.y32{bottom:609.189000px;}
.y135{bottom:615.525000px;}
.y21{bottom:618.009000px;}
.y10b{bottom:620.025000px;}
.y76{bottom:625.785000px;}
.y31{bottom:626.469000px;}
.y134{bottom:632.805000px;}
.y20{bottom:635.469000px;}
.y10a{bottom:637.305000px;}
.y75{bottom:643.065000px;}
.y30{bottom:643.749000px;}
.y133{bottom:650.085000px;}
.y1f{bottom:653.109000px;}
.y109{bottom:654.585000px;}
.y74{bottom:660.345000px;}
.y2f{bottom:661.029000px;}
.y132{bottom:667.185000px;}
.y108{bottom:671.685000px;}
.y73{bottom:677.625000px;}
.y2e{bottom:678.309000px;}
.y1e{bottom:680.469000px;}
.y131{bottom:684.465000px;}
.y107{bottom:688.965000px;}
.y72{bottom:694.905000px;}
.y2d{bottom:695.589000px;}
.y1d{bottom:698.109000px;}
.y130{bottom:701.745000px;}
.y106{bottom:706.245000px;}
.y71{bottom:712.185000px;}
.y12f{bottom:719.025000px;}
.y105{bottom:723.525000px;}
.y70{bottom:729.285000px;}
.y12e{bottom:736.305000px;}
.y104{bottom:740.805000px;}
.y6f{bottom:746.565000px;}
.y12d{bottom:753.585000px;}
.y103{bottom:758.085000px;}
.y6e{bottom:763.845000px;}
.ydd{bottom:767.085000px;}
.y12c{bottom:770.685000px;}
.y102{bottom:775.185000px;}
.y6d{bottom:781.125000px;}
.ydc{bottom:784.365000px;}
.y12b{bottom:787.965000px;}
.y101{bottom:792.465000px;}
.y6c{bottom:798.405000px;}
.ydb{bottom:801.465000px;}
.y12a{bottom:805.245000px;}
.y100{bottom:809.745000px;}
.y6b{bottom:815.505000px;}
.y19{bottom:816.045000px;}
.yda{bottom:818.745000px;}
.y129{bottom:822.525000px;}
.yff{bottom:827.025000px;}
.y6a{bottom:832.785000px;}
.yd9{bottom:836.025000px;}
.y128{bottom:839.805000px;}
.yfe{bottom:844.305000px;}
.yf{bottom:845.745000px;}
.y69{bottom:850.065000px;}
.yd8{bottom:853.305000px;}
.y127{bottom:853.845000px;}
.y14b{bottom:853.920000px;}
.yfd{bottom:858.345000px;}
.y113{bottom:860.220000px;}
.y68{bottom:867.345000px;}
.yd7{bottom:870.630000px;}
.y67{bottom:884.670000px;}
.yd6{bottom:887.730000px;}
.y66{bottom:901.950000px;}
.yd5{bottom:905.010000px;}
.y65{bottom:919.050000px;}
.ya3{bottom:922.290000px;}
.y64{bottom:936.330000px;}
.ya2{bottom:939.570000px;}
.y63{bottom:954.330000px;}
.ya1{bottom:956.850000px;}
.y5e{bottom:968.730000px;}
.ya0{bottom:974.130000px;}
.y9f{bottom:991.230000px;}
.y56{bottom:1005.270000px;}
.y9e{bottom:1008.510000px;}
.y9d{bottom:1025.790000px;}
.yd{bottom:1031.010000px;}
.y9c{bottom:1043.070000px;}
.y6{bottom:1056.390000px;}
.y9b{bottom:1060.350000px;}
.y9a{bottom:1077.630000px;}
.y99{bottom:1094.730000px;}
.y98{bottom:1112.010000px;}
.y97{bottom:1129.290000px;}
.y96{bottom:1146.600000px;}
.y95{bottom:1163.880000px;}
.hb{height:24.840000px;}
.h11{height:28.968750px;}
.h12{height:29.700000px;}
.h2{height:32.976000px;}
.h8{height:36.180000px;}
.h1e{height:36.540000px;}
.h19{height:38.818125px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h18{height:42.281367px;}
.h20{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h2a{height:48.027656px;}
.h1f{height:48.088125px;}
.h1c{height:48.321563px;}
.h4{height:53.709961px;}
.h22{height:53.853187px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h23{height:83.787539px;}
.h27{height:83.930766px;}
.h29{height:110.583984px;}
.h7{height:121.536000px;}
.h1d{height:172.650000px;}
.hc{height:185.250000px;}
.h25{height:309.960000px;}
.h24{height:312.300000px;}
.h26{height:317.700000px;}
.h21{height:323.820000px;}
.h28{height:324.000000px;}
.h14{height:709.455000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:151.950000px;}
.w8{width:223.275000px;}
.w9{width:524.055000px;}
.wc{width:524.700000px;}
.wb{width:525.600000px;}
.wd{width:531.000000px;}
.wa{width:540.000000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x19{left:9.870000px;}
.xc{left:13.500000px;}
.x18{left:16.710000px;}
.xf{left:29.736000px;}
.x10{left:39.636000px;}
.x4a{left:46.005000px;}
.x34{left:49.215000px;}
.x1a{left:62.790000px;}
.x24{left:66.210000px;}
.x29{left:71.100000px;}
.x1{left:72.360000px;}
.x3f{left:79.380000px;}
.x4{left:80.999987px;}
.x35{left:86.475000px;}
.x5{left:98.130000px;}
.x1b{left:107.100000px;}
.x46{left:117.750000px;}
.x2a{left:132.045000px;}
.x14{left:135.035987px;}
.x3a{left:136.590000px;}
.x36{left:140.295000px;}
.x27{left:147.390000px;}
.x1c{left:151.455000px;}
.x37{left:152.670000px;}
.x38{left:156.525000px;}
.xe{left:164.370000px;}
.x17{left:176.400000px;}
.x3e{left:180.900000px;}
.x33{left:183.060000px;}
.x44{left:185.910000px;}
.x3b{left:188.205000px;}
.x42{left:191.265000px;}
.x2b{left:192.990000px;}
.x1d{left:195.765000px;}
.x49{left:198.870000px;}
.x43{left:203.400000px;}
.x41{left:206.790000px;}
.xd{left:213.555000px;}
.x12{left:215.175000px;}
.x28{left:216.435000px;}
.x6{left:224.850000px;}
.x31{left:227.520000px;}
.x45{left:238.680000px;}
.x1e{left:240.090000px;}
.x2c{left:253.950000px;}
.x40{left:264.210000px;}
.x48{left:273.420000px;}
.x1f{left:284.430000px;}
.x9{left:288.435000px;}
.x13{left:296.175000px;}
.x2d{left:314.895000px;}
.x20{left:328.755000px;}
.x25{left:332.130000px;}
.x7{left:348.195000px;}
.x11{left:349.275000px;}
.x39{left:364.320000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x2e{left:375.870000px;}
.x26{left:397.365000px;}
.x47{left:400.785000px;}
.x21{left:417.420000px;}
.x2f{left:436.830000px;}
.x16{left:446.474987px;}
.xa{left:455.700000px;}
.x22{left:461.775000px;}
.x30{left:497.775000px;}
.x23{left:506.085000px;}
.x32{left:709.889987px;}
.x3c{left:712.049987px;}
.x15{left:716.549987px;}
.x3d{left:743.549987px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lse{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.645333pt;}
.ls15{letter-spacing:-0.370667pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.288000pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls13{letter-spacing:-0.081067pt;}
.ls18{letter-spacing:-0.051840pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.077867pt;}
.ls17{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls16{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.154880pt;}
.lsb{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.337707pt;}
.ls10{letter-spacing:0.391040pt;}
.ls4{letter-spacing:0.398080pt;}
.ls5{letter-spacing:0.558080pt;}
.ls1a{letter-spacing:0.592640pt;}
.ls3{letter-spacing:0.698880pt;}
.ls19{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.005120pt;}
.wsc{word-spacing:-10.876928pt;}
.ws5{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws17{word-spacing:-7.994667pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
.wsd{word-spacing:67.669333pt;}
.ws13{word-spacing:70.869333pt;}
.wsb{word-spacing:73.088000pt;}
.wse{word-spacing:123.877333pt;}
.ws14{word-spacing:338.672000pt;}
.ws10{word-spacing:344.144000pt;}
.wsf{word-spacing:344.885333pt;}
.ws12{word-spacing:398.362667pt;}
.ws11{word-spacing:722.896000pt;}
.ws15{word-spacing:779.792000pt;}
._24{margin-left:-7.392000pt;}
._27{margin-left:-5.774379pt;}
._11{margin-left:-4.820907pt;}
._4{margin-left:-3.482240pt;}
._2{margin-left:-2.543147pt;}
._0{margin-left:-0.901333pt;}
._1{width:0.954667pt;}
._3{width:1.882667pt;}
._a{width:3.613653pt;}
._12{width:4.552533pt;}
._6{width:5.485440pt;}
._5{width:6.838400pt;}
._c{width:8.286720pt;}
._b{width:9.508480pt;}
._17{width:10.889600pt;}
._18{width:12.059733pt;}
._f{width:14.767147pt;}
._e{width:15.829760pt;}
._10{width:17.106133pt;}
._13{width:18.645120pt;}
._1b{width:19.615360pt;}
._8{width:20.530133pt;}
._7{width:21.513600pt;}
._19{width:22.469760pt;}
._1a{width:23.850880pt;}
._25{width:25.603840pt;}
._26{width:26.600960pt;}
._9{width:30.203093pt;}
._16{width:31.395413pt;}
._d{width:32.617173pt;}
._15{width:55.423147pt;}
._14{width:56.466560pt;}
._1e{width:66.976000pt;}
._22{width:92.272000pt;}
._1d{width:127.824000pt;}
._28{width:130.149333pt;}
._21{width:133.797333pt;}
._1c{width:207.632000pt;}
._1f{width:280.448000pt;}
._20{width:333.834667pt;}
._23{width:443.312000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fsa{font-size:75.008000pt;}
.fsb{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:0.160000pt;}
.y55{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y62{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y60{bottom:9.440000pt;}
.y1b{bottom:11.200000pt;}
.yc{bottom:12.160000pt;}
.y4{bottom:15.552000pt;}
.yc0{bottom:15.653333pt;}
.yd4{bottom:15.680000pt;}
.yfc{bottom:15.712000pt;}
.yef{bottom:15.746667pt;}
.y2{bottom:17.952000pt;}
.y54{bottom:18.240000pt;}
.y61{bottom:19.840000pt;}
.y18{bottom:21.120000pt;}
.y5f{bottom:22.400000pt;}
.yb{bottom:26.720000pt;}
.y53{bottom:33.600000pt;}
.y17{bottom:35.880000pt;}
.y5{bottom:37.280000pt;}
.ybe{bottom:41.253333pt;}
.ya{bottom:41.280000pt;}
.yed{bottom:41.306667pt;}
.y11e{bottom:41.346667pt;}
.yfa{bottom:42.306667pt;}
.y52{bottom:48.954667pt;}
.y5d{bottom:48.960000pt;}
.y16{bottom:50.440000pt;}
.ybd{bottom:55.866667pt;}
.yf9{bottom:56.960000pt;}
.y1{bottom:57.280000pt;}
.yd1{bottom:61.213333pt;}
.y5c{bottom:64.320000pt;}
.yec{bottom:64.573333pt;}
.y11d{bottom:64.613333pt;}
.y9{bottom:65.120000pt;}
.y15{bottom:65.160000pt;}
.y51{bottom:65.274667pt;}
.yf1{bottom:72.546667pt;}
.ybc{bottom:75.866667pt;}
.yce{bottom:76.133333pt;}
.y14{bottom:76.200000pt;}
.y5b{bottom:79.520000pt;}
.y50{bottom:81.594667pt;}
.ycc{bottom:81.853333pt;}
.y8{bottom:82.586667pt;}
.y126{bottom:86.080000pt;}
.yeb{bottom:87.840000pt;}
.y11c{bottom:87.866667pt;}
.y13{bottom:89.800000pt;}
.yf2{bottom:91.333333pt;}
.y1c{bottom:94.752000pt;}
.y5a{bottom:94.880000pt;}
.y94{bottom:96.352000pt;}
.y4f{bottom:96.794667pt;}
.ye1{bottom:97.152000pt;}
.y7{bottom:98.906667pt;}
.ye3{bottom:103.453333pt;}
.ycd{bottom:104.706667pt;}
.y12{bottom:106.600000pt;}
.y122{bottom:109.120000pt;}
.ye0{bottom:109.472000pt;}
.yd0{bottom:109.920000pt;}
.yf0{bottom:110.080000pt;}
.y59{bottom:110.240000pt;}
.y93{bottom:111.552000pt;}
.y4e{bottom:112.154667pt;}
.y114{bottom:119.226667pt;}
.ye4{bottom:120.773333pt;}
.yad{bottom:121.152000pt;}
.ycf{bottom:123.226667pt;}
.y14e{bottom:123.520000pt;}
.y123{bottom:125.093333pt;}
.y58{bottom:125.626667pt;}
.yba{bottom:125.893333pt;}
.y92{bottom:126.912000pt;}
.y4d{bottom:127.514667pt;}
.y14d{bottom:127.520000pt;}
.yb9{bottom:128.346667pt;}
.yf3{bottom:128.826667pt;}
.yd3{bottom:129.186667pt;}
.y11{bottom:129.480000pt;}
.y125{bottom:131.066667pt;}
.yd2{bottom:131.613333pt;}
.y115{bottom:134.973333pt;}
.ybb{bottom:136.320000pt;}
.yac{bottom:136.346667pt;}
.ye5{bottom:138.080000pt;}
.y57{bottom:140.986667pt;}
.y91{bottom:142.266667pt;}
.y4c{bottom:142.874667pt;}
.yaf{bottom:146.653333pt;}
.yf4{bottom:147.586667pt;}
.yc2{bottom:149.946667pt;}
.y116{bottom:150.720000pt;}
.y10{bottom:151.240000pt;}
.yab{bottom:151.706667pt;}
.ye6{bottom:155.386667pt;}
.yb0{bottom:156.480000pt;}
.y90{bottom:157.626667pt;}
.y4b{bottom:158.234667pt;}
.yc3{bottom:159.386667pt;}
.yb1{bottom:166.266667pt;}
.yf5{bottom:166.373333pt;}
.y117{bottom:166.466667pt;}
.yaa{bottom:167.066667pt;}
.yc4{bottom:168.826667pt;}
.y112{bottom:171.066667pt;}
.ye7{bottom:172.706667pt;}
.y121{bottom:172.960000pt;}
.y8f{bottom:172.986667pt;}
.y4a{bottom:173.594667pt;}
.yb2{bottom:176.093333pt;}
.yc5{bottom:178.306667pt;}
.y118{bottom:182.213333pt;}
.ya9{bottom:182.426667pt;}
.y111{bottom:183.546667pt;}
.y120{bottom:183.680000pt;}
.yf6{bottom:185.120000pt;}
.yb3{bottom:185.920000pt;}
.yc6{bottom:187.746667pt;}
.y8e{bottom:188.346667pt;}
.y49{bottom:188.794667pt;}
.ye8{bottom:190.013333pt;}
.y14a{bottom:194.426667pt;}
.yb4{bottom:195.706667pt;}
.y14c{bottom:196.546667pt;}
.yc7{bottom:197.186667pt;}
.ya8{bottom:197.786667pt;}
.y119{bottom:197.986667pt;}
.y8d{bottom:203.546667pt;}
.yf7{bottom:203.866667pt;}
.y48{bottom:204.154667pt;}
.yb5{bottom:205.533333pt;}
.yc8{bottom:206.653333pt;}
.ye9{bottom:207.333333pt;}
.y149{bottom:209.786667pt;}
.ya7{bottom:210.106667pt;}
.yc1{bottom:210.400000pt;}
.y11a{bottom:213.733333pt;}
.yb6{bottom:215.360000pt;}
.yc9{bottom:216.093333pt;}
.y8c{bottom:218.906667pt;}
.y47{bottom:219.554667pt;}
.yf8{bottom:222.653333pt;}
.yea{bottom:224.640000pt;}
.y148{bottom:225.146667pt;}
.yb7{bottom:225.186667pt;}
.yca{bottom:225.533333pt;}
.y11b{bottom:229.466667pt;}
.y8b{bottom:234.266667pt;}
.y46{bottom:234.914667pt;}
.yb8{bottom:234.973333pt;}
.ycb{bottom:235.013333pt;}
.y147{bottom:240.346667pt;}
.yfb{bottom:247.706667pt;}
.y8a{bottom:249.626667pt;}
.yee{bottom:249.733333pt;}
.y45{bottom:250.274667pt;}
.y11f{bottom:254.560000pt;}
.y124{bottom:255.013333pt;}
.y146{bottom:255.706667pt;}
.ybf{bottom:260.066667pt;}
.y14f{bottom:260.160000pt;}
.y89{bottom:264.986667pt;}
.y44{bottom:265.634667pt;}
.y145{bottom:271.066667pt;}
.y88{bottom:280.346667pt;}
.y43{bottom:280.834667pt;}
.y144{bottom:286.426667pt;}
.y87{bottom:295.546667pt;}
.y42{bottom:296.194667pt;}
.y143{bottom:301.826667pt;}
.y86{bottom:310.946667pt;}
.y41{bottom:311.554667pt;}
.y142{bottom:317.186667pt;}
.y85{bottom:326.306667pt;}
.y40{bottom:326.914667pt;}
.y141{bottom:332.386667pt;}
.y84{bottom:341.666667pt;}
.y3f{bottom:342.274667pt;}
.y140{bottom:347.746667pt;}
.y83{bottom:357.026667pt;}
.y3e{bottom:357.634667pt;}
.y13f{bottom:363.106667pt;}
.y82{bottom:372.226667pt;}
.y3d{bottom:372.834667pt;}
.y13e{bottom:378.466667pt;}
.y2c{bottom:380.834667pt;}
.y81{bottom:387.586667pt;}
.y3c{bottom:388.194667pt;}
.ydf{bottom:388.386667pt;}
.y13d{bottom:393.826667pt;}
.y2b{bottom:394.434667pt;}
.yde{bottom:400.866667pt;}
.ye2{bottom:401.440000pt;}
.y80{bottom:402.946667pt;}
.y3b{bottom:403.554667pt;}
.y13c{bottom:409.186667pt;}
.y2a{bottom:410.114667pt;}
.y7f{bottom:418.306667pt;}
.y3a{bottom:418.914667pt;}
.y13b{bottom:424.386667pt;}
.y29{bottom:425.474667pt;}
.y7e{bottom:433.666667pt;}
.y39{bottom:434.274667pt;}
.y13a{bottom:439.746667pt;}
.y28{bottom:440.834667pt;}
.y7d{bottom:449.026667pt;}
.y38{bottom:449.501333pt;}
.y139{bottom:455.106667pt;}
.y27{bottom:456.701333pt;}
.y7c{bottom:464.226667pt;}
.y37{bottom:464.861333pt;}
.y138{bottom:470.466667pt;}
.y26{bottom:472.061333pt;}
.y110{bottom:474.466667pt;}
.y7b{bottom:479.586667pt;}
.y36{bottom:480.221333pt;}
.y137{bottom:485.826667pt;}
.y25{bottom:487.581333pt;}
.y10f{bottom:489.826667pt;}
.y7a{bottom:494.946667pt;}
.y35{bottom:495.581333pt;}
.ya6{bottom:501.026667pt;}
.y24{bottom:502.941333pt;}
.y10e{bottom:505.026667pt;}
.y79{bottom:510.306667pt;}
.y34{bottom:510.941333pt;}
.ya5{bottom:516.386667pt;}
.y23{bottom:518.461333pt;}
.y10d{bottom:520.386667pt;}
.y78{bottom:525.666667pt;}
.y33{bottom:526.301333pt;}
.ya4{bottom:528.866667pt;}
.yae{bottom:529.120000pt;}
.y136{bottom:531.746667pt;}
.y22{bottom:533.981333pt;}
.y10c{bottom:535.746667pt;}
.y77{bottom:541.053333pt;}
.y32{bottom:541.501333pt;}
.y135{bottom:547.133333pt;}
.y21{bottom:549.341333pt;}
.y10b{bottom:551.133333pt;}
.y76{bottom:556.253333pt;}
.y31{bottom:556.861333pt;}
.y134{bottom:562.493333pt;}
.y20{bottom:564.861333pt;}
.y10a{bottom:566.493333pt;}
.y75{bottom:571.613333pt;}
.y30{bottom:572.221333pt;}
.y133{bottom:577.853333pt;}
.y1f{bottom:580.541333pt;}
.y109{bottom:581.853333pt;}
.y74{bottom:586.973333pt;}
.y2f{bottom:587.581333pt;}
.y132{bottom:593.053333pt;}
.y108{bottom:597.053333pt;}
.y73{bottom:602.333333pt;}
.y2e{bottom:602.941333pt;}
.y1e{bottom:604.861333pt;}
.y131{bottom:608.413333pt;}
.y107{bottom:612.413333pt;}
.y72{bottom:617.693333pt;}
.y2d{bottom:618.301333pt;}
.y1d{bottom:620.541333pt;}
.y130{bottom:623.773333pt;}
.y106{bottom:627.773333pt;}
.y71{bottom:633.053333pt;}
.y12f{bottom:639.133333pt;}
.y105{bottom:643.133333pt;}
.y70{bottom:648.253333pt;}
.y12e{bottom:654.493333pt;}
.y104{bottom:658.493333pt;}
.y6f{bottom:663.613333pt;}
.y12d{bottom:669.853333pt;}
.y103{bottom:673.853333pt;}
.y6e{bottom:678.973333pt;}
.ydd{bottom:681.853333pt;}
.y12c{bottom:685.053333pt;}
.y102{bottom:689.053333pt;}
.y6d{bottom:694.333333pt;}
.ydc{bottom:697.213333pt;}
.y12b{bottom:700.413333pt;}
.y101{bottom:704.413333pt;}
.y6c{bottom:709.693333pt;}
.ydb{bottom:712.413333pt;}
.y12a{bottom:715.773333pt;}
.y100{bottom:719.773333pt;}
.y6b{bottom:724.893333pt;}
.y19{bottom:725.373333pt;}
.yda{bottom:727.773333pt;}
.y129{bottom:731.133333pt;}
.yff{bottom:735.133333pt;}
.y6a{bottom:740.253333pt;}
.yd9{bottom:743.133333pt;}
.y128{bottom:746.493333pt;}
.yfe{bottom:750.493333pt;}
.yf{bottom:751.773333pt;}
.y69{bottom:755.613333pt;}
.yd8{bottom:758.493333pt;}
.y127{bottom:758.973333pt;}
.y14b{bottom:759.040000pt;}
.yfd{bottom:762.973333pt;}
.y113{bottom:764.640000pt;}
.y68{bottom:770.973333pt;}
.yd7{bottom:773.893333pt;}
.y67{bottom:786.373333pt;}
.yd6{bottom:789.093333pt;}
.y66{bottom:801.733333pt;}
.yd5{bottom:804.453333pt;}
.y65{bottom:816.933333pt;}
.ya3{bottom:819.813333pt;}
.y64{bottom:832.293333pt;}
.ya2{bottom:835.173333pt;}
.y63{bottom:848.293333pt;}
.ya1{bottom:850.533333pt;}
.y5e{bottom:861.093333pt;}
.ya0{bottom:865.893333pt;}
.y9f{bottom:881.093333pt;}
.y56{bottom:893.573333pt;}
.y9e{bottom:896.453333pt;}
.y9d{bottom:911.813333pt;}
.yd{bottom:916.453333pt;}
.y9c{bottom:927.173333pt;}
.y6{bottom:939.013333pt;}
.y9b{bottom:942.533333pt;}
.y9a{bottom:957.893333pt;}
.y99{bottom:973.093333pt;}
.y98{bottom:988.453333pt;}
.y97{bottom:1003.813333pt;}
.y96{bottom:1019.200000pt;}
.y95{bottom:1034.560000pt;}
.hb{height:22.080000pt;}
.h11{height:25.750000pt;}
.h12{height:26.400000pt;}
.h2{height:29.312000pt;}
.h8{height:32.160000pt;}
.h1e{height:32.480000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h18{height:37.583438pt;}
.h20{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h2a{height:42.691250pt;}
.h1f{height:42.745000pt;}
.h1c{height:42.952500pt;}
.h4{height:47.742188pt;}
.h22{height:47.869500pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h23{height:74.477812pt;}
.h27{height:74.605125pt;}
.h29{height:98.296875pt;}
.h7{height:108.032000pt;}
.h1d{height:153.466667pt;}
.hc{height:164.666667pt;}
.h25{height:275.520000pt;}
.h24{height:277.600000pt;}
.h26{height:282.400000pt;}
.h21{height:287.840000pt;}
.h28{height:288.000000pt;}
.h14{height:630.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:135.066667pt;}
.w8{width:198.466667pt;}
.w9{width:465.826667pt;}
.wc{width:466.400000pt;}
.wb{width:467.200000pt;}
.wd{width:472.000000pt;}
.wa{width:480.000000pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x19{left:8.773333pt;}
.xc{left:12.000000pt;}
.x18{left:14.853333pt;}
.xf{left:26.432000pt;}
.x10{left:35.232000pt;}
.x4a{left:40.893333pt;}
.x34{left:43.746667pt;}
.x1a{left:55.813333pt;}
.x24{left:58.853333pt;}
.x29{left:63.200000pt;}
.x1{left:64.320000pt;}
.x3f{left:70.560000pt;}
.x4{left:71.999988pt;}
.x35{left:76.866667pt;}
.x5{left:87.226667pt;}
.x1b{left:95.200000pt;}
.x46{left:104.666667pt;}
.x2a{left:117.373333pt;}
.x14{left:120.031988pt;}
.x3a{left:121.413333pt;}
.x36{left:124.706667pt;}
.x27{left:131.013333pt;}
.x1c{left:134.626667pt;}
.x37{left:135.706667pt;}
.x38{left:139.133333pt;}
.xe{left:146.106667pt;}
.x17{left:156.800000pt;}
.x3e{left:160.800000pt;}
.x33{left:162.720000pt;}
.x44{left:165.253333pt;}
.x3b{left:167.293333pt;}
.x42{left:170.013333pt;}
.x2b{left:171.546667pt;}
.x1d{left:174.013333pt;}
.x49{left:176.773333pt;}
.x43{left:180.800000pt;}
.x41{left:183.813333pt;}
.xd{left:189.826667pt;}
.x12{left:191.266667pt;}
.x28{left:192.386667pt;}
.x6{left:199.866667pt;}
.x31{left:202.240000pt;}
.x45{left:212.160000pt;}
.x1e{left:213.413333pt;}
.x2c{left:225.733333pt;}
.x40{left:234.853333pt;}
.x48{left:243.040000pt;}
.x1f{left:252.826667pt;}
.x9{left:256.386667pt;}
.x13{left:263.266667pt;}
.x2d{left:279.906667pt;}
.x20{left:292.226667pt;}
.x25{left:295.226667pt;}
.x7{left:309.506667pt;}
.x11{left:310.466667pt;}
.x39{left:323.840000pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x2e{left:334.106667pt;}
.x26{left:353.213333pt;}
.x47{left:356.253333pt;}
.x21{left:371.040000pt;}
.x2f{left:388.293333pt;}
.x16{left:396.866655pt;}
.xa{left:405.066667pt;}
.x22{left:410.466667pt;}
.x30{left:442.466667pt;}
.x23{left:449.853333pt;}
.x32{left:631.013322pt;}
.x3c{left:632.933322pt;}
.x15{left:636.933322pt;}
.x3d{left:660.933322pt;}
.x3{left:663.013333pt;}
}




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