
    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_be616c7a5b36793fa5665c87.woff')format("woff");}.ff1{font-family:ff1;line-height:0.937988;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_5083259dd4db4e450e10260f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959961;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_2d4b1073d8d02e348335c84b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.935059;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_a6dcb5f81fb106d044fe0851.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172363;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_08b7d17e1e075516f4178adb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_42b7b63b5ac922e2aa1d1044.woff')format("woff");}.ff6{font-family:ff6;line-height:0.854980;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_ee5bc5b4540a2073815611cf.woff')format("woff");}.ff7{font-family:ff7;line-height:1.378906;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_0ecfab6c3ee0f7aefba03eff.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_1d6d1ee2f2a66759d8304807.woff')format("woff");}.ff9{font-family:ff9;line-height:1.083984;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_f27d66bdf6e9b72e702118ce.woff')format("woff");}.ffa{font-family:ffa;line-height:1.083984;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_cc0ab78ac3afa825504d1377.woff')format("woff");}.ffb{font-family:ffb;line-height:1.067383;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_bf84f8b42343603b243e3aad.woff')format("woff");}.ffc{font-family:ffc;line-height:1.067383;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_5a30986b88323de3fcd1fdb6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.762207;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_b1bcf531872ca1970cf1e8f0.woff')format("woff");}.ffe{font-family:ffe;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c9af18dcd1044e061526ff03.woff')format("woff");}.fff{font-family:fff;line-height:1.001465;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_59f745cee2bc19cdfd30985c.woff')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_64de50676fbbee6908cf4f99.woff')format("woff");}.ff11{font-family:ff11;line-height:0.977539;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_a54068832576a4458bc8c7ad.woff')format("woff");}.ff12{font-family:ff12;line-height:0.977539;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_fd6b69e651b3373899eb1de1.woff')format("woff");}.ff13{font-family:ff13;line-height:0.977539;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_1c3913a79709795dddf946ea.woff')format("woff");}.ff14{font-family:ff14;line-height:0.748047;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:ff15;src:url('chunks/assets/font_c0ad537713cc986e53e3208e.woff')format("woff");}.ff15{font-family:ff15;line-height:0.937500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.462600px;}
