
    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_e82b9d7c40cde9cacc3a1fd0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_5a379677bc90db43cc792115.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1b34be97ceb059dc20ba1807.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4a20895da896911c5707a596.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_44e0850300e084472185a436.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d4391ddb27a086da58799cde.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_0ec47d3bd86ca68bb48367fd.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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_930e8664397d9c7bd6ef93ce.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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e04a9c4c3d82cde3023206d8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.899902;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_e444a1cae43c877ce5dd63ba.woff2')format("woff");}.fff{font-family:fff;line-height:0.853027;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);}
.m4{transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.372350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372350,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-15.120000px;}
.v1{vertical-align:-9.480000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.480000px;}
.ls15{letter-spacing:-2.916000px;}
.ls1e{letter-spacing:-1.620000px;}
.ls16{letter-spacing:-1.476000px;}
.lse{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.900000px;}
.ls18{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.341400px;}
.ls1d{letter-spacing:-0.247200px;}
.ls6{letter-spacing:-0.225600px;}
.lsc{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.037440px;}
.ls29{letter-spacing:-0.028080px;}
.ls19{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.008640px;}
.ls1a{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.034560px;}
.ls8{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.124200px;}
.ls27{letter-spacing:0.148200px;}
.ls24{letter-spacing:0.151920px;}
.ls14{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.217440px;}
.ls7{letter-spacing:0.252720px;}
.ls1b{letter-spacing:0.256320px;}
.ls2{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.354720px;}
.lsb{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.369360px;}
.ls2a{letter-spacing:0.378600px;}
.ls22{letter-spacing:0.378720px;}
.ls25{letter-spacing:0.489360px;}
.ls4{letter-spacing:1.260000px;}
.ls12{letter-spacing:1.458000px;}
.ls11{letter-spacing:1.656000px;}
.ls10{letter-spacing:1.800000px;}
.ls1c{letter-spacing:12.780000px;}
.ls1f{letter-spacing:107.100000px;}
.ls26{letter-spacing:169.517280px;}
.ls9{letter-spacing:171.180000px;}
.ls20{letter-spacing:211.277280px;}
.ls17{letter-spacing:270.317280px;}
.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;}
}
.wsc{word-spacing:-84.240000px;}
.ws10{word-spacing:-83.992800px;}
.ws14{word-spacing:-21.438600px;}
.ws6{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.312720px;}
.ws11{word-spacing:-21.208200px;}
.ws3{word-spacing:-21.060000px;}
.ws13{word-spacing:-21.031920px;}
.ws8{word-spacing:-21.022560px;}
.ws12{word-spacing:-20.718600px;}
.wsd{word-spacing:-20.700000px;}
.ws7{word-spacing:-19.980000px;}
.wsa{word-spacing:-19.726560px;}
.wsb{word-spacing:-19.584000px;}
.ws0{word-spacing:-19.500960px;}
.ws2{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.832000px;}
.ws9{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
.wsf{word-spacing:67.944000px;}
.wse{word-spacing:81.732000px;}
._34{margin-left:-9.013680px;}
._37{margin-left:-6.434160px;}
._2c{margin-left:-4.801680px;}
._7{margin-left:-3.285360px;}
._2{margin-left:-1.432080px;}
._3{width:1.149120px;}
._4{width:2.866080px;}
._23{width:4.127760px;}
._10{width:5.138640px;}
._11{width:6.149520px;}
._1e{width:7.918560px;}
._1d{width:8.929440px;}
._17{width:10.361520px;}
._16{width:11.625120px;}
._2b{width:12.694800px;}
._43{width:13.780800px;}
._31{width:14.910480px;}
._1f{width:16.089840px;}
._22{width:17.184960px;}
._21{width:18.364320px;}
._20{width:19.368960px;}
._30{width:22.492080px;}
._29{width:23.755680px;}
._14{width:25.440480px;}
._15{width:26.619840px;}
._f{width:27.883440px;}
._a{width:29.736720px;}
._1b{width:31.505760px;}
._1c{width:33.344160px;}
._12{width:34.454160px;}
._13{width:35.465040px;}
._3c{width:36.914880px;}
._2e{width:39.017280px;}
._2f{width:40.350960px;}
._41{width:42.372720px;}
._25{width:43.720560px;}
._3b{width:45.881040px;}
._18{width:47.427120px;}
._2d{width:49.364640px;}
._19{width:50.628240px;}
._1a{width:51.801600px;}
._42{width:53.444400px;}
._27{width:54.587520px;}
._26{width:55.682640px;}
._d{width:61.242480px;}
._e{width:62.396880px;}
._24{width:63.938160px;}
._c{width:65.791440px;}
._b{width:67.055040px;}
._40{width:68.115840px;}
._35{width:69.448080px;}
._36{width:70.593120px;}
._5{width:72.724080px;}
._6{width:73.918080px;}
._32{width:79.691040px;}
._33{width:80.984880px;}
._8{width:84.071520px;}
._9{width:85.082400px;}
._3d{width:95.586000px;}
._3e{width:114.304080px;}
._3f{width:115.601520px;}
._39{width:122.316480px;}
._3a{width:123.634320px;}
._28{width:161.820000px;}
._2a{width:170.640000px;}
._38{width:184.090800px;}
._0{width:292.222560px;}
._1{width:1213.426560px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,128,0);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y94{bottom:5.730000px;}
.y40{bottom:8.100000px;}
.y33{bottom:8.280000px;}
.y6{bottom:10.440000px;}
.y39{bottom:16.200000px;}
.y8d{bottom:23.295000px;}
.y3d{bottom:25.020000px;}
.y3b{bottom:25.740000px;}
.y35{bottom:27.000000px;}
.y3a{bottom:28.080000px;}
.y5{bottom:31.140000px;}
.y44{bottom:33.480000px;}
.y41{bottom:33.660000px;}
.y3f{bottom:35.820000px;}
.y32{bottom:36.000000px;}
.y37{bottom:36.540000px;}
.y36{bottom:38.910000px;}
.y8e{bottom:48.210000px;}
.y48{bottom:54.945000px;}
.y53{bottom:60.480000px;}
.y43{bottom:61.200000px;}
.y46{bottom:61.920000px;}
.y50{bottom:63.720000px;}
.y45{bottom:64.260000px;}
.y4a{bottom:64.485000px;}
.y38{bottom:66.240000px;}
.y31{bottom:66.780000px;}
.y49{bottom:66.825000px;}
.y8f{bottom:73.110000px;}
.y4d{bottom:76.500000px;}
.yb1{bottom:82.800000px;}
.y86{bottom:83.160000px;}
.y2c{bottom:87.480000px;}
.y52{bottom:88.200000px;}
.y4f{bottom:91.440000px;}
.y98{bottom:92.700000px;}
.y90{bottom:98.025000px;}
.y4c{bottom:104.220000px;}
.yb0{bottom:110.520000px;}
.y85{bottom:110.880000px;}
.y69{bottom:112.500000px;}
.y34{bottom:114.660000px;}
.y2b{bottom:115.380000px;}
.y51{bottom:117.000000px;}
.y4e{bottom:119.340000px;}
.y97{bottom:120.420000px;}
.y91{bottom:122.970000px;}
.y8b{bottom:129.750000px;}
.yaf{bottom:138.240000px;}
.y89{bottom:138.450000px;}
.y84{bottom:138.600000px;}
.y68{bottom:140.400000px;}
.y2a{bottom:143.100000px;}
.y96{bottom:143.640000px;}
.y92{bottom:147.885000px;}
.y8a{bottom:153.390000px;}
.y88{bottom:157.140000px;}
.yae{bottom:165.990000px;}
.y83{bottom:166.530000px;}
.y67{bottom:168.150000px;}
.y29{bottom:170.850000px;}
.y8c{bottom:171.975000px;}
.y93{bottom:172.800000px;}
.y30{bottom:174.090000px;}
.yad{bottom:193.890000px;}
.y82{bottom:194.250000px;}
.y66{bottom:195.870000px;}
.y28{bottom:198.570000px;}
.yac{bottom:221.610000px;}
.y81{bottom:221.970000px;}
.y65{bottom:223.770000px;}
.y27{bottom:226.470000px;}
.y64{bottom:244.110000px;}
.yab{bottom:249.330000px;}
.y80{bottom:249.870000px;}
.y26{bottom:254.190000px;}
.y2f{bottom:269.490000px;}
.y63{bottom:272.550000px;}
.yaa{bottom:277.050000px;}
.y7f{bottom:277.410000px;}
.y25{bottom:281.910000px;}
.y2e{bottom:297.210000px;}
.ya9{bottom:304.950000px;}
.y7e{bottom:305.850000px;}
.y62{bottom:309.090000px;}
.y24{bottom:309.810000px;}
.y2d{bottom:324.930000px;}
.ya8{bottom:332.670000px;}
.y7d{bottom:333.570000px;}
.y61{bottom:337.170000px;}
.y23{bottom:337.530000px;}
.ya7{bottom:360.390000px;}
.y7c{bottom:363.810000px;}
.y60{bottom:365.070000px;}
.y22{bottom:365.250000px;}
.ya6{bottom:388.290000px;}
.y7b{bottom:391.350000px;}
.y5f{bottom:392.790000px;}
.y21{bottom:392.970000px;}
.ya5{bottom:416.055000px;}
.y5e{bottom:420.555000px;}
.y20{bottom:420.915000px;}
.y7a{bottom:429.555000px;}
.ya4{bottom:443.775000px;}
.y5d{bottom:448.455000px;}
.y1f{bottom:448.635000px;}
.y79{bottom:459.435000px;}
.ya3{bottom:471.495000px;}
.y5c{bottom:476.175000px;}
.y1e{bottom:476.355000px;}
.y78{bottom:487.155000px;}
.ya2{bottom:499.395000px;}
.y5b{bottom:503.895000px;}
.y1d{bottom:504.255000px;}
.y77{bottom:520.095000px;}
.ya1{bottom:527.115000px;}
.y5a{bottom:531.615000px;}
.y1c{bottom:531.975000px;}
.y76{bottom:549.435000px;}
.ya0{bottom:554.835000px;}
.y59{bottom:559.515000px;}
.y1b{bottom:559.695000px;}
.y75{bottom:577.335000px;}
.y9f{bottom:582.735000px;}
.y58{bottom:587.235000px;}
.y1a{bottom:587.415000px;}
.y74{bottom:605.055000px;}
.y9e{bottom:610.455000px;}
.y57{bottom:614.955000px;}
.y19{bottom:615.315000px;}
.y73{bottom:632.775000px;}
.y9d{bottom:638.175000px;}
.y56{bottom:642.675000px;}
.y18{bottom:643.035000px;}
.y72{bottom:660.705000px;}
.y9c{bottom:665.925000px;}
.y55{bottom:670.605000px;}
.y17{bottom:670.785000px;}
.y71{bottom:688.425000px;}
.y9b{bottom:697.605000px;}
.y54{bottom:698.325000px;}
.y16{bottom:698.505000px;}
.y70{bottom:711.645000px;}
.y87{bottom:713.700000px;}
.y4b{bottom:718.665000px;}
.y9a{bottom:725.865000px;}
.y15{bottom:726.405000px;}
.y99{bottom:753.765000px;}
.y14{bottom:754.125000px;}
.y13{bottom:781.845000px;}
.y12{bottom:809.745000px;}
.y11{bottom:837.465000px;}
.y47{bottom:858.345000px;}
.y10{bottom:865.185000px;}
.yf{bottom:892.905000px;}
.y6f{bottom:908.790000px;}
.ye{bottom:920.850000px;}
.y6e{bottom:936.690000px;}
.y42{bottom:945.510000px;}
.yd{bottom:948.570000px;}
.y6d{bottom:964.410000px;}
.yc{bottom:976.290000px;}
.y6c{bottom:992.130000px;}
.yb{bottom:1004.190000px;}
.y6b{bottom:1020.030000px;}
.y3e{bottom:1030.110000px;}
.ya{bottom:1031.910000px;}
.y6a{bottom:1047.570000px;}
.y9{bottom:1059.630000px;}
.y3c{bottom:1086.450000px;}
.y8{bottom:1087.350000px;}
.y95{bottom:1115.070000px;}
.y7{bottom:1115.250000px;}
.y4{bottom:1139.370000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1183.320000px;}
.y1{bottom:1210.680000px;}
.h14{height:27.720000px;}
.h18{height:40.948242px;}
.he{height:47.592773px;}
.hf{height:47.700000px;}
.h7{height:49.150080px;}
.h5{height:50.229844px;}
.h10{height:55.620000px;}
.hd{height:58.716000px;}
.hc{height:59.436914px;}
.h4{height:67.169883px;}
.ha{height:74.244727px;}
.h2{height:76.355508px;}
.h15{height:82.635820px;}
.h9{height:82.676953px;}
.h11{height:83.880000px;}
.h8{height:84.898125px;}
.hb{height:86.400000px;}
.h12{height:86.436000px;}
.h16{height:86.585445px;}
.h6{height:95.874961px;}
.h3{height:105.060586px;}
.h13{height:138.960000px;}
.h17{height:187.020000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:29.880000px;}
.wb{width:84.276000px;}
.wc{width:84.420000px;}
.we{width:89.100000px;}
.w8{width:92.880000px;}
.wa{width:95.040000px;}
.w9{width:105.516000px;}
.wd{width:107.676000px;}
.w6{width:137.520000px;}
.w5{width:169.410000px;}
.w7{width:180.210000px;}
.w4{width:191.550000px;}
.wf{width:444.600000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x46{left:2.445000px;}
.x12{left:7.380000px;}
.x2a{left:8.460000px;}
.x14{left:10.980000px;}
.x2e{left:12.825000px;}
.x10{left:16.560000px;}
.x15{left:19.080000px;}
.x24{left:21.600000px;}
.x32{left:22.860000px;}
.x3c{left:23.940000px;}
.x36{left:27.000000px;}
.x25{left:29.205000px;}
.x34{left:32.220000px;}
.x3a{left:33.300000px;}
.x3d{left:34.740000px;}
.x3e{left:36.000000px;}
.x29{left:37.665000px;}
.x1a{left:39.645000px;}
.x16{left:40.725000px;}
.x5{left:42.479987px;}
.xf{left:46.980000px;}
.x26{left:57.285000px;}
.x1b{left:59.265000px;}
.x27{left:61.965000px;}
.x1c{left:67.185000px;}
.x2f{left:69.345000px;}
.x21{left:73.800000px;}
.x17{left:76.680000px;}
.x20{left:77.940000px;}
.x13{left:79.020000px;}
.x18{left:83.880000px;}
.x4{left:84.995987px;}
.x42{left:86.505000px;}
.x22{left:90.000000px;}
.x19{left:91.800000px;}
.x1d{left:92.925000px;}
.x23{left:94.680000px;}
.x2b{left:99.180000px;}
.x6{left:101.195987px;}
.x1{left:106.415987px;}
.x31{left:112.716000px;}
.xc{left:116.136000px;}
.x2c{left:117.720000px;}
.x2d{left:128.160000px;}
.x43{left:130.890000px;}
.x1e{left:135.225000px;}
.x1f{left:139.725000px;}
.x28{left:149.985000px;}
.x9{left:164.369987px;}
.x44{left:175.245000px;}
.x52{left:180.749987px;}
.x53{left:202.169987px;}
.x33{left:206.310000px;}
.x45{left:219.600000px;}
.x41{left:223.560000px;}
.x7{left:281.954987px;}
.x54{left:302.654987px;}
.xd{left:308.415000px;}
.x35{left:312.555000px;}
.x55{left:324.074987px;}
.xa{left:326.234987px;}
.x49{left:332.534987px;}
.x4a{left:342.974987px;}
.x56{left:352.694987px;}
.x57{left:374.114987px;}
.x4b{left:385.094987px;}
.x40{left:392.114987px;}
.x4c{left:395.534987px;}
.x48{left:405.614987px;}
.x37{left:408.315000px;}
.x58{left:442.874987px;}
.x8{left:446.504987px;}
.x4d{left:456.404987px;}
.x59{left:463.964987px;}
.x4e{left:466.664987px;}
.xe{left:478.545000px;}
.x38{left:493.305000px;}
.x2{left:521.564987px;}
.x5a{left:549.644987px;}
.x5b{left:570.884987px;}
.x39{left:578.445000px;}
.x4f{left:583.484987px;}
.x50{left:593.744987px;}
.x11{left:616.785000px;}
.x3{left:641.669987px;}
.x3f{left:669.209987px;}
.x3b{left:686.850000px;}
.x47{left:707.549987px;}
.x30{left:734.549987px;}
.xb{left:735.629987px;}
.x51{left:807.809987px;}
@media print{
.v3{vertical-align:-13.440000pt;}
.v1{vertical-align:-8.426667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.426667pt;}
.ls15{letter-spacing:-2.592000pt;}
.ls1e{letter-spacing:-1.440000pt;}
.ls16{letter-spacing:-1.312000pt;}
.lse{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.303467pt;}
.ls1d{letter-spacing:-0.219733pt;}
.ls6{letter-spacing:-0.200533pt;}
.lsc{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.033280pt;}
.ls29{letter-spacing:-0.024960pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.007680pt;}
.ls1a{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.030720pt;}
.ls8{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.110400pt;}
.ls27{letter-spacing:0.131733pt;}
.ls24{letter-spacing:0.135040pt;}
.ls14{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.193280pt;}
.ls7{letter-spacing:0.224640pt;}
.ls1b{letter-spacing:0.227840pt;}
.ls2{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.315307pt;}
.lsb{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.328320pt;}
.ls2a{letter-spacing:0.336533pt;}
.ls22{letter-spacing:0.336640pt;}
.ls25{letter-spacing:0.434987pt;}
.ls4{letter-spacing:1.120000pt;}
.ls12{letter-spacing:1.296000pt;}
.ls11{letter-spacing:1.472000pt;}
.ls10{letter-spacing:1.600000pt;}
.ls1c{letter-spacing:11.360000pt;}
.ls1f{letter-spacing:95.200000pt;}
.ls26{letter-spacing:150.682027pt;}
.ls9{letter-spacing:152.160000pt;}
.ls20{letter-spacing:187.802027pt;}
.ls17{letter-spacing:240.282027pt;}
.wsc{word-spacing:-74.880000pt;}
.ws10{word-spacing:-74.660267pt;}
.ws14{word-spacing:-19.056533pt;}
.ws6{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.944640pt;}
.ws11{word-spacing:-18.851733pt;}
.ws3{word-spacing:-18.720000pt;}
.ws13{word-spacing:-18.695040pt;}
.ws8{word-spacing:-18.686720pt;}
.ws12{word-spacing:-18.416533pt;}
.wsd{word-spacing:-18.400000pt;}
.ws7{word-spacing:-17.760000pt;}
.wsa{word-spacing:-17.534720pt;}
.wsb{word-spacing:-17.408000pt;}
.ws0{word-spacing:-17.334187pt;}
.ws2{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.184000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
.wsf{word-spacing:60.394667pt;}
.wse{word-spacing:72.650667pt;}
._34{margin-left:-8.012160pt;}
._37{margin-left:-5.719253pt;}
._2c{margin-left:-4.268160pt;}
._7{margin-left:-2.920320pt;}
._2{margin-left:-1.272960pt;}
._3{width:1.021440pt;}
._4{width:2.547627pt;}
._23{width:3.669120pt;}
._10{width:4.567680pt;}
._11{width:5.466240pt;}
._1e{width:7.038720pt;}
._1d{width:7.937280pt;}
._17{width:9.210240pt;}
._16{width:10.333440pt;}
._2b{width:11.284267pt;}
._43{width:12.249600pt;}
._31{width:13.253760pt;}
._1f{width:14.302080pt;}
._22{width:15.275520pt;}
._21{width:16.323840pt;}
._20{width:17.216853pt;}
._30{width:19.992960pt;}
._29{width:21.116160pt;}
._14{width:22.613760pt;}
._15{width:23.662080pt;}
._f{width:24.785280pt;}
._a{width:26.432640pt;}
._1b{width:28.005120pt;}
._1c{width:29.639253pt;}
._12{width:30.625920pt;}
._13{width:31.524480pt;}
._3c{width:32.813227pt;}
._2e{width:34.682027pt;}
._2f{width:35.867520pt;}
._41{width:37.664640pt;}
._25{width:38.862720pt;}
._3b{width:40.783147pt;}
._18{width:42.157440pt;}
._2d{width:43.879680pt;}
._19{width:45.002880pt;}
._1a{width:46.045867pt;}
._42{width:47.506133pt;}
._27{width:48.522240pt;}
._26{width:49.495680pt;}
._d{width:54.437760pt;}
._e{width:55.463893pt;}
._24{width:56.833920pt;}
._c{width:58.481280pt;}
._b{width:59.604480pt;}
._40{width:60.547413pt;}
._35{width:61.731627pt;}
._36{width:62.749440pt;}
._5{width:64.643627pt;}
._6{width:65.704960pt;}
._32{width:70.836480pt;}
._33{width:71.986560pt;}
._8{width:74.730240pt;}
._9{width:75.628800pt;}
._3d{width:84.965333pt;}
._3e{width:101.603627pt;}
._3f{width:102.756907pt;}
._39{width:108.725760pt;}
._3a{width:109.897173pt;}
._28{width:143.840000pt;}
._2a{width:151.680000pt;}
._38{width:163.636267pt;}
._0{width:259.753387pt;}
._1{width:1078.601387pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:5.093333pt;}
.y40{bottom:7.200000pt;}
.y33{bottom:7.360000pt;}
.y6{bottom:9.280000pt;}
.y39{bottom:14.400000pt;}
.y8d{bottom:20.706667pt;}
.y3d{bottom:22.240000pt;}
.y3b{bottom:22.880000pt;}
.y35{bottom:24.000000pt;}
.y3a{bottom:24.960000pt;}
.y5{bottom:27.680000pt;}
.y44{bottom:29.760000pt;}
.y41{bottom:29.920000pt;}
.y3f{bottom:31.840000pt;}
.y32{bottom:32.000000pt;}
.y37{bottom:32.480000pt;}
.y36{bottom:34.586667pt;}
.y8e{bottom:42.853333pt;}
.y48{bottom:48.840000pt;}
.y53{bottom:53.760000pt;}
.y43{bottom:54.400000pt;}
.y46{bottom:55.040000pt;}
.y50{bottom:56.640000pt;}
.y45{bottom:57.120000pt;}
.y4a{bottom:57.320000pt;}
.y38{bottom:58.880000pt;}
.y31{bottom:59.360000pt;}
.y49{bottom:59.400000pt;}
.y8f{bottom:64.986667pt;}
.y4d{bottom:68.000000pt;}
.yb1{bottom:73.600000pt;}
.y86{bottom:73.920000pt;}
.y2c{bottom:77.760000pt;}
.y52{bottom:78.400000pt;}
.y4f{bottom:81.280000pt;}
.y98{bottom:82.400000pt;}
.y90{bottom:87.133333pt;}
.y4c{bottom:92.640000pt;}
.yb0{bottom:98.240000pt;}
.y85{bottom:98.560000pt;}
.y69{bottom:100.000000pt;}
.y34{bottom:101.920000pt;}
.y2b{bottom:102.560000pt;}
.y51{bottom:104.000000pt;}
.y4e{bottom:106.080000pt;}
.y97{bottom:107.040000pt;}
.y91{bottom:109.306667pt;}
.y8b{bottom:115.333333pt;}
.yaf{bottom:122.880000pt;}
.y89{bottom:123.066667pt;}
.y84{bottom:123.200000pt;}
.y68{bottom:124.800000pt;}
.y2a{bottom:127.200000pt;}
.y96{bottom:127.680000pt;}
.y92{bottom:131.453333pt;}
.y8a{bottom:136.346667pt;}
.y88{bottom:139.680000pt;}
.yae{bottom:147.546667pt;}
.y83{bottom:148.026667pt;}
.y67{bottom:149.466667pt;}
.y29{bottom:151.866667pt;}
.y8c{bottom:152.866667pt;}
.y93{bottom:153.600000pt;}
.y30{bottom:154.746667pt;}
.yad{bottom:172.346667pt;}
.y82{bottom:172.666667pt;}
.y66{bottom:174.106667pt;}
.y28{bottom:176.506667pt;}
.yac{bottom:196.986667pt;}
.y81{bottom:197.306667pt;}
.y65{bottom:198.906667pt;}
.y27{bottom:201.306667pt;}
.y64{bottom:216.986667pt;}
.yab{bottom:221.626667pt;}
.y80{bottom:222.106667pt;}
.y26{bottom:225.946667pt;}
.y2f{bottom:239.546667pt;}
.y63{bottom:242.266667pt;}
.yaa{bottom:246.266667pt;}
.y7f{bottom:246.586667pt;}
.y25{bottom:250.586667pt;}
.y2e{bottom:264.186667pt;}
.ya9{bottom:271.066667pt;}
.y7e{bottom:271.866667pt;}
.y62{bottom:274.746667pt;}
.y24{bottom:275.386667pt;}
.y2d{bottom:288.826667pt;}
.ya8{bottom:295.706667pt;}
.y7d{bottom:296.506667pt;}
.y61{bottom:299.706667pt;}
.y23{bottom:300.026667pt;}
.ya7{bottom:320.346667pt;}
.y7c{bottom:323.386667pt;}
.y60{bottom:324.506667pt;}
.y22{bottom:324.666667pt;}
.ya6{bottom:345.146667pt;}
.y7b{bottom:347.866667pt;}
.y5f{bottom:349.146667pt;}
.y21{bottom:349.306667pt;}
.ya5{bottom:369.826667pt;}
.y5e{bottom:373.826667pt;}
.y20{bottom:374.146667pt;}
.y7a{bottom:381.826667pt;}
.ya4{bottom:394.466667pt;}
.y5d{bottom:398.626667pt;}
.y1f{bottom:398.786667pt;}
.y79{bottom:408.386667pt;}
.ya3{bottom:419.106667pt;}
.y5c{bottom:423.266667pt;}
.y1e{bottom:423.426667pt;}
.y78{bottom:433.026667pt;}
.ya2{bottom:443.906667pt;}
.y5b{bottom:447.906667pt;}
.y1d{bottom:448.226667pt;}
.y77{bottom:462.306667pt;}
.ya1{bottom:468.546667pt;}
.y5a{bottom:472.546667pt;}
.y1c{bottom:472.866667pt;}
.y76{bottom:488.386667pt;}
.ya0{bottom:493.186667pt;}
.y59{bottom:497.346667pt;}
.y1b{bottom:497.506667pt;}
.y75{bottom:513.186667pt;}
.y9f{bottom:517.986667pt;}
.y58{bottom:521.986667pt;}
.y1a{bottom:522.146667pt;}
.y74{bottom:537.826667pt;}
.y9e{bottom:542.626667pt;}
.y57{bottom:546.626667pt;}
.y19{bottom:546.946667pt;}
.y73{bottom:562.466667pt;}
.y9d{bottom:567.266667pt;}
.y56{bottom:571.266667pt;}
.y18{bottom:571.586667pt;}
.y72{bottom:587.293333pt;}
.y9c{bottom:591.933333pt;}
.y55{bottom:596.093333pt;}
.y17{bottom:596.253333pt;}
.y71{bottom:611.933333pt;}
.y9b{bottom:620.093333pt;}
.y54{bottom:620.733333pt;}
.y16{bottom:620.893333pt;}
.y70{bottom:632.573333pt;}
.y87{bottom:634.400000pt;}
.y4b{bottom:638.813333pt;}
.y9a{bottom:645.213333pt;}
.y15{bottom:645.693333pt;}
.y99{bottom:670.013333pt;}
.y14{bottom:670.333333pt;}
.y13{bottom:694.973333pt;}
.y12{bottom:719.773333pt;}
.y11{bottom:744.413333pt;}
.y47{bottom:762.973333pt;}
.y10{bottom:769.053333pt;}
.yf{bottom:793.693333pt;}
.y6f{bottom:807.813333pt;}
.ye{bottom:818.533333pt;}
.y6e{bottom:832.613333pt;}
.y42{bottom:840.453333pt;}
.yd{bottom:843.173333pt;}
.y6d{bottom:857.253333pt;}
.yc{bottom:867.813333pt;}
.y6c{bottom:881.893333pt;}
.yb{bottom:892.613333pt;}
.y6b{bottom:906.693333pt;}
.y3e{bottom:915.653333pt;}
.ya{bottom:917.253333pt;}
.y6a{bottom:931.173333pt;}
.y9{bottom:941.893333pt;}
.y3c{bottom:965.733333pt;}
.y8{bottom:966.533333pt;}
.y95{bottom:991.173333pt;}
.y7{bottom:991.333333pt;}
.y4{bottom:1012.773333pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1051.840000pt;}
.y1{bottom:1076.160000pt;}
.h14{height:24.640000pt;}
.h18{height:36.398438pt;}
.he{height:42.304688pt;}
.hf{height:42.400000pt;}
.h7{height:43.688960pt;}
.h5{height:44.648750pt;}
.h10{height:49.440000pt;}
.hd{height:52.192000pt;}
.hc{height:52.832812pt;}
.h4{height:59.706562pt;}
.ha{height:65.995312pt;}
.h2{height:67.871563pt;}
.h15{height:73.454062pt;}
.h9{height:73.490625pt;}
.h11{height:74.560000pt;}
.h8{height:75.465000pt;}
.hb{height:76.800000pt;}
.h12{height:76.832000pt;}
.h16{height:76.964840pt;}
.h6{height:85.222187pt;}
.h3{height:93.387187pt;}
.h13{height:123.520000pt;}
.h17{height:166.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:26.560000pt;}
.wb{width:74.912000pt;}
.wc{width:75.040000pt;}
.we{width:79.200000pt;}
.w8{width:82.560000pt;}
.wa{width:84.480000pt;}
.w9{width:93.792000pt;}
.wd{width:95.712000pt;}
.w6{width:122.240000pt;}
.w5{width:150.586667pt;}
.w7{width:160.186667pt;}
.w4{width:170.266667pt;}
.wf{width:395.200000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x46{left:2.173333pt;}
.x12{left:6.560000pt;}
.x2a{left:7.520000pt;}
.x14{left:9.760000pt;}
.x2e{left:11.400000pt;}
.x10{left:14.720000pt;}
.x15{left:16.960000pt;}
.x24{left:19.200000pt;}
.x32{left:20.320000pt;}
.x3c{left:21.280000pt;}
.x36{left:24.000000pt;}
.x25{left:25.960000pt;}
.x34{left:28.640000pt;}
.x3a{left:29.600000pt;}
.x3d{left:30.880000pt;}
.x3e{left:32.000000pt;}
.x29{left:33.480000pt;}
.x1a{left:35.240000pt;}
.x16{left:36.200000pt;}
.x5{left:37.759988pt;}
.xf{left:41.760000pt;}
.x26{left:50.920000pt;}
.x1b{left:52.680000pt;}
.x27{left:55.080000pt;}
.x1c{left:59.720000pt;}
.x2f{left:61.640000pt;}
.x21{left:65.600000pt;}
.x17{left:68.160000pt;}
.x20{left:69.280000pt;}
.x13{left:70.240000pt;}
.x18{left:74.560000pt;}
.x4{left:75.551988pt;}
.x42{left:76.893333pt;}
.x22{left:80.000000pt;}
.x19{left:81.600000pt;}
.x1d{left:82.600000pt;}
.x23{left:84.160000pt;}
.x2b{left:88.160000pt;}
.x6{left:89.951988pt;}
.x1{left:94.591988pt;}
.x31{left:100.192000pt;}
.xc{left:103.232000pt;}
.x2c{left:104.640000pt;}
.x2d{left:113.920000pt;}
.x43{left:116.346667pt;}
.x1e{left:120.200000pt;}
.x1f{left:124.200000pt;}
.x28{left:133.320000pt;}
.x9{left:146.106655pt;}
.x44{left:155.773333pt;}
.x52{left:160.666655pt;}
.x53{left:179.706655pt;}
.x33{left:183.386667pt;}
.x45{left:195.200000pt;}
.x41{left:198.720000pt;}
.x7{left:250.626655pt;}
.x54{left:269.026655pt;}
.xd{left:274.146667pt;}
.x35{left:277.826667pt;}
.x55{left:288.066655pt;}
.xa{left:289.986655pt;}
.x49{left:295.586655pt;}
.x4a{left:304.866655pt;}
.x56{left:313.506655pt;}
.x57{left:332.546655pt;}
.x4b{left:342.306655pt;}
.x40{left:348.546655pt;}
.x4c{left:351.586655pt;}
.x48{left:360.546655pt;}
.x37{left:362.946667pt;}
.x58{left:393.666655pt;}
.x8{left:396.893322pt;}
.x4d{left:405.693322pt;}
.x59{left:412.413322pt;}
.x4e{left:414.813322pt;}
.xe{left:425.373333pt;}
.x38{left:438.493333pt;}
.x2{left:463.613322pt;}
.x5a{left:488.573322pt;}
.x5b{left:507.453322pt;}
.x39{left:514.173333pt;}
.x4f{left:518.653322pt;}
.x50{left:527.773322pt;}
.x11{left:548.253333pt;}
.x3{left:570.373322pt;}
.x3f{left:594.853322pt;}
.x3b{left:610.533333pt;}
.x47{left:628.933322pt;}
.x30{left:652.933322pt;}
.xb{left:653.893322pt;}
.x51{left:718.053322pt;}
}




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