
    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_997ca64947e3568ff323215c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_fe5269a850363a179be722d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_2350d996f7229642f9d72707.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_21c9de2cbff8af3c90091723.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.754395;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_63b2269fb7555603dd286fbf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.754395;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_25f4c92e930211b8357d398a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_60e7b2f5c0cc730d5b1a5b2f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_997ca64947e3568ff323215c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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);}
.v4{vertical-align:-30.959947px;}
.v2{vertical-align:-29.519920px;}
.v8{vertical-align:-4.319815px;}
.v3{vertical-align:-2.879873px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880194px;}
.v6{vertical-align:35.279942px;}
.v7{vertical-align:36.719878px;}
.v1{vertical-align:44.639900px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.110154px;}
.ls25{letter-spacing:0.131760px;}
.ls27{letter-spacing:0.158250px;}
.ls3{letter-spacing:0.221027px;}
.lse{letter-spacing:0.221033px;}
.ls14{letter-spacing:0.518387px;}
.ls10{letter-spacing:14.471976px;}
.ls7{letter-spacing:53.645470px;}
.lsc{letter-spacing:69.485514px;}
.ls5{letter-spacing:98.465364px;}
.ls9{letter-spacing:104.945450px;}
.ls8{letter-spacing:109.985413px;}
.ls22{letter-spacing:110.945951px;}
.ls1c{letter-spacing:114.545978px;}
.ls4{letter-spacing:124.385341px;}
.lsf{letter-spacing:127.613921px;}
.ls19{letter-spacing:130.385890px;}
.ls23{letter-spacing:136.145828px;}
.ls21{letter-spacing:136.145912px;}
.ls1e{letter-spacing:140.465823px;}
.ls18{letter-spacing:147.665871px;}
.lsd{letter-spacing:148.145234px;}
.lsa{letter-spacing:167.585305px;}
.ls6{letter-spacing:169.025247px;}
.ls1d{letter-spacing:193.745810px;}
.ls20{letter-spacing:201.665736px;}
.ls1f{letter-spacing:208.865706px;}
.ls26{letter-spacing:211.025796px;}
.ls1a{letter-spacing:231.161668px;}
.lsb{letter-spacing:246.065031px;}
.ls15{letter-spacing:269.321573px;}
.ls16{letter-spacing:272.945498px;}
.ls1b{letter-spacing:303.905444px;}
.ls24{letter-spacing:310.565524px;}
.ls17{letter-spacing:350.705345px;}
.ls12{letter-spacing:406.121207px;}
.ls2{letter-spacing:531.916316px;}
.ls13{letter-spacing:891.723891px;}
.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;}
}
.ws4{word-spacing:-71.999820px;}
.ws6{word-spacing:-20.087950px;}
.ws5{word-spacing:-19.871950px;}
.ws7{word-spacing:-16.672998px;}
.ws3{word-spacing:-13.499102px;}
.ws2{word-spacing:-13.458926px;}
.ws1{word-spacing:-13.314207px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-3.828296px;}
._6{margin-left:-2.050912px;}
._1{margin-left:-1.007997px;}
._0{width:1.439996px;}
._c{width:2.663993px;}
._9{width:3.815990px;}
._a{width:5.578903px;}
._11{width:6.735232px;}
._21{width:7.924312px;}
._25{width:9.787643px;}
._1d{width:10.871973px;}
._17{width:12.167970px;}
._42{width:13.175967px;}
._4{width:14.183965px;}
._3{width:15.239962px;}
._b{width:16.367959px;}
._30{width:17.495956px;}
._37{width:18.623953px;}
._2d{width:20.909900px;}
._5{width:21.964910px;}
._7{width:23.074859px;}
._56{width:24.085023px;}
._e{width:25.150771px;}
._2b{width:26.423934px;}
._8{width:27.575931px;}
._1f{width:29.087927px;}
._2e{width:30.599924px;}
._1c{width:32.111920px;}
._36{width:33.261751px;}
._19{width:34.336128px;}
._18{width:35.622315px;}
._2a{width:37.367907px;}
._46{width:38.735903px;}
._33{width:39.922817px;}
._d{width:41.471896px;}
._13{width:42.551894px;}
._3b{width:43.703891px;}
._39{width:45.086569px;}
._24{width:46.223884px;}
._3a{width:47.338799px;}
._2c{width:49.103877px;}
._38{width:50.146792px;}
._41{width:51.837704px;}
._27{width:52.919868px;}
._28{width:54.250781px;}
._29{width:55.330779px;}
._1a{width:57.167857px;}
._1b{width:58.319854px;}
._26{width:59.471851px;}
._23{width:61.559846px;}
._f{width:62.711843px;}
._10{width:64.258756px;}
._3e{width:65.711830px;}
._35{width:66.850750px;}
._59{width:67.895830px;}
._34{width:68.975828px;}
._45{width:70.199825px;}
._57{width:71.351822px;}
._58{width:73.163805px;}
._2f{width:75.202729px;}
._15{width:76.319809px;}
._16{width:77.471806px;}
._3d{width:78.519053px;}
._32{width:79.773635px;}
._31{width:81.071797px;}
._40{width:83.159792px;}
._14{width:85.175787px;}
._3f{width:86.183785px;}
._20{width:87.263782px;}
._3c{width:88.265388px;}
._1e{width:89.425942px;}
._12{width:90.865939px;}
._22{width:92.587436px;}
._6d{width:93.922422px;}
._44{width:95.565421px;}
._43{width:99.215752px;}
._4b{width:104.595405px;}
._61{width:108.729565px;}
._48{width:113.820309px;}
._50{width:119.014298px;}
._49{width:122.580060px;}
._4a{width:132.540233px;}
._54{width:146.686409px;}
._5a{width:166.889829px;}
._52{width:177.566193px;}
._4d{width:180.034134px;}
._5d{width:181.262382px;}
._4e{width:188.794154px;}
._6b{width:195.724293px;}
._4f{width:198.753967px;}
._55{width:201.799386px;}
._5c{width:206.762327px;}
._5b{width:220.297567px;}
._53{width:241.588295px;}
._51{width:243.035866px;}
._67{width:249.700170px;}
._60{width:251.601025px;}
._62{width:269.860125px;}
._65{width:274.900137px;}
._6c{width:296.006896px;}
._4c{width:317.137337px;}
._47{width:320.636171px;}
._68{width:348.893152px;}
._69{width:364.179896px;}
._63{width:370.299775px;}
._66{width:375.278902px;}
._5e{width:377.139839px;}
._64{width:417.198328px;}
._6a{width:465.028492px;}
._5f{width:476.991650px;}
.fc7{color:rgb(0,128,128);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(13,119,110);}
.fc4{color:rgb(0,103,120);}
.fc3{color:rgb(33,37,41);}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:43.199892px;}
.fs4{font-size:48.239879px;}
.fs5{font-size:48.383879px;}
.fs0{font-size:59.759851px;}
.fs6{font-size:59.903850px;}
.fs3{font-size:66.239834px;}
.fs8{font-size:66.383834px;}
.fs1{font-size:71.999820px;}
.fs2{font-size:72.143820px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.498183px;}
.y19b{bottom:2.699975px;}
.y85{bottom:8.999978px;}
.y1fc{bottom:13.139982px;}
.y3{bottom:23.759890px;}
.y31{bottom:29.879900px;}
.y30{bottom:51.839867px;}
.y4{bottom:54.359849px;}
.y1be{bottom:64.799856px;}
.y2f{bottom:73.289794px;}
.yb6{bottom:79.049820px;}
.ye8{bottom:81.209728px;}
.y22c{bottom:82.649757px;}
.y14c{bottom:83.009741px;}
.y1fa{bottom:84.449771px;}
.y1bd{bottom:86.969754px;}
.y19a{bottom:89.489736px;}
.y11b{bottom:92.189711px;}
.y2e{bottom:95.249762px;}
.yb5{bottom:101.009696px;}
.y158{bottom:101.189689px;}
.y11a{bottom:101.729756px;}
.y82{bottom:101.909750px;}
.ye7{bottom:103.349686px;}
.y22b{bottom:104.609723px;}
.y14b{bottom:105.149701px;}
.y1f9{bottom:106.589731px;}
.y1bc{bottom:109.109712px;}
.y199{bottom:111.449703px;}
.y81{bottom:116.489668px;}
.y2d{bottom:117.389722px;}
.yb4{bottom:123.149656px;}
.ye6{bottom:125.489646px;}
.y22a{bottom:126.749683px;}
.y14a{bottom:127.289659px;}
.y1f8{bottom:128.729689px;}
.y119{bottom:130.529612px;}
.y117{bottom:130.889688px;}
.y1bb{bottom:131.069680px;}
.y80{bottom:131.249672px;}
.y84{bottom:131.429664px;}
.y198{bottom:133.589663px;}
.y2c{bottom:139.529590px;}
.y116{bottom:140.069657px;}
.yb3{bottom:145.289614px;}
.y7f{bottom:146.009584px;}
.ye5{bottom:147.449613px;}
.y118{bottom:148.889643px;}
.y149{bottom:149.249627px;}
.y1f7{bottom:150.689565px;}
.y1ba{bottom:153.209548px;}
.y197{bottom:155.729621px;}
.y7e{bottom:160.769588px;}
.y2b{bottom:161.489556px;}
.y83{bottom:164.549607px;}
.yb2{bottom:167.249582px;}
.y115{bottom:168.869512px;}
.y113{bottom:169.229587px;}
.ye4{bottom:169.589573px;}
.y229{bottom:170.849517px;}
.y148{bottom:171.389587px;}
.y1f6{bottom:172.829524px;}
.y1b9{bottom:175.169514px;}
.y196{bottom:177.689497px;}
.y112{bottom:178.409558px;}
.y7c{bottom:181.109532px;}
.y2a{bottom:183.629515px;}
.y114{bottom:187.229542px;}
.yb1{bottom:189.389542px;}
.ye3{bottom:191.549539px;}
.y228{bottom:192.989477px;}
.y147{bottom:193.349461px;}
.y1f5{bottom:194.969484px;}
.y7b{bottom:195.869444px;}
.y1b8{bottom:197.309474px;}
.y195{bottom:199.829457px;}
.y29{bottom:205.769475px;}
.y111{bottom:207.209413px;}
.y7a{bottom:210.629448px;}
.yb0{bottom:211.349416px;}
.y157{bottom:211.529410px;}
.ye2{bottom:213.689407px;}
.y227{bottom:214.949445px;}
.y146{bottom:215.489421px;}
.y110{bottom:216.749458px;}
.y1f4{bottom:216.929450px;}
.y1b7{bottom:219.449433px;}
.y194{bottom:221.789423px;}
.y79{bottom:225.389452px;}
.y7d{bottom:225.929428px;}
.y28{bottom:227.729441px;}
.yaf{bottom:233.489376px;}
.ye1{bottom:235.829367px;}
.y226{bottom:237.089404px;}
.y145{bottom:237.629380px;}
.y1f3{bottom:239.069410px;}
.y1b6{bottom:241.409401px;}
.y78{bottom:242.669345px;}
.y193{bottom:243.929383px;}
.y10f{bottom:245.369321px;}
.y27{bottom:249.869309px;}
.y73{bottom:250.049393px;}
.y10e{bottom:254.909367px;}
.yae{bottom:255.629335px;}
.y77{bottom:257.429349px;}
.ye0{bottom:257.789333px;}
.y225{bottom:259.229362px;}
.y144{bottom:259.589348px;}
.y1f2{bottom:261.029286px;}
.y1b5{bottom:263.549359px;}
.y72{bottom:264.629313px;}
.y192{bottom:266.069342px;}
.y26{bottom:271.829277px;}
.y76{bottom:272.009269px;}
.yad{bottom:277.589303px;}
.y156{bottom:277.769295px;}
.y71{bottom:279.389317px;}
.ydf{bottom:279.929293px;}
.y224{bottom:281.189239px;}
.y143{bottom:281.729306px;}
.y1f1{bottom:283.169244px;}
.y10d{bottom:283.709222px;}
.y1b4{bottom:285.509235px;}
.y75{bottom:286.769273px;}
.y191{bottom:288.029218px;}
.y10c{bottom:293.249267px;}
.y25{bottom:293.969237px;}
.y70{bottom:294.329221px;}
.yac{bottom:299.729261px;}
.yde{bottom:301.889260px;}
.y74{bottom:302.249244px;}
.y223{bottom:303.329198px;}
.y142{bottom:303.689182px;}
.y1f0{bottom:305.309204px;}
.y1b3{bottom:307.649195px;}
.y190{bottom:310.169177px;}
.y24{bottom:316.109195px;}
.y6c{bottom:318.629178px;}
.yab{bottom:321.869129px;}
.y10b{bottom:322.049213px;}
.ydd{bottom:324.029128px;}
.y222{bottom:325.289164px;}
.y141{bottom:325.829142px;}
.y6f{bottom:326.009134px;}
.y1ef{bottom:327.269171px;}
.y1b2{bottom:329.789153px;}
.y10a{bottom:331.589168px;}
.y18f{bottom:332.309136px;}
.y6b{bottom:333.389182px;}
.y23{bottom:338.069162px;}
.y6e{bottom:340.814089px;}
.yaa{bottom:343.874140px;}
.ydc{bottom:346.214131px;}
.y221{bottom:347.474076px;}
.y140{bottom:348.014145px;}
.y6a{bottom:348.194137px;}
.y1ee{bottom:349.454083px;}
.y1b1{bottom:351.794073px;}
.y18e{bottom:354.314056px;}
.y22{bottom:360.254074px;}
.y69{bottom:362.954049px;}
.y6d{bottom:363.494025px;}
.ya9{bottom:366.014100px;}
.ydb{bottom:368.174098px;}
.y220{bottom:369.614035px;}
.y109{bottom:369.794028px;}
.y13f{bottom:369.974020px;}
.y1ed{bottom:371.414049px;}
.y1b0{bottom:373.934032px;}
.y18d{bottom:376.454015px;}
.y21{bottom:382.214041px;}
.y67{bottom:387.433998px;}
.ya8{bottom:387.973975px;}
.y155{bottom:388.153968px;}
.yda{bottom:390.313966px;}
.y21f{bottom:391.574003px;}
.y13e{bottom:392.113979px;}
.y1ec{bottom:393.554009px;}
.y1af{bottom:395.894000px;}
.y18c{bottom:398.413981px;}
.y108{bottom:398.593975px;}
.y66{bottom:402.194002px;}
.y20{bottom:404.354000px;}
.y107{bottom:408.133929px;}
.ya7{bottom:410.113934px;}
.yd9{bottom:412.453925px;}
.y21e{bottom:413.713963px;}
.y13d{bottom:414.073947px;}
.y1eb{bottom:415.693968px;}
.y65{bottom:416.953914px;}
.y1ae{bottom:418.033959px;}
.y18b{bottom:420.553941px;}
.y68{bottom:424.873938px;}
.y1f{bottom:426.493868px;}
.ya6{bottom:432.253894px;}
.yd8{bottom:434.413891px;}
.y21d{bottom:435.673929px;}
.y13c{bottom:436.213906px;}
.y106{bottom:436.933875px;}
.y1ea{bottom:437.653844px;}
.y1ad{bottom:440.173918px;}
.y63{bottom:441.433863px;}
.y18a{bottom:442.693901px;}
.y105{bottom:446.473828px;}
.y1e{bottom:448.453835px;}
.ya5{bottom:454.213861px;}
.y62{bottom:456.193867px;}
.yd7{bottom:456.553851px;}
.y21c{bottom:457.813797px;}
.y13b{bottom:458.353865px;}
.y1e9{bottom:459.793803px;}
.y1ac{bottom:462.133794px;}
.y189{bottom:464.653777px;}
.y1d{bottom:470.593795px;}
.y61{bottom:470.953779px;}
.ya4{bottom:476.353820px;}
.yd6{bottom:478.513819px;}
.y21b{bottom:479.953757px;}
.y14d{bottom:480.313741px;}
.y13a{bottom:481.033802px;}
.y1e8{bottom:481.753770px;}
.y1ab{bottom:484.273753px;}
.y60{bottom:485.713783px;}
.y64{bottom:486.253759px;}
.y188{bottom:486.793735px;}
.y1c{bottom:492.553761px;}
.ya3{bottom:498.313742px;}
.y154{bottom:498.493734px;}
.yd5{bottom:500.653732px;}
.y21a{bottom:501.913723px;}
.y139{bottom:502.453700px;}
.y1e7{bottom:503.893730px;}
.y1aa{bottom:506.413711px;}
.y187{bottom:508.753703px;}
.y5e{bottom:510.193686px;}
.y1b{bottom:514.693674px;}
.ya2{bottom:520.453655px;}
.yd4{bottom:522.793645px;}
.y219{bottom:524.053682px;}
.y138{bottom:524.413666px;}
.y5d{bottom:524.773652px;}
.y1e6{bottom:526.033643px;}
.y1fb{bottom:526.753658px;}
.y1a9{bottom:528.373634px;}
.y186{bottom:530.893662px;}
.y1a{bottom:536.833634px;}
.y5c{bottom:539.533609px;}
.ya1{bottom:542.593615px;}
.yd3{bottom:544.753613px;}
.y218{bottom:546.013603px;}
.y137{bottom:546.553626px;}
.y1e5{bottom:547.993611px;}
.y1a8{bottom:550.513592px;}
.y185{bottom:553.033575px;}
.y5b{bottom:554.473605px;}
.y19{bottom:558.793555px;}
.y5f{bottom:562.213591px;}
.yb7{bottom:564.553581px;}
.ya0{bottom:565.273551px;}
.yd2{bottom:566.893572px;}
.y217{bottom:568.153563px;}
.y136{bottom:568.693539px;}
.y1e4{bottom:570.133569px;}
.y104{bottom:571.933537px;}
.y1a7{bottom:572.473560px;}
.y184{bottom:574.993543px;}
.y59{bottom:578.773517px;}
.y18{bottom:580.933515px;}
.y153{bottom:586.693494px;}
.yd1{bottom:588.853493px;}
.y216{bottom:590.293476px;}
.y135{bottom:590.653507px;}
.y1e3{bottom:592.093491px;}
.y58{bottom:593.533474px;}
.y103{bottom:594.073497px;}
.y1a6{bottom:594.613473px;}
.y183{bottom:597.133501px;}
.y9f{bottom:598.753478px;}
.y17{bottom:602.893482px;}
.y57{bottom:608.323461px;}
.y152{bottom:608.863437px;}
.yd0{bottom:611.023436px;}
.y215{bottom:612.283427px;}
.y134{bottom:612.823450px;}
.y1e2{bottom:614.263433px;}
.y102{bottom:616.063448px;}
.y1a5{bottom:616.783416px;}
.y182{bottom:619.123407px;}
.y9e{bottom:620.923421px;}
.y56{bottom:623.083418px;}
.y5a{bottom:623.623396px;}
.y16{bottom:625.063425px;}
.y151{bottom:630.823405px;}
.ycf{bottom:633.163395px;}
.y214{bottom:634.423387px;}
.y133{bottom:634.783371px;}
.y1e1{bottom:636.403392px;}
.y101{bottom:638.203361px;}
.y1a4{bottom:638.743384px;}
.y54{bottom:640.363359px;}
.y181{bottom:641.263365px;}
.y9d{bottom:642.883387px;}
.y15{bottom:647.203338px;}
.y150{bottom:652.963365px;}
.y53{bottom:654.943324px;}
.yce{bottom:655.123317px;}
.y213{bottom:656.563347px;}
.y132{bottom:656.923331px;}
.y1e0{bottom:658.363314px;}
.y100{bottom:660.343321px;}
.y1a3{bottom:660.883342px;}
.y180{bottom:663.403325px;}
.y9c{bottom:665.023301px;}
.y52{bottom:669.703282px;}
.y14{bottom:669.883319px;}
.y14f{bottom:674.923286px;}
.ycd{bottom:677.263275px;}
.y212{bottom:678.523268px;}
.y131{bottom:679.063290px;}
.y1df{bottom:680.503273px;}
.yff{bottom:682.303287px;}
.y1a2{bottom:682.843264px;}
.y51{bottom:684.463286px;}
.y55{bottom:685.183254px;}
.y17f{bottom:685.363246px;}
.y9b{bottom:687.163260px;}
.y13{bottom:691.303264px;}
.y14e{bottom:697.063245px;}
.ycc{bottom:699.223243px;}
.y211{bottom:700.663226px;}
.y130{bottom:701.023211px;}
.y4d{bottom:701.383241px;}
.y1de{bottom:702.463241px;}
.yfe{bottom:704.443200px;}
.y1a1{bottom:704.983223px;}
.y17e{bottom:707.503206px;}
.y9a{bottom:709.123182px;}
.y12{bottom:713.443177px;}
.y4c{bottom:715.963207px;}
.ycb{bottom:721.363156px;}
.y210{bottom:722.623148px;}
.y12f{bottom:723.163170px;}
.y50{bottom:723.343163px;}
.y1dd{bottom:724.603154px;}
.yfd{bottom:726.403167px;}
.y1a0{bottom:727.123137px;}
.y17d{bottom:729.463173px;}
.y4b{bottom:730.723164px;}
.y99{bottom:731.263140px;}
.y11{bottom:736.123115px;}
.y4f{bottom:738.103120px;}
.y169{bottom:739.723142px;}
.yca{bottom:743.503116px;}
.y20f{bottom:744.763107px;}
.y12e{bottom:745.303129px;}
.y4a{bottom:745.483121px;}
.y1dc{bottom:746.743114px;}
.yfc{bottom:748.543081px;}
.y19f{bottom:749.083103px;}
.y17c{bottom:751.603086px;}
.y4e{bottom:752.863077px;}
.y98{bottom:753.223108px;}
.y10{bottom:757.543058px;}
.y49{bottom:760.243080px;}
.yc9{bottom:765.463083px;}
.y20e{bottom:766.903066px;}
.y12d{bottom:767.263050px;}
.y1db{bottom:768.703035px;}
.yfb{bottom:770.683040px;}
.y19e{bottom:771.223063px;}
.y168{bottom:771.943031px;}
.y17b{bottom:773.743046px;}
.y48{bottom:775.003037px;}
.y97{bottom:775.363021px;}
.yf{bottom:779.503026px;}
.yc8{bottom:787.602996px;}
.y20d{bottom:788.862987px;}
.y12c{bottom:789.403010px;}
.y1da{bottom:790.842994px;}
.yfa{bottom:792.643008px;}
.y19d{bottom:793.182984px;}
.y17a{bottom:795.702967px;}
.y96{bottom:797.502981px;}
.y47{bottom:798.402987px;}
.ye{bottom:802.362954px;}
.y167{bottom:804.342961px;}
.y42{bottom:805.782944px;}
.yc7{bottom:809.562964px;}
.y20c{bottom:811.002947px;}
.y12b{bottom:811.362931px;}
.y1d9{bottom:812.982953px;}
.y46{bottom:813.162945px;}
.yf9{bottom:814.782921px;}
.y19c{bottom:815.322944px;}
.y179{bottom:817.842927px;}
.y95{bottom:819.462948px;}
.y41{bottom:820.542901px;}
.yd{bottom:823.782899px;}
.y45{bottom:827.922903px;}
.y166{bottom:831.162900px;}
.yc6{bottom:831.702877px;}
.y20b{bottom:832.962915px;}
.y12a{bottom:833.502891px;}
.y1d8{bottom:834.942874px;}
.y40{bottom:835.482896px;}
.yf8{bottom:836.742889px;}
.y178{bottom:839.802893px;}
.y94{bottom:841.602861px;}
.y44{bottom:842.682860px;}
.yc{bottom:846.462881px;}
.y3f{bottom:850.062863px;}
.yc5{bottom:853.842837px;}
.y20a{bottom:855.102828px;}
.y129{bottom:855.642850px;}
.y1d7{bottom:857.082833px;}
.y165{bottom:857.802848px;}
.yf7{bottom:858.882847px;}
.y1ca{bottom:859.602816px;}
.y177{bottom:861.942806px;}
.y93{bottom:863.562829px;}
.y43{bottom:864.822820px;}
.yb{bottom:868.602794px;}
.yc4{bottom:875.847801px;}
.y209{bottom:877.287784px;}
.y128{bottom:877.647770px;}
.y1d6{bottom:879.087775px;}
.yf6{bottom:881.067782px;}
.y176{bottom:884.127764px;}
.y164{bottom:884.667764px;}
.y3e{bottom:885.027771px;}
.y92{bottom:885.747763px;}
.y1c9{bottom:886.287762px;}
.ya{bottom:889.887744px;}
.yc3{bottom:897.987737px;}
.y208{bottom:899.247729px;}
.y127{bottom:899.787728px;}
.y1d5{bottom:901.227712px;}
.yf5{bottom:903.027726px;}
.y3a{bottom:904.827717px;}
.y175{bottom:906.087708px;}
.y91{bottom:907.887699px;}
.y163{bottom:911.307689px;}
.y9{bottom:912.027703px;}
.y3d{bottom:912.207695px;}
.y1c8{bottom:913.467688px;}
.y39{bottom:919.587674px;}
.yc2{bottom:919.947682px;}
.y207{bottom:921.387665px;}
.y126{bottom:921.747673px;}
.y1d4{bottom:923.367672px;}
.yf4{bottom:925.167663px;}
.y3c{bottom:926.967654px;}
.y174{bottom:928.227645px;}
.y8{bottom:934.167641px;}
.y38{bottom:934.347633px;}
.y162{bottom:938.127629px;}
.y1c7{bottom:940.467620px;}
.y3b{bottom:941.727611px;}
.y90{bottom:941.907626px;}
.yc1{bottom:942.087618px;}
.y206{bottom:943.347610px;}
.y125{bottom:943.887609px;}
.y1d3{bottom:945.327616px;}
.yf3{bottom:947.307599px;}
.y37{bottom:949.107612px;}
.y173{bottom:950.367605px;}
.y7{bottom:956.127584px;}
.y36{bottom:963.867571px;}
.yc0{bottom:964.227555px;}
.y205{bottom:965.487568px;}
.y124{bottom:966.027568px;}
.y1c6{bottom:967.467553px;}
.y161{bottom:968.187544px;}
.yf2{bottom:969.267544px;}
.y172{bottom:972.327548px;}
.y8f{bottom:976.647522px;}
.y6{bottom:978.267521px;}
.y35{bottom:980.067535px;}
.ybf{bottom:986.187499px;}
.y204{bottom:987.627505px;}
.y123{bottom:987.987512px;}
.y22d{bottom:988.347498px;}
.y1d2{bottom:989.427496px;}
.yf1{bottom:991.407502px;}
.y171{bottom:994.467485px;}
.y1c5{bottom:994.647477px;}
.y8e{bottom:998.787481px;}
.y5{bottom:1000.947480px;}
.y160{bottom:1001.487478px;}
.y34{bottom:1003.107477px;}
.ybe{bottom:1008.327458px;}
.y203{bottom:1009.587449px;}
.y122{bottom:1010.127449px;}
.y1d1{bottom:1011.567456px;}
.yf0{bottom:1013.367447px;}
.y170{bottom:1016.427429px;}
.y33{bottom:1017.867436px;}
.y8d{bottom:1020.747426px;}
.y32{bottom:1021.467418px;}
.y1c4{bottom:1021.647410px;}
.ybd{bottom:1030.467395px;}
.y202{bottom:1031.727386px;}
.y121{bottom:1032.087393px;}
.y1d0{bottom:1033.707392px;}
.yef{bottom:1035.507383px;}
.y15f{bottom:1036.047383px;}
.y16f{bottom:1038.567389px;}
.y8c{bottom:1042.167371px;}
.y15d{bottom:1045.227352px;}
.y1c3{bottom:1048.827357px;}
.ybc{bottom:1052.427339px;}
.y201{bottom:1053.687330px;}
.y120{bottom:1054.227330px;}
.y15c{bottom:1054.407344px;}
.y1cf{bottom:1055.667337px;}
.yee{bottom:1057.647320px;}
.y16e{bottom:1060.707324px;}
.y8b{bottom:1064.307306px;}
.y15e{bottom:1072.947288px;}
.ybb{bottom:1074.567287px;}
.y1c2{bottom:1075.467283px;}
.y200{bottom:1075.827289px;}
.y11f{bottom:1076.367290px;}
.y1ce{bottom:1077.807284px;}
.yed{bottom:1079.607275px;}
.y16d{bottom:1082.667269px;}
.y8a{bottom:1086.267262px;}
.yba{bottom:1096.527230px;}
.y1ff{bottom:1097.967227px;}
.y11e{bottom:1098.327233px;}
.y1cd{bottom:1099.767228px;}
.yec{bottom:1101.747223px;}
.y16c{bottom:1104.807217px;}
.y1c1{bottom:1106.247212px;}
.y15b{bottom:1107.687207px;}
.y89{bottom:1108.407199px;}
.yb9{bottom:1118.661182px;}
.ye9{bottom:1119.381175px;}
.y1fe{bottom:1119.921173px;}
.y11d{bottom:1120.461173px;}
.y1cc{bottom:1121.901168px;}
.yeb{bottom:1123.701170px;}
.y16b{bottom:1126.761153px;}
.y1c0{bottom:1128.201158px;}
.y15a{bottom:1129.641155px;}
.y88{bottom:1130.361146px;}
.yb8{bottom:1140.837121px;}
.y1fd{bottom:1142.097124px;}
.y11c{bottom:1142.457120px;}
.y1cb{bottom:1144.077119px;}
.yea{bottom:1145.877110px;}
.y16a{bottom:1148.937104px;}
.y1bf{bottom:1150.377099px;}
.y159{bottom:1151.817093px;}
.y87{bottom:1153.257088px;}
.y86{bottom:1219.856925px;}
.y2{bottom:1234.076888px;}
.ha{height:36.179910px;}
.h8{height:36.274128px;}
.h9{height:36.382409px;}
.h15{height:44.819888px;}
.hf{height:44.936606px;}
.h16{height:45.044887px;}
.hc{height:48.774253px;}
.h17{height:49.809250px;}
.h18{height:49.917531px;}
.hd{height:53.015492px;}
.h4{height:53.999865px;}
.h14{height:54.107865px;}
.h5{height:54.140490px;}
.h6{height:54.248771px;}
.h3{height:59.438875px;}
.hb{height:69.654447px;}
.he{height:71.613102px;}
.h12{height:80.216542px;}
.h10{height:80.216548px;}
.h11{height:80.504637px;}
.h7{height:80.914028px;}
.h13{height:81.539766px;}
.h19{height:86.214099px;}
.h2{height:1262.876798px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:892.977765px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:22.679930px;}
.x14{left:24.659926px;}
.x11{left:26.639920px;}
.x15{left:29.339912px;}
.x13{left:30.599910px;}
.x18{left:31.859907px;}
.x10{left:37.439891px;}
.x16{left:44.459874px;}
.x1{left:46.799871px;}
.x12{left:48.599868px;}
.x19{left:55.079850px;}
.x6{left:59.219838px;}
.x6f{left:62.819831px;}
.x1a{left:64.799826px;}
.x55{left:67.499818px;}
.x56{left:68.939813px;}
.x6e{left:70.559812px;}
.x5a{left:76.679793px;}
.x73{left:79.019789px;}
.x5b{left:80.819786px;}
.x4b{left:82.079783px;}
.x74{left:83.519778px;}
.x6d{left:86.795767px;}
.xd{left:104.615729px;}
.xa{left:108.935716px;}
.x6c{left:114.695695px;}
.xb{left:115.775694px;}
.x64{left:123.695673px;}
.xc{left:127.115673px;}
.xf{left:129.815660px;}
.x63{left:132.155650px;}
.x4{left:134.855648px;}
.x8{left:136.115651px;}
.xe{left:139.175634px;}
.x3{left:142.415630px;}
.x9{left:143.675623px;}
.x7{left:151.409611px;}
.x72{left:157.349596px;}
.x62{left:159.149586px;}
.x71{left:168.509559px;}
.x5{left:180.389539px;}
.x5e{left:201.629479px;}
.x60{left:203.429470px;}
.x54{left:256.889337px;}
.x65{left:287.354279px;}
.x4c{left:307.154225px;}
.x53{left:311.294207px;}
.x4e{left:339.014131px;}
.x42{left:366.914071px;}
.x2e{left:368.714062px;}
.x38{left:370.334059px;}
.x3b{left:372.494058px;}
.x22{left:374.114057px;}
.x45{left:376.094040px;}
.x1f{left:377.354054px;}
.x1b{left:378.614046px;}
.x21{left:380.054029px;}
.x34{left:381.314044px;}
.x48{left:382.934019px;}
.x1d{left:384.554018px;}
.x33{left:386.534023px;}
.x47{left:391.934020px;}
.x29{left:393.733987px;}
.x5d{left:395.174017px;}
.x28{left:396.793993px;}
.x3c{left:399.493968px;}
.x37{left:402.013996px;}
.x5c{left:403.633971px;}
.x66{left:412.633949px;}
.x2c{left:416.413923px;}
.x61{left:418.753959px;}
.x49{left:420.733920px;}
.x39{left:422.893919px;}
.x20{left:424.873924px;}
.x5f{left:426.133915px;}
.x4f{left:434.773909px;}
.x2d{left:438.553883px;}
.x50{left:441.793881px;}
.x52{left:456.733830px;}
.x70{left:459.793836px;}
.x58{left:460.873834px;}
.x2f{left:462.313817px;}
.x2{left:471.343825px;}
.x57{left:481.963779px;}
.x51{left:496.903728px;}
.x69{left:504.103737px;}
.x4d{left:515.263713px;}
.x67{left:522.823661px;}
.x68{left:528.403649px;}
.x27{left:576.463542px;}
.x1c{left:577.723533px;}
.x1e{left:616.963441px;}
.x23{left:627.583440px;}
.x6a{left:634.603410px;}
.x6b{left:640.183400px;}
.x2a{left:644.323358px;}
.x35{left:645.583395px;}
.x3d{left:646.663347px;}
.x2b{left:648.643354px;}
.x31{left:651.343375px;}
.x36{left:652.603365px;}
.x25{left:655.168347px;}
.x3f{left:657.688329px;}
.x43{left:658.768329px;}
.x32{left:663.088326px;}
.x46{left:667.408321px;}
.x30{left:670.288288px;}
.x3e{left:672.448287px;}
.x44{left:678.568298px;}
.x41{left:688.468282px;}
.x24{left:693.868232px;}
.x40{left:707.368199px;}
.x26{left:730.588157px;}
.x3a{left:738.868120px;}
.x4a{left:755.428090px;}
.x59{left:770.548078px;}
@media print{
.v4{vertical-align:-27.519953pt;}
.v2{vertical-align:-26.239929pt;}
.v8{vertical-align:-3.839836pt;}
.v3{vertical-align:-2.559887pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560172pt;}
.v6{vertical-align:31.359948pt;}
.v7{vertical-align:32.639892pt;}
.v1{vertical-align:39.679911pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.097914pt;}
.ls25{letter-spacing:0.117120pt;}
.ls27{letter-spacing:0.140666pt;}
.ls3{letter-spacing:0.196469pt;}
.lse{letter-spacing:0.196474pt;}
.ls14{letter-spacing:0.460788pt;}
.ls10{letter-spacing:12.863979pt;}
.ls7{letter-spacing:47.684862pt;}
.lsc{letter-spacing:61.764902pt;}
.ls5{letter-spacing:87.524768pt;}
.ls9{letter-spacing:93.284844pt;}
.ls8{letter-spacing:97.764812pt;}
.ls22{letter-spacing:98.618623pt;}
.ls1c{letter-spacing:101.818647pt;}
.ls4{letter-spacing:110.564748pt;}
.lsf{letter-spacing:113.434596pt;}
.ls19{letter-spacing:115.898569pt;}
.ls23{letter-spacing:121.018513pt;}
.ls21{letter-spacing:121.018588pt;}
.ls1e{letter-spacing:124.858509pt;}
.ls18{letter-spacing:131.258552pt;}
.lsd{letter-spacing:131.684652pt;}
.lsa{letter-spacing:148.964716pt;}
.ls6{letter-spacing:150.244664pt;}
.ls1d{letter-spacing:172.218497pt;}
.ls20{letter-spacing:179.258432pt;}
.ls1f{letter-spacing:185.658405pt;}
.ls26{letter-spacing:187.578486pt;}
.ls1a{letter-spacing:205.477038pt;}
.lsb{letter-spacing:218.724472pt;}
.ls15{letter-spacing:239.396954pt;}
.ls16{letter-spacing:242.618220pt;}
.ls1b{letter-spacing:270.138173pt;}
.ls24{letter-spacing:276.058243pt;}
.ls17{letter-spacing:311.738085pt;}
.ls12{letter-spacing:360.996628pt;}
.ls2{letter-spacing:472.814503pt;}
.ls13{letter-spacing:792.643458pt;}
.ws4{word-spacing:-63.999840pt;}
.ws6{word-spacing:-17.855955pt;}
.ws5{word-spacing:-17.663956pt;}
.ws7{word-spacing:-14.820443pt;}
.ws3{word-spacing:-11.999202pt;}
.ws2{word-spacing:-11.963490pt;}
.ws1{word-spacing:-11.834850pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-3.402930pt;}
._6{margin-left:-1.823033pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.279997pt;}
._c{width:2.367994pt;}
._9{width:3.391992pt;}
._a{width:4.959025pt;}
._11{width:5.986873pt;}
._21{width:7.043833pt;}
._25{width:8.700128pt;}
._1d{width:9.663976pt;}
._17{width:10.815973pt;}
._42{width:11.711971pt;}
._4{width:12.607968pt;}
._3{width:13.546633pt;}
._b{width:14.549297pt;}
._30{width:15.551961pt;}
._37{width:16.554625pt;}
._2d{width:18.586578pt;}
._5{width:19.524364pt;}
._7{width:20.510986pt;}
._56{width:21.408909pt;}
._e{width:22.356241pt;}
._2b{width:23.487941pt;}
._8{width:24.511939pt;}
._1f{width:25.855935pt;}
._2e{width:27.199932pt;}
._1c{width:28.543929pt;}
._36{width:29.566001pt;}
._19{width:30.521002pt;}
._18{width:31.664280pt;}
._2a{width:33.215917pt;}
._46{width:34.431914pt;}
._33{width:35.486949pt;}
._d{width:36.863908pt;}
._13{width:37.823905pt;}
._3b{width:38.847903pt;}
._39{width:40.076950pt;}
._24{width:41.087897pt;}
._3a{width:42.078932pt;}
._2c{width:43.647891pt;}
._38{width:44.574926pt;}
._41{width:46.077959pt;}
._27{width:47.039882pt;}
._28{width:48.222917pt;}
._29{width:49.182914pt;}
._1a{width:50.815873pt;}
._1b{width:51.839870pt;}
._26{width:52.863868pt;}
._23{width:54.719863pt;}
._f{width:55.743861pt;}
._10{width:57.118895pt;}
._3e{width:58.410515pt;}
._35{width:59.422889pt;}
._59{width:60.351849pt;}
._34{width:61.311847pt;}
._45{width:62.399844pt;}
._57{width:63.423841pt;}
._58{width:65.034493pt;}
._2f{width:66.846870pt;}
._15{width:67.839830pt;}
._16{width:68.863828pt;}
._3d{width:69.794714pt;}
._32{width:70.909897pt;}
._31{width:72.063820pt;}
._40{width:73.919815pt;}
._14{width:75.711811pt;}
._3f{width:76.607808pt;}
._20{width:77.567806pt;}
._3c{width:78.458123pt;}
._1e{width:79.489727pt;}
._12{width:80.769723pt;}
._22{width:82.299944pt;}
._6d{width:83.486597pt;}
._44{width:84.947041pt;}
._43{width:88.191780pt;}
._4b{width:92.973693pt;}
._61{width:96.648502pt;}
._48{width:101.173608pt;}
._50{width:105.790488pt;}
._49{width:108.960053pt;}
._4a{width:117.813540pt;}
._54{width:130.387919pt;}
._5a{width:148.346514pt;}
._52{width:157.836616pt;}
._4d{width:160.030341pt;}
._5d{width:161.122117pt;}
._4e{width:167.817026pt;}
._6b{width:173.977149pt;}
._4f{width:176.670193pt;}
._55{width:179.377232pt;}
._5c{width:183.788735pt;}
._5b{width:195.820060pt;}
._53{width:214.745151pt;}
._51{width:216.031881pt;}
._67{width:221.955706pt;}
._60{width:223.645356pt;}
._62{width:239.875667pt;}
._65{width:244.355677pt;}
._6c{width:263.117241pt;}
._4c{width:281.899855pt;}
._47{width:285.009930pt;}
._68{width:310.127246pt;}
._69{width:323.715463pt;}
._63{width:329.155356pt;}
._66{width:333.581246pt;}
._5e{width:335.235413pt;}
._64{width:370.842958pt;}
._6a{width:413.358660pt;}
._5f{width:423.992577pt;}
.fs7{font-size:38.399904pt;}
.fs4{font-size:42.879893pt;}
.fs5{font-size:43.007892pt;}
.fs0{font-size:53.119867pt;}
.fs6{font-size:53.247867pt;}
.fs3{font-size:58.879853pt;}
.fs8{font-size:59.007852pt;}
.fs1{font-size:63.999840pt;}
.fs2{font-size:64.127840pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.442829pt;}
.y19b{bottom:2.399978pt;}
.y85{bottom:7.999980pt;}
.y1fc{bottom:11.679984pt;}
.y3{bottom:21.119902pt;}
.y31{bottom:26.559911pt;}
.y30{bottom:46.079882pt;}
.y4{bottom:48.319866pt;}
.y1be{bottom:57.599872pt;}
.y2f{bottom:65.146484pt;}
.yb6{bottom:70.266507pt;}
.ye8{bottom:72.186425pt;}
.y22c{bottom:73.466451pt;}
.y14c{bottom:73.786437pt;}
.y1fa{bottom:75.066463pt;}
.y1bd{bottom:77.306448pt;}
.y19a{bottom:79.546432pt;}
.y11b{bottom:81.946410pt;}
.y2e{bottom:84.666455pt;}
.yb5{bottom:89.786397pt;}
.y158{bottom:89.946390pt;}
.y11a{bottom:90.426450pt;}
.y82{bottom:90.586444pt;}
.ye7{bottom:91.866388pt;}
.y22b{bottom:92.986421pt;}
.y14b{bottom:93.466401pt;}
.y1f9{bottom:94.746427pt;}
.y1bc{bottom:96.986411pt;}
.y199{bottom:99.066403pt;}
.y81{bottom:103.546372pt;}
.y2d{bottom:104.346419pt;}
.yb4{bottom:109.466361pt;}
.ye6{bottom:111.546352pt;}
.y22a{bottom:112.666385pt;}
.y14a{bottom:113.146364pt;}
.y1f8{bottom:114.426390pt;}
.y119{bottom:116.026322pt;}
.y117{bottom:116.346389pt;}
.y1bb{bottom:116.506382pt;}
.y80{bottom:116.666375pt;}
.y84{bottom:116.826368pt;}
.y198{bottom:118.746367pt;}
.y2c{bottom:124.026302pt;}
.y116{bottom:124.506362pt;}
.yb3{bottom:129.146324pt;}
.y7f{bottom:129.786297pt;}
.ye5{bottom:131.066323pt;}
.y118{bottom:132.346349pt;}
.y149{bottom:132.666335pt;}
.y1f7{bottom:133.946280pt;}
.y1ba{bottom:136.186265pt;}
.y197{bottom:138.426330pt;}
.y7e{bottom:142.906300pt;}
.y2b{bottom:143.546272pt;}
.y83{bottom:146.266317pt;}
.yb2{bottom:148.666295pt;}
.y115{bottom:150.106233pt;}
.y113{bottom:150.426300pt;}
.ye4{bottom:150.746287pt;}
.y229{bottom:151.866238pt;}
.y148{bottom:152.346299pt;}
.y1f6{bottom:153.626244pt;}
.y1b9{bottom:155.706235pt;}
.y196{bottom:157.946220pt;}
.y112{bottom:158.586274pt;}
.y7c{bottom:160.986251pt;}
.y2a{bottom:163.226236pt;}
.y114{bottom:166.426260pt;}
.yb1{bottom:168.346259pt;}
.ye3{bottom:170.266257pt;}
.y228{bottom:171.546202pt;}
.y147{bottom:171.866188pt;}
.y1f5{bottom:173.306208pt;}
.y7b{bottom:174.106173pt;}
.y1b8{bottom:175.386199pt;}
.y195{bottom:177.626184pt;}
.y29{bottom:182.906200pt;}
.y111{bottom:184.186145pt;}
.y7a{bottom:187.226176pt;}
.yb0{bottom:187.866148pt;}
.y157{bottom:188.026142pt;}
.ye2{bottom:189.946140pt;}
.y227{bottom:191.066173pt;}
.y146{bottom:191.546152pt;}
.y110{bottom:192.666185pt;}
.y1f4{bottom:192.826178pt;}
.y1b7{bottom:195.066163pt;}
.y194{bottom:197.146154pt;}
.y79{bottom:200.346179pt;}
.y7d{bottom:200.826158pt;}
.y28{bottom:202.426170pt;}
.yaf{bottom:207.546112pt;}
.ye1{bottom:209.626104pt;}
.y226{bottom:210.746137pt;}
.y145{bottom:211.226116pt;}
.y1f3{bottom:212.506142pt;}
.y1b6{bottom:214.586134pt;}
.y78{bottom:215.706085pt;}
.y193{bottom:216.826118pt;}
.y10f{bottom:218.106063pt;}
.y27{bottom:222.106053pt;}
.y73{bottom:222.266127pt;}
.y10e{bottom:226.586104pt;}
.yae{bottom:227.226076pt;}
.y77{bottom:228.826088pt;}
.ye0{bottom:229.146074pt;}
.y225{bottom:230.426100pt;}
.y144{bottom:230.746087pt;}
.y1f2{bottom:232.026032pt;}
.y1b5{bottom:234.266097pt;}
.y72{bottom:235.226056pt;}
.y192{bottom:236.506082pt;}
.y26{bottom:241.626024pt;}
.y76{bottom:241.786017pt;}
.yad{bottom:246.746047pt;}
.y156{bottom:246.906040pt;}
.y71{bottom:248.346059pt;}
.ydf{bottom:248.826038pt;}
.y224{bottom:249.945990pt;}
.y143{bottom:250.426050pt;}
.y1f1{bottom:251.705995pt;}
.y10d{bottom:252.185975pt;}
.y1b4{bottom:253.785987pt;}
.y75{bottom:254.906020pt;}
.y191{bottom:256.025972pt;}
.y10c{bottom:260.666015pt;}
.y25{bottom:261.305988pt;}
.y70{bottom:261.625974pt;}
.yac{bottom:266.426010pt;}
.yde{bottom:268.346009pt;}
.y74{bottom:268.665995pt;}
.y223{bottom:269.625954pt;}
.y142{bottom:269.945940pt;}
.y1f0{bottom:271.385959pt;}
.y1b3{bottom:273.465951pt;}
.y190{bottom:275.705935pt;}
.y24{bottom:280.985951pt;}
.y6c{bottom:283.225936pt;}
.yab{bottom:286.105893pt;}
.y10b{bottom:286.265967pt;}
.ydd{bottom:288.025892pt;}
.y222{bottom:289.145924pt;}
.y141{bottom:289.625904pt;}
.y6f{bottom:289.785897pt;}
.y1ef{bottom:290.905930pt;}
.y1b2{bottom:293.145914pt;}
.y10a{bottom:294.745927pt;}
.y18f{bottom:295.385899pt;}
.y6b{bottom:296.345939pt;}
.y23{bottom:300.505922pt;}
.y6e{bottom:302.945857pt;}
.yaa{bottom:305.665903pt;}
.ydc{bottom:307.745895pt;}
.y221{bottom:308.865845pt;}
.y140{bottom:309.345907pt;}
.y6a{bottom:309.505900pt;}
.y1ee{bottom:310.625851pt;}
.y1b1{bottom:312.705842pt;}
.y18e{bottom:314.945827pt;}
.y22{bottom:320.225843pt;}
.y69{bottom:322.625821pt;}
.y6d{bottom:323.105800pt;}
.ya9{bottom:325.345867pt;}
.ydb{bottom:327.265864pt;}
.y220{bottom:328.545809pt;}
.y109{bottom:328.705802pt;}
.y13f{bottom:328.865795pt;}
.y1ed{bottom:330.145821pt;}
.y1b0{bottom:332.385806pt;}
.y18d{bottom:334.625791pt;}
.y21{bottom:339.745815pt;}
.y67{bottom:344.385776pt;}
.ya8{bottom:344.865755pt;}
.y155{bottom:345.025749pt;}
.yda{bottom:346.945747pt;}
.y21f{bottom:348.065781pt;}
.y13e{bottom:348.545759pt;}
.y1ec{bottom:349.825785pt;}
.y1af{bottom:351.905778pt;}
.y18c{bottom:354.145761pt;}
.y108{bottom:354.305756pt;}
.y66{bottom:357.505780pt;}
.y20{bottom:359.425777pt;}
.y107{bottom:362.785714pt;}
.ya7{bottom:364.545719pt;}
.yd9{bottom:366.625711pt;}
.y21e{bottom:367.745745pt;}
.y13d{bottom:368.065731pt;}
.y1eb{bottom:369.505750pt;}
.y65{bottom:370.625701pt;}
.y1ae{bottom:371.585742pt;}
.y18b{bottom:373.825725pt;}
.y68{bottom:377.665723pt;}
.y1f{bottom:379.105660pt;}
.ya6{bottom:384.225683pt;}
.yd8{bottom:386.145681pt;}
.y21d{bottom:387.265714pt;}
.y13c{bottom:387.745695pt;}
.y106{bottom:388.385666pt;}
.y1ea{bottom:389.025639pt;}
.y1ad{bottom:391.265704pt;}
.y63{bottom:392.385656pt;}
.y18a{bottom:393.505690pt;}
.y105{bottom:396.865625pt;}
.y1e{bottom:398.625631pt;}
.ya5{bottom:403.745655pt;}
.y62{bottom:405.505660pt;}
.yd7{bottom:405.825645pt;}
.y21c{bottom:406.945597pt;}
.y13b{bottom:407.425657pt;}
.y1e9{bottom:408.705602pt;}
.y1ac{bottom:410.785594pt;}
.y189{bottom:413.025579pt;}
.y1d{bottom:418.305596pt;}
.y61{bottom:418.625581pt;}
.ya4{bottom:423.425617pt;}
.yd6{bottom:425.345617pt;}
.y21b{bottom:426.625561pt;}
.y14d{bottom:426.945547pt;}
.y13a{bottom:427.585602pt;}
.y1e8{bottom:428.225573pt;}
.y1ab{bottom:430.465559pt;}
.y60{bottom:431.745585pt;}
.y64{bottom:432.225563pt;}
.y188{bottom:432.705542pt;}
.y1c{bottom:437.825565pt;}
.ya3{bottom:442.945549pt;}
.y154{bottom:443.105542pt;}
.yd5{bottom:445.025539pt;}
.y21a{bottom:446.145531pt;}
.y139{bottom:446.625511pt;}
.y1e7{bottom:447.905538pt;}
.y1aa{bottom:450.145521pt;}
.y187{bottom:452.225513pt;}
.y5e{bottom:453.505498pt;}
.y1b{bottom:457.505488pt;}
.ya2{bottom:462.625471pt;}
.yd4{bottom:464.705462pt;}
.y219{bottom:465.825495pt;}
.y138{bottom:466.145481pt;}
.y5d{bottom:466.465469pt;}
.y1e6{bottom:467.585460pt;}
.y1fb{bottom:468.225473pt;}
.y1a9{bottom:469.665453pt;}
.y186{bottom:471.905478pt;}
.y1a{bottom:477.185452pt;}
.y5c{bottom:479.585430pt;}
.ya1{bottom:482.305436pt;}
.yd3{bottom:484.225433pt;}
.y218{bottom:485.345425pt;}
.y137{bottom:485.825445pt;}
.y1e5{bottom:487.105432pt;}
.y1a8{bottom:489.345415pt;}
.y185{bottom:491.585400pt;}
.y5b{bottom:492.865427pt;}
.y19{bottom:496.705382pt;}
.y5f{bottom:499.745415pt;}
.yb7{bottom:501.825405pt;}
.ya0{bottom:502.465379pt;}
.yd2{bottom:503.905398pt;}
.y217{bottom:505.025389pt;}
.y136{bottom:505.505368pt;}
.y1e4{bottom:506.785394pt;}
.y104{bottom:508.385366pt;}
.y1a7{bottom:508.865387pt;}
.y184{bottom:511.105372pt;}
.y59{bottom:514.465349pt;}
.y18{bottom:516.385346pt;}
.y153{bottom:521.505328pt;}
.yd1{bottom:523.425327pt;}
.y216{bottom:524.705312pt;}
.y135{bottom:525.025339pt;}
.y1e3{bottom:526.305326pt;}
.y58{bottom:527.585310pt;}
.y103{bottom:528.065331pt;}
.y1a6{bottom:528.545309pt;}
.y183{bottom:530.785334pt;}
.y9f{bottom:532.225313pt;}
.y17{bottom:535.905318pt;}
.y57{bottom:540.731966pt;}
.y152{bottom:541.211944pt;}
.yd0{bottom:543.131944pt;}
.y215{bottom:544.251935pt;}
.y134{bottom:544.731956pt;}
.y1e2{bottom:546.011940pt;}
.y102{bottom:547.611954pt;}
.y1a5{bottom:548.251925pt;}
.y182{bottom:550.331918pt;}
.y9e{bottom:551.931930pt;}
.y56{bottom:553.851927pt;}
.y5a{bottom:554.331908pt;}
.y16{bottom:555.611934pt;}
.y151{bottom:560.731916pt;}
.ycf{bottom:562.811906pt;}
.y214{bottom:563.931900pt;}
.y133{bottom:564.251885pt;}
.y1e1{bottom:565.691904pt;}
.y101{bottom:567.291876pt;}
.y1a4{bottom:567.771897pt;}
.y54{bottom:569.211874pt;}
.y181{bottom:570.011880pt;}
.y9d{bottom:571.451899pt;}
.y15{bottom:575.291856pt;}
.y150{bottom:580.411880pt;}
.y53{bottom:582.171843pt;}
.yce{bottom:582.331838pt;}
.y213{bottom:583.611864pt;}
.y132{bottom:583.931850pt;}
.y1e0{bottom:585.211834pt;}
.y100{bottom:586.971841pt;}
.y1a3{bottom:587.451859pt;}
.y180{bottom:589.691844pt;}
.y9c{bottom:591.131824pt;}
.y52{bottom:595.291806pt;}
.y14{bottom:595.451839pt;}
.y14f{bottom:599.931810pt;}
.ycd{bottom:602.011800pt;}
.y212{bottom:603.131794pt;}
.y131{bottom:603.611814pt;}
.y1df{bottom:604.891798pt;}
.yff{bottom:606.491810pt;}
.y1a2{bottom:606.971791pt;}
.y51{bottom:608.411810pt;}
.y55{bottom:609.051781pt;}
.y17f{bottom:609.211774pt;}
.y9b{bottom:610.811786pt;}
.y13{bottom:614.491790pt;}
.y14e{bottom:619.611774pt;}
.ycc{bottom:621.531772pt;}
.y211{bottom:622.811756pt;}
.y130{bottom:623.131744pt;}
.y4d{bottom:623.451769pt;}
.y1de{bottom:624.411770pt;}
.yfe{bottom:626.171733pt;}
.y1a1{bottom:626.651753pt;}
.y17e{bottom:628.891738pt;}
.y9a{bottom:630.331718pt;}
.y12{bottom:634.171713pt;}
.y4c{bottom:636.411740pt;}
.ycb{bottom:641.211694pt;}
.y210{bottom:642.331688pt;}
.y12f{bottom:642.811706pt;}
.y50{bottom:642.971701pt;}
.y1dd{bottom:644.091692pt;}
.yfd{bottom:645.691704pt;}
.y1a0{bottom:646.331678pt;}
.y17d{bottom:648.411710pt;}
.y4b{bottom:649.531702pt;}
.y99{bottom:650.011680pt;}
.y11{bottom:654.331658pt;}
.y4f{bottom:656.091662pt;}
.y169{bottom:657.531682pt;}
.yca{bottom:660.891658pt;}
.y20f{bottom:662.011650pt;}
.y12e{bottom:662.491670pt;}
.y4a{bottom:662.651663pt;}
.y1dc{bottom:663.771657pt;}
.yfc{bottom:665.371627pt;}
.y19f{bottom:665.851647pt;}
.y17c{bottom:668.091632pt;}
.y4e{bottom:669.211624pt;}
.y98{bottom:669.531652pt;}
.y10{bottom:673.371607pt;}
.y49{bottom:675.771627pt;}
.yc9{bottom:680.411630pt;}
.y20e{bottom:681.691614pt;}
.y12d{bottom:682.011600pt;}
.y1db{bottom:683.291586pt;}
.yfb{bottom:685.051591pt;}
.y19e{bottom:685.531612pt;}
.y168{bottom:686.171583pt;}
.y17b{bottom:687.771597pt;}
.y48{bottom:688.891588pt;}
.y97{bottom:689.211574pt;}
.yf{bottom:692.891578pt;}
.yc8{bottom:700.091552pt;}
.y20d{bottom:701.211544pt;}
.y12c{bottom:701.691564pt;}
.y1da{bottom:702.971551pt;}
.yfa{bottom:704.571563pt;}
.y19d{bottom:705.051541pt;}
.y17a{bottom:707.291526pt;}
.y96{bottom:708.891538pt;}
.y47{bottom:709.691544pt;}
.ye{bottom:713.211514pt;}
.y167{bottom:714.971521pt;}
.y42{bottom:716.251505pt;}
.yc7{bottom:719.611524pt;}
.y20c{bottom:720.891508pt;}
.y12b{bottom:721.211494pt;}
.y1d9{bottom:722.651513pt;}
.y46{bottom:722.811506pt;}
.yf9{bottom:724.251485pt;}
.y19c{bottom:724.731506pt;}
.y179{bottom:726.971491pt;}
.y95{bottom:728.411510pt;}
.y41{bottom:729.371467pt;}
.yd{bottom:732.251465pt;}
.y45{bottom:735.931470pt;}
.y166{bottom:738.811466pt;}
.yc6{bottom:739.291446pt;}
.y20b{bottom:740.411480pt;}
.y12a{bottom:740.891458pt;}
.y1d8{bottom:742.171443pt;}
.y40{bottom:742.651463pt;}
.yf8{bottom:743.771457pt;}
.y178{bottom:746.491460pt;}
.y94{bottom:748.091432pt;}
.y44{bottom:749.051431pt;}
.yc{bottom:752.411450pt;}
.y3f{bottom:755.611434pt;}
.yc5{bottom:758.971411pt;}
.y20a{bottom:760.091402pt;}
.y129{bottom:760.571423pt;}
.y1d7{bottom:761.851407pt;}
.y165{bottom:762.491420pt;}
.yf7{bottom:763.451419pt;}
.y1ca{bottom:764.091392pt;}
.y177{bottom:766.171383pt;}
.y93{bottom:767.611404pt;}
.y43{bottom:768.731396pt;}
.yb{bottom:772.091372pt;}
.yc4{bottom:778.531379pt;}
.y209{bottom:779.811364pt;}
.y128{bottom:780.131351pt;}
.y1d6{bottom:781.411356pt;}
.yf6{bottom:783.171362pt;}
.y176{bottom:785.891346pt;}
.y164{bottom:786.371346pt;}
.y3e{bottom:786.691352pt;}
.y92{bottom:787.331345pt;}
.y1c9{bottom:787.811344pt;}
.ya{bottom:791.011328pt;}
.yc3{bottom:798.211322pt;}
.y208{bottom:799.331315pt;}
.y127{bottom:799.811314pt;}
.y1d5{bottom:801.091300pt;}
.yf5{bottom:802.691312pt;}
.y3a{bottom:804.291304pt;}
.y175{bottom:805.411296pt;}
.y91{bottom:807.011288pt;}
.y163{bottom:810.051279pt;}
.y9{bottom:810.691292pt;}
.y3d{bottom:810.851285pt;}
.y1c8{bottom:811.971278pt;}
.y39{bottom:817.411266pt;}
.yc2{bottom:817.731273pt;}
.y207{bottom:819.011258pt;}
.y126{bottom:819.331265pt;}
.y1d4{bottom:820.771264pt;}
.yf4{bottom:822.371256pt;}
.y3c{bottom:823.971248pt;}
.y174{bottom:825.091240pt;}
.y8{bottom:830.371236pt;}
.y38{bottom:830.531229pt;}
.y162{bottom:833.891226pt;}
.y1c7{bottom:835.971218pt;}
.y3b{bottom:837.091210pt;}
.y90{bottom:837.251223pt;}
.yc1{bottom:837.411216pt;}
.y206{bottom:838.531209pt;}
.y125{bottom:839.011208pt;}
.y1d3{bottom:840.291214pt;}
.yf3{bottom:842.051199pt;}
.y37{bottom:843.651211pt;}
.y173{bottom:844.771204pt;}
.y7{bottom:849.891186pt;}
.y36{bottom:856.771174pt;}
.yc0{bottom:857.091160pt;}
.y205{bottom:858.211172pt;}
.y124{bottom:858.691172pt;}
.y1c6{bottom:859.971158pt;}
.y161{bottom:860.611150pt;}
.yf2{bottom:861.571150pt;}
.y172{bottom:864.291154pt;}
.y8f{bottom:868.131131pt;}
.y6{bottom:869.571130pt;}
.y35{bottom:871.171142pt;}
.ybf{bottom:876.611110pt;}
.y204{bottom:877.891116pt;}
.y123{bottom:878.211122pt;}
.y22d{bottom:878.531109pt;}
.y1d2{bottom:879.491108pt;}
.yf1{bottom:881.251113pt;}
.y171{bottom:883.971098pt;}
.y1c5{bottom:884.131091pt;}
.y8e{bottom:887.811094pt;}
.y5{bottom:889.731093pt;}
.y160{bottom:890.211092pt;}
.y34{bottom:891.651091pt;}
.ybe{bottom:896.291074pt;}
.y203{bottom:897.411066pt;}
.y122{bottom:897.891066pt;}
.y1d1{bottom:899.171072pt;}
.yf0{bottom:900.771064pt;}
.y170{bottom:903.491048pt;}
.y33{bottom:904.771054pt;}
.y8d{bottom:907.331045pt;}
.y32{bottom:907.971038pt;}
.y1c4{bottom:908.131031pt;}
.ybd{bottom:915.971018pt;}
.y202{bottom:917.091010pt;}
.y121{bottom:917.411016pt;}
.y1d0{bottom:918.851015pt;}
.yef{bottom:920.451007pt;}
.y15f{bottom:920.931007pt;}
.y16f{bottom:923.171012pt;}
.y8c{bottom:926.370996pt;}
.y15d{bottom:929.090980pt;}
.y1c3{bottom:932.290984pt;}
.ybc{bottom:935.490968pt;}
.y201{bottom:936.610960pt;}
.y120{bottom:937.090960pt;}
.y15c{bottom:937.250973pt;}
.y1cf{bottom:938.370966pt;}
.yee{bottom:940.130951pt;}
.y16e{bottom:942.850955pt;}
.y8b{bottom:946.050939pt;}
.y15e{bottom:953.730922pt;}
.ybb{bottom:955.170921pt;}
.y1c2{bottom:955.970918pt;}
.y200{bottom:956.290924pt;}
.y11f{bottom:956.770924pt;}
.y1ce{bottom:958.050920pt;}
.yed{bottom:959.650912pt;}
.y16d{bottom:962.370906pt;}
.y8a{bottom:965.570899pt;}
.yba{bottom:974.690871pt;}
.y1ff{bottom:975.970868pt;}
.y11e{bottom:976.290874pt;}
.y1cd{bottom:977.570869pt;}
.yec{bottom:979.330865pt;}
.y16c{bottom:982.050860pt;}
.y1c1{bottom:983.330855pt;}
.y15b{bottom:984.610850pt;}
.y89{bottom:985.250844pt;}
.yb9{bottom:994.365495pt;}
.ye9{bottom:995.005488pt;}
.y1fe{bottom:995.485487pt;}
.y11d{bottom:995.965487pt;}
.y1cc{bottom:997.245483pt;}
.yeb{bottom:998.845484pt;}
.y16b{bottom:1001.565469pt;}
.y1c0{bottom:1002.845474pt;}
.y15a{bottom:1004.125471pt;}
.y88{bottom:1004.765463pt;}
.yb8{bottom:1014.077441pt;}
.y1fd{bottom:1015.197443pt;}
.y11c{bottom:1015.517440pt;}
.y1cb{bottom:1016.957439pt;}
.yea{bottom:1018.557431pt;}
.y16a{bottom:1021.277425pt;}
.y1bf{bottom:1022.557421pt;}
.y159{bottom:1023.837416pt;}
.y87{bottom:1025.117412pt;}
.y86{bottom:1084.317267pt;}
.y2{bottom:1096.957234pt;}
.ha{height:32.159920pt;}
.h8{height:32.243669pt;}
.h9{height:32.339919pt;}
.h15{height:39.839900pt;}
.hf{height:39.943650pt;}
.h16{height:40.039900pt;}
.hc{height:43.354892pt;}
.h17{height:44.274889pt;}
.h18{height:44.371139pt;}
.hd{height:47.124882pt;}
.h4{height:47.999880pt;}
.h14{height:48.095880pt;}
.h5{height:48.124880pt;}
.h6{height:48.221129pt;}
.h3{height:52.834555pt;}
.hb{height:61.915064pt;}
.he{height:63.656091pt;}
.h12{height:71.303593pt;}
.h10{height:71.303598pt;}
.h11{height:71.559677pt;}
.h7{height:71.923581pt;}
.h13{height:72.479792pt;}
.h19{height:76.634755pt;}
.h2{height:1122.557154pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:793.758013pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:20.159938pt;}
.x14{left:21.919935pt;}
.x11{left:23.679929pt;}
.x15{left:26.079921pt;}
.x13{left:27.199920pt;}
.x18{left:28.319917pt;}
.x10{left:33.279903pt;}
.x16{left:39.519888pt;}
.x1{left:41.599885pt;}
.x12{left:43.199883pt;}
.x19{left:48.959867pt;}
.x6{left:52.639856pt;}
.x6f{left:55.839850pt;}
.x1a{left:57.599845pt;}
.x55{left:59.999838pt;}
.x56{left:61.279833pt;}
.x6e{left:62.719833pt;}
.x5a{left:68.159816pt;}
.x73{left:70.239812pt;}
.x5b{left:71.839810pt;}
.x4b{left:72.959807pt;}
.x74{left:74.239802pt;}
.x6d{left:77.151792pt;}
.xd{left:92.991760pt;}
.xa{left:96.831747pt;}
.x6c{left:101.951729pt;}
.xb{left:102.911728pt;}
.x64{left:109.951709pt;}
.xc{left:112.991710pt;}
.xf{left:115.391698pt;}
.x63{left:117.471689pt;}
.x4{left:119.871687pt;}
.x8{left:120.991690pt;}
.xe{left:123.711675pt;}
.x3{left:126.591672pt;}
.x9{left:127.711665pt;}
.x7{left:134.586321pt;}
.x72{left:139.866308pt;}
.x62{left:141.466298pt;}
.x71{left:149.786275pt;}
.x5{left:160.346256pt;}
.x5e{left:179.226204pt;}
.x60{left:180.826196pt;}
.x54{left:228.346077pt;}
.x65{left:255.426025pt;}
.x4c{left:273.025977pt;}
.x53{left:276.705962pt;}
.x4e{left:301.345895pt;}
.x42{left:326.145841pt;}
.x2e{left:327.745833pt;}
.x38{left:329.185830pt;}
.x3b{left:331.105830pt;}
.x22{left:332.545829pt;}
.x45{left:334.305814pt;}
.x1f{left:335.425825pt;}
.x1b{left:336.545819pt;}
.x21{left:337.825803pt;}
.x34{left:338.945817pt;}
.x48{left:340.385794pt;}
.x1d{left:341.825793pt;}
.x33{left:343.585798pt;}
.x47{left:348.385796pt;}
.x29{left:349.985766pt;}
.x5d{left:351.265792pt;}
.x28{left:352.705772pt;}
.x3c{left:355.105750pt;}
.x37{left:357.345775pt;}
.x5c{left:358.785752pt;}
.x66{left:366.785732pt;}
.x2c{left:370.145709pt;}
.x61{left:372.225741pt;}
.x49{left:373.985706pt;}
.x39{left:375.905706pt;}
.x20{left:377.665711pt;}
.x5f{left:378.785702pt;}
.x4f{left:386.465697pt;}
.x2d{left:389.825673pt;}
.x50{left:392.705672pt;}
.x52{left:405.985626pt;}
.x70{left:408.705632pt;}
.x58{left:409.665631pt;}
.x2f{left:410.945615pt;}
.x2{left:418.972289pt;}
.x57{left:428.412248pt;}
.x51{left:441.692202pt;}
.x69{left:448.092210pt;}
.x4d{left:458.012190pt;}
.x67{left:464.732144pt;}
.x68{left:469.692132pt;}
.x27{left:512.412038pt;}
.x1c{left:513.532030pt;}
.x1e{left:548.411948pt;}
.x23{left:557.851947pt;}
.x6a{left:564.091920pt;}
.x6b{left:569.051911pt;}
.x2a{left:572.731874pt;}
.x35{left:573.851907pt;}
.x3d{left:574.811864pt;}
.x2b{left:576.571871pt;}
.x31{left:578.971889pt;}
.x36{left:580.091880pt;}
.x25{left:582.371864pt;}
.x3f{left:584.611848pt;}
.x43{left:585.571848pt;}
.x32{left:589.411845pt;}
.x46{left:593.251841pt;}
.x30{left:595.811812pt;}
.x3e{left:597.731811pt;}
.x44{left:603.171820pt;}
.x41{left:611.971806pt;}
.x24{left:616.771762pt;}
.x40{left:628.771732pt;}
.x26{left:649.411695pt;}
.x3a{left:656.771662pt;}
.x4a{left:671.491636pt;}
.x59{left:684.931625pt;}
}




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