
    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_c471034439779fa4d4f43cb7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_5f6bd5f077959451e8ab3ebe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933000;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_cb750ed805e8627af636b034.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.071000;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_54d8ff901ca428846f03cd01.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_e1e7547dbd8ceab89cd72226.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.715000;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_a18337b2ba6a88290a658b9b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_6faf39403a3396e64c3e67a9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cea3d2c89a01646b8abd8298.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1764ae608cf4b47651d34cee.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f1fd127e67414644dead2fdd.woff2')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;}
.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;}
.ls38{letter-spacing:-1.600560px;}
.ls23{letter-spacing:-1.592640px;}
.ls39{letter-spacing:-1.432080px;}
.ls48{letter-spacing:-0.771120px;}
.ls67{letter-spacing:-0.398160px;}
.ls26{letter-spacing:-0.341280px;}
.ls40{letter-spacing:-0.336960px;}
.ls20{letter-spacing:-0.324000px;}
.ls21{letter-spacing:-0.284400px;}
.ls10{letter-spacing:-0.282000px;}
.ls47{letter-spacing:-0.272160px;}
.ls7{letter-spacing:-0.233280px;}
.lsf{letter-spacing:-0.228000px;}
.lsd{letter-spacing:-0.227520px;}
.ls46{letter-spacing:-0.226800px;}
.ls5a{letter-spacing:-0.216000px;}
.ls5c{letter-spacing:-0.179280px;}
.ls22{letter-spacing:-0.170640px;}
.ls1{letter-spacing:-0.168480px;}
.ls4c{letter-spacing:-0.153360px;}
.ls5d{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.131760px;}
.ls25{letter-spacing:-0.113760px;}
.ls4e{letter-spacing:-0.102240px;}
.ls1d{letter-spacing:-0.090720px;}
.ls8{letter-spacing:-0.077760px;}
.ls0{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.060000px;}
.ls27{letter-spacing:-0.056880px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.005688px;}
.ls1f{letter-spacing:0.045360px;}
.ls1b{letter-spacing:0.045504px;}
.ls50{letter-spacing:0.051120px;}
.lsb{letter-spacing:0.056880px;}
.lse{letter-spacing:0.060000px;}
.ls54{letter-spacing:0.072000px;}
.ls4a{letter-spacing:0.102240px;}
.ls37{letter-spacing:0.113760px;}
.ls3{letter-spacing:0.131760px;}
.ls1e{letter-spacing:0.136080px;}
.ls45{letter-spacing:0.136512px;}
.ls59{letter-spacing:0.144000px;}
.ls4b{letter-spacing:0.153360px;}
.ls43{letter-spacing:0.168480px;}
.ls16{letter-spacing:0.169920px;}
.ls28{letter-spacing:0.170640px;}
.ls11{letter-spacing:0.174000px;}
.ls44{letter-spacing:0.181440px;}
.ls4d{letter-spacing:0.204480px;}
.ls5b{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.227520px;}
.ls5{letter-spacing:0.233280px;}
.ls51{letter-spacing:0.238896px;}
.ls49{letter-spacing:0.255600px;}
.ls52{letter-spacing:0.255960px;}
.ls53{letter-spacing:0.261648px;}
.ls62{letter-spacing:0.278712px;}
.ls3e{letter-spacing:0.284400px;}
.ls56{letter-spacing:0.288000px;}
.ls64{letter-spacing:0.295776px;}
.ls6{letter-spacing:0.311040px;}
.ls2f{letter-spacing:0.318528px;}
.ls3a{letter-spacing:0.329760px;}
.ls66{letter-spacing:0.329904px;}
.ls31{letter-spacing:0.335592px;}
.ls5e{letter-spacing:0.336960px;}
.ls14{letter-spacing:0.341280px;}
.ls60{letter-spacing:0.346968px;}
.ls35{letter-spacing:0.352656px;}
.ls4f{letter-spacing:0.357840px;}
.ls33{letter-spacing:0.358344px;}
.lsc{letter-spacing:0.361438px;}
.ls65{letter-spacing:0.364032px;}
.ls2d{letter-spacing:0.375408px;}
.ls3c{letter-spacing:0.381096px;}
.ls63{letter-spacing:0.386784px;}
.ls9{letter-spacing:0.388800px;}
.ls5f{letter-spacing:0.392472px;}
.lsa{letter-spacing:0.398160px;}
.ls3b{letter-spacing:0.403848px;}
.ls61{letter-spacing:0.420912px;}
.ls30{letter-spacing:0.455040px;}
.ls36{letter-spacing:0.682560px;}
.ls1a{letter-spacing:0.796320px;}
.ls3d{letter-spacing:1.073520px;}
.ls55{letter-spacing:1.080720px;}
.ls34{letter-spacing:1.820160px;}
.ls2b{letter-spacing:2.559600px;}
.ls2a{letter-spacing:3.981600px;}
.ls57{letter-spacing:5.403600px;}
.ls41{letter-spacing:5.528736px;}
.ls69{letter-spacing:6.103224px;}
.ls68{letter-spacing:6.148728px;}
.ls58{letter-spacing:6.854040px;}
.ls2c{letter-spacing:8.287416px;}
.ls2e{letter-spacing:8.304480px;}
.ls15{letter-spacing:9.726480px;}
.ls42{letter-spacing:16.950240px;}
.ls3f{letter-spacing:17.632800px;}
.ls1c{letter-spacing:60.629760px;}
.ls17{letter-spacing:69.269760px;}
.ls18{letter-spacing:70.709760px;}
.ls29{letter-spacing:171.681120px;}
.ls32{letter-spacing:172.439280px;}
.ls13{letter-spacing:824.871600px;}
.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;}
}
.ws37{word-spacing:-20.844000px;}
.wsa6{word-spacing:-17.016480px;}
.ws88{word-spacing:-16.679520px;}
.ws99{word-spacing:-16.511040px;}
.ws81{word-spacing:-16.342560px;}
.ws53{word-spacing:-16.174080px;}
.ws5{word-spacing:-15.940800px;}
.ws52{word-spacing:-15.921360px;}
.ws73{word-spacing:-15.837120px;}
.wsa7{word-spacing:-14.688000px;}
.wsa8{word-spacing:-14.544000px;}
.wsb1{word-spacing:-14.256000px;}
.ws3d{word-spacing:-11.489760px;}
.ws82{word-spacing:-11.432880px;}
.ws59{word-spacing:-11.262240px;}
.ws9{word-spacing:-11.205360px;}
.ws3c{word-spacing:-11.148480px;}
.ws72{word-spacing:-11.091600px;}
.ws8{word-spacing:-10.920960px;}
.wsa{word-spacing:-10.920480px;}
.wsd{word-spacing:-10.866480px;}
.ws55{word-spacing:-10.864080px;}
.ws83{word-spacing:-10.807200px;}
.ws38{word-spacing:-10.750320px;}
.ws3a{word-spacing:-10.693440px;}
.wsc{word-spacing:-10.690320px;}
.ws74{word-spacing:-10.636560px;}
.ws3b{word-spacing:-10.579680px;}
.wsb{word-spacing:-10.468320px;}
.ws39{word-spacing:-10.409040px;}
.ws97{word-spacing:-10.377360px;}
.ws92{word-spacing:-10.275120px;}
.ws93{word-spacing:-10.224000px;}
.ws91{word-spacing:-10.121760px;}
.ws98{word-spacing:-10.070640px;}
.ws57{word-spacing:-10.067760px;}
.ws95{word-spacing:-10.019520px;}
.ws94{word-spacing:-9.917280px;}
.ws96{word-spacing:-9.866160px;}
.ws58{word-spacing:-9.783360px;}
.ws56{word-spacing:-9.726480px;}
.ws54{word-spacing:-9.498960px;}
.wsa5{word-spacing:-8.935920px;}
.ws90{word-spacing:-8.119440px;}
.ws8f{word-spacing:-7.529760px;}
.ws9a{word-spacing:-0.952560px;}
.wsa2{word-spacing:-0.920160px;}
.ws66{word-spacing:-0.796320px;}
.ws50{word-spacing:-0.682560px;}
.wsb4{word-spacing:-0.673920px;}
.ws9c{word-spacing:-0.562320px;}
.wsa3{word-spacing:-0.511200px;}
.ws23{word-spacing:-0.462000px;}
.ws8e{word-spacing:-0.398160px;}
.ws40{word-spacing:-0.362880px;}
.ws8d{word-spacing:-0.341280px;}
.ws5a{word-spacing:-0.336960px;}
.wsa4{word-spacing:-0.306720px;}
.ws41{word-spacing:-0.272160px;}
.ws3{word-spacing:-0.263520px;}
.ws89{word-spacing:-0.252720px;}
.ws7d{word-spacing:-0.227520px;}
.ws3e{word-spacing:-0.226800px;}
.wsae{word-spacing:-0.216000px;}
.ws9d{word-spacing:-0.204480px;}
.ws1b{word-spacing:-0.174000px;}
.ws4d{word-spacing:-0.170640px;}
.ws6b{word-spacing:-0.168480px;}
.wsab{word-spacing:-0.144000px;}
.ws3f{word-spacing:-0.136080px;}
.ws13{word-spacing:-0.114000px;}
.wse{word-spacing:-0.113760px;}
.ws9f{word-spacing:-0.102240px;}
.ws1{word-spacing:-0.084240px;}
.wsaa{word-spacing:-0.072000px;}
.ws2a{word-spacing:-0.060000px;}
.ws4b{word-spacing:-0.056880px;}
.ws9e{word-spacing:-0.051120px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:0.006000px;}
.ws1f{word-spacing:0.024000px;}
.ws9b{word-spacing:0.045360px;}
.ws1c{word-spacing:0.054000px;}
.wsb8{word-spacing:0.056880px;}
.ws0{word-spacing:0.072000px;}
.ws21{word-spacing:0.084000px;}
.ws34{word-spacing:0.090000px;}
.ws4f{word-spacing:0.113760px;}
.ws1d{word-spacing:0.114000px;}
.wsa0{word-spacing:0.153360px;}
.ws16{word-spacing:0.162000px;}
.ws28{word-spacing:0.168000px;}
.ws4e{word-spacing:0.170640px;}
.wsa1{word-spacing:0.204480px;}
.wsad{word-spacing:0.216000px;}
.ws4a{word-spacing:0.227520px;}
.ws2b{word-spacing:0.282000px;}
.ws43{word-spacing:0.284400px;}
.ws1e{word-spacing:0.330000px;}
.ws7c{word-spacing:0.341280px;}
.ws19{word-spacing:0.342000px;}
.ws2c{word-spacing:0.348000px;}
.ws7{word-spacing:0.388800px;}
.ws4{word-spacing:0.395280px;}
.ws29{word-spacing:0.396000px;}
.ws51{word-spacing:0.398160px;}
.ws35{word-spacing:0.426000px;}
.ws27{word-spacing:0.438000px;}
.ws1a{word-spacing:0.480000px;}
.ws6{word-spacing:0.544320px;}
.ws15{word-spacing:0.570000px;}
.ws26{word-spacing:0.588000px;}
.ws14{word-spacing:0.594000px;}
.ws17{word-spacing:0.600000px;}
.ws12{word-spacing:0.624000px;}
.ws49{word-spacing:0.625680px;}
.wsb3{word-spacing:0.682560px;}
.ws18{word-spacing:0.696000px;}
.ws25{word-spacing:0.768000px;}
.ws36{word-spacing:0.810000px;}
.ws24{word-spacing:0.888000px;}
.ws4c{word-spacing:0.910080px;}
.ws22{word-spacing:1.014000px;}
.ws7e{word-spacing:1.080720px;}
.ws7f{word-spacing:1.194480px;}
.ws76{word-spacing:1.308240px;}
.ws6d{word-spacing:2.047680px;}
.wsac{word-spacing:2.502720px;}
.ws42{word-spacing:2.787120px;}
.ws6e{word-spacing:3.469680px;}
.ws64{word-spacing:4.209120px;}
.ws8a{word-spacing:4.550400px;}
.wsb2{word-spacing:4.664160px;}
.ws47{word-spacing:4.948560px;}
.wsaf{word-spacing:5.062320px;}
.ws68{word-spacing:5.631120px;}
.ws69{word-spacing:5.801760px;}
.ws6a{word-spacing:6.370560px;}
.ws11{word-spacing:7.110000px;}
.ws62{word-spacing:7.166880px;}
.wsb0{word-spacing:7.451280px;}
.ws5e{word-spacing:7.792560px;}
.ws70{word-spacing:8.247600px;}
.ws48{word-spacing:8.532000px;}
.ws71{word-spacing:8.987040px;}
.ws85{word-spacing:9.214560px;}
.ws45{word-spacing:9.954000px;}
.ws44{word-spacing:10.352160px;}
.ws2e{word-spacing:10.692000px;}
.ws5b{word-spacing:10.693440px;}
.ws32{word-spacing:10.896000px;}
.ws31{word-spacing:10.968000px;}
.ws33{word-spacing:11.046000px;}
.ws30{word-spacing:11.100000px;}
.ws46{word-spacing:11.376000px;}
.ws2f{word-spacing:11.400000px;}
.ws2d{word-spacing:11.802000px;}
.ws87{word-spacing:12.115440px;}
.ws79{word-spacing:12.854880px;}
.wsf{word-spacing:13.254000px;}
.ws10{word-spacing:13.536000px;}
.ws5c{word-spacing:13.537440px;}
.wsb6{word-spacing:14.049360px;}
.ws63{word-spacing:14.276880px;}
.ws7b{word-spacing:14.731920px;}
.ws75{word-spacing:15.016320px;}
.ws8b{word-spacing:15.414480px;}
.ws7a{word-spacing:15.698880px;}
.ws78{word-spacing:16.438320px;}
.ws86{word-spacing:17.177760px;}
.ws80{word-spacing:17.860320px;}
.ws6f{word-spacing:18.599760px;}
.wsb7{word-spacing:19.339200px;}
.wsb5{word-spacing:20.021760px;}
.ws67{word-spacing:20.761200px;}
.ws8c{word-spacing:22.183200px;}
.ws65{word-spacing:22.922640px;}
.wsa9{word-spacing:26.506080px;}
.wsb9{word-spacing:26.847360px;}
.ws84{word-spacing:27.245520px;}
.ws77{word-spacing:30.146400px;}
.ws6c{word-spacing:30.828960px;}
.ws5d{word-spacing:32.307840px;}
.ws61{word-spacing:34.184880px;}
.ws5f{word-spacing:34.469280px;}
.ws60{word-spacing:35.208720px;}
._6{margin-left:-9.111600px;}
._3{margin-left:-7.035120px;}
._5{margin-left:-5.328720px;}
._4{margin-left:-3.128400px;}
._1{margin-left:-1.077120px;}
._0{width:1.087200px;}
._2{width:2.595600px;}
._a{width:5.392800px;}
._b{width:6.812640px;}
._8{width:7.836480px;}
._c{width:13.711680px;}
._e{width:16.405920px;}
._9{width:21.647232px;}
._f{width:26.526240px;}
._7{width:32.636160px;}
._d{width:73.261440px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:45.360000px;}
.fs8{font-size:51.120000px;}
.fs4{font-size:56.880000px;}
.fs9{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y97{bottom:3.600000px;}
.yea{bottom:4.500000px;}
.yef{bottom:4.680000px;}
.ye8{bottom:4.860000px;}
.ycc{bottom:7.020000px;}
.ya3{bottom:7.200000px;}
.yec{bottom:20.340000px;}
.yf2{bottom:20.520000px;}
.y8f{bottom:21.600000px;}
.y90{bottom:21.960000px;}
.y74{bottom:26.820000px;}
.y99{bottom:30.960000px;}
.y9a{bottom:31.320000px;}
.y1f{bottom:41.580000px;}
.y93{bottom:54.000000px;}
.y94{bottom:54.360000px;}
.y1e{bottom:61.740000px;}
.y1{bottom:81.000000px;}
.y69{bottom:84.615300px;}
.y68{bottom:104.409540px;}
.y172{bottom:106.293600px;}
.y67{bottom:124.033140px;}
.y171{bottom:126.087840px;}
.ya1{bottom:127.087560px;}
.y66{bottom:143.827380px;}
.y170{bottom:145.882080px;}
.ya0{bottom:146.881800px;}
.y16f{bottom:165.505680px;}
.ycd{bottom:168.840000px;}
.y65{bottom:172.452240px;}
.y9f{bottom:175.677300px;}
.ycb{bottom:182.160000px;}
.y16e{bottom:185.299920px;}
.yfc{bottom:185.943060px;}
.y64{bottom:192.246480px;}
.y1b{bottom:193.171500px;}
.y9e{bottom:195.300900px;}
.y16d{bottom:204.923520px;}
.yfb{bottom:205.566660px;}
.y63{bottom:212.040720px;}
.y1a{bottom:212.794500px;}
.y9d{bottom:215.095140px;}
.yca{bottom:218.725020px;}
.y16c{bottom:224.717760px;}
.y62{bottom:231.664320px;}
.yfa{bottom:234.362160px;}
.yc9{bottom:238.519260px;}
.y19{bottom:241.774500px;}
.y9c{bottom:243.720000px;}
.y16b{bottom:244.341360px;}
.y124{bottom:245.177280px;}
.y61{bottom:251.458560px;}
.ye1{bottom:252.004320px;}
.yf9{bottom:254.156400px;}
.yc8{bottom:258.142860px;}
.y98{bottom:262.980000px;}
.y16a{bottom:264.135600px;}
.y123{bottom:264.800880px;}
.y18{bottom:270.570000px;}
.y60{bottom:271.082160px;}
.ye0{bottom:271.627920px;}
.yf8{bottom:273.780000px;}
.yc7{bottom:277.937100px;}
.y9b{bottom:278.460000px;}
.y169{bottom:283.929840px;}
.y122{bottom:284.595120px;}
.y5f{bottom:290.876400px;}
.ydf{bottom:291.422160px;}
.y17{bottom:299.365500px;}
.y168{bottom:303.553440px;}
.y121{bottom:304.218720px;}
.yf7{bottom:306.000000px;}
.yc6{bottom:306.561960px;}
.y5e{bottom:310.500000px;}
.yde{bottom:311.045760px;}
.y92{bottom:318.600000px;}
.y167{bottom:323.347680px;}
.y120{bottom:324.012960px;}
.yc5{bottom:326.356200px;}
.y16{bottom:327.990000px;}
.ydd{bottom:330.840000px;}
.y96{bottom:339.118200px;}
.y5d{bottom:342.712980px;}
.y166{bottom:342.971280px;}
.yf5{bottom:345.420000px;}
.yc4{bottom:346.150440px;}
.yf6{bottom:350.100000px;}
.y11f{bottom:352.808460px;}
.y95{bottom:356.040000px;}
.y15{bottom:356.970000px;}
.ydc{bottom:358.020000px;}
.y165{bottom:362.765520px;}
.yc3{bottom:365.774040px;}
.y143{bottom:368.820000px;}
.y11e{bottom:372.432060px;}
.yf4{bottom:377.820000px;}
.y5c{bottom:377.838360px;}
.ydb{bottom:380.700000px;}
.y164{bottom:382.389120px;}
.y14{bottom:385.765500px;}
.y11d{bottom:392.226300px;}
.yf1{bottom:394.200000px;}
.yc2{bottom:394.569540px;}
.y142{bottom:394.943220px;}
.y8e{bottom:397.260000px;}
.y5b{bottom:397.461960px;}
.yf3{bottom:398.880000px;}
.y163{bottom:402.183360px;}
.y91{bottom:403.200000px;}
.y11c{bottom:411.849900px;}
.yc1{bottom:414.193140px;}
.y13{bottom:414.561000px;}
.y141{bottom:414.566820px;}
.y5a{bottom:417.256200px;}
.y162{bottom:421.977600px;}
.yf0{bottom:426.600000px;}
.y11b{bottom:431.644140px;}
.yc0{bottom:433.987380px;}
.y12{bottom:434.241000px;}
.y140{bottom:434.361060px;}
.y59{bottom:437.050440px;}
.y161{bottom:441.601200px;}
.yee{bottom:443.160000px;}
.ybf{bottom:453.610980px;}
.y11{bottom:453.921000px;}
.y13f{bottom:453.984660px;}
.y8d{bottom:454.163220px;}
.y58{bottom:456.674040px;}
.yeb{bottom:459.720000px;}
.y11a{bottom:460.983960px;}
.y160{bottom:461.395440px;}
.yed{bottom:464.400000px;}
.ybe{bottom:473.405220px;}
.y10{bottom:473.601000px;}
.y37{bottom:473.760000px;}
.y13e{bottom:473.778900px;}
.y8c{bottom:473.957460px;}
.y57{bottom:476.468280px;}
.y15f{bottom:481.019040px;}
.y119{bottom:481.147920px;}
.ye9{bottom:492.120000px;}
.y13d{bottom:493.402500px;}
.y8b{bottom:493.751700px;}
.y56{bottom:496.091880px;}
.y118{bottom:500.771520px;}
.y15e{bottom:500.813280px;}
.ybd{bottom:502.200720px;}
.y36{bottom:502.740000px;}
.ye7{bottom:508.500000px;}
.y13c{bottom:513.196740px;}
.y55{bottom:515.886120px;}
.y15d{bottom:520.436880px;}
.y117{bottom:520.565760px;}
.ybc{bottom:521.824320px;}
.y8a{bottom:522.376560px;}
.y35{bottom:531.540000px;}
.ye6{bottom:539.280000px;}
.y15c{bottom:540.231120px;}
.y116{bottom:540.360000px;}
.ybb{bottom:541.618560px;}
.y13b{bottom:541.992240px;}
.y89{bottom:542.170800px;}
.y54{bottom:544.510980px;}
.y114{bottom:552.960000px;}
.y115{bottom:557.460000px;}
.y15b{bottom:560.025360px;}
.y34{bottom:560.160000px;}
.yba{bottom:561.242160px;}
.y13a{bottom:561.615840px;}
.y88{bottom:561.794400px;}
.y53{bottom:564.305220px;}
.ye5{bottom:565.376400px;}
.y15a{bottom:579.648960px;}
.yb9{bottom:581.036400px;}
.y139{bottom:581.410080px;}
.y87{bottom:581.588640px;}
.y52{bottom:584.099460px;}
.ye4{bottom:585.000000px;}
.y112{bottom:585.180000px;}
.y33{bottom:588.960000px;}
.y113{bottom:589.860000px;}
.y159{bottom:599.443200px;}
.yb8{bottom:600.660000px;}
.y138{bottom:601.033680px;}
.y86{bottom:601.212240px;}
.ye3{bottom:612.360000px;}
.y51{bottom:612.724320px;}
.y32{bottom:617.580000px;}
.y158{bottom:619.066800px;}
.y137{bottom:620.827920px;}
.y85{bottom:621.006480px;}
.y50{bottom:632.518560px;}
.yb7{bottom:632.880000px;}
.ye2{bottom:634.860000px;}
.y157{bottom:638.861040px;}
.y136{bottom:640.451520px;}
.y84{bottom:640.800720px;}
.y31{bottom:646.380000px;}
.y111{bottom:648.000000px;}
.y4f{bottom:652.142160px;}
.y156{bottom:658.484640px;}
.y135{bottom:660.245760px;}
.y83{bottom:660.424320px;}
.yb6{bottom:667.980000px;}
.y4e{bottom:671.936400px;}
.y110{bottom:674.104320px;}
.y30{bottom:675.180000px;}
.y155{bottom:678.278880px;}
.y134{bottom:680.040000px;}
.y82{bottom:680.218560px;}
.yb4{bottom:681.300000px;}
.yc{bottom:681.433200px;}
.yb5{bottom:688.500000px;}
.y4d{bottom:691.560000px;}
.y10f{bottom:693.727920px;}
.y154{bottom:698.073120px;}
.yb3{bottom:698.245380px;}
.y81{bottom:699.842160px;}
.y2f{bottom:704.160000px;}
.y133{bottom:712.080000px;}
.y10e{bottom:713.522160px;}
.y153{bottom:717.696720px;}
.y80{bottom:719.636400px;}
.y4c{bottom:723.780000px;}
.y2e{bottom:733.140000px;}
.y10d{bottom:733.145760px;}
.y152{bottom:737.490960px;}
.yb2{bottom:737.663220px;}
.y7f{bottom:739.260000px;}
.y132{bottom:747.197640px;}
.y10c{bottom:752.940000px;}
.y151{bottom:757.114560px;}
.yb1{bottom:757.286820px;}
.y4b{bottom:758.906280px;}
.y2d{bottom:762.120000px;}
.y131{bottom:766.991880px;}
.y7e{bottom:771.479850px;}
.y150{bottom:776.908800px;}
.yb0{bottom:777.081060px;}
.y4a{bottom:778.529880px;}
.y10b{bottom:783.720000px;}
.yda{bottom:787.695300px;}
.y2c{bottom:791.280000px;}
.y130{bottom:795.616740px;}
.y14f{bottom:796.532400px;}
.yaf{bottom:796.875300px;}
.y49{bottom:798.324120px;}
.y7d{bottom:806.592240px;}
.yd9{bottom:807.489540px;}
.y12f{bottom:815.410980px;}
.y14e{bottom:816.326640px;}
.yae{bottom:816.498900px;}
.y48{bottom:817.947720px;}
.y2b{bottom:820.260000px;}
.y7c{bottom:826.215840px;}
.yd8{bottom:827.113140px;}
.y10a{bottom:833.585220px;}
.y12e{bottom:835.034580px;}
.y14d{bottom:835.950240px;}
.y47{bottom:837.741960px;}
.yad{bottom:845.294400px;}
.y7b{bottom:846.010080px;}
.yd7{bottom:846.907380px;}
.y2a{bottom:849.240000px;}
.y109{bottom:853.208820px;}
.y14c{bottom:855.744480px;}
.y46{bottom:857.536200px;}
.y12d{bottom:863.830080px;}
.yac{bottom:864.918000px;}
.y7a{bottom:865.804320px;}
.yd6{bottom:866.530980px;}
.y108{bottom:873.003060px;}
.y5{bottom:874.806660px;}
.y14b{bottom:875.538720px;}
.y29{bottom:878.400000px;}
.y12c{bottom:883.453680px;}
.yab{bottom:884.712240px;}
.y79{bottom:885.427920px;}
.y45{bottom:886.161060px;}
.yd5{bottom:886.325220px;}
.y14a{bottom:895.162320px;}
.yb{bottom:897.100560px;}
.y107{bottom:901.627920px;}
.y12b{bottom:903.247920px;}
.yaa{bottom:904.335840px;}
.y78{bottom:905.222160px;}
.y44{bottom:905.955300px;}
.yd4{bottom:906.119460px;}
.y149{bottom:914.956560px;}
.y106{bottom:921.422160px;}
.y12a{bottom:923.042160px;}
.y28{bottom:923.220000px;}
.ya9{bottom:924.130080px;}
.y77{bottom:924.845760px;}
.y43{bottom:925.578900px;}
.yd3{bottom:925.743060px;}
.y4{bottom:929.520000px;}
.ya{bottom:933.103440px;}
.y148{bottom:934.580160px;}
.y105{bottom:941.045760px;}
.y129{bottom:942.665760px;}
.ya8{bottom:943.924320px;}
.y76{bottom:944.640000px;}
.y42{bottom:945.373140px;}
.yd2{bottom:945.537300px;}
.y147{bottom:954.374400px;}
.y73{bottom:957.960000px;}
.y104{bottom:960.840000px;}
.y128{bottom:962.460000px;}
.ya7{bottom:963.547920px;}
.y41{bottom:964.996740px;}
.y75{bottom:965.160000px;}
.yd1{bottom:965.160900px;}
.y9{bottom:969.106320px;}
.y146{bottom:973.998000px;}
.y72{bottom:974.895480px;}
.y27{bottom:975.065220px;}
.y3{bottom:978.480000px;}
.ya6{bottom:983.342160px;}
.y40{bottom:984.790980px;}
.y103{bottom:991.620000px;}
.y127{bottom:993.240000px;}
.y145{bottom:993.792240px;}
.yd0{bottom:993.956400px;}
.ya5{bottom:1002.965760px;}
.y26{bottom:1003.690080px;}
.y3f{bottom:1004.585220px;}
.y8{bottom:1004.934300px;}
.ycf{bottom:1013.580000px;}
.y144{bottom:1013.586480px;}
.y71{bottom:1014.313320px;}
.ya4{bottom:1022.760000px;}
.y25{bottom:1023.484320px;}
.y177{bottom:1024.921800px;}
.y3e{bottom:1033.210080px;}
.ya2{bottom:1036.080000px;}
.y102{bottom:1041.484320px;}
.y70{bottom:1042.938180px;}
.y24{bottom:1043.278560px;}
.yce{bottom:1045.800000px;}
.y3d{bottom:1053.004320px;}
.y176{bottom:1053.546660px;}
.y101{bottom:1061.107920px;}
.y6f{bottom:1062.732420px;}
.y23{bottom:1062.902160px;}
.y3c{bottom:1072.627920px;}
.y175{bottom:1073.340900px;}
.y7{bottom:1076.940000px;}
.y100{bottom:1080.902160px;}
.y6e{bottom:1082.526660px;}
.y22{bottom:1082.696400px;}
.y3b{bottom:1092.422160px;}
.y174{bottom:1093.320000px;}
.yff{bottom:1100.525760px;}
.y6d{bottom:1102.150260px;}
.y21{bottom:1102.320000px;}
.y126{bottom:1111.151520px;}
.y3a{bottom:1112.045760px;}
.yfe{bottom:1120.320000px;}
.y6c{bottom:1121.944500px;}
.y125{bottom:1130.945760px;}
.y39{bottom:1131.840000px;}
.yf{bottom:1134.191520px;}
.y173{bottom:1138.320000px;}
.y20{bottom:1147.320000px;}
.y6b{bottom:1150.569360px;}
.yfd{bottom:1152.540000px;}
.ye{bottom:1153.985760px;}
.y6{bottom:1157.580000px;}
.y38{bottom:1164.060000px;}
.y6a{bottom:1170.363600px;}
.yd{bottom:1173.780000px;}
.y1d{bottom:1198.980000px;}
.y1c{bottom:1219.140000px;}
.h17{height:15.660000px;}
.h1a{height:15.840000px;}
.h15{height:16.200000px;}
.h2{height:17.280000px;}
.h14{height:19.621500px;}
.h13{height:19.798500px;}
.h1c{height:31.500000px;}
.h19{height:31.501500px;}
.h1d{height:31.678500px;}
.h1b{height:31.680000px;}
.hf{height:34.378500px;}
.ha{height:37.240560px;}
.h16{height:38.340000px;}
.he{height:39.420000px;}
.h10{height:40.669200px;}
.h18{height:41.969520px;}
.h9{height:42.660000px;}
.h12{height:43.740000px;}
.hc{height:44.149219px;}
.h8{height:46.698480px;}
.h1f{height:47.917721px;}
.h1e{height:49.047120px;}
.h3{height:54.000000px;}
.h7{height:58.320000px;}
.hd{height:60.158160px;}
.h4{height:63.180000px;}
.h11{height:66.780000px;}
.hb{height:88.668000px;}
.h5{height:94.208400px;}
.h6{height:98.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:41.760000px;}
.w6{width:52.380000px;}
.w4{width:67.681500px;}
.w7{width:167.400000px;}
.wb{width:187.561500px;}
.wc{width:187.920000px;}
.w8{width:272.518500px;}
.w9{width:273.058500px;}
.wd{width:294.840000px;}
.wa{width:337.320000px;}
.w2{width:522.901500px;}
.w5{width:631.800000px;}
.w3{width:646.740000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x2{left:10.800000px;}
.x1c{left:22.140000px;}
.xe{left:37.260000px;}
.x1a{left:74.340000px;}
.x18{left:128.700000px;}
.x1{left:131.400000px;}
.x3{left:139.500000px;}
.x1d{left:140.760000px;}
.x7{left:147.591180px;}
.x5{left:153.720000px;}
.x1e{left:160.744680px;}
.x6{left:167.940000px;}
.x8{left:192.960000px;}
.xa{left:200.700000px;}
.xb{left:208.800000px;}
.xc{left:219.060000px;}
.xd{left:246.060000px;}
.x11{left:299.520000px;}
.x13{left:307.260000px;}
.x16{left:321.840000px;}
.x1b{left:426.960000px;}
.x17{left:469.440000px;}
.x15{left:483.300000px;}
.x4{left:485.820000px;}
.x12{left:572.760000px;}
.x14{left:580.500000px;}
.x19{left:657.900000px;}
.xf{left:835.740000px;}
.x10{left:837.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls38{letter-spacing:-1.422720pt;}
.ls23{letter-spacing:-1.415680pt;}
.ls39{letter-spacing:-1.272960pt;}
.ls48{letter-spacing:-0.685440pt;}
.ls67{letter-spacing:-0.353920pt;}
.ls26{letter-spacing:-0.303360pt;}
.ls40{letter-spacing:-0.299520pt;}
.ls20{letter-spacing:-0.288000pt;}
.ls21{letter-spacing:-0.252800pt;}
.ls10{letter-spacing:-0.250667pt;}
.ls47{letter-spacing:-0.241920pt;}
.ls7{letter-spacing:-0.207360pt;}
.lsf{letter-spacing:-0.202667pt;}
.lsd{letter-spacing:-0.202240pt;}
.ls46{letter-spacing:-0.201600pt;}
.ls5a{letter-spacing:-0.192000pt;}
.ls5c{letter-spacing:-0.159360pt;}
.ls22{letter-spacing:-0.151680pt;}
.ls1{letter-spacing:-0.149760pt;}
.ls4c{letter-spacing:-0.136320pt;}
.ls5d{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.117120pt;}
.ls25{letter-spacing:-0.101120pt;}
.ls4e{letter-spacing:-0.090880pt;}
.ls1d{letter-spacing:-0.080640pt;}
.ls8{letter-spacing:-0.069120pt;}
.ls0{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.053333pt;}
.ls27{letter-spacing:-0.050560pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.005056pt;}
.ls1f{letter-spacing:0.040320pt;}
.ls1b{letter-spacing:0.040448pt;}
.ls50{letter-spacing:0.045440pt;}
.lsb{letter-spacing:0.050560pt;}
.lse{letter-spacing:0.053333pt;}
.ls54{letter-spacing:0.064000pt;}
.ls4a{letter-spacing:0.090880pt;}
.ls37{letter-spacing:0.101120pt;}
.ls3{letter-spacing:0.117120pt;}
.ls1e{letter-spacing:0.120960pt;}
.ls45{letter-spacing:0.121344pt;}
.ls59{letter-spacing:0.128000pt;}
.ls4b{letter-spacing:0.136320pt;}
.ls43{letter-spacing:0.149760pt;}
.ls16{letter-spacing:0.151040pt;}
.ls28{letter-spacing:0.151680pt;}
.ls11{letter-spacing:0.154667pt;}
.ls44{letter-spacing:0.161280pt;}
.ls4d{letter-spacing:0.181760pt;}
.ls5b{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.202240pt;}
.ls5{letter-spacing:0.207360pt;}
.ls51{letter-spacing:0.212352pt;}
.ls49{letter-spacing:0.227200pt;}
.ls52{letter-spacing:0.227520pt;}
.ls53{letter-spacing:0.232576pt;}
.ls62{letter-spacing:0.247744pt;}
.ls3e{letter-spacing:0.252800pt;}
.ls56{letter-spacing:0.256000pt;}
.ls64{letter-spacing:0.262912pt;}
.ls6{letter-spacing:0.276480pt;}
.ls2f{letter-spacing:0.283136pt;}
.ls3a{letter-spacing:0.293120pt;}
.ls66{letter-spacing:0.293248pt;}
.ls31{letter-spacing:0.298304pt;}
.ls5e{letter-spacing:0.299520pt;}
.ls14{letter-spacing:0.303360pt;}
.ls60{letter-spacing:0.308416pt;}
.ls35{letter-spacing:0.313472pt;}
.ls4f{letter-spacing:0.318080pt;}
.ls33{letter-spacing:0.318528pt;}
.lsc{letter-spacing:0.321278pt;}
.ls65{letter-spacing:0.323584pt;}
.ls2d{letter-spacing:0.333696pt;}
.ls3c{letter-spacing:0.338752pt;}
.ls63{letter-spacing:0.343808pt;}
.ls9{letter-spacing:0.345600pt;}
.ls5f{letter-spacing:0.348864pt;}
.lsa{letter-spacing:0.353920pt;}
.ls3b{letter-spacing:0.358976pt;}
.ls61{letter-spacing:0.374144pt;}
.ls30{letter-spacing:0.404480pt;}
.ls36{letter-spacing:0.606720pt;}
.ls1a{letter-spacing:0.707840pt;}
.ls3d{letter-spacing:0.954240pt;}
.ls55{letter-spacing:0.960640pt;}
.ls34{letter-spacing:1.617920pt;}
.ls2b{letter-spacing:2.275200pt;}
.ls2a{letter-spacing:3.539200pt;}
.ls57{letter-spacing:4.803200pt;}
.ls41{letter-spacing:4.914432pt;}
.ls69{letter-spacing:5.425088pt;}
.ls68{letter-spacing:5.465536pt;}
.ls58{letter-spacing:6.092480pt;}
.ls2c{letter-spacing:7.366592pt;}
.ls2e{letter-spacing:7.381760pt;}
.ls15{letter-spacing:8.645760pt;}
.ls42{letter-spacing:15.066880pt;}
.ls3f{letter-spacing:15.673600pt;}
.ls1c{letter-spacing:53.893120pt;}
.ls17{letter-spacing:61.573120pt;}
.ls18{letter-spacing:62.853120pt;}
.ls29{letter-spacing:152.605440pt;}
.ls32{letter-spacing:153.279360pt;}
.ls13{letter-spacing:733.219200pt;}
.ws37{word-spacing:-18.528000pt;}
.wsa6{word-spacing:-15.125760pt;}
.ws88{word-spacing:-14.826240pt;}
.ws99{word-spacing:-14.676480pt;}
.ws81{word-spacing:-14.526720pt;}
.ws53{word-spacing:-14.376960pt;}
.ws5{word-spacing:-14.169600pt;}
.ws52{word-spacing:-14.152320pt;}
.ws73{word-spacing:-14.077440pt;}
.wsa7{word-spacing:-13.056000pt;}
.wsa8{word-spacing:-12.928000pt;}
.wsb1{word-spacing:-12.672000pt;}
.ws3d{word-spacing:-10.213120pt;}
.ws82{word-spacing:-10.162560pt;}
.ws59{word-spacing:-10.010880pt;}
.ws9{word-spacing:-9.960320pt;}
.ws3c{word-spacing:-9.909760pt;}
.ws72{word-spacing:-9.859200pt;}
.ws8{word-spacing:-9.707520pt;}
.wsa{word-spacing:-9.707093pt;}
.wsd{word-spacing:-9.659093pt;}
.ws55{word-spacing:-9.656960pt;}
.ws83{word-spacing:-9.606400pt;}
.ws38{word-spacing:-9.555840pt;}
.ws3a{word-spacing:-9.505280pt;}
.wsc{word-spacing:-9.502507pt;}
.ws74{word-spacing:-9.454720pt;}
.ws3b{word-spacing:-9.404160pt;}
.wsb{word-spacing:-9.305173pt;}
.ws39{word-spacing:-9.252480pt;}
.ws97{word-spacing:-9.224320pt;}
.ws92{word-spacing:-9.133440pt;}
.ws93{word-spacing:-9.088000pt;}
.ws91{word-spacing:-8.997120pt;}
.ws98{word-spacing:-8.951680pt;}
.ws57{word-spacing:-8.949120pt;}
.ws95{word-spacing:-8.906240pt;}
.ws94{word-spacing:-8.815360pt;}
.ws96{word-spacing:-8.769920pt;}
.ws58{word-spacing:-8.696320pt;}
.ws56{word-spacing:-8.645760pt;}
.ws54{word-spacing:-8.443520pt;}
.wsa5{word-spacing:-7.943040pt;}
.ws90{word-spacing:-7.217280pt;}
.ws8f{word-spacing:-6.693120pt;}
.ws9a{word-spacing:-0.846720pt;}
.wsa2{word-spacing:-0.817920pt;}
.ws66{word-spacing:-0.707840pt;}
.ws50{word-spacing:-0.606720pt;}
.wsb4{word-spacing:-0.599040pt;}
.ws9c{word-spacing:-0.499840pt;}
.wsa3{word-spacing:-0.454400pt;}
.ws23{word-spacing:-0.410667pt;}
.ws8e{word-spacing:-0.353920pt;}
.ws40{word-spacing:-0.322560pt;}
.ws8d{word-spacing:-0.303360pt;}
.ws5a{word-spacing:-0.299520pt;}
.wsa4{word-spacing:-0.272640pt;}
.ws41{word-spacing:-0.241920pt;}
.ws3{word-spacing:-0.234240pt;}
.ws89{word-spacing:-0.224640pt;}
.ws7d{word-spacing:-0.202240pt;}
.ws3e{word-spacing:-0.201600pt;}
.wsae{word-spacing:-0.192000pt;}
.ws9d{word-spacing:-0.181760pt;}
.ws1b{word-spacing:-0.154667pt;}
.ws4d{word-spacing:-0.151680pt;}
.ws6b{word-spacing:-0.149760pt;}
.wsab{word-spacing:-0.128000pt;}
.ws3f{word-spacing:-0.120960pt;}
.ws13{word-spacing:-0.101333pt;}
.wse{word-spacing:-0.101120pt;}
.ws9f{word-spacing:-0.090880pt;}
.ws1{word-spacing:-0.074880pt;}
.wsaa{word-spacing:-0.064000pt;}
.ws2a{word-spacing:-0.053333pt;}
.ws4b{word-spacing:-0.050560pt;}
.ws9e{word-spacing:-0.045440pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:0.005333pt;}
.ws1f{word-spacing:0.021333pt;}
.ws9b{word-spacing:0.040320pt;}
.ws1c{word-spacing:0.048000pt;}
.wsb8{word-spacing:0.050560pt;}
.ws0{word-spacing:0.064000pt;}
.ws21{word-spacing:0.074667pt;}
.ws34{word-spacing:0.080000pt;}
.ws4f{word-spacing:0.101120pt;}
.ws1d{word-spacing:0.101333pt;}
.wsa0{word-spacing:0.136320pt;}
.ws16{word-spacing:0.144000pt;}
.ws28{word-spacing:0.149333pt;}
.ws4e{word-spacing:0.151680pt;}
.wsa1{word-spacing:0.181760pt;}
.wsad{word-spacing:0.192000pt;}
.ws4a{word-spacing:0.202240pt;}
.ws2b{word-spacing:0.250667pt;}
.ws43{word-spacing:0.252800pt;}
.ws1e{word-spacing:0.293333pt;}
.ws7c{word-spacing:0.303360pt;}
.ws19{word-spacing:0.304000pt;}
.ws2c{word-spacing:0.309333pt;}
.ws7{word-spacing:0.345600pt;}
.ws4{word-spacing:0.351360pt;}
.ws29{word-spacing:0.352000pt;}
.ws51{word-spacing:0.353920pt;}
.ws35{word-spacing:0.378667pt;}
.ws27{word-spacing:0.389333pt;}
.ws1a{word-spacing:0.426667pt;}
.ws6{word-spacing:0.483840pt;}
.ws15{word-spacing:0.506667pt;}
.ws26{word-spacing:0.522667pt;}
.ws14{word-spacing:0.528000pt;}
.ws17{word-spacing:0.533333pt;}
.ws12{word-spacing:0.554667pt;}
.ws49{word-spacing:0.556160pt;}
.wsb3{word-spacing:0.606720pt;}
.ws18{word-spacing:0.618667pt;}
.ws25{word-spacing:0.682667pt;}
.ws36{word-spacing:0.720000pt;}
.ws24{word-spacing:0.789333pt;}
.ws4c{word-spacing:0.808960pt;}
.ws22{word-spacing:0.901333pt;}
.ws7e{word-spacing:0.960640pt;}
.ws7f{word-spacing:1.061760pt;}
.ws76{word-spacing:1.162880pt;}
.ws6d{word-spacing:1.820160pt;}
.wsac{word-spacing:2.224640pt;}
.ws42{word-spacing:2.477440pt;}
.ws6e{word-spacing:3.084160pt;}
.ws64{word-spacing:3.741440pt;}
.ws8a{word-spacing:4.044800pt;}
.wsb2{word-spacing:4.145920pt;}
.ws47{word-spacing:4.398720pt;}
.wsaf{word-spacing:4.499840pt;}
.ws68{word-spacing:5.005440pt;}
.ws69{word-spacing:5.157120pt;}
.ws6a{word-spacing:5.662720pt;}
.ws11{word-spacing:6.320000pt;}
.ws62{word-spacing:6.370560pt;}
.wsb0{word-spacing:6.623360pt;}
.ws5e{word-spacing:6.926720pt;}
.ws70{word-spacing:7.331200pt;}
.ws48{word-spacing:7.584000pt;}
.ws71{word-spacing:7.988480pt;}
.ws85{word-spacing:8.190720pt;}
.ws45{word-spacing:8.848000pt;}
.ws44{word-spacing:9.201920pt;}
.ws2e{word-spacing:9.504000pt;}
.ws5b{word-spacing:9.505280pt;}
.ws32{word-spacing:9.685333pt;}
.ws31{word-spacing:9.749333pt;}
.ws33{word-spacing:9.818667pt;}
.ws30{word-spacing:9.866667pt;}
.ws46{word-spacing:10.112000pt;}
.ws2f{word-spacing:10.133333pt;}
.ws2d{word-spacing:10.490667pt;}
.ws87{word-spacing:10.769280pt;}
.ws79{word-spacing:11.426560pt;}
.wsf{word-spacing:11.781333pt;}
.ws10{word-spacing:12.032000pt;}
.ws5c{word-spacing:12.033280pt;}
.wsb6{word-spacing:12.488320pt;}
.ws63{word-spacing:12.690560pt;}
.ws7b{word-spacing:13.095040pt;}
.ws75{word-spacing:13.347840pt;}
.ws8b{word-spacing:13.701760pt;}
.ws7a{word-spacing:13.954560pt;}
.ws78{word-spacing:14.611840pt;}
.ws86{word-spacing:15.269120pt;}
.ws80{word-spacing:15.875840pt;}
.ws6f{word-spacing:16.533120pt;}
.wsb7{word-spacing:17.190400pt;}
.wsb5{word-spacing:17.797120pt;}
.ws67{word-spacing:18.454400pt;}
.ws8c{word-spacing:19.718400pt;}
.ws65{word-spacing:20.375680pt;}
.wsa9{word-spacing:23.560960pt;}
.wsb9{word-spacing:23.864320pt;}
.ws84{word-spacing:24.218240pt;}
.ws77{word-spacing:26.796800pt;}
.ws6c{word-spacing:27.403520pt;}
.ws5d{word-spacing:28.718080pt;}
.ws61{word-spacing:30.386560pt;}
.ws5f{word-spacing:30.639360pt;}
.ws60{word-spacing:31.296640pt;}
._6{margin-left:-8.099200pt;}
._3{margin-left:-6.253440pt;}
._5{margin-left:-4.736640pt;}
._4{margin-left:-2.780800pt;}
._1{margin-left:-0.957440pt;}
._0{width:0.966400pt;}
._2{width:2.307200pt;}
._a{width:4.793600pt;}
._b{width:6.055680pt;}
._8{width:6.965760pt;}
._c{width:12.188160pt;}
._e{width:14.583040pt;}
._9{width:19.241984pt;}
._f{width:23.578880pt;}
._7{width:29.009920pt;}
._d{width:65.121280pt;}
.fs5{font-size:40.320000pt;}
.fs8{font-size:45.440000pt;}
.fs4{font-size:50.560000pt;}
.fs9{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y97{bottom:3.200000pt;}
.yea{bottom:4.000000pt;}
.yef{bottom:4.160000pt;}
.ye8{bottom:4.320000pt;}
.ycc{bottom:6.240000pt;}
.ya3{bottom:6.400000pt;}
.yec{bottom:18.080000pt;}
.yf2{bottom:18.240000pt;}
.y8f{bottom:19.200000pt;}
.y90{bottom:19.520000pt;}
.y74{bottom:23.840000pt;}
.y99{bottom:27.520000pt;}
.y9a{bottom:27.840000pt;}
.y1f{bottom:36.960000pt;}
.y93{bottom:48.000000pt;}
.y94{bottom:48.320000pt;}
.y1e{bottom:54.880000pt;}
.y1{bottom:72.000000pt;}
.y69{bottom:75.213600pt;}
.y68{bottom:92.808480pt;}
.y172{bottom:94.483200pt;}
.y67{bottom:110.251680pt;}
.y171{bottom:112.078080pt;}
.ya1{bottom:112.966720pt;}
.y66{bottom:127.846560pt;}
.y170{bottom:129.672960pt;}
.ya0{bottom:130.561600pt;}
.y16f{bottom:147.116160pt;}
.ycd{bottom:150.080000pt;}
.y65{bottom:153.290880pt;}
.y9f{bottom:156.157600pt;}
.ycb{bottom:161.920000pt;}
.y16e{bottom:164.711040pt;}
.yfc{bottom:165.282720pt;}
.y64{bottom:170.885760pt;}
.y1b{bottom:171.708000pt;}
.y9e{bottom:173.600800pt;}
.y16d{bottom:182.154240pt;}
.yfb{bottom:182.725920pt;}
.y63{bottom:188.480640pt;}
.y1a{bottom:189.150667pt;}
.y9d{bottom:191.195680pt;}
.yca{bottom:194.422240pt;}
.y16c{bottom:199.749120pt;}
.y62{bottom:205.923840pt;}
.yfa{bottom:208.321920pt;}
.yc9{bottom:212.017120pt;}
.y19{bottom:214.910667pt;}
.y9c{bottom:216.640000pt;}
.y16b{bottom:217.192320pt;}
.y124{bottom:217.935360pt;}
.y61{bottom:223.518720pt;}
.ye1{bottom:224.003840pt;}
.yf9{bottom:225.916800pt;}
.yc8{bottom:229.460320pt;}
.y98{bottom:233.760000pt;}
.y16a{bottom:234.787200pt;}
.y123{bottom:235.378560pt;}
.y18{bottom:240.506667pt;}
.y60{bottom:240.961920pt;}
.ye0{bottom:241.447040pt;}
.yf8{bottom:243.360000pt;}
.yc7{bottom:247.055200pt;}
.y9b{bottom:247.520000pt;}
.y169{bottom:252.382080pt;}
.y122{bottom:252.973440pt;}
.y5f{bottom:258.556800pt;}
.ydf{bottom:259.041920pt;}
.y17{bottom:266.102667pt;}
.y168{bottom:269.825280pt;}
.y121{bottom:270.416640pt;}
.yf7{bottom:272.000000pt;}
.yc6{bottom:272.499520pt;}
.y5e{bottom:276.000000pt;}
.yde{bottom:276.485120pt;}
.y92{bottom:283.200000pt;}
.y167{bottom:287.420160pt;}
.y120{bottom:288.011520pt;}
.yc5{bottom:290.094400pt;}
.y16{bottom:291.546667pt;}
.ydd{bottom:294.080000pt;}
.y96{bottom:301.438400pt;}
.y5d{bottom:304.633760pt;}
.y166{bottom:304.863360pt;}
.yf5{bottom:307.040000pt;}
.yc4{bottom:307.689280pt;}
.yf6{bottom:311.200000pt;}
.y11f{bottom:313.607520pt;}
.y95{bottom:316.480000pt;}
.y15{bottom:317.306667pt;}
.ydc{bottom:318.240000pt;}
.y165{bottom:322.458240pt;}
.yc3{bottom:325.132480pt;}
.y143{bottom:327.840000pt;}
.y11e{bottom:331.050720pt;}
.yf4{bottom:335.840000pt;}
.y5c{bottom:335.856320pt;}
.ydb{bottom:338.400000pt;}
.y164{bottom:339.901440pt;}
.y14{bottom:342.902667pt;}
.y11d{bottom:348.645600pt;}
.yf1{bottom:350.400000pt;}
.yc2{bottom:350.728480pt;}
.y142{bottom:351.060640pt;}
.y8e{bottom:353.120000pt;}
.y5b{bottom:353.299520pt;}
.yf3{bottom:354.560000pt;}
.y163{bottom:357.496320pt;}
.y91{bottom:358.400000pt;}
.y11c{bottom:366.088800pt;}
.yc1{bottom:368.171680pt;}
.y13{bottom:368.498667pt;}
.y141{bottom:368.503840pt;}
.y5a{bottom:370.894400pt;}
.y162{bottom:375.091200pt;}
.yf0{bottom:379.200000pt;}
.y11b{bottom:383.683680pt;}
.yc0{bottom:385.766560pt;}
.y12{bottom:385.992000pt;}
.y140{bottom:386.098720pt;}
.y59{bottom:388.489280pt;}
.y161{bottom:392.534400pt;}
.yee{bottom:393.920000pt;}
.ybf{bottom:403.209760pt;}
.y11{bottom:403.485333pt;}
.y13f{bottom:403.541920pt;}
.y8d{bottom:403.700640pt;}
.y58{bottom:405.932480pt;}
.yeb{bottom:408.640000pt;}
.y11a{bottom:409.763520pt;}
.y160{bottom:410.129280pt;}
.yed{bottom:412.800000pt;}
.ybe{bottom:420.804640pt;}
.y10{bottom:420.978667pt;}
.y37{bottom:421.120000pt;}
.y13e{bottom:421.136800pt;}
.y8c{bottom:421.295520pt;}
.y57{bottom:423.527360pt;}
.y15f{bottom:427.572480pt;}
.y119{bottom:427.687040pt;}
.ye9{bottom:437.440000pt;}
.y13d{bottom:438.580000pt;}
.y8b{bottom:438.890400pt;}
.y56{bottom:440.970560pt;}
.y118{bottom:445.130240pt;}
.y15e{bottom:445.167360pt;}
.ybd{bottom:446.400640pt;}
.y36{bottom:446.880000pt;}
.ye7{bottom:452.000000pt;}
.y13c{bottom:456.174880pt;}
.y55{bottom:458.565440pt;}
.y15d{bottom:462.610560pt;}
.y117{bottom:462.725120pt;}
.ybc{bottom:463.843840pt;}
.y8a{bottom:464.334720pt;}
.y35{bottom:472.480000pt;}
.ye6{bottom:479.360000pt;}
.y15c{bottom:480.205440pt;}
.y116{bottom:480.320000pt;}
.ybb{bottom:481.438720pt;}
.y13b{bottom:481.770880pt;}
.y89{bottom:481.929600pt;}
.y54{bottom:484.009760pt;}
.y114{bottom:491.520000pt;}
.y115{bottom:495.520000pt;}
.y15b{bottom:497.800320pt;}
.y34{bottom:497.920000pt;}
.yba{bottom:498.881920pt;}
.y13a{bottom:499.214080pt;}
.y88{bottom:499.372800pt;}
.y53{bottom:501.604640pt;}
.ye5{bottom:502.556800pt;}
.y15a{bottom:515.243520pt;}
.yb9{bottom:516.476800pt;}
.y139{bottom:516.808960pt;}
.y87{bottom:516.967680pt;}
.y52{bottom:519.199520pt;}
.ye4{bottom:520.000000pt;}
.y112{bottom:520.160000pt;}
.y33{bottom:523.520000pt;}
.y113{bottom:524.320000pt;}
.y159{bottom:532.838400pt;}
.yb8{bottom:533.920000pt;}
.y138{bottom:534.252160pt;}
.y86{bottom:534.410880pt;}
.ye3{bottom:544.320000pt;}
.y51{bottom:544.643840pt;}
.y32{bottom:548.960000pt;}
.y158{bottom:550.281600pt;}
.y137{bottom:551.847040pt;}
.y85{bottom:552.005760pt;}
.y50{bottom:562.238720pt;}
.yb7{bottom:562.560000pt;}
.ye2{bottom:564.320000pt;}
.y157{bottom:567.876480pt;}
.y136{bottom:569.290240pt;}
.y84{bottom:569.600640pt;}
.y31{bottom:574.560000pt;}
.y111{bottom:576.000000pt;}
.y4f{bottom:579.681920pt;}
.y156{bottom:585.319680pt;}
.y135{bottom:586.885120pt;}
.y83{bottom:587.043840pt;}
.yb6{bottom:593.760000pt;}
.y4e{bottom:597.276800pt;}
.y110{bottom:599.203840pt;}
.y30{bottom:600.160000pt;}
.y155{bottom:602.914560pt;}
.y134{bottom:604.480000pt;}
.y82{bottom:604.638720pt;}
.yb4{bottom:605.600000pt;}
.yc{bottom:605.718400pt;}
.yb5{bottom:612.000000pt;}
.y4d{bottom:614.720000pt;}
.y10f{bottom:616.647040pt;}
.y154{bottom:620.509440pt;}
.yb3{bottom:620.662560pt;}
.y81{bottom:622.081920pt;}
.y2f{bottom:625.920000pt;}
.y133{bottom:632.960000pt;}
.y10e{bottom:634.241920pt;}
.y153{bottom:637.952640pt;}
.y80{bottom:639.676800pt;}
.y4c{bottom:643.360000pt;}
.y2e{bottom:651.680000pt;}
.y10d{bottom:651.685120pt;}
.y152{bottom:655.547520pt;}
.yb2{bottom:655.700640pt;}
.y7f{bottom:657.120000pt;}
.y132{bottom:664.175680pt;}
.y10c{bottom:669.280000pt;}
.y151{bottom:672.990720pt;}
.yb1{bottom:673.143840pt;}
.y4b{bottom:674.583360pt;}
.y2d{bottom:677.440000pt;}
.y131{bottom:681.770560pt;}
.y7e{bottom:685.759867pt;}
.y150{bottom:690.585600pt;}
.yb0{bottom:690.738720pt;}
.y4a{bottom:692.026560pt;}
.y10b{bottom:696.640000pt;}
.yda{bottom:700.173600pt;}
.y2c{bottom:703.360000pt;}
.y130{bottom:707.214880pt;}
.y14f{bottom:708.028800pt;}
.yaf{bottom:708.333600pt;}
.y49{bottom:709.621440pt;}
.y7d{bottom:716.970880pt;}
.yd9{bottom:717.768480pt;}
.y12f{bottom:724.809760pt;}
.y14e{bottom:725.623680pt;}
.yae{bottom:725.776800pt;}
.y48{bottom:727.064640pt;}
.y2b{bottom:729.120000pt;}
.y7c{bottom:734.414080pt;}
.yd8{bottom:735.211680pt;}
.y10a{bottom:740.964640pt;}
.y12e{bottom:742.252960pt;}
.y14d{bottom:743.066880pt;}
.y47{bottom:744.659520pt;}
.yad{bottom:751.372800pt;}
.y7b{bottom:752.008960pt;}
.yd7{bottom:752.806560pt;}
.y2a{bottom:754.880000pt;}
.y109{bottom:758.407840pt;}
.y14c{bottom:760.661760pt;}
.y46{bottom:762.254400pt;}
.y12d{bottom:767.848960pt;}
.yac{bottom:768.816000pt;}
.y7a{bottom:769.603840pt;}
.yd6{bottom:770.249760pt;}
.y108{bottom:776.002720pt;}
.y5{bottom:777.605920pt;}
.y14b{bottom:778.256640pt;}
.y29{bottom:780.800000pt;}
.y12c{bottom:785.292160pt;}
.yab{bottom:786.410880pt;}
.y79{bottom:787.047040pt;}
.y45{bottom:787.698720pt;}
.yd5{bottom:787.844640pt;}
.y14a{bottom:795.699840pt;}
.yb{bottom:797.422720pt;}
.y107{bottom:801.447040pt;}
.y12b{bottom:802.887040pt;}
.yaa{bottom:803.854080pt;}
.y78{bottom:804.641920pt;}
.y44{bottom:805.293600pt;}
.yd4{bottom:805.439520pt;}
.y149{bottom:813.294720pt;}
.y106{bottom:819.041920pt;}
.y12a{bottom:820.481920pt;}
.y28{bottom:820.640000pt;}
.ya9{bottom:821.448960pt;}
.y77{bottom:822.085120pt;}
.y43{bottom:822.736800pt;}
.yd3{bottom:822.882720pt;}
.y4{bottom:826.240000pt;}
.ya{bottom:829.425280pt;}
.y148{bottom:830.737920pt;}
.y105{bottom:836.485120pt;}
.y129{bottom:837.925120pt;}
.ya8{bottom:839.043840pt;}
.y76{bottom:839.680000pt;}
.y42{bottom:840.331680pt;}
.yd2{bottom:840.477600pt;}
.y147{bottom:848.332800pt;}
.y73{bottom:851.520000pt;}
.y104{bottom:854.080000pt;}
.y128{bottom:855.520000pt;}
.ya7{bottom:856.487040pt;}
.y41{bottom:857.774880pt;}
.y75{bottom:857.920000pt;}
.yd1{bottom:857.920800pt;}
.y9{bottom:861.427840pt;}
.y146{bottom:865.776000pt;}
.y72{bottom:866.573760pt;}
.y27{bottom:866.724640pt;}
.y3{bottom:869.760000pt;}
.ya6{bottom:874.081920pt;}
.y40{bottom:875.369760pt;}
.y103{bottom:881.440000pt;}
.y127{bottom:882.880000pt;}
.y145{bottom:883.370880pt;}
.yd0{bottom:883.516800pt;}
.ya5{bottom:891.525120pt;}
.y26{bottom:892.168960pt;}
.y3f{bottom:892.964640pt;}
.y8{bottom:893.274933pt;}
.ycf{bottom:900.960000pt;}
.y144{bottom:900.965760pt;}
.y71{bottom:901.611840pt;}
.ya4{bottom:909.120000pt;}
.y25{bottom:909.763840pt;}
.y177{bottom:911.041600pt;}
.y3e{bottom:918.408960pt;}
.ya2{bottom:920.960000pt;}
.y102{bottom:925.763840pt;}
.y70{bottom:927.056160pt;}
.y24{bottom:927.358720pt;}
.yce{bottom:929.600000pt;}
.y3d{bottom:936.003840pt;}
.y176{bottom:936.485920pt;}
.y101{bottom:943.207040pt;}
.y6f{bottom:944.651040pt;}
.y23{bottom:944.801920pt;}
.y3c{bottom:953.447040pt;}
.y175{bottom:954.080800pt;}
.y7{bottom:957.280000pt;}
.y100{bottom:960.801920pt;}
.y6e{bottom:962.245920pt;}
.y22{bottom:962.396800pt;}
.y3b{bottom:971.041920pt;}
.y174{bottom:971.840000pt;}
.yff{bottom:978.245120pt;}
.y6d{bottom:979.689120pt;}
.y21{bottom:979.840000pt;}
.y126{bottom:987.690240pt;}
.y3a{bottom:988.485120pt;}
.yfe{bottom:995.840000pt;}
.y6c{bottom:997.284000pt;}
.y125{bottom:1005.285120pt;}
.y39{bottom:1006.080000pt;}
.yf{bottom:1008.170240pt;}
.y173{bottom:1011.840000pt;}
.y20{bottom:1019.840000pt;}
.y6b{bottom:1022.728320pt;}
.yfd{bottom:1024.480000pt;}
.ye{bottom:1025.765120pt;}
.y6{bottom:1028.960000pt;}
.y38{bottom:1034.720000pt;}
.y6a{bottom:1040.323200pt;}
.yd{bottom:1043.360000pt;}
.y1d{bottom:1065.760000pt;}
.y1c{bottom:1083.680000pt;}
.h17{height:13.920000pt;}
.h1a{height:14.080000pt;}
.h15{height:14.400000pt;}
.h2{height:15.360000pt;}
.h14{height:17.441333pt;}
.h13{height:17.598667pt;}
.h1c{height:28.000000pt;}
.h19{height:28.001333pt;}
.h1d{height:28.158667pt;}
.h1b{height:28.160000pt;}
.hf{height:30.558667pt;}
.ha{height:33.102720pt;}
.h16{height:34.080000pt;}
.he{height:35.040000pt;}
.h10{height:36.150400pt;}
.h18{height:37.306240pt;}
.h9{height:37.920000pt;}
.h12{height:38.880000pt;}
.hc{height:39.243750pt;}
.h8{height:41.509760pt;}
.h1f{height:42.593530pt;}
.h1e{height:43.597440pt;}
.h3{height:48.000000pt;}
.h7{height:51.840000pt;}
.hd{height:53.473920pt;}
.h4{height:56.160000pt;}
.h11{height:59.360000pt;}
.hb{height:78.816000pt;}
.h5{height:83.740800pt;}
.h6{height:87.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:37.120000pt;}
.w6{width:46.560000pt;}
.w4{width:60.161333pt;}
.w7{width:148.800000pt;}
.wb{width:166.721333pt;}
.wc{width:167.040000pt;}
.w8{width:242.238667pt;}
.w9{width:242.718667pt;}
.wd{width:262.080000pt;}
.wa{width:299.840000pt;}
.w2{width:464.801333pt;}
.w5{width:561.600000pt;}
.w3{width:574.880000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x2{left:9.600000pt;}
.x1c{left:19.680000pt;}
.xe{left:33.120000pt;}
.x1a{left:66.080000pt;}
.x18{left:114.400000pt;}
.x1{left:116.800000pt;}
.x3{left:124.000000pt;}
.x1d{left:125.120000pt;}
.x7{left:131.192160pt;}
.x5{left:136.640000pt;}
.x1e{left:142.884160pt;}
.x6{left:149.280000pt;}
.x8{left:171.520000pt;}
.xa{left:178.400000pt;}
.xb{left:185.600000pt;}
.xc{left:194.720000pt;}
.xd{left:218.720000pt;}
.x11{left:266.240000pt;}
.x13{left:273.120000pt;}
.x16{left:286.080000pt;}
.x1b{left:379.520000pt;}
.x17{left:417.280000pt;}
.x15{left:429.600000pt;}
.x4{left:431.840000pt;}
.x12{left:509.120000pt;}
.x14{left:516.000000pt;}
.x19{left:584.800000pt;}
.xf{left:742.880000pt;}
.x10{left:744.000000pt;}
}




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