
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f1feb8eb10297e6e70f623db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_90c642647bedf49ecd8ffd25.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_4a8216e8b1d98877d6c36365.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_cb0ea7442656abd8bac1df31.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_8e10148d1345b14bfd83130f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_df06efa4d42bcf23c3c1add5.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls8{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.370200px;}
.lsa{letter-spacing:-0.326400px;}
.ls17{letter-spacing:-0.256800px;}
.lsb{letter-spacing:-0.094800px;}
.ls16{letter-spacing:-0.052560px;}
.lse{letter-spacing:-0.039000px;}
.ls14{letter-spacing:-0.038880px;}
.ls1c{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.010800px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.013200px;}
.ls18{letter-spacing:0.063600px;}
.lsc{letter-spacing:0.079200px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.168480px;}
.ls12{letter-spacing:0.211680px;}
.ls19{letter-spacing:0.223200px;}
.ls15{letter-spacing:0.285600px;}
.ls2{letter-spacing:0.351360px;}
.ls4{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.385800px;}
.ls10{letter-spacing:0.666000px;}
.ls13{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:14.400000px;}
.ls1b{letter-spacing:47.466720px;}
.ls1a{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wse{word-spacing:-14.958600px;}
.ws9{word-spacing:-14.572800px;}
.wsa{word-spacing:-13.813200px;}
.wsf{word-spacing:-13.432800px;}
.ws12{word-spacing:-13.370400px;}
.ws5{word-spacing:-13.160400px;}
.wsc{word-spacing:-13.160160px;}
.ws6{word-spacing:-13.147200px;}
.ws13{word-spacing:-13.111200px;}
.wsd{word-spacing:-13.108320px;}
.ws7{word-spacing:-13.108200px;}
.ws10{word-spacing:-13.094640px;}
.ws11{word-spacing:-12.890400px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws4{word-spacing:-9.092400px;}
.wsb{word-spacing:0.000000px;}
.ws8{word-spacing:2.552040px;}
._c{margin-left:-3.175201px;}
._12{margin-left:-2.163600px;}
._0{margin-left:-1.159200px;}
._1{width:1.143600px;}
._2{width:2.586960px;}
._5{width:4.245600px;}
._3{width:6.207000px;}
._4{width:7.648802px;}
._7{width:9.015600px;}
._6{width:10.159200px;}
._8{width:11.332800px;}
._9{width:14.581201px;}
._a{width:16.485600px;}
._b{width:17.518199px;}
._e{width:19.046761px;}
._1c{width:20.423879px;}
._26{width:22.071363px;}
._10{width:23.246640px;}
._f{width:24.740640px;}
._13{width:25.756560px;}
._11{width:26.942400px;}
._29{width:28.684800px;}
._2a{width:29.939760px;}
._1b{width:30.955680px;}
._27{width:32.174640px;}
._25{width:33.405840px;}
._49{width:34.446240px;}
._48{width:35.788080px;}
._2f{width:37.409760px;}
._1a{width:38.656560px;}
._d{width:39.680640px;}
._31{width:40.935600px;}
._1e{width:42.190560px;}
._17{width:44.043120px;}
._2d{width:45.947280px;}
._1d{width:47.808000px;}
._51{width:49.003200px;}
._56{width:50.488080px;}
._55{width:52.165440px;}
._36{width:54.680400px;}
._2e{width:56.174400px;}
._32{width:58.154400px;}
._3f{width:59.385600px;}
._3c{width:62.030880px;}
._40{width:63.345600px;}
._53{width:64.899360px;}
._18{width:66.333600px;}
._46{width:67.827600px;}
._37{width:71.532720px;}
._4b{width:73.265760px;}
._4c{width:74.281680px;}
._16{width:75.596400px;}
._4d{width:85.277520px;}
._19{width:87.779280px;}
._39{width:91.074240px;}
._41{width:93.473040px;}
._4f{width:96.205440px;}
._2b{width:98.544240px;}
._14{width:106.671600px;}
._30{width:111.743040px;}
._21{width:113.356560px;}
._3a{width:115.257600px;}
._4e{width:117.129600px;}
._1f{width:121.432320px;}
._44{width:126.571680px;}
._20{width:127.826640px;}
._22{width:129.969840px;}
._3b{width:132.121200px;}
._35{width:136.969920px;}
._4a{width:138.404160px;}
._24{width:149.220720px;}
._42{width:152.806320px;}
._3e{width:154.411680px;}
._15{width:157.228560px;}
._28{width:167.806080px;}
._52{width:177.188400px;}
._33{width:182.387520px;}
._38{width:183.522960px;}
._45{width:184.777920px;}
._34{width:193.024800px;}
._23{width:194.459040px;}
._47{width:198.881280px;}
._2c{width:209.339280px;}
._3d{width:211.602000px;}
._43{width:224.637840px;}
._54{width:244.956240px;}
._50{width:248.954880px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y92{bottom:3.420000px;}
.ya4{bottom:7.740000px;}
.ye0{bottom:7.914000px;}
.y7f{bottom:7.920000px;}
.y89{bottom:14.400000px;}
.y94{bottom:16.740000px;}
.y7d{bottom:16.785000px;}
.y91{bottom:21.054000px;}
.ya3{bottom:25.380000px;}
.yca{bottom:25.554000px;}
.y97{bottom:25.560000px;}
.y95{bottom:25.590000px;}
.y7e{bottom:25.605000px;}
.y87{bottom:32.034000px;}
.yaa{bottom:34.200000px;}
.yb8{bottom:34.380000px;}
.y90{bottom:38.514000px;}
.ya2{bottom:43.020000px;}
.yc9{bottom:43.194000px;}
.yb3{bottom:43.200000px;}
.y86{bottom:49.674000px;}
.ydb{bottom:51.660000px;}
.ya9{bottom:51.840000px;}
.y8f{bottom:56.154000px;}
.yd5{bottom:60.480000px;}
.yc8{bottom:60.654000px;}
.ya1{bottom:60.660000px;}
.y83{bottom:67.134000px;}
.yda{bottom:69.300000px;}
.ya8{bottom:69.480000px;}
.y2{bottom:73.296000px;}
.y8e{bottom:73.794000px;}
.y2a{bottom:74.196000px;}
.y81{bottom:75.954000px;}
.y9b{bottom:78.120000px;}
.yd4{bottom:78.150000px;}
.yc7{bottom:78.294000px;}
.ya0{bottom:78.300000px;}
.y82{bottom:84.774000px;}
.y99{bottom:86.940000px;}
.yc1{bottom:87.114000px;}
.yae{bottom:87.120000px;}
.y8d{bottom:91.254000px;}
.ybf{bottom:95.754000px;}
.y9a{bottom:95.760000px;}
.yd3{bottom:95.790000px;}
.yc6{bottom:95.934000px;}
.yb0{bottom:95.940000px;}
.y1{bottom:101.376000px;}
.y85{bottom:102.414000px;}
.ya7{bottom:104.580000px;}
.yc0{bottom:104.754000px;}
.yad{bottom:104.760000px;}
.y8c{bottom:108.894000px;}
.yc5{bottom:113.394000px;}
.y9f{bottom:113.400000px;}
.ybc{bottom:113.430000px;}
.yde{bottom:113.574000px;}
.y10e{bottom:119.016000px;}
.y84{bottom:119.874000px;}
.ya6{bottom:122.220000px;}
.yb6{bottom:122.250000px;}
.y58{bottom:124.776000px;}
.y8b{bottom:126.534000px;}
.y28{bottom:128.736000px;}
.ydc{bottom:130.860000px;}
.yc4{bottom:131.034000px;}
.y9e{bottom:131.040000px;}
.ybb{bottom:131.070000px;}
.y80{bottom:134.136000px;}
.y88{bottom:137.514000px;}
.ya5{bottom:139.680000px;}
.yac{bottom:139.860000px;}
.yb5{bottom:139.890000px;}
.ybe{bottom:140.976000px;}
.y57{bottom:142.416000px;}
.y8a{bottom:143.994000px;}
.y10d{bottom:145.656000px;}
.ydd{bottom:146.196000px;}
.y27{bottom:146.376000px;}
.y9d{bottom:148.500000px;}
.yd2{bottom:148.530000px;}
.yc3{bottom:148.674000px;}
.yaf{bottom:148.680000px;}
.yba{bottom:148.710000px;}
.ycd{bottom:157.500000px;}
.yb7{bottom:157.530000px;}
.y56{bottom:160.050000px;}
.y10c{bottom:163.290000px;}
.y26{bottom:164.010000px;}
.yc2{bottom:166.134000px;}
.y9c{bottom:166.140000px;}
.yb9{bottom:166.170000px;}
.ydf{bottom:166.359000px;}
.y55{bottom:177.510000px;}
.y10b{bottom:180.750000px;}
.yb2{bottom:183.780000px;}
.yd8{bottom:183.810000px;}
.ycb{bottom:183.819000px;}
.y54{bottom:195.150000px;}
.y25{bottom:199.470000px;}
.yd7{bottom:201.270000px;}
.ycf{bottom:201.420000px;}
.yb1{bottom:201.465000px;}
.y10a{bottom:207.390000px;}
.y53{bottom:212.790000px;}
.y24{bottom:217.110000px;}
.yd6{bottom:218.910000px;}
.yce{bottom:219.060000px;}
.y109{bottom:225.030000px;}
.y52{bottom:230.430000px;}
.y23{bottom:234.750000px;}
.y51{bottom:247.890000px;}
.y108{bottom:251.490000px;}
.y22{bottom:252.390000px;}
.y50{bottom:265.530000px;}
.y107{bottom:269.130000px;}
.y21{bottom:269.850000px;}
.y4f{bottom:283.170000px;}
.y20{bottom:287.490000px;}
.y106{bottom:295.770000px;}
.y7c{bottom:297.570000px;}
.y4e{bottom:300.630000px;}
.y105{bottom:313.455000px;}
.y1f{bottom:322.995000px;}
.y4d{bottom:327.315000px;}
.yd9{bottom:331.995000px;}
.y104{bottom:339.915000px;}
.y1e{bottom:340.635000px;}
.ybd{bottom:344.235000px;}
.y103{bottom:357.555000px;}
.y1d{bottom:358.275000px;}
.y4c{bottom:363.135000px;}
.y7b{bottom:364.035000px;}
.y1c{bottom:375.915000px;}
.y102{bottom:384.015000px;}
.y7a{bottom:399.495000px;}
.y101{bottom:401.655000px;}
.y1b{bottom:402.555000px;}
.y4b{bottom:411.375000px;}
.y79{bottom:417.135000px;}
.y100{bottom:428.295000px;}
.y4a{bottom:429.015000px;}
.y78{bottom:434.775000px;}
.yff{bottom:445.935000px;}
.y49{bottom:446.655000px;}
.y1a{bottom:450.975000px;}
.y77{bottom:452.415000px;}
.yfe{bottom:463.575000px;}
.y48{bottom:464.295000px;}
.y19{bottom:468.975000px;}
.y76{bottom:469.875000px;}
.yb4{bottom:477.075000px;}
.y47{bottom:481.935000px;}
.y75{bottom:487.515000px;}
.yfd{bottom:490.035000px;}
.y74{bottom:505.155000px;}
.y18{bottom:505.875000px;}
.yfc{bottom:507.675000px;}
.y46{bottom:508.395000px;}
.yd1{bottom:517.575000px;}
.y73{bottom:522.615000px;}
.y17{bottom:523.515000px;}
.yfb{bottom:534.135000px;}
.y72{bottom:540.255000px;}
.y16{bottom:541.155000px;}
.y45{bottom:544.035000px;}
.yfa{bottom:551.775000px;}
.y15{bottom:558.795000px;}
.y44{bottom:561.675000px;}
.y71{bottom:566.715000px;}
.y14{bottom:576.255000px;}
.yf9{bottom:578.415000px;}
.y13{bottom:593.925000px;}
.yf8{bottom:596.085000px;}
.y43{bottom:597.165000px;}
.y70{bottom:602.385000px;}
.y12{bottom:611.565000px;}
.y42{bottom:614.805000px;}
.y6f{bottom:620.025000px;}
.yf7{bottom:622.545000px;}
.y11{bottom:629.025000px;}
.y6e{bottom:637.665000px;}
.yf6{bottom:640.185000px;}
.y41{bottom:641.265000px;}
.y10{bottom:646.665000px;}
.y6d{bottom:655.305000px;}
.yab{bottom:662.685000px;}
.yf{bottom:664.305000px;}
.yf5{bottom:666.645000px;}
.y6c{bottom:672.765000px;}
.y40{bottom:676.905000px;}
.ye{bottom:681.765000px;}
.yf4{bottom:684.285000px;}
.y6b{bottom:690.405000px;}
.y3f{bottom:694.545000px;}
.yd{bottom:699.405000px;}
.yf3{bottom:701.925000px;}
.y3e{bottom:712.185000px;}
.y6a{bottom:716.865000px;}
.yc{bottom:717.045000px;}
.yf2{bottom:728.745000px;}
.y3d{bottom:729.645000px;}
.yb{bottom:734.685000px;}
.y3c{bottom:747.285000px;}
.y69{bottom:752.505000px;}
.yd0{bottom:755.925000px;}
.ya{bottom:761.325000px;}
.y3b{bottom:764.925000px;}
.y117{bottom:769.245000px;}
.y68{bottom:770.145000px;}
.yf1{bottom:777.165000px;}
.y67{bottom:787.785000px;}
.y3a{bottom:791.385000px;}
.y116{bottom:795.885000px;}
.yf0{bottom:803.985000px;}
.y66{bottom:805.245000px;}
.y9{bottom:809.745000px;}
.y115{bottom:813.525000px;}
.y65{bottom:822.885000px;}
.y39{bottom:827.205000px;}
.y114{bottom:839.985000px;}
.y64{bottom:840.525000px;}
.yef{bottom:841.245000px;}
.y8{bottom:845.565000px;}
.y113{bottom:857.625000px;}
.y63{bottom:858.165000px;}
.ycc{bottom:871.170000px;}
.y38{bottom:875.670000px;}
.y7{bottom:881.610000px;}
.y98{bottom:883.590000px;}
.y112{bottom:884.310000px;}
.yee{bottom:889.710000px;}
.y37{bottom:893.310000px;}
.y111{bottom:901.950000px;}
.yed{bottom:907.350000px;}
.y36{bottom:910.950000px;}
.y6{bottom:921.390000px;}
.yec{bottom:924.810000px;}
.y35{bottom:928.410000px;}
.y62{bottom:937.410000px;}
.y5{bottom:939.390000px;}
.yeb{bottom:942.450000px;}
.y34{bottom:946.050000px;}
.yea{bottom:960.090000px;}
.y33{bottom:963.690000px;}
.y4{bottom:971.610000px;}
.y61{bottom:973.050000px;}
.ye9{bottom:977.550000px;}
.y32{bottom:981.150000px;}
.y110{bottom:990.150000px;}
.y60{bottom:990.690000px;}
.ye8{bottom:995.190000px;}
.y10f{bottom:1007.790000px;}
.y5f{bottom:1008.150000px;}
.y3{bottom:1009.950000px;}
.ye7{bottom:1012.830000px;}
.y31{bottom:1016.790000px;}
.y5e{bottom:1025.790000px;}
.ye6{bottom:1030.470000px;}
.y30{bottom:1034.430000px;}
.y5d{bottom:1043.430000px;}
.ye5{bottom:1047.930000px;}
.y2f{bottom:1052.070000px;}
.y5c{bottom:1061.070000px;}
.ye4{bottom:1065.570000px;}
.y96{bottom:1069.170000px;}
.y2e{bottom:1069.530000px;}
.y5b{bottom:1078.530000px;}
.ye3{bottom:1083.210000px;}
.y2d{bottom:1087.170000px;}
.y5a{bottom:1096.170000px;}
.ye2{bottom:1100.670000px;}
.y93{bottom:1109.490000px;}
.y59{bottom:1113.810000px;}
.y2c{bottom:1122.630000px;}
.ye1{bottom:1127.490000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:29.717578px;}
.h6{height:35.477578px;}
.h3{height:39.468516px;}
.hf{height:39.600000px;}
.hc{height:44.316000px;}
.hd{height:50.597578px;}
.h7{height:51.998203px;}
.h8{height:56.084062px;}
.h5{height:57.636562px;}
.h9{height:60.960938px;}
.h19{height:61.423863px;}
.hb{height:62.211094px;}
.ha{height:68.956875px;}
.h4{height:73.298672px;}
.h16{height:114.516000px;}
.h13{height:132.120000px;}
.he{height:162.720000px;}
.h18{height:184.680000px;}
.h10{height:184.860000px;}
.h12{height:184.890000px;}
.h14{height:202.530000px;}
.h11{height:220.170000px;}
.h15{height:237.600000px;}
.h17{height:237.630000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:34.956000px;}
.w4{width:89.640000px;}
.w5{width:151.590000px;}
.w7{width:222.735000px;}
.w6{width:253.650000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.xa{left:9.180000px;}
.x9{left:13.320000px;}
.x1{left:68.040000px;}
.x5{left:104.436000px;}
.xb{left:111.275987px;}
.x6{left:194.970000px;}
.x2{left:202.709987px;}
.x7{left:347.295000px;}
.x8{left:601.845000px;}
.x3{left:791.969987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.329067pt;}
.lsa{letter-spacing:-0.290133pt;}
.ls17{letter-spacing:-0.228267pt;}
.lsb{letter-spacing:-0.084267pt;}
.ls16{letter-spacing:-0.046720pt;}
.lse{letter-spacing:-0.034667pt;}
.ls14{letter-spacing:-0.034560pt;}
.ls1c{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.009600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.011733pt;}
.ls18{letter-spacing:0.056533pt;}
.lsc{letter-spacing:0.070400pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.149760pt;}
.ls12{letter-spacing:0.188160pt;}
.ls19{letter-spacing:0.198400pt;}
.ls15{letter-spacing:0.253867pt;}
.ls2{letter-spacing:0.312320pt;}
.ls4{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.342933pt;}
.ls10{letter-spacing:0.592000pt;}
.ls13{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:12.800000pt;}
.ls1b{letter-spacing:42.192640pt;}
.ls1a{letter-spacing:72.272640pt;}
.wse{word-spacing:-13.296533pt;}
.ws9{word-spacing:-12.953600pt;}
.wsa{word-spacing:-12.278400pt;}
.wsf{word-spacing:-11.940267pt;}
.ws12{word-spacing:-11.884800pt;}
.ws5{word-spacing:-11.698133pt;}
.wsc{word-spacing:-11.697920pt;}
.ws6{word-spacing:-11.686400pt;}
.ws13{word-spacing:-11.654400pt;}
.wsd{word-spacing:-11.651840pt;}
.ws7{word-spacing:-11.651733pt;}
.ws10{word-spacing:-11.639680pt;}
.ws11{word-spacing:-11.458133pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws4{word-spacing:-8.082133pt;}
.wsb{word-spacing:0.000000pt;}
.ws8{word-spacing:2.268480pt;}
._c{margin-left:-2.822401pt;}
._12{margin-left:-1.923200pt;}
._0{margin-left:-1.030400pt;}
._1{width:1.016533pt;}
._2{width:2.299520pt;}
._5{width:3.773867pt;}
._3{width:5.517333pt;}
._4{width:6.798935pt;}
._7{width:8.013867pt;}
._6{width:9.030400pt;}
._8{width:10.073600pt;}
._9{width:12.961068pt;}
._a{width:14.653867pt;}
._b{width:15.571732pt;}
._e{width:16.930455pt;}
._1c{width:18.154559pt;}
._26{width:19.618989pt;}
._10{width:20.663680pt;}
._f{width:21.991680pt;}
._13{width:22.894720pt;}
._11{width:23.948800pt;}
._29{width:25.497600pt;}
._2a{width:26.613120pt;}
._1b{width:27.516160pt;}
._27{width:28.599680pt;}
._25{width:29.694080pt;}
._49{width:30.618880pt;}
._48{width:31.811627pt;}
._2f{width:33.253120pt;}
._1a{width:34.361387pt;}
._d{width:35.271680pt;}
._31{width:36.387200pt;}
._1e{width:37.502720pt;}
._17{width:39.149440pt;}
._2d{width:40.842027pt;}
._1d{width:42.496000pt;}
._51{width:43.558400pt;}
._56{width:44.878293pt;}
._55{width:46.369280pt;}
._36{width:48.604800pt;}
._2e{width:49.932800pt;}
._32{width:51.692800pt;}
._3f{width:52.787200pt;}
._3c{width:55.138560pt;}
._40{width:56.307200pt;}
._53{width:57.688320pt;}
._18{width:58.963200pt;}
._46{width:60.291200pt;}
._37{width:63.584640pt;}
._4b{width:65.125120pt;}
._4c{width:66.028160pt;}
._16{width:67.196800pt;}
._4d{width:75.802240pt;}
._19{width:78.026027pt;}
._39{width:80.954880pt;}
._41{width:83.087147pt;}
._4f{width:85.515947pt;}
._2b{width:87.594880pt;}
._14{width:94.819200pt;}
._30{width:99.327147pt;}
._21{width:100.761387pt;}
._3a{width:102.451200pt;}
._4e{width:104.115200pt;}
._1f{width:107.939840pt;}
._44{width:112.508160pt;}
._20{width:113.623680pt;}
._22{width:115.528747pt;}
._3b{width:117.441067pt;}
._35{width:121.751040pt;}
._4a{width:123.025920pt;}
._24{width:132.640640pt;}
._42{width:135.827840pt;}
._3e{width:137.254827pt;}
._15{width:139.758720pt;}
._28{width:149.160960pt;}
._52{width:157.500800pt;}
._33{width:162.122240pt;}
._38{width:163.131520pt;}
._45{width:164.247040pt;}
._34{width:171.577600pt;}
._23{width:172.852480pt;}
._47{width:176.783360pt;}
._2c{width:186.079360pt;}
._3d{width:188.090667pt;}
._43{width:199.678080pt;}
._54{width:217.738880pt;}
._50{width:221.293227pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:3.040000pt;}
.ya4{bottom:6.880000pt;}
.ye0{bottom:7.034667pt;}
.y7f{bottom:7.040000pt;}
.y89{bottom:12.800000pt;}
.y94{bottom:14.880000pt;}
.y7d{bottom:14.920000pt;}
.y91{bottom:18.714667pt;}
.ya3{bottom:22.560000pt;}
.yca{bottom:22.714667pt;}
.y97{bottom:22.720000pt;}
.y95{bottom:22.746667pt;}
.y7e{bottom:22.760000pt;}
.y87{bottom:28.474667pt;}
.yaa{bottom:30.400000pt;}
.yb8{bottom:30.560000pt;}
.y90{bottom:34.234667pt;}
.ya2{bottom:38.240000pt;}
.yc9{bottom:38.394667pt;}
.yb3{bottom:38.400000pt;}
.y86{bottom:44.154667pt;}
.ydb{bottom:45.920000pt;}
.ya9{bottom:46.080000pt;}
.y8f{bottom:49.914667pt;}
.yd5{bottom:53.760000pt;}
.yc8{bottom:53.914667pt;}
.ya1{bottom:53.920000pt;}
.y83{bottom:59.674667pt;}
.yda{bottom:61.600000pt;}
.ya8{bottom:61.760000pt;}
.y2{bottom:65.152000pt;}
.y8e{bottom:65.594667pt;}
.y2a{bottom:65.952000pt;}
.y81{bottom:67.514667pt;}
.y9b{bottom:69.440000pt;}
.yd4{bottom:69.466667pt;}
.yc7{bottom:69.594667pt;}
.ya0{bottom:69.600000pt;}
.y82{bottom:75.354667pt;}
.y99{bottom:77.280000pt;}
.yc1{bottom:77.434667pt;}
.yae{bottom:77.440000pt;}
.y8d{bottom:81.114667pt;}
.ybf{bottom:85.114667pt;}
.y9a{bottom:85.120000pt;}
.yd3{bottom:85.146667pt;}
.yc6{bottom:85.274667pt;}
.yb0{bottom:85.280000pt;}
.y1{bottom:90.112000pt;}
.y85{bottom:91.034667pt;}
.ya7{bottom:92.960000pt;}
.yc0{bottom:93.114667pt;}
.yad{bottom:93.120000pt;}
.y8c{bottom:96.794667pt;}
.yc5{bottom:100.794667pt;}
.y9f{bottom:100.800000pt;}
.ybc{bottom:100.826667pt;}
.yde{bottom:100.954667pt;}
.y10e{bottom:105.792000pt;}
.y84{bottom:106.554667pt;}
.ya6{bottom:108.640000pt;}
.yb6{bottom:108.666667pt;}
.y58{bottom:110.912000pt;}
.y8b{bottom:112.474667pt;}
.y28{bottom:114.432000pt;}
.ydc{bottom:116.320000pt;}
.yc4{bottom:116.474667pt;}
.y9e{bottom:116.480000pt;}
.ybb{bottom:116.506667pt;}
.y80{bottom:119.232000pt;}
.y88{bottom:122.234667pt;}
.ya5{bottom:124.160000pt;}
.yac{bottom:124.320000pt;}
.yb5{bottom:124.346667pt;}
.ybe{bottom:125.312000pt;}
.y57{bottom:126.592000pt;}
.y8a{bottom:127.994667pt;}
.y10d{bottom:129.472000pt;}
.ydd{bottom:129.952000pt;}
.y27{bottom:130.112000pt;}
.y9d{bottom:132.000000pt;}
.yd2{bottom:132.026667pt;}
.yc3{bottom:132.154667pt;}
.yaf{bottom:132.160000pt;}
.yba{bottom:132.186667pt;}
.ycd{bottom:140.000000pt;}
.yb7{bottom:140.026667pt;}
.y56{bottom:142.266667pt;}
.y10c{bottom:145.146667pt;}
.y26{bottom:145.786667pt;}
.yc2{bottom:147.674667pt;}
.y9c{bottom:147.680000pt;}
.yb9{bottom:147.706667pt;}
.ydf{bottom:147.874667pt;}
.y55{bottom:157.786667pt;}
.y10b{bottom:160.666667pt;}
.yb2{bottom:163.360000pt;}
.yd8{bottom:163.386667pt;}
.ycb{bottom:163.394667pt;}
.y54{bottom:173.466667pt;}
.y25{bottom:177.306667pt;}
.yd7{bottom:178.906667pt;}
.ycf{bottom:179.040000pt;}
.yb1{bottom:179.080000pt;}
.y10a{bottom:184.346667pt;}
.y53{bottom:189.146667pt;}
.y24{bottom:192.986667pt;}
.yd6{bottom:194.586667pt;}
.yce{bottom:194.720000pt;}
.y109{bottom:200.026667pt;}
.y52{bottom:204.826667pt;}
.y23{bottom:208.666667pt;}
.y51{bottom:220.346667pt;}
.y108{bottom:223.546667pt;}
.y22{bottom:224.346667pt;}
.y50{bottom:236.026667pt;}
.y107{bottom:239.226667pt;}
.y21{bottom:239.866667pt;}
.y4f{bottom:251.706667pt;}
.y20{bottom:255.546667pt;}
.y106{bottom:262.906667pt;}
.y7c{bottom:264.506667pt;}
.y4e{bottom:267.226667pt;}
.y105{bottom:278.626667pt;}
.y1f{bottom:287.106667pt;}
.y4d{bottom:290.946667pt;}
.yd9{bottom:295.106667pt;}
.y104{bottom:302.146667pt;}
.y1e{bottom:302.786667pt;}
.ybd{bottom:305.986667pt;}
.y103{bottom:317.826667pt;}
.y1d{bottom:318.466667pt;}
.y4c{bottom:322.786667pt;}
.y7b{bottom:323.586667pt;}
.y1c{bottom:334.146667pt;}
.y102{bottom:341.346667pt;}
.y7a{bottom:355.106667pt;}
.y101{bottom:357.026667pt;}
.y1b{bottom:357.826667pt;}
.y4b{bottom:365.666667pt;}
.y79{bottom:370.786667pt;}
.y100{bottom:380.706667pt;}
.y4a{bottom:381.346667pt;}
.y78{bottom:386.466667pt;}
.yff{bottom:396.386667pt;}
.y49{bottom:397.026667pt;}
.y1a{bottom:400.866667pt;}
.y77{bottom:402.146667pt;}
.yfe{bottom:412.066667pt;}
.y48{bottom:412.706667pt;}
.y19{bottom:416.866667pt;}
.y76{bottom:417.666667pt;}
.yb4{bottom:424.066667pt;}
.y47{bottom:428.386667pt;}
.y75{bottom:433.346667pt;}
.yfd{bottom:435.586667pt;}
.y74{bottom:449.026667pt;}
.y18{bottom:449.666667pt;}
.yfc{bottom:451.266667pt;}
.y46{bottom:451.906667pt;}
.yd1{bottom:460.066667pt;}
.y73{bottom:464.546667pt;}
.y17{bottom:465.346667pt;}
.yfb{bottom:474.786667pt;}
.y72{bottom:480.226667pt;}
.y16{bottom:481.026667pt;}
.y45{bottom:483.586667pt;}
.yfa{bottom:490.466667pt;}
.y15{bottom:496.706667pt;}
.y44{bottom:499.266667pt;}
.y71{bottom:503.746667pt;}
.y14{bottom:512.226667pt;}
.yf9{bottom:514.146667pt;}
.y13{bottom:527.933333pt;}
.yf8{bottom:529.853333pt;}
.y43{bottom:530.813333pt;}
.y70{bottom:535.453333pt;}
.y12{bottom:543.613333pt;}
.y42{bottom:546.493333pt;}
.y6f{bottom:551.133333pt;}
.yf7{bottom:553.373333pt;}
.y11{bottom:559.133333pt;}
.y6e{bottom:566.813333pt;}
.yf6{bottom:569.053333pt;}
.y41{bottom:570.013333pt;}
.y10{bottom:574.813333pt;}
.y6d{bottom:582.493333pt;}
.yab{bottom:589.053333pt;}
.yf{bottom:590.493333pt;}
.yf5{bottom:592.573333pt;}
.y6c{bottom:598.013333pt;}
.y40{bottom:601.693333pt;}
.ye{bottom:606.013333pt;}
.yf4{bottom:608.253333pt;}
.y6b{bottom:613.693333pt;}
.y3f{bottom:617.373333pt;}
.yd{bottom:621.693333pt;}
.yf3{bottom:623.933333pt;}
.y3e{bottom:633.053333pt;}
.y6a{bottom:637.213333pt;}
.yc{bottom:637.373333pt;}
.yf2{bottom:647.773333pt;}
.y3d{bottom:648.573333pt;}
.yb{bottom:653.053333pt;}
.y3c{bottom:664.253333pt;}
.y69{bottom:668.893333pt;}
.yd0{bottom:671.933333pt;}
.ya{bottom:676.733333pt;}
.y3b{bottom:679.933333pt;}
.y117{bottom:683.773333pt;}
.y68{bottom:684.573333pt;}
.yf1{bottom:690.813333pt;}
.y67{bottom:700.253333pt;}
.y3a{bottom:703.453333pt;}
.y116{bottom:707.453333pt;}
.yf0{bottom:714.653333pt;}
.y66{bottom:715.773333pt;}
.y9{bottom:719.773333pt;}
.y115{bottom:723.133333pt;}
.y65{bottom:731.453333pt;}
.y39{bottom:735.293333pt;}
.y114{bottom:746.653333pt;}
.y64{bottom:747.133333pt;}
.yef{bottom:747.773333pt;}
.y8{bottom:751.613333pt;}
.y113{bottom:762.333333pt;}
.y63{bottom:762.813333pt;}
.ycc{bottom:774.373333pt;}
.y38{bottom:778.373333pt;}
.y7{bottom:783.653333pt;}
.y98{bottom:785.413333pt;}
.y112{bottom:786.053333pt;}
.yee{bottom:790.853333pt;}
.y37{bottom:794.053333pt;}
.y111{bottom:801.733333pt;}
.yed{bottom:806.533333pt;}
.y36{bottom:809.733333pt;}
.y6{bottom:819.013333pt;}
.yec{bottom:822.053333pt;}
.y35{bottom:825.253333pt;}
.y62{bottom:833.253333pt;}
.y5{bottom:835.013333pt;}
.yeb{bottom:837.733333pt;}
.y34{bottom:840.933333pt;}
.yea{bottom:853.413333pt;}
.y33{bottom:856.613333pt;}
.y4{bottom:863.653333pt;}
.y61{bottom:864.933333pt;}
.ye9{bottom:868.933333pt;}
.y32{bottom:872.133333pt;}
.y110{bottom:880.133333pt;}
.y60{bottom:880.613333pt;}
.ye8{bottom:884.613333pt;}
.y10f{bottom:895.813333pt;}
.y5f{bottom:896.133333pt;}
.y3{bottom:897.733333pt;}
.ye7{bottom:900.293333pt;}
.y31{bottom:903.813333pt;}
.y5e{bottom:911.813333pt;}
.ye6{bottom:915.973333pt;}
.y30{bottom:919.493333pt;}
.y5d{bottom:927.493333pt;}
.ye5{bottom:931.493333pt;}
.y2f{bottom:935.173333pt;}
.y5c{bottom:943.173333pt;}
.ye4{bottom:947.173333pt;}
.y96{bottom:950.373333pt;}
.y2e{bottom:950.693333pt;}
.y5b{bottom:958.693333pt;}
.ye3{bottom:962.853333pt;}
.y2d{bottom:966.373333pt;}
.y5a{bottom:974.373333pt;}
.ye2{bottom:978.373333pt;}
.y93{bottom:986.213333pt;}
.y59{bottom:990.053333pt;}
.y2c{bottom:997.893333pt;}
.ye1{bottom:1002.213333pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.415625pt;}
.h6{height:31.535625pt;}
.h3{height:35.083125pt;}
.hf{height:35.200000pt;}
.hc{height:39.392000pt;}
.hd{height:44.975625pt;}
.h7{height:46.220625pt;}
.h8{height:49.852500pt;}
.h5{height:51.232500pt;}
.h9{height:54.187500pt;}
.h19{height:54.598989pt;}
.hb{height:55.298750pt;}
.ha{height:61.295000pt;}
.h4{height:65.154375pt;}
.h16{height:101.792000pt;}
.h13{height:117.440000pt;}
.he{height:144.640000pt;}
.h18{height:164.160000pt;}
.h10{height:164.320000pt;}
.h12{height:164.346667pt;}
.h14{height:180.026667pt;}
.h11{height:195.706667pt;}
.h15{height:211.200000pt;}
.h17{height:211.226667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:31.072000pt;}
.w4{width:79.680000pt;}
.w5{width:134.746667pt;}
.w7{width:197.986667pt;}
.w6{width:225.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.xa{left:8.160000pt;}
.x9{left:11.840000pt;}
.x1{left:60.480000pt;}
.x5{left:92.832000pt;}
.xb{left:98.911988pt;}
.x6{left:173.306667pt;}
.x2{left:180.186655pt;}
.x7{left:308.706667pt;}
.x8{left:534.973333pt;}
.x3{left:703.973322pt;}
}




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