
    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_8280749bb678e48001ddb53e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.692871;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_f22f2cb9406c8a565dca02c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_99b9d870b03cb891e9329de2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_64944d527ac4ed62c1c2e507.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_3d267cbd2c10cac960bc432f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926270;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_83b48a42ed5086d12e37fac0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_4e4ba318f9e2a1b683d024e3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_3a86d579d5185483bc05b366.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_42d303b023b04f774fca3419.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_0ffd43db8df77319f7b00fb3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_2a260d5a9528f395df800afc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_6106ec3508e8db6a8b863691.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.091309;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_c1f5984306ed5bf8ee6979cb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_6c3cd3a64cef6d617a3b5edd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7b5d2bc417610a4608e84df1.woff2')format("woff");}.fff{font-family:fff;line-height:0.926270;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_2b21fb94cf1b15f91ceef85e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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;}
.ls36{letter-spacing:-2.471042px;}
.ls2e{letter-spacing:-2.407682px;}
.ls35{letter-spacing:-2.090882px;}
.ls2a{letter-spacing:-1.837441px;}
.ls2b{letter-spacing:-1.774081px;}
.ls33{letter-spacing:-1.710721px;}
.ls42{letter-spacing:-1.647361px;}
.ls2d{letter-spacing:-1.457281px;}
.ls28{letter-spacing:-1.393921px;}
.ls37{letter-spacing:-1.267201px;}
.ls34{letter-spacing:-1.203841px;}
.ls2c{letter-spacing:-1.140481px;}
.ls29{letter-spacing:-1.013761px;}
.ls1c{letter-spacing:-0.950401px;}
.ls1b{letter-spacing:-0.823681px;}
.ls69{letter-spacing:-0.776881px;}
.ls19{letter-spacing:-0.760321px;}
.ls6f{letter-spacing:-0.756001px;}
.ls70{letter-spacing:-0.702001px;}
.ls25{letter-spacing:-0.696961px;}
.ls38{letter-spacing:-0.633601px;}
.ls6c{letter-spacing:-0.594001px;}
.ls24{letter-spacing:-0.570241px;}
.ls3d{letter-spacing:-0.506881px;}
.ls6a{letter-spacing:-0.486001px;}
.ls43{letter-spacing:-0.478081px;}
.ls26{letter-spacing:-0.443520px;}
.ls27{letter-spacing:-0.380160px;}
.ls13{letter-spacing:-0.298800px;}
.ls17{letter-spacing:-0.270000px;}
.ls1d{letter-spacing:-0.253440px;}
.ls44{letter-spacing:-0.239040px;}
.ls6e{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.179280px;}
.ls14{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.119520px;}
.ls6d{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.063360px;}
.ls12{letter-spacing:-0.059760px;}
.ls18{letter-spacing:-0.054000px;}
.lse{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001120px;}
.ls58{letter-spacing:0.025483px;}
.ls5f{letter-spacing:0.053950px;}
.ls64{letter-spacing:0.053957px;}
.ls4{letter-spacing:0.059760px;}
.ls60{letter-spacing:0.107983px;}
.ls15{letter-spacing:0.108000px;}
.ls65{letter-spacing:0.161487px;}
.ls6b{letter-spacing:0.162000px;}
.ls54{letter-spacing:0.177343px;}
.ls63{letter-spacing:0.192343px;}
.ls62{letter-spacing:0.215967px;}
.ls5{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.237400px;}
.ls68{letter-spacing:0.239040px;}
.ls45{letter-spacing:0.243040px;}
.ls11{letter-spacing:0.252720px;}
.ls16{letter-spacing:0.270000px;}
.ls61{letter-spacing:0.270447px;}
.ls47{letter-spacing:0.276760px;}
.ls3{letter-spacing:0.282400px;}
.ls4a{letter-spacing:0.288040px;}
.ls49{letter-spacing:0.299260px;}
.ls57{letter-spacing:0.304900px;}
.ls2{letter-spacing:0.361180px;}
.ls48{letter-spacing:0.366760px;}
.ls55{letter-spacing:0.383680px;}
.ls5e{letter-spacing:0.394900px;}
.ls4f{letter-spacing:0.406180px;}
.ls4d{letter-spacing:0.411760px;}
.ls5b{letter-spacing:0.417400px;}
.ls5d{letter-spacing:0.445540px;}
.ls4e{letter-spacing:0.456760px;}
.ls4c{letter-spacing:0.479260px;}
.ls46{letter-spacing:0.507400px;}
.ls53{letter-spacing:0.569260px;}
.ls5a{letter-spacing:0.591760px;}
.ls66{letter-spacing:0.597601px;}
.ls5c{letter-spacing:0.601304px;}
.lsb{letter-spacing:0.696421px;}
.ls1e{letter-spacing:0.713281px;}
.ls4b{letter-spacing:0.734307px;}
.ls41{letter-spacing:0.951761px;}
.ls56{letter-spacing:1.013681px;}
.ls21{letter-spacing:1.077781px;}
.lsc{letter-spacing:1.275781px;}
.ls7{letter-spacing:1.393921px;}
.ls3a{letter-spacing:1.837141px;}
.ls8{letter-spacing:2.085782px;}
.lsa{letter-spacing:2.091422px;}
.ls67{letter-spacing:2.748962px;}
.ls52{letter-spacing:2.750909px;}
.ls2f{letter-spacing:3.294063px;}
.ls51{letter-spacing:3.466083px;}
.ls50{letter-spacing:3.544903px;}
.lsd{letter-spacing:3.548283px;}
.ls59{letter-spacing:3.989263px;}
.ls31{letter-spacing:3.991563px;}
.ls23{letter-spacing:5.448424px;}
.ls6{letter-spacing:5.702645px;}
.ls3c{letter-spacing:6.843425px;}
.ls22{letter-spacing:8.300287px;}
.ls1f{letter-spacing:8.997787px;}
.ls39{letter-spacing:9.886568px;}
.ls9{letter-spacing:10.011428px;}
.ls32{letter-spacing:11.214069px;}
.ls3e{letter-spacing:11.911570px;}
.ls30{letter-spacing:12.609070px;}
.ls20{letter-spacing:15.522792px;}
.ls40{letter-spacing:16.220293px;}
.ls3b{letter-spacing:17.677154px;}
.ls3f{letter-spacing:19.134075px;}
.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;}
}
.ws0{word-spacing:-33.047340px;}
.ws38{word-spacing:-30.186058px;}
.ws39{word-spacing:-29.808057px;}
.ws31{word-spacing:-19.362272px;}
.ws25{word-spacing:-17.614094px;}
.ws2f{word-spacing:-17.210911px;}
.ws19{word-spacing:-17.170574px;}
.ws2a{word-spacing:-17.107213px;}
.ws29{word-spacing:-16.980494px;}
.ws1c{word-spacing:-16.917134px;}
.ws23{word-spacing:-16.853773px;}
.ws1d{word-spacing:-16.790413px;}
.ws27{word-spacing:-16.663693px;}
.ws30{word-spacing:-16.613310px;}
.ws1f{word-spacing:-16.600333px;}
.ws2e{word-spacing:-16.553550px;}
.ws1{word-spacing:-16.493790px;}
.ws1b{word-spacing:-16.473613px;}
.ws24{word-spacing:-16.410253px;}
.ws2d{word-spacing:-16.374270px;}
.ws28{word-spacing:-16.346893px;}
.ws2c{word-spacing:-16.220173px;}
.ws2b{word-spacing:-16.156813px;}
.ws22{word-spacing:-15.903373px;}
.ws26{word-spacing:-15.523212px;}
.ws3{word-spacing:-15.228029px;}
.ws1e{word-spacing:-15.206412px;}
.ws34{word-spacing:-15.174029px;}
.ws33{word-spacing:-15.120029px;}
.ws4{word-spacing:-15.012029px;}
.ws37{word-spacing:-14.904029px;}
.ws36{word-spacing:-14.742028px;}
.ws32{word-spacing:-14.526028px;}
.ws9{word-spacing:-14.446092px;}
.ws35{word-spacing:-14.418028px;}
.ws7{word-spacing:-14.382732px;}
.ws3b{word-spacing:-14.310028px;}
.ws3a{word-spacing:-14.256028px;}
.wsc{word-spacing:-14.192651px;}
.wsa{word-spacing:-13.685771px;}
.ws8{word-spacing:-13.622411px;}
.wsb{word-spacing:-13.495691px;}
.ws6{word-spacing:-12.312024px;}
.ws5{word-spacing:-12.042023px;}
.ws3d{word-spacing:-2.629442px;}
.ws10{word-spacing:-0.810001px;}
.ws3f{word-spacing:-0.216000px;}
.wse{word-spacing:-0.108000px;}
.ws13{word-spacing:-0.072000px;}
.ws1a{word-spacing:-0.063360px;}
.ws12{word-spacing:-0.059760px;}
.ws2{word-spacing:-0.054000px;}
.wsd{word-spacing:0.000000px;}
.ws11{word-spacing:0.059760px;}
.ws16{word-spacing:0.063360px;}
.ws3c{word-spacing:0.239040px;}
.ws14{word-spacing:0.288000px;}
.wsf{word-spacing:0.702001px;}
.ws21{word-spacing:0.760321px;}
.ws20{word-spacing:0.823681px;}
.ws3e{word-spacing:0.836641px;}
.ws17{word-spacing:1.457281px;}
.ws15{word-spacing:2.914562px;}
.ws18{word-spacing:5.068810px;}
._1{margin-left:-1.326026px;}
._0{width:1.253322px;}
._4{width:2.964476px;}
._5{width:4.110304px;}
._3{width:5.587809px;}
._2{width:7.283975px;}
._7{width:8.907214px;}
._6{width:10.837086px;}
._11{width:12.073873px;}
._a{width:13.311859px;}
._12{width:14.345881px;}
._9{width:16.115084px;}
._8{width:17.270491px;}
._c{width:18.657893px;}
._d{width:20.347395px;}
._f{width:21.652123px;}
._16{width:22.858620px;}
._17{width:23.899261px;}
._1b{width:24.985642px;}
._10{width:26.047250px;}
._1a{width:27.752284px;}
._e{width:29.174062px;}
._19{width:30.398593px;}
._1c{width:31.939168px;}
._18{width:33.474332px;}
._13{width:37.300769px;}
._b{width:39.180157px;}
._14{width:40.804081px;}
._1d{width:42.486315px;}
._15{width:44.652636px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(232,44,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000029px;}
.fs6{font-size:48.240099px;}
.fs2{font-size:54.000103px;}
.fs0{font-size:59.760108px;}
.fs5{font-size:63.360051px;}
.fs1{font-size:72.000058px;}
.fs3{font-size:84.240067px;}
.fs4{font-size:95.760077px;}
.y0{bottom:0.000000px;}
.y1e0{bottom:2.880150px;}
.y3e{bottom:4.320076px;}
.ya4{bottom:4.320077px;}
.y3b{bottom:4.860073px;}
.y3a{bottom:20.520085px;}
.y40{bottom:23.580078px;}
.y5{bottom:29.700087px;}
.ya5{bottom:73.800000px;}
.y3f{bottom:73.980000px;}
.y4{bottom:78.660000px;}
.y41{bottom:81.720065px;}
.ya6{bottom:81.900066px;}
.y39{bottom:86.220000px;}
.y3{bottom:89.100071px;}
.y3c{bottom:89.460072px;}
.y3d{bottom:90.360000px;}
.ya3{bottom:91.620000px;}
.y6{bottom:92.880074px;}
.y2{bottom:110.160088px;}
.y38{bottom:153.910323px;}
.ydd{bottom:154.472674px;}
.y114{bottom:154.604074px;}
.ya2{bottom:156.229175px;}
.y78{bottom:158.466127px;}
.y12e{bottom:163.469831px;}
.y165{bottom:163.615481px;}
.y19c{bottom:164.328581px;}
.y1e1{bottom:170.100136px;}
.y37{bottom:172.094538px;}
.ydc{bottom:172.118238px;}
.y113{bottom:172.249638px;}
.ya1{bottom:173.874739px;}
.y77{bottom:176.111691px;}
.y12d{bottom:181.115395px;}
.y19b{bottom:181.255645px;}
.y164{bottom:181.261045px;}
.y1c8{bottom:184.140000px;}
.ydb{bottom:189.938252px;}
.y112{bottom:190.069652px;}
.y36{bottom:190.088852px;}
.ya0{bottom:191.694753px;}
.y76{bottom:193.931705px;}
.y163{bottom:198.792759px;}
.y12c{bottom:198.935409px;}
.y1d3{bottom:200.160160px;}
.y1df{bottom:202.680162px;}
.y1c9{bottom:203.040310px;}
.y167{bottom:207.583666px;}
.yda{bottom:207.583816px;}
.y111{bottom:207.715216px;}
.y35{bottom:208.083166px;}
.y9f{bottom:209.340317px;}
.y75{bottom:211.577269px;}
.y1d2{bottom:215.640173px;}
.y19a{bottom:216.262523px;}
.y162{bottom:216.438323px;}
.y12b{bottom:216.580973px;}
.y1de{bottom:218.160175px;}
.yd9{bottom:225.403830px;}
.y110{bottom:225.535230px;}
.y34{bottom:226.267381px;}
.y9e{bottom:227.160332px;}
.y74{bottom:229.397284px;}
.y166{bottom:229.727884px;}
.y1d1{bottom:231.480185px;}
.y1dd{bottom:233.640187px;}
.y199{bottom:233.908087px;}
.y161{bottom:234.258337px;}
.y12a{bottom:234.400988px;}
.yd8{bottom:243.049394px;}
.y10f{bottom:243.180795px;}
.y33{bottom:244.261695px;}
.y9d{bottom:244.413646px;}
.y73{bottom:247.042848px;}
.y1dc{bottom:249.120199px;}
.y198{bottom:251.728101px;}
.y160{bottom:251.905402px;}
.y129{bottom:252.046552px;}
.y1d0{bottom:260.100208px;}
.yd7{bottom:260.869409px;}
.y10e{bottom:261.000809px;}
.y9c{bottom:262.059210px;}
.y32{bottom:262.445910px;}
.y72{bottom:264.862862px;}
.y1db{bottom:264.955712px;}
.y15f{bottom:269.725416px;}
.y128{bottom:269.866566px;}
.y197{bottom:273.872319px;}
.y1cf{bottom:275.760221px;}
.yd6{bottom:278.516473px;}
.y9b{bottom:279.704774px;}
.y31{bottom:280.440224px;}
.y1da{bottom:280.616024px;}
.y71{bottom:282.508426px;}
.y10d{bottom:282.872176px;}
.y15e{bottom:287.370980px;}
.y127{bottom:287.512130px;}
.y1ce{bottom:295.740237px;}
.y1d9{bottom:296.100237px;}
.y196{bottom:296.192337px;}
.yd5{bottom:296.336487px;}
.y9a{bottom:297.160588px;}
.y30{bottom:298.436039px;}
.y70{bottom:300.328440px;}
.y10c{bottom:300.692191px;}
.y15d{bottom:305.190994px;}
.y126{bottom:305.332144px;}
.y1cd{bottom:311.220249px;}
.y195{bottom:313.837901px;}
.yd4{bottom:313.982051px;}
.y99{bottom:314.807652px;}
.y1d8{bottom:316.080253px;}
.y2f{bottom:316.620253px;}
.y6f{bottom:317.974004px;}
.y10b{bottom:318.337755px;}
.y15c{bottom:322.836558px;}
.y125{bottom:322.979208px;}
.y1cc{bottom:331.191865px;}
.y194{bottom:331.657915px;}
.yd3{bottom:331.802065px;}
.y98{bottom:332.453216px;}
.y2e{bottom:333.900267px;}
.y6e{bottom:335.794019px;}
.y1d7{bottom:336.060269px;}
.y10a{bottom:340.656423px;}
.y15b{bottom:340.656573px;}
.y124{bottom:340.799223px;}
.y1cb{bottom:347.216078px;}
.y2d{bottom:348.523629px;}
.yd2{bottom:349.447630px;}
.y97{bottom:350.098780px;}
.y1d6{bottom:351.720281px;}
.y6d{bottom:353.439583px;}
.y193{bottom:353.802133px;}
.y109{bottom:358.301987px;}
.y15a{bottom:358.302137px;}
.y123{bottom:358.444787px;}
.y2c{bottom:366.517943px;}
.y1d5{bottom:367.200294px;}
.yd1{bottom:367.267644px;}
.y96{bottom:367.554594px;}
.y6c{bottom:371.259597px;}
.y1ca{bottom:371.340297px;}
.y192{bottom:376.120801px;}
.y108{bottom:376.122001px;}
.y159{bottom:376.122151px;}
.y122{bottom:376.264801px;}
.y1d4{bottom:382.680306px;}
.y2b{bottom:384.510908px;}
.yd0{bottom:384.913208px;}
.y95{bottom:385.201658px;}
.y6b{bottom:388.906661px;}
.y191{bottom:393.766365px;}
.y107{bottom:393.767565px;}
.y158{bottom:393.767715px;}
.y121{bottom:393.910365px;}
.y2a{bottom:402.696472px;}
.ycf{bottom:402.733222px;}
.y94{bottom:402.847222px;}
.y6a{bottom:406.726675px;}
.y1c7{bottom:411.120329px;}
.y190{bottom:411.586379px;}
.y106{bottom:411.587579px;}
.y157{bottom:411.587729px;}
.y120{bottom:411.730379px;}
.y93{bottom:420.303036px;}
.yce{bottom:420.378786px;}
.y29{bottom:420.880687px;}
.y69{bottom:424.372239px;}
.y1c6{bottom:425.160340px;}
.y18f{bottom:429.231943px;}
.y105{bottom:429.233143px;}
.y156{bottom:429.233293px;}
.y11f{bottom:429.375944px;}
.y1c5{bottom:436.674649px;}
.y92{bottom:437.948600px;}
.ycd{bottom:438.198801px;}
.y28{bottom:438.875001px;}
.y68{bottom:442.192254px;}
.y18e{bottom:447.051958px;}
.y104{bottom:447.053158px;}
.y155{bottom:447.053308px;}
.y11e{bottom:447.195958px;}
.y1c4{bottom:453.780363px;}
.ycc{bottom:455.844365px;}
.y27{bottom:456.867965px;}
.y67{bottom:460.012268px;}
.y91{bottom:460.092818px;}
.y18d{bottom:464.697522px;}
.y103{bottom:464.698722px;}
.y154{bottom:464.698872px;}
.y11d{bottom:464.841522px;}
.y1c3{bottom:470.707427px;}
.ycb{bottom:473.665729px;}
.y26{bottom:475.052180px;}
.y66{bottom:477.657832px;}
.y90{bottom:477.912832px;}
.y18c{bottom:482.517536px;}
.y102{bottom:482.518736px;}
.y153{bottom:482.518886px;}
.y11c{bottom:482.661536px;}
.y1c2{bottom:487.634490px;}
.yca{bottom:491.311293px;}
.y25{bottom:493.046494px;}
.y65{bottom:495.479196px;}
.y18b{bottom:500.163100px;}
.y101{bottom:500.164300px;}
.y152{bottom:500.164450px;}
.y8f{bottom:500.231500px;}
.y11b{bottom:500.307100px;}
.y1c1{bottom:504.367453px;}
.yc9{bottom:509.131307px;}
.y24{bottom:511.230709px;}
.y64{bottom:513.124760px;}
.y8e{bottom:517.877064px;}
.y18a{bottom:517.983114px;}
.y100{bottom:517.985664px;}
.y151{bottom:517.985814px;}
.y11a{bottom:518.127115px;}
.y1c0{bottom:521.100417px;}
.yc8{bottom:526.951322px;}
.y23{bottom:529.225023px;}
.y63{bottom:530.944775px;}
.y8d{bottom:535.697079px;}
.y189{bottom:535.803129px;}
.yff{bottom:535.805679px;}
.y150{bottom:535.805829px;}
.y119{bottom:535.947129px;}
.y1bf{bottom:538.009930px;}
.yc7{bottom:544.596886px;}
.y22{bottom:547.219338px;}
.y62{bottom:548.590339px;}
.y8c{bottom:553.342643px;}
.y188{bottom:553.448693px;}
.yfe{bottom:553.451243px;}
.y14f{bottom:553.451393px;}
.y118{bottom:553.594193px;}
.y1be{bottom:555.114744px;}
.yc6{bottom:562.416900px;}
.y21{bottom:565.403552px;}
.y61{bottom:566.410353px;}
.y8b{bottom:571.162657px;}
.y187{bottom:571.268707px;}
.yfd{bottom:571.271257px;}
.y14e{bottom:571.271407px;}
.y117{bottom:571.414207px;}
.y1bd{bottom:571.847707px;}
.y20{bottom:583.397867px;}
.y60{bottom:584.055917px;}
.yc5{bottom:584.561118px;}
.y8a{bottom:588.808221px;}
.y186{bottom:588.915771px;}
.yfc{bottom:588.918321px;}
.y14d{bottom:588.918471px;}
.y1bc{bottom:588.953421px;}
.y116{bottom:589.059771px;}
.y1f{bottom:601.582081px;}
.y5f{bottom:601.875932px;}
.yc4{bottom:602.381132px;}
.y1bb{bottom:605.880485px;}
.y89{bottom:606.628235px;}
.y185{bottom:606.735785px;}
.yfb{bottom:606.738335px;}
.y14c{bottom:606.738485px;}
.y115{bottom:606.879786px;}
.y5e{bottom:619.521496px;}
.y1e{bottom:619.576396px;}
.y1ba{bottom:622.613448px;}
.y88{bottom:624.273799px;}
.y184{bottom:624.381350px;}
.yfa{bottom:624.383900px;}
.y14b{bottom:624.384050px;}
.yc3{bottom:624.525350px;}
.y5d{bottom:637.341510px;}
.y1d{bottom:637.570710px;}
.y1b9{bottom:639.540512px;}
.y87{bottom:642.093814px;}
.y183{bottom:642.201364px;}
.yf9{bottom:642.203914px;}
.y14a{bottom:642.204064px;}
.yc2{bottom:642.345364px;}
.y5c{bottom:654.987074px;}
.y1c{bottom:655.754925px;}
.y1b8{bottom:656.274825px;}
.y86{bottom:659.739378px;}
.y182{bottom:659.846928px;}
.yf8{bottom:659.849478px;}
.y149{bottom:659.849628px;}
.yc1{bottom:659.992428px;}
.y5b{bottom:672.807088px;}
.y1b7{bottom:673.380539px;}
.y1b{bottom:673.749239px;}
.y85{bottom:677.559392px;}
.y181{bottom:677.666942px;}
.yf7{bottom:677.669492px;}
.y148{bottom:677.669642px;}
.yc0{bottom:677.812442px;}
.y1b6{bottom:690.307602px;}
.y5a{bottom:690.452652px;}
.y1a{bottom:691.933454px;}
.y84{bottom:695.204956px;}
.y180{bottom:695.312506px;}
.yf6{bottom:695.315056px;}
.y147{bottom:695.315206px;}
.ybf{bottom:695.458006px;}
.y1b5{bottom:707.040566px;}
.y59{bottom:708.272667px;}
.y19{bottom:709.927768px;}
.y83{bottom:713.024970px;}
.y17f{bottom:713.132521px;}
.yf5{bottom:713.135071px;}
.y146{bottom:713.135221px;}
.ybe{bottom:713.278021px;}
.y1b4{bottom:723.780579px;}
.y58{bottom:725.919731px;}
.y18{bottom:728.111982px;}
.y82{bottom:730.670535px;}
.y17e{bottom:730.778085px;}
.yf4{bottom:730.780635px;}
.y145{bottom:730.780785px;}
.ybd{bottom:730.923585px;}
.y1b3{bottom:740.700593px;}
.y57{bottom:743.739745px;}
.y17{bottom:746.106297px;}
.y81{bottom:748.491899px;}
.y17d{bottom:748.598099px;}
.yf3{bottom:748.600649px;}
.y144{bottom:748.600799px;}
.ybc{bottom:748.743599px;}
.y1b2{bottom:757.793556px;}
.y56{bottom:761.385309px;}
.y16{bottom:764.100611px;}
.y80{bottom:766.137463px;}
.y17c{bottom:766.243663px;}
.yf2{bottom:766.246213px;}
.y143{bottom:766.246363px;}
.ybb{bottom:766.389163px;}
.y1b1{bottom:774.526520px;}
.y55{bottom:779.205323px;}
.y7f{bottom:783.957477px;}
.y17b{bottom:784.063677px;}
.yf1{bottom:784.066227px;}
.y142{bottom:784.066377px;}
.yba{bottom:784.209177px;}
.y15{bottom:790.200632px;}
.y1b0{bottom:791.453583px;}
.y54{bottom:796.850887px;}
.y17a{bottom:801.709241px;}
.yf0{bottom:801.711791px;}
.y141{bottom:801.711941px;}
.y7e{bottom:801.777491px;}
.yb9{bottom:801.854741px;}
.y1af{bottom:808.380647px;}
.y53{bottom:814.670902px;}
.y14{bottom:818.280655px;}
.y7d{bottom:819.423056px;}
.y179{bottom:819.529256px;}
.yef{bottom:819.531806px;}
.y140{bottom:819.531956px;}
.yb8{bottom:819.674756px;}
.y52{bottom:832.316466px;}
.y1ae{bottom:834.473168px;}
.y178{bottom:837.176320px;}
.yee{bottom:837.177370px;}
.y13f{bottom:837.177520px;}
.y7c{bottom:837.243070px;}
.yb7{bottom:837.320320px;}
.y13{bottom:838.980671px;}
.y51{bottom:850.136480px;}
.y1ad{bottom:851.400681px;}
.y7b{bottom:854.890134px;}
.y177{bottom:854.996334px;}
.yed{bottom:854.997384px;}
.y13e{bottom:854.997534px;}
.yb6{bottom:855.140334px;}
.y50{bottom:867.782044px;}
.y1ac{bottom:868.322045px;}
.y12{bottom:871.020697px;}
.y176{bottom:872.641898px;}
.yec{bottom:872.644448px;}
.y13d{bottom:872.644598px;}
.y7a{bottom:872.710148px;}
.yb5{bottom:872.785898px;}
.y1ab{bottom:885.427758px;}
.y11{bottom:886.136509px;}
.y4f{bottom:890.100712px;}
.y79{bottom:890.355712px;}
.y175{bottom:890.461912px;}
.yeb{bottom:890.464462px;}
.y13c{bottom:890.464612px;}
.yb4{bottom:890.605912px;}
.y10{bottom:901.620721px;}
.y1aa{bottom:902.160722px;}
.y4e{bottom:907.560726px;}
.y174{bottom:908.108976px;}
.yea{bottom:908.110026px;}
.y13b{bottom:908.110176px;}
.yb3{bottom:908.251477px;}
.y1a9{bottom:918.866235px;}
.y4d{bottom:922.163838px;}
.yf{bottom:924.840740px;}
.y173{bottom:925.928991px;}
.ye9{bottom:925.930041px;}
.y13a{bottom:925.930191px;}
.yb2{bottom:926.071491px;}
.y1a8{bottom:935.792549px;}
.y4c{bottom:940.158152px;}
.y172{bottom:943.749005px;}
.ye8{bottom:943.750055px;}
.y139{bottom:943.750205px;}
.yb1{bottom:943.891505px;}
.y1a7{bottom:952.719612px;}
.y4b{bottom:958.342367px;}
.ye{bottom:958.689167px;}
.y171{bottom:961.394569px;}
.ye7{bottom:961.395619px;}
.y138{bottom:961.395769px;}
.yb0{bottom:961.538569px;}
.y1a6{bottom:969.646676px;}
.y4a{bottom:976.336681px;}
.y170{bottom:979.214583px;}
.ye6{bottom:979.215633px;}
.y137{bottom:979.215783px;}
.yaf{bottom:979.358583px;}
.yd{bottom:986.220789px;}
.y1a5{bottom:986.573739px;}
.y49{bottom:994.330995px;}
.y16f{bottom:996.860147px;}
.ye5{bottom:996.861197px;}
.y136{bottom:996.861347px;}
.yae{bottom:997.004148px;}
.y1a4{bottom:1003.500803px;}
.y48{bottom:1012.515210px;}
.y16e{bottom:1014.680162px;}
.ye4{bottom:1014.681212px;}
.y135{bottom:1014.681362px;}
.yad{bottom:1014.824162px;}
.y1a3{bottom:1020.221316px;}
.yc{bottom:1023.842319px;}
.y47{bottom:1030.509524px;}
.y16d{bottom:1032.325726px;}
.ye3{bottom:1032.326776px;}
.y134{bottom:1032.326926px;}
.yac{bottom:1032.469726px;}
.y1a2{bottom:1037.146880px;}
.yb{bottom:1040.935133px;}
.y46{bottom:1048.693739px;}
.y16c{bottom:1050.145740px;}
.ye2{bottom:1050.146790px;}
.y133{bottom:1050.146940px;}
.yab{bottom:1050.289740px;}
.y1a1{bottom:1054.073943px;}
.ya{bottom:1058.220847px;}
.y45{bottom:1066.688053px;}
.y16b{bottom:1067.791304px;}
.ye1{bottom:1067.793854px;}
.y132{bottom:1067.794004px;}
.yaa{bottom:1067.935304px;}
.y1a0{bottom:1071.002357px;}
.y9{bottom:1076.942362px;}
.y44{bottom:1084.683868px;}
.y16a{bottom:1085.611318px;}
.ye0{bottom:1085.613868px;}
.y131{bottom:1085.614018px;}
.ya9{bottom:1085.755319px;}
.y19f{bottom:1087.922370px;}
.y43{bottom:1102.868082px;}
.y169{bottom:1103.256883px;}
.ydf{bottom:1103.259433px;}
.y130{bottom:1103.259583px;}
.ya8{bottom:1103.402383px;}
.y8{bottom:1104.295333px;}
.y19e{bottom:1104.842384px;}
.y42{bottom:1120.862397px;}
.y168{bottom:1121.076897px;}
.yde{bottom:1121.079447px;}
.y12f{bottom:1121.079597px;}
.ya7{bottom:1121.222397px;}
.y7{bottom:1121.402397px;}
.y19d{bottom:1121.762397px;}
.y1{bottom:1206.362465px;}
.h14{height:29.700000px;}
.h22{height:31.904322px;}
.h13{height:33.120000px;}
.h12{height:33.494834px;}
.h18{height:35.998596px;}
.h15{height:36.000000px;}
.h7{height:39.313552px;}
.h2{height:41.493590px;}
.h5{height:42.120000px;}
.h8{height:43.506993px;}
.h10{height:46.406287px;}
.h24{height:47.223723px;}
.hf{height:47.566497px;}
.hd{height:47.856537px;}
.h4{height:48.761758px;}
.h3{height:49.992227px;}
.h19{height:52.260915px;}
.h6{height:52.418011px;}
.hc{height:52.699261px;}
.h9{height:52.961228px;}
.h1d{height:52.961828px;}
.h21{height:52.969028px;}
.h1f{height:52.984028px;}
.h1a{height:52.989353px;}
.h1e{height:52.991228px;}
.h20{height:53.003228px;}
.h1b{height:53.039228px;}
.h1c{height:53.099228px;}
.h16{height:55.409107px;}
.h11{height:55.811295px;}
.h17{height:56.151607px;}
.he{height:58.490906px;}
.ha{height:61.658135px;}
.hb{height:83.743309px;}
.h23{height:215.280000px;}
.h0{height:1262.879850px;}
.h1{height:1263.000000px;}
.w4{width:18.000000px;}
.w6{width:18.180000px;}
.w2{width:228.780000px;}
.w5{width:233.640000px;}
.w7{width:252.538560px;}
.w3{width:303.840000px;}
.w8{width:478.440000px;}
.w0{width:892.979700px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:8.100270px;}
.xd{left:10.800072px;}
.x5{left:12.240481px;}
.x16{left:14.760490px;}
.xf{left:18.720486px;}
.x1b{left:77.040000px;}
.xc{left:79.560000px;}
.x7{left:84.959903px;}
.x1d{left:87.123595px;}
.x9{left:106.200085px;}
.x1c{left:108.360087px;}
.x19{left:116.820078px;}
.x11{left:138.062960px;}
.xa{left:169.881256px;}
.x1f{left:329.580000px;}
.x1e{left:337.680270px;}
.x2{left:437.402300px;}
.xe{left:439.560000px;}
.x14{left:446.402307px;}
.x12{left:457.201581px;}
.xb{left:463.863371px;}
.x13{left:478.443098px;}
.x8{left:500.400295px;}
.x1a{left:572.940458px;}
.x4{left:589.140000px;}
.x15{left:597.420000px;}
.x6{left:641.880514px;}
.x10{left:643.500515px;}
.x18{left:645.660517px;}
.x17{left:652.680522px;}
.x1{left:705.780565px;}
.x3{left:780.842575px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls36{letter-spacing:-2.196482pt;}
.ls2e{letter-spacing:-2.140162pt;}
.ls35{letter-spacing:-1.858561pt;}
.ls2a{letter-spacing:-1.633281pt;}
.ls2b{letter-spacing:-1.576961pt;}
.ls33{letter-spacing:-1.520641pt;}
.ls42{letter-spacing:-1.464321pt;}
.ls2d{letter-spacing:-1.295361pt;}
.ls28{letter-spacing:-1.239041pt;}
.ls37{letter-spacing:-1.126401pt;}
.ls34{letter-spacing:-1.070081pt;}
.ls2c{letter-spacing:-1.013761pt;}
.ls29{letter-spacing:-0.901121pt;}
.ls1c{letter-spacing:-0.844801pt;}
.ls1b{letter-spacing:-0.732161pt;}
.ls69{letter-spacing:-0.690561pt;}
.ls19{letter-spacing:-0.675841pt;}
.ls6f{letter-spacing:-0.672001pt;}
.ls70{letter-spacing:-0.624000pt;}
.ls25{letter-spacing:-0.619520pt;}
.ls38{letter-spacing:-0.563200pt;}
.ls6c{letter-spacing:-0.528001pt;}
.ls24{letter-spacing:-0.506881pt;}
.ls3d{letter-spacing:-0.450561pt;}
.ls6a{letter-spacing:-0.432001pt;}
.ls43{letter-spacing:-0.424961pt;}
.ls26{letter-spacing:-0.394240pt;}
.ls27{letter-spacing:-0.337920pt;}
.ls13{letter-spacing:-0.265600pt;}
.ls17{letter-spacing:-0.240000pt;}
.ls1d{letter-spacing:-0.225280pt;}
.ls44{letter-spacing:-0.212480pt;}
.ls6e{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.159360pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.106240pt;}
.ls6d{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.056320pt;}
.ls12{letter-spacing:-0.053120pt;}
.ls18{letter-spacing:-0.048000pt;}
.lse{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000996pt;}
.ls58{letter-spacing:0.022652pt;}
.ls5f{letter-spacing:0.047955pt;}
.ls64{letter-spacing:0.047962pt;}
.ls4{letter-spacing:0.053120pt;}
.ls60{letter-spacing:0.095985pt;}
.ls15{letter-spacing:0.096000pt;}
.ls65{letter-spacing:0.143544pt;}
.ls6b{letter-spacing:0.144000pt;}
.ls54{letter-spacing:0.157639pt;}
.ls63{letter-spacing:0.170972pt;}
.ls62{letter-spacing:0.191971pt;}
.ls5{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.211022pt;}
.ls68{letter-spacing:0.212480pt;}
.ls45{letter-spacing:0.216036pt;}
.ls11{letter-spacing:0.224640pt;}
.ls16{letter-spacing:0.240000pt;}
.ls61{letter-spacing:0.240397pt;}
.ls47{letter-spacing:0.246009pt;}
.ls3{letter-spacing:0.251022pt;}
.ls4a{letter-spacing:0.256036pt;}
.ls49{letter-spacing:0.266009pt;}
.ls57{letter-spacing:0.271022pt;}
.ls2{letter-spacing:0.321049pt;}
.ls48{letter-spacing:0.326009pt;}
.ls55{letter-spacing:0.341049pt;}
.ls5e{letter-spacing:0.351023pt;}
.ls4f{letter-spacing:0.361049pt;}
.ls4d{letter-spacing:0.366009pt;}
.ls5b{letter-spacing:0.371023pt;}
.ls5d{letter-spacing:0.396036pt;}
.ls4e{letter-spacing:0.406009pt;}
.ls4c{letter-spacing:0.426009pt;}
.ls46{letter-spacing:0.451023pt;}
.ls53{letter-spacing:0.506009pt;}
.ls5a{letter-spacing:0.526009pt;}
.ls66{letter-spacing:0.531201pt;}
.ls5c{letter-spacing:0.534492pt;}
.lsb{letter-spacing:0.619040pt;}
.ls1e{letter-spacing:0.634027pt;}
.ls4b{letter-spacing:0.652718pt;}
.ls41{letter-spacing:0.846010pt;}
.ls56{letter-spacing:0.901050pt;}
.ls21{letter-spacing:0.958027pt;}
.lsc{letter-spacing:1.134028pt;}
.ls7{letter-spacing:1.239041pt;}
.ls3a{letter-spacing:1.633015pt;}
.ls8{letter-spacing:1.854028pt;}
.lsa{letter-spacing:1.859041pt;}
.ls67{letter-spacing:2.443522pt;}
.ls52{letter-spacing:2.445252pt;}
.ls2f{letter-spacing:2.928056pt;}
.ls51{letter-spacing:3.080962pt;}
.ls50{letter-spacing:3.151025pt;}
.lsd{letter-spacing:3.154029pt;}
.ls59{letter-spacing:3.546012pt;}
.ls31{letter-spacing:3.548056pt;}
.ls23{letter-spacing:4.843044pt;}
.ls6{letter-spacing:5.069017pt;}
.ls3c{letter-spacing:6.083045pt;}
.ls22{letter-spacing:7.378033pt;}
.ls1f{letter-spacing:7.998033pt;}
.ls39{letter-spacing:8.788060pt;}
.ls9{letter-spacing:8.899047pt;}
.ls32{letter-spacing:9.968061pt;}
.ls3e{letter-spacing:10.588062pt;}
.ls30{letter-spacing:11.208062pt;}
.ls20{letter-spacing:13.798038pt;}
.ls40{letter-spacing:14.418038pt;}
.ls3b{letter-spacing:15.713026pt;}
.ls3f{letter-spacing:17.008067pt;}
.ws0{word-spacing:-29.375413pt;}
.ws38{word-spacing:-26.832051pt;}
.ws39{word-spacing:-26.496051pt;}
.ws31{word-spacing:-17.210909pt;}
.ws25{word-spacing:-15.656973pt;}
.ws2f{word-spacing:-15.298588pt;}
.ws19{word-spacing:-15.262732pt;}
.ws2a{word-spacing:-15.206412pt;}
.ws29{word-spacing:-15.093772pt;}
.ws1c{word-spacing:-15.037452pt;}
.ws23{word-spacing:-14.981132pt;}
.ws1d{word-spacing:-14.924812pt;}
.ws27{word-spacing:-14.812172pt;}
.ws30{word-spacing:-14.767387pt;}
.ws1f{word-spacing:-14.755852pt;}
.ws2e{word-spacing:-14.714267pt;}
.ws1{word-spacing:-14.661147pt;}
.ws1b{word-spacing:-14.643212pt;}
.ws24{word-spacing:-14.586892pt;}
.ws2d{word-spacing:-14.554906pt;}
.ws28{word-spacing:-14.530572pt;}
.ws2c{word-spacing:-14.417932pt;}
.ws2b{word-spacing:-14.361611pt;}
.ws22{word-spacing:-14.136331pt;}
.ws26{word-spacing:-13.798411pt;}
.ws3{word-spacing:-13.536026pt;}
.ws1e{word-spacing:-13.516811pt;}
.ws34{word-spacing:-13.488026pt;}
.ws33{word-spacing:-13.440026pt;}
.ws4{word-spacing:-13.344026pt;}
.ws37{word-spacing:-13.248025pt;}
.ws36{word-spacing:-13.104025pt;}
.ws32{word-spacing:-12.912025pt;}
.ws9{word-spacing:-12.840970pt;}
.ws35{word-spacing:-12.816025pt;}
.ws7{word-spacing:-12.784650pt;}
.ws3b{word-spacing:-12.720025pt;}
.ws3a{word-spacing:-12.672025pt;}
.wsc{word-spacing:-12.615690pt;}
.wsa{word-spacing:-12.165130pt;}
.ws8{word-spacing:-12.108810pt;}
.wsb{word-spacing:-11.996170pt;}
.ws6{word-spacing:-10.944021pt;}
.ws5{word-spacing:-10.704021pt;}
.ws3d{word-spacing:-2.337282pt;}
.ws10{word-spacing:-0.720001pt;}
.ws3f{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.096000pt;}
.ws13{word-spacing:-0.064000pt;}
.ws1a{word-spacing:-0.056320pt;}
.ws12{word-spacing:-0.053120pt;}
.ws2{word-spacing:-0.048000pt;}
.wsd{word-spacing:0.000000pt;}
.ws11{word-spacing:0.053120pt;}
.ws16{word-spacing:0.056320pt;}
.ws3c{word-spacing:0.212480pt;}
.ws14{word-spacing:0.256000pt;}
.wsf{word-spacing:0.624000pt;}
.ws21{word-spacing:0.675841pt;}
.ws20{word-spacing:0.732161pt;}
.ws3e{word-spacing:0.743681pt;}
.ws17{word-spacing:1.295361pt;}
.ws15{word-spacing:2.590722pt;}
.ws18{word-spacing:4.505609pt;}
._1{margin-left:-1.178690pt;}
._0{width:1.114064pt;}
._4{width:2.635090pt;}
._5{width:3.653604pt;}
._3{width:4.966942pt;}
._2{width:6.474644pt;}
._7{width:7.917524pt;}
._6{width:9.632965pt;}
._11{width:10.732331pt;}
._a{width:11.832763pt;}
._12{width:12.751894pt;}
._9{width:14.324519pt;}
._8{width:15.351548pt;}
._c{width:16.584794pt;}
._d{width:18.086574pt;}
._f{width:19.246331pt;}
._16{width:20.318773pt;}
._17{width:21.243788pt;}
._1b{width:22.209459pt;}
._10{width:23.153111pt;}
._1a{width:24.668697pt;}
._e{width:25.932500pt;}
._19{width:27.020972pt;}
._1c{width:28.390372pt;}
._18{width:29.754962pt;}
._13{width:33.156239pt;}
._b{width:34.826806pt;}
._14{width:36.270294pt;}
._1d{width:37.765613pt;}
._15{width:39.691232pt;}
.fs7{font-size:32.000026pt;}
.fs6{font-size:42.880088pt;}
.fs2{font-size:48.000092pt;}
.fs0{font-size:53.120096pt;}
.fs5{font-size:56.320045pt;}
.fs1{font-size:64.000051pt;}
.fs3{font-size:74.880060pt;}
.fs4{font-size:85.120068pt;}
.y0{bottom:0.000000pt;}
.y1e0{bottom:2.560133pt;}
.y3e{bottom:3.840067pt;}
.ya4{bottom:3.840068pt;}
.y3b{bottom:4.320065pt;}
.y3a{bottom:18.240076pt;}
.y40{bottom:20.960069pt;}
.y5{bottom:26.400077pt;}
.ya5{bottom:65.600000pt;}
.y3f{bottom:65.760000pt;}
.y4{bottom:69.920000pt;}
.y41{bottom:72.640058pt;}
.ya6{bottom:72.800058pt;}
.y39{bottom:76.640000pt;}
.y3{bottom:79.200063pt;}
.y3c{bottom:79.520064pt;}
.y3d{bottom:80.320000pt;}
.ya3{bottom:81.440000pt;}
.y6{bottom:82.560066pt;}
.y2{bottom:97.920078pt;}
.y38{bottom:136.809176pt;}
.ydd{bottom:137.309043pt;}
.y114{bottom:137.425843pt;}
.ya2{bottom:138.870378pt;}
.y78{bottom:140.858779pt;}
.y12e{bottom:145.306516pt;}
.y165{bottom:145.435983pt;}
.y19c{bottom:146.069850pt;}
.y1e1{bottom:151.200121pt;}
.y37{bottom:152.972922pt;}
.ydc{bottom:152.993989pt;}
.y113{bottom:153.110789pt;}
.ya1{bottom:154.555324pt;}
.y77{bottom:156.543725pt;}
.y12d{bottom:160.991462pt;}
.y19b{bottom:161.116129pt;}
.y164{bottom:161.120929pt;}
.y1c8{bottom:163.680000pt;}
.ydb{bottom:168.834002pt;}
.y112{bottom:168.950802pt;}
.y36{bottom:168.967869pt;}
.ya0{bottom:170.395336pt;}
.y76{bottom:172.383738pt;}
.y163{bottom:176.704675pt;}
.y12c{bottom:176.831475pt;}
.y1d3{bottom:177.920142pt;}
.y1df{bottom:180.160144pt;}
.y1c9{bottom:180.480275pt;}
.y167{bottom:184.518814pt;}
.yda{bottom:184.518948pt;}
.y111{bottom:184.635748pt;}
.y35{bottom:184.962815pt;}
.y9f{bottom:186.080282pt;}
.y75{bottom:188.068684pt;}
.y1d2{bottom:191.680153pt;}
.y19a{bottom:192.233354pt;}
.y162{bottom:192.389621pt;}
.y12b{bottom:192.516421pt;}
.y1de{bottom:193.920155pt;}
.yd9{bottom:200.358960pt;}
.y110{bottom:200.475760pt;}
.y34{bottom:201.126561pt;}
.y9e{bottom:201.920295pt;}
.y74{bottom:203.908696pt;}
.y166{bottom:204.202563pt;}
.y1d1{bottom:205.760165pt;}
.y1dd{bottom:207.680166pt;}
.y199{bottom:207.918300pt;}
.y161{bottom:208.229633pt;}
.y12a{bottom:208.356433pt;}
.yd8{bottom:216.043906pt;}
.y10f{bottom:216.160706pt;}
.y33{bottom:217.121507pt;}
.y9d{bottom:217.256574pt;}
.y73{bottom:219.593642pt;}
.y1dc{bottom:221.440177pt;}
.y198{bottom:223.758312pt;}
.y160{bottom:223.915912pt;}
.y129{bottom:224.041379pt;}
.y1d0{bottom:231.200185pt;}
.yd7{bottom:231.883919pt;}
.y10e{bottom:232.000719pt;}
.y9c{bottom:232.941520pt;}
.y32{bottom:233.285253pt;}
.y72{bottom:235.433655pt;}
.y1db{bottom:235.516188pt;}
.y15f{bottom:239.755925pt;}
.y128{bottom:239.881392pt;}
.y197{bottom:243.442061pt;}
.y1cf{bottom:245.120196pt;}
.yd6{bottom:247.570198pt;}
.y9b{bottom:248.626466pt;}
.y31{bottom:249.280199pt;}
.y1da{bottom:249.436466pt;}
.y71{bottom:251.118601pt;}
.y10d{bottom:251.441934pt;}
.y15e{bottom:255.440871pt;}
.y127{bottom:255.566338pt;}
.y1ce{bottom:262.880210pt;}
.y1d9{bottom:263.200211pt;}
.y196{bottom:263.282077pt;}
.yd5{bottom:263.410211pt;}
.y9a{bottom:264.142745pt;}
.y30{bottom:265.276479pt;}
.y70{bottom:266.958614pt;}
.y10c{bottom:267.281947pt;}
.y15d{bottom:271.280884pt;}
.y126{bottom:271.406350pt;}
.y1cd{bottom:276.640221pt;}
.y195{bottom:278.967023pt;}
.yd4{bottom:279.095157pt;}
.y99{bottom:279.829024pt;}
.y1d8{bottom:280.960225pt;}
.y2f{bottom:281.440225pt;}
.y6f{bottom:282.643559pt;}
.y10b{bottom:282.966893pt;}
.y15c{bottom:286.965830pt;}
.y125{bottom:287.092630pt;}
.y1cc{bottom:294.392769pt;}
.y194{bottom:294.807036pt;}
.yd3{bottom:294.935169pt;}
.y98{bottom:295.513970pt;}
.y2e{bottom:296.800237pt;}
.y6e{bottom:298.483572pt;}
.y1d7{bottom:298.720239pt;}
.y10a{bottom:302.805709pt;}
.y15b{bottom:302.805842pt;}
.y124{bottom:302.932642pt;}
.y1cb{bottom:308.636514pt;}
.y2d{bottom:309.798781pt;}
.yd2{bottom:310.620115pt;}
.y97{bottom:311.198916pt;}
.y1d6{bottom:312.640250pt;}
.y6d{bottom:314.168518pt;}
.y193{bottom:314.490785pt;}
.y109{bottom:318.490655pt;}
.y15a{bottom:318.490788pt;}
.y123{bottom:318.617588pt;}
.y2c{bottom:325.793727pt;}
.y1d5{bottom:326.400261pt;}
.yd1{bottom:326.460128pt;}
.y96{bottom:326.715195pt;}
.y6c{bottom:330.008531pt;}
.y1ca{bottom:330.080264pt;}
.y192{bottom:334.329601pt;}
.y108{bottom:334.330667pt;}
.y159{bottom:334.330801pt;}
.y122{bottom:334.457601pt;}
.y1d4{bottom:340.160272pt;}
.y2b{bottom:341.787473pt;}
.yd0{bottom:342.145074pt;}
.y95{bottom:342.401474pt;}
.y6b{bottom:345.694810pt;}
.y191{bottom:350.014547pt;}
.y107{bottom:350.015613pt;}
.y158{bottom:350.015747pt;}
.y121{bottom:350.142547pt;}
.y2a{bottom:357.952420pt;}
.ycf{bottom:357.985086pt;}
.y94{bottom:358.086420pt;}
.y6a{bottom:361.534823pt;}
.y1c7{bottom:365.440292pt;}
.y190{bottom:365.854559pt;}
.y106{bottom:365.855626pt;}
.y157{bottom:365.855759pt;}
.y120{bottom:365.982559pt;}
.y93{bottom:373.602699pt;}
.yce{bottom:373.670032pt;}
.y29{bottom:374.116166pt;}
.y69{bottom:377.219768pt;}
.y1c6{bottom:377.920302pt;}
.y18f{bottom:381.539505pt;}
.y105{bottom:381.540572pt;}
.y156{bottom:381.540705pt;}
.y11f{bottom:381.667505pt;}
.y1c5{bottom:388.155244pt;}
.y92{bottom:389.287645pt;}
.ycd{bottom:389.510045pt;}
.y28{bottom:390.111112pt;}
.y68{bottom:393.059781pt;}
.y18e{bottom:397.379518pt;}
.y104{bottom:397.380585pt;}
.y155{bottom:397.380718pt;}
.y11e{bottom:397.507518pt;}
.y1c4{bottom:403.360323pt;}
.ycc{bottom:405.194991pt;}
.y27{bottom:406.104858pt;}
.y67{bottom:408.899794pt;}
.y91{bottom:408.971394pt;}
.y18d{bottom:413.064464pt;}
.y103{bottom:413.065530pt;}
.y154{bottom:413.065664pt;}
.y11d{bottom:413.192464pt;}
.y1c3{bottom:418.406601pt;}
.ycb{bottom:421.036203pt;}
.y26{bottom:422.268604pt;}
.y66{bottom:424.584740pt;}
.y90{bottom:424.811407pt;}
.y18c{bottom:428.904476pt;}
.y102{bottom:428.905543pt;}
.y153{bottom:428.905676pt;}
.y11c{bottom:429.032477pt;}
.y1c2{bottom:433.452880pt;}
.yca{bottom:436.721149pt;}
.y25{bottom:438.263551pt;}
.y65{bottom:440.425952pt;}
.y18b{bottom:444.589422pt;}
.y101{bottom:444.590489pt;}
.y152{bottom:444.590622pt;}
.y8f{bottom:444.650222pt;}
.y11b{bottom:444.717422pt;}
.y1c1{bottom:448.326625pt;}
.yc9{bottom:452.561162pt;}
.y24{bottom:454.427297pt;}
.y64{bottom:456.110898pt;}
.y8e{bottom:460.335168pt;}
.y18a{bottom:460.429435pt;}
.y100{bottom:460.431702pt;}
.y151{bottom:460.431835pt;}
.y11a{bottom:460.557435pt;}
.y1c0{bottom:463.200371pt;}
.yc8{bottom:468.401175pt;}
.y23{bottom:470.422243pt;}
.y63{bottom:471.950911pt;}
.y8d{bottom:476.175181pt;}
.y189{bottom:476.269448pt;}
.yff{bottom:476.271714pt;}
.y150{bottom:476.271848pt;}
.y119{bottom:476.397448pt;}
.y1bf{bottom:478.231049pt;}
.yc7{bottom:484.086121pt;}
.y22{bottom:486.417189pt;}
.y62{bottom:487.635857pt;}
.y8c{bottom:491.860127pt;}
.y188{bottom:491.954394pt;}
.yfe{bottom:491.956660pt;}
.y14f{bottom:491.956794pt;}
.y118{bottom:492.083727pt;}
.y1be{bottom:493.435328pt;}
.yc6{bottom:499.926133pt;}
.y21{bottom:502.580935pt;}
.y61{bottom:503.475869pt;}
.y8b{bottom:507.700139pt;}
.y187{bottom:507.794406pt;}
.yfd{bottom:507.796673pt;}
.y14e{bottom:507.796806pt;}
.y117{bottom:507.923740pt;}
.y1bd{bottom:508.309073pt;}
.y20{bottom:518.575882pt;}
.y60{bottom:519.160815pt;}
.yc5{bottom:519.609882pt;}
.y8a{bottom:523.385085pt;}
.y186{bottom:523.480685pt;}
.yfc{bottom:523.482952pt;}
.y14d{bottom:523.483085pt;}
.y1bc{bottom:523.514152pt;}
.y116{bottom:523.608686pt;}
.y1f{bottom:534.739628pt;}
.y5f{bottom:535.000828pt;}
.yc4{bottom:535.449895pt;}
.y1bb{bottom:538.560431pt;}
.y89{bottom:539.225098pt;}
.y185{bottom:539.320698pt;}
.yfb{bottom:539.322965pt;}
.y14c{bottom:539.323098pt;}
.y115{bottom:539.448698pt;}
.y5e{bottom:550.685774pt;}
.y1e{bottom:550.734574pt;}
.y1ba{bottom:553.434176pt;}
.y88{bottom:554.910044pt;}
.y184{bottom:555.005644pt;}
.yfa{bottom:555.007911pt;}
.y14b{bottom:555.008044pt;}
.yc3{bottom:555.133644pt;}
.y5d{bottom:566.525787pt;}
.y1d{bottom:566.729520pt;}
.y1b9{bottom:568.480455pt;}
.y87{bottom:570.750057pt;}
.y183{bottom:570.845657pt;}
.yf9{bottom:570.847923pt;}
.y14a{bottom:570.848057pt;}
.yc2{bottom:570.973657pt;}
.y5c{bottom:582.210732pt;}
.y1c{bottom:582.893266pt;}
.y1b8{bottom:583.355400pt;}
.y86{bottom:586.435002pt;}
.y182{bottom:586.530603pt;}
.yf8{bottom:586.532869pt;}
.y149{bottom:586.533003pt;}
.yc1{bottom:586.659936pt;}
.y5b{bottom:598.050745pt;}
.y1b7{bottom:598.560479pt;}
.y1b{bottom:598.888212pt;}
.y85{bottom:602.275015pt;}
.y181{bottom:602.370615pt;}
.yf7{bottom:602.372882pt;}
.y148{bottom:602.373015pt;}
.yc0{bottom:602.499949pt;}
.y1b6{bottom:613.606758pt;}
.y5a{bottom:613.735691pt;}
.y1a{bottom:615.051959pt;}
.y84{bottom:617.959961pt;}
.y180{bottom:618.055561pt;}
.yf6{bottom:618.057828pt;}
.y147{bottom:618.057961pt;}
.ybf{bottom:618.184895pt;}
.y1b5{bottom:628.480503pt;}
.y59{bottom:629.575704pt;}
.y19{bottom:631.046905pt;}
.y83{bottom:633.799974pt;}
.y17f{bottom:633.895574pt;}
.yf5{bottom:633.897840pt;}
.y146{bottom:633.897974pt;}
.ybe{bottom:634.024907pt;}
.y1b4{bottom:643.360515pt;}
.y58{bottom:645.261983pt;}
.y18{bottom:647.210651pt;}
.y82{bottom:649.484920pt;}
.y17e{bottom:649.580520pt;}
.yf4{bottom:649.582786pt;}
.y145{bottom:649.582920pt;}
.ybd{bottom:649.709853pt;}
.y1b3{bottom:658.400527pt;}
.y57{bottom:661.101996pt;}
.y17{bottom:663.205597pt;}
.y81{bottom:665.326132pt;}
.y17d{bottom:665.420532pt;}
.yf3{bottom:665.422799pt;}
.y144{bottom:665.422932pt;}
.ybc{bottom:665.549866pt;}
.y1b2{bottom:673.594272pt;}
.y56{bottom:676.786941pt;}
.y16{bottom:679.200543pt;}
.y80{bottom:681.011078pt;}
.y17c{bottom:681.105478pt;}
.yf2{bottom:681.107745pt;}
.y143{bottom:681.107878pt;}
.ybb{bottom:681.234812pt;}
.y1b1{bottom:688.468017pt;}
.y55{bottom:692.626954pt;}
.y7f{bottom:696.851091pt;}
.y17b{bottom:696.945491pt;}
.yf1{bottom:696.947758pt;}
.y142{bottom:696.947891pt;}
.yba{bottom:697.074824pt;}
.y15{bottom:702.400562pt;}
.y1b0{bottom:703.514296pt;}
.y54{bottom:708.311900pt;}
.y17a{bottom:712.630437pt;}
.yf0{bottom:712.632703pt;}
.y141{bottom:712.632837pt;}
.y7e{bottom:712.691103pt;}
.yb9{bottom:712.759770pt;}
.y1af{bottom:718.560575pt;}
.y53{bottom:724.151913pt;}
.y14{bottom:727.360582pt;}
.y7d{bottom:728.376049pt;}
.y179{bottom:728.470449pt;}
.yef{bottom:728.472716pt;}
.y140{bottom:728.472849pt;}
.yb8{bottom:728.599783pt;}
.y52{bottom:739.836859pt;}
.y1ae{bottom:741.753927pt;}
.y178{bottom:744.156729pt;}
.yee{bottom:744.157662pt;}
.y13f{bottom:744.157795pt;}
.y7c{bottom:744.216062pt;}
.yb7{bottom:744.284729pt;}
.y13{bottom:745.760597pt;}
.y51{bottom:755.676871pt;}
.y1ad{bottom:756.800605pt;}
.y7b{bottom:759.902341pt;}
.y177{bottom:759.996741pt;}
.yed{bottom:759.997675pt;}
.y13e{bottom:759.997808pt;}
.yb6{bottom:760.124741pt;}
.y50{bottom:771.361817pt;}
.y1ac{bottom:771.841817pt;}
.y12{bottom:774.240619pt;}
.y176{bottom:775.681687pt;}
.yec{bottom:775.683954pt;}
.y13d{bottom:775.684087pt;}
.y7a{bottom:775.742354pt;}
.yb5{bottom:775.809687pt;}
.y1ab{bottom:787.046896pt;}
.y11{bottom:787.676897pt;}
.y4f{bottom:791.200633pt;}
.y79{bottom:791.427300pt;}
.y175{bottom:791.521700pt;}
.yeb{bottom:791.523967pt;}
.y13c{bottom:791.524100pt;}
.yb4{bottom:791.649700pt;}
.y10{bottom:801.440641pt;}
.y1aa{bottom:801.920642pt;}
.y4e{bottom:806.720645pt;}
.y174{bottom:807.207979pt;}
.yea{bottom:807.208912pt;}
.y13b{bottom:807.209046pt;}
.yb3{bottom:807.334646pt;}
.y1a9{bottom:816.769987pt;}
.y4d{bottom:819.701189pt;}
.yf{bottom:822.080658pt;}
.y173{bottom:823.047992pt;}
.ye9{bottom:823.048925pt;}
.y13a{bottom:823.049058pt;}
.yb2{bottom:823.174659pt;}
.y1a8{bottom:831.815599pt;}
.y4c{bottom:835.696135pt;}
.y172{bottom:838.888004pt;}
.ye8{bottom:838.888938pt;}
.y139{bottom:838.889071pt;}
.yb1{bottom:839.014671pt;}
.y1a7{bottom:846.861877pt;}
.y4b{bottom:851.859881pt;}
.ye{bottom:852.168148pt;}
.y171{bottom:854.572950pt;}
.ye7{bottom:854.573884pt;}
.y138{bottom:854.574017pt;}
.yb0{bottom:854.700950pt;}
.y1a6{bottom:861.908156pt;}
.y4a{bottom:867.854828pt;}
.y170{bottom:870.412963pt;}
.ye6{bottom:870.413896pt;}
.y137{bottom:870.414030pt;}
.yaf{bottom:870.540963pt;}
.yd{bottom:876.640701pt;}
.y1a5{bottom:876.954435pt;}
.y49{bottom:883.849774pt;}
.y16f{bottom:886.097909pt;}
.ye5{bottom:886.098842pt;}
.y136{bottom:886.098976pt;}
.yae{bottom:886.225909pt;}
.y1a4{bottom:892.000714pt;}
.y48{bottom:900.013520pt;}
.y16e{bottom:901.937922pt;}
.ye4{bottom:901.938855pt;}
.y135{bottom:901.938988pt;}
.yad{bottom:902.065922pt;}
.y1a3{bottom:906.863392pt;}
.yc{bottom:910.082061pt;}
.y47{bottom:916.008466pt;}
.y16d{bottom:917.622867pt;}
.ye3{bottom:917.623801pt;}
.y134{bottom:917.623934pt;}
.yac{bottom:917.750868pt;}
.y1a2{bottom:921.908338pt;}
.yb{bottom:925.275674pt;}
.y46{bottom:932.172212pt;}
.y16c{bottom:933.462880pt;}
.ye2{bottom:933.463813pt;}
.y133{bottom:933.463947pt;}
.yab{bottom:933.590880pt;}
.y1a1{bottom:936.954616pt;}
.ya{bottom:940.640753pt;}
.y45{bottom:948.167159pt;}
.y16b{bottom:949.147826pt;}
.ye1{bottom:949.150093pt;}
.y132{bottom:949.150226pt;}
.yaa{bottom:949.275826pt;}
.y1a0{bottom:952.002095pt;}
.y9{bottom:957.282099pt;}
.y44{bottom:964.163438pt;}
.y16a{bottom:964.987839pt;}
.ye0{bottom:964.990105pt;}
.y131{bottom:964.990239pt;}
.ya9{bottom:965.115839pt;}
.y19f{bottom:967.042107pt;}
.y43{bottom:980.327184pt;}
.y169{bottom:980.672785pt;}
.ydf{bottom:980.675051pt;}
.y130{bottom:980.675185pt;}
.ya8{bottom:980.802118pt;}
.y8{bottom:981.595852pt;}
.y19e{bottom:982.082119pt;}
.y42{bottom:996.322130pt;}
.y168{bottom:996.512797pt;}
.yde{bottom:996.515064pt;}
.y12f{bottom:996.515197pt;}
.ya7{bottom:996.642131pt;}
.y7{bottom:996.802131pt;}
.y19d{bottom:997.122131pt;}
.y1{bottom:1072.322191pt;}
.h14{height:26.400000pt;}
.h22{height:28.359398pt;}
.h13{height:29.440000pt;}
.h12{height:29.773186pt;}
.h18{height:31.998752pt;}
.h15{height:32.000000pt;}
.h7{height:34.945379pt;}
.h2{height:36.883192pt;}
.h5{height:37.440000pt;}
.h8{height:38.672882pt;}
.h10{height:41.250033pt;}
.h24{height:41.976643pt;}
.hf{height:42.281331pt;}
.hd{height:42.539144pt;}
.h4{height:43.343785pt;}
.h3{height:44.437536pt;}
.h19{height:46.454146pt;}
.h6{height:46.593787pt;}
.hc{height:46.843787pt;}
.h9{height:47.076647pt;}
.h1d{height:47.077181pt;}
.h21{height:47.083581pt;}
.h1f{height:47.096914pt;}
.h1a{height:47.101647pt;}
.h1e{height:47.103314pt;}
.h20{height:47.113981pt;}
.h1b{height:47.145981pt;}
.h1c{height:47.199314pt;}
.h16{height:49.252539pt;}
.h11{height:49.610040pt;}
.h17{height:49.912540pt;}
.he{height:51.991917pt;}
.ha{height:54.807231pt;}
.hb{height:74.438497pt;}
.h23{height:191.360000pt;}
.h0{height:1122.559867pt;}
.h1{height:1122.666667pt;}
.w4{width:16.000000pt;}
.w6{width:16.160000pt;}
.w2{width:203.360000pt;}
.w5{width:207.680000pt;}
.w7{width:224.478720pt;}
.w3{width:270.080000pt;}
.w8{width:425.280000pt;}
.w0{width:793.759733pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:7.200240pt;}
.xd{left:9.600064pt;}
.x5{left:10.880428pt;}
.x16{left:13.120435pt;}
.xf{left:16.640432pt;}
.x1b{left:68.480000pt;}
.xc{left:70.720000pt;}
.x7{left:75.519914pt;}
.x1d{left:77.443195pt;}
.x9{left:94.400076pt;}
.x1c{left:96.320077pt;}
.x19{left:103.840070pt;}
.x11{left:122.722632pt;}
.xa{left:151.005561pt;}
.x1f{left:292.960000pt;}
.x1e{left:300.160240pt;}
.x2{left:388.802044pt;}
.xe{left:390.720000pt;}
.x14{left:396.802051pt;}
.x12{left:406.401405pt;}
.xb{left:412.322997pt;}
.x13{left:425.282754pt;}
.x8{left:444.800263pt;}
.x1a{left:509.280407pt;}
.x4{left:523.680000pt;}
.x15{left:531.040000pt;}
.x6{left:570.560456pt;}
.x10{left:572.000458pt;}
.x18{left:573.920459pt;}
.x17{left:580.160464pt;}
.x1{left:627.360502pt;}
.x3{left:694.082289pt;}
}




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