
    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_f28e8682b9d9ffd4b9ab4a93.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_271462bfd521809902164cc5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0bf99f8f98befcce65ef16db.woff')format("woff");}.ff3{font-family:ff3;line-height:0.882324;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_ad16f5399ab6ebb429b519ec.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7c474b44bf27263fe5d2510c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_96a6e2d63858243d5fd647f6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a4900df89a3a36765e6564cd.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0cacba649e7e6abc4fa18c3e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4f42f0169465d7963f692558.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_75ec5d4ac9394ef33d0d65b0.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2b6a029b7b53790662cc5a5f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d31e5bc3da911f366c08d6ee.woff')format("woff");}.ffc{font-family:ffc;line-height:1.909180;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_7eb19756227da086d43856a7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.699219;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_2a7381ec04be4400fb917701.woff')format("woff");}.ffe{font-family:ffe;line-height:0.879883;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_169482c160d7660d1d33dd27.woff')format("woff");}.fff{font-family:fff;line-height:0.687012;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_5e9f5b9eb4883f68f488befc.woff')format("woff");}.ff10{font-family:ff10;line-height:0.701660;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_38b550e4e38d6bab2bede54a.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_f5d9e9fcd85af7ddd6002d33.woff')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a34de83ba18315d54aed92f0.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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v5{vertical-align:-14.400000px;}
