
    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_09884cc6adb1efdceb444700.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a2c56dd178054ba5182c818d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_e05d54234631a908d1340520.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941895;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_dd5a11091ebff327ef8592c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_1ad1877da9a2320347459583.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_c6bcbab5adda046513fbb909.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b180c9006613fcdd42decf8f.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_74addfffb65ff381a0f3aa44.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_4659b80438b05915010c0e5c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5293f4cd09fdbd225d295c08.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_400a09b03aeb9bc2cbca5aad.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_5a109dd0a0d59d2480275126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941895;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_7ad119da60ae7fd886d87ec7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_17a93f2d7c5baf0848364fcb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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;}
.m3{transform:matrix(0.153845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153845,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.158538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158538,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.195123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195123,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m0{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-77.760000px;}
.v2{vertical-align:-74.280000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-2.574000px;}
.ls21{letter-spacing:-2.160000px;}
.ls1e{letter-spacing:-1.746000px;}
.ls19{letter-spacing:-1.500000px;}
.ls17{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-1.176000px;}
.ls1a{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-1.056000px;}
.ls13{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.414600px;}
.ls22{letter-spacing:-0.305400px;}
.ls27{letter-spacing:-0.262200px;}
.ls1b{letter-spacing:-0.200400px;}
.ls25{letter-spacing:-0.152400px;}
.ls26{letter-spacing:-0.109200px;}
.lsd{letter-spacing:-0.064800px;}
.lsa{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.043980px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.085200px;}
.ls16{letter-spacing:0.109200px;}
.ls9{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.152400px;}
.ls23{letter-spacing:0.180000px;}
.lse{letter-spacing:0.186600px;}
.ls1f{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.305280px;}
.lsf{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.426000px;}
.ls12{letter-spacing:0.567600px;}
.ls3{letter-spacing:0.666720px;}
.ls24{letter-spacing:0.870000px;}
.ls7{letter-spacing:0.918000px;}
.ls14{letter-spacing:2.880000px;}
.ls1d{letter-spacing:5.040000px;}
.ls2{letter-spacing:10.974240px;}
.ls1c{letter-spacing:16.020000px;}
.ls0{letter-spacing:32.400000px;}
.ls10{letter-spacing:33.120000px;}
.ls18{letter-spacing:178.020000px;}
.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;}
}
.ws1e{word-spacing:-66.240000px;}
.ws15{word-spacing:-59.760000px;}
.ws17{word-spacing:-37.756800px;}
.ws4{word-spacing:-20.733120px;}
.ws2{word-spacing:-18.704880px;}
.ws3{word-spacing:-18.144000px;}
.ws1f{word-spacing:-17.430000px;}
.wse{word-spacing:-17.127600px;}
.ws0{word-spacing:-17.039280px;}
.wsd{word-spacing:-16.865400px;}
.ws1a{word-spacing:-16.822200px;}
.ws23{word-spacing:-16.712400px;}
.ws11{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.613280px;}
.ws1{word-spacing:-16.569300px;}
.ws7{word-spacing:-16.560000px;}
.ws21{word-spacing:-16.450800px;}
.ws14{word-spacing:-16.412880px;}
.ws20{word-spacing:-16.407600px;}
.ws22{word-spacing:-16.297800px;}
.ws1d{word-spacing:-16.254600px;}
.ws8{word-spacing:-16.145400px;}
.ws10{word-spacing:-15.948000px;}
.wsf{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.384000px;}
.ws18{word-spacing:-15.120000px;}
.ws19{word-spacing:-14.814000px;}
.ws1c{word-spacing:-14.400000px;}
.ws1b{word-spacing:-13.986000px;}
.ws13{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.692360px;}
.ws16{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.440960px;}
.ws12{word-spacing:-12.005760px;}
.ws9{word-spacing:-8.786880px;}
.wsc{word-spacing:0.000000px;}
._28{margin-left:-15.475200px;}
._21{margin-left:-5.175151px;}
._1c{margin-left:-4.125120px;}
._2{margin-left:-2.775110px;}
._0{margin-left:-1.107965px;}
._1{width:1.270831px;}
._9{width:2.492577px;}
._5{width:3.637565px;}
._4{width:5.228285px;}
._f{width:6.340925px;}
._a{width:7.364536px;}
._7{width:8.412480px;}
._3{width:9.538560px;}
._8{width:10.695360px;}
._6{width:12.651840px;}
._d{width:14.506560px;}
._e{width:15.555527px;}
._13{width:17.734205px;}
._c{width:19.317370px;}
._b{width:20.419659px;}
._12{width:21.850810px;}
._14{width:22.881433px;}
._10{width:24.310080px;}
._11{width:25.342685px;}
._19{width:26.665148px;}
._1b{width:28.272167px;}
._1d{width:30.271680px;}
._18{width:31.612800px;}
._1a{width:32.644299px;}
._17{width:33.963005px;}
._15{width:36.233280px;}
._16{width:37.241259px;}
._2d{width:40.671360px;}
._2e{width:42.409690px;}
._2c{width:47.105280px;}
._22{width:49.728125px;}
._25{width:50.872320px;}
._26{width:52.536605px;}
._2f{width:55.745885px;}
._20{width:64.667290px;}
._35{width:69.047875px;}
._1f{width:75.727805px;}
._33{width:77.482685px;}
._32{width:78.560640px;}
._2b{width:95.868751px;}
._29{width:97.200000px;}
._2a{width:98.395200px;}
._30{width:106.116480px;}
._31{width:107.257565px;}
._24{width:122.412605px;}
._34{width:149.760000px;}
._23{width:157.222080px;}
._37{width:163.194198px;}
._27{width:169.998637px;}
._36{width:195.852376px;}
._1e{width:238.451030px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs4{font-size:15.120000px;}
.fs8{font-size:33.120000px;}
.fs5{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:2.736000px;}
.yc7{bottom:3.096000px;}
.yd3{bottom:3.165000px;}
.yd0{bottom:3.240150px;}
.yc0{bottom:3.420000px;}
.yd7{bottom:3.525000px;}
.ycc{bottom:3.600150px;}
.ycf{bottom:3.780150px;}
.y2{bottom:4.500000px;}
.y128{bottom:4.845000px;}
.y6{bottom:4.860000px;}
.yfb{bottom:4.875000px;}
.y105{bottom:5.025000px;}
.ya3{bottom:5.040000px;}
.yd1{bottom:5.220000px;}
.y113{bottom:5.580000px;}
.y4{bottom:7.200000px;}
.y12b{bottom:12.960000px;}
.yca{bottom:13.139850px;}
.y102{bottom:13.140000px;}
.y104{bottom:14.250000px;}
.yde{bottom:15.915000px;}
.ycb{bottom:20.520150px;}
.yfe{bottom:21.795000px;}
.ybf{bottom:22.536000px;}
.y12e{bottom:22.680000px;}
.y111{bottom:23.220000px;}
.y126{bottom:23.265000px;}
.y112{bottom:24.480000px;}
.yd6{bottom:28.725000px;}
.y12d{bottom:33.120000px;}
.yce{bottom:33.660000px;}
.ydd{bottom:34.275000px;}
.ycd{bottom:36.900150px;}
.yf9{bottom:40.680000px;}
.yfd{bottom:40.695000px;}
.y117{bottom:40.845000px;}
.ybe{bottom:41.616000px;}
.y125{bottom:42.165000px;}
.yba{bottom:48.060000px;}
.y3{bottom:51.120000px;}
.y5{bottom:52.020000px;}
.ya2{bottom:53.460000px;}
.y8{bottom:56.340000px;}
.yb9{bottom:58.500000px;}
.yfc{bottom:58.680000px;}
.ybd{bottom:60.336000px;}
.y124{bottom:61.065000px;}
.yf8{bottom:77.760000px;}
.yb8{bottom:78.156000px;}
.y31{bottom:78.516000px;}
.ybc{bottom:79.236000px;}
.yc9{bottom:79.920000px;}
.y123{bottom:80.145000px;}
.yc8{bottom:82.620000px;}
.yc4{bottom:85.860000px;}
.yc5{bottom:86.220000px;}
.yc6{bottom:90.540000px;}
.y30{bottom:97.056000px;}
.yf7{bottom:97.380000px;}
.ybb{bottom:97.416000px;}
.y122{bottom:99.045000px;}
.yb7{bottom:104.616000px;}
.y6e{bottom:115.056000px;}
.y2f{bottom:115.776000px;}
.y121{bottom:117.945000px;}
.y97{bottom:122.616000px;}
.yb6{bottom:123.696000px;}
.yc1{bottom:124.380000px;}
.y11c{bottom:125.136000px;}
.yc3{bottom:125.280000px;}
.y53{bottom:130.176000px;}
.y140{bottom:132.336000px;}
.y120{bottom:137.205000px;}
.y2e{bottom:139.536000px;}
.y9d{bottom:140.616000px;}
.y8d{bottom:140.796000px;}
.yd9{bottom:141.735000px;}
.yb5{bottom:142.596000px;}
.y17e{bottom:150.510000px;}
.y96{bottom:151.050000px;}
.y1a8{bottom:152.490000px;}
.y11b{bottom:153.570000px;}
.y159{bottom:154.110000px;}
.y52{bottom:158.610000px;}
.y13f{bottom:160.770000px;}
.y2d{bottom:161.310000px;}
.yb4{bottom:161.670000px;}
.y6d{bottom:162.210000px;}
.y145{bottom:169.050000px;}
.y8c{bottom:169.230000px;}
.y17d{bottom:169.410000px;}
.y1a7{bottom:171.570000px;}
.y158{bottom:173.190000px;}
.y2c{bottom:178.230000px;}
.y95{bottom:179.670000px;}
.y11a{bottom:182.010000px;}
.y51{bottom:187.050000px;}
.y9c{bottom:187.590000px;}
.y13e{bottom:189.210000px;}
.y6c{bottom:189.750000px;}
.yb3{bottom:190.110000px;}
.yf4{bottom:197.310000px;}
.y144{bottom:197.490000px;}
.y8b{bottom:197.670000px;}
.y17c{bottom:206.490000px;}
.y2b{bottom:206.670000px;}
.ya1{bottom:208.110000px;}
.y1a6{bottom:208.290000px;}
.y157{bottom:210.090000px;}
.y119{bottom:210.450000px;}
.y9b{bottom:215.130000px;}
.y50{bottom:215.670000px;}
.yb2{bottom:218.550000px;}
.y17b{bottom:225.390000px;}
.yf3{bottom:225.930000px;}
.y8a{bottom:226.110000px;}
.y94{bottom:226.830000px;}
.y1a5{bottom:227.370000px;}
.y156{bottom:229.170000px;}
.y13d{bottom:236.190000px;}
.y6b{bottom:236.370000px;}
.y118{bottom:239.070000px;}
.y4f{bottom:244.110000px;}
.y17a{bottom:244.290000px;}
.y1a4{bottom:246.450000px;}
.y2a{bottom:253.110000px;}
.y93{bottom:254.010000px;}
.yf2{bottom:254.370000px;}
.y89{bottom:254.550000px;}
.ya0{bottom:255.090000px;}
.y9a{bottom:262.110000px;}
.y179{bottom:263.370000px;}
.y13c{bottom:263.730000px;}
.y6a{bottom:264.810000px;}
.yb1{bottom:265.530000px;}
.y155{bottom:266.070000px;}
.y4e{bottom:272.550000px;}
.y116{bottom:272.745000px;}
.y18e{bottom:281.370000px;}
.y29{bottom:281.730000px;}
.y9f{bottom:282.450000px;}
.yf1{bottom:282.810000px;}
.y88{bottom:282.990000px;}
.y1a3{bottom:283.350000px;}
.y154{bottom:285.150000px;}
.y99{bottom:290.550000px;}
.yb0{bottom:293.070000px;}
.y69{bottom:293.250000px;}
.y18d{bottom:300.270000px;}
.y178{bottom:300.450000px;}
.y4d{bottom:300.990000px;}
.y143{bottom:301.530000px;}
.y1a2{bottom:302.250000px;}
.y28{bottom:310.170000px;}
.y13b{bottom:310.530000px;}
.yf0{bottom:311.250000px;}
.y87{bottom:311.430000px;}
.y98{bottom:318.990000px;}
.y177{bottom:319.350000px;}
.y1a1{bottom:321.330000px;}
.y68{bottom:321.690000px;}
.y153{bottom:321.870000px;}
.y142{bottom:328.935000px;}
.y4c{bottom:329.475000px;}
.y176{bottom:338.475000px;}
.y27{bottom:338.655000px;}
.y13a{bottom:339.015000px;}
.y86{bottom:339.915000px;}
.y152{bottom:340.995000px;}
.y75{bottom:347.475000px;}
.yef{bottom:348.015000px;}
.y67{bottom:350.175000px;}
.y18c{bottom:356.295000px;}
.y4b{bottom:357.915000px;}
.y1a0{bottom:358.275000px;}
.y151{bottom:360.075000px;}
.y26{bottom:367.095000px;}
.y139{bottom:367.635000px;}
.y85{bottom:368.355000px;}
.y175{bottom:375.375000px;}
.y74{bottom:375.915000px;}
.y19f{bottom:377.355000px;}
.y66{bottom:378.615000px;}
.yd8{bottom:381.240000px;}
.y115{bottom:385.095000px;}
.y4a{bottom:386.355000px;}
.y174{bottom:394.275000px;}
.y25{bottom:395.535000px;}
.y138{bottom:396.075000px;}
.y19e{bottom:396.255000px;}
.yaf{bottom:396.795000px;}
.y84{bottom:396.975000px;}
.y73{bottom:404.355000px;}
.y65{bottom:407.055000px;}
.y92{bottom:414.975000px;}
.y150{bottom:415.875000px;}
.y114{bottom:422.895000px;}
.y24{bottom:423.975000px;}
.y137{bottom:424.515000px;}
.yae{bottom:425.235000px;}
.y83{bottom:425.415000px;}
.y173{bottom:431.175000px;}
.y49{bottom:432.795000px;}
.y19d{bottom:433.335000px;}
.ydc{bottom:434.415000px;}
.y14f{bottom:434.955000px;}
.y64{bottom:435.495000px;}
.y91{bottom:443.415000px;}
.y172{bottom:450.255000px;}
.y23{bottom:452.415000px;}
.y136{bottom:452.955000px;}
.yad{bottom:453.675000px;}
.y82{bottom:453.855000px;}
.y110{bottom:460.515000px;}
.y48{bottom:461.235000px;}
.y63{bottom:464.115000px;}
.ydb{bottom:469.695000px;}
.y14e{bottom:471.495000px;}
.y90{bottom:471.855000px;}
.y22{bottom:480.855000px;}
.y135{bottom:481.395000px;}
.yac{bottom:482.115000px;}
.y171{bottom:487.335000px;}
.y19c{bottom:489.135000px;}
.y47{bottom:489.855000px;}
.y62{bottom:492.555000px;}
.y81{bottom:500.295000px;}
.yda{bottom:504.975000px;}
.y170{bottom:506.415000px;}
.y19b{bottom:508.215000px;}
.y21{bottom:509.295000px;}
.y134{bottom:509.835000px;}
.yab{bottom:510.735000px;}
.y14d{bottom:518.115000px;}
.y46{bottom:518.295000px;}
.y61{bottom:520.995000px;}
.y80{bottom:528.735000px;}
.y20{bottom:537.915000px;}
.y133{bottom:538.275000px;}
.yaa{bottom:539.175000px;}
.y16f{bottom:543.135000px;}
.y19a{bottom:545.115000px;}
.y45{bottom:546.735000px;}
.y60{bottom:549.435000px;}
.yee{bottom:555.375000px;}
.y7f{bottom:557.175000px;}
.y16e{bottom:562.035000px;}
.y199{bottom:564.195000px;}
.y1f{bottom:566.355000px;}
.y132{bottom:566.715000px;}
.y10f{bottom:567.795000px;}
.y44{bottom:575.175000px;}
.y5f{bottom:577.875000px;}
.y16d{bottom:581.115000px;}
.yed{bottom:581.295000px;}
.y7e{bottom:585.615000px;}
.y72{bottom:593.175000px;}
.y131{bottom:595.155000px;}
.y10e{bottom:596.265000px;}
.y198{bottom:601.125000px;}
.y43{bottom:603.645000px;}
.y5e{bottom:606.345000px;}
.yec{bottom:609.765000px;}
.y1e{bottom:613.365000px;}
.y7d{bottom:614.085000px;}
.y16c{bottom:618.225000px;}
.y197{bottom:620.205000px;}
.y71{bottom:621.645000px;}
.y130{bottom:623.805000px;}
.y10d{bottom:624.705000px;}
.y14c{bottom:632.085000px;}
.y18b{bottom:637.125000px;}
.y16b{bottom:637.305000px;}
.y7c{bottom:642.525000px;}
.y42{bottom:650.085000px;}
.y12f{bottom:652.245000px;}
.y5d{bottom:652.425000px;}
.y10c{bottom:653.145000px;}
.y18a{bottom:656.205000px;}
.yeb{bottom:656.925000px;}
.y1d{bottom:660.165000px;}
.y9e{bottom:660.525000px;}
.y7b{bottom:671.145000px;}
.y16a{bottom:674.025000px;}
.y41{bottom:678.525000px;}
.y10b{bottom:681.585000px;}
.y12c{bottom:686.085000px;}
.y14b{bottom:688.965000px;}
.y8f{bottom:689.145000px;}
.y169{bottom:692.925000px;}
.y1c{bottom:696.345000px;}
.y5c{bottom:698.865000px;}
.y7a{bottom:699.585000px;}
.yea{bottom:703.725000px;}
.y40{bottom:706.965000px;}
.y10a{bottom:710.025000px;}
.y189{bottom:712.005000px;}
.y196{bottom:712.545000px;}
.y1b{bottom:715.425000px;}
.y14a{bottom:717.405000px;}
.y8e{bottom:717.585000px;}
.ye9{bottom:722.985000px;}
.ya9{bottom:728.025000px;}
.y168{bottom:730.005000px;}
.y12a{bottom:732.705000px;}
.y3f{bottom:735.405000px;}
.y109{bottom:738.465000px;}
.ye8{bottom:741.885000px;}
.y149{bottom:745.845000px;}
.y5b{bottom:746.025000px;}
.y79{bottom:746.565000px;}
.y167{bottom:748.905000px;}
.y188{bottom:749.085000px;}
.y195{bottom:749.625000px;}
.y1a{bottom:752.145000px;}
.ya8{bottom:756.465000px;}
.ye7{bottom:760.965000px;}
.y3e{bottom:764.025000px;}
.y108{bottom:767.085000px;}
.y187{bottom:767.985000px;}
.y19{bottom:771.225000px;}
.y78{bottom:774.105000px;}
.y148{bottom:774.285000px;}
.y5a{bottom:774.465000px;}
.y129{bottom:779.685000px;}
.y166{bottom:785.985000px;}
.y194{bottom:786.885000px;}
.y186{bottom:787.065000px;}
.y18{bottom:790.125000px;}
.y3d{bottom:792.465000px;}
.y107{bottom:795.525000px;}
.yd5{bottom:802.440000px;}
.y59{bottom:802.905000px;}
.ya7{bottom:803.445000px;}
.y165{bottom:804.885000px;}
.y193{bottom:805.785000px;}
.y17{bottom:809.205000px;}
.y127{bottom:817.320000px;}
.y3c{bottom:820.905000px;}
.y164{bottom:823.785000px;}
.y106{bottom:823.965000px;}
.yd4{bottom:826.560000px;}
.y16{bottom:828.105000px;}
.ya6{bottom:830.985000px;}
.y58{bottom:831.345000px;}
.y1ac{bottom:842.685000px;}
.y185{bottom:842.865000px;}
.y15{bottom:847.005000px;}
.y3b{bottom:849.345000px;}
.y11f{bottom:854.925000px;}
.y103{bottom:857.640000px;}
.y57{bottom:859.785000px;}
.y163{bottom:860.865000px;}
.y184{bottom:861.765000px;}
.yd2{bottom:862.560000px;}
.y14{bottom:866.130000px;}
.y3a{bottom:877.830000px;}
.y162{bottom:879.810000px;}
.y192{bottom:880.890000px;}
.y13{bottom:885.030000px;}
.y101{bottom:885.390000px;}
.y56{bottom:888.270000px;}
.y141{bottom:895.830000px;}
.y183{bottom:898.890000px;}
.y12{bottom:904.110000px;}
.y39{bottom:906.270000px;}
.ye6{bottom:916.710000px;}
.y161{bottom:916.890000px;}
.y182{bottom:917.790000px;}
.y11{bottom:923.010000px;}
.y70{bottom:924.270000px;}
.y100{bottom:932.370000px;}
.y38{bottom:934.710000px;}
.y55{bottom:935.430000px;}
.y160{bottom:935.790000px;}
.y181{bottom:936.690000px;}
.y1ab{bottom:936.870000px;}
.y10{bottom:941.910000px;}
.ye5{bottom:945.150000px;}
.y147{bottom:945.330000px;}
.y6f{bottom:952.710000px;}
.y15f{bottom:954.690000px;}
.y191{bottom:955.770000px;}
.yf{bottom:960.990000px;}
.y54{bottom:962.790000px;}
.y77{bottom:963.150000px;}
.yff{bottom:969.990000px;}
.y1aa{bottom:973.590000px;}
.ye4{bottom:973.770000px;}
.y37{bottom:981.150000px;}
.y76{bottom:991.590000px;}
.y190{bottom:992.670000px;}
.y180{bottom:992.850000px;}
.ye{bottom:997.530000px;}
.yfa{bottom:1007.775000px;}
.yf6{bottom:1007.790000px;}
.y11e{bottom:1008.330000px;}
.y36{bottom:1009.590000px;}
.y15e{bottom:1010.850000px;}
.y1a9{bottom:1011.570000px;}
.y18f{bottom:1011.750000px;}
.yd{bottom:1016.250000px;}
.y11d{bottom:1019.850000px;}
.ya5{bottom:1020.210000px;}
.y146{bottom:1020.750000px;}
.ye3{bottom:1020.930000px;}
.y15d{bottom:1029.750000px;}
.y35{bottom:1038.210000px;}
.yc{bottom:1042.350000px;}
.yb{bottom:1048.290000px;}
.ya4{bottom:1048.650000px;}
.y15c{bottom:1048.830000px;}
.y34{bottom:1066.650000px;}
.y17f{bottom:1067.910000px;}
.ye2{bottom:1068.090000px;}
.y15b{bottom:1085.730000px;}
.ye1{bottom:1088.790000px;}
.ya{bottom:1090.590000px;}
.y33{bottom:1095.090000px;}
.y15a{bottom:1104.630000px;}
.ye0{bottom:1108.950000px;}
.y9{bottom:1121.730000px;}
.yf5{bottom:1123.350000px;}
.y32{bottom:1123.710000px;}
.ydf{bottom:1129.110000px;}
.y1{bottom:1155.780000px;}
.y7{bottom:1171.440000px;}
.h14{height:5.653125px;}
.hf{height:14.839453px;}
.h17{height:14.940000px;}
.h19{height:15.120000px;}
.h1d{height:16.560000px;}
.h2{height:18.000000px;}
.h15{height:18.225000px;}
.h1c{height:18.360000px;}
.h6{height:19.485000px;}
.h4{height:21.465000px;}
.h27{height:27.741000px;}
.h10{height:29.691563px;}
.ha{height:31.727812px;}
.h2b{height:33.378750px;}
.h1a{height:34.020000px;}
.h25{height:36.885000px;}
.h2e{height:36.900000px;}
.h24{height:37.065000px;}
.h1e{height:42.120000px;}
.h18{height:45.170156px;}
.h5{height:45.403594px;}
.h12{height:45.637031px;}
.h2f{height:46.080000px;}
.h26{height:46.245000px;}
.hd{height:46.251562px;}
.h31{height:46.615500px;}
.h30{height:46.620000px;}
.h1b{height:48.960000px;}
.hb{height:50.326875px;}
.h7{height:50.585625px;}
.h20{height:52.998047px;}
.h28{height:55.965000px;}
.h8{height:58.651172px;}
.h11{height:62.211094px;}
.h3{height:62.327813px;}
.h32{height:64.978594px;}
.he{height:65.010937px;}
.hc{height:66.757500px;}
.h13{height:68.084282px;}
.h9{height:72.562500px;}
.h29{height:74.001000px;}
.h2a{height:74.002500px;}
.h16{height:109.620000px;}
.h21{height:110.865000px;}
.h22{height:110.871000px;}
.h23{height:110.880000px;}
.h2d{height:150.675000px;}
.h2c{height:150.690000px;}
.h1f{height:169.200000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:9.000000px;}
.wc{width:9.360000px;}
.w6{width:16.740000px;}
.w9{width:28.080000px;}
.w8{width:28.260000px;}
.w4{width:35.640000px;}
.wd{width:47.880000px;}
.we{width:48.060000px;}
.wa{width:48.960000px;}
.w1d{width:61.371000px;}
.wf{width:61.560000px;}
.w26{width:73.461000px;}
.w22{width:73.462500px;}
.w11{width:85.131000px;}
.w24{width:86.970000px;}
.w25{width:100.425000px;}
.w20{width:100.435500px;}
.w21{width:100.440000px;}
.w23{width:107.085000px;}
.w18{width:113.031000px;}
.w1e{width:120.801000px;}
.w13{width:122.256000px;}
.w17{width:132.645000px;}
.w15{width:132.651000px;}
.w16{width:132.660000px;}
.w5{width:154.095000px;}
.w14{width:161.475000px;}
.w3{width:164.910000px;}
.w1f{width:167.970000px;}
.w12{width:188.115000px;}
.wb{width:188.280000px;}
.w1a{width:274.515000px;}
.w1c{width:274.530000px;}
.w19{width:303.720000px;}
.w1b{width:303.735000px;}
.w10{width:501.480000px;}
.w2{width:641.970000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:1.431000px;}
.x12{left:4.515000px;}
.x2e{left:8.715000px;}
.x3c{left:9.870000px;}
.x37{left:13.215000px;}
.x39{left:19.875000px;}
.x21{left:32.745000px;}
.x5{left:34.185000px;}
.x22{left:37.065000px;}
.x6{left:38.505000px;}
.x23{left:55.785000px;}
.x7{left:57.225000px;}
.x24{left:60.285000px;}
.x8{left:61.725000px;}
.x25{left:69.645000px;}
.x9{left:71.085000px;}
.x26{left:73.965000px;}
.xa{left:75.405000px;}
.x44{left:89.175000px;}
.x27{left:90.930000px;}
.xb{left:92.370000px;}
.x13{left:95.616000px;}
.xc{left:96.870000px;}
.x45{left:100.305000px;}
.x28{left:101.370000px;}
.xd{left:102.810000px;}
.x1{left:106.605000px;}
.x1a{left:107.856000px;}
.x52{left:111.816000px;}
.x65{left:118.656000px;}
.x29{left:128.910000px;}
.xe{left:130.350000px;}
.x2a{left:133.590000px;}
.xf{left:135.030000px;}
.x14{left:143.136000px;}
.x1c{left:147.996000px;}
.x2b{left:150.870000px;}
.x1d{left:152.490000px;}
.x10{left:158.250000px;}
.x51{left:161.130000px;}
.x4c{left:162.405000px;}
.x53{left:168.330000px;}
.x54{left:179.490000px;}
.x46{left:186.345000px;}
.x1b{left:189.030000px;}
.x55{left:190.290000px;}
.x41{left:196.200000px;}
.x56{left:201.450000px;}
.x57{left:212.250000px;}
.x4a{left:214.065000px;}
.x58{left:223.590000px;}
.x42{left:227.730000px;}
.x43{left:255.090000px;}
.x59{left:271.875000px;}
.x4d{left:283.935000px;}
.x2d{left:295.200000px;}
.x36{left:335.340000px;}
.x31{left:345.780000px;}
.x3f{left:350.820000px;}
.x2f{left:355.320000px;}
.x15{left:367.995000px;}
.x47{left:375.195000px;}
.x38{left:405.000000px;}
.x5a{left:407.595000px;}
.x32{left:415.440000px;}
.x3a{left:417.495000px;}
.x5b{left:418.935000px;}
.x30{left:424.980000px;}
.x5c{left:435.495000px;}
.x5d{left:446.865000px;}
.x4e{left:452.820000px;}
.x3e{left:479.160000px;}
.x33{left:485.100000px;}
.x48{left:498.180000px;}
.x5e{left:501.765000px;}
.x5f{left:513.105000px;}
.x4b{left:518.520000px;}
.x40{left:525.600000px;}
.x4{left:531.480000px;}
.x20{left:532.920000px;}
.x60{left:544.785000px;}
.x34{left:554.760000px;}
.x3b{left:613.980000px;}
.x35{left:624.420000px;}
.x4f{left:628.350000px;}
.x3{left:634.785000px;}
.x61{left:640.770000px;}
.x62{left:654.630000px;}
.x49{left:660.390000px;}
.x63{left:665.970000px;}
.x3d{left:686.880000px;}
.x1e{left:702.510000px;}
.x16{left:712.770000px;}
.x1f{left:714.570000px;}
.x17{left:716.370000px;}
.x64{left:725.010000px;}
.x18{left:728.610000px;}
.x11{left:733.275000px;}
.x50{left:736.350000px;}
.x2c{left:739.590000px;}
.x19{left:785.670000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v2{vertical-align:-66.026667pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-2.288000pt;}
.ls21{letter-spacing:-1.920000pt;}
.ls1e{letter-spacing:-1.552000pt;}
.ls19{letter-spacing:-1.333333pt;}
.ls17{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-1.045333pt;}
.ls1a{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.938667pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls22{letter-spacing:-0.271467pt;}
.ls27{letter-spacing:-0.233067pt;}
.ls1b{letter-spacing:-0.178133pt;}
.ls25{letter-spacing:-0.135467pt;}
.ls26{letter-spacing:-0.097067pt;}
.lsd{letter-spacing:-0.057600pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.039093pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.075733pt;}
.ls16{letter-spacing:0.097067pt;}
.ls9{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.135467pt;}
.ls23{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.165867pt;}
.ls1f{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.271360pt;}
.lsf{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.378667pt;}
.ls12{letter-spacing:0.504533pt;}
.ls3{letter-spacing:0.592640pt;}
.ls24{letter-spacing:0.773333pt;}
.ls7{letter-spacing:0.816000pt;}
.ls14{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:4.480000pt;}
.ls2{letter-spacing:9.754880pt;}
.ls1c{letter-spacing:14.240000pt;}
.ls0{letter-spacing:28.800000pt;}
.ls10{letter-spacing:29.440000pt;}
.ls18{letter-spacing:158.240000pt;}
.ws1e{word-spacing:-58.880000pt;}
.ws15{word-spacing:-53.120000pt;}
.ws17{word-spacing:-33.561600pt;}
.ws4{word-spacing:-18.429440pt;}
.ws2{word-spacing:-16.626560pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1f{word-spacing:-15.493333pt;}
.wse{word-spacing:-15.224533pt;}
.ws0{word-spacing:-15.146027pt;}
.wsd{word-spacing:-14.991467pt;}
.ws1a{word-spacing:-14.953067pt;}
.ws23{word-spacing:-14.855467pt;}
.ws11{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.767360pt;}
.ws1{word-spacing:-14.728267pt;}
.ws7{word-spacing:-14.720000pt;}
.ws21{word-spacing:-14.622933pt;}
.ws14{word-spacing:-14.589227pt;}
.ws20{word-spacing:-14.584533pt;}
.ws22{word-spacing:-14.486933pt;}
.ws1d{word-spacing:-14.448533pt;}
.ws8{word-spacing:-14.351467pt;}
.ws10{word-spacing:-14.176000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.674667pt;}
.ws18{word-spacing:-13.440000pt;}
.ws19{word-spacing:-13.168000pt;}
.ws1c{word-spacing:-12.800000pt;}
.ws1b{word-spacing:-12.432000pt;}
.ws13{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.170987pt;}
.ws16{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.947520pt;}
.ws12{word-spacing:-10.671787pt;}
.ws9{word-spacing:-7.810560pt;}
.wsc{word-spacing:0.000000pt;}
._28{margin-left:-13.755733pt;}
._21{margin-left:-4.600134pt;}
._1c{margin-left:-3.666773pt;}
._2{margin-left:-2.466764pt;}
._0{margin-left:-0.984858pt;}
._1{width:1.129628pt;}
._9{width:2.215624pt;}
._5{width:3.233391pt;}
._4{width:4.647365pt;}
._f{width:5.636378pt;}
._a{width:6.546254pt;}
._7{width:7.477760pt;}
._3{width:8.478720pt;}
._8{width:9.506987pt;}
._6{width:11.246080pt;}
._d{width:12.894720pt;}
._e{width:13.827135pt;}
._13{width:15.763738pt;}
._c{width:17.170996pt;}
._b{width:18.150808pt;}
._12{width:19.422943pt;}
._14{width:20.339052pt;}
._10{width:21.608960pt;}
._11{width:22.526831pt;}
._19{width:23.702354pt;}
._1b{width:25.130815pt;}
._1d{width:26.908160pt;}
._18{width:28.100267pt;}
._1a{width:29.017155pt;}
._17{width:30.189338pt;}
._15{width:32.207360pt;}
._16{width:33.103341pt;}
._2d{width:36.152320pt;}
._2e{width:37.697503pt;}
._2c{width:41.871360pt;}
._22{width:44.202778pt;}
._25{width:45.219840pt;}
._26{width:46.699205pt;}
._2f{width:49.551898pt;}
._20{width:57.482036pt;}
._35{width:61.375889pt;}
._1f{width:67.313605pt;}
._33{width:68.873498pt;}
._32{width:69.831680pt;}
._2b{width:85.216668pt;}
._29{width:86.400000pt;}
._2a{width:87.462400pt;}
._30{width:94.325760pt;}
._31{width:95.340058pt;}
._24{width:108.811205pt;}
._34{width:133.120000pt;}
._23{width:139.752960pt;}
._37{width:145.061510pt;}
._27{width:151.109899pt;}
._36{width:174.091001pt;}
._1e{width:211.956471pt;}
.fs6{font-size:5.120000pt;}
.fs4{font-size:13.440000pt;}
.fs8{font-size:29.440000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:2.432000pt;}
.yc7{bottom:2.752000pt;}
.yd3{bottom:2.813333pt;}
.yd0{bottom:2.880133pt;}
.yc0{bottom:3.040000pt;}
.yd7{bottom:3.133333pt;}
.ycc{bottom:3.200133pt;}
.ycf{bottom:3.360133pt;}
.y2{bottom:4.000000pt;}
.y128{bottom:4.306667pt;}
.y6{bottom:4.320000pt;}
.yfb{bottom:4.333333pt;}
.y105{bottom:4.466667pt;}
.ya3{bottom:4.480000pt;}
.yd1{bottom:4.640000pt;}
.y113{bottom:4.960000pt;}
.y4{bottom:6.400000pt;}
.y12b{bottom:11.520000pt;}
.yca{bottom:11.679867pt;}
.y102{bottom:11.680000pt;}
.y104{bottom:12.666667pt;}
.yde{bottom:14.146667pt;}
.ycb{bottom:18.240133pt;}
.yfe{bottom:19.373333pt;}
.ybf{bottom:20.032000pt;}
.y12e{bottom:20.160000pt;}
.y111{bottom:20.640000pt;}
.y126{bottom:20.680000pt;}
.y112{bottom:21.760000pt;}
.yd6{bottom:25.533333pt;}
.y12d{bottom:29.440000pt;}
.yce{bottom:29.920000pt;}
.ydd{bottom:30.466667pt;}
.ycd{bottom:32.800133pt;}
.yf9{bottom:36.160000pt;}
.yfd{bottom:36.173333pt;}
.y117{bottom:36.306667pt;}
.ybe{bottom:36.992000pt;}
.y125{bottom:37.480000pt;}
.yba{bottom:42.720000pt;}
.y3{bottom:45.440000pt;}
.y5{bottom:46.240000pt;}
.ya2{bottom:47.520000pt;}
.y8{bottom:50.080000pt;}
.yb9{bottom:52.000000pt;}
.yfc{bottom:52.160000pt;}
.ybd{bottom:53.632000pt;}
.y124{bottom:54.280000pt;}
.yf8{bottom:69.120000pt;}
.yb8{bottom:69.472000pt;}
.y31{bottom:69.792000pt;}
.ybc{bottom:70.432000pt;}
.yc9{bottom:71.040000pt;}
.y123{bottom:71.240000pt;}
.yc8{bottom:73.440000pt;}
.yc4{bottom:76.320000pt;}
.yc5{bottom:76.640000pt;}
.yc6{bottom:80.480000pt;}
.y30{bottom:86.272000pt;}
.yf7{bottom:86.560000pt;}
.ybb{bottom:86.592000pt;}
.y122{bottom:88.040000pt;}
.yb7{bottom:92.992000pt;}
.y6e{bottom:102.272000pt;}
.y2f{bottom:102.912000pt;}
.y121{bottom:104.840000pt;}
.y97{bottom:108.992000pt;}
.yb6{bottom:109.952000pt;}
.yc1{bottom:110.560000pt;}
.y11c{bottom:111.232000pt;}
.yc3{bottom:111.360000pt;}
.y53{bottom:115.712000pt;}
.y140{bottom:117.632000pt;}
.y120{bottom:121.960000pt;}
.y2e{bottom:124.032000pt;}
.y9d{bottom:124.992000pt;}
.y8d{bottom:125.152000pt;}
.yd9{bottom:125.986667pt;}
.yb5{bottom:126.752000pt;}
.y17e{bottom:133.786667pt;}
.y96{bottom:134.266667pt;}
.y1a8{bottom:135.546667pt;}
.y11b{bottom:136.506667pt;}
.y159{bottom:136.986667pt;}
.y52{bottom:140.986667pt;}
.y13f{bottom:142.906667pt;}
.y2d{bottom:143.386667pt;}
.yb4{bottom:143.706667pt;}
.y6d{bottom:144.186667pt;}
.y145{bottom:150.266667pt;}
.y8c{bottom:150.426667pt;}
.y17d{bottom:150.586667pt;}
.y1a7{bottom:152.506667pt;}
.y158{bottom:153.946667pt;}
.y2c{bottom:158.426667pt;}
.y95{bottom:159.706667pt;}
.y11a{bottom:161.786667pt;}
.y51{bottom:166.266667pt;}
.y9c{bottom:166.746667pt;}
.y13e{bottom:168.186667pt;}
.y6c{bottom:168.666667pt;}
.yb3{bottom:168.986667pt;}
.yf4{bottom:175.386667pt;}
.y144{bottom:175.546667pt;}
.y8b{bottom:175.706667pt;}
.y17c{bottom:183.546667pt;}
.y2b{bottom:183.706667pt;}
.ya1{bottom:184.986667pt;}
.y1a6{bottom:185.146667pt;}
.y157{bottom:186.746667pt;}
.y119{bottom:187.066667pt;}
.y9b{bottom:191.226667pt;}
.y50{bottom:191.706667pt;}
.yb2{bottom:194.266667pt;}
.y17b{bottom:200.346667pt;}
.yf3{bottom:200.826667pt;}
.y8a{bottom:200.986667pt;}
.y94{bottom:201.626667pt;}
.y1a5{bottom:202.106667pt;}
.y156{bottom:203.706667pt;}
.y13d{bottom:209.946667pt;}
.y6b{bottom:210.106667pt;}
.y118{bottom:212.506667pt;}
.y4f{bottom:216.986667pt;}
.y17a{bottom:217.146667pt;}
.y1a4{bottom:219.066667pt;}
.y2a{bottom:224.986667pt;}
.y93{bottom:225.786667pt;}
.yf2{bottom:226.106667pt;}
.y89{bottom:226.266667pt;}
.ya0{bottom:226.746667pt;}
.y9a{bottom:232.986667pt;}
.y179{bottom:234.106667pt;}
.y13c{bottom:234.426667pt;}
.y6a{bottom:235.386667pt;}
.yb1{bottom:236.026667pt;}
.y155{bottom:236.506667pt;}
.y4e{bottom:242.266667pt;}
.y116{bottom:242.440000pt;}
.y18e{bottom:250.106667pt;}
.y29{bottom:250.426667pt;}
.y9f{bottom:251.066667pt;}
.yf1{bottom:251.386667pt;}
.y88{bottom:251.546667pt;}
.y1a3{bottom:251.866667pt;}
.y154{bottom:253.466667pt;}
.y99{bottom:258.266667pt;}
.yb0{bottom:260.506667pt;}
.y69{bottom:260.666667pt;}
.y18d{bottom:266.906667pt;}
.y178{bottom:267.066667pt;}
.y4d{bottom:267.546667pt;}
.y143{bottom:268.026667pt;}
.y1a2{bottom:268.666667pt;}
.y28{bottom:275.706667pt;}
.y13b{bottom:276.026667pt;}
.yf0{bottom:276.666667pt;}
.y87{bottom:276.826667pt;}
.y98{bottom:283.546667pt;}
.y177{bottom:283.866667pt;}
.y1a1{bottom:285.626667pt;}
.y68{bottom:285.946667pt;}
.y153{bottom:286.106667pt;}
.y142{bottom:292.386667pt;}
.y4c{bottom:292.866667pt;}
.y176{bottom:300.866667pt;}
.y27{bottom:301.026667pt;}
.y13a{bottom:301.346667pt;}
.y86{bottom:302.146667pt;}
.y152{bottom:303.106667pt;}
.y75{bottom:308.866667pt;}
.yef{bottom:309.346667pt;}
.y67{bottom:311.266667pt;}
.y18c{bottom:316.706667pt;}
.y4b{bottom:318.146667pt;}
.y1a0{bottom:318.466667pt;}
.y151{bottom:320.066667pt;}
.y26{bottom:326.306667pt;}
.y139{bottom:326.786667pt;}
.y85{bottom:327.426667pt;}
.y175{bottom:333.666667pt;}
.y74{bottom:334.146667pt;}
.y19f{bottom:335.426667pt;}
.y66{bottom:336.546667pt;}
.yd8{bottom:338.880000pt;}
.y115{bottom:342.306667pt;}
.y4a{bottom:343.426667pt;}
.y174{bottom:350.466667pt;}
.y25{bottom:351.586667pt;}
.y138{bottom:352.066667pt;}
.y19e{bottom:352.226667pt;}
.yaf{bottom:352.706667pt;}
.y84{bottom:352.866667pt;}
.y73{bottom:359.426667pt;}
.y65{bottom:361.826667pt;}
.y92{bottom:368.866667pt;}
.y150{bottom:369.666667pt;}
.y114{bottom:375.906667pt;}
.y24{bottom:376.866667pt;}
.y137{bottom:377.346667pt;}
.yae{bottom:377.986667pt;}
.y83{bottom:378.146667pt;}
.y173{bottom:383.266667pt;}
.y49{bottom:384.706667pt;}
.y19d{bottom:385.186667pt;}
.ydc{bottom:386.146667pt;}
.y14f{bottom:386.626667pt;}
.y64{bottom:387.106667pt;}
.y91{bottom:394.146667pt;}
.y172{bottom:400.226667pt;}
.y23{bottom:402.146667pt;}
.y136{bottom:402.626667pt;}
.yad{bottom:403.266667pt;}
.y82{bottom:403.426667pt;}
.y110{bottom:409.346667pt;}
.y48{bottom:409.986667pt;}
.y63{bottom:412.546667pt;}
.ydb{bottom:417.506667pt;}
.y14e{bottom:419.106667pt;}
.y90{bottom:419.426667pt;}
.y22{bottom:427.426667pt;}
.y135{bottom:427.906667pt;}
.yac{bottom:428.546667pt;}
.y171{bottom:433.186667pt;}
.y19c{bottom:434.786667pt;}
.y47{bottom:435.426667pt;}
.y62{bottom:437.826667pt;}
.y81{bottom:444.706667pt;}
.yda{bottom:448.866667pt;}
.y170{bottom:450.146667pt;}
.y19b{bottom:451.746667pt;}
.y21{bottom:452.706667pt;}
.y134{bottom:453.186667pt;}
.yab{bottom:453.986667pt;}
.y14d{bottom:460.546667pt;}
.y46{bottom:460.706667pt;}
.y61{bottom:463.106667pt;}
.y80{bottom:469.986667pt;}
.y20{bottom:478.146667pt;}
.y133{bottom:478.466667pt;}
.yaa{bottom:479.266667pt;}
.y16f{bottom:482.786667pt;}
.y19a{bottom:484.546667pt;}
.y45{bottom:485.986667pt;}
.y60{bottom:488.386667pt;}
.yee{bottom:493.666667pt;}
.y7f{bottom:495.266667pt;}
.y16e{bottom:499.586667pt;}
.y199{bottom:501.506667pt;}
.y1f{bottom:503.426667pt;}
.y132{bottom:503.746667pt;}
.y10f{bottom:504.706667pt;}
.y44{bottom:511.266667pt;}
.y5f{bottom:513.666667pt;}
.y16d{bottom:516.546667pt;}
.yed{bottom:516.706667pt;}
.y7e{bottom:520.546667pt;}
.y72{bottom:527.266667pt;}
.y131{bottom:529.026667pt;}
.y10e{bottom:530.013333pt;}
.y198{bottom:534.333333pt;}
.y43{bottom:536.573333pt;}
.y5e{bottom:538.973333pt;}
.yec{bottom:542.013333pt;}
.y1e{bottom:545.213333pt;}
.y7d{bottom:545.853333pt;}
.y16c{bottom:549.533333pt;}
.y197{bottom:551.293333pt;}
.y71{bottom:552.573333pt;}
.y130{bottom:554.493333pt;}
.y10d{bottom:555.293333pt;}
.y14c{bottom:561.853333pt;}
.y18b{bottom:566.333333pt;}
.y16b{bottom:566.493333pt;}
.y7c{bottom:571.133333pt;}
.y42{bottom:577.853333pt;}
.y12f{bottom:579.773333pt;}
.y5d{bottom:579.933333pt;}
.y10c{bottom:580.573333pt;}
.y18a{bottom:583.293333pt;}
.yeb{bottom:583.933333pt;}
.y1d{bottom:586.813333pt;}
.y9e{bottom:587.133333pt;}
.y7b{bottom:596.573333pt;}
.y16a{bottom:599.133333pt;}
.y41{bottom:603.133333pt;}
.y10b{bottom:605.853333pt;}
.y12c{bottom:609.853333pt;}
.y14b{bottom:612.413333pt;}
.y8f{bottom:612.573333pt;}
.y169{bottom:615.933333pt;}
.y1c{bottom:618.973333pt;}
.y5c{bottom:621.213333pt;}
.y7a{bottom:621.853333pt;}
.yea{bottom:625.533333pt;}
.y40{bottom:628.413333pt;}
.y10a{bottom:631.133333pt;}
.y189{bottom:632.893333pt;}
.y196{bottom:633.373333pt;}
.y1b{bottom:635.933333pt;}
.y14a{bottom:637.693333pt;}
.y8e{bottom:637.853333pt;}
.ye9{bottom:642.653333pt;}
.ya9{bottom:647.133333pt;}
.y168{bottom:648.893333pt;}
.y12a{bottom:651.293333pt;}
.y3f{bottom:653.693333pt;}
.y109{bottom:656.413333pt;}
.ye8{bottom:659.453333pt;}
.y149{bottom:662.973333pt;}
.y5b{bottom:663.133333pt;}
.y79{bottom:663.613333pt;}
.y167{bottom:665.693333pt;}
.y188{bottom:665.853333pt;}
.y195{bottom:666.333333pt;}
.y1a{bottom:668.573333pt;}
.ya8{bottom:672.413333pt;}
.ye7{bottom:676.413333pt;}
.y3e{bottom:679.133333pt;}
.y108{bottom:681.853333pt;}
.y187{bottom:682.653333pt;}
.y19{bottom:685.533333pt;}
.y78{bottom:688.093333pt;}
.y148{bottom:688.253333pt;}
.y5a{bottom:688.413333pt;}
.y129{bottom:693.053333pt;}
.y166{bottom:698.653333pt;}
.y194{bottom:699.453333pt;}
.y186{bottom:699.613333pt;}
.y18{bottom:702.333333pt;}
.y3d{bottom:704.413333pt;}
.y107{bottom:707.133333pt;}
.yd5{bottom:713.280000pt;}
.y59{bottom:713.693333pt;}
.ya7{bottom:714.173333pt;}
.y165{bottom:715.453333pt;}
.y193{bottom:716.253333pt;}
.y17{bottom:719.293333pt;}
.y127{bottom:726.506667pt;}
.y3c{bottom:729.693333pt;}
.y164{bottom:732.253333pt;}
.y106{bottom:732.413333pt;}
.yd4{bottom:734.720000pt;}
.y16{bottom:736.093333pt;}
.ya6{bottom:738.653333pt;}
.y58{bottom:738.973333pt;}
.y1ac{bottom:749.053333pt;}
.y185{bottom:749.213333pt;}
.y15{bottom:752.893333pt;}
.y3b{bottom:754.973333pt;}
.y11f{bottom:759.933333pt;}
.y103{bottom:762.346667pt;}
.y57{bottom:764.253333pt;}
.y163{bottom:765.213333pt;}
.y184{bottom:766.013333pt;}
.yd2{bottom:766.720000pt;}
.y14{bottom:769.893333pt;}
.y3a{bottom:780.293333pt;}
.y162{bottom:782.053333pt;}
.y192{bottom:783.013333pt;}
.y13{bottom:786.693333pt;}
.y101{bottom:787.013333pt;}
.y56{bottom:789.573333pt;}
.y141{bottom:796.293333pt;}
.y183{bottom:799.013333pt;}
.y12{bottom:803.653333pt;}
.y39{bottom:805.573333pt;}
.ye6{bottom:814.853333pt;}
.y161{bottom:815.013333pt;}
.y182{bottom:815.813333pt;}
.y11{bottom:820.453333pt;}
.y70{bottom:821.573333pt;}
.y100{bottom:828.773333pt;}
.y38{bottom:830.853333pt;}
.y55{bottom:831.493333pt;}
.y160{bottom:831.813333pt;}
.y181{bottom:832.613333pt;}
.y1ab{bottom:832.773333pt;}
.y10{bottom:837.253333pt;}
.ye5{bottom:840.133333pt;}
.y147{bottom:840.293333pt;}
.y6f{bottom:846.853333pt;}
.y15f{bottom:848.613333pt;}
.y191{bottom:849.573333pt;}
.yf{bottom:854.213333pt;}
.y54{bottom:855.813333pt;}
.y77{bottom:856.133333pt;}
.yff{bottom:862.213333pt;}
.y1aa{bottom:865.413333pt;}
.ye4{bottom:865.573333pt;}
.y37{bottom:872.133333pt;}
.y76{bottom:881.413333pt;}
.y190{bottom:882.373333pt;}
.y180{bottom:882.533333pt;}
.ye{bottom:886.693333pt;}
.yfa{bottom:895.800000pt;}
.yf6{bottom:895.813333pt;}
.y11e{bottom:896.293333pt;}
.y36{bottom:897.413333pt;}
.y15e{bottom:898.533333pt;}
.y1a9{bottom:899.173333pt;}
.y18f{bottom:899.333333pt;}
.yd{bottom:903.333333pt;}
.y11d{bottom:906.533333pt;}
.ya5{bottom:906.853333pt;}
.y146{bottom:907.333333pt;}
.ye3{bottom:907.493333pt;}
.y15d{bottom:915.333333pt;}
.y35{bottom:922.853333pt;}
.yc{bottom:926.533333pt;}
.yb{bottom:931.813333pt;}
.ya4{bottom:932.133333pt;}
.y15c{bottom:932.293333pt;}
.y34{bottom:948.133333pt;}
.y17f{bottom:949.253333pt;}
.ye2{bottom:949.413333pt;}
.y15b{bottom:965.093333pt;}
.ye1{bottom:967.813333pt;}
.ya{bottom:969.413333pt;}
.y33{bottom:973.413333pt;}
.y15a{bottom:981.893333pt;}
.ye0{bottom:985.733333pt;}
.y9{bottom:997.093333pt;}
.yf5{bottom:998.533333pt;}
.y32{bottom:998.853333pt;}
.ydf{bottom:1003.653333pt;}
.y1{bottom:1027.360000pt;}
.y7{bottom:1041.280000pt;}
.h14{height:5.025000pt;}
.hf{height:13.190625pt;}
.h17{height:13.280000pt;}
.h19{height:13.440000pt;}
.h1d{height:14.720000pt;}
.h2{height:16.000000pt;}
.h15{height:16.200000pt;}
.h1c{height:16.320000pt;}
.h6{height:17.320000pt;}
.h4{height:19.080000pt;}
.h27{height:24.658667pt;}
.h10{height:26.392500pt;}
.ha{height:28.202500pt;}
.h2b{height:29.670000pt;}
.h1a{height:30.240000pt;}
.h25{height:32.786667pt;}
.h2e{height:32.800000pt;}
.h24{height:32.946667pt;}
.h1e{height:37.440000pt;}
.h18{height:40.151250pt;}
.h5{height:40.358750pt;}
.h12{height:40.566250pt;}
.h2f{height:40.960000pt;}
.h26{height:41.106667pt;}
.hd{height:41.112500pt;}
.h31{height:41.436000pt;}
.h30{height:41.440000pt;}
.h1b{height:43.520000pt;}
.hb{height:44.735000pt;}
.h7{height:44.965000pt;}
.h20{height:47.109375pt;}
.h28{height:49.746667pt;}
.h8{height:52.134375pt;}
.h11{height:55.298750pt;}
.h3{height:55.402500pt;}
.h32{height:57.758750pt;}
.he{height:57.787500pt;}
.hc{height:59.340000pt;}
.h13{height:60.519362pt;}
.h9{height:64.500000pt;}
.h29{height:65.778667pt;}
.h2a{height:65.780000pt;}
.h16{height:97.440000pt;}
.h21{height:98.546667pt;}
.h22{height:98.552000pt;}
.h23{height:98.560000pt;}
.h2d{height:133.933333pt;}
.h2c{height:133.946667pt;}
.h1f{height:150.400000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:8.000000pt;}
.wc{width:8.320000pt;}
.w6{width:14.880000pt;}
.w9{width:24.960000pt;}
.w8{width:25.120000pt;}
.w4{width:31.680000pt;}
.wd{width:42.560000pt;}
.we{width:42.720000pt;}
.wa{width:43.520000pt;}
.w1d{width:54.552000pt;}
.wf{width:54.720000pt;}
.w26{width:65.298667pt;}
.w22{width:65.300000pt;}
.w11{width:75.672000pt;}
.w24{width:77.306667pt;}
.w25{width:89.266667pt;}
.w20{width:89.276000pt;}
.w21{width:89.280000pt;}
.w23{width:95.186667pt;}
.w18{width:100.472000pt;}
.w1e{width:107.378667pt;}
.w13{width:108.672000pt;}
.w17{width:117.906667pt;}
.w15{width:117.912000pt;}
.w16{width:117.920000pt;}
.w5{width:136.973333pt;}
.w14{width:143.533333pt;}
.w3{width:146.586667pt;}
.w1f{width:149.306667pt;}
.w12{width:167.213333pt;}
.wb{width:167.360000pt;}
.w1a{width:244.013333pt;}
.w1c{width:244.026667pt;}
.w19{width:269.973333pt;}
.w1b{width:269.986667pt;}
.w10{width:445.760000pt;}
.w2{width:570.640000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:1.272000pt;}
.x12{left:4.013333pt;}
.x2e{left:7.746667pt;}
.x3c{left:8.773333pt;}
.x37{left:11.746667pt;}
.x39{left:17.666667pt;}
.x21{left:29.106667pt;}
.x5{left:30.386667pt;}
.x22{left:32.946667pt;}
.x6{left:34.226667pt;}
.x23{left:49.586667pt;}
.x7{left:50.866667pt;}
.x24{left:53.586667pt;}
.x8{left:54.866667pt;}
.x25{left:61.906667pt;}
.x9{left:63.186667pt;}
.x26{left:65.746667pt;}
.xa{left:67.026667pt;}
.x44{left:79.266667pt;}
.x27{left:80.826667pt;}
.xb{left:82.106667pt;}
.x13{left:84.992000pt;}
.xc{left:86.106667pt;}
.x45{left:89.160000pt;}
.x28{left:90.106667pt;}
.xd{left:91.386667pt;}
.x1{left:94.760000pt;}
.x1a{left:95.872000pt;}
.x52{left:99.392000pt;}
.x65{left:105.472000pt;}
.x29{left:114.586667pt;}
.xe{left:115.866667pt;}
.x2a{left:118.746667pt;}
.xf{left:120.026667pt;}
.x14{left:127.232000pt;}
.x1c{left:131.552000pt;}
.x2b{left:134.106667pt;}
.x1d{left:135.546667pt;}
.x10{left:140.666667pt;}
.x51{left:143.226667pt;}
.x4c{left:144.360000pt;}
.x53{left:149.626667pt;}
.x54{left:159.546667pt;}
.x46{left:165.640000pt;}
.x1b{left:168.026667pt;}
.x55{left:169.146667pt;}
.x41{left:174.400000pt;}
.x56{left:179.066667pt;}
.x57{left:188.666667pt;}
.x4a{left:190.280000pt;}
.x58{left:198.746667pt;}
.x42{left:202.426667pt;}
.x43{left:226.746667pt;}
.x59{left:241.666667pt;}
.x4d{left:252.386667pt;}
.x2d{left:262.400000pt;}
.x36{left:298.080000pt;}
.x31{left:307.360000pt;}
.x3f{left:311.840000pt;}
.x2f{left:315.840000pt;}
.x15{left:327.106667pt;}
.x47{left:333.506667pt;}
.x38{left:360.000000pt;}
.x5a{left:362.306667pt;}
.x32{left:369.280000pt;}
.x3a{left:371.106667pt;}
.x5b{left:372.386667pt;}
.x30{left:377.760000pt;}
.x5c{left:387.106667pt;}
.x5d{left:397.213333pt;}
.x4e{left:402.506667pt;}
.x3e{left:425.920000pt;}
.x33{left:431.200000pt;}
.x48{left:442.826667pt;}
.x5e{left:446.013333pt;}
.x5f{left:456.093333pt;}
.x4b{left:460.906667pt;}
.x40{left:467.200000pt;}
.x4{left:472.426667pt;}
.x20{left:473.706667pt;}
.x60{left:484.253333pt;}
.x34{left:493.120000pt;}
.x3b{left:545.760000pt;}
.x35{left:555.040000pt;}
.x4f{left:558.533333pt;}
.x3{left:564.253333pt;}
.x61{left:569.573333pt;}
.x62{left:581.893333pt;}
.x49{left:587.013333pt;}
.x63{left:591.973333pt;}
.x3d{left:610.560000pt;}
.x1e{left:624.453333pt;}
.x16{left:633.573333pt;}
.x1f{left:635.173333pt;}
.x17{left:636.773333pt;}
.x64{left:644.453333pt;}
.x18{left:647.653333pt;}
.x11{left:651.800000pt;}
.x50{left:654.533333pt;}
.x2c{left:657.413333pt;}
.x19{left:698.373333pt;}
}




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