
    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_dab109b290c45085d384a908.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_6621151cc98896a4ebdae24a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_c50f8a74d58b00c8c5b2eb64.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2b441d0bb9cb56d0297fe469.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_75e740571b66ac518dd780de.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_daf573c49b8cdce0c7ae1d9a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a15b04275ebc5f784a81c18f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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_074dd09409a66a722dc816a2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5ca3855fe05e34e618c4d1ea.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_841a3f54e9f2c57ce562a61f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_763483cbe8f7483fd8eb47e3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_1ba1032568d315df4589ad4c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.689941;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_a72bf396a0652b0ee263a1b3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.851074;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_596eadcf96cb098bc89f4778.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_bfc0bb637894297088b33e6f.woff')format("woff");}.fff{font-family:fff;line-height:0.910645;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_62c82c1f4e01e9e771bf6698.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_94b42d9b249953294adf9327.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_38f6b9401304d3f168f83965.woff')format("woff");}.ff12{font-family:ff12;line-height:0.891602;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_2b4503862401b767e79f030b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_297cf63aa8c03451cbec2320.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1f{letter-spacing:-0.459648px;}
.ls25{letter-spacing:-0.417312px;}
.ls1b{letter-spacing:-0.381024px;}
.ls2d{letter-spacing:-0.361152px;}
.ls19{letter-spacing:-0.338688px;}
.ls1e{letter-spacing:-0.320544px;}
.ls1a{letter-spacing:-0.302400px;}
.ls2b{letter-spacing:-0.273600px;}
.ls10{letter-spacing:-0.260064px;}
.ls1c{letter-spacing:-0.241920px;}
.ls11{letter-spacing:-0.223776px;}
.ls15{letter-spacing:-0.198720px;}
.ls2c{letter-spacing:-0.180576px;}
.ls13{letter-spacing:-0.175392px;}
.lse{letter-spacing:-0.158976px;}
.ls20{letter-spacing:-0.157248px;}
.lsd{letter-spacing:-0.152352px;}
.lsc{letter-spacing:-0.145728px;}
.ls1d{letter-spacing:-0.145152px;}
.ls14{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.125856px;}
.ls12{letter-spacing:-0.120960px;}
.lsa{letter-spacing:-0.119232px;}
.ls9{letter-spacing:-0.079488px;}
.lsb{letter-spacing:-0.059616px;}
.ls8{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.029952px;}
.ls18{letter-spacing:0.058320px;}
.ls22{letter-spacing:0.123552px;}
.ls23{letter-spacing:0.161568px;}
.ls7{letter-spacing:0.194832px;}
.ls0{letter-spacing:0.240048px;}
.ls1{letter-spacing:0.240480px;}
.ls24{letter-spacing:0.242352px;}
.ls17{letter-spacing:0.275616px;}
.ls21{letter-spacing:0.285120px;}
.ls16{letter-spacing:0.359136px;}
.ls3{letter-spacing:4.248144px;}
.ls2e{letter-spacing:5.944320px;}
.ls28{letter-spacing:6.131952px;}
.ls31{letter-spacing:7.788960px;}
.ls29{letter-spacing:8.409600px;}
.ls27{letter-spacing:10.157328px;}
.ls4{letter-spacing:11.090448px;}
.ls5{letter-spacing:14.592816px;}
.ls30{letter-spacing:16.185600px;}
.ls6{letter-spacing:18.912672px;}
.ls2a{letter-spacing:31.104000px;}
.ls2f{letter-spacing:46.186560px;}
.ls2{letter-spacing:106.729920px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.480512px;}
.ws1{word-spacing:-16.440768px;}
.ws9{word-spacing:-15.120000px;}
.wse{word-spacing:-14.974848px;}
.wsd{word-spacing:-14.962752px;}
.wsc{word-spacing:-14.944608px;}
.ws13{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.ws4{word-spacing:-14.859936px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws14{word-spacing:-14.817600px;}
.wsa{word-spacing:-14.799456px;}
.ws7{word-spacing:-14.781312px;}
.wsb{word-spacing:-14.738976px;}
.ws12{word-spacing:-14.702688px;}
.ws15{word-spacing:-14.660352px;}
.ws10{word-spacing:-13.680000px;}
.ws11{word-spacing:-13.318848px;}
.ws6{word-spacing:-0.097200px;}
.wsf{word-spacing:0.000000px;}
._0{margin-left:-1.059552px;}
._1{width:1.023408px;}
._a{width:2.708640px;}
._c{width:3.883680px;}
._2{width:4.967856px;}
._3{width:6.010272px;}
._f{width:7.030656px;}
._11{width:9.073440px;}
._12{width:10.100160px;}
._5{width:11.247840px;}
._4{width:12.403152px;}
._6{width:13.849920px;}
._7{width:15.782256px;}
._19{width:17.427600px;}
._9{width:18.860400px;}
._8{width:19.922688px;}
._21{width:21.057984px;}
._27{width:22.256640px;}
._e{width:23.410512px;}
._20{width:25.154928px;}
._13{width:26.611200px;}
._22{width:27.881280px;}
._23{width:29.090880px;}
._29{width:30.360960px;}
._26{width:31.872960px;}
._1f{width:33.324480px;}
._1b{width:35.138880px;}
._2e{width:36.288000px;}
._d{width:37.316160px;}
._1e{width:39.351888px;}
._1a{width:40.400640px;}
._b{width:41.852160px;}
._17{width:43.243200px;}
._16{width:44.573760px;}
._25{width:46.085760px;}
._33{width:47.419200px;}
._24{width:48.807360px;}
._15{width:49.813776px;}
._14{width:50.984640px;}
._28{width:52.268976px;}
._10{width:54.915840px;}
._2b{width:56.246400px;}
._18{width:59.875200px;}
._34{width:61.629120px;}
._32{width:68.644800px;}
._2f{width:69.733440px;}
._2d{width:71.305920px;}
._2a{width:73.664640px;}
._31{width:75.720960px;}
._30{width:94.167360px;}
._2c{width:102.453120px;}
._1c{width:153.290016px;}
._1d{width:154.586880px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs8{font-size:24.480000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:47.520000px;}
.fs9{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fsa{font-size:74.880000px;}
.fs3{font-size:83.520000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:0.300000px;}
.y41{bottom:2.100000px;}
.y8a{bottom:3.840000px;}
.y94{bottom:21.840000px;}
.y8e{bottom:41.280000px;}
.y44{bottom:53.640000px;}
.y6{bottom:58.320000px;}
.y8d{bottom:58.560000px;}
.y40{bottom:64.500000px;}
.y8c{bottom:75.840000px;}
.y5{bottom:86.400000px;}
.ybb{bottom:99.960000px;}
.yba{bottom:117.240000px;}
.yda{bottom:118.800000px;}
.ya1{bottom:119.400000px;}
.y7d{bottom:121.680000px;}
.y3b{bottom:125.280000px;}
.yb9{bottom:134.520000px;}
.yd9{bottom:136.080000px;}
.ya0{bottom:136.680000px;}
.y7c{bottom:138.960000px;}
.y3a{bottom:142.200000px;}
.yb8{bottom:151.800000px;}
.yd8{bottom:153.360000px;}
.y9f{bottom:153.960000px;}
.y7b{bottom:156.240000px;}
.y39{bottom:159.480000px;}
.yb7{bottom:169.080000px;}
.yd7{bottom:170.280000px;}
.y9e{bottom:171.240000px;}
.y7a{bottom:173.520000px;}
.y38{bottom:176.760000px;}
.yb6{bottom:186.000000px;}
.yd6{bottom:187.560000px;}
.y9d{bottom:188.520000px;}
.y79{bottom:190.800000px;}
.y37{bottom:194.040000px;}
.yb5{bottom:203.280000px;}
.yd5{bottom:204.840000px;}
.y9c{bottom:205.800000px;}
.y78{bottom:208.080000px;}
.y36{bottom:211.320000px;}
.yb4{bottom:220.560000px;}
.yd4{bottom:222.120000px;}
.y9b{bottom:222.720000px;}
.y77{bottom:225.360000px;}
.y35{bottom:228.600000px;}
.yb3{bottom:237.840000px;}
.yd3{bottom:239.400000px;}
.y9a{bottom:240.000000px;}
.y76{bottom:242.280000px;}
.y34{bottom:245.880000px;}
.ye3{bottom:248.400000px;}
.yd2{bottom:256.680000px;}
.y99{bottom:257.280000px;}
.y12a{bottom:258.120000px;}
.y75{bottom:259.560000px;}
.y33{bottom:263.160000px;}
.ye2{bottom:265.680000px;}
.yd1{bottom:273.960000px;}
.y98{bottom:274.560000px;}
.y102{bottom:275.400000px;}
.y74{bottom:276.840000px;}
.y129{bottom:278.280000px;}
.y32{bottom:280.440000px;}
.ye1{bottom:282.960000px;}
.yd0{bottom:291.240000px;}
.y97{bottom:291.840000px;}
.y101{bottom:292.680000px;}
.y73{bottom:294.120000px;}
.y128{bottom:295.560000px;}
.y31{bottom:297.720000px;}
.ye0{bottom:300.240000px;}
.ycf{bottom:308.520000px;}
.y100{bottom:309.960000px;}
.y72{bottom:311.400000px;}
.y127{bottom:312.840000px;}
.y3f{bottom:315.000000px;}
.ydf{bottom:317.520000px;}
.y30{bottom:324.000000px;}
.yce{bottom:325.800000px;}
.yff{bottom:327.240000px;}
.y71{bottom:328.680000px;}
.y126{bottom:330.120000px;}
.y3e{bottom:331.920000px;}
.yde{bottom:334.800000px;}
.y2f{bottom:340.920000px;}
.ycd{bottom:343.080000px;}
.yfe{bottom:344.520000px;}
.y70{bottom:345.960000px;}
.y125{bottom:347.400000px;}
.y3d{bottom:349.200000px;}
.ydd{bottom:352.080000px;}
.y2e{bottom:358.200000px;}
.ycc{bottom:360.360000px;}
.yfd{bottom:361.800000px;}
.y6f{bottom:363.240000px;}
.y124{bottom:364.680000px;}
.y3c{bottom:366.480000px;}
.ydc{bottom:369.360000px;}
.y2d{bottom:375.480000px;}
.ycb{bottom:377.280000px;}
.y6e{bottom:380.520000px;}
.y123{bottom:381.960000px;}
.ydb{bottom:386.280000px;}
.yfc{bottom:387.720000px;}
.y2c{bottom:392.760000px;}
.y6d{bottom:397.800000px;}
.y122{bottom:399.240000px;}
.yca{bottom:403.560000px;}
.y2b{bottom:410.040000px;}
.yfb{bottom:414.000000px;}
.y6c{bottom:415.080000px;}
.y121{bottom:416.520000px;}
.yc9{bottom:420.840000px;}
.y2a{bottom:427.320000px;}
.yfa{bottom:431.280000px;}
.y6b{bottom:432.000000px;}
.y120{bottom:433.800000px;}
.yb2{bottom:435.000000px;}
.y29{bottom:444.600000px;}
.yf9{bottom:448.560000px;}
.y6a{bottom:449.280000px;}
.y11f{bottom:451.080000px;}
.yc8{bottom:453.000000px;}
.y28{bottom:461.880000px;}
.y69{bottom:466.560000px;}
.y11e{bottom:468.000000px;}
.yc7{bottom:471.000000px;}
.yf8{bottom:474.840000px;}
.y27{bottom:479.160000px;}
.y68{bottom:483.840000px;}
.y11d{bottom:485.280000px;}
.yc6{bottom:489.000000px;}
.yf7{bottom:492.120000px;}
.y26{bottom:496.440000px;}
.y67{bottom:501.120000px;}
.y11c{bottom:502.560000px;}
.yc5{bottom:507.000000px;}
.yf6{bottom:509.400000px;}
.y66{bottom:518.400000px;}
.y11b{bottom:519.840000px;}
.yc4{bottom:525.000000px;}
.y25{bottom:531.720000px;}
.y65{bottom:535.680000px;}
.y11a{bottom:537.120000px;}
.yc3{bottom:543.000000px;}
.y64{bottom:552.960000px;}
.y119{bottom:554.400000px;}
.yc2{bottom:561.000000px;}
.y24{bottom:568.080000px;}
.y63{bottom:570.240000px;}
.y118{bottom:571.680000px;}
.yc1{bottom:579.000000px;}
.y23{bottom:582.120000px;}
.yf5{bottom:587.520000px;}
.y117{bottom:588.960000px;}
.y22{bottom:596.160000px;}
.y62{bottom:596.520000px;}
.yc0{bottom:597.000000px;}
.yf4{bottom:604.800000px;}
.y116{bottom:606.240000px;}
.y21{bottom:609.840000px;}
.y61{bottom:613.800000px;}
.ybf{bottom:615.000000px;}
.yf3{bottom:622.080000px;}
.y115{bottom:623.520000px;}
.y20{bottom:624.960000px;}
.y60{bottom:631.080000px;}
.ybe{bottom:633.000000px;}
.yf2{bottom:639.000000px;}
.y114{bottom:640.800000px;}
.y1f{bottom:642.240000px;}
.y5f{bottom:648.000000px;}
.ybd{bottom:651.000000px;}
.yf1{bottom:656.280000px;}
.y113{bottom:658.080000px;}
.y1e{bottom:659.520000px;}
.y5e{bottom:665.280000px;}
.ybc{bottom:669.000000px;}
.yf0{bottom:673.560000px;}
.y112{bottom:675.000000px;}
.y1d{bottom:676.800000px;}
.y5d{bottom:682.560000px;}
.y96{bottom:687.000000px;}
.y111{bottom:692.280000px;}
.y1c{bottom:694.080000px;}
.y5c{bottom:699.840000px;}
.yb1{bottom:705.000000px;}
.y110{bottom:709.560000px;}
.y1b{bottom:711.360000px;}
.y5b{bottom:717.120000px;}
.yb0{bottom:723.000000px;}
.yef{bottom:726.120000px;}
.y10f{bottom:726.840000px;}
.y1a{bottom:728.640000px;}
.y5a{bottom:734.400000px;}
.yaf{bottom:741.000000px;}
.yee{bottom:743.400000px;}
.y10e{bottom:744.120000px;}
.y19{bottom:745.920000px;}
.y59{bottom:751.680000px;}
.yae{bottom:759.000000px;}
.yed{bottom:760.680000px;}
.y10d{bottom:761.400000px;}
.y18{bottom:762.840000px;}
.y58{bottom:768.960000px;}
.yad{bottom:777.000000px;}
.yec{bottom:777.960000px;}
.y10c{bottom:778.680000px;}
.y17{bottom:780.120000px;}
.y88{bottom:786.240000px;}
.yac{bottom:795.000000px;}
.y57{bottom:795.240000px;}
.y10b{bottom:795.960000px;}
.y16{bottom:797.400000px;}
.y87{bottom:803.520000px;}
.yeb{bottom:812.520000px;}
.yab{bottom:813.000000px;}
.y10a{bottom:813.240000px;}
.y15{bottom:814.680000px;}
.y56{bottom:821.520000px;}
.y86{bottom:829.440000px;}
.yea{bottom:829.800000px;}
.y109{bottom:830.520000px;}
.yaa{bottom:831.000000px;}
.y14{bottom:831.960000px;}
.y55{bottom:838.800000px;}
.ye9{bottom:846.720000px;}
.y108{bottom:847.800000px;}
.ya9{bottom:849.000000px;}
.y13{bottom:849.240000px;}
.y54{bottom:855.720000px;}
.ye8{bottom:864.000000px;}
.y107{bottom:864.720000px;}
.y12{bottom:866.520000px;}
.ya8{bottom:867.000000px;}
.y53{bottom:873.000000px;}
.ye7{bottom:881.280000px;}
.y106{bottom:882.000000px;}
.y11{bottom:883.800000px;}
.ya7{bottom:885.000000px;}
.y52{bottom:890.280000px;}
.ye6{bottom:898.560000px;}
.y105{bottom:899.280000px;}
.y10{bottom:901.080000px;}
.ya6{bottom:903.000000px;}
.y51{bottom:907.560000px;}
.ye5{bottom:915.840000px;}
.y104{bottom:916.560000px;}
.yf{bottom:920.520000px;}
.ya5{bottom:921.000000px;}
.y50{bottom:924.840000px;}
.y103{bottom:933.840000px;}
.ye{bottom:937.800000px;}
.ya4{bottom:939.000000px;}
.y85{bottom:942.120000px;}
.y4f{bottom:951.120000px;}
.yd{bottom:955.080000px;}
.ya3{bottom:957.000000px;}
.y84{bottom:959.400000px;}
.y4e{bottom:968.400000px;}
.yc{bottom:973.080000px;}
.ya2{bottom:975.000000px;}
.y83{bottom:976.680000px;}
.y4d{bottom:985.680000px;}
.y93{bottom:993.000000px;}
.y82{bottom:993.960000px;}
.yb{bottom:995.760000px;}
.y4c{bottom:1002.960000px;}
.y95{bottom:1011.000000px;}
.y81{bottom:1011.240000px;}
.ya{bottom:1017.000000px;}
.y4b{bottom:1020.240000px;}
.y80{bottom:1028.520000px;}
.y8b{bottom:1029.000000px;}
.y4a{bottom:1037.520000px;}
.y7f{bottom:1045.800000px;}
.y92{bottom:1047.000000px;}
.y9{bottom:1047.600000px;}
.y49{bottom:1054.800000px;}
.y7e{bottom:1062.720000px;}
.y91{bottom:1065.000000px;}
.y8{bottom:1071.720000px;}
.ye4{bottom:1080.000000px;}
.y90{bottom:1083.000000px;}
.y48{bottom:1089.000000px;}
.y8f{bottom:1101.000000px;}
.y47{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y89{bottom:1119.000000px;}
.y46{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.y45{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y43{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hd{height:4.500000px;}
.h10{height:18.000000px;}
.ha{height:26.274375px;}
.hc{height:32.994844px;}
.h12{height:36.000000px;}
.he{height:37.085625px;}
.h5{height:40.989375px;}
.hb{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h3{height:48.095156px;}
.hf{height:49.907813px;}
.h9{height:56.593125px;}
.h7{height:56.604375px;}
.h8{height:71.982422px;}
.h11{height:90.000000px;}
.h14{height:252.000000px;}
.h13{height:306.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w3{width:106.500000px;}
.w5{width:207.000000px;}
.w4{width:382.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xe{left:1.559988px;}
.xf{left:3.810048px;}
.x12{left:7.500000px;}
.x14{left:9.060072px;}
.x11{left:100.500000px;}
.x5{left:108.000000px;}
.x8{left:109.649412px;}
.x4{left:121.562640px;}
.x16{left:135.000000px;}
.xd{left:160.500000px;}
.x13{left:205.500000px;}
.xa{left:259.179912px;}
.x10{left:289.721916px;}
.x2{left:298.937628px;}
.x9{left:316.701396px;}
.xb{left:399.801240px;}
.x3{left:446.474880px;}
.xc{left:473.040000px;}
.x17{left:500.040000px;}
.x1{left:514.061640px;}
.x15{left:586.500000px;}
.x7{left:603.506520px;}
.x6{left:759.861720px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1f{letter-spacing:-0.408576pt;}
.ls25{letter-spacing:-0.370944pt;}
.ls1b{letter-spacing:-0.338688pt;}
.ls2d{letter-spacing:-0.321024pt;}
.ls19{letter-spacing:-0.301056pt;}
.ls1e{letter-spacing:-0.284928pt;}
.ls1a{letter-spacing:-0.268800pt;}
.ls2b{letter-spacing:-0.243200pt;}
.ls10{letter-spacing:-0.231168pt;}
.ls1c{letter-spacing:-0.215040pt;}
.ls11{letter-spacing:-0.198912pt;}
.ls15{letter-spacing:-0.176640pt;}
.ls2c{letter-spacing:-0.160512pt;}
.ls13{letter-spacing:-0.155904pt;}
.lse{letter-spacing:-0.141312pt;}
.ls20{letter-spacing:-0.139776pt;}
.lsd{letter-spacing:-0.135424pt;}
.lsc{letter-spacing:-0.129536pt;}
.ls1d{letter-spacing:-0.129024pt;}
.ls14{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.111872pt;}
.ls12{letter-spacing:-0.107520pt;}
.lsa{letter-spacing:-0.105984pt;}
.ls9{letter-spacing:-0.070656pt;}
.lsb{letter-spacing:-0.052992pt;}
.ls8{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.026624pt;}
.ls18{letter-spacing:0.051840pt;}
.ls22{letter-spacing:0.109824pt;}
.ls23{letter-spacing:0.143616pt;}
.ls7{letter-spacing:0.173184pt;}
.ls0{letter-spacing:0.213376pt;}
.ls1{letter-spacing:0.213760pt;}
.ls24{letter-spacing:0.215424pt;}
.ls17{letter-spacing:0.244992pt;}
.ls21{letter-spacing:0.253440pt;}
.ls16{letter-spacing:0.319232pt;}
.ls3{letter-spacing:3.776128pt;}
.ls2e{letter-spacing:5.283840pt;}
.ls28{letter-spacing:5.450624pt;}
.ls31{letter-spacing:6.923520pt;}
.ls29{letter-spacing:7.475200pt;}
.ls27{letter-spacing:9.028736pt;}
.ls4{letter-spacing:9.858176pt;}
.ls5{letter-spacing:12.971392pt;}
.ls30{letter-spacing:14.387200pt;}
.ls6{letter-spacing:16.811264pt;}
.ls2a{letter-spacing:27.648000pt;}
.ls2f{letter-spacing:41.054720pt;}
.ls2{letter-spacing:94.871040pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.649344pt;}
.ws1{word-spacing:-14.614016pt;}
.ws9{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.310976pt;}
.wsd{word-spacing:-13.300224pt;}
.wsc{word-spacing:-13.284096pt;}
.ws13{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.ws4{word-spacing:-13.208832pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws14{word-spacing:-13.171200pt;}
.wsa{word-spacing:-13.155072pt;}
.ws7{word-spacing:-13.138944pt;}
.wsb{word-spacing:-13.101312pt;}
.ws12{word-spacing:-13.069056pt;}
.ws15{word-spacing:-13.031424pt;}
.ws10{word-spacing:-12.160000pt;}
.ws11{word-spacing:-11.838976pt;}
.ws6{word-spacing:-0.086400pt;}
.wsf{word-spacing:0.000000pt;}
._0{margin-left:-0.941824pt;}
._1{width:0.909696pt;}
._a{width:2.407680pt;}
._c{width:3.452160pt;}
._2{width:4.415872pt;}
._3{width:5.342464pt;}
._f{width:6.249472pt;}
._11{width:8.065280pt;}
._12{width:8.977920pt;}
._5{width:9.998080pt;}
._4{width:11.025024pt;}
._6{width:12.311040pt;}
._7{width:14.028672pt;}
._19{width:15.491200pt;}
._9{width:16.764800pt;}
._8{width:17.709056pt;}
._21{width:18.718208pt;}
._27{width:19.783680pt;}
._e{width:20.809344pt;}
._20{width:22.359936pt;}
._13{width:23.654400pt;}
._22{width:24.783360pt;}
._23{width:25.858560pt;}
._29{width:26.987520pt;}
._26{width:28.331520pt;}
._1f{width:29.621760pt;}
._1b{width:31.234560pt;}
._2e{width:32.256000pt;}
._d{width:33.169920pt;}
._1e{width:34.979456pt;}
._1a{width:35.911680pt;}
._b{width:37.201920pt;}
._17{width:38.438400pt;}
._16{width:39.621120pt;}
._25{width:40.965120pt;}
._33{width:42.150400pt;}
._24{width:43.384320pt;}
._15{width:44.278912pt;}
._14{width:45.319680pt;}
._28{width:46.461312pt;}
._10{width:48.814080pt;}
._2b{width:49.996800pt;}
._18{width:53.222400pt;}
._34{width:54.781440pt;}
._32{width:61.017600pt;}
._2f{width:61.985280pt;}
._2d{width:63.383040pt;}
._2a{width:65.479680pt;}
._31{width:67.307520pt;}
._30{width:83.704320pt;}
._2c{width:91.069440pt;}
._1c{width:136.257792pt;}
._1d{width:137.410560pt;}
.fs1{font-size:5.120000pt;}
.fs8{font-size:21.760000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.240000pt;}
.fs9{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fsa{font-size:66.560000pt;}
.fs3{font-size:74.240000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:0.266667pt;}
.y41{bottom:1.866667pt;}
.y8a{bottom:3.413333pt;}
.y94{bottom:19.413333pt;}
.y8e{bottom:36.693333pt;}
.y44{bottom:47.680000pt;}
.y6{bottom:51.840000pt;}
.y8d{bottom:52.053333pt;}
.y40{bottom:57.333333pt;}
.y8c{bottom:67.413333pt;}
.y5{bottom:76.800000pt;}
.ybb{bottom:88.853333pt;}
.yba{bottom:104.213333pt;}
.yda{bottom:105.600000pt;}
.ya1{bottom:106.133333pt;}
.y7d{bottom:108.160000pt;}
.y3b{bottom:111.360000pt;}
.yb9{bottom:119.573333pt;}
.yd9{bottom:120.960000pt;}
.ya0{bottom:121.493333pt;}
.y7c{bottom:123.520000pt;}
.y3a{bottom:126.400000pt;}
.yb8{bottom:134.933333pt;}
.yd8{bottom:136.320000pt;}
.y9f{bottom:136.853333pt;}
.y7b{bottom:138.880000pt;}
.y39{bottom:141.760000pt;}
.yb7{bottom:150.293333pt;}
.yd7{bottom:151.360000pt;}
.y9e{bottom:152.213333pt;}
.y7a{bottom:154.240000pt;}
.y38{bottom:157.120000pt;}
.yb6{bottom:165.333333pt;}
.yd6{bottom:166.720000pt;}
.y9d{bottom:167.573333pt;}
.y79{bottom:169.600000pt;}
.y37{bottom:172.480000pt;}
.yb5{bottom:180.693333pt;}
.yd5{bottom:182.080000pt;}
.y9c{bottom:182.933333pt;}
.y78{bottom:184.960000pt;}
.y36{bottom:187.840000pt;}
.yb4{bottom:196.053333pt;}
.yd4{bottom:197.440000pt;}
.y9b{bottom:197.973333pt;}
.y77{bottom:200.320000pt;}
.y35{bottom:203.200000pt;}
.yb3{bottom:211.413333pt;}
.yd3{bottom:212.800000pt;}
.y9a{bottom:213.333333pt;}
.y76{bottom:215.360000pt;}
.y34{bottom:218.560000pt;}
.ye3{bottom:220.800000pt;}
.yd2{bottom:228.160000pt;}
.y99{bottom:228.693333pt;}
.y12a{bottom:229.440000pt;}
.y75{bottom:230.720000pt;}
.y33{bottom:233.920000pt;}
.ye2{bottom:236.160000pt;}
.yd1{bottom:243.520000pt;}
.y98{bottom:244.053333pt;}
.y102{bottom:244.800000pt;}
.y74{bottom:246.080000pt;}
.y129{bottom:247.360000pt;}
.y32{bottom:249.280000pt;}
.ye1{bottom:251.520000pt;}
.yd0{bottom:258.880000pt;}
.y97{bottom:259.413333pt;}
.y101{bottom:260.160000pt;}
.y73{bottom:261.440000pt;}
.y128{bottom:262.720000pt;}
.y31{bottom:264.640000pt;}
.ye0{bottom:266.880000pt;}
.ycf{bottom:274.240000pt;}
.y100{bottom:275.520000pt;}
.y72{bottom:276.800000pt;}
.y127{bottom:278.080000pt;}
.y3f{bottom:280.000000pt;}
.ydf{bottom:282.240000pt;}
.y30{bottom:288.000000pt;}
.yce{bottom:289.600000pt;}
.yff{bottom:290.880000pt;}
.y71{bottom:292.160000pt;}
.y126{bottom:293.440000pt;}
.y3e{bottom:295.040000pt;}
.yde{bottom:297.600000pt;}
.y2f{bottom:303.040000pt;}
.ycd{bottom:304.960000pt;}
.yfe{bottom:306.240000pt;}
.y70{bottom:307.520000pt;}
.y125{bottom:308.800000pt;}
.y3d{bottom:310.400000pt;}
.ydd{bottom:312.960000pt;}
.y2e{bottom:318.400000pt;}
.ycc{bottom:320.320000pt;}
.yfd{bottom:321.600000pt;}
.y6f{bottom:322.880000pt;}
.y124{bottom:324.160000pt;}
.y3c{bottom:325.760000pt;}
.ydc{bottom:328.320000pt;}
.y2d{bottom:333.760000pt;}
.ycb{bottom:335.360000pt;}
.y6e{bottom:338.240000pt;}
.y123{bottom:339.520000pt;}
.ydb{bottom:343.360000pt;}
.yfc{bottom:344.640000pt;}
.y2c{bottom:349.120000pt;}
.y6d{bottom:353.600000pt;}
.y122{bottom:354.880000pt;}
.yca{bottom:358.720000pt;}
.y2b{bottom:364.480000pt;}
.yfb{bottom:368.000000pt;}
.y6c{bottom:368.960000pt;}
.y121{bottom:370.240000pt;}
.yc9{bottom:374.080000pt;}
.y2a{bottom:379.840000pt;}
.yfa{bottom:383.360000pt;}
.y6b{bottom:384.000000pt;}
.y120{bottom:385.600000pt;}
.yb2{bottom:386.666667pt;}
.y29{bottom:395.200000pt;}
.yf9{bottom:398.720000pt;}
.y6a{bottom:399.360000pt;}
.y11f{bottom:400.960000pt;}
.yc8{bottom:402.666667pt;}
.y28{bottom:410.560000pt;}
.y69{bottom:414.720000pt;}
.y11e{bottom:416.000000pt;}
.yc7{bottom:418.666667pt;}
.yf8{bottom:422.080000pt;}
.y27{bottom:425.920000pt;}
.y68{bottom:430.080000pt;}
.y11d{bottom:431.360000pt;}
.yc6{bottom:434.666667pt;}
.yf7{bottom:437.440000pt;}
.y26{bottom:441.280000pt;}
.y67{bottom:445.440000pt;}
.y11c{bottom:446.720000pt;}
.yc5{bottom:450.666667pt;}
.yf6{bottom:452.800000pt;}
.y66{bottom:460.800000pt;}
.y11b{bottom:462.080000pt;}
.yc4{bottom:466.666667pt;}
.y25{bottom:472.640000pt;}
.y65{bottom:476.160000pt;}
.y11a{bottom:477.440000pt;}
.yc3{bottom:482.666667pt;}
.y64{bottom:491.520000pt;}
.y119{bottom:492.800000pt;}
.yc2{bottom:498.666667pt;}
.y24{bottom:504.960000pt;}
.y63{bottom:506.880000pt;}
.y118{bottom:508.160000pt;}
.yc1{bottom:514.666667pt;}
.y23{bottom:517.440000pt;}
.yf5{bottom:522.240000pt;}
.y117{bottom:523.520000pt;}
.y22{bottom:529.920000pt;}
.y62{bottom:530.240000pt;}
.yc0{bottom:530.666667pt;}
.yf4{bottom:537.600000pt;}
.y116{bottom:538.880000pt;}
.y21{bottom:542.080000pt;}
.y61{bottom:545.600000pt;}
.ybf{bottom:546.666667pt;}
.yf3{bottom:552.960000pt;}
.y115{bottom:554.240000pt;}
.y20{bottom:555.520000pt;}
.y60{bottom:560.960000pt;}
.ybe{bottom:562.666667pt;}
.yf2{bottom:568.000000pt;}
.y114{bottom:569.600000pt;}
.y1f{bottom:570.880000pt;}
.y5f{bottom:576.000000pt;}
.ybd{bottom:578.666667pt;}
.yf1{bottom:583.360000pt;}
.y113{bottom:584.960000pt;}
.y1e{bottom:586.240000pt;}
.y5e{bottom:591.360000pt;}
.ybc{bottom:594.666667pt;}
.yf0{bottom:598.720000pt;}
.y112{bottom:600.000000pt;}
.y1d{bottom:601.600000pt;}
.y5d{bottom:606.720000pt;}
.y96{bottom:610.666667pt;}
.y111{bottom:615.360000pt;}
.y1c{bottom:616.960000pt;}
.y5c{bottom:622.080000pt;}
.yb1{bottom:626.666667pt;}
.y110{bottom:630.720000pt;}
.y1b{bottom:632.320000pt;}
.y5b{bottom:637.440000pt;}
.yb0{bottom:642.666667pt;}
.yef{bottom:645.440000pt;}
.y10f{bottom:646.080000pt;}
.y1a{bottom:647.680000pt;}
.y5a{bottom:652.800000pt;}
.yaf{bottom:658.666667pt;}
.yee{bottom:660.800000pt;}
.y10e{bottom:661.440000pt;}
.y19{bottom:663.040000pt;}
.y59{bottom:668.160000pt;}
.yae{bottom:674.666667pt;}
.yed{bottom:676.160000pt;}
.y10d{bottom:676.800000pt;}
.y18{bottom:678.080000pt;}
.y58{bottom:683.520000pt;}
.yad{bottom:690.666667pt;}
.yec{bottom:691.520000pt;}
.y10c{bottom:692.160000pt;}
.y17{bottom:693.440000pt;}
.y88{bottom:698.880000pt;}
.yac{bottom:706.666667pt;}
.y57{bottom:706.880000pt;}
.y10b{bottom:707.520000pt;}
.y16{bottom:708.800000pt;}
.y87{bottom:714.240000pt;}
.yeb{bottom:722.240000pt;}
.yab{bottom:722.666667pt;}
.y10a{bottom:722.880000pt;}
.y15{bottom:724.160000pt;}
.y56{bottom:730.240000pt;}
.y86{bottom:737.280000pt;}
.yea{bottom:737.600000pt;}
.y109{bottom:738.240000pt;}
.yaa{bottom:738.666667pt;}
.y14{bottom:739.520000pt;}
.y55{bottom:745.600000pt;}
.ye9{bottom:752.640000pt;}
.y108{bottom:753.600000pt;}
.ya9{bottom:754.666667pt;}
.y13{bottom:754.880000pt;}
.y54{bottom:760.640000pt;}
.ye8{bottom:768.000000pt;}
.y107{bottom:768.640000pt;}
.y12{bottom:770.240000pt;}
.ya8{bottom:770.666667pt;}
.y53{bottom:776.000000pt;}
.ye7{bottom:783.360000pt;}
.y106{bottom:784.000000pt;}
.y11{bottom:785.600000pt;}
.ya7{bottom:786.666667pt;}
.y52{bottom:791.360000pt;}
.ye6{bottom:798.720000pt;}
.y105{bottom:799.360000pt;}
.y10{bottom:800.960000pt;}
.ya6{bottom:802.666667pt;}
.y51{bottom:806.720000pt;}
.ye5{bottom:814.080000pt;}
.y104{bottom:814.720000pt;}
.yf{bottom:818.240000pt;}
.ya5{bottom:818.666667pt;}
.y50{bottom:822.080000pt;}
.y103{bottom:830.080000pt;}
.ye{bottom:833.600000pt;}
.ya4{bottom:834.666667pt;}
.y85{bottom:837.440000pt;}
.y4f{bottom:845.440000pt;}
.yd{bottom:848.960000pt;}
.ya3{bottom:850.666667pt;}
.y84{bottom:852.800000pt;}
.y4e{bottom:860.800000pt;}
.yc{bottom:864.960000pt;}
.ya2{bottom:866.666667pt;}
.y83{bottom:868.160000pt;}
.y4d{bottom:876.160000pt;}
.y93{bottom:882.666667pt;}
.y82{bottom:883.520000pt;}
.yb{bottom:885.120000pt;}
.y4c{bottom:891.520000pt;}
.y95{bottom:898.666667pt;}
.y81{bottom:898.880000pt;}
.ya{bottom:904.000000pt;}
.y4b{bottom:906.880000pt;}
.y80{bottom:914.240000pt;}
.y8b{bottom:914.666667pt;}
.y4a{bottom:922.240000pt;}
.y7f{bottom:929.600000pt;}
.y92{bottom:930.666667pt;}
.y9{bottom:931.200000pt;}
.y49{bottom:937.600000pt;}
.y7e{bottom:944.640000pt;}
.y91{bottom:946.666667pt;}
.y8{bottom:952.640000pt;}
.ye4{bottom:960.000000pt;}
.y90{bottom:962.666667pt;}
.y48{bottom:968.000000pt;}
.y8f{bottom:978.666667pt;}
.y47{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y89{bottom:994.666667pt;}
.y46{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.y45{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y43{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hd{height:4.000000pt;}
.h10{height:16.000000pt;}
.ha{height:23.355000pt;}
.hc{height:29.328750pt;}
.h12{height:32.000000pt;}
.he{height:32.965000pt;}
.h5{height:36.435000pt;}
.hb{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h3{height:42.751250pt;}
.hf{height:44.362500pt;}
.h9{height:50.305000pt;}
.h7{height:50.315000pt;}
.h8{height:63.984375pt;}
.h11{height:80.000000pt;}
.h14{height:224.000000pt;}
.h13{height:272.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w3{width:94.666667pt;}
.w5{width:184.000000pt;}
.w4{width:340.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xe{left:1.386656pt;}
.xf{left:3.386709pt;}
.x12{left:6.666667pt;}
.x14{left:8.053397pt;}
.x11{left:89.333333pt;}
.x5{left:96.000000pt;}
.x8{left:97.466144pt;}
.x4{left:108.055680pt;}
.x16{left:120.000000pt;}
.xd{left:142.666667pt;}
.x13{left:182.666667pt;}
.xa{left:230.382144pt;}
.x10{left:257.530592pt;}
.x2{left:265.722336pt;}
.x9{left:281.512352pt;}
.xb{left:355.378880pt;}
.x3{left:396.866560pt;}
.xc{left:420.480000pt;}
.x17{left:444.480000pt;}
.x1{left:456.943680pt;}
.x15{left:521.333333pt;}
.x7{left:536.450240pt;}
.x6{left:675.432640pt;}
}




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