.va{vertical-align:-12.960000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v6{vertical-align:14.400000px;}
.v9{vertical-align:17.280000px;}
.vb{vertical-align:21.600000px;}
.v1{vertical-align:27.360000px;}
.v4{vertical-align:47.520000px;}
.v3{vertical-align:54.720000px;}
.ls18{letter-spacing:-0.477792px;}
.ls34{letter-spacing:-0.459648px;}
.ls1e{letter-spacing:-0.417312px;}
.ls37{letter-spacing:-0.399168px;}
.ls13{letter-spacing:-0.381024px;}
.ls12{letter-spacing:-0.338688px;}
.ls8{letter-spacing:-0.328032px;}
.ls1d{letter-spacing:-0.320544px;}
.lsb{letter-spacing:-0.308736px;}
.ls1c{letter-spacing:-0.302400px;}
.ls10{letter-spacing:-0.260064px;}
.lsa{letter-spacing:-0.250848px;}
.ls2f{letter-spacing:-0.247104px;}
.ls17{letter-spacing:-0.241920px;}
.ls20{letter-spacing:-0.238464px;}
.ls16{letter-spacing:-0.223776px;}
.ls32{letter-spacing:-0.177408px;}
.ls11{letter-spacing:-0.175392px;}
.lsc{letter-spacing:-0.173664px;}
.ls30{letter-spacing:-0.171072px;}
.lse{letter-spacing:-0.158976px;}
.ls14{letter-spacing:-0.157248px;}
.ls15{letter-spacing:-0.145152px;}
.ls2e{letter-spacing:-0.125856px;}
.ls1b{letter-spacing:-0.120960px;}
.ls19{letter-spacing:-0.119232px;}
.ls33{letter-spacing:-0.107712px;}
.ls31{letter-spacing:-0.088704px;}
.ls1a{letter-spacing:-0.079488px;}
.lsf{letter-spacing:-0.059616px;}
.ls9{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.027216px;}
.ls2c{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.119952px;}
.lsd{letter-spacing:0.186624px;}
.ls0{letter-spacing:0.299520px;}
.ls5{letter-spacing:0.599328px;}
.ls6{letter-spacing:2.128608px;}
.ls2b{letter-spacing:2.583216px;}
.ls2a{letter-spacing:2.583360px;}
.ls3{letter-spacing:4.280544px;}
.ls24{letter-spacing:4.309920px;}
.ls27{letter-spacing:5.015520px;}
.ls29{letter-spacing:5.137920px;}
.ls2{letter-spacing:6.228720px;}
.ls4{letter-spacing:9.026352px;}
.ls28{letter-spacing:11.908800px;}
.ls1f{letter-spacing:13.091328px;}
.ls22{letter-spacing:13.450608px;}
.ls21{letter-spacing:14.906880px;}
.ls26{letter-spacing:16.361280px;}
.ls25{letter-spacing:16.614720px;}
.ls23{letter-spacing:16.920000px;}
.ls7{letter-spacing:40.085280px;}
.ls36{letter-spacing:46.186560px;}
.ls35{letter-spacing:846.000000px;}
.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:-24.120000px;}
.ws2{word-spacing:-23.869152px;}
.ws1{word-spacing:-23.811264px;}
.ws1a{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.480512px;}
.wsb{word-spacing:-16.440768px;}
.ws3{word-spacing:-16.401024px;}
.ws13{word-spacing:-16.321536px;}
.ws1b{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.974848px;}
.ws5{word-spacing:-14.962752px;}
.ws4{word-spacing:-14.944608px;}
.ws7{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.ws6{word-spacing:-14.859936px;}
.ws10{word-spacing:-14.817600px;}
.ws11{word-spacing:-14.799456px;}
.wse{word-spacing:-14.781312px;}
.wsa{word-spacing:-14.738976px;}
.ws12{word-spacing:-14.702688px;}
.ws1c{word-spacing:-14.660352px;}
.ws17{word-spacing:-0.108000px;}
.ws15{word-spacing:-0.072000px;}
.ws19{word-spacing:-0.066096px;}
.ws18{word-spacing:-0.060480px;}
.ws16{word-spacing:-0.050400px;}
.wsf{word-spacing:0.000000px;}
.ws14{word-spacing:21.385152px;}
._10{margin-left:-4.360032px;}
._2{margin-left:-2.854656px;}
._1{margin-left:-1.052352px;}
._0{width:1.061280px;}
._7{width:2.237760px;}
._6{width:3.797856px;}
._4{width:5.783904px;}
._5{width:6.795936px;}
._3{width:9.220320px;}
._e{width:10.429920px;}
._8{width:13.062240px;}
._9{width:15.841008px;}
._b{width:17.236800px;}
._f{width:18.283680px;}
._a{width:20.004624px;}
._d{width:21.461760px;}
._c{width:22.622400px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:50.400000px;}
.fs6{font-size:60.480000px;}
.fs8{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs0{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:4.440000px;}
.y6a{bottom:4.740000px;}
.yac{bottom:4.800000px;}
.yb0{bottom:5.220000px;}
.yae{bottom:6.300000px;}
.y65{bottom:9.180000px;}
.y55{bottom:14.580000px;}
.ya6{bottom:15.960000px;}
.y69{bottom:22.020000px;}
.ya8{bottom:23.880000px;}
.y64{bottom:26.460000px;}
.y5b{bottom:29.160000px;}
.y54{bottom:31.500000px;}
.y60{bottom:36.120000px;}
.y68{bottom:39.300000px;}
.y63{bottom:43.740000px;}
.y5a{bottom:46.440000px;}
.y5f{bottom:53.400000px;}
.y67{bottom:56.580000px;}
.y62{bottom:61.020000px;}
.y59{bottom:63.720000px;}
.y5e{bottom:70.680000px;}
.y58{bottom:81.000000px;}
.y5d{bottom:87.960000px;}
.y2a{bottom:119.160000px;}
.yc4{bottom:126.720000px;}
.y29{bottom:136.440000px;}
.y86{bottom:137.160000px;}
.yc3{bottom:145.440000px;}
.y28{bottom:150.480000px;}
.y85{bottom:154.440000px;}
.yc2{bottom:162.720000px;}
.y84{bottom:171.720000px;}
.yc1{bottom:180.000000px;}
.y83{bottom:189.000000px;}
.yc0{bottom:197.280000px;}
.y57{bottom:198.000000px;}
.y82{bottom:206.280000px;}
.ybf{bottom:214.920000px;}
.y81{bottom:223.560000px;}
.ybe{bottom:233.640000px;}
.y80{bottom:237.600000px;}
.ybd{bottom:253.440000px;}
.ybc{bottom:273.960000px;}
.y56{bottom:292.500000px;}
.ybb{bottom:294.120000px;}
.yba{bottom:312.840000px;}
.ya3{bottom:326.520000px;}
.yb9{bottom:330.120000px;}
.y53{bottom:337.500000px;}
.ya2{bottom:343.800000px;}
.yb8{bottom:347.400000px;}
.ya1{bottom:361.080000px;}
.y27{bottom:362.160000px;}
.yb7{bottom:364.680000px;}
.ya0{bottom:378.000000px;}
.y26{bottom:379.440000px;}
.yb6{bottom:381.960000px;}
.y52{bottom:386.640000px;}
.y9f{bottom:395.640000px;}
.y25{bottom:396.720000px;}
.yb5{bottom:397.440000px;}
.y51{bottom:405.720000px;}
.y9e{bottom:413.640000px;}
.y24{bottom:414.000000px;}
.y50{bottom:425.160000px;}
.y23{bottom:431.280000px;}
.y9d{bottom:431.640000px;}
.y4f{bottom:444.960000px;}
.y22{bottom:448.560000px;}
.y9c{bottom:450.000000px;}
.y4e{bottom:462.240000px;}
.y7f{bottom:464.400000px;}
.y21{bottom:465.840000px;}
.y9b{bottom:468.000000px;}
.y4d{bottom:479.520000px;}
.y7e{bottom:481.320000px;}
.y20{bottom:483.120000px;}
.y9a{bottom:486.000000px;}
.y4c{bottom:496.800000px;}
.y7d{bottom:498.960000px;}
.yaf{bottom:499.500000px;}
.y1f{bottom:500.400000px;}
.y4b{bottom:514.080000px;}
.yde{bottom:515.160000px;}
.y1e{bottom:517.320000px;}
.yad{bottom:517.500000px;}
.y7c{bottom:518.040000px;}
.y4a{bottom:531.360000px;}
.y1d{bottom:534.600000px;}
.yab{bottom:537.000000px;}
.y7b{bottom:537.120000px;}
.y49{bottom:548.640000px;}
.y1c{bottom:551.880000px;}
.ya9{bottom:555.000000px;}
.y7a{bottom:555.480000px;}
.y48{bottom:565.920000px;}
.y1b{bottom:569.160000px;}
.y79{bottom:572.760000px;}
.ya7{bottom:573.000000px;}
.ydd{bottom:575.640000px;}
.y47{bottom:583.200000px;}
.y1a{bottom:586.440000px;}
.y78{bottom:590.040000px;}
.ydc{bottom:594.360000px;}
.yef{bottom:598.680000px;}
.y46{bottom:600.120000px;}
.y19{bottom:604.080000px;}
.y77{bottom:607.320000px;}
.ya5{bottom:609.000000px;}
.ydb{bottom:611.640000px;}
.yee{bottom:615.960000px;}
.yb4{bottom:616.680000px;}
.y45{bottom:617.400000px;}
.y18{bottom:623.160000px;}
.y76{bottom:624.600000px;}
.yda{bottom:628.920000px;}
.yb3{bottom:630.720000px;}
.yed{bottom:632.880000px;}
.y44{bottom:634.680000px;}
.ya4{bottom:637.500000px;}
.y75{bottom:641.880000px;}
.y17{bottom:642.600000px;}
.yd9{bottom:645.840000px;}
.yec{bottom:650.160000px;}
.y43{bottom:651.960000px;}
.y74{bottom:659.160000px;}
.y16{bottom:662.400000px;}
.yd8{bottom:663.120000px;}
.yeb{bottom:667.440000px;}
.y42{bottom:669.240000px;}
.y73{bottom:676.440000px;}
.y15{bottom:679.680000px;}
.yd7{bottom:680.400000px;}
.yea{bottom:684.720000px;}
.y41{bottom:686.520000px;}
.y72{bottom:693.720000px;}
.y99{bottom:696.600000px;}
.y14{bottom:696.960000px;}
.yd6{bottom:697.680000px;}
.ye9{bottom:702.000000px;}
.y40{bottom:703.800000px;}
.y71{bottom:711.000000px;}
.y13{bottom:714.240000px;}
.yd5{bottom:714.960000px;}
.y98{bottom:715.320000px;}
.ye8{bottom:719.280000px;}
.y3f{bottom:721.080000px;}
.y70{bottom:728.280000px;}
.y12{bottom:731.520000px;}
.yd4{bottom:732.600000px;}
.y97{bottom:734.400000px;}
.ye7{bottom:736.560000px;}
.y3e{bottom:738.360000px;}
.y6f{bottom:745.200000px;}
.y11{bottom:748.440000px;}
.yd3{bottom:751.320000px;}
.y96{bottom:753.840000px;}
.y3d{bottom:755.640000px;}
.y6e{bottom:762.840000px;}
.y10{bottom:765.720000px;}
.yd2{bottom:769.320000px;}
.ye6{bottom:771.120000px;}
.y3c{bottom:772.920000px;}
.y95{bottom:774.000000px;}
.y6d{bottom:781.920000px;}
.yf{bottom:783.000000px;}
.yd1{bottom:786.600000px;}
.ye5{bottom:788.400000px;}
.y3b{bottom:789.840000px;}
.y94{bottom:792.720000px;}
.ye{bottom:800.280000px;}
.y6c{bottom:801.000000px;}
.yd0{bottom:803.880000px;}
.ye4{bottom:805.680000px;}
.y3a{bottom:807.120000px;}
.y93{bottom:810.000000px;}
.yd{bottom:817.560000px;}
.y6b{bottom:820.440000px;}
.ycf{bottom:821.160000px;}
.ye3{bottom:822.960000px;}
.y39{bottom:824.400000px;}
.y92{bottom:827.280000px;}
.yc{bottom:834.840000px;}
.y66{bottom:835.500000px;}
.yce{bottom:838.440000px;}
.ye2{bottom:839.880000px;}
.y38{bottom:841.680000px;}
.y91{bottom:844.920000px;}
.yb2{bottom:849.960000px;}
.yb{bottom:852.120000px;}
.ycd{bottom:855.720000px;}
.ye1{bottom:857.160000px;}
.y37{bottom:858.960000px;}
.y90{bottom:863.280000px;}
.yb1{bottom:864.000000px;}
.ya{bottom:869.400000px;}
.ycc{bottom:872.640000px;}
.ye0{bottom:874.440000px;}
.y36{bottom:876.240000px;}
.y8f{bottom:879.840000px;}
.y9{bottom:887.040000px;}
.ycb{bottom:890.280000px;}
.y8d{bottom:891.000000px;}
.ydf{bottom:891.720000px;}
.y35{bottom:893.520000px;}
.y8c{bottom:902.880000px;}
.y61{bottom:904.500000px;}
.y8{bottom:906.480000px;}
.yca{bottom:909.000000px;}
.y34{bottom:910.800000px;}
.yc9{bottom:926.280000px;}
.y7{bottom:926.640000px;}
.y33{bottom:928.080000px;}
.y8e{bottom:929.520000px;}
.y8b{bottom:943.560000px;}
.y32{bottom:945.360000px;}
.y6{bottom:952.560000px;}
.y8a{bottom:960.840000px;}
.y31{bottom:962.640000px;}
.y5{bottom:965.520000px;}
.y5c{bottom:978.000000px;}
.y89{bottom:978.120000px;}
.y30{bottom:979.920000px;}
.y4{bottom:987.480000px;}
.y88{bottom:995.400000px;}
.y2f{bottom:996.840000px;}
.y3{bottom:1008.360000px;}
.yc8{bottom:1012.680000px;}
.y87{bottom:1013.040000px;}
.y2e{bottom:1014.120000px;}
.yc7{bottom:1029.600000px;}
.y2{bottom:1029.960000px;}
.y2d{bottom:1031.400000px;}
.yc6{bottom:1046.880000px;}
.y2c{bottom:1048.680000px;}
.y1{bottom:1057.320000px;}
.yc5{bottom:1064.520000px;}
.y2b{bottom:1065.960000px;}
.h18{height:19.500000px;}
.h19{height:21.000000px;}
.h4{height:28.220625px;}
.h16{height:30.000000px;}
.h11{height:34.797656px;}
.h17{height:37.500000px;}
.ha{height:40.989375px;}
.h1a{height:41.993438px;}
.h7{height:42.022969px;}
.h14{height:43.993125px;}
.h6{height:44.893125px;}
.h8{height:45.992813px;}
.h9{height:46.500000px;}
.h2{height:47.988281px;}
.h13{height:48.595781px;}
.h15{height:54.000000px;}
.h5{height:55.580625px;}
.h3{height:61.419375px;}
.h1{height:65.387813px;}
.he{height:70.500000px;}
.hd{height:75.000000px;}
.h12{height:92.176875px;}
.hb{height:96.000000px;}
.hc{height:102.000000px;}
.h10{height:136.816875px;}
.hf{height:144.016875px;}
.h0{height:1188.000000px;}
.w3{width:49.500000px;}
.wa{width:88.500000px;}
.w5{width:124.500000px;}
.w7{width:130.500000px;}
.w8{width:135.000000px;}
.w4{width:208.500000px;}
.w2{width:231.000000px;}
.w9{width:243.000000px;}
.w6{width:592.500000px;}
.w1{width:609.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x27{left:7.920036px;}
.xc{left:8.939928px;}
.xa{left:15.074328px;}
.x17{left:17.132076px;}
.x1f{left:24.833484px;}
.x1e{left:27.737280px;}
.x22{left:29.011932px;}
.x26{left:42.543468px;}
.x25{left:44.399880px;}
.x1b{left:49.695936px;}
.x20{left:51.149760px;}
.x19{left:65.032488px;}
.x23{left:68.024760px;}
.x1c{left:85.982880px;}
.x21{left:104.714760px;}
.x24{left:121.589760px;}
.x9{left:154.500000px;}
.x3{left:162.000000px;}
.x1{left:178.722648px;}
.x2a{left:189.000000px;}
.x7{left:216.000000px;}
.xb{left:272.308080px;}
.x18{left:275.186160px;}
.x11{left:281.026620px;}
.x1a{left:291.000000px;}
.x5{left:296.086680px;}
.x2{left:297.644508px;}
.x12{left:330.861348px;}
.x14{left:348.635736px;}
.x13{left:354.447504px;}
.x15{left:380.648520px;}
.xd{left:384.000000px;}
.x4{left:408.414600px;}
.x6{left:414.076320px;}
.x29{left:420.525360px;}
.x10{left:423.252720px;}
.x16{left:425.081520px;}
.xe{left:432.000000px;}
.x28{left:459.000000px;}
.xf{left:639.000000px;}
.x1d{left:666.000000px;}
.x8{left:756.000000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v5{vertical-align:-12.800000pt;}
.va{vertical-align:-11.520000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v6{vertical-align:12.800000pt;}
.v9{vertical-align:15.360000pt;}
.vb{vertical-align:19.200000pt;}
.v1{vertical-align:24.320000pt;}
.v4{vertical-align:42.240000pt;}
.v3{vertical-align:48.640000pt;}
.ls18{letter-spacing:-0.424704pt;}
.ls34{letter-spacing:-0.408576pt;}
.ls1e{letter-spacing:-0.370944pt;}
.ls37{letter-spacing:-0.354816pt;}
.ls13{letter-spacing:-0.338688pt;}
.ls12{letter-spacing:-0.301056pt;}
.ls8{letter-spacing:-0.291584pt;}
.ls1d{letter-spacing:-0.284928pt;}
.lsb{letter-spacing:-0.274432pt;}
.ls1c{letter-spacing:-0.268800pt;}
.ls10{letter-spacing:-0.231168pt;}
.lsa{letter-spacing:-0.222976pt;}
.ls2f{letter-spacing:-0.219648pt;}
.ls17{letter-spacing:-0.215040pt;}
.ls20{letter-spacing:-0.211968pt;}
.ls16{letter-spacing:-0.198912pt;}
.ls32{letter-spacing:-0.157696pt;}
.ls11{letter-spacing:-0.155904pt;}
.lsc{letter-spacing:-0.154368pt;}
.ls30{letter-spacing:-0.152064pt;}
.lse{letter-spacing:-0.141312pt;}
.ls14{letter-spacing:-0.139776pt;}
.ls15{letter-spacing:-0.129024pt;}
.ls2e{letter-spacing:-0.111872pt;}
.ls1b{letter-spacing:-0.107520pt;}
.ls19{letter-spacing:-0.105984pt;}
.ls33{letter-spacing:-0.095744pt;}
.ls31{letter-spacing:-0.078848pt;}
.ls1a{letter-spacing:-0.070656pt;}
.lsf{letter-spacing:-0.052992pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.024192pt;}
.ls2c{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.106624pt;}
.lsd{letter-spacing:0.165888pt;}
.ls0{letter-spacing:0.266240pt;}
.ls5{letter-spacing:0.532736pt;}
.ls6{letter-spacing:1.892096pt;}
.ls2b{letter-spacing:2.296192pt;}
.ls2a{letter-spacing:2.296320pt;}
.ls3{letter-spacing:3.804928pt;}
.ls24{letter-spacing:3.831040pt;}
.ls27{letter-spacing:4.458240pt;}
.ls29{letter-spacing:4.567040pt;}
.ls2{letter-spacing:5.536640pt;}
.ls4{letter-spacing:8.023424pt;}
.ls28{letter-spacing:10.585600pt;}
.ls1f{letter-spacing:11.636736pt;}
.ls22{letter-spacing:11.956096pt;}
.ls21{letter-spacing:13.250560pt;}
.ls26{letter-spacing:14.543360pt;}
.ls25{letter-spacing:14.768640pt;}
.ls23{letter-spacing:15.040000pt;}
.ls7{letter-spacing:35.631360pt;}
.ls36{letter-spacing:41.054720pt;}
.ls35{letter-spacing:752.000000pt;}
.ws0{word-spacing:-21.440000pt;}
.ws2{word-spacing:-21.217024pt;}
.ws1{word-spacing:-21.165568pt;}
.ws1a{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.649344pt;}
.wsb{word-spacing:-14.614016pt;}
.ws3{word-spacing:-14.578688pt;}
.ws13{word-spacing:-14.508032pt;}
.ws1b{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.310976pt;}
.ws5{word-spacing:-13.300224pt;}
.ws4{word-spacing:-13.284096pt;}
.ws7{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.ws6{word-spacing:-13.208832pt;}
.ws10{word-spacing:-13.171200pt;}
.ws11{word-spacing:-13.155072pt;}
.wse{word-spacing:-13.138944pt;}
.wsa{word-spacing:-13.101312pt;}
.ws12{word-spacing:-13.069056pt;}
.ws1c{word-spacing:-13.031424pt;}
.ws17{word-spacing:-0.096000pt;}
.ws15{word-spacing:-0.064000pt;}
.ws19{word-spacing:-0.058752pt;}
.ws18{word-spacing:-0.053760pt;}
.ws16{word-spacing:-0.044800pt;}
.wsf{word-spacing:0.000000pt;}
.ws14{word-spacing:19.009024pt;}
._10{margin-left:-3.875584pt;}
._2{margin-left:-2.537472pt;}
._1{margin-left:-0.935424pt;}
._0{width:0.943360pt;}
._7{width:1.989120pt;}
._6{width:3.375872pt;}
._4{width:5.141248pt;}
._5{width:6.040832pt;}
._3{width:8.195840pt;}
._e{width:9.271040pt;}
._8{width:11.610880pt;}
._9{width:14.080896pt;}
._b{width:15.321600pt;}
._f{width:16.252160pt;}
._a{width:17.781888pt;}
._d{width:19.077120pt;}
._c{width:20.108800pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:44.800000pt;}
.fs6{font-size:53.760000pt;}
.fs8{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs0{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:3.946667pt;}
.y6a{bottom:4.213333pt;}
.yac{bottom:4.266667pt;}
.yb0{bottom:4.640000pt;}
.yae{bottom:5.600000pt;}
.y65{bottom:8.160000pt;}
.y55{bottom:12.960000pt;}
.ya6{bottom:14.186667pt;}
.y69{bottom:19.573333pt;}
.ya8{bottom:21.226667pt;}
.y64{bottom:23.520000pt;}
.y5b{bottom:25.920000pt;}
.y54{bottom:28.000000pt;}
.y60{bottom:32.106667pt;}
.y68{bottom:34.933333pt;}
.y63{bottom:38.880000pt;}
.y5a{bottom:41.280000pt;}
.y5f{bottom:47.466667pt;}
.y67{bottom:50.293333pt;}
.y62{bottom:54.240000pt;}
.y59{bottom:56.640000pt;}
.y5e{bottom:62.826667pt;}
.y58{bottom:72.000000pt;}
.y5d{bottom:78.186667pt;}
.y2a{bottom:105.920000pt;}
.yc4{bottom:112.640000pt;}
.y29{bottom:121.280000pt;}
.y86{bottom:121.920000pt;}
.yc3{bottom:129.280000pt;}
.y28{bottom:133.760000pt;}
.y85{bottom:137.280000pt;}
.yc2{bottom:144.640000pt;}
.y84{bottom:152.640000pt;}
.yc1{bottom:160.000000pt;}
.y83{bottom:168.000000pt;}
.yc0{bottom:175.360000pt;}
.y57{bottom:176.000000pt;}
.y82{bottom:183.360000pt;}
.ybf{bottom:191.040000pt;}
.y81{bottom:198.720000pt;}
.ybe{bottom:207.680000pt;}
.y80{bottom:211.200000pt;}
.ybd{bottom:225.280000pt;}
.ybc{bottom:243.520000pt;}
.y56{bottom:260.000000pt;}
.ybb{bottom:261.440000pt;}
.yba{bottom:278.080000pt;}
.ya3{bottom:290.240000pt;}
.yb9{bottom:293.440000pt;}
.y53{bottom:300.000000pt;}
.ya2{bottom:305.600000pt;}
.yb8{bottom:308.800000pt;}
.ya1{bottom:320.960000pt;}
.y27{bottom:321.920000pt;}
.yb7{bottom:324.160000pt;}
.ya0{bottom:336.000000pt;}
.y26{bottom:337.280000pt;}
.yb6{bottom:339.520000pt;}
.y52{bottom:343.680000pt;}
.y9f{bottom:351.680000pt;}
.y25{bottom:352.640000pt;}
.yb5{bottom:353.280000pt;}
.y51{bottom:360.640000pt;}
.y9e{bottom:367.680000pt;}
.y24{bottom:368.000000pt;}
.y50{bottom:377.920000pt;}
.y23{bottom:383.360000pt;}
.y9d{bottom:383.680000pt;}
.y4f{bottom:395.520000pt;}
.y22{bottom:398.720000pt;}
.y9c{bottom:400.000000pt;}
.y4e{bottom:410.880000pt;}
.y7f{bottom:412.800000pt;}
.y21{bottom:414.080000pt;}
.y9b{bottom:416.000000pt;}
.y4d{bottom:426.240000pt;}
.y7e{bottom:427.840000pt;}
.y20{bottom:429.440000pt;}
.y9a{bottom:432.000000pt;}
.y4c{bottom:441.600000pt;}
.y7d{bottom:443.520000pt;}
.yaf{bottom:444.000000pt;}
.y1f{bottom:444.800000pt;}
.y4b{bottom:456.960000pt;}
.yde{bottom:457.920000pt;}
.y1e{bottom:459.840000pt;}
.yad{bottom:460.000000pt;}
.y7c{bottom:460.480000pt;}
.y4a{bottom:472.320000pt;}
.y1d{bottom:475.200000pt;}
.yab{bottom:477.333333pt;}
.y7b{bottom:477.440000pt;}
.y49{bottom:487.680000pt;}
.y1c{bottom:490.560000pt;}
.ya9{bottom:493.333333pt;}
.y7a{bottom:493.760000pt;}
.y48{bottom:503.040000pt;}
.y1b{bottom:505.920000pt;}
.y79{bottom:509.120000pt;}
.ya7{bottom:509.333333pt;}
.ydd{bottom:511.680000pt;}
.y47{bottom:518.400000pt;}
.y1a{bottom:521.280000pt;}
.y78{bottom:524.480000pt;}
.ydc{bottom:528.320000pt;}
.yef{bottom:532.160000pt;}
.y46{bottom:533.440000pt;}
.y19{bottom:536.960000pt;}
.y77{bottom:539.840000pt;}
.ya5{bottom:541.333333pt;}
.ydb{bottom:543.680000pt;}
.yee{bottom:547.520000pt;}
.yb4{bottom:548.160000pt;}
.y45{bottom:548.800000pt;}
.y18{bottom:553.920000pt;}
.y76{bottom:555.200000pt;}
.yda{bottom:559.040000pt;}
.yb3{bottom:560.640000pt;}
.yed{bottom:562.560000pt;}
.y44{bottom:564.160000pt;}
.ya4{bottom:566.666667pt;}
.y75{bottom:570.560000pt;}
.y17{bottom:571.200000pt;}
.yd9{bottom:574.080000pt;}
.yec{bottom:577.920000pt;}
.y43{bottom:579.520000pt;}
.y74{bottom:585.920000pt;}
.y16{bottom:588.800000pt;}
.yd8{bottom:589.440000pt;}
.yeb{bottom:593.280000pt;}
.y42{bottom:594.880000pt;}
.y73{bottom:601.280000pt;}
.y15{bottom:604.160000pt;}
.yd7{bottom:604.800000pt;}
.yea{bottom:608.640000pt;}
.y41{bottom:610.240000pt;}
.y72{bottom:616.640000pt;}
.y99{bottom:619.200000pt;}
.y14{bottom:619.520000pt;}
.yd6{bottom:620.160000pt;}
.ye9{bottom:624.000000pt;}
.y40{bottom:625.600000pt;}
.y71{bottom:632.000000pt;}
.y13{bottom:634.880000pt;}
.yd5{bottom:635.520000pt;}
.y98{bottom:635.840000pt;}
.ye8{bottom:639.360000pt;}
.y3f{bottom:640.960000pt;}
.y70{bottom:647.360000pt;}
.y12{bottom:650.240000pt;}
.yd4{bottom:651.200000pt;}
.y97{bottom:652.800000pt;}
.ye7{bottom:654.720000pt;}
.y3e{bottom:656.320000pt;}
.y6f{bottom:662.400000pt;}
.y11{bottom:665.280000pt;}
.yd3{bottom:667.840000pt;}
.y96{bottom:670.080000pt;}
.y3d{bottom:671.680000pt;}
.y6e{bottom:678.080000pt;}
.y10{bottom:680.640000pt;}
.yd2{bottom:683.840000pt;}
.ye6{bottom:685.440000pt;}
.y3c{bottom:687.040000pt;}
.y95{bottom:688.000000pt;}
.y6d{bottom:695.040000pt;}
.yf{bottom:696.000000pt;}
.yd1{bottom:699.200000pt;}
.ye5{bottom:700.800000pt;}
.y3b{bottom:702.080000pt;}
.y94{bottom:704.640000pt;}
.ye{bottom:711.360000pt;}
.y6c{bottom:712.000000pt;}
.yd0{bottom:714.560000pt;}
.ye4{bottom:716.160000pt;}
.y3a{bottom:717.440000pt;}
.y93{bottom:720.000000pt;}
.yd{bottom:726.720000pt;}
.y6b{bottom:729.280000pt;}
.ycf{bottom:729.920000pt;}
.ye3{bottom:731.520000pt;}
.y39{bottom:732.800000pt;}
.y92{bottom:735.360000pt;}
.yc{bottom:742.080000pt;}
.y66{bottom:742.666667pt;}
.yce{bottom:745.280000pt;}
.ye2{bottom:746.560000pt;}
.y38{bottom:748.160000pt;}
.y91{bottom:751.040000pt;}
.yb2{bottom:755.520000pt;}
.yb{bottom:757.440000pt;}
.ycd{bottom:760.640000pt;}
.ye1{bottom:761.920000pt;}
.y37{bottom:763.520000pt;}
.y90{bottom:767.360000pt;}
.yb1{bottom:768.000000pt;}
.ya{bottom:772.800000pt;}
.ycc{bottom:775.680000pt;}
.ye0{bottom:777.280000pt;}
.y36{bottom:778.880000pt;}
.y8f{bottom:782.080000pt;}
.y9{bottom:788.480000pt;}
.ycb{bottom:791.360000pt;}
.y8d{bottom:792.000000pt;}
.ydf{bottom:792.640000pt;}
.y35{bottom:794.240000pt;}
.y8c{bottom:802.560000pt;}
.y61{bottom:804.000000pt;}
.y8{bottom:805.760000pt;}
.yca{bottom:808.000000pt;}
.y34{bottom:809.600000pt;}
.yc9{bottom:823.360000pt;}
.y7{bottom:823.680000pt;}
.y33{bottom:824.960000pt;}
.y8e{bottom:826.240000pt;}
.y8b{bottom:838.720000pt;}
.y32{bottom:840.320000pt;}
.y6{bottom:846.720000pt;}
.y8a{bottom:854.080000pt;}
.y31{bottom:855.680000pt;}
.y5{bottom:858.240000pt;}
.y5c{bottom:869.333333pt;}
.y89{bottom:869.440000pt;}
.y30{bottom:871.040000pt;}
.y4{bottom:877.760000pt;}
.y88{bottom:884.800000pt;}
.y2f{bottom:886.080000pt;}
.y3{bottom:896.320000pt;}
.yc8{bottom:900.160000pt;}
.y87{bottom:900.480000pt;}
.y2e{bottom:901.440000pt;}
.yc7{bottom:915.200000pt;}
.y2{bottom:915.520000pt;}
.y2d{bottom:916.800000pt;}
.yc6{bottom:930.560000pt;}
.y2c{bottom:932.160000pt;}
.y1{bottom:939.840000pt;}
.yc5{bottom:946.240000pt;}
.y2b{bottom:947.520000pt;}
.h18{height:17.333333pt;}
.h19{height:18.666667pt;}
.h4{height:25.085000pt;}
.h16{height:26.666667pt;}
.h11{height:30.931250pt;}
.h17{height:33.333333pt;}
.ha{height:36.435000pt;}
.h1a{height:37.327500pt;}
.h7{height:37.353750pt;}
.h14{height:39.105000pt;}
.h6{height:39.905000pt;}
.h8{height:40.882500pt;}
.h9{height:41.333333pt;}
.h2{height:42.656250pt;}
.h13{height:43.196250pt;}
.h15{height:48.000000pt;}
.h5{height:49.405000pt;}
.h3{height:54.595000pt;}
.h1{height:58.122500pt;}
.he{height:62.666667pt;}
.hd{height:66.666667pt;}
.h12{height:81.935000pt;}
.hb{height:85.333333pt;}
.hc{height:90.666667pt;}
.h10{height:121.615000pt;}
.hf{height:128.015000pt;}
.h0{height:1056.000000pt;}
.w3{width:44.000000pt;}
.wa{width:78.666667pt;}
.w5{width:110.666667pt;}
.w7{width:116.000000pt;}
.w8{width:120.000000pt;}
.w4{width:185.333333pt;}
.w2{width:205.333333pt;}
.w9{width:216.000000pt;}
.w6{width:526.666667pt;}
.w1{width:541.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x27{left:7.040032pt;}
.xc{left:7.946603pt;}
.xa{left:13.399403pt;}
.x17{left:15.228512pt;}
.x1f{left:22.074208pt;}
.x1e{left:24.655360pt;}
.x22{left:25.788384pt;}
.x26{left:37.816416pt;}
.x25{left:39.466560pt;}
.x1b{left:44.174165pt;}
.x20{left:45.466453pt;}
.x19{left:57.806656pt;}
.x23{left:60.466453pt;}
.x1c{left:76.429227pt;}
.x21{left:93.079787pt;}
.x24{left:108.079787pt;}
.x9{left:137.333333pt;}
.x3{left:144.000000pt;}
.x1{left:158.864576pt;}
.x2a{left:168.000000pt;}
.x7{left:192.000000pt;}
.xb{left:242.051627pt;}
.x18{left:244.609920pt;}
.x11{left:249.801440pt;}
.x1a{left:258.666667pt;}
.x5{left:263.188160pt;}
.x2{left:264.572896pt;}
.x12{left:294.098976pt;}
.x14{left:309.898432pt;}
.x13{left:315.064448pt;}
.x15{left:338.354240pt;}
.xd{left:341.333333pt;}
.x4{left:363.035200pt;}
.x6{left:368.067840pt;}
.x29{left:373.800320pt;}
.x10{left:376.224640pt;}
.x16{left:377.850240pt;}
.xe{left:384.000000pt;}
.x28{left:408.000000pt;}
.xf{left:568.000000pt;}
.x1d{left:592.000000pt;}
.x8{left:672.000000pt;}
}




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