
    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_d9ce340c45b867a2b4193b7d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_2708fd9fd160649447b04223.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5a7aba7af264a8a78f722519.woff')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_6d7bba3e36ccc8acfe79c78c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dc6c41213fe377463b7cc2da.woff')format("woff");}.ff5{font-family:ff5;line-height:0.947754;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_cda06fda41279f32b99a6c20.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_28fdff6cdfb3eb100edbb212.woff')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_f945014e5d0aca12b5a8cfa4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_dc6c41213fe377463b7cc2da.woff')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_ea5798b6a5c6a4977f9956db.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a673ea1e9ada6bfed4c84f65.woff')format("woff");}.ffb{font-family:ffb;line-height:1.097168;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_d24058c45556b6b52fbed310.woff')format("woff");}.ffc{font-family:ffc;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0f9d12d1ba64555fcb125c33.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_95ceb9f3e7d21723b7c5b712.woff')format("woff");}.ffe{font-family:ffe;line-height:1.080566;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_da62fd8ce8dd1443b2f63c72.woff')format("woff");}.fff{font-family:fff;line-height:1.080566;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_73d41274f2d9ea0bb277b084.woff')format("woff");}.ff10{font-family:ff10;line-height:1.134766;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_ad45a194ed4780e794c9c6d8.woff')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c2afbd197bb3f0c048f06231.woff')format("woff");}.ff12{font-family:ff12;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_261c8b05db2baa5916c11fc1.woff')format("woff");}.ff13{font-family:ff13;line-height:1.172363;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);}
