
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_6cb2bbb22cda4390d2652d92.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7a7f46315cfee703e0548941.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.139160;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_05f88a0af2eabc890fabaf11.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_7ed25bb62b53c3d0b4f543aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.139160;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_38128ebcf124d7bfbc25711a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_31729fc07f8c4e3e51577dde.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b1017ca9d951f9b337ebeb9b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls39{letter-spacing:-2.172000px;}
.ls38{letter-spacing:-1.890000px;}
.ls28{letter-spacing:-1.866000px;}
.ls2b{letter-spacing:-1.836000px;}
.ls2a{letter-spacing:-1.812000px;}
.ls34{letter-spacing:-1.692000px;}
.ls3b{letter-spacing:-1.686000px;}
.ls3f{letter-spacing:-1.626000px;}
.ls2d{letter-spacing:-1.620000px;}
.ls2e{letter-spacing:-1.602000px;}
.ls32{letter-spacing:-1.506000px;}
.lse{letter-spacing:-1.356000px;}
.ls36{letter-spacing:-1.332000px;}
.ls37{letter-spacing:-1.266000px;}
.ls3a{letter-spacing:-1.242000px;}
.lsd{letter-spacing:-1.086000px;}
.lsf{letter-spacing:-0.996000px;}
.ls47{letter-spacing:-0.966000px;}
.ls44{letter-spacing:-0.666000px;}
.ls48{letter-spacing:-0.606000px;}
.ls3e{letter-spacing:-0.576600px;}
.ls3d{letter-spacing:-0.546600px;}
.ls4e{letter-spacing:-0.513600px;}
.ls4d{letter-spacing:-0.399000px;}
.ls52{letter-spacing:-0.368400px;}
.ls35{letter-spacing:-0.322800px;}
.ls30{letter-spacing:-0.244200px;}
.ls16{letter-spacing:-0.243600px;}
.ls51{letter-spacing:-0.232800px;}
.ls12{letter-spacing:-0.186600px;}
.ls21{letter-spacing:-0.178800px;}
.ls14{letter-spacing:-0.160800px;}
.ls23{letter-spacing:-0.157800px;}
.ls19{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.135000px;}
.ls1b{letter-spacing:-0.125400px;}
.ls17{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.ls10{letter-spacing:-0.084600px;}
.ls46{letter-spacing:-0.060600px;}
.lsb{letter-spacing:-0.057000px;}
.ls29{letter-spacing:-0.049680px;}
.ls26{letter-spacing:-0.048960px;}
.ls27{letter-spacing:-0.037800px;}
.ls18{letter-spacing:-0.015000px;}
.ls1f{letter-spacing:-0.014760px;}
.ls22{letter-spacing:-0.013320px;}
.ls15{letter-spacing:-0.011400px;}
.ls25{letter-spacing:-0.011160px;}
.ls2f{letter-spacing:-0.009000px;}
.ls45{letter-spacing:-0.008280px;}
.ls7{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.019440px;}
.ls1c{letter-spacing:0.045360px;}
.ls1d{letter-spacing:0.048960px;}
.ls54{letter-spacing:0.060480px;}
.ls56{letter-spacing:0.060600px;}
.ls43{letter-spacing:0.061200px;}
.ls33{letter-spacing:0.068400px;}
.ls40{letter-spacing:0.069600px;}
.ls3{letter-spacing:0.074160px;}
.lsc{letter-spacing:0.083400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls2c{letter-spacing:0.098400px;}
.ls4a{letter-spacing:0.105600px;}
.ls3c{letter-spacing:0.113400px;}
.ls4b{letter-spacing:0.115800px;}
.ls13{letter-spacing:0.116400px;}
.ls31{letter-spacing:0.120240px;}
.ls4{letter-spacing:0.143400px;}
.ls8{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls1e{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.181200px;}
.ls1a{letter-spacing:0.199200px;}
.ls20{letter-spacing:0.202200px;}
.ls50{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:2.973600px;}
.ls4c{letter-spacing:3.333600px;}
.ls55{letter-spacing:3.693600px;}
.ls4f{letter-spacing:8.733600px;}
.ls6{letter-spacing:12.333600px;}
.ls41{letter-spacing:16.293600px;}
.ls42{letter-spacing:17.373600px;}
.ls53{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3e{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.396600px;}
.ws3{word-spacing:-14.577000px;}
.wsf{word-spacing:-14.493600px;}
.ws16{word-spacing:-14.372400px;}
.ws18{word-spacing:-13.428600px;}
.ws12{word-spacing:-13.425600px;}
.ws1c{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.369800px;}
.ws9{word-spacing:-13.342800px;}
.ws3d{word-spacing:-13.342200px;}
.ws32{word-spacing:-13.339800px;}
.ws3c{word-spacing:-13.332000px;}
.ws28{word-spacing:-13.324800px;}
.ws39{word-spacing:-13.296000px;}
.ws2a{word-spacing:-13.294800px;}
.ws17{word-spacing:-13.275360px;}
.ws6{word-spacing:-13.226400px;}
.ws37{word-spacing:-13.218120px;}
.ws26{word-spacing:-13.217400px;}
.ws1d{word-spacing:-13.215240px;}
.wsb{word-spacing:-13.215000px;}
.ws1a{word-spacing:-13.213080px;}
.ws15{word-spacing:-13.211640px;}
.ws10{word-spacing:-13.211400px;}
.ws1f{word-spacing:-13.188600px;}
.ws1e{word-spacing:-13.177440px;}
.ws21{word-spacing:-13.176720px;}
.ws38{word-spacing:-13.165800px;}
.ws13{word-spacing:-13.101000px;}
.ws11{word-spacing:-13.072800px;}
.ws1b{word-spacing:-13.068600px;}
.wsa{word-spacing:-13.065600px;}
.ws19{word-spacing:-13.047600px;}
.ws8{word-spacing:-13.039800px;}
.ws41{word-spacing:-12.993600px;}
.wsd{word-spacing:-12.982800px;}
.ws27{word-spacing:-12.982200px;}
.ws42{word-spacing:-12.858000px;}
.ws3f{word-spacing:-12.827400px;}
.ws40{word-spacing:-12.712800px;}
.ws33{word-spacing:-12.679800px;}
.ws34{word-spacing:-12.649800px;}
.ws3b{word-spacing:-12.620400px;}
.ws36{word-spacing:-12.560400px;}
.ws3a{word-spacing:-12.260400px;}
.ws30{word-spacing:-11.984400px;}
.ws2d{word-spacing:-11.960400px;}
.ws2c{word-spacing:-11.894400px;}
.ws29{word-spacing:-11.720400px;}
.ws25{word-spacing:-11.624400px;}
.ws24{word-spacing:-11.606400px;}
.ws35{word-spacing:-11.600400px;}
.ws31{word-spacing:-11.540400px;}
.ws2b{word-spacing:-11.534400px;}
.ws22{word-spacing:-11.414400px;}
.ws23{word-spacing:-11.390400px;}
.ws20{word-spacing:-11.360400px;}
.ws2e{word-spacing:-11.336400px;}
.ws2f{word-spacing:-11.054400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws4{word-spacing:-9.266400px;}
.ws5{word-spacing:-8.553600px;}
.ws14{word-spacing:0.000000px;}
.wse{word-spacing:4.304880px;}
._7a{margin-left:-17.899441px;}
._2{margin-left:-7.551960px;}
._18{margin-left:-6.250560px;}
._f{margin-left:-4.956840px;}
._3{margin-left:-3.406080px;}
._0{margin-left:-1.860000px;}
._1{width:1.110000px;}
._a{width:2.920440px;}
._b{width:4.410360px;}
._c{width:6.192600px;}
._10{width:7.875600px;}
._11{width:8.898000px;}
._4{width:10.406760px;}
._e{width:12.199441px;}
._d{width:14.329800px;}
._7{width:15.631200px;}
._5{width:16.713600px;}
._16{width:17.855400px;}
._12{width:18.920280px;}
._19{width:20.854200px;}
._13{width:22.388041px;}
._7b{width:23.563320px;}
._15{width:25.399440px;}
._14{width:26.784480px;}
._68{width:27.971640px;}
._1e{width:29.046960px;}
._8{width:30.240600px;}
._9{width:31.558799px;}
._3b{width:33.306480px;}
._17{width:34.374007px;}
._6{width:35.588998px;}
._6a{width:37.685520px;}
._3a{width:39.859560px;}
._1f{width:41.482800px;}
._76{width:42.827040px;}
._44{width:44.609040px;}
._5b{width:45.931680px;}
._31{width:47.675160px;}
._4a{width:48.817440px;}
._61{width:50.019840px;}
._21{width:51.703200px;}
._5d{width:54.528840px;}
._2b{width:55.550880px;}
._2d{width:57.775320px;}
._27{width:59.639040px;}
._72{width:60.841440px;}
._30{width:62.625960px;}
._65{width:63.967680px;}
._29{width:64.989720px;}
._5e{width:66.612960px;}
._4c{width:67.815360px;}
._4f{width:68.945760px;}
._41{width:70.580880px;}
._43{width:71.635200px;}
._20{width:72.685080px;}
._28{width:74.248200px;}
._47{width:75.811320px;}
._66{width:77.073840px;}
._6d{width:78.156000px;}
._3d{width:80.712360px;}
._45{width:84.468600px;}
._64{width:87.414480px;}
._59{width:88.677000px;}
._50{width:90.165600px;}
._56{width:92.103840px;}
._4e{width:93.306240px;}
._60{width:96.011640px;}
._1d{width:98.717040px;}
._6e{width:100.881360px;}
._25{width:102.023640px;}
._3c{width:104.238840px;}
._38{width:105.510600px;}
._24{width:107.210280px;}
._39{width:111.342240px;}
._46{width:112.544640px;}
._42{width:114.769080px;}
._4d{width:118.984080px;}
._62{width:119.999520px;}
._58{width:122.223960px;}
._35{width:123.426360px;}
._48{width:125.350200px;}
._79{width:126.797400px;}
._51{width:129.438360px;}
._54{width:130.520520px;}
._49{width:131.871240px;}
._67{width:133.706880px;}
._40{width:135.270000px;}
._3e{width:137.915280px;}
._6f{width:141.161760px;}
._5c{width:143.446320px;}
._71{width:146.752920px;}
._34{width:148.255920px;}
._5f{width:149.458320px;}
._1b{width:150.619680px;}
._22{width:152.524440px;}
._77{width:154.267920px;}
._2c{width:156.492360px;}
._57{width:158.315040px;}
._78{width:160.400160px;}
._5a{width:161.482320px;}
._2e{width:163.586520px;}
._70{width:169.057440px;}
._2f{width:170.921160px;}
._6c{width:174.705000px;}
._37{width:176.752800px;}
._1c{width:181.983240px;}
._2a{width:186.191640px;}
._75{width:187.213680px;}
._73{width:188.776800px;}
._23{width:191.722680px;}
._55{width:194.187600px;}
._4b{width:199.658520px;}
._3f{width:202.773600px;}
._1a{width:209.097360px;}
._52{width:213.546240px;}
._26{width:215.229600px;}
._32{width:220.880880px;}
._74{width:223.045200px;}
._63{width:232.784640px;}
._33{width:239.157360px;}
._53{width:249.558120px;}
._36{width:285.570000px;}
._6b{width:311.601960px;}
._69{width:351.341280px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yb7{bottom:3.420000px;}
.y61{bottom:7.830000px;}
.y6c{bottom:7.920000px;}
.y9d{bottom:12.330000px;}
.y86{bottom:12.420000px;}
.y8f{bottom:20.970000px;}
.y9a{bottom:25.380000px;}
.y7b{bottom:25.470000px;}
.y60{bottom:25.500000px;}
.y99{bottom:29.880000px;}
.y6b{bottom:29.970000px;}
.y93{bottom:30.000000px;}
.y9f{bottom:34.470000px;}
.ybe{bottom:38.520000px;}
.y5e{bottom:38.550000px;}
.yb6{bottom:38.610000px;}
.y8e{bottom:43.020000px;}
.y5f{bottom:43.050000px;}
.ya3{bottom:43.110000px;}
.y7a{bottom:47.520000px;}
.y92{bottom:47.550000px;}
.y6a{bottom:47.610000px;}
.y85{bottom:47.640000px;}
.yac{bottom:52.050000px;}
.y70{bottom:52.110000px;}
.yc1{bottom:56.070000px;}
.yb5{bottom:56.160000px;}
.yb3{bottom:60.570000px;}
.y5d{bottom:60.600000px;}
.y8b{bottom:60.660000px;}
.y79{bottom:65.070000px;}
.yab{bottom:65.100000px;}
.y69{bottom:65.160000px;}
.y84{bottom:65.190000px;}
.y7e{bottom:69.570000px;}
.yaa{bottom:69.600000px;}
.y6f{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.yc0{bottom:73.710000px;}
.y2a{bottom:74.190000px;}
.y8a{bottom:78.210000px;}
.y68{bottom:82.710000px;}
.y83{bottom:82.740000px;}
.y6e{bottom:87.210000px;}
.ya9{bottom:87.240000px;}
.y89{bottom:95.760000px;}
.ybc{bottom:95.790000px;}
.y96{bottom:95.850000px;}
.y78{bottom:100.260000px;}
.ybd{bottom:100.290000px;}
.y67{bottom:100.350000px;}
.y82{bottom:100.380000px;}
.y1{bottom:101.640000px;}
.y7d{bottom:104.760000px;}
.ya8{bottom:104.790000px;}
.y6d{bottom:104.850000px;}
.y9b{bottom:113.310000px;}
.ybb{bottom:113.340000px;}
.y8d{bottom:113.400000px;}
.y8c{bottom:114.510000px;}
.ya0{bottom:117.390000px;}
.y98{bottom:117.810000px;}
.yba{bottom:117.840000px;}
.y77{bottom:117.900000px;}
.y81{bottom:117.930000px;}
.y116{bottom:118.200000px;}
.yc6{bottom:121.890000px;}
.y66{bottom:122.400000px;}
.ya7{bottom:122.430000px;}
.y1a8{bottom:124.500000px;}
.y28{bottom:128.820000px;}
.ybf{bottom:130.950000px;}
.ya2{bottom:131.040000px;}
.y76{bottom:135.450000px;}
.y80{bottom:135.480000px;}
.ya1{bottom:135.540000px;}
.y115{bottom:135.840000px;}
.y59{bottom:138.270000px;}
.y7c{bottom:139.950000px;}
.ya6{bottom:139.980000px;}
.y65{bottom:140.040000px;}
.y1a7{bottom:142.050000px;}
.y17c{bottom:145.650000px;}
.y27{bottom:146.370000px;}
.y13e{bottom:149.610000px;}
.yee{bottom:150.690000px;}
.y75{bottom:153.000000px;}
.y88{bottom:153.090000px;}
.yc7{bottom:153.120000px;}
.y73{bottom:157.500000px;}
.y64{bottom:157.590000px;}
.y17b{bottom:163.200000px;}
.y157{bottom:166.530000px;}
.y13d{bottom:167.250000px;}
.yed{bottom:168.330000px;}
.y1a6{bottom:168.600000px;}
.y74{bottom:170.640000px;}
.y114{bottom:171.390000px;}
.y58{bottom:173.910000px;}
.y63{bottom:175.140000px;}
.y17a{bottom:180.840000px;}
.y26{bottom:182.010000px;}
.y156{bottom:184.080000px;}
.y13c{bottom:184.800000px;}
.yec{bottom:185.880000px;}
.y1a5{bottom:186.240000px;}
.yaf{bottom:188.190000px;}
.y113{bottom:188.940000px;}
.y72{bottom:192.690000px;}
.y179{bottom:198.390000px;}
.y25{bottom:199.560000px;}
.y155{bottom:201.720000px;}
.y13b{bottom:202.440000px;}
.yeb{bottom:203.430000px;}
.yae{bottom:205.740000px;}
.y57{bottom:209.460000px;}
.y1a4{bottom:212.790000px;}
.yb4{bottom:215.130000px;}
.y178{bottom:215.940000px;}
.y24{bottom:217.200000px;}
.y13a{bottom:219.990000px;}
.yea{bottom:221.070000px;}
.y112{bottom:224.580000px;}
.y1a3{bottom:230.430000px;}
.y23{bottom:234.750000px;}
.y154{bottom:237.270000px;}
.ye9{bottom:238.620000px;}
.y111{bottom:242.130000px;}
.y177{bottom:242.580000px;}
.y56{bottom:245.100000px;}
.y87{bottom:247.350000px;}
.y22{bottom:252.300000px;}
.y153{bottom:254.910000px;}
.y139{bottom:255.540000px;}
.y1a2{bottom:256.980000px;}
.y55{bottom:262.650000px;}
.ye8{bottom:265.260000px;}
.y110{bottom:268.770000px;}
.y21{bottom:269.940000px;}
.y152{bottom:272.460000px;}
.y138{bottom:273.180000px;}
.y1a1{bottom:274.530000px;}
.yc5{bottom:276.870000px;}
.y176{bottom:278.130000px;}
.y54{bottom:280.200000px;}
.y9e{bottom:289.920000px;}
.y137{bottom:290.730000px;}
.y175{bottom:295.770000px;}
.y53{bottom:297.840000px;}
.ye7{bottom:300.810000px;}
.y1a0{bottom:301.170000px;}
.y10f{bottom:304.320000px;}
.y20{bottom:305.490000px;}
.y151{bottom:308.010000px;}
.y136{bottom:308.370000px;}
.y174{bottom:313.320000px;}
.ye6{bottom:318.360000px;}
.y19f{bottom:318.720000px;}
.y1f{bottom:323.130000px;}
.y150{bottom:325.650000px;}
.y135{bottom:325.920000px;}
.y173{bottom:330.870000px;}
.y52{bottom:333.390000px;}
.ye5{bottom:336.000000px;}
.y10e{bottom:339.870000px;}
.y1e{bottom:340.680000px;}
.y14f{bottom:343.200000px;}
.y134{bottom:343.470000px;}
.y19e{bottom:345.360000px;}
.y172{bottom:348.510000px;}
.y51{bottom:350.940000px;}
.yb2{bottom:352.470000px;}
.ye4{bottom:353.550000px;}
.y1d{bottom:358.230000px;}
.y133{bottom:361.110000px;}
.y19d{bottom:362.910000px;}
.y50{bottom:368.580000px;}
.y171{bottom:375.060000px;}
.y10d{bottom:375.510000px;}
.y1c{bottom:375.870000px;}
.y132{bottom:378.660000px;}
.y14e{bottom:378.750000px;}
.y19c{bottom:380.460000px;}
.y4f{bottom:386.130000px;}
.ye3{bottom:389.190000px;}
.y10c{bottom:393.060000px;}
.y1b{bottom:393.420000px;}
.y14d{bottom:396.390000px;}
.y4e{bottom:403.770000px;}
.ye2{bottom:406.740000px;}
.y19b{bottom:407.370000px;}
.y170{bottom:410.700000px;}
.y1a{bottom:411.060000px;}
.y131{bottom:414.300000px;}
.y4d{bottom:421.320000px;}
.y16f{bottom:428.250000px;}
.y19{bottom:428.610000px;}
.y10b{bottom:428.700000px;}
.y14c{bottom:431.940000px;}
.y7f{bottom:437.430000px;}
.y4c{bottom:438.870000px;}
.ye1{bottom:442.290000px;}
.y16e{bottom:445.800000px;}
.y10a{bottom:446.250000px;}
.yc4{bottom:449.400000px;}
.y14b{bottom:449.580000px;}
.y130{bottom:449.850000px;}
.y18{bottom:455.520000px;}
.y19a{bottom:455.700000px;}
.ye0{bottom:459.930000px;}
.y16d{bottom:463.440000px;}
.y109{bottom:463.800000px;}
.y12f{bottom:467.400000px;}
.y199{bottom:473.280000px;}
.y4b{bottom:474.540000px;}
.y14a{bottom:476.160000px;}
.ydf{bottom:477.510000px;}
.y16c{bottom:481.020000px;}
.y9c{bottom:484.620000px;}
.y12e{bottom:485.070000px;}
.y108{bottom:490.470000px;}
.y198{bottom:490.830000px;}
.y4a{bottom:492.090000px;}
.yc3{bottom:494.340000px;}
.yde{bottom:495.150000px;}
.y17{bottom:504.150000px;}
.yb1{bottom:507.390000px;}
.y16b{bottom:507.660000px;}
.y49{bottom:509.730000px;}
.y149{bottom:511.710000px;}
.ydd{bottom:512.700000px;}
.y12d{bottom:520.620000px;}
.y107{bottom:526.020000px;}
.y197{bottom:526.470000px;}
.y48{bottom:527.280000px;}
.y148{bottom:529.350000px;}
.ydc{bottom:530.250000px;}
.y12c{bottom:538.260000px;}
.y16{bottom:541.140000px;}
.y16a{bottom:543.570000px;}
.y106{bottom:543.660000px;}
.y147{bottom:546.900000px;}
.ydb{bottom:547.890000px;}
.y47{bottom:553.830000px;}
.y12b{bottom:555.810000px;}
.y15{bottom:558.780000px;}
.y196{bottom:562.020000px;}
.y146{bottom:564.540000px;}
.yda{bottom:565.440000px;}
.y12a{bottom:573.360000px;}
.yc2{bottom:574.440000px;}
.y14{bottom:576.330000px;}
.y105{bottom:579.210000px;}
.y195{bottom:579.660000px;}
.y145{bottom:582.090000px;}
.yd9{bottom:583.080000px;}
.y46{bottom:589.470000px;}
.y169{bottom:591.810000px;}
.y71{bottom:592.440000px;}
.y13{bottom:593.880000px;}
.y104{bottom:596.760000px;}
.y194{bottom:597.210000px;}
.yd8{bottom:600.630000px;}
.y45{bottom:607.020000px;}
.y129{bottom:609.000000px;}
.y168{bottom:609.360000px;}
.y12{bottom:611.520000px;}
.y103{bottom:614.400000px;}
.y193{bottom:614.760000px;}
.y144{bottom:617.640000px;}
.yd7{bottom:618.180000px;}
.y97{bottom:621.960000px;}
.y44{bottom:624.660000px;}
.y128{bottom:626.550000px;}
.y11{bottom:629.070000px;}
.y102{bottom:631.950000px;}
.y192{bottom:632.400000px;}
.y143{bottom:635.280000px;}
.y43{bottom:642.210000px;}
.yb0{bottom:644.730000px;}
.yd6{bottom:644.820000px;}
.y167{bottom:645.000000px;}
.y10{bottom:646.710000px;}
.y142{bottom:652.830000px;}
.y127{bottom:653.190000px;}
.y42{bottom:659.760000px;}
.y166{bottom:662.550000px;}
.yf{bottom:664.260000px;}
.y101{bottom:667.590000px;}
.y191{bottom:667.950000px;}
.y141{bottom:670.470000px;}
.y41{bottom:677.400000px;}
.y165{bottom:680.190000px;}
.yd5{bottom:680.370000px;}
.ye{bottom:681.810000px;}
.y100{bottom:685.140000px;}
.y190{bottom:685.590000px;}
.y126{bottom:688.740000px;}
.y40{bottom:694.950000px;}
.yd4{bottom:698.010000px;}
.yd{bottom:699.450000px;}
.y18f{bottom:703.140000px;}
.y140{bottom:706.020000px;}
.y125{bottom:706.290000px;}
.yff{bottom:711.690000px;}
.y3f{bottom:712.590000px;}
.yd3{bottom:715.560000px;}
.y164{bottom:715.740000px;}
.yc{bottom:717.000000px;}
.y124{bottom:723.930000px;}
.y3e{bottom:730.140000px;}
.yd2{bottom:733.110000px;}
.y163{bottom:733.290000px;}
.yb{bottom:734.640000px;}
.y13f{bottom:738.240000px;}
.y18e{bottom:738.690000px;}
.y123{bottom:741.480000px;}
.yad{bottom:746.970000px;}
.yfe{bottom:747.600000px;}
.y3d{bottom:747.690000px;}
.yd1{bottom:750.750000px;}
.y162{bottom:750.930000px;}
.y18d{bottom:756.330000px;}
.ya{bottom:761.550000px;}
.y122{bottom:768.030000px;}
.yd0{bottom:768.300000px;}
.y18c{bottom:773.880000px;}
.y3c{bottom:774.330000px;}
.y95{bottom:776.850000px;}
.ycf{bottom:785.850000px;}
.y161{bottom:786.480000px;}
.y18b{bottom:791.520000px;}
.yfd{bottom:795.930000px;}
.yce{bottom:803.490000px;}
.y121{bottom:803.670000px;}
.y160{bottom:804.030000px;}
.y62{bottom:804.570000px;}
.y9{bottom:809.790000px;}
.y3b{bottom:810.240000px;}
.yfc{bottom:813.480000px;}
.ycd{bottom:821.040000px;}
.y120{bottom:821.220000px;}
.y18a{bottom:827.070000px;}
.yfb{bottom:831.030000px;}
.ycc{bottom:838.680000px;}
.y11f{bottom:838.860000px;}
.y15f{bottom:839.670000px;}
.y189{bottom:844.620000px;}
.y8{bottom:845.610000px;}
.yfa{bottom:848.670000px;}
.ycb{bottom:856.230000px;}
.y15e{bottom:857.220000px;}
.y3a{bottom:858.480000px;}
.y188{bottom:862.260000px;}
.yf9{bottom:866.220000px;}
.y11e{bottom:874.410000px;}
.y39{bottom:876.030000px;}
.y187{bottom:879.810000px;}
.y7{bottom:881.610000px;}
.yca{bottom:882.780000px;}
.yf8{bottom:883.860000px;}
.y11d{bottom:891.960000px;}
.y38{bottom:893.670000px;}
.yf7{bottom:901.410000px;}
.y186{bottom:906.720000px;}
.y37{bottom:911.220000px;}
.y11c{bottom:918.600000px;}
.yc9{bottom:918.690000px;}
.y15d{bottom:919.410000px;}
.yb9{bottom:919.500000px;}
.y6{bottom:921.390000px;}
.yf6{bottom:936.960000px;}
.y5{bottom:939.390000px;}
.y36{bottom:946.860000px;}
.y94{bottom:949.380000px;}
.y11b{bottom:954.150000px;}
.y15c{bottom:954.600000px;}
.y185{bottom:954.960000px;}
.yf5{bottom:963.600000px;}
.y35{bottom:964.410000px;}
.yc8{bottom:967.020000px;}
.y4{bottom:971.700000px;}
.y11a{bottom:971.790000px;}
.y15b{bottom:972.150000px;}
.ya5{bottom:972.240000px;}
.y184{bottom:972.600000px;}
.y34{bottom:981.960000px;}
.y183{bottom:990.150000px;}
.y91{bottom:994.290000px;}
.yf4{bottom:999.150000px;}
.y5c{bottom:999.240000px;}
.y33{bottom:999.600000px;}
.y119{bottom:1007.340000px;}
.y15a{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.yf3{bottom:1016.820000px;}
.y32{bottom:1017.180000px;}
.y118{bottom:1024.920000px;}
.y159{bottom:1025.370000px;}
.y182{bottom:1025.820000px;}
.yf2{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.y158{bottom:1042.920000px;}
.y181{bottom:1043.370000px;}
.yf1{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.y117{bottom:1060.560000px;}
.y180{bottom:1060.920000px;}
.yf0{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.yb8{bottom:1074.420000px;}
.y17f{bottom:1078.560000px;}
.yef{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y17e{bottom:1096.110000px;}
.y5b{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y17d{bottom:1113.750000px;}
.y90{bottom:1114.110000px;}
.y2c{bottom:1122.750000px;}
.y5a{bottom:1127.610000px;}
.ya4{bottom:1131.660000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h19{height:22.140000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h12{height:39.690000px;}
.h3{height:41.440430px;}
.h14{height:44.190000px;}
.h21{height:44.220000px;}
.hc{height:50.902383px;}
.h7{height:55.364414px;}
.h8{height:55.779258px;}
.h5{height:60.668789px;}
.h24{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:77.244961px;}
.hb{height:79.320000px;}
.h1f{height:79.380000px;}
.h1e{height:96.930000px;}
.h1c{height:101.430000px;}
.h13{height:119.100000px;}
.h11{height:132.120000px;}
.h17{height:136.530000px;}
.h1d{height:136.620000px;}
.h16{height:154.170000px;}
.hf{height:154.200000px;}
.h22{height:154.260000px;}
.h1a{height:158.700000px;}
.h20{height:171.720000px;}
.h15{height:171.810000px;}
.h23{height:171.840000px;}
.h10{height:189.360000px;}
.hd{height:193.860000px;}
.h18{height:193.890000px;}
.he{height:211.410000px;}
.h1b{height:224.460000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:79.560000px;}
.wa{width:85.320000px;}
.wb{width:92.520000px;}
.w5{width:94.410000px;}
.w4{width:97.500000px;}
.wc{width:104.760000px;}
.w6{width:104.940000px;}
.w8{width:106.470000px;}
.we{width:107.460000px;}
.wd{width:108.840000px;}
.w7{width:112.530000px;}
.wf{width:154.800000px;}
.w9{width:155.790000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x11{left:111.239987px;}
.x5{left:149.040000px;}
.xb{left:154.800000px;}
.x2{left:201.539987px;}
.x6{left:247.350000px;}
.xc{left:253.020000px;}
.x10{left:310.169987px;}
.x7{left:342.480000px;}
.xd{left:346.350000px;}
.x8{left:448.140000px;}
.xe{left:451.830000px;}
.x9{left:561.480000px;}
.xf{left:624.389987px;}
.xa{left:668.670000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls39{letter-spacing:-1.930667pt;}
.ls38{letter-spacing:-1.680000pt;}
.ls28{letter-spacing:-1.658667pt;}
.ls2b{letter-spacing:-1.632000pt;}
.ls2a{letter-spacing:-1.610667pt;}
.ls34{letter-spacing:-1.504000pt;}
.ls3b{letter-spacing:-1.498667pt;}
.ls3f{letter-spacing:-1.445333pt;}
.ls2d{letter-spacing:-1.440000pt;}
.ls2e{letter-spacing:-1.424000pt;}
.ls32{letter-spacing:-1.338667pt;}
.lse{letter-spacing:-1.205333pt;}
.ls36{letter-spacing:-1.184000pt;}
.ls37{letter-spacing:-1.125333pt;}
.ls3a{letter-spacing:-1.104000pt;}
.lsd{letter-spacing:-0.965333pt;}
.lsf{letter-spacing:-0.885333pt;}
.ls47{letter-spacing:-0.858667pt;}
.ls44{letter-spacing:-0.592000pt;}
.ls48{letter-spacing:-0.538667pt;}
.ls3e{letter-spacing:-0.512533pt;}
.ls3d{letter-spacing:-0.485867pt;}
.ls4e{letter-spacing:-0.456533pt;}
.ls4d{letter-spacing:-0.354667pt;}
.ls52{letter-spacing:-0.327467pt;}
.ls35{letter-spacing:-0.286933pt;}
.ls30{letter-spacing:-0.217067pt;}
.ls16{letter-spacing:-0.216533pt;}
.ls51{letter-spacing:-0.206933pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls21{letter-spacing:-0.158933pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls23{letter-spacing:-0.140267pt;}
.ls19{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls1b{letter-spacing:-0.111467pt;}
.ls17{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.ls10{letter-spacing:-0.075200pt;}
.ls46{letter-spacing:-0.053867pt;}
.lsb{letter-spacing:-0.050667pt;}
.ls29{letter-spacing:-0.044160pt;}
.ls26{letter-spacing:-0.043520pt;}
.ls27{letter-spacing:-0.033600pt;}
.ls18{letter-spacing:-0.013333pt;}
.ls1f{letter-spacing:-0.013120pt;}
.ls22{letter-spacing:-0.011840pt;}
.ls15{letter-spacing:-0.010133pt;}
.ls25{letter-spacing:-0.009920pt;}
.ls2f{letter-spacing:-0.008000pt;}
.ls45{letter-spacing:-0.007360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.017280pt;}
.ls1c{letter-spacing:0.040320pt;}
.ls1d{letter-spacing:0.043520pt;}
.ls54{letter-spacing:0.053760pt;}
.ls56{letter-spacing:0.053867pt;}
.ls43{letter-spacing:0.054400pt;}
.ls33{letter-spacing:0.060800pt;}
.ls40{letter-spacing:0.061867pt;}
.ls3{letter-spacing:0.065920pt;}
.lsc{letter-spacing:0.074133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls2c{letter-spacing:0.087467pt;}
.ls4a{letter-spacing:0.093867pt;}
.ls3c{letter-spacing:0.100800pt;}
.ls4b{letter-spacing:0.102933pt;}
.ls13{letter-spacing:0.103467pt;}
.ls31{letter-spacing:0.106880pt;}
.ls4{letter-spacing:0.127467pt;}
.ls8{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.161067pt;}
.ls1a{letter-spacing:0.177067pt;}
.ls20{letter-spacing:0.179733pt;}
.ls50{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:2.643200pt;}
.ls4c{letter-spacing:2.963200pt;}
.ls55{letter-spacing:3.283200pt;}
.ls4f{letter-spacing:7.763200pt;}
.ls6{letter-spacing:10.963200pt;}
.ls41{letter-spacing:14.483200pt;}
.ls42{letter-spacing:15.443200pt;}
.ls53{letter-spacing:71.863680pt;}
.ws3e{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.352533pt;}
.ws3{word-spacing:-12.957333pt;}
.wsf{word-spacing:-12.883200pt;}
.ws16{word-spacing:-12.775467pt;}
.ws18{word-spacing:-11.936533pt;}
.ws12{word-spacing:-11.933867pt;}
.ws1c{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.884267pt;}
.ws9{word-spacing:-11.860267pt;}
.ws3d{word-spacing:-11.859733pt;}
.ws32{word-spacing:-11.857600pt;}
.ws3c{word-spacing:-11.850667pt;}
.ws28{word-spacing:-11.844267pt;}
.ws39{word-spacing:-11.818667pt;}
.ws2a{word-spacing:-11.817600pt;}
.ws17{word-spacing:-11.800320pt;}
.ws6{word-spacing:-11.756800pt;}
.ws37{word-spacing:-11.749440pt;}
.ws26{word-spacing:-11.748800pt;}
.ws1d{word-spacing:-11.746880pt;}
.wsb{word-spacing:-11.746667pt;}
.ws1a{word-spacing:-11.744960pt;}
.ws15{word-spacing:-11.743680pt;}
.ws10{word-spacing:-11.743467pt;}
.ws1f{word-spacing:-11.723200pt;}
.ws1e{word-spacing:-11.713280pt;}
.ws21{word-spacing:-11.712640pt;}
.ws38{word-spacing:-11.702933pt;}
.ws13{word-spacing:-11.645333pt;}
.ws11{word-spacing:-11.620267pt;}
.ws1b{word-spacing:-11.616533pt;}
.wsa{word-spacing:-11.613867pt;}
.ws19{word-spacing:-11.597867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws41{word-spacing:-11.549867pt;}
.wsd{word-spacing:-11.540267pt;}
.ws27{word-spacing:-11.539733pt;}
.ws42{word-spacing:-11.429333pt;}
.ws3f{word-spacing:-11.402133pt;}
.ws40{word-spacing:-11.300267pt;}
.ws33{word-spacing:-11.270933pt;}
.ws34{word-spacing:-11.244267pt;}
.ws3b{word-spacing:-11.218133pt;}
.ws36{word-spacing:-11.164800pt;}
.ws3a{word-spacing:-10.898133pt;}
.ws30{word-spacing:-10.652800pt;}
.ws2d{word-spacing:-10.631467pt;}
.ws2c{word-spacing:-10.572800pt;}
.ws29{word-spacing:-10.418133pt;}
.ws25{word-spacing:-10.332800pt;}
.ws24{word-spacing:-10.316800pt;}
.ws35{word-spacing:-10.311467pt;}
.ws31{word-spacing:-10.258133pt;}
.ws2b{word-spacing:-10.252800pt;}
.ws22{word-spacing:-10.146133pt;}
.ws23{word-spacing:-10.124800pt;}
.ws20{word-spacing:-10.098133pt;}
.ws2e{word-spacing:-10.076800pt;}
.ws2f{word-spacing:-9.826133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws4{word-spacing:-8.236800pt;}
.ws5{word-spacing:-7.603200pt;}
.ws14{word-spacing:0.000000pt;}
.wse{word-spacing:3.826560pt;}
._7a{margin-left:-15.910614pt;}
._2{margin-left:-6.712853pt;}
._18{margin-left:-5.556053pt;}
._f{margin-left:-4.406080pt;}
._3{margin-left:-3.027627pt;}
._0{margin-left:-1.653333pt;}
._1{width:0.986667pt;}
._a{width:2.595947pt;}
._b{width:3.920320pt;}
._c{width:5.504534pt;}
._10{width:7.000533pt;}
._11{width:7.909334pt;}
._4{width:9.250453pt;}
._e{width:10.843948pt;}
._d{width:12.737600pt;}
._7{width:13.894400pt;}
._5{width:14.856534pt;}
._16{width:15.871466pt;}
._12{width:16.818027pt;}
._19{width:18.537067pt;}
._13{width:19.900481pt;}
._7b{width:20.945173pt;}
._15{width:22.577280pt;}
._14{width:23.808427pt;}
._68{width:24.863680pt;}
._1e{width:25.819520pt;}
._8{width:26.880534pt;}
._9{width:28.052266pt;}
._3b{width:29.605760pt;}
._17{width:30.554673pt;}
._6{width:31.634665pt;}
._6a{width:33.498240pt;}
._3a{width:35.430720pt;}
._1f{width:36.873600pt;}
._76{width:38.068480pt;}
._44{width:39.652480pt;}
._5b{width:40.828160pt;}
._31{width:42.377920pt;}
._4a{width:43.393280pt;}
._61{width:44.462080pt;}
._21{width:45.958400pt;}
._5d{width:48.470080pt;}
._2b{width:49.378560pt;}
._2d{width:51.355840pt;}
._27{width:53.012480pt;}
._72{width:54.081280pt;}
._30{width:55.667520pt;}
._65{width:56.860160pt;}
._29{width:57.768640pt;}
._5e{width:59.211520pt;}
._4c{width:60.280320pt;}
._4f{width:61.285120pt;}
._41{width:62.738560pt;}
._43{width:63.675733pt;}
._20{width:64.608960pt;}
._28{width:65.998400pt;}
._47{width:67.387840pt;}
._66{width:68.510080pt;}
._6d{width:69.472000pt;}
._3d{width:71.744320pt;}
._45{width:75.083200pt;}
._64{width:77.701760pt;}
._59{width:78.824000pt;}
._50{width:80.147200pt;}
._56{width:81.870080pt;}
._4e{width:82.938880pt;}
._60{width:85.343680pt;}
._1d{width:87.748480pt;}
._6e{width:89.672320pt;}
._25{width:90.687680pt;}
._3c{width:92.656747pt;}
._38{width:93.787200pt;}
._24{width:95.298027pt;}
._39{width:98.970880pt;}
._46{width:100.039680pt;}
._42{width:102.016960pt;}
._4d{width:105.763627pt;}
._62{width:106.666240pt;}
._58{width:108.643520pt;}
._35{width:109.712320pt;}
._48{width:111.422400pt;}
._79{width:112.708800pt;}
._51{width:115.056320pt;}
._54{width:116.018240pt;}
._49{width:117.218880pt;}
._67{width:118.850560pt;}
._40{width:120.240000pt;}
._3e{width:122.591360pt;}
._6f{width:125.477120pt;}
._5c{width:127.507840pt;}
._71{width:130.447040pt;}
._34{width:131.783040pt;}
._5f{width:132.851840pt;}
._1b{width:133.884160pt;}
._22{width:135.577280pt;}
._77{width:137.127040pt;}
._2c{width:139.104320pt;}
._57{width:140.724480pt;}
._78{width:142.577920pt;}
._5a{width:143.539840pt;}
._2e{width:145.410240pt;}
._70{width:150.273280pt;}
._2f{width:151.929920pt;}
._6c{width:155.293333pt;}
._37{width:157.113600pt;}
._1c{width:161.762880pt;}
._2a{width:165.503680pt;}
._75{width:166.412160pt;}
._73{width:167.801600pt;}
._23{width:170.420160pt;}
._55{width:172.611200pt;}
._4b{width:177.474240pt;}
._3f{width:180.243200pt;}
._1a{width:185.864320pt;}
._52{width:189.818880pt;}
._26{width:191.315200pt;}
._32{width:196.338560pt;}
._74{width:198.262400pt;}
._63{width:206.919680pt;}
._33{width:212.584320pt;}
._53{width:221.829440pt;}
._36{width:253.840000pt;}
._6b{width:276.979520pt;}
._69{width:312.303360pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yb7{bottom:3.040000pt;}
.y61{bottom:6.960000pt;}
.y6c{bottom:7.040000pt;}
.y9d{bottom:10.960000pt;}
.y86{bottom:11.040000pt;}
.y8f{bottom:18.640000pt;}
.y9a{bottom:22.560000pt;}
.y7b{bottom:22.640000pt;}
.y60{bottom:22.666667pt;}
.y99{bottom:26.560000pt;}
.y6b{bottom:26.640000pt;}
.y93{bottom:26.666667pt;}
.y9f{bottom:30.640000pt;}
.ybe{bottom:34.240000pt;}
.y5e{bottom:34.266667pt;}
.yb6{bottom:34.320000pt;}
.y8e{bottom:38.240000pt;}
.y5f{bottom:38.266667pt;}
.ya3{bottom:38.320000pt;}
.y7a{bottom:42.240000pt;}
.y92{bottom:42.266667pt;}
.y6a{bottom:42.320000pt;}
.y85{bottom:42.346667pt;}
.yac{bottom:46.266667pt;}
.y70{bottom:46.320000pt;}
.yc1{bottom:49.840000pt;}
.yb5{bottom:49.920000pt;}
.yb3{bottom:53.840000pt;}
.y5d{bottom:53.866667pt;}
.y8b{bottom:53.920000pt;}
.y79{bottom:57.840000pt;}
.yab{bottom:57.866667pt;}
.y69{bottom:57.920000pt;}
.y84{bottom:57.946667pt;}
.y7e{bottom:61.840000pt;}
.yaa{bottom:61.866667pt;}
.y6f{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.yc0{bottom:65.520000pt;}
.y2a{bottom:65.946667pt;}
.y8a{bottom:69.520000pt;}
.y68{bottom:73.520000pt;}
.y83{bottom:73.546667pt;}
.y6e{bottom:77.520000pt;}
.ya9{bottom:77.546667pt;}
.y89{bottom:85.120000pt;}
.ybc{bottom:85.146667pt;}
.y96{bottom:85.200000pt;}
.y78{bottom:89.120000pt;}
.ybd{bottom:89.146667pt;}
.y67{bottom:89.200000pt;}
.y82{bottom:89.226667pt;}
.y1{bottom:90.346667pt;}
.y7d{bottom:93.120000pt;}
.ya8{bottom:93.146667pt;}
.y6d{bottom:93.200000pt;}
.y9b{bottom:100.720000pt;}
.ybb{bottom:100.746667pt;}
.y8d{bottom:100.800000pt;}
.y8c{bottom:101.786667pt;}
.ya0{bottom:104.346667pt;}
.y98{bottom:104.720000pt;}
.yba{bottom:104.746667pt;}
.y77{bottom:104.800000pt;}
.y81{bottom:104.826667pt;}
.y116{bottom:105.066667pt;}
.yc6{bottom:108.346667pt;}
.y66{bottom:108.800000pt;}
.ya7{bottom:108.826667pt;}
.y1a8{bottom:110.666667pt;}
.y28{bottom:114.506667pt;}
.ybf{bottom:116.400000pt;}
.ya2{bottom:116.480000pt;}
.y76{bottom:120.400000pt;}
.y80{bottom:120.426667pt;}
.ya1{bottom:120.480000pt;}
.y115{bottom:120.746667pt;}
.y59{bottom:122.906667pt;}
.y7c{bottom:124.400000pt;}
.ya6{bottom:124.426667pt;}
.y65{bottom:124.480000pt;}
.y1a7{bottom:126.266667pt;}
.y17c{bottom:129.466667pt;}
.y27{bottom:130.106667pt;}
.y13e{bottom:132.986667pt;}
.yee{bottom:133.946667pt;}
.y75{bottom:136.000000pt;}
.y88{bottom:136.080000pt;}
.yc7{bottom:136.106667pt;}
.y73{bottom:140.000000pt;}
.y64{bottom:140.080000pt;}
.y17b{bottom:145.066667pt;}
.y157{bottom:148.026667pt;}
.y13d{bottom:148.666667pt;}
.yed{bottom:149.626667pt;}
.y1a6{bottom:149.866667pt;}
.y74{bottom:151.680000pt;}
.y114{bottom:152.346667pt;}
.y58{bottom:154.586667pt;}
.y63{bottom:155.680000pt;}
.y17a{bottom:160.746667pt;}
.y26{bottom:161.786667pt;}
.y156{bottom:163.626667pt;}
.y13c{bottom:164.266667pt;}
.yec{bottom:165.226667pt;}
.y1a5{bottom:165.546667pt;}
.yaf{bottom:167.280000pt;}
.y113{bottom:167.946667pt;}
.y72{bottom:171.280000pt;}
.y179{bottom:176.346667pt;}
.y25{bottom:177.386667pt;}
.y155{bottom:179.306667pt;}
.y13b{bottom:179.946667pt;}
.yeb{bottom:180.826667pt;}
.yae{bottom:182.880000pt;}
.y57{bottom:186.186667pt;}
.y1a4{bottom:189.146667pt;}
.yb4{bottom:191.226667pt;}
.y178{bottom:191.946667pt;}
.y24{bottom:193.066667pt;}
.y13a{bottom:195.546667pt;}
.yea{bottom:196.506667pt;}
.y112{bottom:199.626667pt;}
.y1a3{bottom:204.826667pt;}
.y23{bottom:208.666667pt;}
.y154{bottom:210.906667pt;}
.ye9{bottom:212.106667pt;}
.y111{bottom:215.226667pt;}
.y177{bottom:215.626667pt;}
.y56{bottom:217.866667pt;}
.y87{bottom:219.866667pt;}
.y22{bottom:224.266667pt;}
.y153{bottom:226.586667pt;}
.y139{bottom:227.146667pt;}
.y1a2{bottom:228.426667pt;}
.y55{bottom:233.466667pt;}
.ye8{bottom:235.786667pt;}
.y110{bottom:238.906667pt;}
.y21{bottom:239.946667pt;}
.y152{bottom:242.186667pt;}
.y138{bottom:242.826667pt;}
.y1a1{bottom:244.026667pt;}
.yc5{bottom:246.106667pt;}
.y176{bottom:247.226667pt;}
.y54{bottom:249.066667pt;}
.y9e{bottom:257.706667pt;}
.y137{bottom:258.426667pt;}
.y175{bottom:262.906667pt;}
.y53{bottom:264.746667pt;}
.ye7{bottom:267.386667pt;}
.y1a0{bottom:267.706667pt;}
.y10f{bottom:270.506667pt;}
.y20{bottom:271.546667pt;}
.y151{bottom:273.786667pt;}
.y136{bottom:274.106667pt;}
.y174{bottom:278.506667pt;}
.ye6{bottom:282.986667pt;}
.y19f{bottom:283.306667pt;}
.y1f{bottom:287.226667pt;}
.y150{bottom:289.466667pt;}
.y135{bottom:289.706667pt;}
.y173{bottom:294.106667pt;}
.y52{bottom:296.346667pt;}
.ye5{bottom:298.666667pt;}
.y10e{bottom:302.106667pt;}
.y1e{bottom:302.826667pt;}
.y14f{bottom:305.066667pt;}
.y134{bottom:305.306667pt;}
.y19e{bottom:306.986667pt;}
.y172{bottom:309.786667pt;}
.y51{bottom:311.946667pt;}
.yb2{bottom:313.306667pt;}
.ye4{bottom:314.266667pt;}
.y1d{bottom:318.426667pt;}
.y133{bottom:320.986667pt;}
.y19d{bottom:322.586667pt;}
.y50{bottom:327.626667pt;}
.y171{bottom:333.386667pt;}
.y10d{bottom:333.786667pt;}
.y1c{bottom:334.106667pt;}
.y132{bottom:336.586667pt;}
.y14e{bottom:336.666667pt;}
.y19c{bottom:338.186667pt;}
.y4f{bottom:343.226667pt;}
.ye3{bottom:345.946667pt;}
.y10c{bottom:349.386667pt;}
.y1b{bottom:349.706667pt;}
.y14d{bottom:352.346667pt;}
.y4e{bottom:358.906667pt;}
.ye2{bottom:361.546667pt;}
.y19b{bottom:362.106667pt;}
.y170{bottom:365.066667pt;}
.y1a{bottom:365.386667pt;}
.y131{bottom:368.266667pt;}
.y4d{bottom:374.506667pt;}
.y16f{bottom:380.666667pt;}
.y19{bottom:380.986667pt;}
.y10b{bottom:381.066667pt;}
.y14c{bottom:383.946667pt;}
.y7f{bottom:388.826667pt;}
.y4c{bottom:390.106667pt;}
.ye1{bottom:393.146667pt;}
.y16e{bottom:396.266667pt;}
.y10a{bottom:396.666667pt;}
.yc4{bottom:399.466667pt;}
.y14b{bottom:399.626667pt;}
.y130{bottom:399.866667pt;}
.y18{bottom:404.906667pt;}
.y19a{bottom:405.066667pt;}
.ye0{bottom:408.826667pt;}
.y16d{bottom:411.946667pt;}
.y109{bottom:412.266667pt;}
.y12f{bottom:415.466667pt;}
.y199{bottom:420.693333pt;}
.y4b{bottom:421.813333pt;}
.y14a{bottom:423.253333pt;}
.ydf{bottom:424.453333pt;}
.y16c{bottom:427.573333pt;}
.y9c{bottom:430.773333pt;}
.y12e{bottom:431.173333pt;}
.y108{bottom:435.973333pt;}
.y198{bottom:436.293333pt;}
.y4a{bottom:437.413333pt;}
.yc3{bottom:439.413333pt;}
.yde{bottom:440.133333pt;}
.y17{bottom:448.133333pt;}
.yb1{bottom:451.013333pt;}
.y16b{bottom:451.253333pt;}
.y49{bottom:453.093333pt;}
.y149{bottom:454.853333pt;}
.ydd{bottom:455.733333pt;}
.y12d{bottom:462.773333pt;}
.y107{bottom:467.573333pt;}
.y197{bottom:467.973333pt;}
.y48{bottom:468.693333pt;}
.y148{bottom:470.533333pt;}
.ydc{bottom:471.333333pt;}
.y12c{bottom:478.453333pt;}
.y16{bottom:481.013333pt;}
.y16a{bottom:483.173333pt;}
.y106{bottom:483.253333pt;}
.y147{bottom:486.133333pt;}
.ydb{bottom:487.013333pt;}
.y47{bottom:492.293333pt;}
.y12b{bottom:494.053333pt;}
.y15{bottom:496.693333pt;}
.y196{bottom:499.573333pt;}
.y146{bottom:501.813333pt;}
.yda{bottom:502.613333pt;}
.y12a{bottom:509.653333pt;}
.yc2{bottom:510.613333pt;}
.y14{bottom:512.293333pt;}
.y105{bottom:514.853333pt;}
.y195{bottom:515.253333pt;}
.y145{bottom:517.413333pt;}
.yd9{bottom:518.293333pt;}
.y46{bottom:523.973333pt;}
.y169{bottom:526.053333pt;}
.y71{bottom:526.613333pt;}
.y13{bottom:527.893333pt;}
.y104{bottom:530.453333pt;}
.y194{bottom:530.853333pt;}
.yd8{bottom:533.893333pt;}
.y45{bottom:539.573333pt;}
.y129{bottom:541.333333pt;}
.y168{bottom:541.653333pt;}
.y12{bottom:543.573333pt;}
.y103{bottom:546.133333pt;}
.y193{bottom:546.453333pt;}
.y144{bottom:549.013333pt;}
.yd7{bottom:549.493333pt;}
.y97{bottom:552.853333pt;}
.y44{bottom:555.253333pt;}
.y128{bottom:556.933333pt;}
.y11{bottom:559.173333pt;}
.y102{bottom:561.733333pt;}
.y192{bottom:562.133333pt;}
.y143{bottom:564.693333pt;}
.y43{bottom:570.853333pt;}
.yb0{bottom:573.093333pt;}
.yd6{bottom:573.173333pt;}
.y167{bottom:573.333333pt;}
.y10{bottom:574.853333pt;}
.y142{bottom:580.293333pt;}
.y127{bottom:580.613333pt;}
.y42{bottom:586.453333pt;}
.y166{bottom:588.933333pt;}
.yf{bottom:590.453333pt;}
.y101{bottom:593.413333pt;}
.y191{bottom:593.733333pt;}
.y141{bottom:595.973333pt;}
.y41{bottom:602.133333pt;}
.y165{bottom:604.613333pt;}
.yd5{bottom:604.773333pt;}
.ye{bottom:606.053333pt;}
.y100{bottom:609.013333pt;}
.y190{bottom:609.413333pt;}
.y126{bottom:612.213333pt;}
.y40{bottom:617.733333pt;}
.yd4{bottom:620.453333pt;}
.yd{bottom:621.733333pt;}
.y18f{bottom:625.013333pt;}
.y140{bottom:627.573333pt;}
.y125{bottom:627.813333pt;}
.yff{bottom:632.613333pt;}
.y3f{bottom:633.413333pt;}
.yd3{bottom:636.053333pt;}
.y164{bottom:636.213333pt;}
.yc{bottom:637.333333pt;}
.y124{bottom:643.493333pt;}
.y3e{bottom:649.013333pt;}
.yd2{bottom:651.653333pt;}
.y163{bottom:651.813333pt;}
.yb{bottom:653.013333pt;}
.y13f{bottom:656.213333pt;}
.y18e{bottom:656.613333pt;}
.y123{bottom:659.093333pt;}
.yad{bottom:663.973333pt;}
.yfe{bottom:664.533333pt;}
.y3d{bottom:664.613333pt;}
.yd1{bottom:667.333333pt;}
.y162{bottom:667.493333pt;}
.y18d{bottom:672.293333pt;}
.ya{bottom:676.933333pt;}
.y122{bottom:682.693333pt;}
.yd0{bottom:682.933333pt;}
.y18c{bottom:687.893333pt;}
.y3c{bottom:688.293333pt;}
.y95{bottom:690.533333pt;}
.ycf{bottom:698.533333pt;}
.y161{bottom:699.093333pt;}
.y18b{bottom:703.573333pt;}
.yfd{bottom:707.493333pt;}
.yce{bottom:714.213333pt;}
.y121{bottom:714.373333pt;}
.y160{bottom:714.693333pt;}
.y62{bottom:715.173333pt;}
.y9{bottom:719.813333pt;}
.y3b{bottom:720.213333pt;}
.yfc{bottom:723.093333pt;}
.ycd{bottom:729.813333pt;}
.y120{bottom:729.973333pt;}
.y18a{bottom:735.173333pt;}
.yfb{bottom:738.693333pt;}
.ycc{bottom:745.493333pt;}
.y11f{bottom:745.653333pt;}
.y15f{bottom:746.373333pt;}
.y189{bottom:750.773333pt;}
.y8{bottom:751.653333pt;}
.yfa{bottom:754.373333pt;}
.ycb{bottom:761.093333pt;}
.y15e{bottom:761.973333pt;}
.y3a{bottom:763.093333pt;}
.y188{bottom:766.453333pt;}
.yf9{bottom:769.973333pt;}
.y11e{bottom:777.253333pt;}
.y39{bottom:778.693333pt;}
.y187{bottom:782.053333pt;}
.y7{bottom:783.653333pt;}
.yca{bottom:784.693333pt;}
.yf8{bottom:785.653333pt;}
.y11d{bottom:792.853333pt;}
.y38{bottom:794.373333pt;}
.yf7{bottom:801.253333pt;}
.y186{bottom:805.973333pt;}
.y37{bottom:809.973333pt;}
.y11c{bottom:816.533333pt;}
.yc9{bottom:816.613333pt;}
.y15d{bottom:817.253333pt;}
.yb9{bottom:817.333333pt;}
.y6{bottom:819.013333pt;}
.yf6{bottom:832.853333pt;}
.y5{bottom:835.013333pt;}
.y36{bottom:841.653333pt;}
.y94{bottom:843.893333pt;}
.y11b{bottom:848.133333pt;}
.y15c{bottom:848.533333pt;}
.y185{bottom:848.853333pt;}
.yf5{bottom:856.533333pt;}
.y35{bottom:857.253333pt;}
.yc8{bottom:859.573333pt;}
.y4{bottom:863.733333pt;}
.y11a{bottom:863.813333pt;}
.y15b{bottom:864.133333pt;}
.ya5{bottom:864.213333pt;}
.y184{bottom:864.533333pt;}
.y34{bottom:872.853333pt;}
.y183{bottom:880.133333pt;}
.y91{bottom:883.813333pt;}
.yf4{bottom:888.133333pt;}
.y5c{bottom:888.213333pt;}
.y33{bottom:888.533333pt;}
.y119{bottom:895.413333pt;}
.y15a{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.yf3{bottom:903.840000pt;}
.y32{bottom:904.160000pt;}
.y118{bottom:911.040000pt;}
.y159{bottom:911.440000pt;}
.y182{bottom:911.840000pt;}
.yf2{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.y158{bottom:927.040000pt;}
.y181{bottom:927.440000pt;}
.yf1{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.y117{bottom:942.720000pt;}
.y180{bottom:943.040000pt;}
.yf0{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.yb8{bottom:955.040000pt;}
.y17f{bottom:958.720000pt;}
.yef{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y17e{bottom:974.320000pt;}
.y5b{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y17d{bottom:990.000000pt;}
.y90{bottom:990.320000pt;}
.y2c{bottom:998.000000pt;}
.y5a{bottom:1002.320000pt;}
.ya4{bottom:1005.920000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h19{height:19.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h12{height:35.280000pt;}
.h3{height:36.835938pt;}
.h14{height:39.280000pt;}
.h21{height:39.306667pt;}
.hc{height:45.246562pt;}
.h7{height:49.212812pt;}
.h8{height:49.581562pt;}
.h5{height:53.927812pt;}
.h24{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:68.662187pt;}
.hb{height:70.506667pt;}
.h1f{height:70.560000pt;}
.h1e{height:86.160000pt;}
.h1c{height:90.160000pt;}
.h13{height:105.866667pt;}
.h11{height:117.440000pt;}
.h17{height:121.360000pt;}
.h1d{height:121.440000pt;}
.h16{height:137.040000pt;}
.hf{height:137.066667pt;}
.h22{height:137.120000pt;}
.h1a{height:141.066667pt;}
.h20{height:152.640000pt;}
.h15{height:152.720000pt;}
.h23{height:152.746667pt;}
.h10{height:168.320000pt;}
.hd{height:172.320000pt;}
.h18{height:172.346667pt;}
.he{height:187.920000pt;}
.h1b{height:199.520000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:70.720000pt;}
.wa{width:75.840000pt;}
.wb{width:82.240000pt;}
.w5{width:83.920000pt;}
.w4{width:86.666667pt;}
.wc{width:93.120000pt;}
.w6{width:93.280000pt;}
.w8{width:94.640000pt;}
.we{width:95.520000pt;}
.wd{width:96.746667pt;}
.w7{width:100.026667pt;}
.wf{width:137.600000pt;}
.w9{width:138.480000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x11{left:98.879988pt;}
.x5{left:132.480000pt;}
.xb{left:137.600000pt;}
.x2{left:179.146655pt;}
.x6{left:219.866667pt;}
.xc{left:224.906667pt;}
.x10{left:275.706655pt;}
.x7{left:304.426667pt;}
.xd{left:307.866667pt;}
.x8{left:398.346667pt;}
.xe{left:401.626667pt;}
.x9{left:499.093333pt;}
.xf{left:555.013322pt;}
.xa{left:594.373333pt;}
.x3{left:704.053322pt;}
}




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