
    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_759c33b2bb3cc2ef73951b25.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8d4823dee12f2f435a45ed67.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_e4302f681162e3d68df6240a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ae63eb0ee7697bb161ad03fd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fbaf08746df177f91a29fcaf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_bcef9d1c89f0f5ad5df2219a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_a920b2122a0840501d830919.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1f340058d52472e2baca7306.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf5396d8495bdd62ab9cda1d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d20e9e845cf18d0d400e3069.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_78114d69275704785f51a615.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6b0974992aacc754b69c2bca.woff2')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;}
.m2{transform:matrix(0.193978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193978,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242194,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243187,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260631,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);}
.v4{vertical-align:-23.885894px;}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.642869px;}
.v5{vertical-align:23.214300px;}
.v2{vertical-align:30.240000px;}
.ls22{letter-spacing:-3.239846px;}
.ls21{letter-spacing:-3.117298px;}
.ls1b{letter-spacing:-2.933477px;}
.ls10{letter-spacing:-1.458000px;}
.ls7{letter-spacing:-0.900000px;}
.ls1a{letter-spacing:-0.756000px;}
.lsc{letter-spacing:-0.690000px;}
.lse{letter-spacing:-0.684000px;}
.ls20{letter-spacing:-0.422022px;}
.lsb{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.341400px;}
.ls6{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.028080px;}
.lsd{letter-spacing:-0.009360px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls5{letter-spacing:0.037440px;}
.lsf{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.392093px;}
.ls1c{letter-spacing:0.463382px;}
.ls12{letter-spacing:0.480000px;}
.ls1f{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.548282px;}
.ls1{letter-spacing:2.700000px;}
.ls9{letter-spacing:7.020000px;}
.ls11{letter-spacing:12.060000px;}
.ls2{letter-spacing:68.220000px;}
.ls14{letter-spacing:255.979096px;}
.ls15{letter-spacing:286.598005px;}
.ls13{letter-spacing:867.316362px;}
.ls1e{letter-spacing:1022.236846px;}
.ls17{letter-spacing:1090.218462px;}
.ls1d{letter-spacing:1119.607570px;}
.ls16{letter-spacing:1186.625658px;}
.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;}
}
.ws8{word-spacing:-84.240000px;}
.ws19{word-spacing:-50.744809px;}
.ws12{word-spacing:-42.937915px;}
.ws1b{word-spacing:-23.107837px;}
.ws3{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.401400px;}
.ws2{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws9{word-spacing:-21.050640px;}
.ws6{word-spacing:-21.031920px;}
.ws4{word-spacing:-20.718600px;}
.ws7{word-spacing:-20.700000px;}
.wsa{word-spacing:-20.376000px;}
.ws13{word-spacing:-20.304000px;}
.ws11{word-spacing:-20.101066px;}
.wsc{word-spacing:-19.602000px;}
.ws10{word-spacing:-19.552785px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-11.794697px;}
.wse{word-spacing:-11.402605px;}
.ws18{word-spacing:-0.517285px;}
.ws14{word-spacing:-0.092431px;}
.ws17{word-spacing:-0.053903px;}
.ws5{word-spacing:0.000000px;}
.ws1a{word-spacing:0.329591px;}
.ws15{word-spacing:2.841046px;}
.ws1c{word-spacing:3.024867px;}
.ws1d{word-spacing:3.147414px;}
.wsd{word-spacing:318.644601px;}
.ws1e{word-spacing:463.626779px;}
.ws16{word-spacing:611.074231px;}
._4c{margin-left:-557.590488px;}
._50{margin-left:-522.377515px;}
._48{margin-left:-499.313303px;}
._36{margin-left:-472.046515px;}
._3d{margin-left:-440.497390px;}
._38{margin-left:-367.014760px;}
._39{margin-left:-362.766625px;}
._45{margin-left:-359.334380px;}
._4b{margin-left:-358.208660px;}
._51{margin-left:-349.898233px;}
._46{margin-left:-348.266822px;}
._4d{margin-left:-342.956446px;}
._3e{margin-left:-341.102917px;}
._35{margin-left:-339.578897px;}
._4f{margin-left:-329.789115px;}
._41{margin-left:-328.318547px;}
._33{margin-left:-316.255413px;}
._2d{margin-left:-310.743783px;}
._3a{margin-left:-297.913367px;}
._2e{margin-left:-291.612254px;}
._47{margin-left:-287.100370px;}
._3f{margin-left:-285.167707px;}
._40{margin-left:-274.420686px;}
._31{margin-left:-261.344686px;}
._42{margin-left:-258.681010px;}
._49{margin-left:-229.822194px;}
._3b{margin-left:-189.543205px;}
._32{margin-left:-186.247864px;}
._30{margin-left:-180.447486px;}
._37{margin-left:-167.454044px;}
._2f{margin-left:-164.310119px;}
._4a{margin-left:-162.536831px;}
._3c{margin-left:-161.390247px;}
._44{margin-left:-156.894321px;}
._43{margin-left:-145.684685px;}
._34{margin-left:-142.197391px;}
._2c{margin-left:-137.126784px;}
._4e{margin-left:-132.725301px;}
._2b{margin-left:-126.887982px;}
._25{margin-left:-4.771200px;}
._10{margin-left:-3.369600px;}
._f{margin-left:-2.358720px;}
._0{margin-left:-1.126080px;}
._e{width:1.009920px;}
._11{width:2.411280px;}
._16{width:3.866400px;}
._15{width:5.032080px;}
._52{width:6.103200px;}
._19{width:7.121520px;}
._1a{width:8.659920px;}
._d{width:10.361520px;}
._12{width:11.456640px;}
._28{width:12.802080px;}
._13{width:13.899600px;}
._1d{width:15.156720px;}
._26{width:16.492080px;}
._7{width:17.870160px;}
._24{width:19.155360px;}
._14{width:22.633200px;}
._27{width:26.833440px;}
._1f{width:28.689600px;}
._20{width:30.090000px;}
._53{width:31.153440px;}
._1c{width:33.119280px;}
._1b{width:34.836960px;}
._23{width:38.468640px;}
._21{width:40.083840px;}
._22{width:41.158800px;}
._17{width:46.837440px;}
._29{width:48.461520px;}
._b{width:50.229360px;}
._a{width:52.761360px;}
._5{width:54.584640px;}
._6{width:55.739280px;}
._4{width:56.766960px;}
._c{width:62.975280px;}
._2a{width:64.207920px;}
._18{width:68.096880px;}
._8{width:86.518560px;}
._9{width:87.631200px;}
._1e{width:101.414880px;}
._1{width:430.638720px;}
._2{width:612.782880px;}
._3{width:915.300000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(31,78,121);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(196,89,17);}
.fs7{font-size:45.610419px;}
.fsa{font-size:53.903222px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:78.211139px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:84.384000px;}
.fs9{font-size:92.431346px;}
.fs6{font-size:103.603188px;}
.y4{bottom:-6.840000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:3.240000px;}
.y6{bottom:4.500000px;}
.y29{bottom:4.680000px;}
.y7a{bottom:5.185668px;}
.y79{bottom:10.214175px;}
.y8a{bottom:11.932092px;}
.y3e{bottom:17.100000px;}
.y49{bottom:17.130000px;}
.y42{bottom:17.280000px;}
.y3c{bottom:21.600000px;}
.y28{bottom:29.160000px;}
.y27{bottom:53.280000px;}
.y68{bottom:54.000000px;}
.y7{bottom:71.280000px;}
.y26{bottom:77.400000px;}
.y5{bottom:97.560000px;}
.y25{bottom:101.520000px;}
.y24{bottom:125.460000px;}
.y3{bottom:129.060000px;}
.y48{bottom:139.500000px;}
.y23{bottom:149.550000px;}
.y1d{bottom:157.710000px;}
.y77{bottom:162.570000px;}
.y65{bottom:173.190000px;}
.y22{bottom:173.670000px;}
.y47{bottom:176.430000px;}
.y76{bottom:182.370000px;}
.y89{bottom:189.240000px;}
.y1c{bottom:193.890000px;}
.y21{bottom:197.790000px;}
.y8b{bottom:198.210000px;}
.y64{bottom:209.370000px;}
.y46{bottom:213.510000px;}
.y75{bottom:219.450000px;}
.y1b{bottom:230.070000px;}
.y88{bottom:241.590000px;}
.y63{bottom:245.550000px;}
.y45{bottom:250.410000px;}
.y74{bottom:256.350000px;}
.y1a{bottom:266.250000px;}
.y87{bottom:277.770000px;}
.y62{bottom:281.730000px;}
.y44{bottom:287.490000px;}
.y73{bottom:293.430000px;}
.y19{bottom:302.610000px;}
.y86{bottom:313.950000px;}
.y61{bottom:317.910000px;}
.y43{bottom:324.390000px;}
.y72{bottom:330.330000px;}
.y18{bottom:338.790000px;}
.y9e{bottom:344.730000px;}
.y85{bottom:350.130000px;}
.y60{bottom:354.270000px;}
.y41{bottom:361.290000px;}
.y71{bottom:367.230000px;}
.y17{bottom:374.970000px;}
.y9d{bottom:380.910000px;}
.y84{bottom:386.310000px;}
.y5f{bottom:390.450000px;}
.y40{bottom:398.415000px;}
.y70{bottom:404.355000px;}
.y16{bottom:411.195000px;}
.y9c{bottom:417.315000px;}
.y83{bottom:422.715000px;}
.y5e{bottom:426.675000px;}
.y3f{bottom:435.315000px;}
.y6f{bottom:441.255000px;}
.y15{bottom:447.555000px;}
.y9b{bottom:453.495000px;}
.y82{bottom:458.895000px;}
.y5d{bottom:462.855000px;}
.y3d{bottom:472.395000px;}
.y6e{bottom:478.335000px;}
.y14{bottom:483.735000px;}
.y9a{bottom:489.675000px;}
.y81{bottom:495.075000px;}
.y5c{bottom:499.215000px;}
.y3b{bottom:509.295000px;}
.y6d{bottom:515.235000px;}
.y13{bottom:519.915000px;}
.y99{bottom:525.855000px;}
.y80{bottom:531.255000px;}
.y5b{bottom:535.395000px;}
.y6c{bottom:552.135000px;}
.y12{bottom:556.095000px;}
.y98{bottom:562.215000px;}
.y7f{bottom:567.615000px;}
.y5a{bottom:571.575000px;}
.y3a{bottom:572.655000px;}
.y6b{bottom:589.215000px;}
.y11{bottom:592.455000px;}
.y97{bottom:598.395000px;}
.y7e{bottom:603.795000px;}
.y59{bottom:607.755000px;}
.y39{bottom:609.375000px;}
.y6a{bottom:626.115000px;}
.y10{bottom:628.635000px;}
.y96{bottom:634.575000px;}
.y7d{bottom:639.975000px;}
.y58{bottom:644.145000px;}
.y38{bottom:645.585000px;}
.y67{bottom:663.225000px;}
.yf{bottom:664.845000px;}
.y95{bottom:670.785000px;}
.y7c{bottom:676.185000px;}
.y57{bottom:680.325000px;}
.y37{bottom:681.765000px;}
.y69{bottom:700.125000px;}
.ye{bottom:701.025000px;}
.y94{bottom:707.145000px;}
.y78{bottom:707.340000px;}
.y7b{bottom:716.325000px;}
.y56{bottom:716.505000px;}
.y36{bottom:717.945000px;}
.yd{bottom:737.205000px;}
.y93{bottom:743.325000px;}
.y55{bottom:752.685000px;}
.y66{bottom:753.945000px;}
.y35{bottom:754.305000px;}
.yc{bottom:773.565000px;}
.y92{bottom:779.505000px;}
.y54{bottom:789.045000px;}
.y34{bottom:790.485000px;}
.yb{bottom:809.745000px;}
.y91{bottom:815.685000px;}
.y53{bottom:825.225000px;}
.y33{bottom:826.665000px;}
.ya{bottom:845.925000px;}
.y90{bottom:851.865000px;}
.y52{bottom:861.405000px;}
.y32{bottom:862.845000px;}
.y9{bottom:882.105000px;}
.y8f{bottom:888.225000px;}
.y51{bottom:897.630000px;}
.y31{bottom:899.250000px;}
.y8{bottom:918.510000px;}
.y8e{bottom:924.450000px;}
.y50{bottom:933.810000px;}
.y30{bottom:935.430000px;}
.y1e{bottom:937.590000px;}
.y20{bottom:937.620000px;}
.y8c{bottom:955.515000px;}
.y8d{bottom:964.590000px;}
.y4f{bottom:970.170000px;}
.y2f{bottom:971.610000px;}
.y4e{bottom:1006.350000px;}
.y2e{bottom:1007.790000px;}
.y4d{bottom:1042.530000px;}
.y2d{bottom:1043.970000px;}
.y4c{bottom:1078.710000px;}
.y2c{bottom:1080.330000px;}
.y4b{bottom:1115.070000px;}
.y2b{bottom:1116.510000px;}
.y4a{bottom:1134.870000px;}
.y2a{bottom:1152.720000px;}
.y2{bottom:1175.580000px;}
.y1{bottom:1194.480000px;}
.h3{height:6.660000px;}
.h5{height:20.700000px;}
.h16{height:29.700207px;}
.h19{height:35.100245px;}
.h10{height:36.180000px;}
.h13{height:36.216000px;}
.h12{height:36.360000px;}
.h11{height:36.396000px;}
.hf{height:45.900000px;}
.h4{height:58.651172px;}
.h7{height:65.884219px;}
.h2{height:66.757500px;}
.ha{height:69.432187px;}
.h6{height:70.664062px;}
.h17{height:71.935417px;}
.h14{height:73.080000px;}
.h8{height:82.635820px;}
.he{height:82.676953px;}
.h9{height:82.777078px;}
.h15{height:83.238047px;}
.hc{height:84.898125px;}
.h1b{height:86.585445px;}
.h1a{height:95.004859px;}
.h18{height:96.364636px;}
.hd{height:217.260000px;}
.hb{height:217.290000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:41.940000px;}
.w8{width:74.916000px;}
.we{width:87.660000px;}
.w10{width:89.460000px;}
.wf{width:89.676000px;}
.w11{width:92.376000px;}
.w5{width:169.230000px;}
.wa{width:188.310000px;}
.w12{width:277.944370px;}
.wc{width:295.275000px;}
.w9{width:296.310000px;}
.w4{width:302.115000px;}
.w14{width:358.945884px;}
.wd{width:361.695000px;}
.w13{width:388.803716px;}
.w3{width:392.295000px;}
.w6{width:554.760000px;}
.w7{width:554.865000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:2.696170px;}
.x2{left:8.640000px;}
.x2a{left:10.440000px;}
.x1c{left:11.520000px;}
.x27{left:15.660000px;}
.x9{left:17.355000px;}
.xd{left:20.700000px;}
.xa{left:22.935000px;}
.x29{left:25.020000px;}
.x14{left:26.820000px;}
.x28{left:28.080000px;}
.x2b{left:30.240000px;}
.x19{left:32.220000px;}
.x24{left:34.020000px;}
.x26{left:35.460000px;}
.x21{left:38.700000px;}
.x18{left:41.040000px;}
.x1e{left:60.660000px;}
.x1a{left:81.045000px;}
.x36{left:117.035987px;}
.x16{left:121.860000px;}
.x1{left:127.655987px;}
.xe{left:129.600000px;}
.xc{left:131.760000px;}
.x20{left:133.020000px;}
.x37{left:138.275987px;}
.xf{left:156.090000px;}
.x7{left:161.139000px;}
.x1d{left:171.030000px;}
.x6{left:180.749987px;}
.x13{left:198.030000px;}
.xb{left:199.905000px;}
.x10{left:208.470000px;}
.x12{left:256.169987px;}
.x2e{left:269.042718px;}
.x15{left:273.675000px;}
.x5{left:276.885000px;}
.x30{left:284.115000px;}
.x4{left:293.475000px;}
.x8{left:296.820000px;}
.x33{left:299.040000px;}
.x34{left:316.558734px;}
.x2c{left:339.540000px;}
.x31{left:345.907532px;}
.x1f{left:467.025000px;}
.x1b{left:478.544987px;}
.x3{left:519.945000px;}
.x22{left:555.405000px;}
.x17{left:570.705000px;}
.x2f{left:617.504987px;}
.x23{left:645.990000px;}
.x35{left:658.049987px;}
.x32{left:672.989987px;}
.x25{left:736.350000px;}
.x11{left:760.649987px;}
@media print{
.v4{vertical-align:-21.231906pt;}
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.460328pt;}
.v5{vertical-align:20.634933pt;}
.v2{vertical-align:26.880000pt;}
.ls22{letter-spacing:-2.879863pt;}
.ls21{letter-spacing:-2.770932pt;}
.ls1b{letter-spacing:-2.607535pt;}
.ls10{letter-spacing:-1.296000pt;}
.ls7{letter-spacing:-0.800000pt;}
.ls1a{letter-spacing:-0.672000pt;}
.lsc{letter-spacing:-0.613333pt;}
.lse{letter-spacing:-0.608000pt;}
.ls20{letter-spacing:-0.375131pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.303467pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.024960pt;}
.lsd{letter-spacing:-0.008320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls5{letter-spacing:0.033280pt;}
.lsf{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.348527pt;}
.ls1c{letter-spacing:0.411895pt;}
.ls12{letter-spacing:0.426667pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.487361pt;}
.ls1{letter-spacing:2.400000pt;}
.ls9{letter-spacing:6.240000pt;}
.ls11{letter-spacing:10.720000pt;}
.ls2{letter-spacing:60.640000pt;}
.ls14{letter-spacing:227.536974pt;}
.ls15{letter-spacing:254.753782pt;}
.ls13{letter-spacing:770.947877pt;}
.ls1e{letter-spacing:908.654974pt;}
.ls17{letter-spacing:969.083077pt;}
.ls1d{letter-spacing:995.206729pt;}
.ls16{letter-spacing:1054.778363pt;}
.ws8{word-spacing:-74.880000pt;}
.ws19{word-spacing:-45.106497pt;}
.ws12{word-spacing:-38.167036pt;}
.ws1b{word-spacing:-20.540299pt;}
.ws3{word-spacing:-19.040000pt;}
.wsb{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.711680pt;}
.ws6{word-spacing:-18.695040pt;}
.ws4{word-spacing:-18.416533pt;}
.ws7{word-spacing:-18.400000pt;}
.wsa{word-spacing:-18.112000pt;}
.ws13{word-spacing:-18.048000pt;}
.ws11{word-spacing:-17.867615pt;}
.wsc{word-spacing:-17.424000pt;}
.ws10{word-spacing:-17.380253pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-10.484175pt;}
.wse{word-spacing:-10.135649pt;}
.ws18{word-spacing:-0.459809pt;}
.ws14{word-spacing:-0.082161pt;}
.ws17{word-spacing:-0.047914pt;}
.ws5{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.292970pt;}
.ws15{word-spacing:2.525374pt;}
.ws1c{word-spacing:2.688771pt;}
.ws1d{word-spacing:2.797702pt;}
.wsd{word-spacing:283.239645pt;}
.ws1e{word-spacing:412.112692pt;}
.ws16{word-spacing:543.177094pt;}
._4c{margin-left:-495.635989pt;}
._50{margin-left:-464.335569pt;}
._48{margin-left:-443.834047pt;}
._36{margin-left:-419.596902pt;}
._3d{margin-left:-391.553236pt;}
._38{margin-left:-326.235342pt;}
._39{margin-left:-322.459222pt;}
._45{margin-left:-319.408338pt;}
._4b{margin-left:-318.407698pt;}
._51{margin-left:-311.020652pt;}
._46{margin-left:-309.570508pt;}
._4d{margin-left:-304.850174pt;}
._3e{margin-left:-303.202593pt;}
._35{margin-left:-301.847909pt;}
._4f{margin-left:-293.145880pt;}
._41{margin-left:-291.838708pt;}
._33{margin-left:-281.115922pt;}
._2d{margin-left:-276.216696pt;}
._3a{margin-left:-264.811882pt;}
._2e{margin-left:-259.210893pt;}
._47{margin-left:-255.200329pt;}
._3f{margin-left:-253.482406pt;}
._40{margin-left:-243.929499pt;}
._31{margin-left:-232.306388pt;}
._42{margin-left:-229.938675pt;}
._49{margin-left:-204.286395pt;}
._3b{margin-left:-168.482849pt;}
._32{margin-left:-165.553657pt;}
._30{margin-left:-160.397765pt;}
._37{margin-left:-148.848039pt;}
._2f{margin-left:-146.053439pt;}
._4a{margin-left:-144.477183pt;}
._3c{margin-left:-143.457997pt;}
._44{margin-left:-139.461619pt;}
._43{margin-left:-129.497497pt;}
._34{margin-left:-126.397681pt;}
._2c{margin-left:-121.890475pt;}
._4e{margin-left:-117.978046pt;}
._2b{margin-left:-112.789317pt;}
._25{margin-left:-4.241067pt;}
._10{margin-left:-2.995200pt;}
._f{margin-left:-2.096640pt;}
._0{margin-left:-1.000960pt;}
._e{width:0.897707pt;}
._11{width:2.143360pt;}
._16{width:3.436800pt;}
._15{width:4.472960pt;}
._52{width:5.425067pt;}
._19{width:6.330240pt;}
._1a{width:7.697707pt;}
._d{width:9.210240pt;}
._12{width:10.183680pt;}
._28{width:11.379627pt;}
._13{width:12.355200pt;}
._1d{width:13.472640pt;}
._26{width:14.659627pt;}
._7{width:15.884587pt;}
._24{width:17.026987pt;}
._14{width:20.118400pt;}
._27{width:23.851947pt;}
._1f{width:25.501867pt;}
._20{width:26.746667pt;}
._53{width:27.691947pt;}
._1c{width:29.439360pt;}
._1b{width:30.966187pt;}
._23{width:34.194347pt;}
._21{width:35.630080pt;}
._22{width:36.585600pt;}
._17{width:41.633280pt;}
._29{width:43.076907pt;}
._b{width:44.648320pt;}
._a{width:46.898987pt;}
._5{width:48.519680pt;}
._6{width:49.546027pt;}
._4{width:50.459520pt;}
._c{width:55.978027pt;}
._2a{width:57.073707pt;}
._18{width:60.530560pt;}
._8{width:76.905387pt;}
._9{width:77.894400pt;}
._1e{width:90.146560pt;}
._1{width:382.789973pt;}
._2{width:544.695893pt;}
._3{width:813.600000pt;}
.fs7{font-size:40.542594pt;}
.fsa{font-size:47.913975pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:69.521013pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:75.008000pt;}
.fs9{font-size:82.161197pt;}
.fs6{font-size:92.091723pt;}
.y4{bottom:-6.080000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:2.880000pt;}
.y6{bottom:4.000000pt;}
.y29{bottom:4.160000pt;}
.y7a{bottom:4.609483pt;}
.y79{bottom:9.079267pt;}
.y8a{bottom:10.606304pt;}
.y3e{bottom:15.200000pt;}
.y49{bottom:15.226667pt;}
.y42{bottom:15.360000pt;}
.y3c{bottom:19.200000pt;}
.y28{bottom:25.920000pt;}
.y27{bottom:47.360000pt;}
.y68{bottom:48.000000pt;}
.y7{bottom:63.360000pt;}
.y26{bottom:68.800000pt;}
.y5{bottom:86.720000pt;}
.y25{bottom:90.240000pt;}
.y24{bottom:111.520000pt;}
.y3{bottom:114.720000pt;}
.y48{bottom:124.000000pt;}
.y23{bottom:132.933333pt;}
.y1d{bottom:140.186667pt;}
.y77{bottom:144.506667pt;}
.y65{bottom:153.946667pt;}
.y22{bottom:154.373333pt;}
.y47{bottom:156.826667pt;}
.y76{bottom:162.106667pt;}
.y89{bottom:168.213333pt;}
.y1c{bottom:172.346667pt;}
.y21{bottom:175.813333pt;}
.y8b{bottom:176.186667pt;}
.y64{bottom:186.106667pt;}
.y46{bottom:189.786667pt;}
.y75{bottom:195.066667pt;}
.y1b{bottom:204.506667pt;}
.y88{bottom:214.746667pt;}
.y63{bottom:218.266667pt;}
.y45{bottom:222.586667pt;}
.y74{bottom:227.866667pt;}
.y1a{bottom:236.666667pt;}
.y87{bottom:246.906667pt;}
.y62{bottom:250.426667pt;}
.y44{bottom:255.546667pt;}
.y73{bottom:260.826667pt;}
.y19{bottom:268.986667pt;}
.y86{bottom:279.066667pt;}
.y61{bottom:282.586667pt;}
.y43{bottom:288.346667pt;}
.y72{bottom:293.626667pt;}
.y18{bottom:301.146667pt;}
.y9e{bottom:306.426667pt;}
.y85{bottom:311.226667pt;}
.y60{bottom:314.906667pt;}
.y41{bottom:321.146667pt;}
.y71{bottom:326.426667pt;}
.y17{bottom:333.306667pt;}
.y9d{bottom:338.586667pt;}
.y84{bottom:343.386667pt;}
.y5f{bottom:347.066667pt;}
.y40{bottom:354.146667pt;}
.y70{bottom:359.426667pt;}
.y16{bottom:365.506667pt;}
.y9c{bottom:370.946667pt;}
.y83{bottom:375.746667pt;}
.y5e{bottom:379.266667pt;}
.y3f{bottom:386.946667pt;}
.y6f{bottom:392.226667pt;}
.y15{bottom:397.826667pt;}
.y9b{bottom:403.106667pt;}
.y82{bottom:407.906667pt;}
.y5d{bottom:411.426667pt;}
.y3d{bottom:419.906667pt;}
.y6e{bottom:425.186667pt;}
.y14{bottom:429.986667pt;}
.y9a{bottom:435.266667pt;}
.y81{bottom:440.066667pt;}
.y5c{bottom:443.746667pt;}
.y3b{bottom:452.706667pt;}
.y6d{bottom:457.986667pt;}
.y13{bottom:462.146667pt;}
.y99{bottom:467.426667pt;}
.y80{bottom:472.226667pt;}
.y5b{bottom:475.906667pt;}
.y6c{bottom:490.786667pt;}
.y12{bottom:494.306667pt;}
.y98{bottom:499.746667pt;}
.y7f{bottom:504.546667pt;}
.y5a{bottom:508.066667pt;}
.y3a{bottom:509.026667pt;}
.y6b{bottom:523.746667pt;}
.y11{bottom:526.626667pt;}
.y97{bottom:531.906667pt;}
.y7e{bottom:536.706667pt;}
.y59{bottom:540.226667pt;}
.y39{bottom:541.666667pt;}
.y6a{bottom:556.546667pt;}
.y10{bottom:558.786667pt;}
.y96{bottom:564.066667pt;}
.y7d{bottom:568.866667pt;}
.y58{bottom:572.573333pt;}
.y38{bottom:573.853333pt;}
.y67{bottom:589.533333pt;}
.yf{bottom:590.973333pt;}
.y95{bottom:596.253333pt;}
.y7c{bottom:601.053333pt;}
.y57{bottom:604.733333pt;}
.y37{bottom:606.013333pt;}
.y69{bottom:622.333333pt;}
.ye{bottom:623.133333pt;}
.y94{bottom:628.573333pt;}
.y78{bottom:628.746667pt;}
.y7b{bottom:636.733333pt;}
.y56{bottom:636.893333pt;}
.y36{bottom:638.173333pt;}
.yd{bottom:655.293333pt;}
.y93{bottom:660.733333pt;}
.y55{bottom:669.053333pt;}
.y66{bottom:670.173333pt;}
.y35{bottom:670.493333pt;}
.yc{bottom:687.613333pt;}
.y92{bottom:692.893333pt;}
.y54{bottom:701.373333pt;}
.y34{bottom:702.653333pt;}
.yb{bottom:719.773333pt;}
.y91{bottom:725.053333pt;}
.y53{bottom:733.533333pt;}
.y33{bottom:734.813333pt;}
.ya{bottom:751.933333pt;}
.y90{bottom:757.213333pt;}
.y52{bottom:765.693333pt;}
.y32{bottom:766.973333pt;}
.y9{bottom:784.093333pt;}
.y8f{bottom:789.533333pt;}
.y51{bottom:797.893333pt;}
.y31{bottom:799.333333pt;}
.y8{bottom:816.453333pt;}
.y8e{bottom:821.733333pt;}
.y50{bottom:830.053333pt;}
.y30{bottom:831.493333pt;}
.y1e{bottom:833.413333pt;}
.y20{bottom:833.440000pt;}
.y8c{bottom:849.346667pt;}
.y8d{bottom:857.413333pt;}
.y4f{bottom:862.373333pt;}
.y2f{bottom:863.653333pt;}
.y4e{bottom:894.533333pt;}
.y2e{bottom:895.813333pt;}
.y4d{bottom:926.693333pt;}
.y2d{bottom:927.973333pt;}
.y4c{bottom:958.853333pt;}
.y2c{bottom:960.293333pt;}
.y4b{bottom:991.173333pt;}
.y2b{bottom:992.453333pt;}
.y4a{bottom:1008.773333pt;}
.y2a{bottom:1024.640000pt;}
.y2{bottom:1044.960000pt;}
.y1{bottom:1061.760000pt;}
.h3{height:5.920000pt;}
.h5{height:18.400000pt;}
.h16{height:26.400184pt;}
.h19{height:31.200217pt;}
.h10{height:32.160000pt;}
.h13{height:32.192000pt;}
.h12{height:32.320000pt;}
.h11{height:32.352000pt;}
.hf{height:40.800000pt;}
.h4{height:52.134375pt;}
.h7{height:58.563750pt;}
.h2{height:59.340000pt;}
.ha{height:61.717500pt;}
.h6{height:62.812500pt;}
.h17{height:63.942592pt;}
.h14{height:64.960000pt;}
.h8{height:73.454062pt;}
.he{height:73.490625pt;}
.h9{height:73.579625pt;}
.h15{height:73.989375pt;}
.hc{height:75.465000pt;}
.h1b{height:76.964840pt;}
.h1a{height:84.448763pt;}
.h18{height:85.657454pt;}
.hd{height:193.120000pt;}
.hb{height:193.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:37.280000pt;}
.w8{width:66.592000pt;}
.we{width:77.920000pt;}
.w10{width:79.520000pt;}
.wf{width:79.712000pt;}
.w11{width:82.112000pt;}
.w5{width:150.426667pt;}
.wa{width:167.386667pt;}
.w12{width:247.061662pt;}
.wc{width:262.466667pt;}
.w9{width:263.386667pt;}
.w4{width:268.546667pt;}
.w14{width:319.063008pt;}
.wd{width:321.506667pt;}
.w13{width:345.603303pt;}
.w3{width:348.706667pt;}
.w6{width:493.120000pt;}
.w7{width:493.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:2.396596pt;}
.x2{left:7.680000pt;}
.x2a{left:9.280000pt;}
.x1c{left:10.240000pt;}
.x27{left:13.920000pt;}
.x9{left:15.426667pt;}
.xd{left:18.400000pt;}
.xa{left:20.386667pt;}
.x29{left:22.240000pt;}
.x14{left:23.840000pt;}
.x28{left:24.960000pt;}
.x2b{left:26.880000pt;}
.x19{left:28.640000pt;}
.x24{left:30.240000pt;}
.x26{left:31.520000pt;}
.x21{left:34.400000pt;}
.x18{left:36.480000pt;}
.x1e{left:53.920000pt;}
.x1a{left:72.040000pt;}
.x36{left:104.031988pt;}
.x16{left:108.320000pt;}
.x1{left:113.471988pt;}
.xe{left:115.200000pt;}
.xc{left:117.120000pt;}
.x20{left:118.240000pt;}
.x37{left:122.911988pt;}
.xf{left:138.746667pt;}
.x7{left:143.234667pt;}
.x1d{left:152.026667pt;}
.x6{left:160.666655pt;}
.x13{left:176.026667pt;}
.xb{left:177.693333pt;}
.x10{left:185.306667pt;}
.x12{left:227.706655pt;}
.x2e{left:239.149083pt;}
.x15{left:243.266667pt;}
.x5{left:246.120000pt;}
.x30{left:252.546667pt;}
.x4{left:260.866667pt;}
.x8{left:263.840000pt;}
.x33{left:265.813333pt;}
.x34{left:281.385541pt;}
.x2c{left:301.813333pt;}
.x31{left:307.473361pt;}
.x1f{left:415.133333pt;}
.x1b{left:425.373322pt;}
.x3{left:462.173333pt;}
.x22{left:493.693333pt;}
.x17{left:507.293333pt;}
.x2f{left:548.893322pt;}
.x23{left:574.213333pt;}
.x35{left:584.933322pt;}
.x32{left:598.213322pt;}
.x25{left:654.533333pt;}
.x11{left:676.133322pt;}
}




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