
    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_d4ec50842787030cf18151d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015137;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_fd69460219664246dd325b87.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148438;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_8faa981b735f47335cefbcc0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.148438;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_7a2a7b7a3804d574d7cd484e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.148438;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_1489440d959d63558b134dcb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008301;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_ba821d7031aed34934073333.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.148438;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_aff139813c38c580cb943a92.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_f1c9c2ccee9aaac8b6febc87.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9ba565ed27ddc13e930d63f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_196c7e86f648fbe2fdb3004e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.977051;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_05e0c62fd26444e0935ced4b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942871;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_dc53af579baee0f281393f51.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_65957980816793372b345292.woff2')format("woff");}.fff{font-family:fff;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e03c76c7af737d8ae5f77b54.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.774902;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v7{vertical-align:-73.200000px;}
.v2{vertical-align:-49.620000px;}
.v3{vertical-align:-36.180000px;}
.v9{vertical-align:-31.500000px;}
.v4{vertical-align:-27.000000px;}
.v8{vertical-align:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.000000px;}
.va{vertical-align:31.500000px;}
.vb{vertical-align:45.150000px;}
.v1{vertical-align:49.620000px;}
.v6{vertical-align:69.600000px;}
.vc{vertical-align:109.200000px;}
.ls4{letter-spacing:-11.820000px;}
.ls7{letter-spacing:-9.120000px;}
.ls8{letter-spacing:-9.000000px;}
.ls2c{letter-spacing:-1.158000px;}
.ls20{letter-spacing:-1.086000px;}
.ls37{letter-spacing:-1.008000px;}
.ls44{letter-spacing:-0.996000px;}
.ls3b{letter-spacing:-0.834000px;}
.ls1e{letter-spacing:-0.750000px;}
.ls12{letter-spacing:-0.495000px;}
.ls1d{letter-spacing:-0.253800px;}
.ls5{letter-spacing:-0.001500px;}
.ls3{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.138600px;}
.ls6{letter-spacing:0.148200px;}
.ls31{letter-spacing:0.208500px;}
.ls26{letter-spacing:0.213000px;}
.ls0{letter-spacing:0.240000px;}
.ls2e{letter-spacing:0.254250px;}
.ls36{letter-spacing:0.288600px;}
.ls22{letter-spacing:0.314250px;}
.ls2{letter-spacing:0.324450px;}
.ls25{letter-spacing:0.363000px;}
.ls3d{letter-spacing:0.388500px;}
.ls9{letter-spacing:0.423000px;}
.ls33{letter-spacing:0.448500px;}
.ls2f{letter-spacing:0.494250px;}
.ls23{letter-spacing:0.732450px;}
.ls3c{letter-spacing:0.792450px;}
.ls34{letter-spacing:0.808500px;}
.ls3e{letter-spacing:0.868500px;}
.lsf{letter-spacing:0.912000px;}
.ls24{letter-spacing:0.912450px;}
.lsd{letter-spacing:0.936300px;}
.ls32{letter-spacing:0.988500px;}
.lse{letter-spacing:0.996300px;}
.ls19{letter-spacing:1.008300px;}
.ls10{letter-spacing:1.062000px;}
.ls11{letter-spacing:1.098000px;}
.ls3a{letter-spacing:1.158000px;}
.lsc{letter-spacing:1.410000px;}
.ls38{letter-spacing:2.364000px;}
.ls18{letter-spacing:2.496000px;}
.ls13{letter-spacing:2.508000px;}
.ls27{letter-spacing:2.514000px;}
.ls45{letter-spacing:3.228000px;}
.ls43{letter-spacing:3.378000px;}
.ls1b{letter-spacing:24.861300px;}
.ls28{letter-spacing:24.921300px;}
.ls1a{letter-spacing:25.041300px;}
.ls1{letter-spacing:27.240000px;}
.ls29{letter-spacing:29.895000px;}
.ls39{letter-spacing:29.925000px;}
.ls1c{letter-spacing:29.955000px;}
.ls2b{letter-spacing:32.418600px;}
.ls2a{letter-spacing:32.538600px;}
.ls1f{letter-spacing:32.613300px;}
.ls21{letter-spacing:33.012450px;}
.ls2d{letter-spacing:33.132450px;}
.ls30{letter-spacing:33.208500px;}
.ls42{letter-spacing:39.228300px;}
.ls41{letter-spacing:39.273600px;}
.ls40{letter-spacing:39.333600px;}
.ls3f{letter-spacing:39.393600px;}
.ls15{letter-spacing:42.780000px;}
.ls17{letter-spacing:42.960000px;}
.lsa{letter-spacing:48.093600px;}
.lsb{letter-spacing:48.162300px;}
.ls14{letter-spacing:103.620000px;}
.ls16{letter-spacing:103.672500px;}
.ls46{letter-spacing:103.770000px;}
.ls47{letter-spacing:103.822500px;}
.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;}
}
.ws6{word-spacing:-90.150000px;}
.ws1d{word-spacing:-45.078000px;}
.ws1e{word-spacing:-44.928000px;}
.ws2{word-spacing:-41.700000px;}
.ws1{word-spacing:-41.662500px;}
.ws1f{word-spacing:-37.696800px;}
.wsd{word-spacing:-37.662900px;}
.ws17{word-spacing:-36.075000px;}
.wsa{word-spacing:-36.037500px;}
.ws8{word-spacing:-33.798000px;}
.wsf{word-spacing:-32.611800px;}
.ws15{word-spacing:-32.577900px;}
.ws1b{word-spacing:-31.603800px;}
.ws16{word-spacing:-31.491900px;}
.ws1a{word-spacing:-31.453800px;}
.ws3{word-spacing:-30.412500px;}
.ws7{word-spacing:-29.526900px;}
.ws0{word-spacing:-28.162500px;}
.ws4{word-spacing:-27.361950px;}
.wsb{word-spacing:-27.037500px;}
.ws10{word-spacing:-24.441900px;}
.ws9{word-spacing:-23.625000px;}
.wse{word-spacing:-21.412500px;}
.ws12{word-spacing:-0.108150px;}
.ws5{word-spacing:0.000000px;}
.ws11{word-spacing:1.725600px;}
.ws13{word-spacing:7.940550px;}
.ws18{word-spacing:8.084850px;}
.ws14{word-spacing:8.436150px;}
.ws19{word-spacing:8.580450px;}
.wsc{word-spacing:422.066700px;}
.ws1c{word-spacing:564.870750px;}
._5{margin-left:-17.618250px;}
._e{margin-left:-15.232200px;}
._c{margin-left:-12.775200px;}
._8{margin-left:-11.761050px;}
._a{margin-left:-10.588350px;}
._d{margin-left:-9.372000px;}
._7{margin-left:-7.999200px;}
._3{margin-left:-6.378150px;}
._b{margin-left:-5.220150px;}
._4{margin-left:-4.017000px;}
._1{margin-left:-2.925450px;}
._0{margin-left:-1.861650px;}
._2{width:1.594800px;}
._9{width:2.827800px;}
._6{width:3.838200px;}
._11{width:5.432100px;}
._13{width:6.965700px;}
._16{width:8.238300px;}
._10{width:9.553650px;}
._f{width:10.563450px;}
._15{width:26.492400px;}
._14{width:30.990900px;}
._12{width:1320.611400px;}
.fc5{color:rgb(255,0,0);}
.fc7{color:rgb(0,112,192);}
.fc6{color:rgb(8,9,250);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(192,0,0);}
.fc8{color:rgb(217,217,217);}
.fc4{color:rgb(191,191,191);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs12{font-size:72.150000px;}
.fs5{font-size:81.150000px;}
.fsc{font-size:85.500000px;}
.fs11{font-size:85.650000px;}
.fsb{font-size:90.150000px;}
.fsd{font-size:94.500000px;}
.fs10{font-size:94.650000px;}
.fs9{font-size:103.650000px;}
.fs7{font-size:108.150000px;}
.fs3{font-size:112.650000px;}
.fs6{font-size:121.650000px;}
.fsa{font-size:130.650000px;}
.fs8{font-size:130.800000px;}
.fse{font-size:144.150000px;}
.fsf{font-size:144.300000px;}
.fs2{font-size:166.650000px;}
.fs4{font-size:166.800000px;}
.fs1{font-size:265.800000px;}
.fs0{font-size:265.950000px;}
.y0{bottom:0.000000px;}
.ya{bottom:12.562500px;}
.y81{bottom:14.850000px;}
.yc{bottom:15.337500px;}
.y52{bottom:15.750000px;}
.y8b{bottom:24.562500px;}
.y1f{bottom:25.875000px;}
.y45{bottom:32.587500px;}
.y22{bottom:33.637500px;}
.y7a{bottom:34.837500px;}
.y60{bottom:34.875000px;}
.y31{bottom:36.000000px;}
.y7e{bottom:40.350000px;}
.y67{bottom:43.162500px;}
.y9{bottom:44.100000px;}
.y38{bottom:46.612500px;}
.y85{bottom:47.212500px;}
.yb{bottom:48.000000px;}
.y73{bottom:49.462500px;}
.y20{bottom:56.212500px;}
.y6b{bottom:58.537500px;}
.y30{bottom:65.287500px;}
.y21{bottom:76.425000px;}
.y8{bottom:76.762500px;}
.y37{bottom:78.150000px;}
.y1d{bottom:80.475000px;}
.y44{bottom:82.125000px;}
.y2f{bottom:93.450000px;}
.y79{bottom:100.800000px;}
.y76{bottom:101.550000px;}
.y66{bottom:109.237500px;}
.y63{bottom:109.987500px;}
.y7d{bottom:112.462500px;}
.y51{bottom:118.875000px;}
.y36{bottom:122.100000px;}
.y2e{bottom:126.150000px;}
.y1c{bottom:126.637500px;}
.y6a{bottom:130.612500px;}
.y5e{bottom:140.962500px;}
.y78{bottom:144.750000px;}
.y75{bottom:145.500000px;}
.y99{bottom:151.305000px;}
.y65{bottom:153.150000px;}
.y62{bottom:153.900000px;}
.y1b{bottom:158.175000px;}
.y92{bottom:158.250000px;}
.y2d{bottom:168.930000px;}
.y50{bottom:169.575000px;}
.y5d{bottom:172.500000px;}
.y77{bottom:187.530000px;}
.y74{bottom:188.295000px;}
.y7{bottom:190.845000px;}
.y64{bottom:195.975000px;}
.y61{bottom:196.725000px;}
.y7c{bottom:199.200000px;}
.y98{bottom:200.880000px;}
.y1a{bottom:205.500000px;}
.y6{bottom:207.855000px;}
.y2c{bottom:212.880000px;}
.y69{bottom:217.350000px;}
.y4f{bottom:220.275000px;}
.y19{bottom:237.045000px;}
.y7b{bottom:241.980000px;}
.y5{bottom:255.195000px;}
.y68{bottom:260.175000px;}
.y91{bottom:264.675000px;}
.y4e{bottom:270.975000px;}
.y5c{bottom:275.505000px;}
.y18{bottom:283.245000px;}
.y3c{bottom:283.800000px;}
.y97{bottom:302.280000px;}
.y8a{bottom:303.000000px;}
.y5b{bottom:308.175000px;}
.y90{bottom:315.375000px;}
.y17{bottom:315.900000px;}
.y3b{bottom:319.830000px;}
.y4{bottom:320.505000px;}
.y4d{bottom:321.675000px;}
.y2b{bottom:336.570000px;}
.y5a{bottom:340.845000px;}
.y1e{bottom:348.225000px;}
.y96{bottom:352.950000px;}
.y3a{bottom:353.625000px;}
.y16{bottom:362.100000px;}
.y2a{bottom:369.225000px;}
.y4c{bottom:371.250000px;}
.y59{bottom:372.375000px;}
.y89{bottom:375.105000px;}
.y3{bottom:381.345000px;}
.y84{bottom:382.725000px;}
.y39{bottom:386.325000px;}
.y15{bottom:393.630000px;}
.y86{bottom:397.905000px;}
.y58{bottom:405.075000px;}
.y29{bottom:412.050000px;}
.y8f{bottom:421.755000px;}
.y4b{bottom:421.905000px;}
.y57{bottom:437.745000px;}
.y14{bottom:440.970000px;}
.y43{bottom:450.630000px;}
.y95{bottom:453.225000px;}
.y72{bottom:455.220000px;}
.y28{bottom:455.955000px;}
.y83{bottom:458.175000px;}
.y88{bottom:461.850000px;}
.y56{bottom:470.400000px;}
.y23{bottom:472.050000px;}
.y8e{bottom:472.470000px;}
.y13{bottom:472.500000px;}
.y4a{bottom:472.620000px;}
.y42{bottom:482.175000px;}
.y71{bottom:486.750000px;}
.y2{bottom:493.245000px;}
.y41{bottom:497.475000px;}
.y55{bottom:503.070000px;}
.y87{bottom:504.630000px;}
.y82{bottom:514.575000px;}
.y12{bottom:518.700000px;}
.y5f{bottom:520.050000px;}
.y49{bottom:523.320000px;}
.y70{bottom:528.195000px;}
.y40{bottom:530.130000px;}
.y54{bottom:534.600000px;}
.y35{bottom:545.625000px;}
.y11{bottom:550.245000px;}
.y94{bottom:554.625000px;}
.y27{bottom:562.425000px;}
.y1{bottom:564.225000px;}
.y48{bottom:574.005000px;}
.y34{bottom:578.280000px;}
.y6d{bottom:581.100000px;}
.y10{bottom:582.900000px;}
.y26{bottom:590.595000px;}
.y53{bottom:602.220000px;}
.y93{bottom:605.325000px;}
.y3f{bottom:607.725000px;}
.y8c{bottom:610.995000px;}
.y80{bottom:619.095000px;}
.y33{bottom:621.120000px;}
.y25{bottom:622.125000px;}
.y47{bottom:623.595000px;}
.y6c{bottom:625.005000px;}
.yf{bottom:627.975000px;}
.y6f{bottom:632.880000px;}
.ye{bottom:653.880000px;}
.y3e{bottom:657.300000px;}
.y24{bottom:661.575000px;}
.y7f{bottom:663.030000px;}
.y32{bottom:665.070000px;}
.y6e{bottom:676.845000px;}
.y46{bottom:679.875000px;}
.y8d{bottom:745.200000px;}
.yd{bottom:748.350000px;}
.y3d{bottom:749.325000px;}
.he{height:64.125000px;}
.h5{height:74.302910px;}
.h6{height:74.362910px;}
.h1c{height:77.787598px;}
.h1e{height:81.112500px;}
.h8{height:83.066382px;}
.h10{height:85.825195px;}
.h15{height:85.961426px;}
.h21{height:93.992432px;}
.h1f{height:94.141626px;}
.h7{height:98.222168px;}
.hb{height:103.093286px;}
.hf{height:107.569116px;}
.h17{height:110.482910px;}
.h14{height:118.656738px;}
.hd{height:118.792969px;}
.h25{height:124.987500px;}
.hc{height:129.948267px;}
.ha{height:130.097461px;}
.h13{height:130.917480px;}
.h16{height:131.053711px;}
.h20{height:143.375757px;}
.h1d{height:143.524951px;}
.h11{height:147.598901px;}
.h12{height:147.752490px;}
.h1b{height:151.352051px;}
.h19{height:151.488281px;}
.h4{height:151.809082px;}
.h3{height:151.929082px;}
.h24{height:165.754907px;}
.h23{height:165.904102px;}
.h1a{height:167.822168px;}
.h9{height:170.637231px;}
.h18{height:170.790820px;}
.h2{height:205.969043px;}
.h1{height:206.085278px;}
.h22{height:240.117480px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x35{left:27.299979px;}
.xc{left:30.862479px;}
.x7{left:34.049979px;}
.x1b{left:51.074979px;}
.xd{left:55.837479px;}
.xe{left:59.812479px;}
.x1f{left:63.299979px;}
.x63{left:67.424979px;}
.x19{left:70.537479px;}
.x1c{left:77.324979px;}
.x1e{left:80.812479px;}
.xf{left:86.812479px;}
.x1a{left:88.012479px;}
.x1d{left:93.449979px;}
.x64{left:96.374979px;}
.x14{left:100.499979px;}
.x18{left:109.349979px;}
.xb{left:110.549979px;}
.x4d{left:117.562479px;}
.x3e{left:121.312479px;}
.x16{left:124.499979px;}
.x4c{left:130.912479px;}
.x30{left:134.699979px;}
.x39{left:136.237479px;}
.x20{left:143.887479px;}
.x31{left:148.724979px;}
.x15{left:150.674979px;}
.x2{left:177.869979px;}
.x17{left:182.399979px;}
.x3a{left:196.274979px;}
.x3d{left:203.624979px;}
.x3c{left:208.199979px;}
.x59{left:214.124979px;}
.x2b{left:253.799979px;}
.x5a{left:279.269979px;}
.x5f{left:295.754979px;}
.x49{left:298.349979px;}
.x2c{left:332.444979px;}
.x3{left:341.399979px;}
.x4{left:344.504979px;}
.x2d{left:357.419979px;}
.x5{left:362.999979px;}
.x9{left:382.154979px;}
.x55{left:383.204979px;}
.x62{left:401.069979px;}
.x45{left:402.869979px;}
.x8{left:406.319979px;}
.x6{left:464.654979px;}
.x1{left:490.049979px;}
.x2e{left:509.444979px;}
.x33{left:516.149979px;}
.xa{left:534.644979px;}
.x2f{left:551.069979px;}
.x34{left:556.649979px;}
.x51{left:567.149979px;}
.x5c{left:574.454979px;}
.x13{left:576.899979px;}
.x41{left:582.404979px;}
.x5b{left:586.769979px;}
.x50{left:622.244979px;}
.x40{left:637.499979px;}
.x4f{left:649.649979px;}
.x24{left:659.324979px;}
.x3f{left:664.904979px;}
.x26{left:700.424979px;}
.x10{left:739.604979px;}
.x25{left:741.449979px;}
.x4a{left:769.754979px;}
.x4b{left:784.724979px;}
.x11{left:847.169979px;}
.x22{left:859.649979px;}
.x29{left:904.949979px;}
.x21{left:916.904979px;}
.x27{left:939.944979px;}
.x5e{left:941.699979px;}
.x23{left:944.024979px;}
.x57{left:966.524979px;}
.x60{left:968.444979px;}
.x28{left:970.574979px;}
.x46{left:972.149979px;}
.x56{left:975.449979px;}
.x47{left:976.829979px;}
.x36{left:982.874979px;}
.x2a{left:1002.674979px;}
.x37{left:1013.849979px;}
.x54{left:1032.194979px;}
.x61{left:1036.199979px;}
.x48{left:1039.874979px;}
.x58{left:1043.219979px;}
.x5d{left:1050.044979px;}
.x44{left:1053.374979px;}
.x53{left:1055.474979px;}
.x3b{left:1066.799979px;}
.x32{left:1070.294979px;}
.x43{left:1076.699979px;}
.x4e{left:1083.674979px;}
.x52{left:1111.199979px;}
.x38{left:1121.924979px;}
.x42{left:1132.424979px;}
.x12{left:1421.624979px;}
@media print{
.v7{vertical-align:-65.066667pt;}
.v2{vertical-align:-44.106667pt;}
.v3{vertical-align:-32.160000pt;}
.v9{vertical-align:-28.000000pt;}
.v4{vertical-align:-24.000000pt;}
.v8{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.000000pt;}
.va{vertical-align:28.000000pt;}
.vb{vertical-align:40.133333pt;}
.v1{vertical-align:44.106667pt;}
.v6{vertical-align:61.866667pt;}
.vc{vertical-align:97.066667pt;}
.ls4{letter-spacing:-10.506667pt;}
.ls7{letter-spacing:-8.106667pt;}
.ls8{letter-spacing:-8.000000pt;}
.ls2c{letter-spacing:-1.029333pt;}
.ls20{letter-spacing:-0.965333pt;}
.ls37{letter-spacing:-0.896000pt;}
.ls44{letter-spacing:-0.885333pt;}
.ls3b{letter-spacing:-0.741333pt;}
.ls1e{letter-spacing:-0.666667pt;}
.ls12{letter-spacing:-0.440000pt;}
.ls1d{letter-spacing:-0.225600pt;}
.ls5{letter-spacing:-0.001333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.123200pt;}
.ls6{letter-spacing:0.131733pt;}
.ls31{letter-spacing:0.185333pt;}
.ls26{letter-spacing:0.189333pt;}
.ls0{letter-spacing:0.213333pt;}
.ls2e{letter-spacing:0.226000pt;}
.ls36{letter-spacing:0.256533pt;}
.ls22{letter-spacing:0.279333pt;}
.ls2{letter-spacing:0.288400pt;}
.ls25{letter-spacing:0.322667pt;}
.ls3d{letter-spacing:0.345333pt;}
.ls9{letter-spacing:0.376000pt;}
.ls33{letter-spacing:0.398667pt;}
.ls2f{letter-spacing:0.439333pt;}
.ls23{letter-spacing:0.651067pt;}
.ls3c{letter-spacing:0.704400pt;}
.ls34{letter-spacing:0.718667pt;}
.ls3e{letter-spacing:0.772000pt;}
.lsf{letter-spacing:0.810667pt;}
.ls24{letter-spacing:0.811067pt;}
.lsd{letter-spacing:0.832267pt;}
.ls32{letter-spacing:0.878667pt;}
.lse{letter-spacing:0.885600pt;}
.ls19{letter-spacing:0.896267pt;}
.ls10{letter-spacing:0.944000pt;}
.ls11{letter-spacing:0.976000pt;}
.ls3a{letter-spacing:1.029333pt;}
.lsc{letter-spacing:1.253333pt;}
.ls38{letter-spacing:2.101333pt;}
.ls18{letter-spacing:2.218667pt;}
.ls13{letter-spacing:2.229333pt;}
.ls27{letter-spacing:2.234667pt;}
.ls45{letter-spacing:2.869333pt;}
.ls43{letter-spacing:3.002667pt;}
.ls1b{letter-spacing:22.098933pt;}
.ls28{letter-spacing:22.152267pt;}
.ls1a{letter-spacing:22.258933pt;}
.ls1{letter-spacing:24.213333pt;}
.ls29{letter-spacing:26.573333pt;}
.ls39{letter-spacing:26.600000pt;}
.ls1c{letter-spacing:26.626667pt;}
.ls2b{letter-spacing:28.816533pt;}
.ls2a{letter-spacing:28.923200pt;}
.ls1f{letter-spacing:28.989600pt;}
.ls21{letter-spacing:29.344400pt;}
.ls2d{letter-spacing:29.451067pt;}
.ls30{letter-spacing:29.518667pt;}
.ls42{letter-spacing:34.869600pt;}
.ls41{letter-spacing:34.909867pt;}
.ls40{letter-spacing:34.963200pt;}
.ls3f{letter-spacing:35.016533pt;}
.ls15{letter-spacing:38.026667pt;}
.ls17{letter-spacing:38.186667pt;}
.lsa{letter-spacing:42.749867pt;}
.lsb{letter-spacing:42.810933pt;}
.ls14{letter-spacing:92.106667pt;}
.ls16{letter-spacing:92.153333pt;}
.ls46{letter-spacing:92.240000pt;}
.ls47{letter-spacing:92.286667pt;}
.ws6{word-spacing:-80.133333pt;}
.ws1d{word-spacing:-40.069333pt;}
.ws1e{word-spacing:-39.936000pt;}
.ws2{word-spacing:-37.066667pt;}
.ws1{word-spacing:-37.033333pt;}
.ws1f{word-spacing:-33.508267pt;}
.wsd{word-spacing:-33.478133pt;}
.ws17{word-spacing:-32.066667pt;}
.wsa{word-spacing:-32.033333pt;}
.ws8{word-spacing:-30.042667pt;}
.wsf{word-spacing:-28.988267pt;}
.ws15{word-spacing:-28.958133pt;}
.ws1b{word-spacing:-28.092267pt;}
.ws16{word-spacing:-27.992800pt;}
.ws1a{word-spacing:-27.958933pt;}
.ws3{word-spacing:-27.033333pt;}
.ws7{word-spacing:-26.246133pt;}
.ws0{word-spacing:-25.033333pt;}
.ws4{word-spacing:-24.321733pt;}
.wsb{word-spacing:-24.033333pt;}
.ws10{word-spacing:-21.726133pt;}
.ws9{word-spacing:-21.000000pt;}
.wse{word-spacing:-19.033333pt;}
.ws12{word-spacing:-0.096133pt;}
.ws5{word-spacing:0.000000pt;}
.ws11{word-spacing:1.533867pt;}
.ws13{word-spacing:7.058267pt;}
.ws18{word-spacing:7.186533pt;}
.ws14{word-spacing:7.498800pt;}
.ws19{word-spacing:7.627067pt;}
.wsc{word-spacing:375.170400pt;}
.ws1c{word-spacing:502.107333pt;}
._5{margin-left:-15.660667pt;}
._e{margin-left:-13.539733pt;}
._c{margin-left:-11.355733pt;}
._8{margin-left:-10.454267pt;}
._a{margin-left:-9.411867pt;}
._d{margin-left:-8.330667pt;}
._7{margin-left:-7.110400pt;}
._3{margin-left:-5.669467pt;}
._b{margin-left:-4.640133pt;}
._4{margin-left:-3.570667pt;}
._1{margin-left:-2.600400pt;}
._0{margin-left:-1.654800pt;}
._2{width:1.417600pt;}
._9{width:2.513600pt;}
._6{width:3.411733pt;}
._11{width:4.828533pt;}
._13{width:6.191733pt;}
._16{width:7.322933pt;}
._10{width:8.492133pt;}
._f{width:9.389733pt;}
._15{width:23.548800pt;}
._14{width:27.547467pt;}
._12{width:1173.876800pt;}
.fs12{font-size:64.133333pt;}
.fs5{font-size:72.133333pt;}
.fsc{font-size:76.000000pt;}
.fs11{font-size:76.133333pt;}
.fsb{font-size:80.133333pt;}
.fsd{font-size:84.000000pt;}
.fs10{font-size:84.133333pt;}
.fs9{font-size:92.133333pt;}
.fs7{font-size:96.133333pt;}
.fs3{font-size:100.133333pt;}
.fs6{font-size:108.133333pt;}
.fsa{font-size:116.133333pt;}
.fs8{font-size:116.266667pt;}
.fse{font-size:128.133333pt;}
.fsf{font-size:128.266667pt;}
.fs2{font-size:148.133333pt;}
.fs4{font-size:148.266667pt;}
.fs1{font-size:236.266667pt;}
.fs0{font-size:236.400000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:11.166667pt;}
.y81{bottom:13.200000pt;}
.yc{bottom:13.633333pt;}
.y52{bottom:14.000000pt;}
.y8b{bottom:21.833333pt;}
.y1f{bottom:23.000000pt;}
.y45{bottom:28.966667pt;}
.y22{bottom:29.900000pt;}
.y7a{bottom:30.966667pt;}
.y60{bottom:31.000000pt;}
.y31{bottom:32.000000pt;}
.y7e{bottom:35.866667pt;}
.y67{bottom:38.366667pt;}
.y9{bottom:39.200000pt;}
.y38{bottom:41.433333pt;}
.y85{bottom:41.966667pt;}
.yb{bottom:42.666667pt;}
.y73{bottom:43.966667pt;}
.y20{bottom:49.966667pt;}
.y6b{bottom:52.033333pt;}
.y30{bottom:58.033333pt;}
.y21{bottom:67.933333pt;}
.y8{bottom:68.233333pt;}
.y37{bottom:69.466667pt;}
.y1d{bottom:71.533333pt;}
.y44{bottom:73.000000pt;}
.y2f{bottom:83.066667pt;}
.y79{bottom:89.600000pt;}
.y76{bottom:90.266667pt;}
.y66{bottom:97.100000pt;}
.y63{bottom:97.766667pt;}
.y7d{bottom:99.966667pt;}
.y51{bottom:105.666667pt;}
.y36{bottom:108.533333pt;}
.y2e{bottom:112.133333pt;}
.y1c{bottom:112.566667pt;}
.y6a{bottom:116.100000pt;}
.y5e{bottom:125.300000pt;}
.y78{bottom:128.666667pt;}
.y75{bottom:129.333333pt;}
.y99{bottom:134.493333pt;}
.y65{bottom:136.133333pt;}
.y62{bottom:136.800000pt;}
.y1b{bottom:140.600000pt;}
.y92{bottom:140.666667pt;}
.y2d{bottom:150.160000pt;}
.y50{bottom:150.733333pt;}
.y5d{bottom:153.333333pt;}
.y77{bottom:166.693333pt;}
.y74{bottom:167.373333pt;}
.y7{bottom:169.640000pt;}
.y64{bottom:174.200000pt;}
.y61{bottom:174.866667pt;}
.y7c{bottom:177.066667pt;}
.y98{bottom:178.560000pt;}
.y1a{bottom:182.666667pt;}
.y6{bottom:184.760000pt;}
.y2c{bottom:189.226667pt;}
.y69{bottom:193.200000pt;}
.y4f{bottom:195.800000pt;}
.y19{bottom:210.706667pt;}
.y7b{bottom:215.093333pt;}
.y5{bottom:226.840000pt;}
.y68{bottom:231.266667pt;}
.y91{bottom:235.266667pt;}
.y4e{bottom:240.866667pt;}
.y5c{bottom:244.893333pt;}
.y18{bottom:251.773333pt;}
.y3c{bottom:252.266667pt;}
.y97{bottom:268.693333pt;}
.y8a{bottom:269.333333pt;}
.y5b{bottom:273.933333pt;}
.y90{bottom:280.333333pt;}
.y17{bottom:280.800000pt;}
.y3b{bottom:284.293333pt;}
.y4{bottom:284.893333pt;}
.y4d{bottom:285.933333pt;}
.y2b{bottom:299.173333pt;}
.y5a{bottom:302.973333pt;}
.y1e{bottom:309.533333pt;}
.y96{bottom:313.733333pt;}
.y3a{bottom:314.333333pt;}
.y16{bottom:321.866667pt;}
.y2a{bottom:328.200000pt;}
.y4c{bottom:330.000000pt;}
.y59{bottom:331.000000pt;}
.y89{bottom:333.426667pt;}
.y3{bottom:338.973333pt;}
.y84{bottom:340.200000pt;}
.y39{bottom:343.400000pt;}
.y15{bottom:349.893333pt;}
.y86{bottom:353.693333pt;}
.y58{bottom:360.066667pt;}
.y29{bottom:366.266667pt;}
.y8f{bottom:374.893333pt;}
.y4b{bottom:375.026667pt;}
.y57{bottom:389.106667pt;}
.y14{bottom:391.973333pt;}
.y43{bottom:400.560000pt;}
.y95{bottom:402.866667pt;}
.y72{bottom:404.640000pt;}
.y28{bottom:405.293333pt;}
.y83{bottom:407.266667pt;}
.y88{bottom:410.533333pt;}
.y56{bottom:418.133333pt;}
.y23{bottom:419.600000pt;}
.y8e{bottom:419.973333pt;}
.y13{bottom:420.000000pt;}
.y4a{bottom:420.106667pt;}
.y42{bottom:428.600000pt;}
.y71{bottom:432.666667pt;}
.y2{bottom:438.440000pt;}
.y41{bottom:442.200000pt;}
.y55{bottom:447.173333pt;}
.y87{bottom:448.560000pt;}
.y82{bottom:457.400000pt;}
.y12{bottom:461.066667pt;}
.y5f{bottom:462.266667pt;}
.y49{bottom:465.173333pt;}
.y70{bottom:469.506667pt;}
.y40{bottom:471.226667pt;}
.y54{bottom:475.200000pt;}
.y35{bottom:485.000000pt;}
.y11{bottom:489.106667pt;}
.y94{bottom:493.000000pt;}
.y27{bottom:499.933333pt;}
.y1{bottom:501.533333pt;}
.y48{bottom:510.226667pt;}
.y34{bottom:514.026667pt;}
.y6d{bottom:516.533333pt;}
.y10{bottom:518.133333pt;}
.y26{bottom:524.973333pt;}
.y53{bottom:535.306667pt;}
.y93{bottom:538.066667pt;}
.y3f{bottom:540.200000pt;}
.y8c{bottom:543.106667pt;}
.y80{bottom:550.306667pt;}
.y33{bottom:552.106667pt;}
.y25{bottom:553.000000pt;}
.y47{bottom:554.306667pt;}
.y6c{bottom:555.560000pt;}
.yf{bottom:558.200000pt;}
.y6f{bottom:562.560000pt;}
.ye{bottom:581.226667pt;}
.y3e{bottom:584.266667pt;}
.y24{bottom:588.066667pt;}
.y7f{bottom:589.360000pt;}
.y32{bottom:591.173333pt;}
.y6e{bottom:601.640000pt;}
.y46{bottom:604.333333pt;}
.y8d{bottom:662.400000pt;}
.yd{bottom:665.200000pt;}
.y3d{bottom:666.066667pt;}
.he{height:57.000000pt;}
.h5{height:66.047031pt;}
.h6{height:66.100365pt;}
.h1c{height:69.144531pt;}
.h1e{height:72.100000pt;}
.h8{height:73.836784pt;}
.h10{height:76.289063pt;}
.h15{height:76.410156pt;}
.h21{height:83.548828pt;}
.h1f{height:83.681445pt;}
.h7{height:87.308594pt;}
.hb{height:91.638477pt;}
.hf{height:95.616992pt;}
.h17{height:98.207031pt;}
.h14{height:105.472656pt;}
.hd{height:105.593750pt;}
.h25{height:111.100000pt;}
.hc{height:115.509570pt;}
.ha{height:115.642188pt;}
.h13{height:116.371094pt;}
.h16{height:116.492188pt;}
.h20{height:127.445117pt;}
.h1d{height:127.577734pt;}
.h11{height:131.199023pt;}
.h12{height:131.335547pt;}
.h1b{height:134.535156pt;}
.h19{height:134.656250pt;}
.h4{height:134.941406pt;}
.h3{height:135.048073pt;}
.h24{height:147.337695pt;}
.h23{height:147.470313pt;}
.h1a{height:149.175260pt;}
.h9{height:151.677539pt;}
.h18{height:151.814063pt;}
.h2{height:183.083594pt;}
.h1{height:183.186914pt;}
.h22{height:213.437760pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x35{left:24.266648pt;}
.xc{left:27.433314pt;}
.x7{left:30.266648pt;}
.x1b{left:45.399981pt;}
.xd{left:49.633314pt;}
.xe{left:53.166648pt;}
.x1f{left:56.266648pt;}
.x63{left:59.933314pt;}
.x19{left:62.699981pt;}
.x1c{left:68.733314pt;}
.x1e{left:71.833314pt;}
.xf{left:77.166648pt;}
.x1a{left:78.233314pt;}
.x1d{left:83.066648pt;}
.x64{left:85.666648pt;}
.x14{left:89.333314pt;}
.x18{left:97.199981pt;}
.xb{left:98.266648pt;}
.x4d{left:104.499981pt;}
.x3e{left:107.833314pt;}
.x16{left:110.666648pt;}
.x4c{left:116.366648pt;}
.x30{left:119.733314pt;}
.x39{left:121.099981pt;}
.x20{left:127.899981pt;}
.x31{left:132.199981pt;}
.x15{left:133.933314pt;}
.x2{left:158.106648pt;}
.x17{left:162.133314pt;}
.x3a{left:174.466648pt;}
.x3d{left:180.999981pt;}
.x3c{left:185.066648pt;}
.x59{left:190.333314pt;}
.x2b{left:225.599981pt;}
.x5a{left:248.239981pt;}
.x5f{left:262.893314pt;}
.x49{left:265.199981pt;}
.x2c{left:295.506648pt;}
.x3{left:303.466648pt;}
.x4{left:306.226648pt;}
.x2d{left:317.706648pt;}
.x5{left:322.666648pt;}
.x9{left:339.693314pt;}
.x55{left:340.626648pt;}
.x62{left:356.506648pt;}
.x45{left:358.106648pt;}
.x8{left:361.173314pt;}
.x6{left:413.026648pt;}
.x1{left:435.599981pt;}
.x2e{left:452.839981pt;}
.x33{left:458.799981pt;}
.xa{left:475.239981pt;}
.x2f{left:489.839981pt;}
.x34{left:494.799981pt;}
.x51{left:504.133314pt;}
.x5c{left:510.626648pt;}
.x13{left:512.799981pt;}
.x41{left:517.693314pt;}
.x5b{left:521.573314pt;}
.x50{left:553.106648pt;}
.x40{left:566.666648pt;}
.x4f{left:577.466648pt;}
.x24{left:586.066648pt;}
.x3f{left:591.026648pt;}
.x26{left:622.599981pt;}
.x10{left:657.426648pt;}
.x25{left:659.066648pt;}
.x4a{left:684.226648pt;}
.x4b{left:697.533314pt;}
.x11{left:753.039981pt;}
.x22{left:764.133314pt;}
.x29{left:804.399981pt;}
.x21{left:815.026648pt;}
.x27{left:835.506648pt;}
.x5e{left:837.066648pt;}
.x23{left:839.133314pt;}
.x57{left:859.133314pt;}
.x60{left:860.839981pt;}
.x28{left:862.733314pt;}
.x46{left:864.133314pt;}
.x56{left:867.066648pt;}
.x47{left:868.293314pt;}
.x36{left:873.666648pt;}
.x2a{left:891.266648pt;}
.x37{left:901.199981pt;}
.x54{left:917.506648pt;}
.x61{left:921.066648pt;}
.x48{left:924.333314pt;}
.x58{left:927.306648pt;}
.x5d{left:933.373314pt;}
.x44{left:936.333314pt;}
.x53{left:938.199981pt;}
.x3b{left:948.266648pt;}
.x32{left:951.373314pt;}
.x43{left:957.066648pt;}
.x4e{left:963.266648pt;}
.x52{left:987.733314pt;}
.x38{left:997.266648pt;}
.x42{left:1006.599981pt;}
.x12{left:1263.666648pt;}
}




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