
    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_4498a4324fd75c2cb5e04de7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752441;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_0ab616e317451a61386b327d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2fe966a4d39d8b7d403f9521.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b0893f34f41b09048fbe5f1c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994141;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_1573d3632d1e44d23bfa4345.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_74683f4cc935c8685f725a4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.124512;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_053348b02266324786caad0f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.994141;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_db013f3385ff7c8be324a905.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_f29db4669901f1c0fae85dbf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747559;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_fe2ceb2beb62b8b17d8c3d08.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_61f45baf848c0d506ac08d7a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010742;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_5d45a1ac8b87494140658d6b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_288856745bcebe4d00a4ccae.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.124512;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_0b7943c1e03cdf1720ebcdb5.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_96f5d69a492e5219ad860529.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6cec7c186be2537808a51ba1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.738770;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_97d7cf3713e09642998019fa.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_cfdcf39afc346ab03270a902.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.937500;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_d57e469d9cf9785dd670e381.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.937500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1af899b1f19ab7417139195c.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_7c3a630b56c4214fb323720e.woff2')format("woff");}.ff15{font-family:ff15;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:42.960000px;}
.ls39{letter-spacing:-0.521400px;}
.ls10{letter-spacing:-0.345600px;}
.ls30{letter-spacing:-0.294000px;}
.ls11{letter-spacing:-0.285000px;}
.ls3c{letter-spacing:-0.233400px;}
.ls19{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.150000px;}
.ls2b{letter-spacing:-0.132600px;}
.ls2a{letter-spacing:-0.126600px;}
.lsf{letter-spacing:-0.089400px;}
.ls12{letter-spacing:-0.034560px;}
.ls7{letter-spacing:-0.017280px;}
.ls8{letter-spacing:-0.014400px;}
.ls6{letter-spacing:-0.008640px;}
.ls38{letter-spacing:-0.002886px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls2c{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.023040px;}
.ls2{letter-spacing:0.025920px;}
.ls1f{letter-spacing:0.034560px;}
.ls3a{letter-spacing:0.057600px;}
.ls13{letter-spacing:0.103800px;}
.ls25{letter-spacing:0.132480px;}
.ls28{letter-spacing:0.141120px;}
.ls1e{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.149760px;}
.ls16{letter-spacing:0.150000px;}
.ls21{letter-spacing:0.158400px;}
.lsd{letter-spacing:0.167040px;}
.ls1{letter-spacing:0.175800px;}
.ls1d{letter-spacing:0.178560px;}
.ls20{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.198600px;}
.lsc{letter-spacing:0.205920px;}
.ls0{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.260640px;}
.ls33{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.298800px;}
.ls36{letter-spacing:0.312480px;}
.ls17{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.411600px;}
.ls3b{letter-spacing:0.435000px;}
.lse{letter-spacing:0.696000px;}
.ls1b{letter-spacing:0.702720px;}
.ls4{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.721920px;}
.ls9{letter-spacing:0.745920px;}
.ls15{letter-spacing:0.925920px;}
.ls22{letter-spacing:0.926640px;}
.ls24{letter-spacing:5.189760px;}
.ls2e{letter-spacing:5.909760px;}
.ls2f{letter-spacing:7.349760px;}
.ls26{letter-spacing:15.989760px;}
.ls35{letter-spacing:19.589760px;}
.ls37{letter-spacing:22.469760px;}
.ls32{letter-spacing:23.760000px;}
.lsb{letter-spacing:33.840000px;}
.ls1c{letter-spacing:53.976000px;}
.ls34{letter-spacing:388.620000px;}
.ls31{letter-spacing:659.658720px;}
.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;}
}
.ws18{word-spacing:-21.060000px;}
.ws17{word-spacing:-19.875000px;}
.wsc{word-spacing:-19.638600px;}
.ws16{word-spacing:-19.497600px;}
.ws3{word-spacing:-19.465920px;}
.ws9{word-spacing:-19.463040px;}
.ws1{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.440000px;}
.ws14{word-spacing:-19.437114px;}
.ws15{word-spacing:-19.431360px;}
.ws5{word-spacing:-19.425600px;}
.ws4{word-spacing:-19.422720px;}
.wsb{word-spacing:-19.405440px;}
.ws7{word-spacing:-19.350600px;}
.wse{word-spacing:-19.290000px;}
.wsa{word-spacing:-19.155000px;}
.ws13{word-spacing:-19.146000px;}
.ws8{word-spacing:-19.094400px;}
.ws0{word-spacing:-17.749560px;}
.ws11{word-spacing:-14.970240px;}
.wsf{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.880840px;}
.ws10{word-spacing:-14.813400px;}
.wsd{word-spacing:-14.754240px;}
.ws19{word-spacing:-14.736840px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.486080px;}
._2{width:1.044000px;}
._5{width:2.803200px;}
._19{width:4.743360px;}
._e{width:5.754240px;}
._6{width:7.231680px;}
._17{width:8.612160px;}
._1b{width:9.864000px;}
._1a{width:10.897920px;}
._28{width:11.915040px;}
._14{width:13.130400px;}
._13{width:14.257920px;}
._b{width:15.785280px;}
._a{width:16.873920px;}
._8{width:18.429120px;}
._30{width:19.459440px;}
._29{width:20.569440px;}
._16{width:21.696000px;}
._15{width:22.783680px;}
._22{width:23.983680px;}
._4{width:25.427520px;}
._3{width:26.827200px;}
._7{width:27.933600px;}
._9{width:29.109120px;}
._d{width:30.484320px;}
._1e{width:32.192640px;}
._12{width:33.540960px;}
._10{width:35.147520px;}
._18{width:37.247040px;}
._c{width:40.279680px;}
._2e{width:42.090240px;}
._2d{width:43.156800px;}
._27{width:47.666880px;}
._23{width:52.176960px;}
._21{width:54.000000px;}
._1f{width:55.098720px;}
._11{width:56.576640px;}
._f{width:58.320000px;}
._2b{width:63.432480px;}
._2a{width:64.618560px;}
._2c{width:66.352320px;}
._1c{width:69.517440px;}
._20{width:71.383680px;}
._26{width:73.872000px;}
._24{width:129.470400px;}
._25{width:130.666080px;}
._1{width:330.492000px;}
._2f{width:453.173760px;}
._1d{width:844.716000px;}
.fc5{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc6{color:rgb(36,32,33);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(0,0,255);}
.fc0{color:rgb(31,56,100);}
.fs5{font-size:38.880000px;}
.fs3{font-size:51.120000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs7{font-size:156.240000px;}
.y6c{bottom:-204.345000px;}
.y6b{bottom:-170.685000px;}
.y5b{bottom:-158.430000px;}
.y6a{bottom:-137.025000px;}
.y5a{bottom:-105.840000px;}
.y69{bottom:-103.140000px;}
.y68{bottom:-69.480000px;}
.y59{bottom:-53.280000px;}
.y54{bottom:-50.940000px;}
.y67{bottom:-35.640000px;}
.y5e{bottom:-3.780000px;}
.y66{bottom:-1.980000px;}
.y58{bottom:-0.720000px;}
.y0{bottom:0.000000px;}
.y53{bottom:4.365000px;}
.y72{bottom:10.830000px;}
.y5d{bottom:27.900000px;}
.yb7{bottom:28.650000px;}
.y9a{bottom:28.800000px;}
.y57{bottom:30.960000px;}
.y65{bottom:31.680000px;}
.y62{bottom:32.970000px;}
.y6f{bottom:35.460000px;}
.y90{bottom:41.580000px;}
.y71{bottom:42.330000px;}
.yb6{bottom:50.250000px;}
.y64{bottom:53.460000px;}
.y61{bottom:54.750000px;}
.y6e{bottom:57.240000px;}
.y4{bottom:58.320000px;}
.y99{bottom:59.400000px;}
.y56{bottom:62.640000px;}
.ybe{bottom:67.860000px;}
.y8f{bottom:72.000000px;}
.y60{bottom:76.530000px;}
.y51{bottom:88.596000px;}
.y98{bottom:89.640000px;}
.y50{bottom:95.436000px;}
.ybd{bottom:98.460000px;}
.y8e{bottom:102.285000px;}
.y95{bottom:105.876000px;}
.y4f{bottom:106.776000px;}
.y8c{bottom:109.296000px;}
.y94{bottom:112.716000px;}
.y8b{bottom:116.136000px;}
.y97{bottom:119.880000px;}
.y93{bottom:124.056000px;}
.y2a{bottom:124.776000px;}
.y8a{bottom:126.576000px;}
.ybc{bottom:128.700000px;}
.y89{bottom:133.416000px;}
.yb4{bottom:139.536000px;}
.y88{bottom:144.756000px;}
.y29{bottom:152.310000px;}
.ybb{bottom:158.940000px;}
.y92{bottom:164.550000px;}
.yb3{bottom:167.250000px;}
.y87{bottom:168.870000px;}
.y28{bottom:180.210000px;}
.yba{bottom:189.180000px;}
.y4d{bottom:192.270000px;}
.yb2{bottom:195.150000px;}
.y86{bottom:196.770000px;}
.y27{bottom:207.930000px;}
.yb9{bottom:219.450000px;}
.y4c{bottom:220.170000px;}
.yb1{bottom:223.050000px;}
.y85{bottom:224.670000px;}
.y26{bottom:235.470000px;}
.y4b{bottom:248.070000px;}
.yb0{bottom:250.950000px;}
.y84{bottom:252.570000px;}
.y25{bottom:262.830000px;}
.y4a{bottom:275.970000px;}
.yaf{bottom:278.850000px;}
.y83{bottom:280.470000px;}
.y24{bottom:290.730000px;}
.y49{bottom:303.870000px;}
.yae{bottom:306.750000px;}
.y81{bottom:308.190000px;}
.y82{bottom:312.690000px;}
.y23{bottom:318.090000px;}
.y48{bottom:331.590000px;}
.yad{bottom:334.110000px;}
.y80{bottom:335.910000px;}
.y22{bottom:345.315000px;}
.y47{bottom:359.535000px;}
.yac{bottom:361.155000px;}
.y7f{bottom:362.955000px;}
.y21{bottom:372.675000px;}
.yab{bottom:383.115000px;}
.y46{bottom:387.435000px;}
.y7e{bottom:389.955000px;}
.yb8{bottom:397.875000px;}
.y20{bottom:400.575000px;}
.y45{bottom:415.335000px;}
.y7d{bottom:417.315000px;}
.y1f{bottom:428.475000px;}
.y44{bottom:443.235000px;}
.y7c{bottom:445.215000px;}
.y1e{bottom:456.375000px;}
.y63{bottom:463.215000px;}
.y43{bottom:471.135000px;}
.y7b{bottom:473.115000px;}
.y5c{bottom:477.435000px;}
.y1d{bottom:483.735000px;}
.y42{bottom:498.855000px;}
.y7a{bottom:501.015000px;}
.y1c{bottom:510.735000px;}
.y41{bottom:526.755000px;}
.y79{bottom:528.735000px;}
.y91{bottom:531.255000px;}
.y1b{bottom:537.735000px;}
.y40{bottom:554.655000px;}
.y78{bottom:556.635000px;}
.y1a{bottom:564.915000px;}
.y5f{bottom:577.335000px;}
.y3f{bottom:582.555000px;}
.y77{bottom:584.535000px;}
.y19{bottom:592.275000px;}
.y70{bottom:598.755000px;}
.y3e{bottom:610.485000px;}
.y75{bottom:612.285000px;}
.y76{bottom:616.785000px;}
.y18{bottom:620.205000px;}
.y3d{bottom:638.205000px;}
.y74{bottom:639.465000px;}
.y17{bottom:648.105000px;}
.y3c{bottom:666.105000px;}
.y73{bottom:666.645000px;}
.y16{bottom:676.005000px;}
.y3b{bottom:694.005000px;}
.yaa{bottom:695.985000px;}
.y15{bottom:703.365000px;}
.y3a{bottom:721.905000px;}
.ya9{bottom:723.885000px;}
.y55{bottom:730.005000px;}
.y14{bottom:730.365000px;}
.y6d{bottom:734.145000px;}
.y39{bottom:749.805000px;}
.ya8{bottom:751.785000px;}
.y13{bottom:757.365000px;}
.y38{bottom:777.705000px;}
.ya7{bottom:779.505000px;}
.y8d{bottom:780.225000px;}
.y12{bottom:784.545000px;}
.y37{bottom:805.425000px;}
.ya6{bottom:807.405000px;}
.y11{bottom:811.905000px;}
.y36{bottom:833.325000px;}
.ya5{bottom:835.305000px;}
.y10{bottom:839.805000px;}
.y35{bottom:861.225000px;}
.ya3{bottom:863.025000px;}
.ya4{bottom:867.525000px;}
.yf{bottom:867.705000px;}
.y52{bottom:870.405000px;}
.y34{bottom:889.170000px;}
.ya2{bottom:890.790000px;}
.ye{bottom:895.650000px;}
.y33{bottom:917.070000px;}
.ya1{bottom:917.970000px;}
.yd{bottom:923.010000px;}
.y96{bottom:935.970000px;}
.y32{bottom:944.790000px;}
.ya0{bottom:945.150000px;}
.yc{bottom:950.010000px;}
.y9f{bottom:972.510000px;}
.y31{bottom:972.690000px;}
.yb{bottom:977.550000px;}
.y9e{bottom:1000.410000px;}
.y30{bottom:1000.590000px;}
.ya{bottom:1004.550000px;}
.y9d{bottom:1028.310000px;}
.y2f{bottom:1028.490000px;}
.y9{bottom:1031.370000px;}
.y9c{bottom:1055.670000px;}
.y2e{bottom:1056.390000px;}
.y8{bottom:1058.370000px;}
.yb5{bottom:1074.060000px;}
.y9b{bottom:1077.630000px;}
.y2d{bottom:1084.290000px;}
.y7{bottom:1085.370000px;}
.y4e{bottom:1088.790000px;}
.y2c{bottom:1112.010000px;}
.y6{bottom:1112.910000px;}
.y2b{bottom:1139.940000px;}
.y5{bottom:1140.300000px;}
.y3{bottom:1181.520000px;}
.y2{bottom:1203.480000px;}
.y1{bottom:1224.720000px;}
.h18{height:37.091953px;}
.hc{height:38.158594px;}
.ha{height:43.057617px;}
.he{height:50.422500px;}
.h13{height:50.565000px;}
.h7{height:56.421563px;}
.h5{height:56.687344px;}
.h8{height:56.763281px;}
.hd{height:58.651172px;}
.h17{height:65.010000px;}
.h6{height:65.496094px;}
.hb{height:65.884219px;}
.h1a{height:67.824844px;}
.h15{height:68.925000px;}
.h3{height:71.613281px;}
.h4{height:77.342344px;}
.h2{height:79.620469px;}
.h1c{height:79.925027px;}
.h10{height:83.787539px;}
.h1d{height:84.600000px;}
.h1e{height:84.898125px;}
.h11{height:85.320000px;}
.h16{height:90.000000px;}
.h12{height:98.051133px;}
.h14{height:106.770000px;}
.h19{height:132.682500px;}
.h1b{height:137.865000px;}
.hf{height:159.978164px;}
.h1f{height:171.298125px;}
.h20{height:276.330000px;}
.h9{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:170.629500px;}
.w4{width:203.113500px;}
.w5{width:427.035000px;}
.w7{width:427.215000px;}
.w6{width:429.915000px;}
.w8{width:684.810000px;}
.w9{width:688.770000px;}
.wa{width:692.370000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:10.789500px;}
.x1f{left:18.754500px;}
.x18{left:19.800000px;}
.x13{left:21.769500px;}
.x1d{left:24.480000px;}
.x1e{left:28.440000px;}
.x17{left:30.600000px;}
.x14{left:43.594500px;}
.x19{left:54.720000px;}
.x15{left:63.394500px;}
.xb{left:84.960000px;}
.x23{left:93.646500px;}
.x11{left:94.716000px;}
.x12{left:102.106500px;}
.x1a{left:113.070000px;}
.xa{left:127.476000px;}
.x27{left:130.354125px;}
.x31{left:134.686500px;}
.xc{left:140.796000px;}
.x28{left:143.316000px;}
.x8{left:145.836000px;}
.x2e{left:189.690000px;}
.x1b{left:194.250000px;}
.x1c{left:206.310000px;}
.xd{left:214.770000px;}
.x2f{left:220.110000px;}
.x5{left:239.070000px;}
.x3{left:261.930000px;}
.x2{left:266.430000px;}
.x9{left:269.850000px;}
.x22{left:283.575000px;}
.x7{left:293.655000px;}
.x2d{left:296.535000px;}
.x10{left:301.035000px;}
.x1{left:308.235000px;}
.x25{left:328.393125px;}
.x26{left:341.355000px;}
.x16{left:362.775000px;}
.x4{left:431.535000px;}
.x6{left:467.745000px;}
.x2a{left:542.983125px;}
.x2b{left:555.945000px;}
.x20{left:559.903125px;}
.xe{left:570.343125px;}
.x21{left:572.865000px;}
.xf{left:583.305000px;}
.x30{left:678.780000px;}
.x2c{left:836.250000px;}
.x29{left:843.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:38.186667pt;}
.ls39{letter-spacing:-0.463467pt;}
.ls10{letter-spacing:-0.307200pt;}
.ls30{letter-spacing:-0.261333pt;}
.ls11{letter-spacing:-0.253333pt;}
.ls3c{letter-spacing:-0.207467pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.133333pt;}
.ls2b{letter-spacing:-0.117867pt;}
.ls2a{letter-spacing:-0.112533pt;}
.lsf{letter-spacing:-0.079467pt;}
.ls12{letter-spacing:-0.030720pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:-0.012800pt;}
.ls6{letter-spacing:-0.007680pt;}
.ls38{letter-spacing:-0.002565pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls2c{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.020480pt;}
.ls2{letter-spacing:0.023040pt;}
.ls1f{letter-spacing:0.030720pt;}
.ls3a{letter-spacing:0.051200pt;}
.ls13{letter-spacing:0.092267pt;}
.ls25{letter-spacing:0.117760pt;}
.ls28{letter-spacing:0.125440pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.133120pt;}
.ls16{letter-spacing:0.133333pt;}
.ls21{letter-spacing:0.140800pt;}
.lsd{letter-spacing:0.148480pt;}
.ls1{letter-spacing:0.156267pt;}
.ls1d{letter-spacing:0.158720pt;}
.ls20{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.176533pt;}
.lsc{letter-spacing:0.183040pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.231680pt;}
.ls33{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.265600pt;}
.ls36{letter-spacing:0.277760pt;}
.ls17{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.365867pt;}
.ls3b{letter-spacing:0.386667pt;}
.lse{letter-spacing:0.618667pt;}
.ls1b{letter-spacing:0.624640pt;}
.ls4{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.641707pt;}
.ls9{letter-spacing:0.663040pt;}
.ls15{letter-spacing:0.823040pt;}
.ls22{letter-spacing:0.823680pt;}
.ls24{letter-spacing:4.613120pt;}
.ls2e{letter-spacing:5.253120pt;}
.ls2f{letter-spacing:6.533120pt;}
.ls26{letter-spacing:14.213120pt;}
.ls35{letter-spacing:17.413120pt;}
.ls37{letter-spacing:19.973120pt;}
.ls32{letter-spacing:21.120000pt;}
.lsb{letter-spacing:30.080000pt;}
.ls1c{letter-spacing:47.978667pt;}
.ls34{letter-spacing:345.440000pt;}
.ls31{letter-spacing:586.363307pt;}
.ws18{word-spacing:-18.720000pt;}
.ws17{word-spacing:-17.666667pt;}
.wsc{word-spacing:-17.456533pt;}
.ws16{word-spacing:-17.331200pt;}
.ws3{word-spacing:-17.303040pt;}
.ws9{word-spacing:-17.300480pt;}
.ws1{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.280000pt;}
.ws14{word-spacing:-17.277435pt;}
.ws15{word-spacing:-17.272320pt;}
.ws5{word-spacing:-17.267200pt;}
.ws4{word-spacing:-17.264640pt;}
.wsb{word-spacing:-17.249280pt;}
.ws7{word-spacing:-17.200533pt;}
.wse{word-spacing:-17.146667pt;}
.wsa{word-spacing:-17.026667pt;}
.ws13{word-spacing:-17.018667pt;}
.ws8{word-spacing:-16.972800pt;}
.ws0{word-spacing:-15.777387pt;}
.ws11{word-spacing:-13.306880pt;}
.wsf{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.227413pt;}
.ws10{word-spacing:-13.167467pt;}
.wsd{word-spacing:-13.114880pt;}
.ws19{word-spacing:-13.099413pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.320960pt;}
._2{width:0.928000pt;}
._5{width:2.491733pt;}
._19{width:4.216320pt;}
._e{width:5.114880pt;}
._6{width:6.428160pt;}
._17{width:7.655253pt;}
._1b{width:8.768000pt;}
._1a{width:9.687040pt;}
._28{width:10.591147pt;}
._14{width:11.671467pt;}
._13{width:12.673707pt;}
._b{width:14.031360pt;}
._a{width:14.999040pt;}
._8{width:16.381440pt;}
._30{width:17.297280pt;}
._29{width:18.283947pt;}
._16{width:19.285333pt;}
._15{width:20.252160pt;}
._22{width:21.318827pt;}
._4{width:22.602240pt;}
._3{width:23.846400pt;}
._7{width:24.829867pt;}
._9{width:25.874773pt;}
._d{width:27.097173pt;}
._1e{width:28.615680pt;}
._12{width:29.814187pt;}
._10{width:31.242240pt;}
._18{width:33.108480pt;}
._c{width:35.804160pt;}
._2e{width:37.413547pt;}
._2d{width:38.361600pt;}
._27{width:42.370560pt;}
._23{width:46.379520pt;}
._21{width:48.000000pt;}
._1f{width:48.976640pt;}
._11{width:50.290347pt;}
._f{width:51.840000pt;}
._2b{width:56.384427pt;}
._2a{width:57.438720pt;}
._2c{width:58.979840pt;}
._1c{width:61.793280pt;}
._20{width:63.452160pt;}
._26{width:65.664000pt;}
._24{width:115.084800pt;}
._25{width:116.147627pt;}
._1{width:293.770667pt;}
._2f{width:402.821120pt;}
._1d{width:750.858667pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:45.440000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs7{font-size:138.880000pt;}
.y6c{bottom:-181.640000pt;}
.y6b{bottom:-151.720000pt;}
.y5b{bottom:-140.826667pt;}
.y6a{bottom:-121.800000pt;}
.y5a{bottom:-94.080000pt;}
.y69{bottom:-91.680000pt;}
.y68{bottom:-61.760000pt;}
.y59{bottom:-47.360000pt;}
.y54{bottom:-45.280000pt;}
.y67{bottom:-31.680000pt;}
.y5e{bottom:-3.360000pt;}
.y66{bottom:-1.760000pt;}
.y58{bottom:-0.640000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:3.880000pt;}
.y72{bottom:9.626667pt;}
.y5d{bottom:24.800000pt;}
.yb7{bottom:25.466667pt;}
.y9a{bottom:25.600000pt;}
.y57{bottom:27.520000pt;}
.y65{bottom:28.160000pt;}
.y62{bottom:29.306667pt;}
.y6f{bottom:31.520000pt;}
.y90{bottom:36.960000pt;}
.y71{bottom:37.626667pt;}
.yb6{bottom:44.666667pt;}
.y64{bottom:47.520000pt;}
.y61{bottom:48.666667pt;}
.y6e{bottom:50.880000pt;}
.y4{bottom:51.840000pt;}
.y99{bottom:52.800000pt;}
.y56{bottom:55.680000pt;}
.ybe{bottom:60.320000pt;}
.y8f{bottom:64.000000pt;}
.y60{bottom:68.026667pt;}
.y51{bottom:78.752000pt;}
.y98{bottom:79.680000pt;}
.y50{bottom:84.832000pt;}
.ybd{bottom:87.520000pt;}
.y8e{bottom:90.920000pt;}
.y95{bottom:94.112000pt;}
.y4f{bottom:94.912000pt;}
.y8c{bottom:97.152000pt;}
.y94{bottom:100.192000pt;}
.y8b{bottom:103.232000pt;}
.y97{bottom:106.560000pt;}
.y93{bottom:110.272000pt;}
.y2a{bottom:110.912000pt;}
.y8a{bottom:112.512000pt;}
.ybc{bottom:114.400000pt;}
.y89{bottom:118.592000pt;}
.yb4{bottom:124.032000pt;}
.y88{bottom:128.672000pt;}
.y29{bottom:135.386667pt;}
.ybb{bottom:141.280000pt;}
.y92{bottom:146.266667pt;}
.yb3{bottom:148.666667pt;}
.y87{bottom:150.106667pt;}
.y28{bottom:160.186667pt;}
.yba{bottom:168.160000pt;}
.y4d{bottom:170.906667pt;}
.yb2{bottom:173.466667pt;}
.y86{bottom:174.906667pt;}
.y27{bottom:184.826667pt;}
.yb9{bottom:195.066667pt;}
.y4c{bottom:195.706667pt;}
.yb1{bottom:198.266667pt;}
.y85{bottom:199.706667pt;}
.y26{bottom:209.306667pt;}
.y4b{bottom:220.506667pt;}
.yb0{bottom:223.066667pt;}
.y84{bottom:224.506667pt;}
.y25{bottom:233.626667pt;}
.y4a{bottom:245.306667pt;}
.yaf{bottom:247.866667pt;}
.y83{bottom:249.306667pt;}
.y24{bottom:258.426667pt;}
.y49{bottom:270.106667pt;}
.yae{bottom:272.666667pt;}
.y81{bottom:273.946667pt;}
.y82{bottom:277.946667pt;}
.y23{bottom:282.746667pt;}
.y48{bottom:294.746667pt;}
.yad{bottom:296.986667pt;}
.y80{bottom:298.586667pt;}
.y22{bottom:306.946667pt;}
.y47{bottom:319.586667pt;}
.yac{bottom:321.026667pt;}
.y7f{bottom:322.626667pt;}
.y21{bottom:331.266667pt;}
.yab{bottom:340.546667pt;}
.y46{bottom:344.386667pt;}
.y7e{bottom:346.626667pt;}
.yb8{bottom:353.666667pt;}
.y20{bottom:356.066667pt;}
.y45{bottom:369.186667pt;}
.y7d{bottom:370.946667pt;}
.y1f{bottom:380.866667pt;}
.y44{bottom:393.986667pt;}
.y7c{bottom:395.746667pt;}
.y1e{bottom:405.666667pt;}
.y63{bottom:411.746667pt;}
.y43{bottom:418.786667pt;}
.y7b{bottom:420.546667pt;}
.y5c{bottom:424.386667pt;}
.y1d{bottom:429.986667pt;}
.y42{bottom:443.426667pt;}
.y7a{bottom:445.346667pt;}
.y1c{bottom:453.986667pt;}
.y41{bottom:468.226667pt;}
.y79{bottom:469.986667pt;}
.y91{bottom:472.226667pt;}
.y1b{bottom:477.986667pt;}
.y40{bottom:493.026667pt;}
.y78{bottom:494.786667pt;}
.y1a{bottom:502.146667pt;}
.y5f{bottom:513.186667pt;}
.y3f{bottom:517.826667pt;}
.y77{bottom:519.586667pt;}
.y19{bottom:526.466667pt;}
.y70{bottom:532.226667pt;}
.y3e{bottom:542.653333pt;}
.y75{bottom:544.253333pt;}
.y76{bottom:548.253333pt;}
.y18{bottom:551.293333pt;}
.y3d{bottom:567.293333pt;}
.y74{bottom:568.413333pt;}
.y17{bottom:576.093333pt;}
.y3c{bottom:592.093333pt;}
.y73{bottom:592.573333pt;}
.y16{bottom:600.893333pt;}
.y3b{bottom:616.893333pt;}
.yaa{bottom:618.653333pt;}
.y15{bottom:625.213333pt;}
.y3a{bottom:641.693333pt;}
.ya9{bottom:643.453333pt;}
.y55{bottom:648.893333pt;}
.y14{bottom:649.213333pt;}
.y6d{bottom:652.573333pt;}
.y39{bottom:666.493333pt;}
.ya8{bottom:668.253333pt;}
.y13{bottom:673.213333pt;}
.y38{bottom:691.293333pt;}
.ya7{bottom:692.893333pt;}
.y8d{bottom:693.533333pt;}
.y12{bottom:697.373333pt;}
.y37{bottom:715.933333pt;}
.ya6{bottom:717.693333pt;}
.y11{bottom:721.693333pt;}
.y36{bottom:740.733333pt;}
.ya5{bottom:742.493333pt;}
.y10{bottom:746.493333pt;}
.y35{bottom:765.533333pt;}
.ya3{bottom:767.133333pt;}
.ya4{bottom:771.133333pt;}
.yf{bottom:771.293333pt;}
.y52{bottom:773.693333pt;}
.y34{bottom:790.373333pt;}
.ya2{bottom:791.813333pt;}
.ye{bottom:796.133333pt;}
.y33{bottom:815.173333pt;}
.ya1{bottom:815.973333pt;}
.yd{bottom:820.453333pt;}
.y96{bottom:831.973333pt;}
.y32{bottom:839.813333pt;}
.ya0{bottom:840.133333pt;}
.yc{bottom:844.453333pt;}
.y9f{bottom:864.453333pt;}
.y31{bottom:864.613333pt;}
.yb{bottom:868.933333pt;}
.y9e{bottom:889.253333pt;}
.y30{bottom:889.413333pt;}
.ya{bottom:892.933333pt;}
.y9d{bottom:914.053333pt;}
.y2f{bottom:914.213333pt;}
.y9{bottom:916.773333pt;}
.y9c{bottom:938.373333pt;}
.y2e{bottom:939.013333pt;}
.y8{bottom:940.773333pt;}
.yb5{bottom:954.720000pt;}
.y9b{bottom:957.893333pt;}
.y2d{bottom:963.813333pt;}
.y7{bottom:964.773333pt;}
.y4e{bottom:967.813333pt;}
.y2c{bottom:988.453333pt;}
.y6{bottom:989.253333pt;}
.y2b{bottom:1013.280000pt;}
.y5{bottom:1013.600000pt;}
.y3{bottom:1050.240000pt;}
.y2{bottom:1069.760000pt;}
.y1{bottom:1088.640000pt;}
.h18{height:32.970625pt;}
.hc{height:33.918750pt;}
.ha{height:38.273438pt;}
.he{height:44.820000pt;}
.h13{height:44.946667pt;}
.h7{height:50.152500pt;}
.h5{height:50.388750pt;}
.h8{height:50.456250pt;}
.hd{height:52.134375pt;}
.h17{height:57.786667pt;}
.h6{height:58.218750pt;}
.hb{height:58.563750pt;}
.h1a{height:60.288750pt;}
.h15{height:61.266667pt;}
.h3{height:63.656250pt;}
.h4{height:68.748750pt;}
.h2{height:70.773750pt;}
.h1c{height:71.044468pt;}
.h10{height:74.477812pt;}
.h1d{height:75.200000pt;}
.h1e{height:75.465000pt;}
.h11{height:75.840000pt;}
.h16{height:80.000000pt;}
.h12{height:87.156562pt;}
.h14{height:94.906667pt;}
.h19{height:117.940000pt;}
.h1b{height:122.546667pt;}
.hf{height:142.202812pt;}
.h1f{height:152.265000pt;}
.h20{height:245.626667pt;}
.h9{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:151.670667pt;}
.w4{width:180.545333pt;}
.w5{width:379.586667pt;}
.w7{width:379.746667pt;}
.w6{width:382.146667pt;}
.w8{width:608.720000pt;}
.w9{width:612.240000pt;}
.wa{width:615.440000pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:9.590667pt;}
.x1f{left:16.670667pt;}
.x18{left:17.600000pt;}
.x13{left:19.350667pt;}
.x1d{left:21.760000pt;}
.x1e{left:25.280000pt;}
.x17{left:27.200000pt;}
.x14{left:38.750667pt;}
.x19{left:48.640000pt;}
.x15{left:56.350667pt;}
.xb{left:75.520000pt;}
.x23{left:83.241333pt;}
.x11{left:84.192000pt;}
.x12{left:90.761333pt;}
.x1a{left:100.506667pt;}
.xa{left:113.312000pt;}
.x27{left:115.870333pt;}
.x31{left:119.721333pt;}
.xc{left:125.152000pt;}
.x28{left:127.392000pt;}
.x8{left:129.632000pt;}
.x2e{left:168.613333pt;}
.x1b{left:172.666667pt;}
.x1c{left:183.386667pt;}
.xd{left:190.906667pt;}
.x2f{left:195.653333pt;}
.x5{left:212.506667pt;}
.x3{left:232.826667pt;}
.x2{left:236.826667pt;}
.x9{left:239.866667pt;}
.x22{left:252.066667pt;}
.x7{left:261.026667pt;}
.x2d{left:263.586667pt;}
.x10{left:267.586667pt;}
.x1{left:273.986667pt;}
.x25{left:291.905000pt;}
.x26{left:303.426667pt;}
.x16{left:322.466667pt;}
.x4{left:383.586667pt;}
.x6{left:415.773333pt;}
.x2a{left:482.651667pt;}
.x2b{left:494.173333pt;}
.x20{left:497.691667pt;}
.xe{left:506.971667pt;}
.x21{left:509.213333pt;}
.xf{left:518.493333pt;}
.x30{left:603.360000pt;}
.x2c{left:743.333333pt;}
.x29{left:749.413333pt;}
}




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