
    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_3f5dd45a6eb91d26b34e3c6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_635833a734d8297d4f8d18b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_15bf3ac8875efd9f458b8d4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.692383;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_18fe75b8330b23e0224aec5c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_97d7c60d2acc9725cf52430d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_ab32f74e132274ce9144c1ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115723;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_533be429df1b901f95b97e41.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894531;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_cfaec4a818f49dc867157aea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2c8fea2ade6ce9db5fb04d66.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_56aca4a08096d4718d5a0d66.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ba6e78f90e21d46c3abc0fd8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9fd2a64ba1f3ac6b7a164244.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.687500;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);}
.v6{vertical-align:-33.120000px;}
.v3{vertical-align:-27.360000px;}
.v5{vertical-align:-18.720000px;}
.v4{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls41{letter-spacing:-0.172800px;}
.ls40{letter-spacing:-0.158400px;}
.ls49{letter-spacing:-0.108000px;}
.ls44{letter-spacing:-0.072000px;}
.ls43{letter-spacing:-0.057600px;}
.ls10{letter-spacing:-0.050400px;}
.ls42{letter-spacing:-0.043200px;}
.ls11{letter-spacing:-0.036000px;}
.ls3a{letter-spacing:-0.028800px;}
.ls12{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.003600px;}
.ls4c{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.014400px;}
.ls24{letter-spacing:0.015480px;}
.lse{letter-spacing:0.019008px;}
.ls4b{letter-spacing:0.019200px;}
.ls4d{letter-spacing:0.032400px;}
.ls1e{letter-spacing:0.054780px;}
.ls2e{letter-spacing:0.059400px;}
.ls31{letter-spacing:0.059580px;}
.ls19{letter-spacing:0.059940px;}
.ls33{letter-spacing:0.060600px;}
.ls3c{letter-spacing:0.062208px;}
.ls58{letter-spacing:0.159840px;}
.ls5e{letter-spacing:0.170496px;}
.lsf{letter-spacing:0.179400px;}
.ls5b{letter-spacing:0.181152px;}
.ls5f{letter-spacing:0.186480px;}
.ls57{letter-spacing:0.191808px;}
.ls48{letter-spacing:0.199584px;}
.ls5a{letter-spacing:0.202464px;}
.ls21{letter-spacing:0.205800px;}
.ls5d{letter-spacing:0.207792px;}
.ls1f{letter-spacing:0.224100px;}
.ls54{letter-spacing:0.224352px;}
.ls4f{letter-spacing:0.230256px;}
.ls2a{letter-spacing:0.239940px;}
.ls6{letter-spacing:0.240000px;}
.ls25{letter-spacing:0.240600px;}
.ls3{letter-spacing:0.242064px;}
.ls50{letter-spacing:0.247968px;}
.ls55{letter-spacing:0.250992px;}
.ls23{letter-spacing:0.251580px;}
.ls16{letter-spacing:0.253872px;}
.ls2f{letter-spacing:0.257280px;}
.ls2{letter-spacing:0.286848px;}
.ls51{letter-spacing:0.298080px;}
.ls52{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.318816px;}
.ls3d{letter-spacing:0.319680px;}
.ls1d{letter-spacing:0.320160px;}
.ls1a{letter-spacing:0.320280px;}
.ls1b{letter-spacing:0.320880px;}
.ls46{letter-spacing:0.327720px;}
.ls56{letter-spacing:0.360000px;}
.ls59{letter-spacing:0.362304px;}
.lsd{letter-spacing:0.373200px;}
.ls17{letter-spacing:0.383760px;}
.ls14{letter-spacing:0.419184px;}
.ls22{letter-spacing:0.462000px;}
.ls8{letter-spacing:0.478224px;}
.ls5c{letter-spacing:0.479520px;}
.ls39{letter-spacing:0.484128px;}
.ls1c{letter-spacing:0.501840px;}
.ls60{letter-spacing:0.527472px;}
.ls9{letter-spacing:0.543168px;}
.ls53{letter-spacing:0.543360px;}
.ls26{letter-spacing:0.549072px;}
.ls45{letter-spacing:0.577800px;}
.lsa{letter-spacing:0.578592px;}
.ls27{letter-spacing:0.602640px;}
.ls15{letter-spacing:0.637632px;}
.ls13{letter-spacing:0.702576px;}
.ls36{letter-spacing:0.702720px;}
.ls2b{letter-spacing:0.703320px;}
.ls3b{letter-spacing:0.709200px;}
.ls38{letter-spacing:0.719280px;}
.ls37{letter-spacing:0.722304px;}
.ls5{letter-spacing:0.732720px;}
.ls2c{letter-spacing:0.795000px;}
.ls20{letter-spacing:0.802944px;}
.ls32{letter-spacing:0.845400px;}
.ls35{letter-spacing:0.861984px;}
.ls3f{letter-spacing:2.736000px;}
.ls3e{letter-spacing:2.737800px;}
.lsc{letter-spacing:2.922000px;}
.ls30{letter-spacing:3.359400px;}
.ls34{letter-spacing:4.960800px;}
.ls18{letter-spacing:7.794600px;}
.lsb{letter-spacing:20.375400px;}
.ls47{letter-spacing:41.783760px;}
.ls4a{letter-spacing:54.866940px;}
.ls28{letter-spacing:194.399280px;}
.ls2d{letter-spacing:194.399400px;}
.ls29{letter-spacing:194.399460px;}
.ls4{letter-spacing:197.639400px;}
.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;}
}
.ws21{word-spacing:-30.130992px;}
.wsa{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.985600px;}
.ws18{word-spacing:-17.971200px;}
.ws1d{word-spacing:-17.956800px;}
.ws6{word-spacing:-17.949600px;}
.ws1e{word-spacing:-17.942400px;}
.ws12{word-spacing:-16.802640px;}
.wsc{word-spacing:-15.462576px;}
.ws9{word-spacing:-15.397632px;}
.ws4{word-spacing:-15.338592px;}
.ws20{word-spacing:-15.303168px;}
.ws3{word-spacing:-15.238224px;}
.wsd{word-spacing:-15.179184px;}
.ws15{word-spacing:-15.143760px;}
.ws1{word-spacing:-15.078816px;}
.ws2{word-spacing:-15.002064px;}
.wse{word-spacing:-14.760000px;}
.ws23{word-spacing:-13.799520px;}
.ws22{word-spacing:-13.682304px;}
.ws16{word-spacing:-12.602304px;}
.wsf{word-spacing:-11.880000px;}
.ws17{word-spacing:-10.439280px;}
.ws11{word-spacing:-0.608112px;}
.ws1f{word-spacing:-0.294624px;}
.ws19{word-spacing:-0.101088px;}
.ws13{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:0.390288px;}
.ws1c{word-spacing:1.552488px;}
.ws1b{word-spacing:6.362688px;}
.ws8{word-spacing:26.772432px;}
.ws10{word-spacing:26.773032px;}
.wsb{word-spacing:26.773632px;}
.ws14{word-spacing:26.774232px;}
._33{margin-left:-2.648640px;}
._2{margin-left:-1.209240px;}
._1{width:1.003680px;}
._13{width:2.024640px;}
._5{width:3.052800px;}
._a{width:4.550400px;}
._9{width:6.112800px;}
._19{width:7.178400px;}
._d{width:8.992800px;}
._c{width:10.677600px;}
._3{width:11.836800px;}
._11{width:13.168800px;}
._f{width:14.853600px;}
._1b{width:15.859800px;}
._7{width:16.970400px;}
._e{width:19.012200px;}
._b{width:20.203200px;}
._10{width:22.017600px;}
._4{width:23.371200px;}
._1f{width:24.972660px;}
._1c{width:26.474400px;}
._1e{width:27.770400px;}
._16{width:29.723460px;}
._22{width:30.958140px;}
._24{width:32.871660px;}
._17{width:33.886740px;}
._2f{width:34.969620px;}
._1d{width:36.028800px;}
._12{width:37.194060px;}
._18{width:38.446080px;}
._30{width:39.724320px;}
._6{width:41.040000px;}
._23{width:42.861660px;}
._20{width:44.503200px;}
._1a{width:45.907200px;}
._2b{width:47.534400px;}
._2e{width:50.493600px;}
._2c{width:53.460000px;}
._15{width:54.549060px;}
._26{width:55.866420px;}
._21{width:57.528000px;}
._14{width:58.622400px;}
._2d{width:60.228000px;}
._31{width:61.308000px;}
._29{width:62.373600px;}
._25{width:64.598400px;}
._27{width:104.399460px;}
._28{width:122.399280px;}
._2a{width:176.399460px;}
._8{width:194.399400px;}
._0{width:845.999880px;}
._32{width:3758.100000px;}
.fc6{color:rgb(3,37,83);}
.fc4{color:transparent;}
.fc5{color:rgb(38,38,38);}
.fc3{color:rgb(53,53,53);}
.fc2{color:rgb(166,166,166);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:47.520000px;}
.fsa{font-size:53.280000px;}
.fs5{font-size:59.040000px;}
.fs4{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:89.280000px;}
.fs0{font-size:95.040000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:119.520000px;}
.fs6{font-size:136.800000px;}
.y0{bottom:0.000000px;}
.y12{bottom:3.599985px;}
.y128{bottom:3.960000px;}
.y84{bottom:4.320000px;}
.yca{bottom:5.760000px;}
.y3f{bottom:7.200000px;}
.y166{bottom:10.799970px;}
.y168{bottom:10.800000px;}
.y16b{bottom:10.800015px;}
.y54{bottom:12.600000px;}
.y9e{bottom:13.319985px;}
.yce{bottom:13.320000px;}
.y1{bottom:13.500000px;}
.y14b{bottom:14.399970px;}
.y153{bottom:15.840000px;}
.y15a{bottom:18.000000px;}
.y13c{bottom:18.359955px;}
.y7d{bottom:18.359970px;}
.yc6{bottom:18.359985px;}
.y9c{bottom:18.360000px;}
.y156{bottom:18.360015px;}
.y136{bottom:18.719955px;}
.y97{bottom:18.719970px;}
.yc4{bottom:18.720000px;}
.y83{bottom:21.600000px;}
.y165{bottom:25.919970px;}
.y16a{bottom:25.920000px;}
.y9f{bottom:26.999955px;}
.y3e{bottom:30.960000px;}
.y14a{bottom:31.679970px;}
.y159{bottom:33.120000px;}
.y155{bottom:33.479970px;}
.y15c{bottom:33.480000px;}
.y13b{bottom:35.639955px;}
.y139{bottom:35.639970px;}
.y13e{bottom:35.640000px;}
.y135{bottom:35.999955px;}
.y130{bottom:36.000000px;}
.y152{bottom:36.360000px;}
.y12d{bottom:39.240000px;}
.y164{bottom:41.399970px;}
.y16d{bottom:41.760000px;}
.y10{bottom:43.560030px;}
.y53{bottom:43.919970px;}
.yc9{bottom:46.800000px;}
.y158{bottom:48.600000px;}
.y149{bottom:48.959970px;}
.y15e{bottom:48.960000px;}
.y134{bottom:52.919955px;}
.y138{bottom:52.919970px;}
.y12f{bottom:52.920000px;}
.yb{bottom:53.280000px;}
.y151{bottom:57.240000px;}
.y11{bottom:60.660045px;}
.y3d{bottom:62.280000px;}
.y148{bottom:66.239970px;}
.y132{bottom:70.200000px;}
.ya{bottom:74.160000px;}
.y52{bottom:74.879970px;}
.y150{bottom:77.760000px;}
.y12b{bottom:82.080000px;}
.y3c{bottom:93.240000px;}
.y9{bottom:95.040000px;}
.y14f{bottom:98.640000px;}
.y160{bottom:99.540030px;}
.y15b{bottom:102.420030px;}
.y162{bottom:103.500030px;}
.y51{bottom:106.199970px;}
.y169{bottom:109.980030px;}
.y8{bottom:115.560000px;}
.y10e{bottom:115.920030px;}
.y154{bottom:116.820030px;}
.y28{bottom:116.999970px;}
.y145{bottom:117.720045px;}
.yfc{bottom:118.440030px;}
.y14e{bottom:121.680000px;}
.y129{bottom:124.920000px;}
.y15{bottom:125.820030px;}
.y137{bottom:127.980030px;}
.yc5{bottom:128.700045px;}
.y39{bottom:130.319970px;}
.y40{bottom:132.300030px;}
.y9d{bottom:133.740045px;}
.y7{bottom:136.440000px;}
.y167{bottom:136.980030px;}
.y50{bottom:137.519970px;}
.y133{bottom:137.700045px;}
.y144{bottom:138.240000px;}
.y147{bottom:140.580030px;}
.y96{bottom:142.020030px;}
.y13a{bottom:146.700045px;}
.y10d{bottom:147.240000px;}
.yfb{bottom:147.960000px;}
.y7c{bottom:148.860030px;}
.y87{bottom:150.120000px;}
.y79{bottom:150.840000px;}
.y78{bottom:152.280000px;}
.ye0{bottom:153.720000px;}
.y27{bottom:154.799970px;}
.y9b{bottom:155.700000px;}
.y14d{bottom:156.240000px;}
.y38{bottom:156.599970px;}
.yd0{bottom:156.960000px;}
.y6{bottom:158.760000px;}
.y95{bottom:159.120000px;}
.ycd{bottom:160.740000px;}
.y66{bottom:163.080000px;}
.ye7{bottom:167.400000px;}
.ydf{bottom:167.760000px;}
.y4f{bottom:168.479970px;}
.ycf{bottom:169.200000px;}
.ye1{bottom:169.560000px;}
.yb5{bottom:169.920000px;}
.y86{bottom:171.000000px;}
.yaf{bottom:171.720000px;}
.y77{bottom:172.080000px;}
.y9a{bottom:172.440000px;}
.yc3{bottom:172.980000px;}
.y81{bottom:173.520000px;}
.yda{bottom:174.240000px;}
.y131{bottom:174.420000px;}
.yb2{bottom:178.920000px;}
.y93{bottom:179.640000px;}
.y26{bottom:180.719970px;}
.yae{bottom:181.440000px;}
.y146{bottom:181.980000px;}
.y37{bottom:182.519970px;}
.y15d{bottom:183.420000px;}
.yd9{bottom:186.480000px;}
.y85{bottom:186.840000px;}
.y94{bottom:190.080000px;}
.y5{bottom:190.800000px;}
.y76{bottom:191.520000px;}
.y12e{bottom:191.700000px;}
.yde{bottom:191.880000px;}
.y80{bottom:193.320000px;}
.y99{bottom:193.680000px;}
.y15f{bottom:194.220000px;}
.y65{bottom:194.400000px;}
.yad{bottom:195.120000px;}
.yb4{bottom:196.560000px;}
.y157{bottom:197.100000px;}
.yc7{bottom:197.280000px;}
.y4e{bottom:199.799970px;}
.y163{bottom:200.340000px;}
.y143{bottom:200.520000px;}
.yfa{bottom:202.320000px;}
.ydd{bottom:204.120000px;}
.yc2{bottom:204.480000px;}
.y25{bottom:206.999970px;}
.y36{bottom:208.439970px;}
.ydb{bottom:208.800000px;}
.yb3{bottom:209.160000px;}
.y125{bottom:210.600000px;}
.y92{bottom:210.960000px;}
.y98{bottom:211.320000px;}
.y161{bottom:211.500000px;}
.y10c{bottom:211.680000px;}
.y82{bottom:213.300000px;}
.y11f{bottom:215.640000px;}
.y13f{bottom:215.820000px;}
.ye6{bottom:219.240000px;}
.y13d{bottom:219.780000px;}
.y7f{bottom:219.960000px;}
.y75{bottom:221.040000px;}
.y64{bottom:225.360000px;}
.y4d{bottom:230.759970px;}
.y124{bottom:231.480000px;}
.y7e{bottom:232.560000px;}
.y24{bottom:232.919970px;}
.y35{bottom:233.999970px;}
.yc1{bottom:235.800000px;}
.y11e{bottom:236.520000px;}
.y91{bottom:241.920000px;}
.ye5{bottom:243.000000px;}
.y10b{bottom:244.080000px;}
.y16c{bottom:244.980000px;}
.yc8{bottom:248.940000px;}
.yac{bottom:249.480000px;}
.y123{bottom:252.000000px;}
.y74{bottom:252.360000px;}
.ye4{bottom:255.600000px;}
.y63{bottom:256.320000px;}
.yf9{bottom:256.680000px;}
.y11d{bottom:257.040000px;}
.y23{bottom:258.839970px;}
.y34{bottom:259.919970px;}
.y4c{bottom:262.079970px;}
.y142{bottom:262.440000px;}
.yc0{bottom:266.760000px;}
.y90{bottom:272.880000px;}
.y10a{bottom:276.480000px;}
.y11c{bottom:277.920000px;}
.yab{bottom:280.440000px;}
.y73{bottom:283.320000px;}
.y22{bottom:284.759970px;}
.y33{bottom:285.839970px;}
.yf8{bottom:285.840000px;}
.y62{bottom:287.280000px;}
.y4b{bottom:293.399970px;}
.y122{bottom:293.400000px;}
.ybf{bottom:297.720000px;}
.y11b{bottom:298.440000px;}
.yd6{bottom:303.840000px;}
.y109{bottom:308.880000px;}
.y21{bottom:310.679970px;}
.y32{bottom:311.759970px;}
.yaa{bottom:311.760000px;}
.y72{bottom:314.280000px;}
.yf7{bottom:316.440000px;}
.y61{bottom:318.600000px;}
.y11a{bottom:319.320000px;}
.y4a{bottom:324.359970px;}
.y141{bottom:324.720000px;}
.ybe{bottom:328.680000px;}
.yd5{bottom:335.160000px;}
.y20{bottom:336.599970px;}
.y31{bottom:337.679970px;}
.y119{bottom:339.840000px;}
.y108{bottom:341.280000px;}
.ya9{bottom:342.720000px;}
.y71{bottom:345.240000px;}
.yf6{bottom:345.600000px;}
.y60{bottom:349.560000px;}
.y14c{bottom:350.820000px;}
.y49{bottom:355.679970px;}
.y8f{bottom:355.680000px;}
.ybd{bottom:360.000000px;}
.y1f{bottom:362.879970px;}
.y30{bottom:363.599970px;}
.yd4{bottom:366.120000px;}
.y4{bottom:368.820000px;}
.yf5{bottom:369.360000px;}
.ya8{bottom:373.680000px;}
.y70{bottom:376.560000px;}
.y121{bottom:377.100000px;}
.y5f{bottom:380.520000px;}
.y8e{bottom:386.640000px;}
.y48{bottom:386.999970px;}
.y1e{bottom:388.799970px;}
.y2f{bottom:389.519970px;}
.ybc{bottom:390.960000px;}
.yd3{bottom:397.080000px;}
.yf4{bottom:398.880000px;}
.ya7{bottom:404.640000px;}
.y107{bottom:405.720000px;}
.y6f{bottom:407.520000px;}
.y5e{bottom:411.480000px;}
.y118{bottom:413.280000px;}
.y1d{bottom:414.719970px;}
.y2e{bottom:415.079970px;}
.y47{bottom:417.959970px;}
.y8d{bottom:417.960000px;}
.ybb{bottom:421.920000px;}
.yf3{bottom:423.000000px;}
.yd2{bottom:428.040000px;}
.y12c{bottom:433.620000px;}
.y117{bottom:434.160000px;}
.ya6{bottom:435.960000px;}
.y106{bottom:438.120000px;}
.y6e{bottom:438.480000px;}
.y1c{bottom:440.639970px;}
.y2d{bottom:440.999970px;}
.y5d{bottom:442.800000px;}
.y8c{bottom:448.920000px;}
.y46{bottom:449.279970px;}
.yf2{bottom:452.520000px;}
.yba{bottom:452.880000px;}
.yd1{bottom:459.360000px;}
.y105{bottom:461.880000px;}
.y1b{bottom:466.559970px;}
.y7b{bottom:466.560000px;}
.y2c{bottom:466.919970px;}
.ya5{bottom:466.920000px;}
.y6d{bottom:469.440000px;}
.y5c{bottom:473.760000px;}
.y116{bottom:475.560000px;}
.yf1{bottom:476.280000px;}
.y12a{bottom:476.460000px;}
.y8b{bottom:479.880000px;}
.y45{bottom:480.239970px;}
.yb9{bottom:484.200000px;}
.y7a{bottom:490.320000px;}
.y1a{bottom:492.479970px;}
.y2b{bottom:492.839970px;}
.y5b{bottom:497.520000px;}
.ya4{bottom:497.880000px;}
.y6c{bottom:500.760000px;}
.y104{bottom:504.720000px;}
.yf0{bottom:505.800000px;}
.y115{bottom:506.880000px;}
.yb8{bottom:507.960000px;}
.y8a{bottom:510.840000px;}
.y44{bottom:511.559970px;}
.y19{bottom:518.759970px;}
.y127{bottom:519.300000px;}
.y5a{bottom:521.280000px;}
.ya3{bottom:528.840000px;}
.yef{bottom:530.640000px;}
.y6b{bottom:531.720000px;}
.y103{bottom:534.960000px;}
.y114{bottom:539.280000px;}
.y89{bottom:542.160000px;}
.y43{bottom:542.879970px;}
.y18{bottom:544.679970px;}
.y59{bottom:552.240000px;}
.y102{bottom:559.440000px;}
.yee{bottom:559.800000px;}
.ya2{bottom:560.160000px;}
.y2a{bottom:561.959970px;}
.y126{bottom:562.140000px;}
.y6a{bottom:562.680000px;}
.y17{bottom:570.599970px;}
.y113{bottom:571.320000px;}
.y42{bottom:573.119970px;}
.y88{bottom:573.120000px;}
.y29{bottom:579.239970px;}
.y58{bottom:583.560000px;}
.yed{bottom:584.640000px;}
.y101{bottom:589.680000px;}
.ya1{bottom:591.120000px;}
.y41{bottom:593.639970px;}
.y69{bottom:593.640000px;}
.ye8{bottom:594.180000px;}
.y16{bottom:596.519970px;}
.y112{bottom:603.720000px;}
.y57{bottom:614.520000px;}
.yec{bottom:614.880000px;}
.y3b{bottom:619.380000px;}
.y100{bottom:619.920000px;}
.ya0{bottom:624.240000px;}
.y68{bottom:624.960000px;}
.y140{bottom:635.040000px;}
.y111{bottom:636.120000px;}
.y56{bottom:645.480000px;}
.yeb{bottom:646.920000px;}
.yff{bottom:649.080000px;}
.y67{bottom:655.920000px;}
.y3a{bottom:666.360000px;}
.y110{bottom:668.520000px;}
.y55{bottom:676.440000px;}
.yea{bottom:677.520000px;}
.yfe{bottom:678.600000px;}
.y14{bottom:686.880000px;}
.y10f{bottom:690.120000px;}
.y3{bottom:696.600000px;}
.y120{bottom:697.320000px;}
.yfd{bottom:708.120000px;}
.ye9{bottom:713.880000px;}
.y13{bottom:717.840000px;}
.ydc{bottom:718.380000px;}
.y2{bottom:718.560000px;}
.yf{bottom:738.720000px;}
.ye{bottom:760.320000px;}
.yd8{bottom:780.660000px;}
.yd{bottom:786.960000px;}
.yc{bottom:807.480000px;}
.ye2{bottom:842.580000px;}
.yd7{bottom:873.540000px;}
.yb7{bottom:1046.700000px;}
.yb6{bottom:1072.980000px;}
.ycc{bottom:1094.220000px;}
.ycb{bottom:1120.500000px;}
.yb1{bottom:1139.580000px;}
.yb0{bottom:1166.220000px;}
.ye3{bottom:1269.180000px;}
.h22{height:0.000000px;}
.h26{height:5.760040px;}
.ha{height:18.720000px;}
.h2b{height:20.519985px;}
.h2a{height:20.880015px;}
.h1f{height:27.000000px;}
.h27{height:29.519985px;}
.h15{height:32.040000px;}
.h1c{height:32.400000px;}
.h24{height:32.400015px;}
.h1d{height:33.203672px;}
.h18{height:34.114922px;}
.h1a{height:35.280000px;}
.h28{height:37.404141px;}
.h1b{height:37.548281px;}
.h20{height:40.680000px;}
.h23{height:41.253047px;}
.h21{height:41.696016px;}
.h35{height:46.750078px;}
.h34{height:46.880156px;}
.h19{height:50.308594px;}
.hd{height:51.804141px;}
.h16{height:51.948281px;}
.he{height:52.957266px;}
.h3a{height:54.000000px;}
.h39{height:54.000015px;}
.hb{height:56.858203px;}
.h31{height:57.016406px;}
.h25{height:60.480015px;}
.h36{height:61.200000px;}
.h14{height:61.474922px;}
.h37{height:61.559985px;}
.h33{height:61.560000px;}
.h38{height:61.560015px;}
.h4{height:63.175781px;}
.h8{height:63.351563px;}
.h9{height:64.411875px;}
.h11{height:64.582031px;}
.h3{height:66.407344px;}
.h2e{height:66.599985px;}
.h2c{height:66.600000px;}
.h2f{height:66.960000px;}
.h17{height:74.816016px;}
.h13{height:74.932031px;}
.h30{height:79.920015px;}
.h6{height:80.944453px;}
.h32{height:81.002813px;}
.h1e{height:83.392031px;}
.h10{height:83.624063px;}
.h2d{height:83.879985px;}
.h7{height:95.027344px;}
.hf{height:109.799970px;}
.h12{height:122.705859px;}
.h5{height:218.520000px;}
.h29{height:309.960000px;}
.hc{height:610.200000px;}
.h2{height:865.800000px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.w10{width:0.000000px;}
.w4{width:8.280030px;}
.wd{width:16.559970px;}
.w14{width:28.260045px;}
.w15{width:30.420045px;}
.w6{width:67.680000px;}
.w7{width:267.840000px;}
.w21{width:299.880000px;}
.w1a{width:347.400000px;}
.w11{width:354.240000px;}
.wa{width:359.640000px;}
.w29{width:364.320000px;}
.w13{width:367.920000px;}
.w25{width:373.320000px;}
.w26{width:386.640000px;}
.w24{width:387.000000px;}
.wb{width:391.680000px;}
.wf{width:402.840000px;}
.w9{width:445.680000px;}
.w1b{width:458.640000px;}
.wc{width:472.320000px;}
.we{width:472.680000px;}
.w12{width:486.000000px;}
.w5{width:497.520000px;}
.w3{width:499.320000px;}
.w1c{width:512.640000px;}
.w8{width:513.000000px;}
.w19{width:562.680000px;}
.w20{width:580.320000px;}
.w17{width:647.639850px;}
.w23{width:675.000000px;}
.w1f{width:688.320000px;}
.w1d{width:705.960000px;}
.w18{width:719.639850px;}
.w1e{width:741.600000px;}
.w22{width:743.399850px;}
.w28{width:756.000000px;}
.w27{width:769.320000px;}
.w2a{width:931.320000px;}
.w2b{width:945.000000px;}
.w16{width:1066.680000px;}
.w2{width:1235.700000px;}
.w0{width:1262.700000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xf{left:10.799850px;}
.x1{left:13.500000px;}
.x59{left:19.080060px;}
.x43{left:37.027800px;}
.x42{left:48.706050px;}
.x76{left:54.488400px;}
.x2e{left:59.552550px;}
.x5e{left:61.114350px;}
.x34{left:63.127500px;}
.x71{left:66.365700px;}
.x72{left:71.360850px;}
.xb{left:90.359985px;}
.x2{left:92.519880px;}
.x14{left:95.258700px;}
.x19{left:96.972285px;}
.x3c{left:100.022100px;}
.x45{left:101.902950px;}
.x3b{left:102.957645px;}
.x3a{left:105.418575px;}
.x7b{left:106.671150px;}
.x6c{left:107.820000px;}
.x44{left:112.467405px;}
.x3d{left:113.952765px;}
.xc{left:117.359970px;}
.x11{left:119.519880px;}
.x56{left:121.319820px;}
.x50{left:127.918350px;}
.x39{left:129.354840px;}
.x26{left:133.020000px;}
.x47{left:135.960570px;}
.x46{left:137.929350px;}
.x15{left:143.756850px;}
.x8{left:148.730550px;}
.x62{left:151.097100px;}
.x18{left:156.386400px;}
.x7c{left:161.590800px;}
.x7f{left:163.278450px;}
.x27{left:165.888300px;}
.x4e{left:167.007600px;}
.x78{left:168.340800px;}
.x60{left:172.847100px;}
.x7a{left:177.707700px;}
.x53{left:182.112300px;}
.x7{left:184.739250px;}
.x5f{left:186.382350px;}
.x79{left:188.820000px;}
.x5b{left:194.645850px;}
.x61{left:200.268150px;}
.x7d{left:202.500000px;}
.x63{left:212.957400px;}
.x7e{left:215.820000px;}
.x6f{left:219.234150px;}
.x6b{left:227.190600px;}
.x80{left:229.500000px;}
.x66{left:233.523900px;}
.x5a{left:237.780000px;}
.x6e{left:240.668550px;}
.x84{left:242.820000px;}
.x6{left:248.697300px;}
.x6d{left:252.130950px;}
.x67{left:256.500000px;}
.x17{left:264.439050px;}
.x65{left:267.445950px;}
.x13{left:283.860000px;}
.x74{left:287.895900px;}
.x69{left:290.776200px;}
.x3e{left:293.891250px;}
.x75{left:296.820000px;}
.x52{left:304.078500px;}
.x6a{left:305.735550px;}
.x40{left:307.883400px;}
.x88{left:312.586200px;}
.x64{left:315.774900px;}
.x86{left:319.336200px;}
.x68{left:324.947400px;}
.x89{left:328.703100px;}
.x73{left:335.415450px;}
.x87{left:341.636250px;}
.x9{left:350.694300px;}
.x8b{left:353.669550px;}
.x8c{left:360.419550px;}
.x4a{left:362.885400px;}
.x4{left:369.505950px;}
.x85{left:375.745500px;}
.x1c{left:390.386250px;}
.x1a{left:393.866850px;}
.xa{left:411.699300px;}
.x49{left:440.404800px;}
.x8a{left:445.500000px;}
.x5c{left:450.540000px;}
.x83{left:458.820000px;}
.x1b{left:484.868700px;}
.x5{left:488.700300px;}
.x3f{left:491.381400px;}
.x48{left:520.851150px;}
.x1d{left:579.360000px;}
.xe{left:616.860000px;}
.x1e{left:651.599850px;}
.x1f{left:653.760150px;}
.x58{left:655.560000px;}
.x3{left:657.540000px;}
.x16{left:661.860000px;}
.x21{left:663.061950px;}
.x29{left:668.563800px;}
.x32{left:670.860000px;}
.x4b{left:673.020000px;}
.x77{left:675.540000px;}
.x2f{left:684.540000px;}
.x81{left:688.500000px;}
.x20{left:697.066800px;}
.x82{left:701.820000px;}
.x22{left:703.043400px;}
.x33{left:713.700000px;}
.x5d{left:716.220000px;}
.x2d{left:724.860000px;}
.x41{left:738.540000px;}
.x4f{left:740.700000px;}
.x28{left:742.860000px;}
.x2a{left:763.564800px;}
.x55{left:839.652450px;}
.x23{left:845.522850px;}
.x70{left:854.820000px;}
.x2b{left:911.563800px;}
.x4c{left:919.270350px;}
.x25{left:951.035550px;}
.x2c{left:1011.521850px;}
.x24{left:1079.021850px;}
.x10{left:1102.860000px;}
.x57{left:1138.140000px;}
.x30{left:1139.940000px;}
.x31{left:1142.100000px;}
.xd{left:1148.220000px;}
.x12{left:1150.380000px;}
.x4d{left:1157.700000px;}
.x54{left:1218.780000px;}
.x51{left:1220.940000px;}
.x35{left:1478.350350px;}
.x37{left:1480.510200px;}
.x36{left:1716.780000px;}
.x38{left:1718.940000px;}
@media print{
.v6{vertical-align:-29.440000pt;}
.v3{vertical-align:-24.320000pt;}
.v5{vertical-align:-16.640000pt;}
.v4{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls41{letter-spacing:-0.153600pt;}
.ls40{letter-spacing:-0.140800pt;}
.ls49{letter-spacing:-0.096000pt;}
.ls44{letter-spacing:-0.064000pt;}
.ls43{letter-spacing:-0.051200pt;}
.ls10{letter-spacing:-0.044800pt;}
.ls42{letter-spacing:-0.038400pt;}
.ls11{letter-spacing:-0.032000pt;}
.ls3a{letter-spacing:-0.025600pt;}
.ls12{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.003200pt;}
.ls4c{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.012800pt;}
.ls24{letter-spacing:0.013760pt;}
.lse{letter-spacing:0.016896pt;}
.ls4b{letter-spacing:0.017067pt;}
.ls4d{letter-spacing:0.028800pt;}
.ls1e{letter-spacing:0.048693pt;}
.ls2e{letter-spacing:0.052800pt;}
.ls31{letter-spacing:0.052960pt;}
.ls19{letter-spacing:0.053280pt;}
.ls33{letter-spacing:0.053867pt;}
.ls3c{letter-spacing:0.055296pt;}
.ls58{letter-spacing:0.142080pt;}
.ls5e{letter-spacing:0.151552pt;}
.lsf{letter-spacing:0.159467pt;}
.ls5b{letter-spacing:0.161024pt;}
.ls5f{letter-spacing:0.165760pt;}
.ls57{letter-spacing:0.170496pt;}
.ls48{letter-spacing:0.177408pt;}
.ls5a{letter-spacing:0.179968pt;}
.ls21{letter-spacing:0.182933pt;}
.ls5d{letter-spacing:0.184704pt;}
.ls1f{letter-spacing:0.199200pt;}
.ls54{letter-spacing:0.199424pt;}
.ls4f{letter-spacing:0.204672pt;}
.ls2a{letter-spacing:0.213280pt;}
.ls6{letter-spacing:0.213333pt;}
.ls25{letter-spacing:0.213867pt;}
.ls3{letter-spacing:0.215168pt;}
.ls50{letter-spacing:0.220416pt;}
.ls55{letter-spacing:0.223104pt;}
.ls23{letter-spacing:0.223627pt;}
.ls16{letter-spacing:0.225664pt;}
.ls2f{letter-spacing:0.228693pt;}
.ls2{letter-spacing:0.254976pt;}
.ls51{letter-spacing:0.264960pt;}
.ls52{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.283392pt;}
.ls3d{letter-spacing:0.284160pt;}
.ls1d{letter-spacing:0.284587pt;}
.ls1a{letter-spacing:0.284693pt;}
.ls1b{letter-spacing:0.285227pt;}
.ls46{letter-spacing:0.291307pt;}
.ls56{letter-spacing:0.320000pt;}
.ls59{letter-spacing:0.322048pt;}
.lsd{letter-spacing:0.331733pt;}
.ls17{letter-spacing:0.341120pt;}
.ls14{letter-spacing:0.372608pt;}
.ls22{letter-spacing:0.410667pt;}
.ls8{letter-spacing:0.425088pt;}
.ls5c{letter-spacing:0.426240pt;}
.ls39{letter-spacing:0.430336pt;}
.ls1c{letter-spacing:0.446080pt;}
.ls60{letter-spacing:0.468864pt;}
.ls9{letter-spacing:0.482816pt;}
.ls53{letter-spacing:0.482987pt;}
.ls26{letter-spacing:0.488064pt;}
.ls45{letter-spacing:0.513600pt;}
.lsa{letter-spacing:0.514304pt;}
.ls27{letter-spacing:0.535680pt;}
.ls15{letter-spacing:0.566784pt;}
.ls13{letter-spacing:0.624512pt;}
.ls36{letter-spacing:0.624640pt;}
.ls2b{letter-spacing:0.625173pt;}
.ls3b{letter-spacing:0.630400pt;}
.ls38{letter-spacing:0.639360pt;}
.ls37{letter-spacing:0.642048pt;}
.ls5{letter-spacing:0.651307pt;}
.ls2c{letter-spacing:0.706667pt;}
.ls20{letter-spacing:0.713728pt;}
.ls32{letter-spacing:0.751467pt;}
.ls35{letter-spacing:0.766208pt;}
.ls3f{letter-spacing:2.432000pt;}
.ls3e{letter-spacing:2.433600pt;}
.lsc{letter-spacing:2.597333pt;}
.ls30{letter-spacing:2.986133pt;}
.ls34{letter-spacing:4.409600pt;}
.ls18{letter-spacing:6.928533pt;}
.lsb{letter-spacing:18.111467pt;}
.ls47{letter-spacing:37.141120pt;}
.ls4a{letter-spacing:48.770613pt;}
.ls28{letter-spacing:172.799360pt;}
.ls2d{letter-spacing:172.799467pt;}
.ls29{letter-spacing:172.799520pt;}
.ls4{letter-spacing:175.679467pt;}
.ws21{word-spacing:-26.783104pt;}
.wsa{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.987200pt;}
.ws18{word-spacing:-15.974400pt;}
.ws1d{word-spacing:-15.961600pt;}
.ws6{word-spacing:-15.955200pt;}
.ws1e{word-spacing:-15.948800pt;}
.ws12{word-spacing:-14.935680pt;}
.wsc{word-spacing:-13.744512pt;}
.ws9{word-spacing:-13.686784pt;}
.ws4{word-spacing:-13.634304pt;}
.ws20{word-spacing:-13.602816pt;}
.ws3{word-spacing:-13.545088pt;}
.wsd{word-spacing:-13.492608pt;}
.ws15{word-spacing:-13.461120pt;}
.ws1{word-spacing:-13.403392pt;}
.ws2{word-spacing:-13.335168pt;}
.wse{word-spacing:-13.120000pt;}
.ws23{word-spacing:-12.266240pt;}
.ws22{word-spacing:-12.162048pt;}
.ws16{word-spacing:-11.202048pt;}
.wsf{word-spacing:-10.560000pt;}
.ws17{word-spacing:-9.279360pt;}
.ws11{word-spacing:-0.540544pt;}
.ws1f{word-spacing:-0.261888pt;}
.ws19{word-spacing:-0.089856pt;}
.ws13{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.346923pt;}
.ws1c{word-spacing:1.379989pt;}
.ws1b{word-spacing:5.655723pt;}
.ws8{word-spacing:23.797717pt;}
.ws10{word-spacing:23.798251pt;}
.wsb{word-spacing:23.798784pt;}
.ws14{word-spacing:23.799317pt;}
._33{margin-left:-2.354347pt;}
._2{margin-left:-1.074880pt;}
._1{width:0.892160pt;}
._13{width:1.799680pt;}
._5{width:2.713600pt;}
._a{width:4.044800pt;}
._9{width:5.433600pt;}
._19{width:6.380800pt;}
._d{width:7.993600pt;}
._c{width:9.491200pt;}
._3{width:10.521600pt;}
._11{width:11.705600pt;}
._f{width:13.203200pt;}
._1b{width:14.097600pt;}
._7{width:15.084800pt;}
._e{width:16.899733pt;}
._b{width:17.958400pt;}
._10{width:19.571200pt;}
._4{width:20.774400pt;}
._1f{width:22.197920pt;}
._1c{width:23.532800pt;}
._1e{width:24.684800pt;}
._16{width:26.420853pt;}
._22{width:27.518347pt;}
._24{width:29.219253pt;}
._17{width:30.121547pt;}
._2f{width:31.084107pt;}
._1d{width:32.025600pt;}
._12{width:33.061387pt;}
._18{width:34.174293pt;}
._30{width:35.310507pt;}
._6{width:36.480000pt;}
._23{width:38.099253pt;}
._20{width:39.558400pt;}
._1a{width:40.806400pt;}
._2b{width:42.252800pt;}
._2e{width:44.883200pt;}
._2c{width:47.520000pt;}
._15{width:48.488053pt;}
._26{width:49.659040pt;}
._21{width:51.136000pt;}
._14{width:52.108800pt;}
._2d{width:53.536000pt;}
._31{width:54.496000pt;}
._29{width:55.443200pt;}
._25{width:57.420800pt;}
._27{width:92.799520pt;}
._28{width:108.799360pt;}
._2a{width:156.799520pt;}
._8{width:172.799467pt;}
._0{width:751.999893pt;}
._32{width:3340.533333pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.240000pt;}
.fsa{font-size:47.360000pt;}
.fs5{font-size:52.480000pt;}
.fs4{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:79.360000pt;}
.fs0{font-size:84.480000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:106.240000pt;}
.fs6{font-size:121.600000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:3.199987pt;}
.y128{bottom:3.520000pt;}
.y84{bottom:3.840000pt;}
.yca{bottom:5.120000pt;}
.y3f{bottom:6.400000pt;}
.y166{bottom:9.599973pt;}
.y168{bottom:9.600000pt;}
.y16b{bottom:9.600013pt;}
.y54{bottom:11.200000pt;}
.y9e{bottom:11.839987pt;}
.yce{bottom:11.840000pt;}
.y1{bottom:12.000000pt;}
.y14b{bottom:12.799973pt;}
.y153{bottom:14.080000pt;}
.y15a{bottom:16.000000pt;}
.y13c{bottom:16.319960pt;}
.y7d{bottom:16.319973pt;}
.yc6{bottom:16.319987pt;}
.y9c{bottom:16.320000pt;}
.y156{bottom:16.320013pt;}
.y136{bottom:16.639960pt;}
.y97{bottom:16.639973pt;}
.yc4{bottom:16.640000pt;}
.y83{bottom:19.200000pt;}
.y165{bottom:23.039973pt;}
.y16a{bottom:23.040000pt;}
.y9f{bottom:23.999960pt;}
.y3e{bottom:27.520000pt;}
.y14a{bottom:28.159973pt;}
.y159{bottom:29.440000pt;}
.y155{bottom:29.759973pt;}
.y15c{bottom:29.760000pt;}
.y13b{bottom:31.679960pt;}
.y139{bottom:31.679973pt;}
.y13e{bottom:31.680000pt;}
.y135{bottom:31.999960pt;}
.y130{bottom:32.000000pt;}
.y152{bottom:32.320000pt;}
.y12d{bottom:34.880000pt;}
.y164{bottom:36.799973pt;}
.y16d{bottom:37.120000pt;}
.y10{bottom:38.720027pt;}
.y53{bottom:39.039973pt;}
.yc9{bottom:41.600000pt;}
.y158{bottom:43.200000pt;}
.y149{bottom:43.519973pt;}
.y15e{bottom:43.520000pt;}
.y134{bottom:47.039960pt;}
.y138{bottom:47.039973pt;}
.y12f{bottom:47.040000pt;}
.yb{bottom:47.360000pt;}
.y151{bottom:50.880000pt;}
.y11{bottom:53.920040pt;}
.y3d{bottom:55.360000pt;}
.y148{bottom:58.879973pt;}
.y132{bottom:62.400000pt;}
.ya{bottom:65.920000pt;}
.y52{bottom:66.559973pt;}
.y150{bottom:69.120000pt;}
.y12b{bottom:72.960000pt;}
.y3c{bottom:82.880000pt;}
.y9{bottom:84.480000pt;}
.y14f{bottom:87.680000pt;}
.y160{bottom:88.480027pt;}
.y15b{bottom:91.040027pt;}
.y162{bottom:92.000027pt;}
.y51{bottom:94.399973pt;}
.y169{bottom:97.760027pt;}
.y8{bottom:102.720000pt;}
.y10e{bottom:103.040027pt;}
.y154{bottom:103.840027pt;}
.y28{bottom:103.999973pt;}
.y145{bottom:104.640040pt;}
.yfc{bottom:105.280027pt;}
.y14e{bottom:108.160000pt;}
.y129{bottom:111.040000pt;}
.y15{bottom:111.840027pt;}
.y137{bottom:113.760027pt;}
.yc5{bottom:114.400040pt;}
.y39{bottom:115.839973pt;}
.y40{bottom:117.600027pt;}
.y9d{bottom:118.880040pt;}
.y7{bottom:121.280000pt;}
.y167{bottom:121.760027pt;}
.y50{bottom:122.239973pt;}
.y133{bottom:122.400040pt;}
.y144{bottom:122.880000pt;}
.y147{bottom:124.960027pt;}
.y96{bottom:126.240027pt;}
.y13a{bottom:130.400040pt;}
.y10d{bottom:130.880000pt;}
.yfb{bottom:131.520000pt;}
.y7c{bottom:132.320027pt;}
.y87{bottom:133.440000pt;}
.y79{bottom:134.080000pt;}
.y78{bottom:135.360000pt;}
.ye0{bottom:136.640000pt;}
.y27{bottom:137.599973pt;}
.y9b{bottom:138.400000pt;}
.y14d{bottom:138.880000pt;}
.y38{bottom:139.199973pt;}
.yd0{bottom:139.520000pt;}
.y6{bottom:141.120000pt;}
.y95{bottom:141.440000pt;}
.ycd{bottom:142.880000pt;}
.y66{bottom:144.960000pt;}
.ye7{bottom:148.800000pt;}
.ydf{bottom:149.120000pt;}
.y4f{bottom:149.759973pt;}
.ycf{bottom:150.400000pt;}
.ye1{bottom:150.720000pt;}
.yb5{bottom:151.040000pt;}
.y86{bottom:152.000000pt;}
.yaf{bottom:152.640000pt;}
.y77{bottom:152.960000pt;}
.y9a{bottom:153.280000pt;}
.yc3{bottom:153.760000pt;}
.y81{bottom:154.240000pt;}
.yda{bottom:154.880000pt;}
.y131{bottom:155.040000pt;}
.yb2{bottom:159.040000pt;}
.y93{bottom:159.680000pt;}
.y26{bottom:160.639973pt;}
.yae{bottom:161.280000pt;}
.y146{bottom:161.760000pt;}
.y37{bottom:162.239973pt;}
.y15d{bottom:163.040000pt;}
.yd9{bottom:165.760000pt;}
.y85{bottom:166.080000pt;}
.y94{bottom:168.960000pt;}
.y5{bottom:169.600000pt;}
.y76{bottom:170.240000pt;}
.y12e{bottom:170.400000pt;}
.yde{bottom:170.560000pt;}
.y80{bottom:171.840000pt;}
.y99{bottom:172.160000pt;}
.y15f{bottom:172.640000pt;}
.y65{bottom:172.800000pt;}
.yad{bottom:173.440000pt;}
.yb4{bottom:174.720000pt;}
.y157{bottom:175.200000pt;}
.yc7{bottom:175.360000pt;}
.y4e{bottom:177.599973pt;}
.y163{bottom:178.080000pt;}
.y143{bottom:178.240000pt;}
.yfa{bottom:179.840000pt;}
.ydd{bottom:181.440000pt;}
.yc2{bottom:181.760000pt;}
.y25{bottom:183.999973pt;}
.y36{bottom:185.279973pt;}
.ydb{bottom:185.600000pt;}
.yb3{bottom:185.920000pt;}
.y125{bottom:187.200000pt;}
.y92{bottom:187.520000pt;}
.y98{bottom:187.840000pt;}
.y161{bottom:188.000000pt;}
.y10c{bottom:188.160000pt;}
.y82{bottom:189.600000pt;}
.y11f{bottom:191.680000pt;}
.y13f{bottom:191.840000pt;}
.ye6{bottom:194.880000pt;}
.y13d{bottom:195.360000pt;}
.y7f{bottom:195.520000pt;}
.y75{bottom:196.480000pt;}
.y64{bottom:200.320000pt;}
.y4d{bottom:205.119973pt;}
.y124{bottom:205.760000pt;}
.y7e{bottom:206.720000pt;}
.y24{bottom:207.039973pt;}
.y35{bottom:207.999973pt;}
.yc1{bottom:209.600000pt;}
.y11e{bottom:210.240000pt;}
.y91{bottom:215.040000pt;}
.ye5{bottom:216.000000pt;}
.y10b{bottom:216.960000pt;}
.y16c{bottom:217.760000pt;}
.yc8{bottom:221.280000pt;}
.yac{bottom:221.760000pt;}
.y123{bottom:224.000000pt;}
.y74{bottom:224.320000pt;}
.ye4{bottom:227.200000pt;}
.y63{bottom:227.840000pt;}
.yf9{bottom:228.160000pt;}
.y11d{bottom:228.480000pt;}
.y23{bottom:230.079973pt;}
.y34{bottom:231.039973pt;}
.y4c{bottom:232.959973pt;}
.y142{bottom:233.280000pt;}
.yc0{bottom:237.120000pt;}
.y90{bottom:242.560000pt;}
.y10a{bottom:245.760000pt;}
.y11c{bottom:247.040000pt;}
.yab{bottom:249.280000pt;}
.y73{bottom:251.840000pt;}
.y22{bottom:253.119973pt;}
.y33{bottom:254.079973pt;}
.yf8{bottom:254.080000pt;}
.y62{bottom:255.360000pt;}
.y4b{bottom:260.799973pt;}
.y122{bottom:260.800000pt;}
.ybf{bottom:264.640000pt;}
.y11b{bottom:265.280000pt;}
.yd6{bottom:270.080000pt;}
.y109{bottom:274.560000pt;}
.y21{bottom:276.159973pt;}
.y32{bottom:277.119973pt;}
.yaa{bottom:277.120000pt;}
.y72{bottom:279.360000pt;}
.yf7{bottom:281.280000pt;}
.y61{bottom:283.200000pt;}
.y11a{bottom:283.840000pt;}
.y4a{bottom:288.319973pt;}
.y141{bottom:288.640000pt;}
.ybe{bottom:292.160000pt;}
.yd5{bottom:297.920000pt;}
.y20{bottom:299.199973pt;}
.y31{bottom:300.159973pt;}
.y119{bottom:302.080000pt;}
.y108{bottom:303.360000pt;}
.ya9{bottom:304.640000pt;}
.y71{bottom:306.880000pt;}
.yf6{bottom:307.200000pt;}
.y60{bottom:310.720000pt;}
.y14c{bottom:311.840000pt;}
.y49{bottom:316.159973pt;}
.y8f{bottom:316.160000pt;}
.ybd{bottom:320.000000pt;}
.y1f{bottom:322.559973pt;}
.y30{bottom:323.199973pt;}
.yd4{bottom:325.440000pt;}
.y4{bottom:327.840000pt;}
.yf5{bottom:328.320000pt;}
.ya8{bottom:332.160000pt;}
.y70{bottom:334.720000pt;}
.y121{bottom:335.200000pt;}
.y5f{bottom:338.240000pt;}
.y8e{bottom:343.680000pt;}
.y48{bottom:343.999973pt;}
.y1e{bottom:345.599973pt;}
.y2f{bottom:346.239973pt;}
.ybc{bottom:347.520000pt;}
.yd3{bottom:352.960000pt;}
.yf4{bottom:354.560000pt;}
.ya7{bottom:359.680000pt;}
.y107{bottom:360.640000pt;}
.y6f{bottom:362.240000pt;}
.y5e{bottom:365.760000pt;}
.y118{bottom:367.360000pt;}
.y1d{bottom:368.639973pt;}
.y2e{bottom:368.959973pt;}
.y47{bottom:371.519973pt;}
.y8d{bottom:371.520000pt;}
.ybb{bottom:375.040000pt;}
.yf3{bottom:376.000000pt;}
.yd2{bottom:380.480000pt;}
.y12c{bottom:385.440000pt;}
.y117{bottom:385.920000pt;}
.ya6{bottom:387.520000pt;}
.y106{bottom:389.440000pt;}
.y6e{bottom:389.760000pt;}
.y1c{bottom:391.679973pt;}
.y2d{bottom:391.999973pt;}
.y5d{bottom:393.600000pt;}
.y8c{bottom:399.040000pt;}
.y46{bottom:399.359973pt;}
.yf2{bottom:402.240000pt;}
.yba{bottom:402.560000pt;}
.yd1{bottom:408.320000pt;}
.y105{bottom:410.560000pt;}
.y1b{bottom:414.719973pt;}
.y7b{bottom:414.720000pt;}
.y2c{bottom:415.039973pt;}
.ya5{bottom:415.040000pt;}
.y6d{bottom:417.280000pt;}
.y5c{bottom:421.120000pt;}
.y116{bottom:422.720000pt;}
.yf1{bottom:423.360000pt;}
.y12a{bottom:423.520000pt;}
.y8b{bottom:426.560000pt;}
.y45{bottom:426.879973pt;}
.yb9{bottom:430.400000pt;}
.y7a{bottom:435.840000pt;}
.y1a{bottom:437.759973pt;}
.y2b{bottom:438.079973pt;}
.y5b{bottom:442.240000pt;}
.ya4{bottom:442.560000pt;}
.y6c{bottom:445.120000pt;}
.y104{bottom:448.640000pt;}
.yf0{bottom:449.600000pt;}
.y115{bottom:450.560000pt;}
.yb8{bottom:451.520000pt;}
.y8a{bottom:454.080000pt;}
.y44{bottom:454.719973pt;}
.y19{bottom:461.119973pt;}
.y127{bottom:461.600000pt;}
.y5a{bottom:463.360000pt;}
.ya3{bottom:470.080000pt;}
.yef{bottom:471.680000pt;}
.y6b{bottom:472.640000pt;}
.y103{bottom:475.520000pt;}
.y114{bottom:479.360000pt;}
.y89{bottom:481.920000pt;}
.y43{bottom:482.559973pt;}
.y18{bottom:484.159973pt;}
.y59{bottom:490.880000pt;}
.y102{bottom:497.280000pt;}
.yee{bottom:497.600000pt;}
.ya2{bottom:497.920000pt;}
.y2a{bottom:499.519973pt;}
.y126{bottom:499.680000pt;}
.y6a{bottom:500.160000pt;}
.y17{bottom:507.199973pt;}
.y113{bottom:507.840000pt;}
.y42{bottom:509.439973pt;}
.y88{bottom:509.440000pt;}
.y29{bottom:514.879973pt;}
.y58{bottom:518.720000pt;}
.yed{bottom:519.680000pt;}
.y101{bottom:524.160000pt;}
.ya1{bottom:525.440000pt;}
.y41{bottom:527.679973pt;}
.y69{bottom:527.680000pt;}
.ye8{bottom:528.160000pt;}
.y16{bottom:530.239973pt;}
.y112{bottom:536.640000pt;}
.y57{bottom:546.240000pt;}
.yec{bottom:546.560000pt;}
.y3b{bottom:550.560000pt;}
.y100{bottom:551.040000pt;}
.ya0{bottom:554.880000pt;}
.y68{bottom:555.520000pt;}
.y140{bottom:564.480000pt;}
.y111{bottom:565.440000pt;}
.y56{bottom:573.760000pt;}
.yeb{bottom:575.040000pt;}
.yff{bottom:576.960000pt;}
.y67{bottom:583.040000pt;}
.y3a{bottom:592.320000pt;}
.y110{bottom:594.240000pt;}
.y55{bottom:601.280000pt;}
.yea{bottom:602.240000pt;}
.yfe{bottom:603.200000pt;}
.y14{bottom:610.560000pt;}
.y10f{bottom:613.440000pt;}
.y3{bottom:619.200000pt;}
.y120{bottom:619.840000pt;}
.yfd{bottom:629.440000pt;}
.ye9{bottom:634.560000pt;}
.y13{bottom:638.080000pt;}
.ydc{bottom:638.560000pt;}
.y2{bottom:638.720000pt;}
.yf{bottom:656.640000pt;}
.ye{bottom:675.840000pt;}
.yd8{bottom:693.920000pt;}
.yd{bottom:699.520000pt;}
.yc{bottom:717.760000pt;}
.ye2{bottom:748.960000pt;}
.yd7{bottom:776.480000pt;}
.yb7{bottom:930.400000pt;}
.yb6{bottom:953.760000pt;}
.ycc{bottom:972.640000pt;}
.ycb{bottom:996.000000pt;}
.yb1{bottom:1012.960000pt;}
.yb0{bottom:1036.640000pt;}
.ye3{bottom:1128.160000pt;}
.h22{height:0.000000pt;}
.h26{height:5.120036pt;}
.ha{height:16.640000pt;}
.h2b{height:18.239987pt;}
.h2a{height:18.560013pt;}
.h1f{height:24.000000pt;}
.h27{height:26.239987pt;}
.h15{height:28.480000pt;}
.h1c{height:28.800000pt;}
.h24{height:28.800013pt;}
.h1d{height:29.514375pt;}
.h18{height:30.324375pt;}
.h1a{height:31.360000pt;}
.h28{height:33.248125pt;}
.h1b{height:33.376250pt;}
.h20{height:36.160000pt;}
.h23{height:36.669375pt;}
.h21{height:37.063125pt;}
.h35{height:41.555625pt;}
.h34{height:41.671250pt;}
.h19{height:44.718750pt;}
.hd{height:46.048125pt;}
.h16{height:46.176250pt;}
.he{height:47.073125pt;}
.h3a{height:48.000000pt;}
.h39{height:48.000013pt;}
.hb{height:50.540625pt;}
.h31{height:50.681250pt;}
.h25{height:53.760013pt;}
.h36{height:54.400000pt;}
.h14{height:54.644375pt;}
.h37{height:54.719987pt;}
.h33{height:54.720000pt;}
.h38{height:54.720013pt;}
.h4{height:56.156250pt;}
.h8{height:56.312500pt;}
.h9{height:57.255000pt;}
.h11{height:57.406250pt;}
.h3{height:59.028750pt;}
.h2e{height:59.199987pt;}
.h2c{height:59.200000pt;}
.h2f{height:59.520000pt;}
.h17{height:66.503125pt;}
.h13{height:66.606250pt;}
.h30{height:71.040013pt;}
.h6{height:71.950625pt;}
.h32{height:72.002500pt;}
.h1e{height:74.126250pt;}
.h10{height:74.332500pt;}
.h2d{height:74.559987pt;}
.h7{height:84.468750pt;}
.hf{height:97.599973pt;}
.h12{height:109.071875pt;}
.h5{height:194.240000pt;}
.h29{height:275.520000pt;}
.hc{height:542.400000pt;}
.h2{height:769.600000pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.w10{width:0.000000pt;}
.w4{width:7.360027pt;}
.wd{width:14.719973pt;}
.w14{width:25.120040pt;}
.w15{width:27.040040pt;}
.w6{width:60.160000pt;}
.w7{width:238.080000pt;}
.w21{width:266.560000pt;}
.w1a{width:308.800000pt;}
.w11{width:314.880000pt;}
.wa{width:319.680000pt;}
.w29{width:323.840000pt;}
.w13{width:327.040000pt;}
.w25{width:331.840000pt;}
.w26{width:343.680000pt;}
.w24{width:344.000000pt;}
.wb{width:348.160000pt;}
.wf{width:358.080000pt;}
.w9{width:396.160000pt;}
.w1b{width:407.680000pt;}
.wc{width:419.840000pt;}
.we{width:420.160000pt;}
.w12{width:432.000000pt;}
.w5{width:442.240000pt;}
.w3{width:443.840000pt;}
.w1c{width:455.680000pt;}
.w8{width:456.000000pt;}
.w19{width:500.160000pt;}
.w20{width:515.840000pt;}
.w17{width:575.679867pt;}
.w23{width:600.000000pt;}
.w1f{width:611.840000pt;}
.w1d{width:627.520000pt;}
.w18{width:639.679867pt;}
.w1e{width:659.200000pt;}
.w22{width:660.799867pt;}
.w28{width:672.000000pt;}
.w27{width:683.840000pt;}
.w2a{width:827.840000pt;}
.w2b{width:840.000000pt;}
.w16{width:948.160000pt;}
.w2{width:1098.400000pt;}
.w0{width:1122.400000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xf{left:9.599867pt;}
.x1{left:12.000000pt;}
.x59{left:16.960053pt;}
.x43{left:32.913600pt;}
.x42{left:43.294267pt;}
.x76{left:48.434133pt;}
.x2e{left:52.935600pt;}
.x5e{left:54.323867pt;}
.x34{left:56.113333pt;}
.x71{left:58.991733pt;}
.x72{left:63.431867pt;}
.xb{left:80.319987pt;}
.x2{left:82.239893pt;}
.x14{left:84.674400pt;}
.x19{left:86.197587pt;}
.x3c{left:88.908533pt;}
.x45{left:90.580400pt;}
.x3b{left:91.517907pt;}
.x3a{left:93.705400pt;}
.x7b{left:94.818800pt;}
.x6c{left:95.840000pt;}
.x44{left:99.971027pt;}
.x3d{left:101.291347pt;}
.xc{left:104.319973pt;}
.x11{left:106.239893pt;}
.x56{left:107.839840pt;}
.x50{left:113.705200pt;}
.x39{left:114.982080pt;}
.x26{left:118.240000pt;}
.x47{left:120.853840pt;}
.x46{left:122.603867pt;}
.x15{left:127.783867pt;}
.x8{left:132.204933pt;}
.x62{left:134.308533pt;}
.x18{left:139.010133pt;}
.x7c{left:143.636267pt;}
.x7f{left:145.136400pt;}
.x27{left:147.456267pt;}
.x4e{left:148.451200pt;}
.x78{left:149.636267pt;}
.x60{left:153.641867pt;}
.x7a{left:157.962400pt;}
.x53{left:161.877600pt;}
.x7{left:164.212667pt;}
.x5f{left:165.673200pt;}
.x79{left:167.840000pt;}
.x5b{left:173.018533pt;}
.x61{left:178.016133pt;}
.x7d{left:180.000000pt;}
.x63{left:189.295467pt;}
.x7e{left:191.840000pt;}
.x6f{left:194.874800pt;}
.x6b{left:201.947200pt;}
.x80{left:204.000000pt;}
.x66{left:207.576800pt;}
.x5a{left:211.360000pt;}
.x6e{left:213.927600pt;}
.x84{left:215.840000pt;}
.x6{left:221.064267pt;}
.x6d{left:224.116400pt;}
.x67{left:228.000000pt;}
.x17{left:235.056933pt;}
.x65{left:237.729733pt;}
.x13{left:252.320000pt;}
.x74{left:255.907467pt;}
.x69{left:258.467733pt;}
.x3e{left:261.236667pt;}
.x75{left:263.840000pt;}
.x52{left:270.292000pt;}
.x6a{left:271.764933pt;}
.x40{left:273.674133pt;}
.x88{left:277.854400pt;}
.x64{left:280.688800pt;}
.x86{left:283.854400pt;}
.x68{left:288.842133pt;}
.x89{left:292.180533pt;}
.x73{left:298.147067pt;}
.x87{left:303.676667pt;}
.x9{left:311.728267pt;}
.x8b{left:314.372933pt;}
.x8c{left:320.372933pt;}
.x4a{left:322.564800pt;}
.x4{left:328.449733pt;}
.x85{left:333.996000pt;}
.x1c{left:347.010000pt;}
.x1a{left:350.103867pt;}
.xa{left:365.954933pt;}
.x49{left:391.470933pt;}
.x8a{left:396.000000pt;}
.x5c{left:400.480000pt;}
.x83{left:407.840000pt;}
.x1b{left:430.994400pt;}
.x5{left:434.400267pt;}
.x3f{left:436.783467pt;}
.x48{left:462.978800pt;}
.x1d{left:514.986667pt;}
.xe{left:548.320000pt;}
.x1e{left:579.199867pt;}
.x1f{left:581.120133pt;}
.x58{left:582.720000pt;}
.x3{left:584.480000pt;}
.x16{left:588.320000pt;}
.x21{left:589.388400pt;}
.x29{left:594.278933pt;}
.x32{left:596.320000pt;}
.x4b{left:598.240000pt;}
.x77{left:600.480000pt;}
.x2f{left:608.480000pt;}
.x81{left:612.000000pt;}
.x20{left:619.614933pt;}
.x82{left:623.840000pt;}
.x22{left:624.927467pt;}
.x33{left:634.400000pt;}
.x5d{left:636.640000pt;}
.x2d{left:644.320000pt;}
.x41{left:656.480000pt;}
.x4f{left:658.400000pt;}
.x28{left:660.320000pt;}
.x2a{left:678.724267pt;}
.x55{left:746.357733pt;}
.x23{left:751.575867pt;}
.x70{left:759.840000pt;}
.x2b{left:810.278933pt;}
.x4c{left:817.129200pt;}
.x25{left:845.364933pt;}
.x2c{left:899.130533pt;}
.x24{left:959.130533pt;}
.x10{left:980.320000pt;}
.x57{left:1011.680000pt;}
.x30{left:1013.280000pt;}
.x31{left:1015.200000pt;}
.xd{left:1020.640000pt;}
.x12{left:1022.560000pt;}
.x4d{left:1029.066667pt;}
.x54{left:1083.360000pt;}
.x51{left:1085.280000pt;}
.x35{left:1314.089200pt;}
.x37{left:1316.009067pt;}
.x36{left:1526.026667pt;}
.x38{left:1527.946667pt;}
}




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