
    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_e85152305418dc8e342b0575.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112322;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_8044e9d490fd994a5ac55117.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982910;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_69495e28a1e323e731b86228.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084473;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_c7c4b6199534fc01a9f0890d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ca18441c50fa690953018698.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112322;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_dc5b2c98aa36feb69cfc04cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_3b5525d605da23706cf74860.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.082520;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_875b8c1d583a7043a53f09e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_b325d4b73b2a12ea35841b90.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975098;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_047a934f013df743394be80f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.975098;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_49ef50c58f9819f25afa5469.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.982910;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_ae8b723a563affa606ac32d9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861328;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_ba3aed10af1836f073570d9a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.859863;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_c7c1730d55324b41cd74cf38.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.372070;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_500d7eee6a996e57c530e572.woff2')format("woff");}.fff{font-family:fff;line-height:1.099609;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_0596a4e666b2d85105300b93.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.099609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3870f370e129be0a4c5120e0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_437007730b088d30d92e2db3.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.180664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_539fc7db1e7f28d8197cd7b4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.180664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2a54704d3e217c7765172a2d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.954590;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);}
.v0{vertical-align:0.000000px;}
.ls38{letter-spacing:-0.474600px;}
.ls26{letter-spacing:-0.367200px;}
.ls1{letter-spacing:-0.348600px;}
.ls10{letter-spacing:-0.327600px;}
.lsf{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.252600px;}
.ls1b{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.180600px;}
.ls37{letter-spacing:-0.177600px;}
.lse{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.144000px;}
.ls27{letter-spacing:-0.129600px;}
.ls25{letter-spacing:-0.076200px;}
.ls36{letter-spacing:-0.069600px;}
.ls24{letter-spacing:-0.003306px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.012660px;}
.ls30{letter-spacing:0.051840px;}
.ls1a{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.093600px;}
.ls2e{letter-spacing:0.122400px;}
.ls28{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.180000px;}
.ls39{letter-spacing:0.204600px;}
.lsd{letter-spacing:0.213000px;}
.ls1c{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.222000px;}
.ls32{letter-spacing:0.281400px;}
.ls8{letter-spacing:0.311040px;}
.ls7{letter-spacing:0.359760px;}
.ls19{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.380400px;}
.ls18{letter-spacing:0.500400px;}
.ls31{letter-spacing:0.918000px;}
.ls2f{letter-spacing:1.020000px;}
.ls1f{letter-spacing:8.386560px;}
.ls1e{letter-spacing:8.481600px;}
.ls20{letter-spacing:19.344960px;}
.ls21{letter-spacing:19.440000px;}
.ls2c{letter-spacing:24.519360px;}
.ls34{letter-spacing:24.543360px;}
.ls2b{letter-spacing:24.614400px;}
.ls35{letter-spacing:24.638400px;}
.ls5{letter-spacing:33.523392px;}
.ls3{letter-spacing:33.579120px;}
.ls1d{letter-spacing:35.002560px;}
.ls23{letter-spacing:35.026560px;}
.ls22{letter-spacing:35.121600px;}
.ls15{letter-spacing:35.146560px;}
.ls16{letter-spacing:35.241600px;}
.ls14{letter-spacing:66.864960px;}
.ls13{letter-spacing:66.960000px;}
.ls12{letter-spacing:67.008960px;}
.ls11{letter-spacing:67.104000px;}
.lsb{letter-spacing:87.547392px;}
.lsc{letter-spacing:87.603120px;}
.ls2{letter-spacing:97.021152px;}
.ls6{letter-spacing:97.076880px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-167.760000px;}
.ws23{word-spacing:-157.800240px;}
.ws1c{word-spacing:-114.742656px;}
.ws1b{word-spacing:-114.680160px;}
.ws1e{word-spacing:-89.021664px;}
.ws1d{word-spacing:-79.050816px;}
.ws1a{word-spacing:-79.007760px;}
.ws5{word-spacing:-72.870336px;}
.ws4{word-spacing:-72.807840px;}
.ws20{word-spacing:-65.758800px;}
.ws22{word-spacing:-65.692080px;}
.ws1f{word-spacing:-64.861200px;}
.ws21{word-spacing:-64.825920px;}
.ws1{word-spacing:-57.573360px;}
.ws2{word-spacing:-57.522816px;}
.ws7{word-spacing:-57.479760px;}
.wse{word-spacing:-48.816000px;}
.ws6{word-spacing:-46.469520px;}
.ws15{word-spacing:-44.568000px;}
.ws13{word-spacing:-44.522358px;}
.ws14{word-spacing:-44.449464px;}
.wsd{word-spacing:-43.478784px;}
.wsc{word-spacing:-43.446240px;}
.ws9{word-spacing:-43.099056px;}
.ws8{word-spacing:-43.056000px;}
.wsa{word-spacing:-41.747328px;}
.wsb{word-spacing:-41.716080px;}
.ws24{word-spacing:-41.646480px;}
.ws19{word-spacing:-41.586480px;}
.ws11{word-spacing:-40.562640px;}
.ws17{word-spacing:-39.631104px;}
.ws12{word-spacing:-39.601440px;}
.ws18{word-spacing:-39.471840px;}
.ws16{word-spacing:-39.234240px;}
.ws25{word-spacing:-36.226320px;}
.ws26{word-spacing:-35.960568px;}
.wsf{word-spacing:-29.700000px;}
.ws10{word-spacing:-29.484000px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-8.299200px;}
._3{margin-left:-3.482688px;}
._0{margin-left:-1.745280px;}
._1{width:1.296480px;}
._2{width:2.463648px;}
._5{width:25.645680px;}
.fc10{color:rgb(0,112,192);}
.fce{color:rgb(61,61,215);}
.fcd{color:rgb(204,236,255);}
.fcf{color:rgb(0,28,43);}
.fc0{color:rgb(0,153,204);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(0,102,204);}
.fc11{color:rgb(0,128,0);}
.fc8{color:rgb(0,176,240);}
.fc3{color:rgb(0,63,128);}
.fc4{color:rgb(153,51,255);}
.fca{color:rgb(0,0,41);}
.fcb{color:rgb(0,51,102);}
.fc7{color:rgb(255,192,0);}
.fc12{color:rgb(255,0,102);}
.fc6{color:rgb(0,204,102);}
.fc9{color:rgb(128,0,0);}
.fc5{color:transparent;}
.fcc{color:rgb(0,32,96);}
.fs5{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.fsb{font-size:144.000000px;}
.fsc{font-size:144.144000px;}
.fs9{font-size:167.760000px;}
.fs7{font-size:167.904000px;}
.fs4{font-size:192.240000px;}
.fs8{font-size:192.384000px;}
.fs3{font-size:216.000000px;}
.fs2{font-size:216.144000px;}
.fs1{font-size:264.240000px;}
.fs6{font-size:264.384000px;}
.fsa{font-size:288.000000px;}
.fse{font-size:288.144000px;}
.fsf{font-size:324.000000px;}
.fs10{font-size:432.000000px;}
.fs11{font-size:432.144000px;}
.fs0{font-size:480.384000px;}
.fs12{font-size:527.760000px;}
.ya5{bottom:-125.244000px;}
.ya4{bottom:-58.644000px;}
.y96{bottom:-43.524000px;}
.y0{bottom:0.000000px;}
.y95{bottom:18.216000px;}
.ya3{bottom:19.152000px;}
.y76{bottom:25.740000px;}
.y6e{bottom:30.060000px;}
.yb{bottom:46.692000px;}
.y62{bottom:48.708000px;}
.y68{bottom:58.752000px;}
.y39{bottom:64.584000px;}
.y1f{bottom:71.316000px;}
.y94{bottom:78.696000px;}
.y61{bottom:80.928000px;}
.ya{bottom:87.588000px;}
.y6d{bottom:87.660000px;}
.y67{bottom:91.008000px;}
.y75{bottom:94.860000px;}
.ya2{bottom:96.912000px;}
.y40{bottom:99.180000px;}
.y60{bottom:113.328000px;}
.y1e{bottom:114.516000px;}
.y38{bottom:116.460000px;}
.y26{bottom:119.772000px;}
.yb0{bottom:121.284000px;}
.y7a{bottom:121.860000px;}
.y66{bottom:123.408000px;}
.y83{bottom:123.696000px;}
.y15{bottom:131.292000px;}
.y89{bottom:133.740000px;}
.y93{bottom:139.212000px;}
.y50{bottom:143.028000px;}
.ya6{bottom:143.820000px;}
.y6c{bottom:145.260000px;}
.y5f{bottom:145.728000px;}
.y65{bottom:155.805000px;}
.y3f{bottom:156.780000px;}
.y1d{bottom:160.815000px;}
.y25{bottom:163.005000px;}
.y74{bottom:163.980000px;}
.y37{bottom:168.300000px;}
.y4f{bottom:175.290000px;}
.ya1{bottom:178.275000px;}
.yaf{bottom:181.770000px;}
.y64{bottom:188.205000px;}
.y92{bottom:189.615000px;}
.y79{bottom:191.370000px;}
.y9{bottom:194.370000px;}
.y6b{bottom:202.890000px;}
.y9a{bottom:206.670000px;}
.y4e{bottom:207.690000px;}
.y3e{bottom:214.410000px;}
.y1c{bottom:215.355000px;}
.y82{bottom:218.190000px;}
.y36{bottom:220.140000px;}
.y63{bottom:220.605000px;}
.ya8{bottom:228.810000px;}
.y14{bottom:230.190000px;}
.y73{bottom:233.130000px;}
.y4d{bottom:240.090000px;}
.yae{bottom:242.250000px;}
.y91{bottom:250.095000px;}
.y5b{bottom:250.815000px;}
.y8{bottom:259.170000px;}
.y78{bottom:260.490000px;}
.y2f{bottom:263.370000px;}
.y35{bottom:272.010000px;}
.y4c{bottom:272.490000px;}
.ya0{bottom:273.345000px;}
.y1b{bottom:283.110000px;}
.y5a{bottom:283.245000px;}
.y24{bottom:283.470000px;}
.y13{bottom:292.110000px;}
.y72{bottom:302.250000px;}
.yad{bottom:302.760000px;}
.y81{bottom:304.635000px;}
.y90{bottom:310.575000px;}
.y2e{bottom:315.210000px;}
.y59{bottom:315.645000px;}
.y7c{bottom:320.550000px;}
.y34{bottom:323.850000px;}
.y7{bottom:324.000000px;}
.y54{bottom:329.145000px;}
.y6a{bottom:329.610000px;}
.y1a{bottom:333.870000px;}
.y99{bottom:336.855000px;}
.y23{bottom:341.070000px;}
.y3d{bottom:341.130000px;}
.y58{bottom:348.045000px;}
.y12{bottom:349.710000px;}
.yac{bottom:353.160000px;}
.y2d{bottom:358.410000px;}
.y53{bottom:361.590000px;}
.y33{bottom:367.050000px;}
.y9f{bottom:368.385000px;}
.y8f{bottom:371.085000px;}
.y71{bottom:371.415000px;}
.y44{bottom:376.485000px;}
.y57{bottom:380.445000px;}
.y87{bottom:386.820000px;}
.y88{bottom:387.255000px;}
.y6{bottom:388.800000px;}
.y80{bottom:391.035000px;}
.y52{bottom:393.990000px;}
.y19{bottom:394.380000px;}
.y69{bottom:398.775000px;}
.y7b{bottom:399.780000px;}
.y22{bottom:410.220000px;}
.y2c{bottom:410.250000px;}
.y3c{bottom:410.295000px;}
.y56{bottom:412.845000px;}
.yab{bottom:413.640000px;}
.y11{bottom:418.860000px;}
.y32{bottom:418.890000px;}
.y4b{bottom:423.615000px;}
.y51{bottom:426.390000px;}
.ya7{bottom:430.125000px;}
.y8e{bottom:433.005000px;}
.y43{bottom:440.025000px;}
.y70{bottom:442.155000px;}
.y18{bottom:444.600000px;}
.y55{bottom:445.290000px;}
.y5{bottom:453.600000px;}
.y4a{bottom:456.015000px;}
.y77{bottom:456.375000px;}
.y2b{bottom:462.135000px;}
.y9e{bottom:463.470000px;}
.y98{bottom:465.225000px;}
.y86{bottom:466.230000px;}
.y3b{bottom:467.895000px;}
.y31{bottom:470.775000px;}
.yaa{bottom:475.590000px;}
.y7f{bottom:477.465000px;}
.y21{bottom:479.340000px;}
.y10{bottom:487.980000px;}
.y49{bottom:488.415000px;}
.y8d{bottom:490.605000px;}
.y42{bottom:497.625000px;}
.y17{bottom:505.260000px;}
.y2a{bottom:513.975000px;}
.y6f{bottom:519.915000px;}
.y48{bottom:520.815000px;}
.y4{bottom:521.670000px;}
.y46{bottom:524.055000px;}
.y3a{bottom:525.495000px;}
.y5e{bottom:527.145000px;}
.ya9{bottom:533.190000px;}
.y85{bottom:545.430000px;}
.y20{bottom:548.460000px;}
.y47{bottom:553.245000px;}
.y9d{bottom:554.910000px;}
.y41{bottom:555.270000px;}
.y16{bottom:555.480000px;}
.yf{bottom:555.660000px;}
.y5d{bottom:559.365000px;}
.y7e{bottom:563.865000px;}
.y29{bottom:565.410000px;}
.y30{bottom:568.050000px;}
.y8c{bottom:568.230000px;}
.yd{bottom:584.790000px;}
.y5c{bottom:591.765000px;}
.y97{bottom:594.870000px;}
.y3{bottom:600.870000px;}
.y9c{bottom:616.605000px;}
.ye{bottom:617.610000px;}
.y84{bottom:624.675000px;}
.y27{bottom:647.250000px;}
.y8b{bottom:647.430000px;}
.y45{bottom:649.290000px;}
.y7d{bottom:650.310000px;}
.yc{bottom:665.100000px;}
.y2{bottom:680.115000px;}
.y28{bottom:686.805000px;}
.y9b{bottom:694.905000px;}
.y8a{bottom:726.660000px;}
.y1{bottom:771.915000px;}
.h7{height:88.648303px;}
.h1e{height:93.392578px;}
.h20{height:93.517102px;}
.h17{height:104.062500px;}
.h14{height:104.166562px;}
.h15{height:105.187500px;}
.h16{height:105.292687px;}
.h21{height:111.006981px;}
.h1f{height:111.154991px;}
.he{height:115.382812px;}
.h10{height:115.498195px;}
.h11{height:118.197737px;}
.h12{height:118.315935px;}
.h28{height:122.543437px;}
.h29{height:122.648625px;}
.h1a{height:131.414062px;}
.h1b{height:131.512500px;}
.hc{height:137.700364px;}
.ha{height:137.818561px;}
.h19{height:140.425313px;}
.h18{height:140.530500px;}
.h23{height:141.551719px;}
.h32{height:145.757812px;}
.h2f{height:145.854984px;}
.hf{height:154.036055px;}
.h22{height:154.151438px;}
.h5{height:157.781250px;}
.h6{height:157.793979px;}
.hb{height:157.912177px;}
.h2a{height:172.430844px;}
.h4{height:173.074219px;}
.h3{height:173.189602px;}
.h30{height:178.310391px;}
.h31{height:178.407563px;}
.h2{height:193.019063px;}
.h1d{height:197.740436px;}
.h2e{height:211.727461px;}
.h1c{height:215.472656px;}
.h8{height:216.892848px;}
.h27{height:217.011045px;}
.hd{height:230.765625px;}
.h24{height:246.375000px;}
.h25{height:246.498188px;}
.h13{height:271.597081px;}
.h9{height:271.745090px;}
.h26{height:277.171875px;}
.h2c{height:346.263820px;}
.h2b{height:354.593211px;}
.h1{height:394.307651px;}
.h2d{height:444.175935px;}
.h33{height:493.759053px;}
.h34{height:542.454116px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xe{left:32.076000px;}
.x1b{left:64.872000px;}
.x19{left:69.192000px;}
.xd{left:72.576000px;}
.x2e{left:74.988000px;}
.x56{left:79.632000px;}
.x2b{left:80.748000px;}
.x2a{left:85.608000px;}
.x27{left:96.948000px;}
.x45{left:100.152000px;}
.x29{left:104.328000px;}
.x1c{left:105.408000px;}
.x2c{left:106.848000px;}
.x16{left:109.980000px;}
.x53{left:114.912000px;}
.x42{left:117.216000px;}
.x5b{left:119.916000px;}
.x52{left:126.576000px;}
.x18{left:128.700000px;}
.x54{left:136.512000px;}
.xf{left:140.076000px;}
.x4d{left:143.244000px;}
.x2d{left:145.008000px;}
.x12{left:146.196000px;}
.x28{left:155.805000px;}
.x43{left:157.710000px;}
.x21{left:159.015000px;}
.x9{left:160.230000px;}
.x10{left:167.070000px;}
.x17{left:170.640000px;}
.x4{left:173.010000px;}
.x4f{left:174.600000px;}
.x57{left:177.555000px;}
.x26{left:182.595000px;}
.x3{left:184.395000px;}
.x51{left:186.840000px;}
.x22{left:199.545000px;}
.x44{left:205.050000px;}
.x1a{left:216.465000px;}
.x7{left:226.875000px;}
.x4c{left:248.370000px;}
.xb{left:261.570000px;}
.x13{left:276.120000px;}
.x2{left:291.315000px;}
.x23{left:306.570000px;}
.x14{left:309.060000px;}
.x4a{left:314.430000px;}
.x20{left:315.900000px;}
.x25{left:318.990000px;}
.x50{left:322.380000px;}
.x11{left:341.670000px;}
.x55{left:351.465000px;}
.x47{left:358.200000px;}
.x48{left:362.160000px;}
.xa{left:369.975000px;}
.x5{left:388.155000px;}
.x4e{left:397.260000px;}
.x59{left:400.290000px;}
.x24{left:403.590000px;}
.x58{left:425.370000px;}
.x15{left:426.990000px;}
.x4b{left:437.400000px;}
.x5a{left:438.450000px;}
.x8{left:440.565000px;}
.x41{left:445.500000px;}
.x3e{left:453.240000px;}
.x49{left:461.520000px;}
.x31{left:474.225000px;}
.x30{left:493.125000px;}
.x2f{left:504.105000px;}
.x40{left:508.320000px;}
.x6{left:515.085000px;}
.x3f{left:522.540000px;}
.x1{left:556.665000px;}
.x1e{left:559.590000px;}
.xc{left:570.135000px;}
.x1f{left:600.090000px;}
.x46{left:608.970000px;}
.x3a{left:635.910000px;}
.x39{left:644.550000px;}
.x1d{left:718.380000px;}
.x3b{left:720.150000px;}
.x36{left:811.695000px;}
.x34{left:817.095000px;}
.x32{left:821.415000px;}
.x33{left:833.115000px;}
.x35{left:840.135000px;}
.x37{left:845.535000px;}
.x38{left:852.735000px;}
.x3d{left:859.935000px;}
.x3c{left:901.695000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls38{letter-spacing:-0.421867pt;}
.ls26{letter-spacing:-0.326400pt;}
.ls1{letter-spacing:-0.309867pt;}
.ls10{letter-spacing:-0.291200pt;}
.lsf{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.224533pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.160533pt;}
.ls37{letter-spacing:-0.157867pt;}
.lse{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls27{letter-spacing:-0.115200pt;}
.ls25{letter-spacing:-0.067733pt;}
.ls36{letter-spacing:-0.061867pt;}
.ls24{letter-spacing:-0.002939pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.011253pt;}
.ls30{letter-spacing:0.046080pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.083200pt;}
.ls2e{letter-spacing:0.108800pt;}
.ls28{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.160000pt;}
.ls39{letter-spacing:0.181867pt;}
.lsd{letter-spacing:0.189333pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.197333pt;}
.ls32{letter-spacing:0.250133pt;}
.ls8{letter-spacing:0.276480pt;}
.ls7{letter-spacing:0.319787pt;}
.ls19{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.338133pt;}
.ls18{letter-spacing:0.444800pt;}
.ls31{letter-spacing:0.816000pt;}
.ls2f{letter-spacing:0.906667pt;}
.ls1f{letter-spacing:7.454720pt;}
.ls1e{letter-spacing:7.539200pt;}
.ls20{letter-spacing:17.195520pt;}
.ls21{letter-spacing:17.280000pt;}
.ls2c{letter-spacing:21.794987pt;}
.ls34{letter-spacing:21.816320pt;}
.ls2b{letter-spacing:21.879467pt;}
.ls35{letter-spacing:21.900800pt;}
.ls5{letter-spacing:29.798571pt;}
.ls3{letter-spacing:29.848107pt;}
.ls1d{letter-spacing:31.113387pt;}
.ls23{letter-spacing:31.134720pt;}
.ls22{letter-spacing:31.219200pt;}
.ls15{letter-spacing:31.241387pt;}
.ls16{letter-spacing:31.325867pt;}
.ls14{letter-spacing:59.435520pt;}
.ls13{letter-spacing:59.520000pt;}
.ls12{letter-spacing:59.563520pt;}
.ls11{letter-spacing:59.648000pt;}
.lsb{letter-spacing:77.819904pt;}
.lsc{letter-spacing:77.869440pt;}
.ls2{letter-spacing:86.241024pt;}
.ls6{letter-spacing:86.290560pt;}
.ws3{word-spacing:-149.120000pt;}
.ws23{word-spacing:-140.266880pt;}
.ws1c{word-spacing:-101.993472pt;}
.ws1b{word-spacing:-101.937920pt;}
.ws1e{word-spacing:-79.130368pt;}
.ws1d{word-spacing:-70.267392pt;}
.ws1a{word-spacing:-70.229120pt;}
.ws5{word-spacing:-64.773632pt;}
.ws4{word-spacing:-64.718080pt;}
.ws20{word-spacing:-58.452267pt;}
.ws22{word-spacing:-58.392960pt;}
.ws1f{word-spacing:-57.654400pt;}
.ws21{word-spacing:-57.623040pt;}
.ws1{word-spacing:-51.176320pt;}
.ws2{word-spacing:-51.131392pt;}
.ws7{word-spacing:-51.093120pt;}
.wse{word-spacing:-43.392000pt;}
.ws6{word-spacing:-41.306240pt;}
.ws15{word-spacing:-39.616000pt;}
.ws13{word-spacing:-39.575429pt;}
.ws14{word-spacing:-39.510635pt;}
.wsd{word-spacing:-38.647808pt;}
.wsc{word-spacing:-38.618880pt;}
.ws9{word-spacing:-38.310272pt;}
.ws8{word-spacing:-38.272000pt;}
.wsa{word-spacing:-37.108736pt;}
.wsb{word-spacing:-37.080960pt;}
.ws24{word-spacing:-37.019093pt;}
.ws19{word-spacing:-36.965760pt;}
.ws11{word-spacing:-36.055680pt;}
.ws17{word-spacing:-35.227648pt;}
.ws12{word-spacing:-35.201280pt;}
.ws18{word-spacing:-35.086080pt;}
.ws16{word-spacing:-34.874880pt;}
.ws25{word-spacing:-32.201173pt;}
.ws26{word-spacing:-31.964949pt;}
.wsf{word-spacing:-26.400000pt;}
.ws10{word-spacing:-26.208000pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-7.377067pt;}
._3{margin-left:-3.095723pt;}
._0{margin-left:-1.551360pt;}
._1{width:1.152427pt;}
._2{width:2.189909pt;}
._5{width:22.796160pt;}
.fs5{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.fsb{font-size:128.000000pt;}
.fsc{font-size:128.128000pt;}
.fs9{font-size:149.120000pt;}
.fs7{font-size:149.248000pt;}
.fs4{font-size:170.880000pt;}
.fs8{font-size:171.008000pt;}
.fs3{font-size:192.000000pt;}
.fs2{font-size:192.128000pt;}
.fs1{font-size:234.880000pt;}
.fs6{font-size:235.008000pt;}
.fsa{font-size:256.000000pt;}
.fse{font-size:256.128000pt;}
.fsf{font-size:288.000000pt;}
.fs10{font-size:384.000000pt;}
.fs11{font-size:384.128000pt;}
.fs0{font-size:427.008000pt;}
.fs12{font-size:469.120000pt;}
.ya5{bottom:-111.328000pt;}
.ya4{bottom:-52.128000pt;}
.y96{bottom:-38.688000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:16.192000pt;}
.ya3{bottom:17.024000pt;}
.y76{bottom:22.880000pt;}
.y6e{bottom:26.720000pt;}
.yb{bottom:41.504000pt;}
.y62{bottom:43.296000pt;}
.y68{bottom:52.224000pt;}
.y39{bottom:57.408000pt;}
.y1f{bottom:63.392000pt;}
.y94{bottom:69.952000pt;}
.y61{bottom:71.936000pt;}
.ya{bottom:77.856000pt;}
.y6d{bottom:77.920000pt;}
.y67{bottom:80.896000pt;}
.y75{bottom:84.320000pt;}
.ya2{bottom:86.144000pt;}
.y40{bottom:88.160000pt;}
.y60{bottom:100.736000pt;}
.y1e{bottom:101.792000pt;}
.y38{bottom:103.520000pt;}
.y26{bottom:106.464000pt;}
.yb0{bottom:107.808000pt;}
.y7a{bottom:108.320000pt;}
.y66{bottom:109.696000pt;}
.y83{bottom:109.952000pt;}
.y15{bottom:116.704000pt;}
.y89{bottom:118.880000pt;}
.y93{bottom:123.744000pt;}
.y50{bottom:127.136000pt;}
.ya6{bottom:127.840000pt;}
.y6c{bottom:129.120000pt;}
.y5f{bottom:129.536000pt;}
.y65{bottom:138.493333pt;}
.y3f{bottom:139.360000pt;}
.y1d{bottom:142.946667pt;}
.y25{bottom:144.893333pt;}
.y74{bottom:145.760000pt;}
.y37{bottom:149.600000pt;}
.y4f{bottom:155.813333pt;}
.ya1{bottom:158.466667pt;}
.yaf{bottom:161.573333pt;}
.y64{bottom:167.293333pt;}
.y92{bottom:168.546667pt;}
.y79{bottom:170.106667pt;}
.y9{bottom:172.773333pt;}
.y6b{bottom:180.346667pt;}
.y9a{bottom:183.706667pt;}
.y4e{bottom:184.613333pt;}
.y3e{bottom:190.586667pt;}
.y1c{bottom:191.426667pt;}
.y82{bottom:193.946667pt;}
.y36{bottom:195.680000pt;}
.y63{bottom:196.093333pt;}
.ya8{bottom:203.386667pt;}
.y14{bottom:204.613333pt;}
.y73{bottom:207.226667pt;}
.y4d{bottom:213.413333pt;}
.yae{bottom:215.333333pt;}
.y91{bottom:222.306667pt;}
.y5b{bottom:222.946667pt;}
.y8{bottom:230.373333pt;}
.y78{bottom:231.546667pt;}
.y2f{bottom:234.106667pt;}
.y35{bottom:241.786667pt;}
.y4c{bottom:242.213333pt;}
.ya0{bottom:242.973333pt;}
.y1b{bottom:251.653333pt;}
.y5a{bottom:251.773333pt;}
.y24{bottom:251.973333pt;}
.y13{bottom:259.653333pt;}
.y72{bottom:268.666667pt;}
.yad{bottom:269.120000pt;}
.y81{bottom:270.786667pt;}
.y90{bottom:276.066667pt;}
.y2e{bottom:280.186667pt;}
.y59{bottom:280.573333pt;}
.y7c{bottom:284.933333pt;}
.y34{bottom:287.866667pt;}
.y7{bottom:288.000000pt;}
.y54{bottom:292.573333pt;}
.y6a{bottom:292.986667pt;}
.y1a{bottom:296.773333pt;}
.y99{bottom:299.426667pt;}
.y23{bottom:303.173333pt;}
.y3d{bottom:303.226667pt;}
.y58{bottom:309.373333pt;}
.y12{bottom:310.853333pt;}
.yac{bottom:313.920000pt;}
.y2d{bottom:318.586667pt;}
.y53{bottom:321.413333pt;}
.y33{bottom:326.266667pt;}
.y9f{bottom:327.453333pt;}
.y8f{bottom:329.853333pt;}
.y71{bottom:330.146667pt;}
.y44{bottom:334.653333pt;}
.y57{bottom:338.173333pt;}
.y87{bottom:343.840000pt;}
.y88{bottom:344.226667pt;}
.y6{bottom:345.600000pt;}
.y80{bottom:347.586667pt;}
.y52{bottom:350.213333pt;}
.y19{bottom:350.560000pt;}
.y69{bottom:354.466667pt;}
.y7b{bottom:355.360000pt;}
.y22{bottom:364.640000pt;}
.y2c{bottom:364.666667pt;}
.y3c{bottom:364.706667pt;}
.y56{bottom:366.973333pt;}
.yab{bottom:367.680000pt;}
.y11{bottom:372.320000pt;}
.y32{bottom:372.346667pt;}
.y4b{bottom:376.546667pt;}
.y51{bottom:379.013333pt;}
.ya7{bottom:382.333333pt;}
.y8e{bottom:384.893333pt;}
.y43{bottom:391.133333pt;}
.y70{bottom:393.026667pt;}
.y18{bottom:395.200000pt;}
.y55{bottom:395.813333pt;}
.y5{bottom:403.200000pt;}
.y4a{bottom:405.346667pt;}
.y77{bottom:405.666667pt;}
.y2b{bottom:410.786667pt;}
.y9e{bottom:411.973333pt;}
.y98{bottom:413.533333pt;}
.y86{bottom:414.426667pt;}
.y3b{bottom:415.906667pt;}
.y31{bottom:418.466667pt;}
.yaa{bottom:422.746667pt;}
.y7f{bottom:424.413333pt;}
.y21{bottom:426.080000pt;}
.y10{bottom:433.760000pt;}
.y49{bottom:434.146667pt;}
.y8d{bottom:436.093333pt;}
.y42{bottom:442.333333pt;}
.y17{bottom:449.120000pt;}
.y2a{bottom:456.866667pt;}
.y6f{bottom:462.146667pt;}
.y48{bottom:462.946667pt;}
.y4{bottom:463.706667pt;}
.y46{bottom:465.826667pt;}
.y3a{bottom:467.106667pt;}
.y5e{bottom:468.573333pt;}
.ya9{bottom:473.946667pt;}
.y85{bottom:484.826667pt;}
.y20{bottom:487.520000pt;}
.y47{bottom:491.773333pt;}
.y9d{bottom:493.253333pt;}
.y41{bottom:493.573333pt;}
.y16{bottom:493.760000pt;}
.yf{bottom:493.920000pt;}
.y5d{bottom:497.213333pt;}
.y7e{bottom:501.213333pt;}
.y29{bottom:502.586667pt;}
.y30{bottom:504.933333pt;}
.y8c{bottom:505.093333pt;}
.yd{bottom:519.813333pt;}
.y5c{bottom:526.013333pt;}
.y97{bottom:528.773333pt;}
.y3{bottom:534.106667pt;}
.y9c{bottom:548.093333pt;}
.ye{bottom:548.986667pt;}
.y84{bottom:555.266667pt;}
.y27{bottom:575.333333pt;}
.y8b{bottom:575.493333pt;}
.y45{bottom:577.146667pt;}
.y7d{bottom:578.053333pt;}
.yc{bottom:591.200000pt;}
.y2{bottom:604.546667pt;}
.y28{bottom:610.493333pt;}
.y9b{bottom:617.693333pt;}
.y8a{bottom:645.920000pt;}
.y1{bottom:686.146667pt;}
.h7{height:78.798491pt;}
.h1e{height:83.015625pt;}
.h20{height:83.126312pt;}
.h17{height:92.500000pt;}
.h14{height:92.592500pt;}
.h15{height:93.500000pt;}
.h16{height:93.593500pt;}
.h21{height:98.672872pt;}
.h1f{height:98.804436pt;}
.he{height:102.562500pt;}
.h10{height:102.665062pt;}
.h11{height:105.064655pt;}
.h12{height:105.169720pt;}
.h28{height:108.927500pt;}
.h29{height:109.021000pt;}
.h1a{height:116.812500pt;}
.h1b{height:116.900000pt;}
.hc{height:122.400323pt;}
.ha{height:122.505388pt;}
.h19{height:124.822500pt;}
.h18{height:124.916000pt;}
.h23{height:125.823750pt;}
.h32{height:129.562500pt;}
.h2f{height:129.648875pt;}
.hf{height:136.920938pt;}
.h22{height:137.023500pt;}
.h5{height:140.250000pt;}
.h6{height:140.261315pt;}
.hb{height:140.366379pt;}
.h2a{height:153.271862pt;}
.h4{height:153.843750pt;}
.h3{height:153.946313pt;}
.h30{height:158.498125pt;}
.h31{height:158.584500pt;}
.h2{height:171.572500pt;}
.h1d{height:175.769277pt;}
.h2e{height:188.202188pt;}
.h1c{height:191.531250pt;}
.h8{height:192.793642pt;}
.h27{height:192.898707pt;}
.hd{height:205.125000pt;}
.h24{height:219.000000pt;}
.h25{height:219.109500pt;}
.h13{height:241.419628pt;}
.h9{height:241.551191pt;}
.h26{height:246.375000pt;}
.h2c{height:307.790062pt;}
.h2b{height:315.193966pt;}
.h1{height:350.495690pt;}
.h2d{height:394.823053pt;}
.h33{height:438.896936pt;}
.h34{height:482.181436pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xe{left:28.512000pt;}
.x1b{left:57.664000pt;}
.x19{left:61.504000pt;}
.xd{left:64.512000pt;}
.x2e{left:66.656000pt;}
.x56{left:70.784000pt;}
.x2b{left:71.776000pt;}
.x2a{left:76.096000pt;}
.x27{left:86.176000pt;}
.x45{left:89.024000pt;}
.x29{left:92.736000pt;}
.x1c{left:93.696000pt;}
.x2c{left:94.976000pt;}
.x16{left:97.760000pt;}
.x53{left:102.144000pt;}
.x42{left:104.192000pt;}
.x5b{left:106.592000pt;}
.x52{left:112.512000pt;}
.x18{left:114.400000pt;}
.x54{left:121.344000pt;}
.xf{left:124.512000pt;}
.x4d{left:127.328000pt;}
.x2d{left:128.896000pt;}
.x12{left:129.952000pt;}
.x28{left:138.493333pt;}
.x43{left:140.186667pt;}
.x21{left:141.346667pt;}
.x9{left:142.426667pt;}
.x10{left:148.506667pt;}
.x17{left:151.680000pt;}
.x4{left:153.786667pt;}
.x4f{left:155.200000pt;}
.x57{left:157.826667pt;}
.x26{left:162.306667pt;}
.x3{left:163.906667pt;}
.x51{left:166.080000pt;}
.x22{left:177.373333pt;}
.x44{left:182.266667pt;}
.x1a{left:192.413333pt;}
.x7{left:201.666667pt;}
.x4c{left:220.773333pt;}
.xb{left:232.506667pt;}
.x13{left:245.440000pt;}
.x2{left:258.946667pt;}
.x23{left:272.506667pt;}
.x14{left:274.720000pt;}
.x4a{left:279.493333pt;}
.x20{left:280.800000pt;}
.x25{left:283.546667pt;}
.x50{left:286.560000pt;}
.x11{left:303.706667pt;}
.x55{left:312.413333pt;}
.x47{left:318.400000pt;}
.x48{left:321.920000pt;}
.xa{left:328.866667pt;}
.x5{left:345.026667pt;}
.x4e{left:353.120000pt;}
.x59{left:355.813333pt;}
.x24{left:358.746667pt;}
.x58{left:378.106667pt;}
.x15{left:379.546667pt;}
.x4b{left:388.800000pt;}
.x5a{left:389.733333pt;}
.x8{left:391.613333pt;}
.x41{left:396.000000pt;}
.x3e{left:402.880000pt;}
.x49{left:410.240000pt;}
.x31{left:421.533333pt;}
.x30{left:438.333333pt;}
.x2f{left:448.093333pt;}
.x40{left:451.840000pt;}
.x6{left:457.853333pt;}
.x3f{left:464.480000pt;}
.x1{left:494.813333pt;}
.x1e{left:497.413333pt;}
.xc{left:506.786667pt;}
.x1f{left:533.413333pt;}
.x46{left:541.306667pt;}
.x3a{left:565.253333pt;}
.x39{left:572.933333pt;}
.x1d{left:638.560000pt;}
.x3b{left:640.133333pt;}
.x36{left:721.506667pt;}
.x34{left:726.306667pt;}
.x32{left:730.146667pt;}
.x33{left:740.546667pt;}
.x35{left:746.786667pt;}
.x37{left:751.586667pt;}
.x38{left:757.986667pt;}
.x3d{left:764.386667pt;}
.x3c{left:801.506667pt;}
}




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