
    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_5cd245d309f1e7c1b721ef4e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_f31656a85b6d8116a58be047.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_6089b0da4d136aa8354520f6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_cd29f5cf428cb0376a8c4d17.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_575eb6ef00fc5afdadd1b7b1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.908691;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_5d0b8f9984c1e69e9068f423.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_fb0415e1311a27d4c73b6deb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_e2663307060fb33533f646cc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_df83ef2c7f8215762723b85e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.102051;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_0fc1d3a05160808b43331b99.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_5c9b3b4d455aa62a9341e750.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_6b7493990ba02158d7e061f0.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b994fc6679d1db416a490df6.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a33b68b353e5498aecb3612d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.100098;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_8bd564a6fe039aeecd6cf65f.woff')format("woff");}.fff{font-family:fff;line-height:0.922852;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_fd554658cbe75635a0392552.woff')format("woff");}.ff10{font-family:ff10;line-height:0.908691;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_97c8c0bd0b8dde85d27c010b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_a33986206f6b4fd71c80e9a7.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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);}
.v1{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-3.403296px;}
.ls4{letter-spacing:-3.285360px;}
.ls3{letter-spacing:-3.268512px;}
.ls1{letter-spacing:-3.251664px;}
.ls4c{letter-spacing:-0.471744px;}
.ls45{letter-spacing:-0.411264px;}
.ls2f{letter-spacing:-0.368928px;}
.ls2e{letter-spacing:-0.350784px;}
.ls31{letter-spacing:-0.308448px;}
.ls22{letter-spacing:-0.302400px;}
.ls44{letter-spacing:-0.290304px;}
.ls49{letter-spacing:-0.247968px;}
.ls27{letter-spacing:-0.241920px;}
.ls24{letter-spacing:-0.229824px;}
.ls15{letter-spacing:-0.211968px;}
.ls30{letter-spacing:-0.187488px;}
.ls3d{letter-spacing:-0.185472px;}
.ls23{letter-spacing:-0.181440px;}
.ls12{letter-spacing:-0.172224px;}
.ls26{letter-spacing:-0.169344px;}
.ls17{letter-spacing:-0.165600px;}
.lsf{letter-spacing:-0.152352px;}
.ls18{letter-spacing:-0.145728px;}
.ls13{letter-spacing:-0.139104px;}
.ls2d{letter-spacing:-0.133056px;}
.ls16{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.125856px;}
.ls2c{letter-spacing:-0.120960px;}
.ls3e{letter-spacing:-0.119232px;}
.ls48{letter-spacing:-0.112608px;}
.ls25{letter-spacing:-0.108864px;}
.ls32{letter-spacing:-0.105984px;}
.ls14{letter-spacing:-0.086112px;}
.ls10{letter-spacing:-0.066240px;}
.ls3f{letter-spacing:-0.052992px;}
.ls1a{letter-spacing:-0.036000px;}
.ls7{letter-spacing:-0.021600px;}
.ls1b{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.021600px;}
.ls3a{letter-spacing:0.036000px;}
.ls1e{letter-spacing:0.050400px;}
.ls19{letter-spacing:0.057600px;}
.ls33{letter-spacing:0.486000px;}
.ls34{letter-spacing:0.576288px;}
.ls29{letter-spacing:0.618336px;}
.ls2a{letter-spacing:0.735552px;}
.ls2b{letter-spacing:0.736992px;}
.ls42{letter-spacing:0.813168px;}
.ls43{letter-spacing:0.815040px;}
.ls1f{letter-spacing:0.993168px;}
.ls41{letter-spacing:1.107360px;}
.ls39{letter-spacing:1.527984px;}
.ls40{letter-spacing:2.471040px;}
.ls3c{letter-spacing:2.583360px;}
.ls35{letter-spacing:2.996640px;}
.ls46{letter-spacing:3.039408px;}
.ls28{letter-spacing:3.250080px;}
.ls1d{letter-spacing:5.351040px;}
.ls21{letter-spacing:10.239408px;}
.ls3b{letter-spacing:10.784160px;}
.ls36{letter-spacing:14.015520px;}
.lse{letter-spacing:15.109920px;}
.ls4b{letter-spacing:15.945120px;}
.ls20{letter-spacing:35.495712px;}
.ls1c{letter-spacing:40.734000px;}
.ls8{letter-spacing:62.865216px;}
.ls9{letter-spacing:64.064880px;}
.lsa{letter-spacing:64.964304px;}
.ls4d{letter-spacing:65.484000px;}
.lsb{letter-spacing:72.689904px;}
.lsd{letter-spacing:74.490336px;}
.lsc{letter-spacing:74.790576px;}
.ls37{letter-spacing:84.044016px;}
.ls38{letter-spacing:84.045600px;}
.ls4a{letter-spacing:91.007424px;}
.ls47{letter-spacing:96.245712px;}
.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;}
}
.ws9{word-spacing:-18.057600px;}
.wsd{word-spacing:-18.050400px;}
.ws18{word-spacing:-18.036000px;}
.wse{word-spacing:-18.021600px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.985600px;}
.wsc{word-spacing:-17.978400px;}
.wsa{word-spacing:-17.964000px;}
.ws1e{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.493760px;}
.ws19{word-spacing:-16.454016px;}
.ws5{word-spacing:-16.434144px;}
.ws7{word-spacing:-16.427520px;}
.ws3{word-spacing:-16.407648px;}
.ws8{word-spacing:-16.394400px;}
.ws6{word-spacing:-16.348032px;}
.ws10{word-spacing:-15.120000px;}
.ws13{word-spacing:-15.011136px;}
.ws12{word-spacing:-14.986944px;}
.ws14{word-spacing:-14.950656px;}
.ws16{word-spacing:-14.938560px;}
.ws17{word-spacing:-14.932512px;}
.wsf{word-spacing:-14.890176px;}
.ws11{word-spacing:-14.878080px;}
.ws1b{word-spacing:-14.829696px;}
.ws15{word-spacing:-14.751072px;}
.ws1d{word-spacing:-14.708736px;}
.ws1f{word-spacing:-14.648256px;}
.ws1c{word-spacing:-0.524880px;}
.ws1a{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws1{word-spacing:3.234816px;}
._f{margin-left:-16.489728px;}
._8{margin-left:-15.386976px;}
._4{margin-left:-14.341104px;}
._6{margin-left:-13.338432px;}
._5{margin-left:-10.927584px;}
._3{margin-left:-8.560944px;}
._d{margin-left:-7.156800px;}
._b{margin-left:-5.210352px;}
._e{margin-left:-4.194144px;}
._1{margin-left:-2.681568px;}
._7{margin-left:-1.006128px;}
._0{width:1.321200px;}
._2{width:2.527200px;}
._19{width:3.597840px;}
._11{width:4.600800px;}
._15{width:5.796000px;}
._14{width:7.596000px;}
._12{width:8.647200px;}
._16{width:9.957600px;}
._1a{width:11.422800px;}
._17{width:12.499200px;}
._10{width:14.083200px;}
._c{width:15.408720px;}
._13{width:16.444800px;}
._18{width:19.591344px;}
._1d{width:21.535056px;}
._20{width:22.730832px;}
._23{width:24.098400px;}
._1e{width:25.192800px;}
._24{width:26.942400px;}
._22{width:28.893600px;}
._a{width:30.397968px;}
._9{width:31.681440px;}
._1f{width:33.082560px;}
._25{width:34.116480px;}
._27{width:36.540000px;}
._28{width:45.036000px;}
._29{width:73.836000px;}
._21{width:84.127680px;}
._1c{width:105.900480px;}
._1b{width:107.049600px;}
._2a{width:136.656000px;}
._26{width:194.399424px;}
._2b{width:205.322400px;}
.fc3{color:rgb(20,20,19);}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:119.520000px;}
.fs2{font-size:168.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:5.520000px;}
.y2{bottom:54.000000px;}
.y1{bottom:58.440000px;}
.y7b{bottom:110.280000px;}
.y7a{bottom:113.880000px;}
.y1b1{bottom:114.600000px;}
.y1f{bottom:120.000000px;}
.y1b8{bottom:122.880000px;}
.y79{bottom:127.200000px;}
.y197{bottom:128.280000px;}
.ya1{bottom:130.800000px;}
.y1e{bottom:143.400000px;}
.y78{bottom:144.120000px;}
.yfa{bottom:145.200000px;}
.y1b0{bottom:146.280000px;}
.yb3{bottom:147.720000px;}
.y1b7{bottom:153.120000px;}
.y66{bottom:159.240000px;}
.y77{bottom:161.040000px;}
.yb2{bottom:162.120000px;}
.y18b{bottom:164.640000px;}
.y1d{bottom:166.440000px;}
.ye2{bottom:169.320000px;}
.y1b6{bottom:173.280000px;}
.y1af{bottom:176.880000px;}
.y76{bottom:177.960000px;}
.y18a{bottom:179.040000px;}
.y11e{bottom:180.840000px;}
.y75{bottom:181.560000px;}
.y3e{bottom:183.360000px;}
.y65{bottom:186.960000px;}
.y1cf{bottom:189.480000px;}
.y1c{bottom:189.840000px;}
.y74{bottom:194.880000px;}
.ye7{bottom:195.960000px;}
.y6d{bottom:196.320000px;}
.y163{bottom:197.760000px;}
.y73{bottom:198.480000px;}
.y191{bottom:200.280000px;}
.y3d{bottom:203.880000px;}
.y184{bottom:206.760000px;}
.y11a{bottom:207.120000px;}
.y14c{bottom:208.200000px;}
.y11c{bottom:208.920000px;}
.ya0{bottom:211.800000px;}
.y11d{bottom:212.520000px;}
.y72{bottom:212.880000px;}
.y1b{bottom:213.240000px;}
.y1ad{bottom:214.680000px;}
.y196{bottom:217.200000px;}
.y173{bottom:219.360000px;}
.y1ce{bottom:219.720000px;}
.y117{bottom:220.080000px;}
.y19d{bottom:220.440000px;}
.y3c{bottom:224.040000px;}
.y6c{bottom:226.920000px;}
.y9f{bottom:228.360000px;}
.y101{bottom:231.960000px;}
.y64{bottom:234.120000px;}
.y1a{bottom:236.280000px;}
.y183{bottom:237.000000px;}
.y119{bottom:237.360000px;}
.y14b{bottom:238.800000px;}
.yb1{bottom:240.240000px;}
.yf9{bottom:242.760000px;}
.y3b{bottom:244.200000px;}
.y9e{bottom:245.280000px;}
.y1aa{bottom:245.640000px;}
.y195{bottom:247.440000px;}
.y171{bottom:248.880000px;}
.ye0{bottom:249.240000px;}
.y116{bottom:250.320000px;}
.y19c{bottom:250.680000px;}
.y172{bottom:252.480000px;}
.ye1{bottom:252.840000px;}
.y63{bottom:254.280000px;}
.y162{bottom:258.600000px;}
.y19{bottom:259.680000px;}
.y9d{bottom:262.200000px;}
.y3a{bottom:264.360000px;}
.y70{bottom:265.080000px;}
.y9c{bottom:265.800000px;}
.y182{bottom:267.600000px;}
.ycf{bottom:267.960000px;}
.y71{bottom:268.680000px;}
.y14a{bottom:269.040000px;}
.yb0{bottom:270.480000px;}
.yf8{bottom:273.000000px;}
.y62{bottom:274.440000px;}
.y1ac{bottom:275.520000px;}
.y1a9{bottom:276.240000px;}
.y194{bottom:278.040000px;}
.y9b{bottom:280.200000px;}
.y1cd{bottom:280.560000px;}
.y115{bottom:280.920000px;}
.y19b{bottom:281.280000px;}
.y18{bottom:283.080000px;}
.y39{bottom:284.880000px;}
.y161{bottom:288.840000px;}
.ye6{bottom:290.640000px;}
.y61{bottom:294.960000px;}
.y189{bottom:297.120000px;}
.y181{bottom:297.840000px;}
.yce{bottom:298.200000px;}
.y149{bottom:299.280000px;}
.yaf{bottom:300.720000px;}
.yf7{bottom:303.240000px;}
.y38{bottom:305.040000px;}
.y17{bottom:306.120000px;}
.y1a8{bottom:306.480000px;}
.y134{bottom:308.280000px;}
.y1ab{bottom:308.640000px;}
.y199{bottom:310.440000px;}
.y113{bottom:311.160000px;}
.y19a{bottom:314.040000px;}
.y60{bottom:315.120000px;}
.y114{bottom:318.000000px;}
.y160{bottom:319.440000px;}
.y9a{bottom:321.240000px;}
.y37{bottom:325.200000px;}
.y180{bottom:328.080000px;}
.ycd{bottom:328.440000px;}
.y16{bottom:329.520000px;}
.y148{bottom:329.880000px;}
.yae{bottom:331.320000px;}
.yf6{bottom:333.840000px;}
.y5f{bottom:335.280000px;}
.y1a7{bottom:336.720000px;}
.y132{bottom:338.880000px;}
.y112{bottom:341.760000px;}
.y36{bottom:345.360000px;}
.y133{bottom:345.720000px;}
.y15f{bottom:349.680000px;}
.y98{bottom:351.480000px;}
.y15{bottom:352.920000px;}
.y5e{bottom:355.440000px;}
.y99{bottom:358.320000px;}
.y17f{bottom:358.680000px;}
.ycc{bottom:359.040000px;}
.y147{bottom:360.120000px;}
.yad{bottom:361.560000px;}
.yf5{bottom:364.080000px;}
.y35{bottom:365.880000px;}
.y1a5{bottom:366.240000px;}
.y131{bottom:369.120000px;}
.y1a6{bottom:369.840000px;}
.y111{bottom:372.000000px;}
.y5d{bottom:375.960000px;}
.y14{bottom:376.320000px;}
.y15e{bottom:379.920000px;}
.y97{bottom:381.720000px;}
.y34{bottom:386.040000px;}
.y17d{bottom:388.920000px;}
.ycb{bottom:389.280000px;}
.y146{bottom:390.720000px;}
.yab{bottom:392.160000px;}
.y17e{bottom:392.520000px;}
.y100{bottom:392.880000px;}
.yf4{bottom:394.680000px;}
.y5c{bottom:396.120000px;}
.yac{bottom:399.000000px;}
.y13{bottom:399.360000px;}
.y110{bottom:402.240000px;}
.y33{bottom:406.200000px;}
.y15d{bottom:410.520000px;}
.y96{bottom:412.320000px;}
.y5b{bottom:416.280000px;}
.ye5{bottom:419.160000px;}
.y17c{bottom:419.520000px;}
.yca{bottom:419.880000px;}
.y145{bottom:420.960000px;}
.yaa{bottom:422.400000px;}
.y12{bottom:422.760000px;}
.yf3{bottom:424.920000px;}
.y32{bottom:426.360000px;}
.y130{bottom:429.960000px;}
.y10f{bottom:432.840000px;}
.y5a{bottom:436.440000px;}
.y15c{bottom:440.760000px;}
.y95{bottom:442.560000px;}
.y11{bottom:446.160000px;}
.y31{bottom:446.880000px;}
.y188{bottom:449.400000px;}
.y17b{bottom:449.760000px;}
.yc9{bottom:450.120000px;}
.y144{bottom:451.200000px;}
.ya9{bottom:452.640000px;}
.yf2{bottom:455.160000px;}
.y59{bottom:456.960000px;}
.y12f{bottom:460.200000px;}
.y10d{bottom:463.080000px;}
.ydf{bottom:464.160000px;}
.y30{bottom:467.040000px;}
.y10{bottom:469.200000px;}
.y10e{bottom:469.920000px;}
.y15b{bottom:471.360000px;}
.y94{bottom:473.160000px;}
.y58{bottom:477.120000px;}
.y17a{bottom:480.000000px;}
.yc8{bottom:480.360000px;}
.y143{bottom:481.800000px;}
.y170{bottom:482.880000px;}
.ya8{bottom:483.240000px;}
.yf1{bottom:485.760000px;}
.y1b5{bottom:487.200000px;}
.y12e{bottom:490.440000px;}
.yf{bottom:492.600000px;}
.y10c{bottom:493.320000px;}
.ydd{bottom:494.400000px;}
.y57{bottom:497.280000px;}
.y2f{bottom:498.720000px;}
.yde{bottom:501.240000px;}
.y15a{bottom:501.600000px;}
.y93{bottom:503.400000px;}
.y6b{bottom:507.360000px;}
.y187{bottom:510.240000px;}
.y179{bottom:510.600000px;}
.yc7{bottom:510.960000px;}
.y141{bottom:512.040000px;}
.y16f{bottom:513.120000px;}
.ya7{bottom:513.480000px;}
.ye{bottom:516.000000px;}
.y56{bottom:517.440000px;}
.y142{bottom:518.880000px;}
.y12d{bottom:521.040000px;}
.y10b{bottom:523.920000px;}
.ydc{bottom:525.000000px;}
.y159{bottom:531.840000px;}
.y18f{bottom:532.920000px;}
.y92{bottom:533.640000px;}
.y190{bottom:536.520000px;}
.y55{bottom:537.960000px;}
.yd{bottom:539.040000px;}
.y178{bottom:540.840000px;}
.yc6{bottom:541.200000px;}
.y140{bottom:542.280000px;}
.ya5{bottom:542.640000px;}
.y16e{bottom:543.360000px;}
.y1cc{bottom:543.720000px;}
.ya6{bottom:546.240000px;}
.y2e{bottom:546.600000px;}
.y1b4{bottom:548.040000px;}
.y12c{bottom:551.280000px;}
.y10a{bottom:554.160000px;}
.ydb{bottom:555.240000px;}
.yc{bottom:558.120000px;}
.y157{bottom:562.440000px;}
.y90{bottom:564.240000px;}
.y6a{bottom:568.200000px;}
.y158{bottom:569.280000px;}
.ya4{bottom:570.720000px;}
.y91{bottom:571.080000px;}
.yc5{bottom:571.440000px;}
.y13f{bottom:572.880000px;}
.y16d{bottom:573.960000px;}
.y1cb{bottom:574.320000px;}
.yf0{bottom:576.840000px;}
.y54{bottom:578.280000px;}
.y12b{bottom:581.880000px;}
.y109{bottom:584.760000px;}
.yda{bottom:585.840000px;}
.y2d{bottom:592.320000px;}
.y156{bottom:592.680000px;}
.y8f{bottom:594.480000px;}
.y53{bottom:598.440000px;}
.y177{bottom:600.600000px;}
.yc4{bottom:602.040000px;}
.y13e{bottom:603.120000px;}
.y16c{bottom:604.200000px;}
.y1ca{bottom:604.560000px;}
.yff{bottom:605.280000px;}
.yef{bottom:607.080000px;}
.y1b3{bottom:608.880000px;}
.y12a{bottom:612.120000px;}
.y108{bottom:615.000000px;}
.yd9{bottom:616.080000px;}
.y52{bottom:618.960000px;}
.y155{bottom:622.920000px;}
.y8e{bottom:624.720000px;}
.ya3{bottom:626.160000px;}
.y69{bottom:629.040000px;}
.yc3{bottom:632.280000px;}
.y13d{bottom:633.720000px;}
.y16b{bottom:634.440000px;}
.y1c9{bottom:635.160000px;}
.y2c{bottom:637.680000px;}
.y51{bottom:639.120000px;}
.y129{bottom:642.360000px;}
.y107{bottom:645.240000px;}
.yd8{bottom:646.320000px;}
.y154{bottom:653.520000px;}
.y8d{bottom:655.320000px;}
.y186{bottom:658.560000px;}
.y50{bottom:659.280000px;}
.y1a4{bottom:660.360000px;}
.yc2{bottom:662.880000px;}
.y13c{bottom:663.960000px;}
.y16a{bottom:665.040000px;}
.y1c8{bottom:665.400000px;}
.yee{bottom:667.920000px;}
.y1b2{bottom:669.360000px;}
.y128{bottom:672.960000px;}
.y106{bottom:675.840000px;}
.yd7{bottom:676.920000px;}
.y4f{bottom:679.440000px;}
.y18e{bottom:682.680000px;}
.y2b{bottom:683.400000px;}
.y153{bottom:683.760000px;}
.y8c{bottom:685.560000px;}
.y68{bottom:689.880000px;}
.y1a3{bottom:690.600000px;}
.y11b{bottom:692.400000px;}
.yc1{bottom:693.120000px;}
.y13b{bottom:694.200000px;}
.y169{bottom:695.280000px;}
.y1c7{bottom:695.640000px;}
.yec{bottom:697.080000px;}
.y4e{bottom:699.960000px;}
.yed{bottom:700.680000px;}
.y2a{bottom:702.120000px;}
.y126{bottom:703.200000px;}
.y105{bottom:706.080000px;}
.yd6{bottom:707.160000px;}
.y127{bottom:710.040000px;}
.y18c{bottom:712.200000px;}
.y152{bottom:714.360000px;}
.y18d{bottom:715.800000px;}
.y8b{bottom:716.160000px;}
.y4d{bottom:720.120000px;}
.y1a2{bottom:721.200000px;}
.yc0{bottom:723.360000px;}
.y13a{bottom:724.800000px;}
.yeb{bottom:725.160000px;}
.y168{bottom:725.880000px;}
.y1c6{bottom:726.240000px;}
.y6f{bottom:726.960000px;}
.y125{bottom:733.440000px;}
.y104{bottom:735.240000px;}
.yd5{bottom:737.400000px;}
.y4c{bottom:740.280000px;}
.y151{bottom:744.600000px;}
.y8a{bottom:746.400000px;}
.y29{bottom:747.480000px;}
.y67{bottom:750.360000px;}
.y1a1{bottom:751.440000px;}
.yea{bottom:752.880000px;}
.y198{bottom:753.240000px;}
.ybf{bottom:753.960000px;}
.y139{bottom:755.040000px;}
.y167{bottom:756.120000px;}
.y1c5{bottom:756.480000px;}
.y4b{bottom:760.440000px;}
.y102{bottom:763.680000px;}
.y124{bottom:764.040000px;}
.y103{bottom:767.280000px;}
.yd4{bottom:768.000000px;}
.y150{bottom:774.840000px;}
.y89{bottom:776.640000px;}
.y1ae{bottom:780.240000px;}
.ye9{bottom:780.600000px;}
.y4a{bottom:780.960000px;}
.y1a0{bottom:781.680000px;}
.ybe{bottom:784.200000px;}
.y138{bottom:785.280000px;}
.y166{bottom:786.360000px;}
.y1c4{bottom:786.720000px;}
.y6e{bottom:787.800000px;}
.y28{bottom:792.840000px;}
.y123{bottom:794.280000px;}
.yd3{bottom:798.240000px;}
.y14f{bottom:804.360000px;}
.y88{bottom:807.240000px;}
.ye8{bottom:808.680000px;}
.y19e{bottom:809.760000px;}
.y49{bottom:811.200000px;}
.y27{bottom:811.560000px;}
.y19f{bottom:813.360000px;}
.ybc{bottom:814.440000px;}
.y137{bottom:815.880000px;}
.y165{bottom:816.600000px;}
.y1c3{bottom:817.320000px;}
.yfe{bottom:818.040000px;}
.ybd{bottom:821.280000px;}
.y164{bottom:823.440000px;}
.y122{bottom:824.880000px;}
.yd2{bottom:828.840000px;}
.y14d{bottom:832.440000px;}
.y14e{bottom:836.040000px;}
.y87{bottom:837.480000px;}
.y48{bottom:841.440000px;}
.ye4{bottom:844.320000px;}
.ybb{bottom:845.040000px;}
.y1c2{bottom:847.560000px;}
.yfd{bottom:848.280000px;}
.y193{bottom:851.160000px;}
.y121{bottom:855.120000px;}
.y26{bottom:857.280000px;}
.yd0{bottom:858.000000px;}
.yd1{bottom:861.600000px;}
.y86{bottom:867.720000px;}
.y192{bottom:871.320000px;}
.y47{bottom:872.040000px;}
.y135{bottom:873.120000px;}
.yba{bottom:875.280000px;}
.y136{bottom:876.720000px;}
.y1c1{bottom:878.160000px;}
.yb{bottom:880.320000px;}
.y120{bottom:881.400000px;}
.y85{bottom:898.320000px;}
.y11f{bottom:901.560000px;}
.y46{bottom:902.280000px;}
.y25{bottom:902.640000px;}
.ya{bottom:903.720000px;}
.y185{bottom:905.160000px;}
.yb9{bottom:905.880000px;}
.y1c0{bottom:908.400000px;}
.y176{bottom:911.280000px;}
.y9{bottom:927.120000px;}
.y83{bottom:928.560000px;}
.y45{bottom:932.880000px;}
.y84{bottom:935.400000px;}
.yb8{bottom:936.120000px;}
.y1bf{bottom:938.640000px;}
.y174{bottom:940.800000px;}
.y175{bottom:944.400000px;}
.y24{bottom:948.360000px;}
.y8{bottom:950.520000px;}
.y82{bottom:959.160000px;}
.y44{bottom:963.120000px;}
.y118{bottom:966.000000px;}
.yb7{bottom:966.360000px;}
.y1be{bottom:969.240000px;}
.y7{bottom:973.560000px;}
.y81{bottom:989.400000px;}
.y43{bottom:993.360000px;}
.y23{bottom:993.720000px;}
.ye3{bottom:996.240000px;}
.yb6{bottom:996.960000px;}
.y1bd{bottom:999.480000px;}
.y6{bottom:1006.320000px;}
.y80{bottom:1019.640000px;}
.yb5{bottom:1023.240000px;}
.y42{bottom:1023.960000px;}
.y1bc{bottom:1029.720000px;}
.y22{bottom:1039.440000px;}
.y7f{bottom:1050.240000px;}
.y5{bottom:1053.840000px;}
.y41{bottom:1054.200000px;}
.ya2{bottom:1057.080000px;}
.y1bb{bottom:1060.320000px;}
.y7e{bottom:1080.480000px;}
.y40{bottom:1084.440000px;}
.y21{bottom:1084.800000px;}
.y1ba{bottom:1090.560000px;}
.yfc{bottom:1091.280000px;}
.y4{bottom:1103.880000px;}
.y7d{bottom:1110.720000px;}
.y3f{bottom:1115.040000px;}
.yb4{bottom:1117.560000px;}
.y1b9{bottom:1121.160000px;}
.yfb{bottom:1121.880000px;}
.y20{bottom:1141.320000px;}
.y7c{bottom:1148.160000px;}
.h2{height:21.000000px;}
.hb{height:25.913672px;}
.ha{height:27.833203px;}
.h1{height:47.988281px;}
.hc{height:50.616563px;}
.h7{height:55.437188px;}
.h3{height:60.257813px;}
.h6{height:60.328125px;}
.h8{height:60.890625px;}
.h4{height:79.660547px;}
.h5{height:112.292578px;}
.h9{height:1236.000000px;}
.h0{height:1263.000000px;}
.w1{width:10.500000px;}
.w3{width:18.000000px;}
.w2{width:865.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xe{left:27.000000px;}
.x16{left:100.440000px;}
.x1{left:127.439928px;}
.x17{left:132.120108px;}
.x28{left:136.799928px;}
.x5c{left:139.846788px;}
.x83{left:147.083112px;}
.xd{left:154.439928px;}
.x11{left:156.600000px;}
.x6a{left:157.680000px;}
.x49{left:160.560000px;}
.x47{left:163.800000px;}
.x38{left:164.880000px;}
.x3{left:174.368052px;}
.x65{left:176.040000px;}
.x6b{left:180.360000px;}
.x88{left:181.439928px;}
.x24{left:186.989868px;}
.x12{left:188.536752px;}
.x2b{left:195.480000px;}
.x4a{left:197.698608px;}
.x48{left:200.897820px;}
.x39{left:202.005252px;}
.x5d{left:208.439928px;}
.x66{left:213.070680px;}
.x6c{left:217.386108px;}
.x52{left:222.120000px;}
.x1c{left:229.320000px;}
.x2c{left:232.573608px;}
.x29{left:239.040000px;}
.x80{left:246.240000px;}
.x53{left:259.109244px;}
.x1d{left:261.487080px;}
.x1a{left:267.480000px;}
.x78{left:270.055656px;}
.x2a{left:276.264036px;}
.x81{left:283.189824px;}
.x20{left:288.000000px;}
.x1b{left:299.507436px;}
.x25{left:306.000000px;}
.x18{left:308.160000px;}
.x76{left:312.120000px;}
.x64{left:313.922952px;}
.x7e{left:315.000000px;}
.x21{left:320.135364px;}
.x6{left:333.180540px;}
.x3e{left:337.680000px;}
.x19{left:340.099704px;}
.x26{left:342.440928px;}
.x7{left:343.890036px;}
.x27{left:347.760000px;}
.x77{left:349.362684px;}
.x7f{left:352.025784px;}
.x8{left:354.375360px;}
.x44{left:360.720000px;}
.x4d{left:367.572168px;}
.x3f{left:374.216328px;}
.x55{left:377.274528px;}
.x5b{left:381.816288px;}
.xf{left:384.120000px;}
.x5e{left:387.720000px;}
.x45{left:397.766520px;}
.xc{left:400.030200px;}
.x22{left:407.520000px;}
.xb{left:412.115040px;}
.x10{left:416.037240px;}
.x5f{left:424.720080px;}
.x23{left:439.385400px;}
.x4{left:446.339880px;}
.x3c{left:449.640000px;}
.x3d{left:486.797040px;}
.x33{left:495.720000px;}
.xa{left:505.751760px;}
.x32{left:518.249880px;}
.x60{left:526.320000px;}
.x34{left:532.109880px;}
.x50{left:538.560000px;}
.x79{left:542.733480px;}
.x75{left:546.120000px;}
.x4b{left:562.680000px;}
.x85{left:564.480000px;}
.x9{left:566.888400px;}
.x51{left:575.812800px;}
.x14{left:584.280000px;}
.x84{left:587.009880px;}
.x7d{left:588.989880px;}
.x2e{left:597.600000px;}
.x4c{left:599.069880px;}
.x86{left:600.869880px;}
.x54{left:602.900640px;}
.x13{left:606.629880px;}
.x4e{left:608.040000px;}
.x15{left:615.809880px;}
.x73{left:617.760000px;}
.x2d{left:620.129880px;}
.x87{left:622.080000px;}
.x56{left:624.600000px;}
.x5{left:627.059880px;}
.x2f{left:633.989880px;}
.x3a{left:639.360000px;}
.x4f{left:645.184800px;}
.x74{left:654.149880px;}
.x62{left:657.000000px;}
.x46{left:658.107720px;}
.x30{left:659.160000px;}
.x57{left:661.515120px;}
.x6f{left:672.480000px;}
.x3b{left:676.491480px;}
.x61{left:679.349880px;}
.x82{left:684.569880px;}
.x63{left:693.209880px;}
.x59{left:694.440000px;}
.x31{left:696.152880px;}
.x71{left:698.069880px;}
.x7a{left:699.120000px;}
.x40{left:700.200000px;}
.x1e{left:703.080000px;}
.x70{left:708.869880px;}
.x72{left:711.929880px;}
.x58{left:716.789880px;}
.x6d{left:720.000000px;}
.x42{left:722.880000px;}
.x36{left:724.320000px;}
.x68{left:728.280000px;}
.x5a{left:730.649880px;}
.x7c{left:733.680000px;}
.x1f{left:735.206040px;}
.x41{left:737.250120px;}
.x7b{left:745.409880px;}
.x35{left:748.500000px;}
.x67{left:750.809880px;}
.x2{left:756.000000px;}
.x6e{left:757.019880px;}
.x43{left:759.992760px;}
.x37{left:761.302440px;}
.x69{left:764.669880px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-3.025152pt;}
.ls4{letter-spacing:-2.920320pt;}
.ls3{letter-spacing:-2.905344pt;}
.ls1{letter-spacing:-2.890368pt;}
.ls4c{letter-spacing:-0.419328pt;}
.ls45{letter-spacing:-0.365568pt;}
.ls2f{letter-spacing:-0.327936pt;}
.ls2e{letter-spacing:-0.311808pt;}
.ls31{letter-spacing:-0.274176pt;}
.ls22{letter-spacing:-0.268800pt;}
.ls44{letter-spacing:-0.258048pt;}
.ls49{letter-spacing:-0.220416pt;}
.ls27{letter-spacing:-0.215040pt;}
.ls24{letter-spacing:-0.204288pt;}
.ls15{letter-spacing:-0.188416pt;}
.ls30{letter-spacing:-0.166656pt;}
.ls3d{letter-spacing:-0.164864pt;}
.ls23{letter-spacing:-0.161280pt;}
.ls12{letter-spacing:-0.153088pt;}
.ls26{letter-spacing:-0.150528pt;}
.ls17{letter-spacing:-0.147200pt;}
.lsf{letter-spacing:-0.135424pt;}
.ls18{letter-spacing:-0.129536pt;}
.ls13{letter-spacing:-0.123648pt;}
.ls2d{letter-spacing:-0.118272pt;}
.ls16{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.111872pt;}
.ls2c{letter-spacing:-0.107520pt;}
.ls3e{letter-spacing:-0.105984pt;}
.ls48{letter-spacing:-0.100096pt;}
.ls25{letter-spacing:-0.096768pt;}
.ls32{letter-spacing:-0.094208pt;}
.ls14{letter-spacing:-0.076544pt;}
.ls10{letter-spacing:-0.058880pt;}
.ls3f{letter-spacing:-0.047104pt;}
.ls1a{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:-0.019200pt;}
.ls1b{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.019200pt;}
.ls3a{letter-spacing:0.032000pt;}
.ls1e{letter-spacing:0.044800pt;}
.ls19{letter-spacing:0.051200pt;}
.ls33{letter-spacing:0.432000pt;}
.ls34{letter-spacing:0.512256pt;}
.ls29{letter-spacing:0.549632pt;}
.ls2a{letter-spacing:0.653824pt;}
.ls2b{letter-spacing:0.655104pt;}
.ls42{letter-spacing:0.722816pt;}
.ls43{letter-spacing:0.724480pt;}
.ls1f{letter-spacing:0.882816pt;}
.ls41{letter-spacing:0.984320pt;}
.ls39{letter-spacing:1.358208pt;}
.ls40{letter-spacing:2.196480pt;}
.ls3c{letter-spacing:2.296320pt;}
.ls35{letter-spacing:2.663680pt;}
.ls46{letter-spacing:2.701696pt;}
.ls28{letter-spacing:2.888960pt;}
.ls1d{letter-spacing:4.756480pt;}
.ls21{letter-spacing:9.101696pt;}
.ls3b{letter-spacing:9.585920pt;}
.ls36{letter-spacing:12.458240pt;}
.lse{letter-spacing:13.431040pt;}
.ls4b{letter-spacing:14.173440pt;}
.ls20{letter-spacing:31.551744pt;}
.ls1c{letter-spacing:36.208000pt;}
.ls8{letter-spacing:55.880192pt;}
.ls9{letter-spacing:56.946560pt;}
.lsa{letter-spacing:57.746048pt;}
.ls4d{letter-spacing:58.208000pt;}
.lsb{letter-spacing:64.613248pt;}
.lsd{letter-spacing:66.213632pt;}
.lsc{letter-spacing:66.480512pt;}
.ls37{letter-spacing:74.705792pt;}
.ls38{letter-spacing:74.707200pt;}
.ls4a{letter-spacing:80.895488pt;}
.ls47{letter-spacing:85.551744pt;}
.ws9{word-spacing:-16.051200pt;}
.wsd{word-spacing:-16.044800pt;}
.ws18{word-spacing:-16.032000pt;}
.wse{word-spacing:-16.019200pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.987200pt;}
.wsc{word-spacing:-15.980800pt;}
.wsa{word-spacing:-15.968000pt;}
.ws1e{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.661120pt;}
.ws19{word-spacing:-14.625792pt;}
.ws5{word-spacing:-14.608128pt;}
.ws7{word-spacing:-14.602240pt;}
.ws3{word-spacing:-14.584576pt;}
.ws8{word-spacing:-14.572800pt;}
.ws6{word-spacing:-14.531584pt;}
.ws10{word-spacing:-13.440000pt;}
.ws13{word-spacing:-13.343232pt;}
.ws12{word-spacing:-13.321728pt;}
.ws14{word-spacing:-13.289472pt;}
.ws16{word-spacing:-13.278720pt;}
.ws17{word-spacing:-13.273344pt;}
.wsf{word-spacing:-13.235712pt;}
.ws11{word-spacing:-13.224960pt;}
.ws1b{word-spacing:-13.181952pt;}
.ws15{word-spacing:-13.112064pt;}
.ws1d{word-spacing:-13.074432pt;}
.ws1f{word-spacing:-13.020672pt;}
.ws1c{word-spacing:-0.466560pt;}
.ws1a{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1{word-spacing:2.875392pt;}
._f{margin-left:-14.657536pt;}
._8{margin-left:-13.677312pt;}
._4{margin-left:-12.747648pt;}
._6{margin-left:-11.856384pt;}
._5{margin-left:-9.713408pt;}
._3{margin-left:-7.609728pt;}
._d{margin-left:-6.361600pt;}
._b{margin-left:-4.631424pt;}
._e{margin-left:-3.728128pt;}
._1{margin-left:-2.383616pt;}
._7{margin-left:-0.894336pt;}
._0{width:1.174400pt;}
._2{width:2.246400pt;}
._19{width:3.198080pt;}
._11{width:4.089600pt;}
._15{width:5.152000pt;}
._14{width:6.752000pt;}
._12{width:7.686400pt;}
._16{width:8.851200pt;}
._1a{width:10.153600pt;}
._17{width:11.110400pt;}
._10{width:12.518400pt;}
._c{width:13.696640pt;}
._13{width:14.617600pt;}
._18{width:17.414528pt;}
._1d{width:19.142272pt;}
._20{width:20.205184pt;}
._23{width:21.420800pt;}
._1e{width:22.393600pt;}
._24{width:23.948800pt;}
._22{width:25.683200pt;}
._a{width:27.020416pt;}
._9{width:28.161280pt;}
._1f{width:29.406720pt;}
._25{width:30.325760pt;}
._27{width:32.480000pt;}
._28{width:40.032000pt;}
._29{width:65.632000pt;}
._21{width:74.780160pt;}
._1c{width:94.133760pt;}
._1b{width:95.155200pt;}
._2a{width:121.472000pt;}
._26{width:172.799488pt;}
._2b{width:182.508800pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.240000pt;}
.fs2{font-size:149.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.906667pt;}
.y2{bottom:48.000000pt;}
.y1{bottom:51.946667pt;}
.y7b{bottom:98.026667pt;}
.y7a{bottom:101.226667pt;}
.y1b1{bottom:101.866667pt;}
.y1f{bottom:106.666667pt;}
.y1b8{bottom:109.226667pt;}
.y79{bottom:113.066667pt;}
.y197{bottom:114.026667pt;}
.ya1{bottom:116.266667pt;}
.y1e{bottom:127.466667pt;}
.y78{bottom:128.106667pt;}
.yfa{bottom:129.066667pt;}
.y1b0{bottom:130.026667pt;}
.yb3{bottom:131.306667pt;}
.y1b7{bottom:136.106667pt;}
.y66{bottom:141.546667pt;}
.y77{bottom:143.146667pt;}
.yb2{bottom:144.106667pt;}
.y18b{bottom:146.346667pt;}
.y1d{bottom:147.946667pt;}
.ye2{bottom:150.506667pt;}
.y1b6{bottom:154.026667pt;}
.y1af{bottom:157.226667pt;}
.y76{bottom:158.186667pt;}
.y18a{bottom:159.146667pt;}
.y11e{bottom:160.746667pt;}
.y75{bottom:161.386667pt;}
.y3e{bottom:162.986667pt;}
.y65{bottom:166.186667pt;}
.y1cf{bottom:168.426667pt;}
.y1c{bottom:168.746667pt;}
.y74{bottom:173.226667pt;}
.ye7{bottom:174.186667pt;}
.y6d{bottom:174.506667pt;}
.y163{bottom:175.786667pt;}
.y73{bottom:176.426667pt;}
.y191{bottom:178.026667pt;}
.y3d{bottom:181.226667pt;}
.y184{bottom:183.786667pt;}
.y11a{bottom:184.106667pt;}
.y14c{bottom:185.066667pt;}
.y11c{bottom:185.706667pt;}
.ya0{bottom:188.266667pt;}
.y11d{bottom:188.906667pt;}
.y72{bottom:189.226667pt;}
.y1b{bottom:189.546667pt;}
.y1ad{bottom:190.826667pt;}
.y196{bottom:193.066667pt;}
.y173{bottom:194.986667pt;}
.y1ce{bottom:195.306667pt;}
.y117{bottom:195.626667pt;}
.y19d{bottom:195.946667pt;}
.y3c{bottom:199.146667pt;}
.y6c{bottom:201.706667pt;}
.y9f{bottom:202.986667pt;}
.y101{bottom:206.186667pt;}
.y64{bottom:208.106667pt;}
.y1a{bottom:210.026667pt;}
.y183{bottom:210.666667pt;}
.y119{bottom:210.986667pt;}
.y14b{bottom:212.266667pt;}
.yb1{bottom:213.546667pt;}
.yf9{bottom:215.786667pt;}
.y3b{bottom:217.066667pt;}
.y9e{bottom:218.026667pt;}
.y1aa{bottom:218.346667pt;}
.y195{bottom:219.946667pt;}
.y171{bottom:221.226667pt;}
.ye0{bottom:221.546667pt;}
.y116{bottom:222.506667pt;}
.y19c{bottom:222.826667pt;}
.y172{bottom:224.426667pt;}
.ye1{bottom:224.746667pt;}
.y63{bottom:226.026667pt;}
.y162{bottom:229.866667pt;}
.y19{bottom:230.826667pt;}
.y9d{bottom:233.066667pt;}
.y3a{bottom:234.986667pt;}
.y70{bottom:235.626667pt;}
.y9c{bottom:236.266667pt;}
.y182{bottom:237.866667pt;}
.ycf{bottom:238.186667pt;}
.y71{bottom:238.826667pt;}
.y14a{bottom:239.146667pt;}
.yb0{bottom:240.426667pt;}
.yf8{bottom:242.666667pt;}
.y62{bottom:243.946667pt;}
.y1ac{bottom:244.906667pt;}
.y1a9{bottom:245.546667pt;}
.y194{bottom:247.146667pt;}
.y9b{bottom:249.066667pt;}
.y1cd{bottom:249.386667pt;}
.y115{bottom:249.706667pt;}
.y19b{bottom:250.026667pt;}
.y18{bottom:251.626667pt;}
.y39{bottom:253.226667pt;}
.y161{bottom:256.746667pt;}
.ye6{bottom:258.346667pt;}
.y61{bottom:262.186667pt;}
.y189{bottom:264.106667pt;}
.y181{bottom:264.746667pt;}
.yce{bottom:265.066667pt;}
.y149{bottom:266.026667pt;}
.yaf{bottom:267.306667pt;}
.yf7{bottom:269.546667pt;}
.y38{bottom:271.146667pt;}
.y17{bottom:272.106667pt;}
.y1a8{bottom:272.426667pt;}
.y134{bottom:274.026667pt;}
.y1ab{bottom:274.346667pt;}
.y199{bottom:275.946667pt;}
.y113{bottom:276.586667pt;}
.y19a{bottom:279.146667pt;}
.y60{bottom:280.106667pt;}
.y114{bottom:282.666667pt;}
.y160{bottom:283.946667pt;}
.y9a{bottom:285.546667pt;}
.y37{bottom:289.066667pt;}
.y180{bottom:291.626667pt;}
.ycd{bottom:291.946667pt;}
.y16{bottom:292.906667pt;}
.y148{bottom:293.226667pt;}
.yae{bottom:294.506667pt;}
.yf6{bottom:296.746667pt;}
.y5f{bottom:298.026667pt;}
.y1a7{bottom:299.306667pt;}
.y132{bottom:301.226667pt;}
.y112{bottom:303.786667pt;}
.y36{bottom:306.986667pt;}
.y133{bottom:307.306667pt;}
.y15f{bottom:310.826667pt;}
.y98{bottom:312.426667pt;}
.y15{bottom:313.706667pt;}
.y5e{bottom:315.946667pt;}
.y99{bottom:318.506667pt;}
.y17f{bottom:318.826667pt;}
.ycc{bottom:319.146667pt;}
.y147{bottom:320.106667pt;}
.yad{bottom:321.386667pt;}
.yf5{bottom:323.626667pt;}
.y35{bottom:325.226667pt;}
.y1a5{bottom:325.546667pt;}
.y131{bottom:328.106667pt;}
.y1a6{bottom:328.746667pt;}
.y111{bottom:330.666667pt;}
.y5d{bottom:334.186667pt;}
.y14{bottom:334.506667pt;}
.y15e{bottom:337.706667pt;}
.y97{bottom:339.306667pt;}
.y34{bottom:343.146667pt;}
.y17d{bottom:345.706667pt;}
.ycb{bottom:346.026667pt;}
.y146{bottom:347.306667pt;}
.yab{bottom:348.586667pt;}
.y17e{bottom:348.906667pt;}
.y100{bottom:349.226667pt;}
.yf4{bottom:350.826667pt;}
.y5c{bottom:352.106667pt;}
.yac{bottom:354.666667pt;}
.y13{bottom:354.986667pt;}
.y110{bottom:357.546667pt;}
.y33{bottom:361.066667pt;}
.y15d{bottom:364.906667pt;}
.y96{bottom:366.506667pt;}
.y5b{bottom:370.026667pt;}
.ye5{bottom:372.586667pt;}
.y17c{bottom:372.906667pt;}
.yca{bottom:373.226667pt;}
.y145{bottom:374.186667pt;}
.yaa{bottom:375.466667pt;}
.y12{bottom:375.786667pt;}
.yf3{bottom:377.706667pt;}
.y32{bottom:378.986667pt;}
.y130{bottom:382.186667pt;}
.y10f{bottom:384.746667pt;}
.y5a{bottom:387.946667pt;}
.y15c{bottom:391.786667pt;}
.y95{bottom:393.386667pt;}
.y11{bottom:396.586667pt;}
.y31{bottom:397.226667pt;}
.y188{bottom:399.466667pt;}
.y17b{bottom:399.786667pt;}
.yc9{bottom:400.106667pt;}
.y144{bottom:401.066667pt;}
.ya9{bottom:402.346667pt;}
.yf2{bottom:404.586667pt;}
.y59{bottom:406.186667pt;}
.y12f{bottom:409.066667pt;}
.y10d{bottom:411.626667pt;}
.ydf{bottom:412.586667pt;}
.y30{bottom:415.146667pt;}
.y10{bottom:417.066667pt;}
.y10e{bottom:417.706667pt;}
.y15b{bottom:418.986667pt;}
.y94{bottom:420.586667pt;}
.y58{bottom:424.106667pt;}
.y17a{bottom:426.666667pt;}
.yc8{bottom:426.986667pt;}
.y143{bottom:428.266667pt;}
.y170{bottom:429.226667pt;}
.ya8{bottom:429.546667pt;}
.yf1{bottom:431.786667pt;}
.y1b5{bottom:433.066667pt;}
.y12e{bottom:435.946667pt;}
.yf{bottom:437.866667pt;}
.y10c{bottom:438.506667pt;}
.ydd{bottom:439.466667pt;}
.y57{bottom:442.026667pt;}
.y2f{bottom:443.306667pt;}
.yde{bottom:445.546667pt;}
.y15a{bottom:445.866667pt;}
.y93{bottom:447.466667pt;}
.y6b{bottom:450.986667pt;}
.y187{bottom:453.546667pt;}
.y179{bottom:453.866667pt;}
.yc7{bottom:454.186667pt;}
.y141{bottom:455.146667pt;}
.y16f{bottom:456.106667pt;}
.ya7{bottom:456.426667pt;}
.ye{bottom:458.666667pt;}
.y56{bottom:459.946667pt;}
.y142{bottom:461.226667pt;}
.y12d{bottom:463.146667pt;}
.y10b{bottom:465.706667pt;}
.ydc{bottom:466.666667pt;}
.y159{bottom:472.746667pt;}
.y18f{bottom:473.706667pt;}
.y92{bottom:474.346667pt;}
.y190{bottom:476.906667pt;}
.y55{bottom:478.186667pt;}
.yd{bottom:479.146667pt;}
.y178{bottom:480.746667pt;}
.yc6{bottom:481.066667pt;}
.y140{bottom:482.026667pt;}
.ya5{bottom:482.346667pt;}
.y16e{bottom:482.986667pt;}
.y1cc{bottom:483.306667pt;}
.ya6{bottom:485.546667pt;}
.y2e{bottom:485.866667pt;}
.y1b4{bottom:487.146667pt;}
.y12c{bottom:490.026667pt;}
.y10a{bottom:492.586667pt;}
.ydb{bottom:493.546667pt;}
.yc{bottom:496.106667pt;}
.y157{bottom:499.946667pt;}
.y90{bottom:501.546667pt;}
.y6a{bottom:505.066667pt;}
.y158{bottom:506.026667pt;}
.ya4{bottom:507.306667pt;}
.y91{bottom:507.626667pt;}
.yc5{bottom:507.946667pt;}
.y13f{bottom:509.226667pt;}
.y16d{bottom:510.186667pt;}
.y1cb{bottom:510.506667pt;}
.yf0{bottom:512.746667pt;}
.y54{bottom:514.026667pt;}
.y12b{bottom:517.226667pt;}
.y109{bottom:519.786667pt;}
.yda{bottom:520.746667pt;}
.y2d{bottom:526.506667pt;}
.y156{bottom:526.826667pt;}
.y8f{bottom:528.426667pt;}
.y53{bottom:531.946667pt;}
.y177{bottom:533.866667pt;}
.yc4{bottom:535.146667pt;}
.y13e{bottom:536.106667pt;}
.y16c{bottom:537.066667pt;}
.y1ca{bottom:537.386667pt;}
.yff{bottom:538.026667pt;}
.yef{bottom:539.626667pt;}
.y1b3{bottom:541.226667pt;}
.y12a{bottom:544.106667pt;}
.y108{bottom:546.666667pt;}
.yd9{bottom:547.626667pt;}
.y52{bottom:550.186667pt;}
.y155{bottom:553.706667pt;}
.y8e{bottom:555.306667pt;}
.ya3{bottom:556.586667pt;}
.y69{bottom:559.146667pt;}
.yc3{bottom:562.026667pt;}
.y13d{bottom:563.306667pt;}
.y16b{bottom:563.946667pt;}
.y1c9{bottom:564.586667pt;}
.y2c{bottom:566.826667pt;}
.y51{bottom:568.106667pt;}
.y129{bottom:570.986667pt;}
.y107{bottom:573.546667pt;}
.yd8{bottom:574.506667pt;}
.y154{bottom:580.906667pt;}
.y8d{bottom:582.506667pt;}
.y186{bottom:585.386667pt;}
.y50{bottom:586.026667pt;}
.y1a4{bottom:586.986667pt;}
.yc2{bottom:589.226667pt;}
.y13c{bottom:590.186667pt;}
.y16a{bottom:591.146667pt;}
.y1c8{bottom:591.466667pt;}
.yee{bottom:593.706667pt;}
.y1b2{bottom:594.986667pt;}
.y128{bottom:598.186667pt;}
.y106{bottom:600.746667pt;}
.yd7{bottom:601.706667pt;}
.y4f{bottom:603.946667pt;}
.y18e{bottom:606.826667pt;}
.y2b{bottom:607.466667pt;}
.y153{bottom:607.786667pt;}
.y8c{bottom:609.386667pt;}
.y68{bottom:613.226667pt;}
.y1a3{bottom:613.866667pt;}
.y11b{bottom:615.466667pt;}
.yc1{bottom:616.106667pt;}
.y13b{bottom:617.066667pt;}
.y169{bottom:618.026667pt;}
.y1c7{bottom:618.346667pt;}
.yec{bottom:619.626667pt;}
.y4e{bottom:622.186667pt;}
.yed{bottom:622.826667pt;}
.y2a{bottom:624.106667pt;}
.y126{bottom:625.066667pt;}
.y105{bottom:627.626667pt;}
.yd6{bottom:628.586667pt;}
.y127{bottom:631.146667pt;}
.y18c{bottom:633.066667pt;}
.y152{bottom:634.986667pt;}
.y18d{bottom:636.266667pt;}
.y8b{bottom:636.586667pt;}
.y4d{bottom:640.106667pt;}
.y1a2{bottom:641.066667pt;}
.yc0{bottom:642.986667pt;}
.y13a{bottom:644.266667pt;}
.yeb{bottom:644.586667pt;}
.y168{bottom:645.226667pt;}
.y1c6{bottom:645.546667pt;}
.y6f{bottom:646.186667pt;}
.y125{bottom:651.946667pt;}
.y104{bottom:653.546667pt;}
.yd5{bottom:655.466667pt;}
.y4c{bottom:658.026667pt;}
.y151{bottom:661.866667pt;}
.y8a{bottom:663.466667pt;}
.y29{bottom:664.426667pt;}
.y67{bottom:666.986667pt;}
.y1a1{bottom:667.946667pt;}
.yea{bottom:669.226667pt;}
.y198{bottom:669.546667pt;}
.ybf{bottom:670.186667pt;}
.y139{bottom:671.146667pt;}
.y167{bottom:672.106667pt;}
.y1c5{bottom:672.426667pt;}
.y4b{bottom:675.946667pt;}
.y102{bottom:678.826667pt;}
.y124{bottom:679.146667pt;}
.y103{bottom:682.026667pt;}
.yd4{bottom:682.666667pt;}
.y150{bottom:688.746667pt;}
.y89{bottom:690.346667pt;}
.y1ae{bottom:693.546667pt;}
.ye9{bottom:693.866667pt;}
.y4a{bottom:694.186667pt;}
.y1a0{bottom:694.826667pt;}
.ybe{bottom:697.066667pt;}
.y138{bottom:698.026667pt;}
.y166{bottom:698.986667pt;}
.y1c4{bottom:699.306667pt;}
.y6e{bottom:700.266667pt;}
.y28{bottom:704.746667pt;}
.y123{bottom:706.026667pt;}
.yd3{bottom:709.546667pt;}
.y14f{bottom:714.986667pt;}
.y88{bottom:717.546667pt;}
.ye8{bottom:718.826667pt;}
.y19e{bottom:719.786667pt;}
.y49{bottom:721.066667pt;}
.y27{bottom:721.386667pt;}
.y19f{bottom:722.986667pt;}
.ybc{bottom:723.946667pt;}
.y137{bottom:725.226667pt;}
.y165{bottom:725.866667pt;}
.y1c3{bottom:726.506667pt;}
.yfe{bottom:727.146667pt;}
.ybd{bottom:730.026667pt;}
.y164{bottom:731.946667pt;}
.y122{bottom:733.226667pt;}
.yd2{bottom:736.746667pt;}
.y14d{bottom:739.946667pt;}
.y14e{bottom:743.146667pt;}
.y87{bottom:744.426667pt;}
.y48{bottom:747.946667pt;}
.ye4{bottom:750.506667pt;}
.ybb{bottom:751.146667pt;}
.y1c2{bottom:753.386667pt;}
.yfd{bottom:754.026667pt;}
.y193{bottom:756.586667pt;}
.y121{bottom:760.106667pt;}
.y26{bottom:762.026667pt;}
.yd0{bottom:762.666667pt;}
.yd1{bottom:765.866667pt;}
.y86{bottom:771.306667pt;}
.y192{bottom:774.506667pt;}
.y47{bottom:775.146667pt;}
.y135{bottom:776.106667pt;}
.yba{bottom:778.026667pt;}
.y136{bottom:779.306667pt;}
.y1c1{bottom:780.586667pt;}
.yb{bottom:782.506667pt;}
.y120{bottom:783.466667pt;}
.y85{bottom:798.506667pt;}
.y11f{bottom:801.386667pt;}
.y46{bottom:802.026667pt;}
.y25{bottom:802.346667pt;}
.ya{bottom:803.306667pt;}
.y185{bottom:804.586667pt;}
.yb9{bottom:805.226667pt;}
.y1c0{bottom:807.466667pt;}
.y176{bottom:810.026667pt;}
.y9{bottom:824.106667pt;}
.y83{bottom:825.386667pt;}
.y45{bottom:829.226667pt;}
.y84{bottom:831.466667pt;}
.yb8{bottom:832.106667pt;}
.y1bf{bottom:834.346667pt;}
.y174{bottom:836.266667pt;}
.y175{bottom:839.466667pt;}
.y24{bottom:842.986667pt;}
.y8{bottom:844.906667pt;}
.y82{bottom:852.586667pt;}
.y44{bottom:856.106667pt;}
.y118{bottom:858.666667pt;}
.yb7{bottom:858.986667pt;}
.y1be{bottom:861.546667pt;}
.y7{bottom:865.386667pt;}
.y81{bottom:879.466667pt;}
.y43{bottom:882.986667pt;}
.y23{bottom:883.306667pt;}
.ye3{bottom:885.546667pt;}
.yb6{bottom:886.186667pt;}
.y1bd{bottom:888.426667pt;}
.y6{bottom:894.506667pt;}
.y80{bottom:906.346667pt;}
.yb5{bottom:909.546667pt;}
.y42{bottom:910.186667pt;}
.y1bc{bottom:915.306667pt;}
.y22{bottom:923.946667pt;}
.y7f{bottom:933.546667pt;}
.y5{bottom:936.746667pt;}
.y41{bottom:937.066667pt;}
.ya2{bottom:939.626667pt;}
.y1bb{bottom:942.506667pt;}
.y7e{bottom:960.426667pt;}
.y40{bottom:963.946667pt;}
.y21{bottom:964.266667pt;}
.y1ba{bottom:969.386667pt;}
.yfc{bottom:970.026667pt;}
.y4{bottom:981.226667pt;}
.y7d{bottom:987.306667pt;}
.y3f{bottom:991.146667pt;}
.yb4{bottom:993.386667pt;}
.y1b9{bottom:996.586667pt;}
.yfb{bottom:997.226667pt;}
.y20{bottom:1014.506667pt;}
.y7c{bottom:1020.586667pt;}
.h2{height:18.666667pt;}
.hb{height:23.034375pt;}
.ha{height:24.740625pt;}
.h1{height:42.656250pt;}
.hc{height:44.992500pt;}
.h7{height:49.277500pt;}
.h3{height:53.562500pt;}
.h6{height:53.625000pt;}
.h8{height:54.125000pt;}
.h4{height:70.809375pt;}
.h5{height:99.815625pt;}
.h9{height:1098.666667pt;}
.h0{height:1122.666667pt;}
.w1{width:9.333333pt;}
.w3{width:16.000000pt;}
.w2{width:769.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xe{left:24.000000pt;}
.x16{left:89.280000pt;}
.x1{left:113.279936pt;}
.x17{left:117.440096pt;}
.x28{left:121.599936pt;}
.x5c{left:124.308256pt;}
.x83{left:130.740544pt;}
.xd{left:137.279936pt;}
.x11{left:139.200000pt;}
.x6a{left:140.160000pt;}
.x49{left:142.720000pt;}
.x47{left:145.600000pt;}
.x38{left:146.560000pt;}
.x3{left:154.993824pt;}
.x65{left:156.480000pt;}
.x6b{left:160.320000pt;}
.x88{left:161.279936pt;}
.x24{left:166.213216pt;}
.x12{left:167.588224pt;}
.x2b{left:173.760000pt;}
.x4a{left:175.732096pt;}
.x48{left:178.575840pt;}
.x39{left:179.560224pt;}
.x5d{left:185.279936pt;}
.x66{left:189.396160pt;}
.x6c{left:193.232096pt;}
.x52{left:197.440000pt;}
.x1c{left:203.840000pt;}
.x2c{left:206.732096pt;}
.x29{left:212.480000pt;}
.x80{left:218.880000pt;}
.x53{left:230.319328pt;}
.x1d{left:232.432960pt;}
.x1a{left:237.760000pt;}
.x78{left:240.049472pt;}
.x2a{left:245.568032pt;}
.x81{left:251.724288pt;}
.x20{left:256.000000pt;}
.x1b{left:266.228832pt;}
.x25{left:272.000000pt;}
.x18{left:273.920000pt;}
.x76{left:277.440000pt;}
.x64{left:279.042624pt;}
.x7e{left:280.000000pt;}
.x21{left:284.564768pt;}
.x6{left:296.160480pt;}
.x3e{left:300.160000pt;}
.x19{left:302.310848pt;}
.x26{left:304.391936pt;}
.x7{left:305.680032pt;}
.x27{left:309.120000pt;}
.x77{left:310.544608pt;}
.x7f{left:312.911808pt;}
.x8{left:315.000320pt;}
.x44{left:320.640000pt;}
.x4d{left:326.730816pt;}
.x3f{left:332.636736pt;}
.x55{left:335.355136pt;}
.x5b{left:339.392256pt;}
.xf{left:341.440000pt;}
.x5e{left:344.640000pt;}
.x45{left:353.570240pt;}
.xc{left:355.582400pt;}
.x22{left:362.240000pt;}
.xb{left:366.324480pt;}
.x10{left:369.810880pt;}
.x5f{left:377.528960pt;}
.x23{left:390.564800pt;}
.x4{left:396.746560pt;}
.x3c{left:399.680000pt;}
.x3d{left:432.708480pt;}
.x33{left:440.640000pt;}
.xa{left:449.557120pt;}
.x32{left:460.666560pt;}
.x60{left:467.840000pt;}
.x34{left:472.986560pt;}
.x50{left:478.720000pt;}
.x79{left:482.429760pt;}
.x75{left:485.440000pt;}
.x4b{left:500.160000pt;}
.x85{left:501.760000pt;}
.x9{left:503.900800pt;}
.x51{left:511.833600pt;}
.x14{left:519.360000pt;}
.x84{left:521.786560pt;}
.x7d{left:523.546560pt;}
.x2e{left:531.200000pt;}
.x4c{left:532.506560pt;}
.x86{left:534.106560pt;}
.x54{left:535.911680pt;}
.x13{left:539.226560pt;}
.x4e{left:540.480000pt;}
.x15{left:547.386560pt;}
.x73{left:549.120000pt;}
.x2d{left:551.226560pt;}
.x87{left:552.960000pt;}
.x56{left:555.200000pt;}
.x5{left:557.386560pt;}
.x2f{left:563.546560pt;}
.x3a{left:568.320000pt;}
.x4f{left:573.497600pt;}
.x74{left:581.466560pt;}
.x62{left:584.000000pt;}
.x46{left:584.984640pt;}
.x30{left:585.920000pt;}
.x57{left:588.013440pt;}
.x6f{left:597.760000pt;}
.x3b{left:601.325760pt;}
.x61{left:603.866560pt;}
.x82{left:608.506560pt;}
.x63{left:616.186560pt;}
.x59{left:617.280000pt;}
.x31{left:618.802560pt;}
.x71{left:620.506560pt;}
.x7a{left:621.440000pt;}
.x40{left:622.400000pt;}
.x1e{left:624.960000pt;}
.x70{left:630.106560pt;}
.x72{left:632.826560pt;}
.x58{left:637.146560pt;}
.x6d{left:640.000000pt;}
.x42{left:642.560000pt;}
.x36{left:643.840000pt;}
.x68{left:647.360000pt;}
.x5a{left:649.466560pt;}
.x7c{left:652.160000pt;}
.x1f{left:653.516480pt;}
.x41{left:655.333440pt;}
.x7b{left:662.586560pt;}
.x35{left:665.333333pt;}
.x67{left:667.386560pt;}
.x2{left:672.000000pt;}
.x6e{left:672.906560pt;}
.x43{left:675.549120pt;}
.x37{left:676.713280pt;}
.x69{left:679.706560pt;}
}




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