.ls6{letter-spacing:-0.408600px;}
.lsa{letter-spacing:-0.382800px;}
.ls7{letter-spacing:-0.369600px;}
.lse{letter-spacing:-0.265200px;}
.ls8{letter-spacing:-0.184800px;}
.lsd{letter-spacing:-0.138000px;}
.ls11{letter-spacing:-0.109200px;}
.ls2{letter-spacing:-0.086400px;}
.lsb{letter-spacing:-0.075000px;}
.ls3{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.054720px;}
.ls13{letter-spacing:0.057600px;}
.ls12{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.ls5{letter-spacing:26.208000px;}
.ls4{letter-spacing:26.400000px;}
.ls1{letter-spacing:115.776000px;}
.lsf{letter-spacing:606.456000px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(255,192,0),0 0.015em rgb(255,192,0),0.015em 0 rgb(255,192,0),0 -0.015em  rgb(255,192,0);}
.sc3{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc2{text-shadow:-0.015em 0 rgb(0,176,240),0 0.015em rgb(0,176,240),0.015em 0 rgb(0,176,240),0 -0.015em  rgb(0,176,240);}
.sc1{text-shadow:-0.015em 0 rgb(112,173,71),0 0.015em rgb(112,173,71),0.015em 0 rgb(112,173,71),0 -0.015em  rgb(112,173,71);}
.sc5{text-shadow:-0.015em 0 rgb(242,242,242),0 0.015em rgb(242,242,242),0.015em 0 rgb(242,242,242),0 -0.015em  rgb(242,242,242);}
.sc4{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc6{-webkit-text-stroke:0.015em rgb(255,192,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,176,240);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(112,173,71);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(242,242,242);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws1e{word-spacing:-620.820000px;}
.ws2d{word-spacing:-131.976000px;}
.ws0{word-spacing:-109.476000px;}
.wsa{word-spacing:-59.223456px;}
.wsb{word-spacing:-59.184000px;}
.ws20{word-spacing:-42.336000px;}
.ws3{word-spacing:-40.072032px;}
.ws2{word-spacing:-38.342304px;}
.ws2f{word-spacing:-28.224000px;}
.ws4{word-spacing:-26.621280px;}
.wsf{word-spacing:-25.058880px;}
.wsd{word-spacing:-25.027200px;}
.ws18{word-spacing:-24.952200px;}
.ws12{word-spacing:-24.874080px;}
.ws11{word-spacing:-24.689280px;}
.ws19{word-spacing:-24.644400px;}
.ws15{word-spacing:-24.596280px;}
.wsc{word-spacing:-2.302272px;}
.ws1{word-spacing:-1.644000px;}
.ws21{word-spacing:-1.104000px;}
.ws2c{word-spacing:-1.046496px;}
.ws23{word-spacing:-0.900816px;}
.ws22{word-spacing:-0.792000px;}
.ws2b{word-spacing:-0.713712px;}
.ws2a{word-spacing:-0.500400px;}
.ws6{word-spacing:-0.293760px;}
.ws1c{word-spacing:-0.264240px;}
.ws28{word-spacing:-0.256320px;}
.ws26{word-spacing:-0.240480px;}
.ws24{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.169200px;}
.ws1a{word-spacing:-0.012960px;}
.ws5{word-spacing:0.000000px;}
.ws2e{word-spacing:0.033696px;}
.ws29{word-spacing:0.639072px;}
.ws8{word-spacing:0.708000px;}
.ws7{word-spacing:0.720000px;}
.wse{word-spacing:0.996480px;}
.ws14{word-spacing:1.074240px;}
.ws17{word-spacing:1.100160px;}
.ws16{word-spacing:1.270800px;}
.ws25{word-spacing:1.344000px;}
.ws9{word-spacing:1.608000px;}
.ws13{word-spacing:2.762856px;}
.ws1d{word-spacing:49.226400px;}
.ws27{word-spacing:442.980000px;}
.ws1f{word-spacing:561.420000px;}
.ws1b{word-spacing:965.273760px;}
._14{margin-left:-5331.554448px;}
._19{margin-left:-19.212336px;}
._12{margin-left:-15.120000px;}
._3{margin-left:-11.664000px;}
._e{margin-left:-10.156944px;}
._1{margin-left:-7.793712px;}
._4{margin-left:-6.480000px;}
._d{margin-left:-4.790784px;}
._15{margin-left:-3.746304px;}
._7{margin-left:-2.643840px;}
._5{margin-left:-1.505952px;}
._0{width:1.313712px;}
._a{width:2.405136px;}
._c{width:24.226560px;}
._6{width:25.865856px;}
._1a{width:29.748576px;}
._13{width:41.304000px;}
._17{width:51.773088px;}
._b{width:60.236304px;}
._18{width:63.742656px;}
._2{width:116.520000px;}
._8{width:130.614288px;}
._9{width:132.000000px;}
._11{width:516.095712px;}
._16{width:542.280000px;}
._10{width:1164.449952px;}
._f{width:1871.720448px;}
.fc8{color:transparent;}
.fca{color:rgb(0,32,96);}
.fc6{color:rgb(5,99,193);}
.fc4{color:rgb(255,192,0);}
.fc3{color:rgb(255,217,102);}
.fc2{color:rgb(0,176,240);}
.fc1{color:rgb(112,173,71);}
.fcb{color:rgb(68,84,106);}
.fc9{color:rgb(242,242,242);}
.fc7{color:rgb(137,137,137);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs15{font-size:54.000000px;}
.fs11{font-size:66.240000px;}
.fs14{font-size:66.384000px;}
.fs12{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fsd{font-size:113.760000px;}
.fse{font-size:113.904000px;}
.fsb{font-size:120.240000px;}
.fsc{font-size:120.384000px;}
.fs10{font-size:131.904000px;}
.fsa{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs9{font-size:167.760000px;}
.fs2{font-size:192.240000px;}
.fs7{font-size:216.000000px;}
.fs8{font-size:216.144000px;}
.fs13{font-size:239.760000px;}
.fs16{font-size:256.320000px;}
.fs19{font-size:256.464000px;}
.fsf{font-size:264.240000px;}
.fs1a{font-size:288.000000px;}
.fs1b{font-size:288.144000px;}
.fs6{font-size:293.760000px;}
.fs1{font-size:324.000000px;}
.fs0{font-size:437.904000px;}
.fs1c{font-size:527.904000px;}
.fs1d{font-size:689.880000px;}
.fs18{font-size:1200.360000px;}
.fs17{font-size:1200.540000px;}
.y7f{bottom:-147.960000px;}
.y16{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y59{bottom:13.104000px;}
.y42{bottom:13.320000px;}
.y40{bottom:31.428000px;}
.y9{bottom:34.848000px;}
.y15{bottom:36.180000px;}
.y43{bottom:42.444000px;}
.y5a{bottom:42.984000px;}
.y8{bottom:62.748000px;}
.y44{bottom:71.640000px;}
.y5b{bottom:72.180000px;}
.y14{bottom:87.336000px;}
.y7{bottom:91.548000px;}
.y45{bottom:100.800000px;}
.y5c{bottom:101.340000px;}
.y39{bottom:108.975000px;}
.y36{bottom:109.005000px;}
.y2d{bottom:109.110000px;}
.y23{bottom:109.155000px;}
.y1c{bottom:109.185000px;}
.y7d{bottom:114.732000px;}
.y1a{bottom:119.844000px;}
.y6{bottom:120.348000px;}
.y46{bottom:129.996000px;}
.y5d{bottom:130.536000px;}
.y3b{bottom:134.280000px;}
.y5{bottom:151.710000px;}
.y19{bottom:155.850000px;}
.y47{bottom:159.150000px;}
.y5e{bottom:159.690000px;}
.y88{bottom:162.720000px;}
.y38{bottom:168.480000px;}
.y48{bottom:188.355000px;}
.y5f{bottom:188.895000px;}
.y18{bottom:191.850000px;}
.y35{bottom:202.680000px;}
.y13{bottom:210.630000px;}
.y49{bottom:217.545000px;}
.y60{bottom:218.085000px;}
.y8e{bottom:238.755000px;}
.y87{bottom:240.510000px;}
.y3a{bottom:243.255000px;}
.y4a{bottom:246.705000px;}
.y61{bottom:247.245000px;}
.y12{bottom:262.515000px;}
.y7b{bottom:263.520000px;}
.y8d{bottom:268.995000px;}
.y71{bottom:270.330000px;}
.y4b{bottom:275.910000px;}
.y62{bottom:276.450000px;}
.y37{bottom:277.455000px;}
.y31{bottom:281.340000px;}
.ya{bottom:296.460000px;}
.y8c{bottom:299.085000px;}
.y4c{bottom:305.070000px;}
.y63{bottom:305.610000px;}
.y34{bottom:311.685000px;}
.y2f{bottom:315.540000px;}
.y86{bottom:318.270000px;}
.y7a{bottom:321.840000px;}
.y8a{bottom:327.270000px;}
.y72{bottom:328.110000px;}
.y11{bottom:332.355000px;}
.y4d{bottom:334.260000px;}
.y64{bottom:334.800000px;}
.y33{bottom:345.885000px;}
.y2c{bottom:349.740000px;}
.y4{bottom:362.595000px;}
.y4e{bottom:363.420000px;}
.y65{bottom:363.960000px;}
.y79{bottom:380.160000px;}
.y2a{bottom:383.940000px;}
.y10{bottom:384.195000px;}
.y32{bottom:390.450000px;}
.y4f{bottom:392.610000px;}
.y66{bottom:393.150000px;}
.y85{bottom:396.030000px;}
.y3{bottom:412.995000px;}
.y28{bottom:418.140000px;}
.y50{bottom:421.770000px;}
.y67{bottom:422.355000px;}
.y30{bottom:424.650000px;}
.y8b{bottom:430.635000px;}
.yf{bottom:436.035000px;}
.y78{bottom:438.510000px;}
.y3f{bottom:444.450000px;}
.y51{bottom:450.975000px;}
.y68{bottom:451.515000px;}
.y26{bottom:452.340000px;}
.y2e{bottom:458.850000px;}
.y89{bottom:469.875000px;}
.y84{bottom:473.835000px;}
.y52{bottom:480.165000px;}
.y69{bottom:480.705000px;}
.y24{bottom:486.540000px;}
.y2b{bottom:493.095000px;}
.y77{bottom:496.830000px;}
.ye{bottom:505.005000px;}
.y53{bottom:509.325000px;}
.y6a{bottom:509.865000px;}
.y2{bottom:519.765000px;}
.y22{bottom:520.740000px;}
.y29{bottom:527.295000px;}
.y54{bottom:538.530000px;}
.y6b{bottom:539.070000px;}
.y7e{bottom:546.585000px;}
.y83{bottom:551.595000px;}
.y20{bottom:554.940000px;}
.y76{bottom:555.150000px;}
.yd{bottom:557.745000px;}
.y27{bottom:561.495000px;}
.y55{bottom:567.690000px;}
.y6c{bottom:568.230000px;}
.y1e{bottom:589.140000px;}
.y25{bottom:595.695000px;}
.y56{bottom:596.880000px;}
.y6d{bottom:597.420000px;}
.yc{bottom:609.585000px;}
.y75{bottom:613.470000px;}
.y1{bottom:613.590000px;}
.y1b{bottom:623.340000px;}
.y57{bottom:626.040000px;}
.y6e{bottom:626.580000px;}
.y3c{bottom:632.595000px;}
.y58{bottom:655.230000px;}
.y6f{bottom:655.770000px;}
.y21{bottom:664.125000px;}
.y74{bottom:671.835000px;}
.y3e{bottom:696.270000px;}
.y1f{bottom:698.325000px;}
.y7c{bottom:702.540000px;}
.y73{bottom:730.155000px;}
.y1d{bottom:732.525000px;}
.y3d{bottom:739.290000px;}
.y81{bottom:741.060000px;}
.y41{bottom:747.150000px;}
.y80{bottom:748.290000px;}
.yb{bottom:748.950000px;}
.y70{bottom:749.985000px;}
.y82{bottom:750.675000px;}
.y17{bottom:769.140000px;}
.h20{height:40.500000px;}
.h1e{height:49.680000px;}
.h1f{height:49.788000px;}
.h1a{height:69.086250px;}
.h6{height:70.884844px;}
.h1b{height:71.613281px;}
.h22{height:86.115234px;}
.h13{height:96.318281px;}
.h16{height:96.440203px;}
.h10{height:101.804766px;}
.h11{height:101.926687px;}
.hf{height:106.593750px;}
.h5{height:106.700344px;}
.h7{height:107.419922px;}
.h4{height:108.108000px;}
.h19{height:111.165188px;}
.h2e{height:114.820312px;}
.h2d{height:114.935133px;}
.he{height:142.366641px;}
.h9{height:143.964844px;}
.hb{height:144.060820px;}
.h3{height:144.180000px;}
.h23{height:172.230469px;}
.h24{height:172.345289px;}
.h1c{height:182.512617px;}
.hd{height:183.304688px;}
.hc{height:183.426891px;}
.h12{height:186.660000px;}
.h21{height:192.240000px;}
.h27{height:195.118594px;}
.h17{height:198.180000px;}
.h28{height:204.494977px;}
.h29{height:218.671875px;}
.h2a{height:218.781211px;}
.h14{height:220.860000px;}
.h8{height:223.619062px;}
.h18{height:223.726641px;}
.h2{height:235.880859px;}
.ha{height:238.359375px;}
.h15{height:239.580000px;}
.h1{height:318.806086px;}
.h2b{height:384.328547px;}
.h2c{height:459.807715px;}
.h1d{height:701.820000px;}
.h0{height:810.000000px;}
.h26{height:877.411582px;}
.h25{height:877.543154px;}
.w2{width:304.380000px;}
.w5{width:572.760000px;}
.w4{width:582.480000px;}
.w3{width:1130.040000px;}
.w6{width:1428.120000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x53{left:-128.592021px;}
.x0{left:0.000000px;}
.xf{left:2.880000px;}
.x10{left:8.136000px;}
.x4a{left:10.799979px;}
.xe{left:13.715979px;}
.x2{left:20.951979px;}
.x20{left:24.227979px;}
.x21{left:25.847979px;}
.xc{left:38.447979px;}
.x47{left:59.111979px;}
.x1b{left:75.455979px;}
.x1d{left:78.515979px;}
.x18{left:83.375979px;}
.x4d{left:84.959979px;}
.x11{left:87.875979px;}
.x1e{left:100.475979px;}
.x1a{left:102.815979px;}
.x22{left:114.300000px;}
.x28{left:134.099979px;}
.x3c{left:144.827979px;}
.x54{left:150.764979px;}
.x3b{left:155.699979px;}
.x3d{left:156.749979px;}
.x3e{left:174.059979px;}
.x37{left:192.269979px;}
.x39{left:213.629979px;}
.x32{left:220.964979px;}
.x3a{left:225.569979px;}
.x36{left:234.824979px;}
.x44{left:236.549979px;}
.x41{left:241.124979px;}
.x35{left:243.899979px;}
.x43{left:251.249979px;}
.x33{left:262.154979px;}
.x45{left:264.779979px;}
.x38{left:271.109979px;}
.x40{left:278.534979px;}
.x42{left:280.289979px;}
.x3f{left:281.369979px;}
.x34{left:283.889979px;}
.x46{left:295.199979px;}
.x12{left:307.080000px;}
.x15{left:331.769979px;}
.x1c{left:332.849979px;}
.x17{left:336.629979px;}
.x6{left:360.464979px;}
.x2a{left:375.044979px;}
.x19{left:378.029979px;}
.x4b{left:382.139979px;}
.x1f{left:392.429979px;}
.x16{left:397.289979px;}
.x13{left:405.029979px;}
.x52{left:429.914979px;}
.x27{left:432.509979px;}
.x7{left:447.449979px;}
.x14{left:458.489979px;}
.x4{left:465.989979px;}
.x51{left:476.744979px;}
.xa{left:482.549979px;}
.x56{left:498.749979px;}
.x8{left:504.149979px;}
.x50{left:508.064979px;}
.x2c{left:512.249979px;}
.x3{left:524.129979px;}
.xd{left:541.769979px;}
.xb{left:568.769979px;}
.x57{left:578.849979px;}
.x4f{left:587.984979px;}
.x2f{left:591.809979px;}
.x1{left:604.049979px;}
.x55{left:607.469979px;}
.x5{left:653.369979px;}
.x9{left:662.729979px;}
.x2d{left:671.324979px;}
.x23{left:696.600000px;}
.x26{left:720.719979px;}
.x2e{left:750.884979px;}
.x25{left:884.909979px;}
.x31{left:989.564979px;}
.x49{left:1046.264979px;}
.x2b{left:1069.124979px;}
.x48{left:1115.894979px;}
.x4c{left:1139.729979px;}
.x4e{left:1217.954979px;}
.x30{left:1218.959979px;}
.x29{left:1321.019979px;}
.x24{left:1336.934979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.411200pt;}
.ls6{letter-spacing:-0.363200pt;}
.lsa{letter-spacing:-0.340267pt;}
.ls7{letter-spacing:-0.328533pt;}
.lse{letter-spacing:-0.235733pt;}
.ls8{letter-spacing:-0.164267pt;}
.lsd{letter-spacing:-0.122667pt;}
.ls11{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:-0.076800pt;}
.lsb{letter-spacing:-0.066667pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.048640pt;}
.ls13{letter-spacing:0.051200pt;}
.ls12{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls5{letter-spacing:23.296000pt;}
.ls4{letter-spacing:23.466667pt;}
.ls1{letter-spacing:102.912000pt;}
.lsf{letter-spacing:539.072000pt;}
.ws1e{word-spacing:-551.840000pt;}
.ws2d{word-spacing:-117.312000pt;}
.ws0{word-spacing:-97.312000pt;}
.wsa{word-spacing:-52.643072pt;}
.wsb{word-spacing:-52.608000pt;}
.ws20{word-spacing:-37.632000pt;}
.ws3{word-spacing:-35.619584pt;}
.ws2{word-spacing:-34.082048pt;}
.ws2f{word-spacing:-25.088000pt;}
.ws4{word-spacing:-23.663360pt;}
.wsf{word-spacing:-22.274560pt;}
.wsd{word-spacing:-22.246400pt;}
.ws18{word-spacing:-22.179733pt;}
.ws12{word-spacing:-22.110293pt;}
.ws11{word-spacing:-21.946027pt;}
.ws19{word-spacing:-21.906133pt;}
.ws15{word-spacing:-21.863360pt;}
.wsc{word-spacing:-2.046464pt;}
.ws1{word-spacing:-1.461333pt;}
.ws21{word-spacing:-0.981333pt;}
.ws2c{word-spacing:-0.930219pt;}
.ws23{word-spacing:-0.800725pt;}
.ws22{word-spacing:-0.704000pt;}
.ws2b{word-spacing:-0.634411pt;}
.ws2a{word-spacing:-0.444800pt;}
.ws6{word-spacing:-0.261120pt;}
.ws1c{word-spacing:-0.234880pt;}
.ws28{word-spacing:-0.227840pt;}
.ws26{word-spacing:-0.213760pt;}
.ws24{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.150400pt;}
.ws1a{word-spacing:-0.011520pt;}
.ws5{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.029952pt;}
.ws29{word-spacing:0.568064pt;}
.ws8{word-spacing:0.629333pt;}
.ws7{word-spacing:0.640000pt;}
.wse{word-spacing:0.885760pt;}
.ws14{word-spacing:0.954880pt;}
.ws17{word-spacing:0.977920pt;}
.ws16{word-spacing:1.129600pt;}
.ws25{word-spacing:1.194667pt;}
.ws9{word-spacing:1.429333pt;}
.ws13{word-spacing:2.455872pt;}
.ws1d{word-spacing:43.756800pt;}
.ws27{word-spacing:393.760000pt;}
.ws1f{word-spacing:499.040000pt;}
.ws1b{word-spacing:858.021120pt;}
._14{margin-left:-4739.159509pt;}
._19{margin-left:-17.077632pt;}
._12{margin-left:-13.440000pt;}
._3{margin-left:-10.368000pt;}
._e{margin-left:-9.028395pt;}
._1{margin-left:-6.927744pt;}
._4{margin-left:-5.760000pt;}
._d{margin-left:-4.258475pt;}
._15{margin-left:-3.330048pt;}
._7{margin-left:-2.350080pt;}
._5{margin-left:-1.338624pt;}
._0{width:1.167744pt;}
._a{width:2.137899pt;}
._c{width:21.534720pt;}
._6{width:22.991872pt;}
._1a{width:26.443179pt;}
._13{width:36.714667pt;}
._17{width:46.020523pt;}
._b{width:53.543381pt;}
._18{width:56.660139pt;}
._2{width:103.573333pt;}
._8{width:116.101589pt;}
._9{width:117.333333pt;}
._11{width:458.751744pt;}
._16{width:482.026667pt;}
._10{width:1035.066624pt;}
._f{width:1663.751509pt;}
.fs15{font-size:48.000000pt;}
.fs11{font-size:58.880000pt;}
.fs14{font-size:59.008000pt;}
.fs12{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fsd{font-size:101.120000pt;}
.fse{font-size:101.248000pt;}
.fsb{font-size:106.880000pt;}
.fsc{font-size:107.008000pt;}
.fs10{font-size:117.248000pt;}
.fsa{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs9{font-size:149.120000pt;}
.fs2{font-size:170.880000pt;}
.fs7{font-size:192.000000pt;}
.fs8{font-size:192.128000pt;}
.fs13{font-size:213.120000pt;}
.fs16{font-size:227.840000pt;}
.fs19{font-size:227.968000pt;}
.fsf{font-size:234.880000pt;}
.fs1a{font-size:256.000000pt;}
.fs1b{font-size:256.128000pt;}
.fs6{font-size:261.120000pt;}
.fs1{font-size:288.000000pt;}
.fs0{font-size:389.248000pt;}
.fs1c{font-size:469.248000pt;}
.fs1d{font-size:613.226667pt;}
.fs18{font-size:1066.986667pt;}
.fs17{font-size:1067.146667pt;}
.y7f{bottom:-131.520000pt;}
.y16{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:11.648000pt;}
.y42{bottom:11.840000pt;}
.y40{bottom:27.936000pt;}
.y9{bottom:30.976000pt;}
.y15{bottom:32.160000pt;}
.y43{bottom:37.728000pt;}
.y5a{bottom:38.208000pt;}
.y8{bottom:55.776000pt;}
.y44{bottom:63.680000pt;}
.y5b{bottom:64.160000pt;}
.y14{bottom:77.632000pt;}
.y7{bottom:81.376000pt;}
.y45{bottom:89.600000pt;}
.y5c{bottom:90.080000pt;}
.y39{bottom:96.866667pt;}
.y36{bottom:96.893333pt;}
.y2d{bottom:96.986667pt;}
.y23{bottom:97.026667pt;}
.y1c{bottom:97.053333pt;}
.y7d{bottom:101.984000pt;}
.y1a{bottom:106.528000pt;}
.y6{bottom:106.976000pt;}
.y46{bottom:115.552000pt;}
.y5d{bottom:116.032000pt;}
.y3b{bottom:119.360000pt;}
.y5{bottom:134.853333pt;}
.y19{bottom:138.533333pt;}
.y47{bottom:141.466667pt;}
.y5e{bottom:141.946667pt;}
.y88{bottom:144.640000pt;}
.y38{bottom:149.760000pt;}
.y48{bottom:167.426667pt;}
.y5f{bottom:167.906667pt;}
.y18{bottom:170.533333pt;}
.y35{bottom:180.160000pt;}
.y13{bottom:187.226667pt;}
.y49{bottom:193.373333pt;}
.y60{bottom:193.853333pt;}
.y8e{bottom:212.226667pt;}
.y87{bottom:213.786667pt;}
.y3a{bottom:216.226667pt;}
.y4a{bottom:219.293333pt;}
.y61{bottom:219.773333pt;}
.y12{bottom:233.346667pt;}
.y7b{bottom:234.240000pt;}
.y8d{bottom:239.106667pt;}
.y71{bottom:240.293333pt;}
.y4b{bottom:245.253333pt;}
.y62{bottom:245.733333pt;}
.y37{bottom:246.626667pt;}
.y31{bottom:250.080000pt;}
.ya{bottom:263.520000pt;}
.y8c{bottom:265.853333pt;}
.y4c{bottom:271.173333pt;}
.y63{bottom:271.653333pt;}
.y34{bottom:277.053333pt;}
.y2f{bottom:280.480000pt;}
.y86{bottom:282.906667pt;}
.y7a{bottom:286.080000pt;}
.y8a{bottom:290.906667pt;}
.y72{bottom:291.653333pt;}
.y11{bottom:295.426667pt;}
.y4d{bottom:297.120000pt;}
.y64{bottom:297.600000pt;}
.y33{bottom:307.453333pt;}
.y2c{bottom:310.880000pt;}
.y4{bottom:322.306667pt;}
.y4e{bottom:323.040000pt;}
.y65{bottom:323.520000pt;}
.y79{bottom:337.920000pt;}
.y2a{bottom:341.280000pt;}
.y10{bottom:341.506667pt;}
.y32{bottom:347.066667pt;}
.y4f{bottom:348.986667pt;}
.y66{bottom:349.466667pt;}
.y85{bottom:352.026667pt;}
.y3{bottom:367.106667pt;}
.y28{bottom:371.680000pt;}
.y50{bottom:374.906667pt;}
.y67{bottom:375.426667pt;}
.y30{bottom:377.466667pt;}
.y8b{bottom:382.786667pt;}
.yf{bottom:387.586667pt;}
.y78{bottom:389.786667pt;}
.y3f{bottom:395.066667pt;}
.y51{bottom:400.866667pt;}
.y68{bottom:401.346667pt;}
.y26{bottom:402.080000pt;}
.y2e{bottom:407.866667pt;}
.y89{bottom:417.666667pt;}
.y84{bottom:421.186667pt;}
.y52{bottom:426.813333pt;}
.y69{bottom:427.293333pt;}
.y24{bottom:432.480000pt;}
.y2b{bottom:438.306667pt;}
.y77{bottom:441.626667pt;}
.ye{bottom:448.893333pt;}
.y53{bottom:452.733333pt;}
.y6a{bottom:453.213333pt;}
.y2{bottom:462.013333pt;}
.y22{bottom:462.880000pt;}
.y29{bottom:468.706667pt;}
.y54{bottom:478.693333pt;}
.y6b{bottom:479.173333pt;}
.y7e{bottom:485.853333pt;}
.y83{bottom:490.306667pt;}
.y20{bottom:493.280000pt;}
.y76{bottom:493.466667pt;}
.yd{bottom:495.773333pt;}
.y27{bottom:499.106667pt;}
.y55{bottom:504.613333pt;}
.y6c{bottom:505.093333pt;}
.y1e{bottom:523.680000pt;}
.y25{bottom:529.506667pt;}
.y56{bottom:530.560000pt;}
.y6d{bottom:531.040000pt;}
.yc{bottom:541.853333pt;}
.y75{bottom:545.306667pt;}
.y1{bottom:545.413333pt;}
.y1b{bottom:554.080000pt;}
.y57{bottom:556.480000pt;}
.y6e{bottom:556.960000pt;}
.y3c{bottom:562.306667pt;}
.y58{bottom:582.426667pt;}
.y6f{bottom:582.906667pt;}
.y21{bottom:590.333333pt;}
.y74{bottom:597.186667pt;}
.y3e{bottom:618.906667pt;}
.y1f{bottom:620.733333pt;}
.y7c{bottom:624.480000pt;}
.y73{bottom:649.026667pt;}
.y1d{bottom:651.133333pt;}
.y3d{bottom:657.146667pt;}
.y81{bottom:658.720000pt;}
.y41{bottom:664.133333pt;}
.y80{bottom:665.146667pt;}
.yb{bottom:665.733333pt;}
.y70{bottom:666.653333pt;}
.y82{bottom:667.266667pt;}
.y17{bottom:683.680000pt;}
.h20{height:36.000000pt;}
.h1e{height:44.160000pt;}
.h1f{height:44.256000pt;}
.h1a{height:61.410000pt;}
.h6{height:63.008750pt;}
.h1b{height:63.656250pt;}
.h22{height:76.546875pt;}
.h13{height:85.616250pt;}
.h16{height:85.724625pt;}
.h10{height:90.493125pt;}
.h11{height:90.601500pt;}
.hf{height:94.750000pt;}
.h5{height:94.844750pt;}
.h7{height:95.484375pt;}
.h4{height:96.096000pt;}
.h19{height:98.813500pt;}
.h2e{height:102.062500pt;}
.h2d{height:102.164562pt;}
.he{height:126.548125pt;}
.h9{height:127.968750pt;}
.hb{height:128.054062pt;}
.h3{height:128.160000pt;}
.h23{height:153.093750pt;}
.h24{height:153.195812pt;}
.h1c{height:162.233437pt;}
.hd{height:162.937500pt;}
.hc{height:163.046125pt;}
.h12{height:165.920000pt;}
.h21{height:170.880000pt;}
.h27{height:173.438750pt;}
.h17{height:176.160000pt;}
.h28{height:181.773313pt;}
.h29{height:194.375000pt;}
.h2a{height:194.472187pt;}
.h14{height:196.320000pt;}
.h8{height:198.772500pt;}
.h18{height:198.868125pt;}
.h2{height:209.671875pt;}
.ha{height:211.875000pt;}
.h15{height:212.960000pt;}
.h1{height:283.383188pt;}
.h2b{height:341.625375pt;}
.h2c{height:408.717969pt;}
.h1d{height:623.840000pt;}
.h0{height:720.000000pt;}
.h26{height:779.921406pt;}
.h25{height:780.038359pt;}
.w2{width:270.560000pt;}
.w5{width:509.120000pt;}
.w4{width:517.760000pt;}
.w3{width:1004.480000pt;}
.w6{width:1269.440000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x53{left:-114.304019pt;}
.x0{left:0.000000pt;}
.xf{left:2.560000pt;}
.x10{left:7.232000pt;}
.x4a{left:9.599981pt;}
.xe{left:12.191981pt;}
.x2{left:18.623981pt;}
.x20{left:21.535981pt;}
.x21{left:22.975981pt;}
.xc{left:34.175981pt;}
.x47{left:52.543981pt;}
.x1b{left:67.071981pt;}
.x1d{left:69.791981pt;}
.x18{left:74.111981pt;}
.x4d{left:75.519981pt;}
.x11{left:78.111981pt;}
.x1e{left:89.311981pt;}
.x1a{left:91.391981pt;}
.x22{left:101.600000pt;}
.x28{left:119.199981pt;}
.x3c{left:128.735981pt;}
.x54{left:134.013314pt;}
.x3b{left:138.399981pt;}
.x3d{left:139.333314pt;}
.x3e{left:154.719981pt;}
.x37{left:170.906648pt;}
.x39{left:189.893314pt;}
.x32{left:196.413314pt;}
.x3a{left:200.506648pt;}
.x36{left:208.733314pt;}
.x44{left:210.266648pt;}
.x41{left:214.333314pt;}
.x35{left:216.799981pt;}
.x43{left:223.333314pt;}
.x33{left:233.026648pt;}
.x45{left:235.359981pt;}
.x38{left:240.986648pt;}
.x40{left:247.586648pt;}
.x42{left:249.146648pt;}
.x3f{left:250.106648pt;}
.x34{left:252.346648pt;}
.x46{left:262.399981pt;}
.x12{left:272.960000pt;}
.x15{left:294.906648pt;}
.x1c{left:295.866648pt;}
.x17{left:299.226648pt;}
.x6{left:320.413314pt;}
.x2a{left:333.373314pt;}
.x19{left:336.026648pt;}
.x4b{left:339.679981pt;}
.x1f{left:348.826648pt;}
.x16{left:353.146648pt;}
.x13{left:360.026648pt;}
.x52{left:382.146648pt;}
.x27{left:384.453314pt;}
.x7{left:397.733314pt;}
.x14{left:407.546648pt;}
.x4{left:414.213314pt;}
.x51{left:423.773314pt;}
.xa{left:428.933314pt;}
.x56{left:443.333314pt;}
.x8{left:448.133314pt;}
.x50{left:451.613314pt;}
.x2c{left:455.333314pt;}
.x3{left:465.893314pt;}
.xd{left:481.573314pt;}
.xb{left:505.573314pt;}
.x57{left:514.533314pt;}
.x4f{left:522.653314pt;}
.x2f{left:526.053314pt;}
.x1{left:536.933314pt;}
.x55{left:539.973314pt;}
.x5{left:580.773314pt;}
.x9{left:589.093314pt;}
.x2d{left:596.733314pt;}
.x23{left:619.200000pt;}
.x26{left:640.639981pt;}
.x2e{left:667.453314pt;}
.x25{left:786.586648pt;}
.x31{left:879.613314pt;}
.x49{left:930.013314pt;}
.x2b{left:950.333314pt;}
.x48{left:991.906648pt;}
.x4c{left:1013.093314pt;}
.x4e{left:1082.626648pt;}
.x30{left:1083.519981pt;}
.x29{left:1174.239981pt;}
.x24{left:1188.386648pt;}
}




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