.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);}
.v1{vertical-align:-95.760000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.080000px;}
.ls20{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.846000px;}
.ls11{letter-spacing:-0.792000px;}
.ls32{letter-spacing:-0.428400px;}
.lse{letter-spacing:-0.421800px;}
.lsb{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.341400px;}
.ls35{letter-spacing:-0.322800px;}
.ls33{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.123600px;}
.ls21{letter-spacing:-0.043920px;}
.ls10{letter-spacing:-0.030960px;}
.ls1f{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.028080px;}
.ls29{letter-spacing:0.037440px;}
.ls34{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.148080px;}
.ls25{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.208200px;}
.ls26{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.267120px;}
.ls18{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.291600px;}
.ls0{letter-spacing:0.322560px;}
.ls13{letter-spacing:0.341400px;}
.ls14{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.392400px;}
.ls1a{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.701280px;}
.ls28{letter-spacing:1.260000px;}
.ls1b{letter-spacing:3.420000px;}
.ls8{letter-spacing:4.140000px;}
.ls5{letter-spacing:5.580000px;}
.lsf{letter-spacing:6.300000px;}
.ls7{letter-spacing:7.020000px;}
.ls1e{letter-spacing:9.180000px;}
.ls31{letter-spacing:12.420000px;}
.ls1c{letter-spacing:12.780000px;}
.ls23{letter-spacing:14.940000px;}
.ls22{letter-spacing:16.380000px;}
.ls2a{letter-spacing:19.260000px;}
.ls27{letter-spacing:20.700000px;}
.ls2c{letter-spacing:27.900000px;}
.ls2b{letter-spacing:28.620000px;}
.ls2d{letter-spacing:31.500000px;}
.ls2e{letter-spacing:32.220000px;}
.ls17{letter-spacing:33.984000px;}
.ls2f{letter-spacing:35.820000px;}
.ls30{letter-spacing:48.060000px;}
.ls4{letter-spacing:966.216000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-27.000000px;}
.ws2{word-spacing:-24.148200px;}
.ws1{word-spacing:-23.940000px;}
.ws9{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.401400px;}
.wsb{word-spacing:-21.088080px;}
.ws7{word-spacing:-21.060000px;}
.ws10{word-spacing:-21.031920px;}
.ws11{word-spacing:-21.016080px;}
.wsa{word-spacing:-20.880000px;}
.ws17{word-spacing:-20.737200px;}
.wsc{word-spacing:-20.718600px;}
.ws12{word-spacing:-20.700000px;}
.ws14{word-spacing:-20.631600px;}
.ws4{word-spacing:-20.340000px;}
.ws5{word-spacing:-20.309040px;}
.ws6{word-spacing:-19.548000px;}
.wsf{word-spacing:-18.144000px;}
.ws16{word-spacing:-18.072000px;}
.wse{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.712000px;}
.wsd{word-spacing:-15.300000px;}
.ws13{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._44{margin-left:-2.948400px;}
._0{margin-left:-1.296000px;}
._1{width:1.380000px;}
._1a{width:2.511600px;}
._12{width:3.975120px;}
._8{width:5.201280px;}
._9{width:6.275280px;}
._e{width:7.416960px;}
._6{width:9.269280px;}
._3{width:10.866960px;}
._2{width:11.962080px;}
._4{width:13.225680px;}
._c{width:14.644800px;}
._d{width:15.738960px;}
._5{width:17.277360px;}
._1f{width:18.508800px;}
._40{width:19.673280px;}
._28{width:21.885840px;}
._20{width:23.807760px;}
._14{width:24.971760px;}
._21{width:26.000400px;}
._26{width:27.081120px;}
._23{width:28.978080px;}
._22{width:30.107280px;}
._3c{width:31.109520px;}
._7{width:32.131440px;}
._43{width:33.142320px;}
._f{width:34.171680px;}
._31{width:35.376000px;}
._3b{width:36.812880px;}
._41{width:38.076480px;}
._3a{width:39.283920px;}
._27{width:40.581360px;}
._1e{width:41.650560px;}
._13{width:42.789600px;}
._11{width:44.091360px;}
._b{width:45.636960px;}
._24{width:47.113680px;}
._3f{width:50.576400px;}
._10{width:52.092480px;}
._15{width:53.215200px;}
._1b{width:54.272640px;}
._17{width:55.319040px;}
._19{width:56.634240px;}
._18{width:58.558080px;}
._a{width:60.683040px;}
._1c{width:66.628080px;}
._1d{width:68.092560px;}
._3d{width:69.423840px;}
._36{width:73.288800px;}
._39{width:74.640960px;}
._16{width:75.740400px;}
._25{width:80.459280px;}
._37{width:81.657120px;}
._33{width:89.242560px;}
._34{width:91.161120px;}
._3e{width:95.696640px;}
._2f{width:100.296000px;}
._42{width:106.347360px;}
._30{width:125.718480px;}
._2a{width:179.100480px;}
._2d{width:198.660000px;}
._2b{width:220.657680px;}
._2c{width:221.836320px;}
._38{width:255.117360px;}
._2e{width:338.145600px;}
._32{width:345.736080px;}
._29{width:843.096000px;}
._35{width:1041.096000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:81.360000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:56.916000px;}
.y19{bottom:74.016000px;}
.y18{bottom:87.696000px;}
.y14{bottom:92.016000px;}
.yb3{bottom:125.136000px;}
.yd3{bottom:126.756000px;}
.y45{bottom:135.216000px;}
.yb2{bottom:142.416000px;}
.yd2{bottom:147.456000px;}
.yba{bottom:149.256000px;}
.y44{bottom:158.430000px;}
.yb1{bottom:159.510000px;}
.yb9{bottom:160.770000px;}
.yd1{bottom:165.450000px;}
.yb0{bottom:176.790000px;}
.yb6{bottom:177.690000px;}
.y43{bottom:181.650000px;}
.yaf{bottom:183.630000px;}
.yae{bottom:195.150000px;}
.yd0{bottom:196.050000px;}
.yb5{bottom:203.790000px;}
.y42{bottom:205.050000px;}
.ya3{bottom:207.210000px;}
.y6d{bottom:208.110000px;}
.ycf{bottom:222.150000px;}
.y41{bottom:228.270000px;}
.yad{bottom:230.250000px;}
.y6c{bottom:232.050000px;}
.ya2{bottom:233.310000px;}
.yce{bottom:248.250000px;}
.y40{bottom:251.490000px;}
.y6b{bottom:255.270000px;}
.yac{bottom:256.350000px;}
.ya1{bottom:259.410000px;}
.ycd{bottom:274.170000px;}
.y3f{bottom:274.890000px;}
.y6a{bottom:278.535000px;}
.yb4{bottom:282.135000px;}
.yab{bottom:282.495000px;}
.ya0{bottom:285.555000px;}
.ycc{bottom:297.615000px;}
.y3e{bottom:298.155000px;}
.y69{bottom:301.935000px;}
.yaa{bottom:308.415000px;}
.y9f{bottom:311.655000px;}
.ycb{bottom:315.435000px;}
.y3d{bottom:321.375000px;}
.y68{bottom:325.155000px;}
.ya9{bottom:334.515000px;}
.y9e{bottom:337.575000px;}
.yca{bottom:341.535000px;}
.y3c{bottom:344.775000px;}
.y67{bottom:348.375000px;}
.ya8{bottom:360.615000px;}
.y9d{bottom:363.675000px;}
.y3b{bottom:367.995000px;}
.y66{bottom:371.775000px;}
.y88{bottom:386.355000px;}
.ya7{bottom:386.715000px;}
.y9c{bottom:389.775000px;}
.y3a{bottom:391.395000px;}
.y65{bottom:394.995000px;}
.y87{bottom:412.635000px;}
.y39{bottom:414.615000px;}
.y9b{bottom:415.875000px;}
.yc9{bottom:416.055000px;}
.y64{bottom:418.215000px;}
.yc8{bottom:436.935000px;}
.y38{bottom:437.835000px;}
.y86{bottom:438.735000px;}
.y9a{bottom:441.255000px;}
.y63{bottom:441.615000px;}
.yc7{bottom:457.635000px;}
.y37{bottom:460.695000px;}
.yb8{bottom:464.655000px;}
.y62{bottom:464.835000px;}
.y99{bottom:467.355000px;}
.yc6{bottom:478.335000px;}
.y36{bottom:486.255000px;}
.y61{bottom:488.235000px;}
.y98{bottom:488.775000px;}
.y85{bottom:490.935000px;}
.yc5{bottom:499.035000px;}
.y35{bottom:509.655000px;}
.y60{bottom:511.455000px;}
.y84{bottom:516.675000px;}
.ya6{bottom:517.035000px;}
.yc4{bottom:519.735000px;}
.y97{bottom:519.915000px;}
.y13{bottom:520.315500px;}
.y34{bottom:532.875000px;}
.y5f{bottom:534.675000px;}
.yc3{bottom:540.435000px;}
.y83{bottom:542.955000px;}
.y96{bottom:545.835000px;}
.y12{bottom:548.035500px;}
.y33{bottom:556.095000px;}
.y5e{bottom:558.075000px;}
.yc2{bottom:561.135000px;}
.y82{bottom:569.085000px;}
.y95{bottom:571.425000px;}
.y11{bottom:575.569500px;}
.y32{bottom:579.525000px;}
.y5d{bottom:581.325000px;}
.yc1{bottom:581.505000px;}
.y81{bottom:595.185000px;}
.y94{bottom:597.525000px;}
.y31{bottom:602.745000px;}
.y10{bottom:603.109500px;}
.y5c{bottom:604.545000px;}
.yc0{bottom:605.265000px;}
.y93{bottom:620.925000px;}
.y80{bottom:621.285000px;}
.y30{bottom:625.965000px;}
.y5b{bottom:627.945000px;}
.yf{bottom:630.649500px;}
.ybf{bottom:631.185000px;}
.y92{bottom:638.565000px;}
.y7f{bottom:647.205000px;}
.y2f{bottom:649.365000px;}
.y5a{bottom:651.165000px;}
.ybe{bottom:657.285000px;}
.y91{bottom:664.665000px;}
.ye{bottom:671.149500px;}
.y2e{bottom:672.585000px;}
.y7e{bottom:673.305000px;}
.y59{bottom:674.385000px;}
.ybd{bottom:683.385000px;}
.y2d{bottom:695.985000px;}
.y58{bottom:697.785000px;}
.y7d{bottom:699.045000px;}
.ya5{bottom:699.405000px;}
.y90{bottom:702.825000px;}
.ybc{bottom:709.485000px;}
.y2c{bottom:719.205000px;}
.y57{bottom:721.005000px;}
.y7c{bottom:725.505000px;}
.y8f{bottom:728.025000px;}
.ybb{bottom:730.365000px;}
.y2b{bottom:742.425000px;}
.y56{bottom:744.405000px;}
.y8e{bottom:750.345000px;}
.y7b{bottom:751.425000px;}
.y2a{bottom:765.825000px;}
.y55{bottom:767.625000px;}
.y8d{bottom:772.665000px;}
.y7a{bottom:777.525000px;}
.yd{bottom:780.225000px;}
.y29{bottom:789.045000px;}
.y54{bottom:790.845000px;}
.y8c{bottom:794.985000px;}
.y79{bottom:803.625000px;}
.yc{bottom:811.185000px;}
.y28{bottom:812.265000px;}
.y53{bottom:813.705000px;}
.y8b{bottom:817.305000px;}
.y78{bottom:829.725000px;}
.y27{bottom:835.665000px;}
.y52{bottom:837.465000px;}
.y8a{bottom:839.625000px;}
.yb{bottom:843.405000px;}
.y77{bottom:855.870000px;}
.y26{bottom:858.930000px;}
.y51{bottom:860.730000px;}
.y89{bottom:861.990000px;}
.ya{bottom:875.310000px;}
.y76{bottom:881.790000px;}
.y25{bottom:882.150000px;}
.y50{bottom:884.130000px;}
.y24{bottom:905.550000px;}
.y9{bottom:906.270000px;}
.y4f{bottom:907.350000px;}
.y75{bottom:907.890000px;}
.y23{bottom:928.770000px;}
.y4e{bottom:930.570000px;}
.yb7{bottom:933.630000px;}
.y74{bottom:933.990000px;}
.y8{bottom:937.230000px;}
.y22{bottom:952.170000px;}
.y4d{bottom:953.970000px;}
.y73{bottom:960.090000px;}
.y7{bottom:969.630000px;}
.y21{bottom:975.390000px;}
.y4c{bottom:977.190000px;}
.y72{bottom:986.010000px;}
.y20{bottom:998.610000px;}
.y4b{bottom:1000.590000px;}
.y6{bottom:1001.310000px;}
.y71{bottom:1012.110000px;}
.y1f{bottom:1022.010000px;}
.y4a{bottom:1023.810000px;}
.y5{bottom:1032.270000px;}
.y70{bottom:1038.210000px;}
.y1e{bottom:1045.230000px;}
.y49{bottom:1047.030000px;}
.y4{bottom:1062.510000px;}
.y6f{bottom:1064.310000px;}
.y1d{bottom:1068.450000px;}
.y48{bottom:1070.430000px;}
.y6e{bottom:1090.410000px;}
.y3{bottom:1090.950000px;}
.y1c{bottom:1091.850000px;}
.y47{bottom:1093.650000px;}
.y1b{bottom:1116.330000px;}
.y46{bottom:1116.870000px;}
.y2{bottom:1121.910000px;}
.ya4{bottom:1126.050000px;}
.y17{bottom:1139.040000px;}
.y16{bottom:1152.720000px;}
.y1{bottom:1153.080000px;}
.y15{bottom:1192.860000px;}
.h15{height:38.158594px;}
.h10{height:41.715352px;}
.h13{height:52.998047px;}
.h7{height:58.038398px;}
.h8{height:58.651172px;}
.h18{height:63.457031px;}
.hf{height:70.664062px;}
.h14{height:71.613281px;}
.h9{height:71.706445px;}
.h17{height:72.562500px;}
.h16{height:72.846211px;}
.he{height:74.004654px;}
.hd{height:74.244727px;}
.ha{height:79.850391px;}
.h6{height:81.995625px;}
.h11{height:82.635820px;}
.hb{height:82.676953px;}
.h4{height:82.808086px;}
.hc{height:84.898125px;}
.h3{height:93.392578px;}
.h5{height:110.583984px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.h12{height:1263.057945px;}
.h2{height:1263.060000px;}
.w4{width:892.438125px;}
.w2{width:892.440000px;}
.w3{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:84.996000px;}
.x9{left:86.076000px;}
.x1{left:89.496000px;}
.x2c{left:95.616000px;}
.x15{left:106.416000px;}
.x17{left:113.076000px;}
.x31{left:119.196000px;}
.x21{left:123.696000px;}
.x1f{left:128.736000px;}
.x1e{left:133.416000px;}
.x11{left:134.496000px;}
.x24{left:136.656000px;}
.x1a{left:138.096000px;}
.x3{left:147.816000px;}
.x5{left:158.430000px;}
.xc{left:159.864000px;}
.xa{left:164.730000px;}
.x7{left:166.170000px;}
.x33{left:187.410000px;}
.x6{left:205.950000px;}
.x22{left:231.870000px;}
.x2{left:234.210000px;}
.xf{left:261.969000px;}
.x23{left:286.815000px;}
.x32{left:291.135000px;}
.x2b{left:301.035000px;}
.x30{left:304.635000px;}
.xd{left:318.849000px;}
.x2d{left:323.353125px;}
.x34{left:326.415000px;}
.x2e{left:330.195000px;}
.x20{left:355.035000px;}
.x1c{left:371.955000px;}
.x8{left:391.035000px;}
.x1b{left:392.295000px;}
.x16{left:395.175000px;}
.x26{left:397.335000px;}
.xe{left:423.279000px;}
.x28{left:424.365000px;}
.x19{left:431.745000px;}
.x4{left:435.705000px;}
.x1d{left:445.785000px;}
.x14{left:453.165000px;}
.x13{left:456.945000px;}
.x29{left:541.903125px;}
.x2a{left:548.745000px;}
.x25{left:682.710000px;}
.x18{left:694.950000px;}
.x2f{left:701.070000px;}
.x12{left:716.370000px;}
.x27{left:725.370000px;}
.xb{left:749.694000px;}
@media print{
.v1{vertical-align:-85.120000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls20{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.752000pt;}
.ls11{letter-spacing:-0.704000pt;}
.ls32{letter-spacing:-0.380800pt;}
.lse{letter-spacing:-0.374933pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.303467pt;}
.ls35{letter-spacing:-0.286933pt;}
.ls33{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.109867pt;}
.ls21{letter-spacing:-0.039040pt;}
.ls10{letter-spacing:-0.027520pt;}
.ls1f{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.024960pt;}
.ls29{letter-spacing:0.033280pt;}
.ls34{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.131627pt;}
.ls25{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.185067pt;}
.ls26{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.237440pt;}
.ls18{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.259200pt;}
.ls0{letter-spacing:0.286720pt;}
.ls13{letter-spacing:0.303467pt;}
.ls14{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.348800pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.623360pt;}
.ls28{letter-spacing:1.120000pt;}
.ls1b{letter-spacing:3.040000pt;}
.ls8{letter-spacing:3.680000pt;}
.ls5{letter-spacing:4.960000pt;}
.lsf{letter-spacing:5.600000pt;}
.ls7{letter-spacing:6.240000pt;}
.ls1e{letter-spacing:8.160000pt;}
.ls31{letter-spacing:11.040000pt;}
.ls1c{letter-spacing:11.360000pt;}
.ls23{letter-spacing:13.280000pt;}
.ls22{letter-spacing:14.560000pt;}
.ls2a{letter-spacing:17.120000pt;}
.ls27{letter-spacing:18.400000pt;}
.ls2c{letter-spacing:24.800000pt;}
.ls2b{letter-spacing:25.440000pt;}
.ls2d{letter-spacing:28.000000pt;}
.ls2e{letter-spacing:28.640000pt;}
.ls17{letter-spacing:30.208000pt;}
.ls2f{letter-spacing:31.840000pt;}
.ls30{letter-spacing:42.720000pt;}
.ls4{letter-spacing:858.858667pt;}
.ws0{word-spacing:-24.000000pt;}
.ws2{word-spacing:-21.465067pt;}
.ws1{word-spacing:-21.280000pt;}
.ws9{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.023467pt;}
.wsb{word-spacing:-18.744960pt;}
.ws7{word-spacing:-18.720000pt;}
.ws10{word-spacing:-18.695040pt;}
.ws11{word-spacing:-18.680960pt;}
.wsa{word-spacing:-18.560000pt;}
.ws17{word-spacing:-18.433067pt;}
.wsc{word-spacing:-18.416533pt;}
.ws12{word-spacing:-18.400000pt;}
.ws14{word-spacing:-18.339200pt;}
.ws4{word-spacing:-18.080000pt;}
.ws5{word-spacing:-18.052480pt;}
.ws6{word-spacing:-17.376000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws16{word-spacing:-16.064000pt;}
.wse{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.744000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._44{margin-left:-2.620800pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.226667pt;}
._1a{width:2.232533pt;}
._12{width:3.533440pt;}
._8{width:4.623360pt;}
._9{width:5.578027pt;}
._e{width:6.592853pt;}
._6{width:8.239360pt;}
._3{width:9.659520pt;}
._2{width:10.632960pt;}
._4{width:11.756160pt;}
._c{width:13.017600pt;}
._d{width:13.990187pt;}
._5{width:15.357653pt;}
._1f{width:16.452267pt;}
._40{width:17.487360pt;}
._28{width:19.454080pt;}
._20{width:21.162453pt;}
._14{width:22.197120pt;}
._21{width:23.111467pt;}
._26{width:24.072107pt;}
._23{width:25.758293pt;}
._22{width:26.762027pt;}
._3c{width:27.652907pt;}
._7{width:28.561280pt;}
._43{width:29.459840pt;}
._f{width:30.374827pt;}
._31{width:31.445333pt;}
._3b{width:32.722560pt;}
._41{width:33.845760pt;}
._3a{width:34.919040pt;}
._27{width:36.072320pt;}
._1e{width:37.022720pt;}
._13{width:38.035200pt;}
._11{width:39.192320pt;}
._b{width:40.566187pt;}
._24{width:41.878827pt;}
._3f{width:44.956800pt;}
._10{width:46.304427pt;}
._15{width:47.302400pt;}
._1b{width:48.242347pt;}
._17{width:49.172480pt;}
._19{width:50.341547pt;}
._18{width:52.051627pt;}
._a{width:53.940480pt;}
._1c{width:59.224960pt;}
._1d{width:60.526720pt;}
._3d{width:61.710080pt;}
._36{width:65.145600pt;}
._39{width:66.347520pt;}
._16{width:67.324800pt;}
._25{width:71.519360pt;}
._37{width:72.584107pt;}
._33{width:79.326720pt;}
._34{width:81.032107pt;}
._3e{width:85.063680pt;}
._2f{width:89.152000pt;}
._42{width:94.530987pt;}
._30{width:111.749760pt;}
._2a{width:159.200427pt;}
._2d{width:176.586667pt;}
._2b{width:196.140160pt;}
._2c{width:197.187840pt;}
._38{width:226.770987pt;}
._2e{width:300.573867pt;}
._32{width:307.320960pt;}
._29{width:749.418667pt;}
._35{width:925.418667pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:72.320000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:50.592000pt;}
.y19{bottom:65.792000pt;}
.y18{bottom:77.952000pt;}
.y14{bottom:81.792000pt;}
.yb3{bottom:111.232000pt;}
.yd3{bottom:112.672000pt;}
.y45{bottom:120.192000pt;}
.yb2{bottom:126.592000pt;}
.yd2{bottom:131.072000pt;}
.yba{bottom:132.672000pt;}
.y44{bottom:140.826667pt;}
.yb1{bottom:141.786667pt;}
.yb9{bottom:142.906667pt;}
.yd1{bottom:147.066667pt;}
.yb0{bottom:157.146667pt;}
.yb6{bottom:157.946667pt;}
.y43{bottom:161.466667pt;}
.yaf{bottom:163.226667pt;}
.yae{bottom:173.466667pt;}
.yd0{bottom:174.266667pt;}
.yb5{bottom:181.146667pt;}
.y42{bottom:182.266667pt;}
.ya3{bottom:184.186667pt;}
.y6d{bottom:184.986667pt;}
.ycf{bottom:197.466667pt;}
.y41{bottom:202.906667pt;}
.yad{bottom:204.666667pt;}
.y6c{bottom:206.266667pt;}
.ya2{bottom:207.386667pt;}
.yce{bottom:220.666667pt;}
.y40{bottom:223.546667pt;}
.y6b{bottom:226.906667pt;}
.yac{bottom:227.866667pt;}
.ya1{bottom:230.586667pt;}
.ycd{bottom:243.706667pt;}
.y3f{bottom:244.346667pt;}
.y6a{bottom:247.586667pt;}
.yb4{bottom:250.786667pt;}
.yab{bottom:251.106667pt;}
.ya0{bottom:253.826667pt;}
.ycc{bottom:264.546667pt;}
.y3e{bottom:265.026667pt;}
.y69{bottom:268.386667pt;}
.yaa{bottom:274.146667pt;}
.y9f{bottom:277.026667pt;}
.ycb{bottom:280.386667pt;}
.y3d{bottom:285.666667pt;}
.y68{bottom:289.026667pt;}
.ya9{bottom:297.346667pt;}
.y9e{bottom:300.066667pt;}
.yca{bottom:303.586667pt;}
.y3c{bottom:306.466667pt;}
.y67{bottom:309.666667pt;}
.ya8{bottom:320.546667pt;}
.y9d{bottom:323.266667pt;}
.y3b{bottom:327.106667pt;}
.y66{bottom:330.466667pt;}
.y88{bottom:343.426667pt;}
.ya7{bottom:343.746667pt;}
.y9c{bottom:346.466667pt;}
.y3a{bottom:347.906667pt;}
.y65{bottom:351.106667pt;}
.y87{bottom:366.786667pt;}
.y39{bottom:368.546667pt;}
.y9b{bottom:369.666667pt;}
.yc9{bottom:369.826667pt;}
.y64{bottom:371.746667pt;}
.yc8{bottom:388.386667pt;}
.y38{bottom:389.186667pt;}
.y86{bottom:389.986667pt;}
.y9a{bottom:392.226667pt;}
.y63{bottom:392.546667pt;}
.yc7{bottom:406.786667pt;}
.y37{bottom:409.506667pt;}
.yb8{bottom:413.026667pt;}
.y62{bottom:413.186667pt;}
.y99{bottom:415.426667pt;}
.yc6{bottom:425.186667pt;}
.y36{bottom:432.226667pt;}
.y61{bottom:433.986667pt;}
.y98{bottom:434.466667pt;}
.y85{bottom:436.386667pt;}
.yc5{bottom:443.586667pt;}
.y35{bottom:453.026667pt;}
.y60{bottom:454.626667pt;}
.y84{bottom:459.266667pt;}
.ya6{bottom:459.586667pt;}
.yc4{bottom:461.986667pt;}
.y97{bottom:462.146667pt;}
.y13{bottom:462.502667pt;}
.y34{bottom:473.666667pt;}
.y5f{bottom:475.266667pt;}
.yc3{bottom:480.386667pt;}
.y83{bottom:482.626667pt;}
.y96{bottom:485.186667pt;}
.y12{bottom:487.142667pt;}
.y33{bottom:494.306667pt;}
.y5e{bottom:496.066667pt;}
.yc2{bottom:498.786667pt;}
.y82{bottom:505.853333pt;}
.y95{bottom:507.933333pt;}
.y11{bottom:511.617333pt;}
.y32{bottom:515.133333pt;}
.y5d{bottom:516.733333pt;}
.yc1{bottom:516.893333pt;}
.y81{bottom:529.053333pt;}
.y94{bottom:531.133333pt;}
.y31{bottom:535.773333pt;}
.y10{bottom:536.097333pt;}
.y5c{bottom:537.373333pt;}
.yc0{bottom:538.013333pt;}
.y93{bottom:551.933333pt;}
.y80{bottom:552.253333pt;}
.y30{bottom:556.413333pt;}
.y5b{bottom:558.173333pt;}
.yf{bottom:560.577333pt;}
.ybf{bottom:561.053333pt;}
.y92{bottom:567.613333pt;}
.y7f{bottom:575.293333pt;}
.y2f{bottom:577.213333pt;}
.y5a{bottom:578.813333pt;}
.ybe{bottom:584.253333pt;}
.y91{bottom:590.813333pt;}
.ye{bottom:596.577333pt;}
.y2e{bottom:597.853333pt;}
.y7e{bottom:598.493333pt;}
.y59{bottom:599.453333pt;}
.ybd{bottom:607.453333pt;}
.y2d{bottom:618.653333pt;}
.y58{bottom:620.253333pt;}
.y7d{bottom:621.373333pt;}
.ya5{bottom:621.693333pt;}
.y90{bottom:624.733333pt;}
.ybc{bottom:630.653333pt;}
.y2c{bottom:639.293333pt;}
.y57{bottom:640.893333pt;}
.y7c{bottom:644.893333pt;}
.y8f{bottom:647.133333pt;}
.ybb{bottom:649.213333pt;}
.y2b{bottom:659.933333pt;}
.y56{bottom:661.693333pt;}
.y8e{bottom:666.973333pt;}
.y7b{bottom:667.933333pt;}
.y2a{bottom:680.733333pt;}
.y55{bottom:682.333333pt;}
.y8d{bottom:686.813333pt;}
.y7a{bottom:691.133333pt;}
.yd{bottom:693.533333pt;}
.y29{bottom:701.373333pt;}
.y54{bottom:702.973333pt;}
.y8c{bottom:706.653333pt;}
.y79{bottom:714.333333pt;}
.yc{bottom:721.053333pt;}
.y28{bottom:722.013333pt;}
.y53{bottom:723.293333pt;}
.y8b{bottom:726.493333pt;}
.y78{bottom:737.533333pt;}
.y27{bottom:742.813333pt;}
.y52{bottom:744.413333pt;}
.y8a{bottom:746.333333pt;}
.yb{bottom:749.693333pt;}
.y77{bottom:760.773333pt;}
.y26{bottom:763.493333pt;}
.y51{bottom:765.093333pt;}
.y89{bottom:766.213333pt;}
.ya{bottom:778.053333pt;}
.y76{bottom:783.813333pt;}
.y25{bottom:784.133333pt;}
.y50{bottom:785.893333pt;}
.y24{bottom:804.933333pt;}
.y9{bottom:805.573333pt;}
.y4f{bottom:806.533333pt;}
.y75{bottom:807.013333pt;}
.y23{bottom:825.573333pt;}
.y4e{bottom:827.173333pt;}
.yb7{bottom:829.893333pt;}
.y74{bottom:830.213333pt;}
.y8{bottom:833.093333pt;}
.y22{bottom:846.373333pt;}
.y4d{bottom:847.973333pt;}
.y73{bottom:853.413333pt;}
.y7{bottom:861.893333pt;}
.y21{bottom:867.013333pt;}
.y4c{bottom:868.613333pt;}
.y72{bottom:876.453333pt;}
.y20{bottom:887.653333pt;}
.y4b{bottom:889.413333pt;}
.y6{bottom:890.053333pt;}
.y71{bottom:899.653333pt;}
.y1f{bottom:908.453333pt;}
.y4a{bottom:910.053333pt;}
.y5{bottom:917.573333pt;}
.y70{bottom:922.853333pt;}
.y1e{bottom:929.093333pt;}
.y49{bottom:930.693333pt;}
.y4{bottom:944.453333pt;}
.y6f{bottom:946.053333pt;}
.y1d{bottom:949.733333pt;}
.y48{bottom:951.493333pt;}
.y6e{bottom:969.253333pt;}
.y3{bottom:969.733333pt;}
.y1c{bottom:970.533333pt;}
.y47{bottom:972.133333pt;}
.y1b{bottom:992.293333pt;}
.y46{bottom:992.773333pt;}
.y2{bottom:997.253333pt;}
.ya4{bottom:1000.933333pt;}
.y17{bottom:1012.480000pt;}
.y16{bottom:1024.640000pt;}
.y1{bottom:1024.960000pt;}
.y15{bottom:1060.320000pt;}
.h15{height:33.918750pt;}
.h10{height:37.080312pt;}
.h13{height:47.109375pt;}
.h7{height:51.589687pt;}
.h8{height:52.134375pt;}
.h18{height:56.406250pt;}
.hf{height:62.812500pt;}
.h14{height:63.656250pt;}
.h9{height:63.739062pt;}
.h17{height:64.500000pt;}
.h16{height:64.752187pt;}
.he{height:65.781915pt;}
.hd{height:65.995312pt;}
.ha{height:70.978125pt;}
.h6{height:72.885000pt;}
.h11{height:73.454062pt;}
.hb{height:73.490625pt;}
.h4{height:73.607188pt;}
.hc{height:75.465000pt;}
.h3{height:83.015625pt;}
.h5{height:98.296875pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.h12{height:1122.718173pt;}
.h2{height:1122.720000pt;}
.w4{width:793.278333pt;}
.w2{width:793.280000pt;}
.w3{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:75.552000pt;}
.x9{left:76.512000pt;}
.x1{left:79.552000pt;}
.x2c{left:84.992000pt;}
.x15{left:94.592000pt;}
.x17{left:100.512000pt;}
.x31{left:105.952000pt;}
.x21{left:109.952000pt;}
.x1f{left:114.432000pt;}
.x1e{left:118.592000pt;}
.x11{left:119.552000pt;}
.x24{left:121.472000pt;}
.x1a{left:122.752000pt;}
.x3{left:131.392000pt;}
.x5{left:140.826667pt;}
.xc{left:142.101333pt;}
.xa{left:146.426667pt;}
.x7{left:147.706667pt;}
.x33{left:166.586667pt;}
.x6{left:183.066667pt;}
.x22{left:206.106667pt;}
.x2{left:208.186667pt;}
.xf{left:232.861333pt;}
.x23{left:254.946667pt;}
.x32{left:258.786667pt;}
.x2b{left:267.586667pt;}
.x30{left:270.786667pt;}
.xd{left:283.421333pt;}
.x2d{left:287.425000pt;}
.x34{left:290.146667pt;}
.x2e{left:293.506667pt;}
.x20{left:315.586667pt;}
.x1c{left:330.626667pt;}
.x8{left:347.586667pt;}
.x1b{left:348.706667pt;}
.x16{left:351.266667pt;}
.x26{left:353.186667pt;}
.xe{left:376.248000pt;}
.x28{left:377.213333pt;}
.x19{left:383.773333pt;}
.x4{left:387.293333pt;}
.x1d{left:396.253333pt;}
.x14{left:402.813333pt;}
.x13{left:406.173333pt;}
.x29{left:481.691667pt;}
.x2a{left:487.773333pt;}
.x25{left:606.853333pt;}
.x18{left:617.733333pt;}
.x2f{left:623.173333pt;}
.x12{left:636.773333pt;}
.x27{left:644.773333pt;}
.xb{left:666.394667pt;}
}




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