
    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_ceca84d917cd2268ae99d932.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_0d450213accd842c2fa1575a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7e41ee5bae8a47d03258dca5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab33966f3d00783c7acb97dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_5ddcd3c9857f7ce1380448cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2e442e5af4750ef7248c388e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_5c5a9b6d681d2d5e61d667b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_b10570deeb078dbde27790cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e0399ff1291a2cf5644b70f2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_914af85720ac95d19855ce03.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d62d24938b726ee5774b94ab.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fa741a0043cd44c58a5d2ebc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.142090;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_ea856ff3c85ac7bd7b5e485c.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m4{transform:matrix(0.248521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251913,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;}
.lsa{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.084558px;}
.lse{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.366345px;}
.lsf{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.549517px;}
.ls12{letter-spacing:0.700175px;}
.ls15{letter-spacing:0.935221px;}
.lsc{letter-spacing:1.224000px;}
.ls14{letter-spacing:1.299378px;}
.lsb{letter-spacing:5.040000px;}
.ls1d{letter-spacing:5.760000px;}
.ls18{letter-spacing:8.820000px;}
.ls1c{letter-spacing:12.240000px;}
.ls1a{letter-spacing:17.424000px;}
.ls2{letter-spacing:18.000000px;}
.ls0{letter-spacing:18.720000px;}
.ls1{letter-spacing:19.440000px;}
.ls3{letter-spacing:26.640000px;}
.ls1b{letter-spacing:33.840000px;}
.ls17{letter-spacing:53.424000px;}
.ls19{letter-spacing:61.200000px;}
.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;}
}
.ws12{word-spacing:-54.392468px;}
.wsc{word-spacing:-50.247572px;}
.wsb{word-spacing:-46.947942px;}
.ws1{word-spacing:-23.940000px;}
.ws8{word-spacing:-18.432000px;}
.ws4{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.488000px;}
.ws11{word-spacing:-0.758020px;}
.wse{word-spacing:-0.641043px;}
.wsf{word-spacing:-0.419797px;}
.ws9{word-spacing:-0.134415px;}
.ws10{word-spacing:-0.099076px;}
.wsd{word-spacing:-0.091526px;}
.wsa{word-spacing:-0.085515px;}
.ws6{word-spacing:0.000000px;}
._2e{margin-left:-470.837728px;}
._2f{margin-left:-465.096869px;}
._30{margin-left:-429.257561px;}
._2d{margin-left:-423.869611px;}
._2c{margin-left:-422.003744px;}
._2b{margin-left:-420.466326px;}
._31{margin-left:-415.420800px;}
._29{margin-left:-387.699059px;}
._3a{margin-left:-382.943637px;}
._35{margin-left:-375.641705px;}
._28{margin-left:-350.521499px;}
._39{margin-left:-348.980678px;}
._58{margin-left:-347.422989px;}
._2a{margin-left:-345.930210px;}
._27{margin-left:-343.784813px;}
._3b{margin-left:-342.023149px;}
._26{margin-left:-341.017461px;}
._34{margin-left:-338.464145px;}
._36{margin-left:-337.276140px;}
._33{margin-left:-331.692518px;}
._37{margin-left:-330.022323px;}
._32{margin-left:-328.820342px;}
._5c{margin-left:-320.374888px;}
._5d{margin-left:-315.572153px;}
._38{margin-left:-304.327877px;}
._59{margin-left:-285.176970px;}
._55{margin-left:-270.415543px;}
._54{margin-left:-268.412679px;}
._56{margin-left:-266.616723px;}
._5a{margin-left:-265.310376px;}
._57{margin-left:-264.009690px;}
._5b{margin-left:-260.907387px;}
._5e{margin-left:-254.952311px;}
._60{margin-left:-253.156355px;}
._61{margin-left:-250.549322px;}
._5f{margin-left:-248.553079px;}
._3f{margin-left:-247.195714px;}
._3c{margin-left:-245.568356px;}
._62{margin-left:-244.150090px;}
._40{margin-left:-243.002429px;}
._3e{margin-left:-241.359933px;}
._3d{margin-left:-239.528209px;}
._42{margin-left:-236.962282px;}
._41{margin-left:-235.312217px;}
._4b{margin-left:-233.399807px;}
._49{margin-left:-231.560514px;}
._48{margin-left:-230.099677px;}
._4a{margin-left:-227.722977px;}
._4c{margin-left:-225.891253px;}
._51{margin-left:-224.275195px;}
._4d{margin-left:-222.954440px;}
._44{margin-left:-155.340766px;}
._45{margin-left:-113.742472px;}
._46{margin-left:-112.380033px;}
._47{margin-left:-109.699055px;}
._4e{margin-left:-85.394304px;}
._52{margin-left:-81.984471px;}
._4f{margin-left:-75.757071px;}
._53{margin-left:-72.752776px;}
._43{margin-left:-68.470134px;}
._50{margin-left:-65.405495px;}
._22{margin-left:-2.131680px;}
._1{margin-left:-1.059840px;}
._0{width:1.347840px;}
._c{width:2.396160px;}
._14{width:3.552000px;}
._d{width:4.824000px;}
._21{width:6.816000px;}
._b{width:7.992000px;}
._19{width:9.000000px;}
._1a{width:10.072320px;}
._e{width:11.376000px;}
._f{width:12.384000px;}
._15{width:14.256000px;}
._18{width:15.456000px;}
._1f{width:16.459680px;}
._9{width:19.056000px;}
._a{width:20.112000px;}
._4{width:21.792000px;}
._5{width:22.896000px;}
._3{width:24.336000px;}
._2{width:25.488000px;}
._64{width:26.691840px;}
._1e{width:27.699840px;}
._63{width:28.780320px;}
._17{width:30.168000px;}
._16{width:31.320000px;}
._6{width:32.976000px;}
._13{width:34.464000px;}
._20{width:35.796480px;}
._24{width:36.911040px;}
._25{width:38.808000px;}
._10{width:41.544000px;}
._11{width:42.840000px;}
._1d{width:43.992000px;}
._23{width:45.596160px;}
._12{width:48.291840px;}
._67{width:50.008320px;}
._1b{width:59.040000px;}
._1c{width:60.076320px;}
._66{width:61.632000px;}
._65{width:63.075840px;}
._8{width:76.896000px;}
._7{width:78.516000px;}
._68{width:109.932000px;}
._69{width:111.007680px;}
.fc6{color:transparent;}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc9{color:rgb(79,79,79);}
.fc8{color:rgb(34,34,34);}
.fc7{color:rgb(51,51,51);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:49.857065px;}
.fs8{font-size:53.452271px;}
.fsa{font-size:57.845513px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs6{font-size:85.515377px;}
.fs7{font-size:91.525632px;}
.fs2{font-size:95.760000px;}
.fs9{font-size:99.075534px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:4.744553px;}
.y69{bottom:6.561090px;}
.y70{bottom:7.065761px;}
.y47{bottom:7.380000px;}
.y4f{bottom:7.560000px;}
.y4b{bottom:7.740000px;}
.y8f{bottom:8.930161px;}
.y5f{bottom:10.124293px;}
.y5d{bottom:10.124297px;}
.y61{bottom:10.124299px;}
.y6d{bottom:12.801062px;}
.y75{bottom:15.151002px;}
.y7e{bottom:15.151011px;}
.y8a{bottom:15.151013px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y4c{bottom:19.260000px;}
.y7{bottom:20.700000px;}
.y68{bottom:21.793349px;}
.y4{bottom:27.900000px;}
.y4d{bottom:31.140000px;}
.y4a{bottom:31.500000px;}
.y5c{bottom:37.404683px;}
.y71{bottom:41.982047px;}
.y62{bottom:42.783896px;}
.y60{bottom:42.783900px;}
.y5e{bottom:42.783904px;}
.y6b{bottom:43.772141px;}
.y6{bottom:45.360000px;}
.y6e{bottom:47.717537px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y81{bottom:52.777977px;}
.y7a{bottom:53.077969px;}
.y49{bottom:55.440000px;}
.y76{bottom:59.299666px;}
.y86{bottom:59.299670px;}
.y8b{bottom:59.299676px;}
.y6a{bottom:60.976719px;}
.y7f{bottom:64.265475px;}
.y2{bottom:69.300000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.y72{bottom:76.898334px;}
.y6c{bottom:80.981867px;}
.y6f{bottom:82.633824px;}
.y80{bottom:88.045341px;}
.y7b{bottom:90.906847px;}
.ya{bottom:91.116000px;}
.y77{bottom:97.126475px;}
.y87{bottom:97.126479px;}
.y8c{bottom:97.126485px;}
.y84{bottom:111.827276px;}
.y7c{bottom:128.733656px;}
.y82{bottom:130.488254px;}
.y59{bottom:134.676000px;}
.y78{bottom:134.903626px;}
.y88{bottom:134.903630px;}
.y8d{bottom:134.903636px;}
.y95{bottom:138.096000px;}
.y44{bottom:139.896000px;}
.y83{bottom:147.144299px;}
.y58{bottom:158.430000px;}
.y37{bottom:163.650000px;}
.y7d{bottom:166.560465px;}
.y85{bottom:170.924165px;}
.y79{bottom:172.730436px;}
.y89{bottom:172.730439px;}
.y8e{bottom:172.730445px;}
.y57{bottom:182.190000px;}
.y36{bottom:187.410000px;}
.y56{bottom:205.950000px;}
.y35{bottom:211.350000px;}
.y55{bottom:229.890000px;}
.y34{bottom:235.110000px;}
.y54{bottom:253.650000px;}
.y33{bottom:258.870000px;}
.y53{bottom:277.410000px;}
.y32{bottom:282.315000px;}
.y43{bottom:282.675000px;}
.y52{bottom:294.555000px;}
.y31{bottom:306.075000px;}
.y42{bottom:306.435000px;}
.y51{bottom:319.215000px;}
.y41{bottom:330.015000px;}
.y30{bottom:330.375000px;}
.y50{bottom:343.695000px;}
.y2f{bottom:354.135000px;}
.y4e{bottom:368.175000px;}
.y2e{bottom:377.895000px;}
.y48{bottom:392.835000px;}
.y2d{bottom:401.655000px;}
.y2c{bottom:425.595000px;}
.y46{bottom:441.255000px;}
.y2b{bottom:449.355000px;}
.y2a{bottom:473.115000px;}
.y45{bottom:496.515000px;}
.y29{bottom:496.875000px;}
.y28{bottom:520.815000px;}
.y94{bottom:522.075000px;}
.y27{bottom:544.575000px;}
.y93{bottom:546.015000px;}
.y26{bottom:568.365000px;}
.y92{bottom:569.805000px;}
.y40{bottom:591.765000px;}
.y25{bottom:592.125000px;}
.y91{bottom:593.565000px;}
.y74{bottom:613.139959px;}
.y24{bottom:616.065000px;}
.y3f{bottom:639.465000px;}
.y23{bottom:639.825000px;}
.y22{bottom:663.585000px;}
.y90{bottom:680.685000px;}
.y21{bottom:687.345000px;}
.y98{bottom:710.925000px;}
.y20{bottom:711.285000px;}
.y99{bottom:711.465000px;}
.y97{bottom:734.685000px;}
.y1f{bottom:735.045000px;}
.y1e{bottom:758.805000px;}
.y1d{bottom:782.565000px;}
.y1c{bottom:806.325000px;}
.y67{bottom:815.490000px;}
.y1b{bottom:830.265000px;}
.y73{bottom:852.990000px;}
.y1a{bottom:854.070000px;}
.y96{bottom:877.470000px;}
.y19{bottom:877.830000px;}
.y18{bottom:901.590000px;}
.y17{bottom:925.170000px;}
.y3e{bottom:925.530000px;}
.y66{bottom:929.670000px;}
.y16{bottom:948.930000px;}
.y3d{bottom:949.290000px;}
.y65{bottom:953.430000px;}
.y15{bottom:973.050000px;}
.y64{bottom:977.190000px;}
.y14{bottom:996.450000px;}
.y5a{bottom:996.764919px;}
.y3c{bottom:996.810000px;}
.y63{bottom:1019.310000px;}
.y13{bottom:1020.390000px;}
.y3b{bottom:1020.750000px;}
.y12{bottom:1044.510000px;}
.y11{bottom:1067.910000px;}
.y3a{bottom:1068.270000px;}
.y10{bottom:1091.670000px;}
.y39{bottom:1092.030000px;}
.yf{bottom:1115.610000px;}
.y38{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.hc{height:23.760000px;}
.hf{height:23.940000px;}
.h8{height:33.120000px;}
.he{height:47.520000px;}
.h11{height:48.931983px;}
.h21{height:50.484375px;}
.h18{height:52.460481px;}
.h1f{height:56.743962px;}
.h1c{height:56.772207px;}
.hb{height:59.343750px;}
.h10{height:64.049261px;}
.h9{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.hd{height:72.180000px;}
.h3{height:72.562500px;}
.h20{height:74.004654px;}
.h14{height:79.210288px;}
.h4{height:82.635820px;}
.h13{height:83.886910px;}
.h12{height:83.928666px;}
.h16{height:84.777404px;}
.h19{height:89.782712px;}
.h17{height:89.827402px;}
.h1d{height:91.770648px;}
.h1e{height:97.188842px;}
.h1b{height:97.237218px;}
.h15{height:106.951470px;}
.h2{height:109.800000px;}
.h5{height:129.250898px;}
.h1a{height:199.119435px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:17.100000px;}
.w9{width:17.280000px;}
.w8{width:17.496000px;}
.w6{width:50.400000px;}
.w4{width:61.590000px;}
.wa{width:92.340000px;}
.wd{width:115.920000px;}
.wf{width:115.956000px;}
.wb{width:116.100000px;}
.we{width:116.136000px;}
.w2{width:125.856000px;}
.w12{width:219.361339px;}
.w11{width:264.371599px;}
.wc{width:466.485000px;}
.w10{width:643.492680px;}
.w3{width:705.525000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x35{left:3.458488px;}
.x9{left:8.100000px;}
.x2{left:9.179973px;}
.x24{left:10.440000px;}
.x4e{left:15.619409px;}
.x7{left:19.800000px;}
.x22{left:23.760000px;}
.x1{left:25.199970px;}
.x6{left:27.354000px;}
.x3{left:30.239973px;}
.x23{left:37.800000px;}
.x29{left:39.990000px;}
.x28{left:44.505000px;}
.x2a{left:49.005000px;}
.x2b{left:54.900000px;}
.x1e{left:57.774000px;}
.x5{left:71.994000px;}
.x4d{left:118.389296px;}
.x4c{left:120.577779px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x46{left:129.084832px;}
.x45{left:131.273315px;}
.x12{left:134.675987px;}
.x51{left:138.275987px;}
.x20{left:146.745000px;}
.x4b{left:149.280898px;}
.x4a{left:150.722723px;}
.x49{left:152.662325px;}
.x48{left:154.005441px;}
.x41{left:155.726591px;}
.x3f{left:158.954741px;}
.x40{left:160.199845px;}
.x47{left:162.512510px;}
.x3e{left:164.533893px;}
.x3c{left:168.822199px;}
.x3d{left:170.528738px;}
.x44{left:172.609502px;}
.x1b{left:180.749987px;}
.x38{left:185.561586px;}
.x36{left:189.851798px;}
.x37{left:191.552617px;}
.x43{left:210.167291px;}
.x32{left:225.237364px;}
.x3b{left:229.973724px;}
.x1c{left:233.849987px;}
.x3a{left:237.448210px;}
.x2e{left:239.995807px;}
.x39{left:244.350669px;}
.x1f{left:250.590000px;}
.x30{left:272.250286px;}
.x2c{left:280.357780px;}
.x1a{left:333.074987px;}
.x14{left:354.674987px;}
.x19{left:358.634987px;}
.x25{left:367.455000px;}
.x17{left:371.774987px;}
.x16{left:377.174987px;}
.x15{left:389.054987px;}
.x13{left:394.454987px;}
.x18{left:398.054987px;}
.x4f{left:400.214987px;}
.x42{left:445.214987px;}
.x26{left:484.275000px;}
.x2f{left:567.085700px;}
.x31{left:600.059676px;}
.x27{left:601.125000px;}
.x2d{left:609.535966px;}
.xb{left:619.305000px;}
.x33{left:627.821692px;}
.xc{left:669.705000px;}
.xd{left:686.805000px;}
.xe{left:704.310000px;}
.x21{left:717.990000px;}
.xf{left:721.590000px;}
.x10{left:738.870000px;}
.x1d{left:780.989987px;}
.x34{left:824.369987px;}
.x50{left:827.789987px;}
.x8{left:831.390000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.075163pt;}
.lse{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.325640pt;}
.lsf{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.488460pt;}
.ls12{letter-spacing:0.622377pt;}
.ls15{letter-spacing:0.831308pt;}
.lsc{letter-spacing:1.088000pt;}
.ls14{letter-spacing:1.155003pt;}
.lsb{letter-spacing:4.480000pt;}
.ls1d{letter-spacing:5.120000pt;}
.ls18{letter-spacing:7.840000pt;}
.ls1c{letter-spacing:10.880000pt;}
.ls1a{letter-spacing:15.488000pt;}
.ls2{letter-spacing:16.000000pt;}
.ls0{letter-spacing:16.640000pt;}
.ls1{letter-spacing:17.280000pt;}
.ls3{letter-spacing:23.680000pt;}
.ls1b{letter-spacing:30.080000pt;}
.ls17{letter-spacing:47.488000pt;}
.ls19{letter-spacing:54.400000pt;}
.ws12{word-spacing:-48.348861pt;}
.wsc{word-spacing:-44.664508pt;}
.wsb{word-spacing:-41.731504pt;}
.ws1{word-spacing:-21.280000pt;}
.ws8{word-spacing:-16.384000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws11{word-spacing:-0.673796pt;}
.wse{word-spacing:-0.569816pt;}
.wsf{word-spacing:-0.373153pt;}
.ws9{word-spacing:-0.119480pt;}
.ws10{word-spacing:-0.088067pt;}
.wsd{word-spacing:-0.081356pt;}
.wsa{word-spacing:-0.076014pt;}
.ws6{word-spacing:0.000000pt;}
._2e{margin-left:-418.522424pt;}
._2f{margin-left:-413.419439pt;}
._30{margin-left:-381.562277pt;}
._2d{margin-left:-376.772987pt;}
._2c{margin-left:-375.114439pt;}
._2b{margin-left:-373.747846pt;}
._31{margin-left:-369.262934pt;}
._29{margin-left:-344.621386pt;}
._3a{margin-left:-340.394344pt;}
._35{margin-left:-333.903738pt;}
._28{margin-left:-311.574666pt;}
._39{margin-left:-310.205047pt;}
._58{margin-left:-308.820434pt;}
._2a{margin-left:-307.493520pt;}
._27{margin-left:-305.586500pt;}
._3b{margin-left:-304.020577pt;}
._26{margin-left:-303.126632pt;}
._34{margin-left:-300.857018pt;}
._36{margin-left:-299.801014pt;}
._33{margin-left:-294.837794pt;}
._37{margin-left:-293.353176pt;}
._32{margin-left:-292.284748pt;}
._5c{margin-left:-284.777678pt;}
._5d{margin-left:-280.508581pt;}
._38{margin-left:-270.513668pt;}
._59{margin-left:-253.490640pt;}
._55{margin-left:-240.369371pt;}
._54{margin-left:-238.589048pt;}
._56{margin-left:-236.992643pt;}
._5a{margin-left:-235.831445pt;}
._57{margin-left:-234.675280pt;}
._5b{margin-left:-231.917677pt;}
._5e{margin-left:-226.624276pt;}
._60{margin-left:-225.027871pt;}
._61{margin-left:-222.710508pt;}
._5f{margin-left:-220.936070pt;}
._3f{margin-left:-219.729523pt;}
._3c{margin-left:-218.282983pt;}
._62{margin-left:-217.022302pt;}
._40{margin-left:-216.002159pt;}
._3e{margin-left:-214.542163pt;}
._3d{margin-left:-212.913964pt;}
._42{margin-left:-210.633140pt;}
._41{margin-left:-209.166415pt;}
._4b{margin-left:-207.466495pt;}
._49{margin-left:-205.831568pt;}
._48{margin-left:-204.533046pt;}
._4a{margin-left:-202.420424pt;}
._4c{margin-left:-200.792225pt;}
._51{margin-left:-199.355729pt;}
._4d{margin-left:-198.181725pt;}
._44{margin-left:-138.080680pt;}
._45{margin-left:-101.104420pt;}
._46{margin-left:-99.893363pt;}
._47{margin-left:-97.510272pt;}
._4e{margin-left:-75.906048pt;}
._52{margin-left:-72.875085pt;}
._4f{margin-left:-67.339619pt;}
._53{margin-left:-64.669134pt;}
._43{margin-left:-60.862342pt;}
._50{margin-left:-58.138217pt;}
._22{margin-left:-1.894827pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.198080pt;}
._c{width:2.129920pt;}
._14{width:3.157333pt;}
._d{width:4.288000pt;}
._21{width:6.058667pt;}
._b{width:7.104000pt;}
._19{width:8.000000pt;}
._1a{width:8.953173pt;}
._e{width:10.112000pt;}
._f{width:11.008000pt;}
._15{width:12.672000pt;}
._18{width:13.738667pt;}
._1f{width:14.630827pt;}
._9{width:16.938667pt;}
._a{width:17.877333pt;}
._4{width:19.370667pt;}
._5{width:20.352000pt;}
._3{width:21.632000pt;}
._2{width:22.656000pt;}
._64{width:23.726080pt;}
._1e{width:24.622080pt;}
._63{width:25.582507pt;}
._17{width:26.816000pt;}
._16{width:27.840000pt;}
._6{width:29.312000pt;}
._13{width:30.634667pt;}
._20{width:31.819093pt;}
._24{width:32.809813pt;}
._25{width:34.496000pt;}
._10{width:36.928000pt;}
._11{width:38.080000pt;}
._1d{width:39.104000pt;}
._23{width:40.529920pt;}
._12{width:42.926080pt;}
._67{width:44.451840pt;}
._1b{width:52.480000pt;}
._1c{width:53.401173pt;}
._66{width:54.784000pt;}
._65{width:56.067413pt;}
._8{width:68.352000pt;}
._7{width:69.792000pt;}
._68{width:97.717333pt;}
._69{width:98.673493pt;}
.fs5{font-size:44.317391pt;}
.fs8{font-size:47.513130pt;}
.fsa{font-size:51.418233pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs6{font-size:76.013668pt;}
.fs7{font-size:81.356117pt;}
.fs2{font-size:85.120000pt;}
.fs9{font-size:88.067141pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:4.217380pt;}
.y69{bottom:5.832080pt;}
.y70{bottom:6.280676pt;}
.y47{bottom:6.560000pt;}
.y4f{bottom:6.720000pt;}
.y4b{bottom:6.880000pt;}
.y8f{bottom:7.937921pt;}
.y5f{bottom:8.999372pt;}
.y5d{bottom:8.999375pt;}
.y61{bottom:8.999377pt;}
.y6d{bottom:11.378721pt;}
.y75{bottom:13.467557pt;}
.y7e{bottom:13.467565pt;}
.y8a{bottom:13.467568pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y4c{bottom:17.120000pt;}
.y7{bottom:18.400000pt;}
.y68{bottom:19.371866pt;}
.y4{bottom:24.800000pt;}
.y4d{bottom:27.680000pt;}
.y4a{bottom:28.000000pt;}
.y5c{bottom:33.248607pt;}
.y71{bottom:37.317375pt;}
.y62{bottom:38.030130pt;}
.y60{bottom:38.030133pt;}
.y5e{bottom:38.030137pt;}
.y6b{bottom:38.908570pt;}
.y6{bottom:40.320000pt;}
.y6e{bottom:42.415589pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y81{bottom:46.913757pt;}
.y7a{bottom:47.180417pt;}
.y49{bottom:49.280000pt;}
.y76{bottom:52.710814pt;}
.y86{bottom:52.710818pt;}
.y8b{bottom:52.710823pt;}
.y6a{bottom:54.201528pt;}
.y7f{bottom:57.124867pt;}
.y2{bottom:61.600000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.y72{bottom:68.354075pt;}
.y6c{bottom:71.983882pt;}
.y6f{bottom:73.452288pt;}
.y80{bottom:78.262525pt;}
.y7b{bottom:80.806086pt;}
.ya{bottom:80.992000pt;}
.y77{bottom:86.334645pt;}
.y87{bottom:86.334648pt;}
.y8c{bottom:86.334653pt;}
.y84{bottom:99.402024pt;}
.y7c{bottom:114.429916pt;}
.y82{bottom:115.989559pt;}
.y59{bottom:119.712000pt;}
.y78{bottom:119.914334pt;}
.y88{bottom:119.914337pt;}
.y8d{bottom:119.914343pt;}
.y95{bottom:122.752000pt;}
.y44{bottom:124.352000pt;}
.y83{bottom:130.794932pt;}
.y58{bottom:140.826667pt;}
.y37{bottom:145.466667pt;}
.y7d{bottom:148.053746pt;}
.y85{bottom:151.932591pt;}
.y79{bottom:153.538165pt;}
.y89{bottom:153.538168pt;}
.y8e{bottom:153.538173pt;}
.y57{bottom:161.946667pt;}
.y36{bottom:166.586667pt;}
.y56{bottom:183.066667pt;}
.y35{bottom:187.866667pt;}
.y55{bottom:204.346667pt;}
.y34{bottom:208.986667pt;}
.y54{bottom:225.466667pt;}
.y33{bottom:230.106667pt;}
.y53{bottom:246.586667pt;}
.y32{bottom:250.946667pt;}
.y43{bottom:251.266667pt;}
.y52{bottom:261.826667pt;}
.y31{bottom:272.066667pt;}
.y42{bottom:272.386667pt;}
.y51{bottom:283.746667pt;}
.y41{bottom:293.346667pt;}
.y30{bottom:293.666667pt;}
.y50{bottom:305.506667pt;}
.y2f{bottom:314.786667pt;}
.y4e{bottom:327.266667pt;}
.y2e{bottom:335.906667pt;}
.y48{bottom:349.186667pt;}
.y2d{bottom:357.026667pt;}
.y2c{bottom:378.306667pt;}
.y46{bottom:392.226667pt;}
.y2b{bottom:399.426667pt;}
.y2a{bottom:420.546667pt;}
.y45{bottom:441.346667pt;}
.y29{bottom:441.666667pt;}
.y28{bottom:462.946667pt;}
.y94{bottom:464.066667pt;}
.y27{bottom:484.066667pt;}
.y93{bottom:485.346667pt;}
.y26{bottom:505.213333pt;}
.y92{bottom:506.493333pt;}
.y40{bottom:526.013333pt;}
.y25{bottom:526.333333pt;}
.y91{bottom:527.613333pt;}
.y74{bottom:545.013297pt;}
.y24{bottom:547.613333pt;}
.y3f{bottom:568.413333pt;}
.y23{bottom:568.733333pt;}
.y22{bottom:589.853333pt;}
.y90{bottom:605.053333pt;}
.y21{bottom:610.973333pt;}
.y98{bottom:631.933333pt;}
.y20{bottom:632.253333pt;}
.y99{bottom:632.413333pt;}
.y97{bottom:653.053333pt;}
.y1f{bottom:653.373333pt;}
.y1e{bottom:674.493333pt;}
.y1d{bottom:695.613333pt;}
.y1c{bottom:716.733333pt;}
.y67{bottom:724.880000pt;}
.y1b{bottom:738.013333pt;}
.y73{bottom:758.213333pt;}
.y1a{bottom:759.173333pt;}
.y96{bottom:779.973333pt;}
.y19{bottom:780.293333pt;}
.y18{bottom:801.413333pt;}
.y17{bottom:822.373333pt;}
.y3e{bottom:822.693333pt;}
.y66{bottom:826.373333pt;}
.y16{bottom:843.493333pt;}
.y3d{bottom:843.813333pt;}
.y65{bottom:847.493333pt;}
.y15{bottom:864.933333pt;}
.y64{bottom:868.613333pt;}
.y14{bottom:885.733333pt;}
.y5a{bottom:886.013261pt;}
.y3c{bottom:886.053333pt;}
.y63{bottom:906.053333pt;}
.y13{bottom:907.013333pt;}
.y3b{bottom:907.333333pt;}
.y12{bottom:928.453333pt;}
.y11{bottom:949.253333pt;}
.y3a{bottom:949.573333pt;}
.y10{bottom:970.373333pt;}
.y39{bottom:970.693333pt;}
.yf{bottom:991.653333pt;}
.y38{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.hc{height:21.120000pt;}
.hf{height:21.280000pt;}
.h8{height:29.440000pt;}
.he{height:42.240000pt;}
.h11{height:43.495096pt;}
.h21{height:44.875000pt;}
.h18{height:46.631538pt;}
.h1f{height:50.439078pt;}
.h1c{height:50.464184pt;}
.hb{height:52.750000pt;}
.h10{height:56.932676pt;}
.h9{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.hd{height:64.160000pt;}
.h3{height:64.500000pt;}
.h20{height:65.781915pt;}
.h14{height:70.409145pt;}
.h4{height:73.454062pt;}
.h13{height:74.566142pt;}
.h12{height:74.603258pt;}
.h16{height:75.357692pt;}
.h19{height:79.806855pt;}
.h17{height:79.846580pt;}
.h1d{height:81.573910pt;}
.h1e{height:86.390082pt;}
.h1b{height:86.433083pt;}
.h15{height:95.067973pt;}
.h2{height:97.600000pt;}
.h5{height:114.889687pt;}
.h1a{height:176.995054pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.200000pt;}
.w9{width:15.360000pt;}
.w8{width:15.552000pt;}
.w6{width:44.800000pt;}
.w4{width:54.746667pt;}
.wa{width:82.080000pt;}
.wd{width:103.040000pt;}
.wf{width:103.072000pt;}
.wb{width:103.200000pt;}
.we{width:103.232000pt;}
.w2{width:111.872000pt;}
.w12{width:194.987857pt;}
.w11{width:234.996977pt;}
.wc{width:414.653333pt;}
.w10{width:571.993493pt;}
.w3{width:627.133333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x35{left:3.074212pt;}
.x9{left:7.200000pt;}
.x2{left:8.159976pt;}
.x24{left:9.280000pt;}
.x4e{left:13.883919pt;}
.x7{left:17.600000pt;}
.x22{left:21.120000pt;}
.x1{left:22.399973pt;}
.x6{left:24.314667pt;}
.x3{left:26.879976pt;}
.x23{left:33.600000pt;}
.x29{left:35.546667pt;}
.x28{left:39.560000pt;}
.x2a{left:43.560000pt;}
.x2b{left:48.800000pt;}
.x1e{left:51.354667pt;}
.x5{left:63.994667pt;}
.x4d{left:105.234930pt;}
.x4c{left:107.180248pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x46{left:114.742073pt;}
.x45{left:116.687391pt;}
.x12{left:119.711988pt;}
.x51{left:122.911988pt;}
.x20{left:130.440000pt;}
.x4b{left:132.694132pt;}
.x4a{left:133.975753pt;}
.x49{left:135.699844pt;}
.x48{left:136.893725pt;}
.x41{left:138.423637pt;}
.x3f{left:141.293103pt;}
.x40{left:142.399862pt;}
.x47{left:144.455564pt;}
.x3e{left:146.252350pt;}
.x3c{left:150.064177pt;}
.x3d{left:151.581100pt;}
.x44{left:153.430668pt;}
.x1b{left:160.666655pt;}
.x38{left:164.943632pt;}
.x36{left:168.757154pt;}
.x37{left:170.268993pt;}
.x43{left:186.815370pt;}
.x32{left:200.210991pt;}
.x3b{left:204.421088pt;}
.x1c{left:207.866655pt;}
.x3a{left:211.065075pt;}
.x2e{left:213.329606pt;}
.x39{left:217.200595pt;}
.x1f{left:222.746667pt;}
.x30{left:242.000255pt;}
.x2c{left:249.206915pt;}
.x1a{left:296.066655pt;}
.x14{left:315.266655pt;}
.x19{left:318.786655pt;}
.x25{left:326.626667pt;}
.x17{left:330.466655pt;}
.x16{left:335.266655pt;}
.x15{left:345.826655pt;}
.x13{left:350.626655pt;}
.x18{left:353.826655pt;}
.x4f{left:355.746655pt;}
.x42{left:395.746655pt;}
.x26{left:430.466667pt;}
.x2f{left:504.076178pt;}
.x31{left:533.386378pt;}
.x27{left:534.333333pt;}
.x2d{left:541.809748pt;}
.xb{left:550.493333pt;}
.x33{left:558.063727pt;}
.xc{left:595.293333pt;}
.xd{left:610.493333pt;}
.xe{left:626.053333pt;}
.x21{left:638.213333pt;}
.xf{left:641.413333pt;}
.x10{left:656.773333pt;}
.x1d{left:694.213322pt;}
.x34{left:732.773322pt;}
.x50{left:735.813322pt;}
.x8{left:739.013333pt;}
}




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