
    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_ac719016e59ade84cdecc8c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862793;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_7171ba1fda988b28efa7734e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_571b69881d272df00d7f983f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_268c1e0a204971d30a92b17a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_9085bab2741714948d4243bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_d2f7ce6ee28427cdb6a93678.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.874023;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_e7abbdeef0832d14580ad5a5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_a0c6ce9fb43ae8e653186a26.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_21ab79c0fae2e2fb50b4c4c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.691406;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_edc7699173cf05e850d0062a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922363;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_18fb88066db4738145b7592d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_25cefcb9e80fb1d3a09474d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_384653ad9e0043b806c8e853.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2866c05a494d2d982fc8a444.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_66546ee241073bc14634dea5.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_02b058b7a2cc5f09e6a0318d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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:ff12;src:url('chunks/assets/font_1c81b4be7dcc06c1940d00b6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.861816;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:ff13;src:url('chunks/assets/font_3bade7dae45e7cd98930e3f5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.873535;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:ff14;src:url('chunks/assets/font_46659d8a30c1c309de18c029.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.695312;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);}
.v2{vertical-align:-9.480000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.080000px;}
.v1{vertical-align:30.240000px;}
.ls11{letter-spacing:-0.984000px;}
.ls10{letter-spacing:-0.828000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.457800px;}
.ls18{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.306600px;}
.lsa{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.259800px;}
.ls1d{letter-spacing:-0.178800px;}
.ls8{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.109200px;}
.ls3{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.010560px;}
.ls2{letter-spacing:0.053280px;}
.ls21{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.145440px;}
.ls25{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.262080px;}
.lsb{letter-spacing:0.262200px;}
.ls13{letter-spacing:0.305280px;}
.lsf{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.414600px;}
.ls12{letter-spacing:0.457800px;}
.ls17{letter-spacing:0.485280px;}
.ls4{letter-spacing:0.612000px;}
.ls2a{letter-spacing:0.790560px;}
.ls23{letter-spacing:1.025280px;}
.ls24{letter-spacing:2.465280px;}
.ls15{letter-spacing:3.905280px;}
.ls16{letter-spacing:6.065280px;}
.lse{letter-spacing:8.945280px;}
.lsd{letter-spacing:9.665280px;}
.ls27{letter-spacing:11.105280px;}
.ls1c{letter-spacing:15.425280px;}
.ls19{letter-spacing:21.905280px;}
.ls14{letter-spacing:23.345280px;}
.ls28{letter-spacing:27.665280px;}
.ls1e{letter-spacing:59.345280px;}
.ls2c{letter-spacing:102.545280px;}
.ls29{letter-spacing:139.241280px;}
.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;}
}
.wse{word-spacing:-66.240000px;}
.ws15{word-spacing:-20.160000px;}
.ws17{word-spacing:-20.016000px;}
.ws10{word-spacing:-18.829320px;}
.wsd{word-spacing:-18.720120px;}
.ws9{word-spacing:-18.676920px;}
.wsb{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.152520px;}
.ws8{word-spacing:-18.109320px;}
.wsf{word-spacing:-18.000120px;}
.ws13{word-spacing:-17.956920px;}
.ws14{word-spacing:-17.694720px;}
.wsc{word-spacing:-17.586720px;}
.ws3{word-spacing:-17.225280px;}
.ws1{word-spacing:-16.666560px;}
.ws2{word-spacing:-16.613280px;}
.ws5{word-spacing:-16.353480px;}
.ws4{word-spacing:-16.306680px;}
.ws19{word-spacing:-15.226440px;}
.ws18{word-spacing:-15.120000px;}
.ws16{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.837640px;}
.ws11{word-spacing:-11.609280px;}
.ws12{word-spacing:-11.430480px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-14.749440px;}
._2f{margin-left:-5.239440px;}
._21{margin-left:-2.360160px;}
._1{margin-left:-1.324800px;}
._2{width:1.185840px;}
._4{width:2.628240px;}
._8{width:4.309920px;}
._12{width:5.558400px;}
._9{width:7.133760px;}
._7{width:8.544960px;}
._c{width:10.134720px;}
._d{width:11.260800px;}
._b{width:13.158240px;}
._a{width:14.506560px;}
._37{width:15.536640px;}
._6{width:16.560000px;}
._32{width:19.415040px;}
._16{width:20.420880px;}
._15{width:21.442800px;}
._10{width:22.521600px;}
._e{width:24.045120px;}
._f{width:25.369920px;}
._35{width:26.628480px;}
._13{width:27.688320px;}
._2a{width:29.344320px;}
._34{width:30.610560px;}
._27{width:31.904400px;}
._17{width:33.252480px;}
._18{width:34.709760px;}
._1e{width:36.388800px;}
._14{width:38.419200px;}
._2d{width:39.976320px;}
._2b{width:41.863680px;}
._38{width:42.890880px;}
._23{width:43.917120px;}
._22{width:45.175680px;}
._19{width:47.096640px;}
._1a{width:48.807360px;}
._11{width:50.342400px;}
._2e{width:51.865920px;}
._3b{width:52.920960px;}
._25{width:56.160000px;}
._24{width:57.564000px;}
._33{width:59.114880px;}
._28{width:62.100960px;}
._1d{width:64.086240px;}
._1b{width:65.511360px;}
._1f{width:68.889600px;}
._20{width:70.047840px;}
._30{width:71.804160px;}
._31{width:73.333680px;}
._29{width:75.182400px;}
._1c{width:101.810880px;}
._3{width:127.122960px;}
._3a{width:138.935520px;}
._26{width:150.761280px;}
._36{width:170.214000px;}
._2c{width:193.961280px;}
._0{width:845.326560px;}
._39{width:952.865760px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(79,129,189);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fsb{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fsd{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:131.760000px;}
.fs1{font-size:216.000000px;}
.fs2{font-size:239.760000px;}
.y62{bottom:-39.780000px;}
.y83{bottom:-31.185000px;}
.y0{bottom:0.000000px;}
.y61{bottom:3.600000px;}
.y23{bottom:3.960000px;}
.y13e{bottom:4.140000px;}
.y161{bottom:4.320000px;}
.y13c{bottom:4.680000px;}
.y1b{bottom:8.085000px;}
.y15{bottom:8.100000px;}
.yab{bottom:9.255000px;}
.y11{bottom:12.060000px;}
.y82{bottom:12.225000px;}
.y13{bottom:15.300000px;}
.y19{bottom:15.480000px;}
.y1f{bottom:16.020000px;}
.y17{bottom:18.000000px;}
.ycf{bottom:18.180000px;}
.y13b{bottom:24.840000px;}
.y142{bottom:24.870000px;}
.yaa{bottom:24.915000px;}
.y22{bottom:25.020000px;}
.y21{bottom:26.640000px;}
.y60{bottom:32.040000px;}
.yce{bottom:33.660000px;}
.y1e{bottom:37.980000px;}
.ya9{bottom:40.395000px;}
.y81{bottom:40.665000px;}
.y155{bottom:45.540000px;}
.y108{bottom:49.140000px;}
.ya8{bottom:55.875000px;}
.y2{bottom:57.600000px;}
.y1d{bottom:59.940000px;}
.y154{bottom:66.285000px;}
.yc{bottom:66.600000px;}
.ya7{bottom:71.355000px;}
.y10{bottom:75.420000px;}
.y5f{bottom:75.450000px;}
.y25{bottom:77.760000px;}
.y80{bottom:84.045000px;}
.y5e{bottom:104.070000px;}
.yb{bottom:104.805000px;}
.y43{bottom:111.060000px;}
.y7f{bottom:112.485000px;}
.ya5{bottom:116.280000px;}
.y1e4{bottom:117.540000px;}
.y107{bottom:118.620000px;}
.y137{bottom:124.920000px;}
.y106{bottom:125.460000px;}
.y19a{bottom:128.880000px;}
.y18f{bottom:130.860000px;}
.y5d{bottom:132.510000px;}
.y117{bottom:132.840000px;}
.y17a{bottom:136.080000px;}
.y1e3{bottom:136.620000px;}
.yf{bottom:138.810000px;}
.ycc{bottom:138.960000px;}
.yef{bottom:140.580000px;}
.y7e{bottom:140.925000px;}
.ya{bottom:142.965000px;}
.y1c{bottom:144.540000px;}
.ya4{bottom:144.720000px;}
.y42{bottom:147.060000px;}
.y151{bottom:149.400000px;}
.y136{bottom:153.360000px;}
.y1c1{bottom:153.540000px;}
.y105{bottom:154.080000px;}
.y15c{bottom:155.520000px;}
.y18e{bottom:159.300000px;}
.y5c{bottom:160.950000px;}
.y116{bottom:161.280000px;}
.y179{bottom:164.520000px;}
.ycb{bottom:167.400000px;}
.yee{bottom:169.020000px;}
.y7d{bottom:169.545000px;}
.y1c0{bottom:172.620000px;}
.ya3{bottom:173.160000px;}
.y1e2{bottom:174.420000px;}
.y150{bottom:177.840000px;}
.y9{bottom:181.125000px;}
.y41{bottom:181.800000px;}
.y104{bottom:182.520000px;}
.ycd{bottom:183.240000px;}
.y15b{bottom:183.960000px;}
.y18d{bottom:187.740000px;}
.y5b{bottom:189.390000px;}
.y115{bottom:189.720000px;}
.y1bf{bottom:191.520000px;}
.y178{bottom:192.960000px;}
.y1e1{bottom:193.500000px;}
.yca{bottom:195.840000px;}
.yed{bottom:197.460000px;}
.y7c{bottom:197.985000px;}
.y8{bottom:200.385000px;}
.ye{bottom:201.990000px;}
.y14f{bottom:206.280000px;}
.y135{bottom:210.240000px;}
.y1be{bottom:210.600000px;}
.y103{bottom:210.960000px;}
.y15a{bottom:212.400000px;}
.y44{bottom:212.940000px;}
.y18c{bottom:216.180000px;}
.ya2{bottom:216.540000px;}
.y40{bottom:216.720000px;}
.y5a{bottom:217.830000px;}
.y114{bottom:218.160000px;}
.y177{bottom:221.400000px;}
.yc9{bottom:224.460000px;}
.yec{bottom:225.900000px;}
.y7b{bottom:226.470000px;}
.y1bd{bottom:229.500000px;}
.y1e0{bottom:231.480000px;}
.y14e{bottom:234.720000px;}
.y134{bottom:238.680000px;}
.y102{bottom:239.400000px;}
.y159{bottom:240.840000px;}
.y18b{bottom:244.620000px;}
.ya1{bottom:245.160000px;}
.y59{bottom:246.270000px;}
.y113{bottom:246.630000px;}
.y1bc{bottom:248.610000px;}
.y176{bottom:249.870000px;}
.y1df{bottom:250.410000px;}
.y3f{bottom:251.670000px;}
.yc8{bottom:252.930000px;}
.y7a{bottom:254.910000px;}
.y68{bottom:259.425000px;}
.y14d{bottom:263.370000px;}
.y133{bottom:267.150000px;}
.y1bb{bottom:267.510000px;}
.y101{bottom:267.870000px;}
.yeb{bottom:269.490000px;}
.y18a{bottom:273.090000px;}
.ya0{bottom:273.630000px;}
.y58{bottom:274.755000px;}
.y112{bottom:275.070000px;}
.y175{bottom:278.310000px;}
.yc7{bottom:281.370000px;}
.y79{bottom:283.350000px;}
.y3e{bottom:286.410000px;}
.y1de{bottom:288.390000px;}
.y14c{bottom:295.410000px;}
.y132{bottom:295.590000px;}
.y100{bottom:296.310000px;}
.yea{bottom:297.930000px;}
.y189{bottom:301.530000px;}
.y9f{bottom:302.070000px;}
.y57{bottom:303.195000px;}
.y111{bottom:303.510000px;}
.y1ba{bottom:305.490000px;}
.y174{bottom:306.930000px;}
.y1dd{bottom:307.290000px;}
.yc6{bottom:309.810000px;}
.y78{bottom:311.790000px;}
.y3d{bottom:321.510000px;}
.y131{bottom:324.030000px;}
.y1b9{bottom:324.390000px;}
.yff{bottom:324.750000px;}
.ye9{bottom:326.370000px;}
.y6{bottom:329.430000px;}
.y188{bottom:329.970000px;}
.y9e{bottom:330.510000px;}
.y56{bottom:331.635000px;}
.y110{bottom:331.950000px;}
.y199{bottom:333.390000px;}
.y173{bottom:335.370000px;}
.yc5{bottom:338.250000px;}
.y77{bottom:340.230000px;}
.y14b{bottom:342.930000px;}
.y1b8{bottom:343.470000px;}
.y1dc{bottom:345.270000px;}
.y130{bottom:352.650000px;}
.yfe{bottom:353.190000px;}
.ye8{bottom:354.810000px;}
.y3c{bottom:356.070000px;}
.y187{bottom:358.410000px;}
.y9d{bottom:358.950000px;}
.y55{bottom:360.255000px;}
.y10f{bottom:360.570000px;}
.y157{bottom:360.750000px;}
.y1b7{bottom:362.370000px;}
.y172{bottom:363.810000px;}
.y1db{bottom:364.350000px;}
.yc4{bottom:366.690000px;}
.y5{bottom:367.230000px;}
.y198{bottom:367.410000px;}
.y76{bottom:368.670000px;}
.y12f{bottom:381.090000px;}
.y1b6{bottom:381.270000px;}
.yfd{bottom:381.630000px;}
.y197{bottom:382.890000px;}
.y1a{bottom:382.905000px;}
.ye7{bottom:383.250000px;}
.y14a{bottom:386.490000px;}
.y54{bottom:388.695000px;}
.y10e{bottom:389.010000px;}
.y3b{bottom:390.990000px;}
.y186{bottom:392.070000px;}
.y171{bottom:392.250000px;}
.yc3{bottom:395.130000px;}
.y75{bottom:397.110000px;}
.y1b5{bottom:400.350000px;}
.y156{bottom:402.150000px;}
.y9c{bottom:402.330000px;}
.y12e{bottom:409.530000px;}
.y18{bottom:409.890000px;}
.yfc{bottom:410.250000px;}
.ye6{bottom:411.690000px;}
.y53{bottom:417.135000px;}
.y10d{bottom:417.450000px;}
.y196{bottom:417.630000px;}
.y1b4{bottom:419.250000px;}
.y170{bottom:420.690000px;}
.y1da{bottom:421.230000px;}
.y185{bottom:422.670000px;}
.yc2{bottom:423.570000px;}
.y3a{bottom:425.730000px;}
.y149{bottom:429.870000px;}
.y9b{bottom:430.950000px;}
.y12d{bottom:437.970000px;}
.y1b3{bottom:438.330000px;}
.yfb{bottom:438.690000px;}
.ye5{bottom:440.130000px;}
.y52{bottom:445.575000px;}
.y10c{bottom:445.890000px;}
.y16f{bottom:449.130000px;}
.y16{bottom:451.650000px;}
.yc1{bottom:452.010000px;}
.y184{bottom:453.090000px;}
.y74{bottom:454.200000px;}
.y195{bottom:455.790000px;}
.y1b2{bottom:457.230000px;}
.y1d9{bottom:459.210000px;}
.y9a{bottom:459.390000px;}
.y39{bottom:460.650000px;}
.y12c{bottom:466.410000px;}
.yfa{bottom:467.130000px;}
.ye4{bottom:468.570000px;}
.y148{bottom:473.295000px;}
.y51{bottom:474.015000px;}
.y10b{bottom:474.375000px;}
.y1b1{bottom:476.175000px;}
.y16e{bottom:477.615000px;}
.y1d8{bottom:478.155000px;}
.yc0{bottom:480.675000px;}
.y73{bottom:482.640000px;}
.y183{bottom:483.735000px;}
.y194{bottom:493.995000px;}
.y12b{bottom:494.895000px;}
.y38{bottom:495.435000px;}
.yf9{bottom:495.615000px;}
.ye3{bottom:497.055000px;}
.y50{bottom:502.485000px;}
.y99{bottom:502.815000px;}
.y1b0{bottom:504.795000px;}
.y14{bottom:506.055000px;}
.y153{bottom:508.575000px;}
.ybf{bottom:509.115000px;}
.y72{bottom:511.080000px;}
.y182{bottom:514.155000px;}
.y1d7{bottom:516.135000px;}
.y147{bottom:516.855000px;}
.y12a{bottom:523.335000px;}
.yf8{bottom:524.055000px;}
.ye2{bottom:525.675000px;}
.y37{bottom:530.355000px;}
.y4f{bottom:530.925000px;}
.y98{bottom:531.255000px;}
.y193{bottom:532.155000px;}
.y12{bottom:533.055000px;}
.y16d{bottom:534.495000px;}
.y1d6{bottom:535.035000px;}
.y1af{bottom:536.835000px;}
.ybe{bottom:537.555000px;}
.y71{bottom:539.520000px;}
.y181{bottom:544.755000px;}
.y16c{bottom:551.415000px;}
.y152{bottom:551.595000px;}
.y129{bottom:551.775000px;}
.yf7{bottom:552.495000px;}
.ye1{bottom:554.115000px;}
.y4e{bottom:559.365000px;}
.y97{bottom:559.695000px;}
.y146{bottom:560.235000px;}
.y36{bottom:565.095000px;}
.ybd{bottom:565.995000px;}
.y70{bottom:567.960000px;}
.y192{bottom:570.315000px;}
.y1d5{bottom:573.015000px;}
.y16b{bottom:574.995000px;}
.y180{bottom:575.175000px;}
.y128{bottom:580.215000px;}
.yf6{bottom:580.935000px;}
.ye0{bottom:582.555000px;}
.y1ae{bottom:584.355000px;}
.y4d{bottom:587.805000px;}
.yd{bottom:587.955000px;}
.y96{bottom:588.135000px;}
.y1d4{bottom:591.915000px;}
.y145{bottom:593.895000px;}
.ybc{bottom:594.435000px;}
.y6f{bottom:596.400000px;}
.y16a{bottom:598.575000px;}
.y35{bottom:600.015000px;}
.y17f{bottom:605.775000px;}
.y191{bottom:608.475000px;}
.y127{bottom:608.835000px;}
.yf5{bottom:609.375000px;}
.ydf{bottom:610.995000px;}
.y1ad{bottom:612.795000px;}
.y4c{bottom:616.425000px;}
.y95{bottom:616.755000px;}
.ya6{bottom:617.580000px;}
.y169{bottom:622.335000px;}
.ybb{bottom:622.875000px;}
.y144{bottom:624.495000px;}
.y6e{bottom:624.840000px;}
.y1d3{bottom:629.895000px;}
.y34{bottom:634.755000px;}
.y17e{bottom:636.375000px;}
.y126{bottom:637.275000px;}
.yf4{bottom:637.815000px;}
.y143{bottom:638.175000px;}
.yde{bottom:639.435000px;}
.y1ac{bottom:641.235000px;}
.y190{bottom:642.495000px;}
.y4b{bottom:644.865000px;}
.y94{bottom:645.195000px;}
.y168{bottom:647.355000px;}
.y1d2{bottom:648.975000px;}
.yba{bottom:651.315000px;}
.y6d{bottom:653.280000px;}
.y125{bottom:665.715000px;}
.yf3{bottom:666.435000px;}
.y17d{bottom:666.795000px;}
.y158{bottom:667.875000px;}
.ydd{bottom:668.055000px;}
.y33{bottom:669.675000px;}
.y1ab{bottom:669.855000px;}
.y4a{bottom:673.305000px;}
.y93{bottom:673.635000px;}
.y141{bottom:679.575000px;}
.y6c{bottom:681.945000px;}
.y1d1{bottom:686.955000px;}
.y167{bottom:689.655000px;}
.y124{bottom:694.155000px;}
.yb9{bottom:694.875000px;}
.ydc{bottom:696.315000px;}
.y17c{bottom:697.395000px;}
.y1aa{bottom:698.325000px;}
.y49{bottom:701.745000px;}
.y92{bottom:702.105000px;}
.y32{bottom:704.445000px;}
.y1d0{bottom:705.885000px;}
.y6b{bottom:710.385000px;}
.y140{bottom:721.005000px;}
.y123{bottom:722.625000px;}
.yb8{bottom:723.345000px;}
.y166{bottom:724.425000px;}
.ydb{bottom:724.785000px;}
.y1a9{bottom:726.765000px;}
.y17b{bottom:727.845000px;}
.y48{bottom:730.230000px;}
.y91{bottom:730.545000px;}
.y1eb{bottom:732.885000px;}
.y6a{bottom:738.825000px;}
.y31{bottom:739.365000px;}
.y165{bottom:741.525000px;}
.y1cf{bottom:743.865000px;}
.y122{bottom:751.065000px;}
.yb7{bottom:751.785000px;}
.yda{bottom:753.225000px;}
.y1a8{bottom:755.205000px;}
.y47{bottom:758.670000px;}
.y90{bottom:758.985000px;}
.y13f{bottom:762.405000px;}
.y1ce{bottom:762.765000px;}
.y164{bottom:765.285000px;}
.y30{bottom:774.285000px;}
.y1ea{bottom:776.445000px;}
.y121{bottom:779.505000px;}
.yb6{bottom:780.225000px;}
.yd9{bottom:781.845000px;}
.y69{bottom:782.385000px;}
.y1a7{bottom:783.645000px;}
.y46{bottom:787.110000px;}
.y8f{bottom:787.425000px;}
.y163{bottom:788.865000px;}
.yf2{bottom:795.165000px;}
.y1cd{bottom:800.745000px;}
.y13d{bottom:803.805000px;}
.y1e9{bottom:804.885000px;}
.y120{bottom:807.945000px;}
.yb5{bottom:808.665000px;}
.y2f{bottom:809.025000px;}
.yd8{bottom:810.285000px;}
.y1a6{bottom:812.085000px;}
.y162{bottom:812.445000px;}
.y8e{bottom:815.865000px;}
.y1cc{bottom:819.645000px;}
.yf1{bottom:823.605000px;}
.y13a{bottom:828.825000px;}
.y45{bottom:830.850000px;}
.y1e8{bottom:833.325000px;}
.y160{bottom:836.025000px;}
.y11f{bottom:836.385000px;}
.yb4{bottom:837.105000px;}
.yd7{bottom:838.725000px;}
.y1a5{bottom:840.525000px;}
.y7{bottom:841.065000px;}
.y2e{bottom:844.125000px;}
.y8d{bottom:844.305000px;}
.yf0{bottom:852.225000px;}
.y1cb{bottom:857.625000px;}
.y15f{bottom:859.785000px;}
.y11e{bottom:865.005000px;}
.yd6{bottom:867.165000px;}
.y1a4{bottom:868.965000px;}
.y8c{bottom:872.925000px;}
.y1ca{bottom:876.705000px;}
.y1e7{bottom:876.885000px;}
.y2d{bottom:878.685000px;}
.yb3{bottom:880.665000px;}
.y15e{bottom:884.805000px;}
.y139{bottom:888.945000px;}
.y11d{bottom:893.445000px;}
.yd5{bottom:895.605000px;}
.y1a3{bottom:897.405000px;}
.y8b{bottom:901.365000px;}
.y1e6{bottom:908.925000px;}
.yb2{bottom:909.105000px;}
.y2c{bottom:913.785000px;}
.y1c9{bottom:914.505000px;}
.y11c{bottom:921.885000px;}
.y138{bottom:923.685000px;}
.yd4{bottom:924.090000px;}
.y1a2{bottom:926.070000px;}
.y15d{bottom:927.150000px;}
.y8a{bottom:929.850000px;}
.y1c8{bottom:933.630000px;}
.yb1{bottom:937.590000px;}
.y2b{bottom:948.390000px;}
.y67{bottom:949.650000px;}
.y11b{bottom:950.370000px;}
.yd3{bottom:952.530000px;}
.y1a1{bottom:954.510000px;}
.y1e5{bottom:956.490000px;}
.y89{bottom:958.290000px;}
.y10a{bottom:958.470000px;}
.yb0{bottom:966.030000px;}
.y1c7{bottom:971.610000px;}
.y11a{bottom:978.810000px;}
.yd2{bottom:980.970000px;}
.y1a0{bottom:982.950000px;}
.y2a{bottom:983.310000px;}
.y88{bottom:986.730000px;}
.y109{bottom:990.330000px;}
.y1c6{bottom:990.510000px;}
.y66{bottom:993.210000px;}
.yaf{bottom:994.470000px;}
.y119{bottom:1008.330000px;}
.yd1{bottom:1009.410000px;}
.y19f{bottom:1011.390000px;}
.y87{bottom:1015.170000px;}
.y29{bottom:1018.050000px;}
.yae{bottom:1022.910000px;}
.y1c5{bottom:1028.490000px;}
.y65{bottom:1036.590000px;}
.y118{bottom:1036.950000px;}
.yd0{bottom:1038.030000px;}
.y19e{bottom:1039.830000px;}
.y86{bottom:1043.610000px;}
.y1c4{bottom:1047.390000px;}
.y28{bottom:1052.970000px;}
.yad{bottom:1066.470000px;}
.y19d{bottom:1068.450000px;}
.y85{bottom:1072.050000px;}
.y64{bottom:1079.970000px;}
.y1c3{bottom:1085.370000px;}
.y27{bottom:1087.710000px;}
.yac{bottom:1094.910000px;}
.y19c{bottom:1096.890000px;}
.y4{bottom:1102.650000px;}
.y1c2{bottom:1104.270000px;}
.y84{bottom:1119.210000px;}
.y26{bottom:1123.350000px;}
.y63{bottom:1123.530000px;}
.y19b{bottom:1125.150000px;}
.y3{bottom:1140.810000px;}
.y24{bottom:1143.330000px;}
.y20{bottom:1163.160000px;}
.y1{bottom:1194.300000px;}
.h2d{height:22.485000px;}
.h2a{height:22.500000px;}
.h2e{height:23.565000px;}
.h26{height:23.580000px;}
.h2f{height:23.745000px;}
.h2c{height:23.760000px;}
.h10{height:26.985000px;}
.hb{height:27.000000px;}
.h23{height:40.320000px;}
.h29{height:41.385000px;}
.h27{height:41.400000px;}
.h28{height:41.430000px;}
.he{height:41.760000px;}
.h14{height:42.120000px;}
.h30{height:42.910312px;}
.h19{height:45.184219px;}
.h24{height:45.281250px;}
.h2{height:45.345937px;}
.h25{height:46.057500px;}
.h1f{height:46.080000px;}
.hf{height:48.095156px;}
.h13{height:49.289062px;}
.h1a{height:50.695312px;}
.h12{height:52.277344px;}
.h9{height:54.000000px;}
.hc{height:54.396000px;}
.h1d{height:56.320312px;}
.h5{height:57.636562px;}
.h20{height:61.560000px;}
.h16{height:62.327813px;}
.h15{height:62.648438px;}
.h3{height:69.086250px;}
.h22{height:70.790625px;}
.h21{height:73.794375px;}
.h1e{height:75.093750px;}
.h11{height:77.038500px;}
.hd{height:78.416016px;}
.h2b{height:82.836000px;}
.h1c{height:83.700000px;}
.h1b{height:87.859687px;}
.ha{height:114.646641px;}
.h7{height:187.945312px;}
.h8{height:208.619297px;}
.h4{height:216.030000px;}
.h6{height:253.110000px;}
.h18{height:797.490000px;}
.h17{height:845.955000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:18.709500px;}
.wc{width:66.060000px;}
.wa{width:107.449500px;}
.we{width:148.702500px;}
.w8{width:204.840000px;}
.w11{width:214.039500px;}
.w12{width:221.070000px;}
.wf{width:238.170000px;}
.w13{width:255.840000px;}
.w9{width:298.620000px;}
.w10{width:303.900000px;}
.w7{width:344.700000px;}
.w3{width:502.125000px;}
.wb{width:536.715000px;}
.wd{width:573.990000px;}
.w6{width:575.190000px;}
.w5{width:675.495000px;}
.w2{width:696.570000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:5.209500px;}
.x15{left:6.829500px;}
.x5{left:8.100000px;}
.x18{left:10.789500px;}
.xa{left:14.940000px;}
.x9{left:40.854000px;}
.x8{left:48.594000px;}
.x12{left:49.905000px;}
.x4{left:51.114000px;}
.x13{left:52.425000px;}
.x19{left:63.883500px;}
.xb{left:82.254000px;}
.x3{left:119.556000px;}
.x27{left:122.446500px;}
.x1e{left:123.886500px;}
.x22{left:126.586500px;}
.x1{left:127.656000px;}
.x14{left:141.166500px;}
.x1f{left:154.650000px;}
.xc{left:181.119000px;}
.x6{left:184.359000px;}
.xe{left:187.959000px;}
.x26{left:192.630000px;}
.x11{left:216.750000px;}
.x24{left:234.045000px;}
.x10{left:247.899000px;}
.x7{left:264.279000px;}
.xf{left:265.719000px;}
.x28{left:271.155000px;}
.x2a{left:336.495000px;}
.xd{left:348.369000px;}
.x2c{left:459.465000px;}
.x2{left:462.525000px;}
.x17{left:463.785000px;}
.x16{left:465.765000px;}
.x29{left:509.340000px;}
.x21{left:520.380000px;}
.x2b{left:557.580000px;}
.x20{left:602.100000px;}
.x1a{left:701.610000px;}
.x1b{left:703.950000px;}
.x1c{left:746.460000px;}
.x1d{left:764.820000px;}
.x25{left:778.320000px;}
.x2d{left:779.760000px;}
.x2f{left:788.940000px;}
.x2e{left:832.860000px;}
@media print{
.v2{vertical-align:-8.426667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.960000pt;}
.v1{vertical-align:26.880000pt;}
.ls11{letter-spacing:-0.874667pt;}
.ls10{letter-spacing:-0.736000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.406933pt;}
.ls18{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.272533pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.230933pt;}
.ls1d{letter-spacing:-0.158933pt;}
.ls8{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.009387pt;}
.ls2{letter-spacing:0.047360pt;}
.ls21{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.129280pt;}
.ls25{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.232960pt;}
.lsb{letter-spacing:0.233067pt;}
.ls13{letter-spacing:0.271360pt;}
.lsf{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.368533pt;}
.ls12{letter-spacing:0.406933pt;}
.ls17{letter-spacing:0.431360pt;}
.ls4{letter-spacing:0.544000pt;}
.ls2a{letter-spacing:0.702720pt;}
.ls23{letter-spacing:0.911360pt;}
.ls24{letter-spacing:2.191360pt;}
.ls15{letter-spacing:3.471360pt;}
.ls16{letter-spacing:5.391360pt;}
.lse{letter-spacing:7.951360pt;}
.lsd{letter-spacing:8.591360pt;}
.ls27{letter-spacing:9.871360pt;}
.ls1c{letter-spacing:13.711360pt;}
.ls19{letter-spacing:19.471360pt;}
.ls14{letter-spacing:20.751360pt;}
.ls28{letter-spacing:24.591360pt;}
.ls1e{letter-spacing:52.751360pt;}
.ls2c{letter-spacing:91.151360pt;}
.ls29{letter-spacing:123.770027pt;}
.wse{word-spacing:-58.880000pt;}
.ws15{word-spacing:-17.920000pt;}
.ws17{word-spacing:-17.792000pt;}
.ws10{word-spacing:-16.737173pt;}
.wsd{word-spacing:-16.640107pt;}
.ws9{word-spacing:-16.601707pt;}
.wsb{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.135573pt;}
.ws8{word-spacing:-16.097173pt;}
.wsf{word-spacing:-16.000107pt;}
.ws13{word-spacing:-15.961707pt;}
.ws14{word-spacing:-15.728640pt;}
.wsc{word-spacing:-15.632640pt;}
.ws3{word-spacing:-15.311360pt;}
.ws1{word-spacing:-14.814720pt;}
.ws2{word-spacing:-14.767360pt;}
.ws5{word-spacing:-14.536427pt;}
.ws4{word-spacing:-14.494827pt;}
.ws19{word-spacing:-13.534613pt;}
.ws18{word-spacing:-13.440000pt;}
.ws16{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.189013pt;}
.ws11{word-spacing:-10.319360pt;}
.ws12{word-spacing:-10.160427pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-13.110613pt;}
._2f{margin-left:-4.657280pt;}
._21{margin-left:-2.097920pt;}
._1{margin-left:-1.177600pt;}
._2{width:1.054080pt;}
._4{width:2.336213pt;}
._8{width:3.831040pt;}
._12{width:4.940800pt;}
._9{width:6.341120pt;}
._7{width:7.595520pt;}
._c{width:9.008640pt;}
._d{width:10.009600pt;}
._b{width:11.696213pt;}
._a{width:12.894720pt;}
._37{width:13.810347pt;}
._6{width:14.720000pt;}
._32{width:17.257813pt;}
._16{width:18.151893pt;}
._15{width:19.060267pt;}
._10{width:20.019200pt;}
._e{width:21.373440pt;}
._f{width:22.551040pt;}
._35{width:23.669760pt;}
._13{width:24.611840pt;}
._2a{width:26.083840pt;}
._34{width:27.209387pt;}
._27{width:28.359467pt;}
._17{width:29.557760pt;}
._18{width:30.853120pt;}
._1e{width:32.345600pt;}
._14{width:34.150400pt;}
._2d{width:35.534507pt;}
._2b{width:37.212160pt;}
._38{width:38.125227pt;}
._23{width:39.037440pt;}
._22{width:40.156160pt;}
._19{width:41.863680pt;}
._1a{width:43.384320pt;}
._11{width:44.748800pt;}
._2e{width:46.103040pt;}
._3b{width:47.040853pt;}
._25{width:49.920000pt;}
._24{width:51.168000pt;}
._33{width:52.546560pt;}
._28{width:55.200853pt;}
._1d{width:56.965547pt;}
._1b{width:58.232320pt;}
._1f{width:61.235200pt;}
._20{width:62.264747pt;}
._30{width:63.825920pt;}
._31{width:65.185493pt;}
._29{width:66.828800pt;}
._1c{width:90.498560pt;}
._3{width:112.998187pt;}
._3a{width:123.498240pt;}
._26{width:134.010027pt;}
._36{width:151.301333pt;}
._2c{width:172.410027pt;}
._0{width:751.401387pt;}
._39{width:846.991787pt;}
.fsc{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fsb{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fsd{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:117.120000pt;}
.fs1{font-size:192.000000pt;}
.fs2{font-size:213.120000pt;}
.y62{bottom:-35.360000pt;}
.y83{bottom:-27.720000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:3.200000pt;}
.y23{bottom:3.520000pt;}
.y13e{bottom:3.680000pt;}
.y161{bottom:3.840000pt;}
.y13c{bottom:4.160000pt;}
.y1b{bottom:7.186667pt;}
.y15{bottom:7.200000pt;}
.yab{bottom:8.226667pt;}
.y11{bottom:10.720000pt;}
.y82{bottom:10.866667pt;}
.y13{bottom:13.600000pt;}
.y19{bottom:13.760000pt;}
.y1f{bottom:14.240000pt;}
.y17{bottom:16.000000pt;}
.ycf{bottom:16.160000pt;}
.y13b{bottom:22.080000pt;}
.y142{bottom:22.106667pt;}
.yaa{bottom:22.146667pt;}
.y22{bottom:22.240000pt;}
.y21{bottom:23.680000pt;}
.y60{bottom:28.480000pt;}
.yce{bottom:29.920000pt;}
.y1e{bottom:33.760000pt;}
.ya9{bottom:35.906667pt;}
.y81{bottom:36.146667pt;}
.y155{bottom:40.480000pt;}
.y108{bottom:43.680000pt;}
.ya8{bottom:49.666667pt;}
.y2{bottom:51.200000pt;}
.y1d{bottom:53.280000pt;}
.y154{bottom:58.920000pt;}
.yc{bottom:59.200000pt;}
.ya7{bottom:63.426667pt;}
.y10{bottom:67.040000pt;}
.y5f{bottom:67.066667pt;}
.y25{bottom:69.120000pt;}
.y80{bottom:74.706667pt;}
.y5e{bottom:92.506667pt;}
.yb{bottom:93.160000pt;}
.y43{bottom:98.720000pt;}
.y7f{bottom:99.986667pt;}
.ya5{bottom:103.360000pt;}
.y1e4{bottom:104.480000pt;}
.y107{bottom:105.440000pt;}
.y137{bottom:111.040000pt;}
.y106{bottom:111.520000pt;}
.y19a{bottom:114.560000pt;}
.y18f{bottom:116.320000pt;}
.y5d{bottom:117.786667pt;}
.y117{bottom:118.080000pt;}
.y17a{bottom:120.960000pt;}
.y1e3{bottom:121.440000pt;}
.yf{bottom:123.386667pt;}
.ycc{bottom:123.520000pt;}
.yef{bottom:124.960000pt;}
.y7e{bottom:125.266667pt;}
.ya{bottom:127.080000pt;}
.y1c{bottom:128.480000pt;}
.ya4{bottom:128.640000pt;}
.y42{bottom:130.720000pt;}
.y151{bottom:132.800000pt;}
.y136{bottom:136.320000pt;}
.y1c1{bottom:136.480000pt;}
.y105{bottom:136.960000pt;}
.y15c{bottom:138.240000pt;}
.y18e{bottom:141.600000pt;}
.y5c{bottom:143.066667pt;}
.y116{bottom:143.360000pt;}
.y179{bottom:146.240000pt;}
.ycb{bottom:148.800000pt;}
.yee{bottom:150.240000pt;}
.y7d{bottom:150.706667pt;}
.y1c0{bottom:153.440000pt;}
.ya3{bottom:153.920000pt;}
.y1e2{bottom:155.040000pt;}
.y150{bottom:158.080000pt;}
.y9{bottom:161.000000pt;}
.y41{bottom:161.600000pt;}
.y104{bottom:162.240000pt;}
.ycd{bottom:162.880000pt;}
.y15b{bottom:163.520000pt;}
.y18d{bottom:166.880000pt;}
.y5b{bottom:168.346667pt;}
.y115{bottom:168.640000pt;}
.y1bf{bottom:170.240000pt;}
.y178{bottom:171.520000pt;}
.y1e1{bottom:172.000000pt;}
.yca{bottom:174.080000pt;}
.yed{bottom:175.520000pt;}
.y7c{bottom:175.986667pt;}
.y8{bottom:178.120000pt;}
.ye{bottom:179.546667pt;}
.y14f{bottom:183.360000pt;}
.y135{bottom:186.880000pt;}
.y1be{bottom:187.200000pt;}
.y103{bottom:187.520000pt;}
.y15a{bottom:188.800000pt;}
.y44{bottom:189.280000pt;}
.y18c{bottom:192.160000pt;}
.ya2{bottom:192.480000pt;}
.y40{bottom:192.640000pt;}
.y5a{bottom:193.626667pt;}
.y114{bottom:193.920000pt;}
.y177{bottom:196.800000pt;}
.yc9{bottom:199.520000pt;}
.yec{bottom:200.800000pt;}
.y7b{bottom:201.306667pt;}
.y1bd{bottom:204.000000pt;}
.y1e0{bottom:205.760000pt;}
.y14e{bottom:208.640000pt;}
.y134{bottom:212.160000pt;}
.y102{bottom:212.800000pt;}
.y159{bottom:214.080000pt;}
.y18b{bottom:217.440000pt;}
.ya1{bottom:217.920000pt;}
.y59{bottom:218.906667pt;}
.y113{bottom:219.226667pt;}
.y1bc{bottom:220.986667pt;}
.y176{bottom:222.106667pt;}
.y1df{bottom:222.586667pt;}
.y3f{bottom:223.706667pt;}
.yc8{bottom:224.826667pt;}
.y7a{bottom:226.586667pt;}
.y68{bottom:230.600000pt;}
.y14d{bottom:234.106667pt;}
.y133{bottom:237.466667pt;}
.y1bb{bottom:237.786667pt;}
.y101{bottom:238.106667pt;}
.yeb{bottom:239.546667pt;}
.y18a{bottom:242.746667pt;}
.ya0{bottom:243.226667pt;}
.y58{bottom:244.226667pt;}
.y112{bottom:244.506667pt;}
.y175{bottom:247.386667pt;}
.yc7{bottom:250.106667pt;}
.y79{bottom:251.866667pt;}
.y3e{bottom:254.586667pt;}
.y1de{bottom:256.346667pt;}
.y14c{bottom:262.586667pt;}
.y132{bottom:262.746667pt;}
.y100{bottom:263.386667pt;}
.yea{bottom:264.826667pt;}
.y189{bottom:268.026667pt;}
.y9f{bottom:268.506667pt;}
.y57{bottom:269.506667pt;}
.y111{bottom:269.786667pt;}
.y1ba{bottom:271.546667pt;}
.y174{bottom:272.826667pt;}
.y1dd{bottom:273.146667pt;}
.yc6{bottom:275.386667pt;}
.y78{bottom:277.146667pt;}
.y3d{bottom:285.786667pt;}
.y131{bottom:288.026667pt;}
.y1b9{bottom:288.346667pt;}
.yff{bottom:288.666667pt;}
.ye9{bottom:290.106667pt;}
.y6{bottom:292.826667pt;}
.y188{bottom:293.306667pt;}
.y9e{bottom:293.786667pt;}
.y56{bottom:294.786667pt;}
.y110{bottom:295.066667pt;}
.y199{bottom:296.346667pt;}
.y173{bottom:298.106667pt;}
.yc5{bottom:300.666667pt;}
.y77{bottom:302.426667pt;}
.y14b{bottom:304.826667pt;}
.y1b8{bottom:305.306667pt;}
.y1dc{bottom:306.906667pt;}
.y130{bottom:313.466667pt;}
.yfe{bottom:313.946667pt;}
.ye8{bottom:315.386667pt;}
.y3c{bottom:316.506667pt;}
.y187{bottom:318.586667pt;}
.y9d{bottom:319.066667pt;}
.y55{bottom:320.226667pt;}
.y10f{bottom:320.506667pt;}
.y157{bottom:320.666667pt;}
.y1b7{bottom:322.106667pt;}
.y172{bottom:323.386667pt;}
.y1db{bottom:323.866667pt;}
.yc4{bottom:325.946667pt;}
.y5{bottom:326.426667pt;}
.y198{bottom:326.586667pt;}
.y76{bottom:327.706667pt;}
.y12f{bottom:338.746667pt;}
.y1b6{bottom:338.906667pt;}
.yfd{bottom:339.226667pt;}
.y197{bottom:340.346667pt;}
.y1a{bottom:340.360000pt;}
.ye7{bottom:340.666667pt;}
.y14a{bottom:343.546667pt;}
.y54{bottom:345.506667pt;}
.y10e{bottom:345.786667pt;}
.y3b{bottom:347.546667pt;}
.y186{bottom:348.506667pt;}
.y171{bottom:348.666667pt;}
.yc3{bottom:351.226667pt;}
.y75{bottom:352.986667pt;}
.y1b5{bottom:355.866667pt;}
.y156{bottom:357.466667pt;}
.y9c{bottom:357.626667pt;}
.y12e{bottom:364.026667pt;}
.y18{bottom:364.346667pt;}
.yfc{bottom:364.666667pt;}
.ye6{bottom:365.946667pt;}
.y53{bottom:370.786667pt;}
.y10d{bottom:371.066667pt;}
.y196{bottom:371.226667pt;}
.y1b4{bottom:372.666667pt;}
.y170{bottom:373.946667pt;}
.y1da{bottom:374.426667pt;}
.y185{bottom:375.706667pt;}
.yc2{bottom:376.506667pt;}
.y3a{bottom:378.426667pt;}
.y149{bottom:382.106667pt;}
.y9b{bottom:383.066667pt;}
.y12d{bottom:389.306667pt;}
.y1b3{bottom:389.626667pt;}
.yfb{bottom:389.946667pt;}
.ye5{bottom:391.226667pt;}
.y52{bottom:396.066667pt;}
.y10c{bottom:396.346667pt;}
.y16f{bottom:399.226667pt;}
.y16{bottom:401.466667pt;}
.yc1{bottom:401.786667pt;}
.y184{bottom:402.746667pt;}
.y74{bottom:403.733333pt;}
.y195{bottom:405.146667pt;}
.y1b2{bottom:406.426667pt;}
.y1d9{bottom:408.186667pt;}
.y9a{bottom:408.346667pt;}
.y39{bottom:409.466667pt;}
.y12c{bottom:414.586667pt;}
.yfa{bottom:415.226667pt;}
.ye4{bottom:416.506667pt;}
.y148{bottom:420.706667pt;}
.y51{bottom:421.346667pt;}
.y10b{bottom:421.666667pt;}
.y1b1{bottom:423.266667pt;}
.y16e{bottom:424.546667pt;}
.y1d8{bottom:425.026667pt;}
.yc0{bottom:427.266667pt;}
.y73{bottom:429.013333pt;}
.y183{bottom:429.986667pt;}
.y194{bottom:439.106667pt;}
.y12b{bottom:439.906667pt;}
.y38{bottom:440.386667pt;}
.yf9{bottom:440.546667pt;}
.ye3{bottom:441.826667pt;}
.y50{bottom:446.653333pt;}
.y99{bottom:446.946667pt;}
.y1b0{bottom:448.706667pt;}
.y14{bottom:449.826667pt;}
.y153{bottom:452.066667pt;}
.ybf{bottom:452.546667pt;}
.y72{bottom:454.293333pt;}
.y182{bottom:457.026667pt;}
.y1d7{bottom:458.786667pt;}
.y147{bottom:459.426667pt;}
.y12a{bottom:465.186667pt;}
.yf8{bottom:465.826667pt;}
.ye2{bottom:467.266667pt;}
.y37{bottom:471.426667pt;}
.y4f{bottom:471.933333pt;}
.y98{bottom:472.226667pt;}
.y193{bottom:473.026667pt;}
.y12{bottom:473.826667pt;}
.y16d{bottom:475.106667pt;}
.y1d6{bottom:475.586667pt;}
.y1af{bottom:477.186667pt;}
.ybe{bottom:477.826667pt;}
.y71{bottom:479.573333pt;}
.y181{bottom:484.226667pt;}
.y16c{bottom:490.146667pt;}
.y152{bottom:490.306667pt;}
.y129{bottom:490.466667pt;}
.yf7{bottom:491.106667pt;}
.ye1{bottom:492.546667pt;}
.y4e{bottom:497.213333pt;}
.y97{bottom:497.506667pt;}
.y146{bottom:497.986667pt;}
.y36{bottom:502.306667pt;}
.ybd{bottom:503.106667pt;}
.y70{bottom:504.853333pt;}
.y192{bottom:506.946667pt;}
.y1d5{bottom:509.346667pt;}
.y16b{bottom:511.106667pt;}
.y180{bottom:511.266667pt;}
.y128{bottom:515.746667pt;}
.yf6{bottom:516.386667pt;}
.ye0{bottom:517.826667pt;}
.y1ae{bottom:519.426667pt;}
.y4d{bottom:522.493333pt;}
.yd{bottom:522.626667pt;}
.y96{bottom:522.786667pt;}
.y1d4{bottom:526.146667pt;}
.y145{bottom:527.906667pt;}
.ybc{bottom:528.386667pt;}
.y6f{bottom:530.133333pt;}
.y16a{bottom:532.066667pt;}
.y35{bottom:533.346667pt;}
.y17f{bottom:538.466667pt;}
.y191{bottom:540.866667pt;}
.y127{bottom:541.186667pt;}
.yf5{bottom:541.666667pt;}
.ydf{bottom:543.106667pt;}
.y1ad{bottom:544.706667pt;}
.y4c{bottom:547.933333pt;}
.y95{bottom:548.226667pt;}
.ya6{bottom:548.960000pt;}
.y169{bottom:553.186667pt;}
.ybb{bottom:553.666667pt;}
.y144{bottom:555.106667pt;}
.y6e{bottom:555.413333pt;}
.y1d3{bottom:559.906667pt;}
.y34{bottom:564.226667pt;}
.y17e{bottom:565.666667pt;}
.y126{bottom:566.466667pt;}
.yf4{bottom:566.946667pt;}
.y143{bottom:567.266667pt;}
.yde{bottom:568.386667pt;}
.y1ac{bottom:569.986667pt;}
.y190{bottom:571.106667pt;}
.y4b{bottom:573.213333pt;}
.y94{bottom:573.506667pt;}
.y168{bottom:575.426667pt;}
.y1d2{bottom:576.866667pt;}
.yba{bottom:578.946667pt;}
.y6d{bottom:580.693333pt;}
.y125{bottom:591.746667pt;}
.yf3{bottom:592.386667pt;}
.y17d{bottom:592.706667pt;}
.y158{bottom:593.666667pt;}
.ydd{bottom:593.826667pt;}
.y33{bottom:595.266667pt;}
.y1ab{bottom:595.426667pt;}
.y4a{bottom:598.493333pt;}
.y93{bottom:598.786667pt;}
.y141{bottom:604.066667pt;}
.y6c{bottom:606.173333pt;}
.y1d1{bottom:610.626667pt;}
.y167{bottom:613.026667pt;}
.y124{bottom:617.026667pt;}
.yb9{bottom:617.666667pt;}
.ydc{bottom:618.946667pt;}
.y17c{bottom:619.906667pt;}
.y1aa{bottom:620.733333pt;}
.y49{bottom:623.773333pt;}
.y92{bottom:624.093333pt;}
.y32{bottom:626.173333pt;}
.y1d0{bottom:627.453333pt;}
.y6b{bottom:631.453333pt;}
.y140{bottom:640.893333pt;}
.y123{bottom:642.333333pt;}
.yb8{bottom:642.973333pt;}
.y166{bottom:643.933333pt;}
.ydb{bottom:644.253333pt;}
.y1a9{bottom:646.013333pt;}
.y17b{bottom:646.973333pt;}
.y48{bottom:649.093333pt;}
.y91{bottom:649.373333pt;}
.y1eb{bottom:651.453333pt;}
.y6a{bottom:656.733333pt;}
.y31{bottom:657.213333pt;}
.y165{bottom:659.133333pt;}
.y1cf{bottom:661.213333pt;}
.y122{bottom:667.613333pt;}
.yb7{bottom:668.253333pt;}
.yda{bottom:669.533333pt;}
.y1a8{bottom:671.293333pt;}
.y47{bottom:674.373333pt;}
.y90{bottom:674.653333pt;}
.y13f{bottom:677.693333pt;}
.y1ce{bottom:678.013333pt;}
.y164{bottom:680.253333pt;}
.y30{bottom:688.253333pt;}
.y1ea{bottom:690.173333pt;}
.y121{bottom:692.893333pt;}
.yb6{bottom:693.533333pt;}
.yd9{bottom:694.973333pt;}
.y69{bottom:695.453333pt;}
.y1a7{bottom:696.573333pt;}
.y46{bottom:699.653333pt;}
.y8f{bottom:699.933333pt;}
.y163{bottom:701.213333pt;}
.yf2{bottom:706.813333pt;}
.y1cd{bottom:711.773333pt;}
.y13d{bottom:714.493333pt;}
.y1e9{bottom:715.453333pt;}
.y120{bottom:718.173333pt;}
.yb5{bottom:718.813333pt;}
.y2f{bottom:719.133333pt;}
.yd8{bottom:720.253333pt;}
.y1a6{bottom:721.853333pt;}
.y162{bottom:722.173333pt;}
.y8e{bottom:725.213333pt;}
.y1cc{bottom:728.573333pt;}
.yf1{bottom:732.093333pt;}
.y13a{bottom:736.733333pt;}
.y45{bottom:738.533333pt;}
.y1e8{bottom:740.733333pt;}
.y160{bottom:743.133333pt;}
.y11f{bottom:743.453333pt;}
.yb4{bottom:744.093333pt;}
.yd7{bottom:745.533333pt;}
.y1a5{bottom:747.133333pt;}
.y7{bottom:747.613333pt;}
.y2e{bottom:750.333333pt;}
.y8d{bottom:750.493333pt;}
.yf0{bottom:757.533333pt;}
.y1cb{bottom:762.333333pt;}
.y15f{bottom:764.253333pt;}
.y11e{bottom:768.893333pt;}
.yd6{bottom:770.813333pt;}
.y1a4{bottom:772.413333pt;}
.y8c{bottom:775.933333pt;}
.y1ca{bottom:779.293333pt;}
.y1e7{bottom:779.453333pt;}
.y2d{bottom:781.053333pt;}
.yb3{bottom:782.813333pt;}
.y15e{bottom:786.493333pt;}
.y139{bottom:790.173333pt;}
.y11d{bottom:794.173333pt;}
.yd5{bottom:796.093333pt;}
.y1a3{bottom:797.693333pt;}
.y8b{bottom:801.213333pt;}
.y1e6{bottom:807.933333pt;}
.yb2{bottom:808.093333pt;}
.y2c{bottom:812.253333pt;}
.y1c9{bottom:812.893333pt;}
.y11c{bottom:819.453333pt;}
.y138{bottom:821.053333pt;}
.yd4{bottom:821.413333pt;}
.y1a2{bottom:823.173333pt;}
.y15d{bottom:824.133333pt;}
.y8a{bottom:826.533333pt;}
.y1c8{bottom:829.893333pt;}
.yb1{bottom:833.413333pt;}
.y2b{bottom:843.013333pt;}
.y67{bottom:844.133333pt;}
.y11b{bottom:844.773333pt;}
.yd3{bottom:846.693333pt;}
.y1a1{bottom:848.453333pt;}
.y1e5{bottom:850.213333pt;}
.y89{bottom:851.813333pt;}
.y10a{bottom:851.973333pt;}
.yb0{bottom:858.693333pt;}
.y1c7{bottom:863.653333pt;}
.y11a{bottom:870.053333pt;}
.yd2{bottom:871.973333pt;}
.y1a0{bottom:873.733333pt;}
.y2a{bottom:874.053333pt;}
.y88{bottom:877.093333pt;}
.y109{bottom:880.293333pt;}
.y1c6{bottom:880.453333pt;}
.y66{bottom:882.853333pt;}
.yaf{bottom:883.973333pt;}
.y119{bottom:896.293333pt;}
.yd1{bottom:897.253333pt;}
.y19f{bottom:899.013333pt;}
.y87{bottom:902.373333pt;}
.y29{bottom:904.933333pt;}
.yae{bottom:909.253333pt;}
.y1c5{bottom:914.213333pt;}
.y65{bottom:921.413333pt;}
.y118{bottom:921.733333pt;}
.yd0{bottom:922.693333pt;}
.y19e{bottom:924.293333pt;}
.y86{bottom:927.653333pt;}
.y1c4{bottom:931.013333pt;}
.y28{bottom:935.973333pt;}
.yad{bottom:947.973333pt;}
.y19d{bottom:949.733333pt;}
.y85{bottom:952.933333pt;}
.y64{bottom:959.973333pt;}
.y1c3{bottom:964.773333pt;}
.y27{bottom:966.853333pt;}
.yac{bottom:973.253333pt;}
.y19c{bottom:975.013333pt;}
.y4{bottom:980.133333pt;}
.y1c2{bottom:981.573333pt;}
.y84{bottom:994.853333pt;}
.y26{bottom:998.533333pt;}
.y63{bottom:998.693333pt;}
.y19b{bottom:1000.133333pt;}
.y3{bottom:1014.053333pt;}
.y24{bottom:1016.293333pt;}
.y20{bottom:1033.920000pt;}
.y1{bottom:1061.600000pt;}
.h2d{height:19.986667pt;}
.h2a{height:20.000000pt;}
.h2e{height:20.946667pt;}
.h26{height:20.960000pt;}
.h2f{height:21.106667pt;}
.h2c{height:21.120000pt;}
.h10{height:23.986667pt;}
.hb{height:24.000000pt;}
.h23{height:35.840000pt;}
.h29{height:36.786667pt;}
.h27{height:36.800000pt;}
.h28{height:36.826667pt;}
.he{height:37.120000pt;}
.h14{height:37.440000pt;}
.h30{height:38.142500pt;}
.h19{height:40.163750pt;}
.h24{height:40.250000pt;}
.h2{height:40.307500pt;}
.h25{height:40.940000pt;}
.h1f{height:40.960000pt;}
.hf{height:42.751250pt;}
.h13{height:43.812500pt;}
.h1a{height:45.062500pt;}
.h12{height:46.468750pt;}
.h9{height:48.000000pt;}
.hc{height:48.352000pt;}
.h1d{height:50.062500pt;}
.h5{height:51.232500pt;}
.h20{height:54.720000pt;}
.h16{height:55.402500pt;}
.h15{height:55.687500pt;}
.h3{height:61.410000pt;}
.h22{height:62.925000pt;}
.h21{height:65.595000pt;}
.h1e{height:66.750000pt;}
.h11{height:68.478667pt;}
.hd{height:69.703125pt;}
.h2b{height:73.632000pt;}
.h1c{height:74.400000pt;}
.h1b{height:78.097500pt;}
.ha{height:101.908125pt;}
.h7{height:167.062500pt;}
.h8{height:185.439375pt;}
.h4{height:192.026667pt;}
.h6{height:224.986667pt;}
.h18{height:708.880000pt;}
.h17{height:751.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:16.630667pt;}
.wc{width:58.720000pt;}
.wa{width:95.510667pt;}
.we{width:132.180000pt;}
.w8{width:182.080000pt;}
.w11{width:190.257333pt;}
.w12{width:196.506667pt;}
.wf{width:211.706667pt;}
.w13{width:227.413333pt;}
.w9{width:265.440000pt;}
.w10{width:270.133333pt;}
.w7{width:306.400000pt;}
.w3{width:446.333333pt;}
.wb{width:477.080000pt;}
.wd{width:510.213333pt;}
.w6{width:511.280000pt;}
.w5{width:600.440000pt;}
.w2{width:619.173333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:4.630667pt;}
.x15{left:6.070667pt;}
.x5{left:7.200000pt;}
.x18{left:9.590667pt;}
.xa{left:13.280000pt;}
.x9{left:36.314667pt;}
.x8{left:43.194667pt;}
.x12{left:44.360000pt;}
.x4{left:45.434667pt;}
.x13{left:46.600000pt;}
.x19{left:56.785333pt;}
.xb{left:73.114667pt;}
.x3{left:106.272000pt;}
.x27{left:108.841333pt;}
.x1e{left:110.121333pt;}
.x22{left:112.521333pt;}
.x1{left:113.472000pt;}
.x14{left:125.481333pt;}
.x1f{left:137.466667pt;}
.xc{left:160.994667pt;}
.x6{left:163.874667pt;}
.xe{left:167.074667pt;}
.x26{left:171.226667pt;}
.x11{left:192.666667pt;}
.x24{left:208.040000pt;}
.x10{left:220.354667pt;}
.x7{left:234.914667pt;}
.xf{left:236.194667pt;}
.x28{left:241.026667pt;}
.x2a{left:299.106667pt;}
.xd{left:309.661333pt;}
.x2c{left:408.413333pt;}
.x2{left:411.133333pt;}
.x17{left:412.253333pt;}
.x16{left:414.013333pt;}
.x29{left:452.746667pt;}
.x21{left:462.560000pt;}
.x2b{left:495.626667pt;}
.x20{left:535.200000pt;}
.x1a{left:623.653333pt;}
.x1b{left:625.733333pt;}
.x1c{left:663.520000pt;}
.x1d{left:679.840000pt;}
.x25{left:691.840000pt;}
.x2d{left:693.120000pt;}
.x2f{left:701.280000pt;}
.x2e{left:740.320000pt;}
}




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