
    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_cc9ce79f0113bc181d6b2d57.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_edfe90f348c118d126fcf89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6cf36755159bbef18dfb86df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_ea4459feef98db4144ce7851.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c5beb456d23984055fedb881.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793457;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_442bf2f0fc129e0e396c8986.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_c8ee7a3a82500ff18400f3bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_c008493e4db840faa63a2a5e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_292e782dd80301c9f881e25e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_ebb8254cced084fef9866b3e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973145;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_6da38b549c7ad79b455857dd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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_53ef53f97ec883eb1e4d5f43.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972656;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.761230;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_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.fff{font-family:fff;line-height:0.760254;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_5ba828dcdb87a380b56bddf2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976074;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_5ef6a91ef2301300f9b93b5c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.973633;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_a52dde60504af396ec97f19e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.927734;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_df4664d9a40e6cb132fdc0ec.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.952148;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_098d7433a2b86d85bc4c385e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758789;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:ff15;src:url('chunks/assets/font_eb58e8fc5b7ba22fdd47eab1.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_159e4406517848f2be309788.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.401855;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;}
.m1{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,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:-20.880000px;}
.v4{vertical-align:-15.120000px;}
.v7{vertical-align:-8.640000px;}
.v8{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:18.000000px;}
.ls24{letter-spacing:-1.224000px;}
.ls23{letter-spacing:-1.206000px;}
.ls21{letter-spacing:-1.152000px;}
.ls22{letter-spacing:-1.116000px;}
.ls9{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.234000px;}
.ls10{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.097800px;}
.ls1b{letter-spacing:-0.090000px;}
.ls16{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.031680px;}
.ls14{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.054000px;}
.ls1c{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.152400px;}
.ls25{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.198000px;}
.ls27{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.234000px;}
.ls20{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.302400px;}
.ls0{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.385800px;}
.ls29{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.558000px;}
.ls2{letter-spacing:0.670320px;}
.ls4{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.164000px;}
.lsb{letter-spacing:1.278000px;}
.ls18{letter-spacing:1.452000px;}
.ls19{letter-spacing:1.476000px;}
.ls3{letter-spacing:1.494000px;}
.ls11{letter-spacing:3.600000px;}
.ls1d{letter-spacing:7.200000px;}
.lsd{letter-spacing:9.306000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-21.187920px;}
.ws4{word-spacing:-20.437920px;}
.ws2{word-spacing:-16.560000px;}
.wse{word-spacing:-15.966720px;}
.ws3{word-spacing:-15.840000px;}
.wsb{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.508000px;}
.ws9{word-spacing:-14.292000px;}
.ws1d{word-spacing:-13.950000px;}
.ws1c{word-spacing:-13.932000px;}
.ws1a{word-spacing:-13.896000px;}
.ws1f{word-spacing:-13.806000px;}
.ws1e{word-spacing:-13.752000px;}
.ws6{word-spacing:-13.716000px;}
.ws0{word-spacing:-13.147200px;}
.ws14{word-spacing:-13.068000px;}
.wsd{word-spacing:-13.049400px;}
.ws8{word-spacing:-13.014000px;}
.ws12{word-spacing:-12.960000px;}
.ws13{word-spacing:-12.834000px;}
.ws1b{word-spacing:-12.744000px;}
.ws15{word-spacing:-12.726000px;}
.ws17{word-spacing:-12.600000px;}
.ws16{word-spacing:-12.564000px;}
.ws18{word-spacing:-12.510000px;}
.ws19{word-spacing:-12.492000px;}
.wsa{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.576000px;}
.ws11{word-spacing:-9.144000px;}
.ws10{word-spacing:-9.036000px;}
.wsf{word-spacing:-8.676000px;}
.wsc{word-spacing:0.000000px;}
._c{margin-left:-2.963760px;}
._1{margin-left:-1.296000px;}
._0{width:1.169040px;}
._6{width:2.217840px;}
._2{width:3.622320px;}
._3{width:4.665600px;}
._22{width:5.694240px;}
._8{width:6.993120px;}
._4{width:8.685840px;}
._5{width:10.141200px;}
._7{width:11.257440px;}
._30{width:12.706320px;}
._9{width:14.662080px;}
._f{width:16.200000px;}
._a{width:18.127920px;}
._15{width:19.132080px;}
._10{width:20.250000px;}
._11{width:21.870000px;}
._14{width:23.652000px;}
._26{width:25.488000px;}
._d{width:26.622000px;}
._e{width:28.134000px;}
._20{width:29.268000px;}
._21{width:30.348000px;}
._1c{width:31.590000px;}
._1d{width:32.778000px;}
._1f{width:33.966000px;}
._25{width:36.018000px;}
._1a{width:37.314000px;}
._1e{width:39.096000px;}
._12{width:40.446000px;}
._13{width:41.796000px;}
._2a{width:43.056960px;}
._1b{width:45.090000px;}
._29{width:46.926000px;}
._28{width:48.114000px;}
._2b{width:49.518000px;}
._2f{width:50.728800px;}
._2d{width:54.054000px;}
._2e{width:56.178960px;}
._34{width:57.399120px;}
._27{width:60.102000px;}
._33{width:62.316000px;}
._32{width:63.504000px;}
._31{width:64.577760px;}
._23{width:65.772000px;}
._24{width:66.852000px;}
._2c{width:69.822000px;}
._17{width:73.974000px;}
._16{width:76.680000px;}
._18{width:148.932000px;}
._19{width:150.312000px;}
._b{width:1404.960000px;}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fc9{color:rgb(127,127,127);}
.fc8{color:rgb(38,38,38);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,128);}
.fsb{font-size:2.880000px;}
.fs3{font-size:18.000000px;}
.fs9{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fse{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fsf{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs10{font-size:72.144000px;}
.fsc{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.y4c{bottom:-18.390000px;}
.y0{bottom:0.000000px;}
.y10{bottom:1.440000px;}
.y39{bottom:1.605000px;}
.y14{bottom:1.620000px;}
.y1a{bottom:1.980000px;}
.y27{bottom:2.340000px;}
.y4b{bottom:2.850000px;}
.y141{bottom:3.045000px;}
.y25{bottom:3.060000px;}
.y143{bottom:3.225000px;}
.y21{bottom:3.240000px;}
.y180{bottom:3.270000px;}
.y4e{bottom:3.420000px;}
.y23{bottom:3.600000px;}
.y13a{bottom:3.780000px;}
.y1f{bottom:4.500000px;}
.y3f{bottom:6.465000px;}
.y41{bottom:6.660000px;}
.ye8{bottom:7.725000px;}
.ye4{bottom:7.740000px;}
.yf6{bottom:7.920000px;}
.y12a{bottom:8.385000px;}
.y128{bottom:8.430000px;}
.y12c{bottom:8.745000px;}
.yfb{bottom:10.800000px;}
.y37{bottom:10.965000px;}
.y1d{bottom:10.980000px;}
.y51{bottom:11.700000px;}
.y3d{bottom:12.585000px;}
.y52{bottom:13.680000px;}
.y12{bottom:13.860000px;}
.y9{bottom:14.400000px;}
.y2{bottom:14.580000px;}
.y3b{bottom:16.365000px;}
.y53{bottom:16.560000px;}
.ye{bottom:17.640000px;}
.y18{bottom:19.260000px;}
.y10c{bottom:22.140000px;}
.y4a{bottom:27.330000px;}
.y36{bottom:33.825000px;}
.yfa{bottom:33.840000px;}
.yea{bottom:34.005000px;}
.y1c{bottom:34.020000px;}
.y8{bottom:45.540000px;}
.y17{bottom:47.340000px;}
.y54{bottom:47.520000px;}
.y49{bottom:50.550000px;}
.yd{bottom:53.325000px;}
.y35{bottom:56.865000px;}
.yf9{bottom:56.880000px;}
.y3{bottom:58.320000px;}
.y50{bottom:63.720000px;}
.y48{bottom:73.590000px;}
.y1{bottom:74.520000px;}
.y16{bottom:75.420000px;}
.y7{bottom:76.680000px;}
.y34{bottom:79.905000px;}
.yf8{bottom:79.920000px;}
.yc{bottom:88.965000px;}
.y47{bottom:97.350000px;}
.y33{bottom:102.945000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.y126{bottom:114.840000px;}
.y103{bottom:115.560000px;}
.yd5{bottom:115.740000px;}
.yf4{bottom:116.100000px;}
.y19a{bottom:116.640000px;}
.y83{bottom:118.620000px;}
.yb2{bottom:119.340000px;}
.y45{bottom:121.140000px;}
.y32{bottom:125.985000px;}
.y150{bottom:129.240000px;}
.y168{bottom:130.320000px;}
.y44{bottom:133.200000px;}
.y125{bottom:137.880000px;}
.y102{bottom:138.600000px;}
.yd4{bottom:138.780000px;}
.yf3{bottom:139.140000px;}
.y199{bottom:139.680000px;}
.y82{bottom:140.760000px;}
.yb1{bottom:141.660000px;}
.y31{bottom:149.025000px;}
.y14f{bottom:152.280000px;}
.y43{bottom:152.640000px;}
.y167{bottom:153.180000px;}
.y124{bottom:160.920000px;}
.yd3{bottom:161.640000px;}
.yf2{bottom:162.180000px;}
.y198{bottom:162.540000px;}
.y81{bottom:163.080000px;}
.yb0{bottom:163.800000px;}
.y30{bottom:171.930000px;}
.y42{bottom:172.080000px;}
.y14e{bottom:174.420000px;}
.y166{bottom:176.220000px;}
.y123{bottom:183.960000px;}
.yd2{bottom:184.680000px;}
.yf1{bottom:185.040000px;}
.y80{bottom:185.220000px;}
.y197{bottom:185.580000px;}
.yaf{bottom:186.120000px;}
.y40{bottom:191.520000px;}
.y2f{bottom:194.970000px;}
.y14d{bottom:196.920000px;}
.y165{bottom:199.260000px;}
.y122{bottom:206.850000px;}
.y7f{bottom:207.570000px;}
.yd1{bottom:207.750000px;}
.yf0{bottom:208.110000px;}
.yae{bottom:208.290000px;}
.y196{bottom:208.650000px;}
.y3e{bottom:211.005000px;}
.y2e{bottom:218.010000px;}
.y14c{bottom:219.990000px;}
.y164{bottom:222.330000px;}
.y7e{bottom:229.890000px;}
.y3c{bottom:230.265000px;}
.yad{bottom:230.610000px;}
.yd0{bottom:230.790000px;}
.yef{bottom:231.150000px;}
.y195{bottom:231.690000px;}
.y2d{bottom:241.050000px;}
.y14b{bottom:243.030000px;}
.y163{bottom:245.370000px;}
.y7d{bottom:252.030000px;}
.yac{bottom:252.750000px;}
.y121{bottom:252.930000px;}
.y101{bottom:253.650000px;}
.ycf{bottom:253.830000px;}
.yee{bottom:254.190000px;}
.y194{bottom:254.730000px;}
.y3a{bottom:255.645000px;}
.y2c{bottom:264.090000px;}
.y14a{bottom:266.070000px;}
.y162{bottom:268.410000px;}
.y7c{bottom:274.350000px;}
.yab{bottom:275.070000px;}
.y120{bottom:275.970000px;}
.yce{bottom:276.690000px;}
.yed{bottom:277.230000px;}
.y193{bottom:277.590000px;}
.y38{bottom:281.565000px;}
.y2b{bottom:286.950000px;}
.y28{bottom:288.225000px;}
.y149{bottom:288.930000px;}
.y161{bottom:291.270000px;}
.y7b{bottom:296.490000px;}
.yaa{bottom:297.390000px;}
.y11f{bottom:299.010000px;}
.ycd{bottom:299.730000px;}
.yec{bottom:300.270000px;}
.y192{bottom:300.630000px;}
.y2a{bottom:309.990000px;}
.y148{bottom:311.970000px;}
.y160{bottom:314.310000px;}
.y7a{bottom:318.810000px;}
.ya9{bottom:319.530000px;}
.yeb{bottom:321.870000px;}
.y11e{bottom:322.050000px;}
.ycc{bottom:322.770000px;}
.y191{bottom:323.670000px;}
.ye9{bottom:332.685000px;}
.y29{bottom:333.030000px;}
.y147{bottom:335.010000px;}
.y15f{bottom:337.350000px;}
.y79{bottom:340.950000px;}
.ya8{bottom:341.850000px;}
.y11d{bottom:344.910000px;}
.ycb{bottom:345.810000px;}
.y190{bottom:346.710000px;}
.y146{bottom:358.050000px;}
.y15e{bottom:360.390000px;}
.y78{bottom:363.270000px;}
.ya7{bottom:363.990000px;}
.y11c{bottom:367.950000px;}
.y100{bottom:368.670000px;}
.yca{bottom:368.850000px;}
.y18f{bottom:369.750000px;}
.ye7{bottom:378.765000px;}
.y145{bottom:381.090000px;}
.y15d{bottom:383.430000px;}
.y77{bottom:385.590000px;}
.ya6{bottom:386.310000px;}
.y11b{bottom:390.990000px;}
.yff{bottom:391.710000px;}
.yc9{bottom:391.890000px;}
.y18e{bottom:392.790000px;}
.y144{bottom:395.325000px;}
.y15c{bottom:406.470000px;}
.y76{bottom:407.730000px;}
.ya5{bottom:408.450000px;}
.y142{bottom:410.625000px;}
.y11a{bottom:414.030000px;}
.yc8{bottom:414.750000px;}
.y18d{bottom:415.650000px;}
.y140{bottom:426.105000px;}
.y15b{bottom:429.330000px;}
.y75{bottom:430.050000px;}
.ya4{bottom:430.770000px;}
.y119{bottom:436.350000px;}
.yc7{bottom:437.790000px;}
.y18c{bottom:438.690000px;}
.y13f{bottom:441.435000px;}
.y118{bottom:450.075000px;}
.y74{bottom:452.235000px;}
.y15a{bottom:452.415000px;}
.ya3{bottom:452.955000px;}
.y13e{bottom:456.735000px;}
.yc6{bottom:460.875000px;}
.y18b{bottom:461.775000px;}
.y117{bottom:465.375000px;}
.y13d{bottom:472.035000px;}
.yfe{bottom:472.935000px;}
.y73{bottom:474.555000px;}
.ya2{bottom:475.275000px;}
.y159{bottom:475.455000px;}
.y116{bottom:480.855000px;}
.yc5{bottom:483.915000px;}
.y18a{bottom:484.815000px;}
.ye6{bottom:487.335000px;}
.y13c{bottom:487.515000px;}
.y115{bottom:496.155000px;}
.y72{bottom:496.695000px;}
.ya1{bottom:497.595000px;}
.y158{bottom:498.495000px;}
.ye5{bottom:499.395000px;}
.y139{bottom:503.535000px;}
.yc4{bottom:506.955000px;}
.y189{bottom:507.855000px;}
.y114{bottom:511.455000px;}
.y71{bottom:519.015000px;}
.y13b{bottom:519.555000px;}
.ya0{bottom:519.735000px;}
.y157{bottom:521.535000px;}
.y113{bottom:526.755000px;}
.yc3{bottom:529.995000px;}
.y188{bottom:530.895000px;}
.y70{bottom:541.155000px;}
.yfd{bottom:541.875000px;}
.y9f{bottom:542.055000px;}
.y156{bottom:544.575000px;}
.ye3{bottom:545.475000px;}
.y138{bottom:548.175000px;}
.yc2{bottom:552.855000px;}
.y187{bottom:553.755000px;}
.y112{bottom:557.535000px;}
.y6f{bottom:563.475000px;}
.y9e{bottom:564.195000px;}
.y155{bottom:567.435000px;}
.y137{bottom:571.215000px;}
.y111{bottom:572.835000px;}
.yc1{bottom:575.895000px;}
.y186{bottom:576.795000px;}
.y6e{bottom:585.795000px;}
.y9d{bottom:586.515000px;}
.y110{bottom:588.135000px;}
.y154{bottom:590.475000px;}
.y136{bottom:594.255000px;}
.yc0{bottom:598.935000px;}
.y185{bottom:599.835000px;}
.y10f{bottom:603.435000px;}
.y6d{bottom:607.935000px;}
.y9c{bottom:608.655000px;}
.y153{bottom:613.515000px;}
.y184{bottom:614.235000px;}
.y135{bottom:617.115000px;}
.y10e{bottom:618.915000px;}
.ybf{bottom:621.975000px;}
.y183{bottom:629.535000px;}
.y6c{bottom:630.255000px;}
.y9b{bottom:630.975000px;}
.y26{bottom:633.315000px;}
.y10b{bottom:634.935000px;}
.y152{bottom:636.555000px;}
.y134{bottom:640.155000px;}
.y24{bottom:643.575000px;}
.y182{bottom:644.835000px;}
.ybe{bottom:645.015000px;}
.y6b{bottom:652.395000px;}
.y10d{bottom:652.575000px;}
.y9a{bottom:653.295000px;}
.y22{bottom:658.875000px;}
.y151{bottom:659.595000px;}
.y181{bottom:660.135000px;}
.y133{bottom:663.195000px;}
.ybd{bottom:668.055000px;}
.y6a{bottom:674.715000px;}
.y99{bottom:675.435000px;}
.y20{bottom:676.005000px;}
.y10a{bottom:682.485000px;}
.y12b{bottom:682.740000px;}
.y129{bottom:685.800000px;}
.y132{bottom:686.265000px;}
.ybc{bottom:690.945000px;}
.y1e{bottom:694.365000px;}
.y69{bottom:696.885000px;}
.y98{bottom:697.785000px;}
.y109{bottom:705.525000px;}
.y17f{bottom:706.245000px;}
.y131{bottom:709.305000px;}
.y1b{bottom:711.285000px;}
.ybb{bottom:713.985000px;}
.y68{bottom:719.205000px;}
.y97{bottom:719.925000px;}
.y17e{bottom:721.545000px;}
.yfc{bottom:722.625000px;}
.y108{bottom:728.565000px;}
.y130{bottom:732.165000px;}
.yf7{bottom:734.685000px;}
.y17d{bottom:736.845000px;}
.yba{bottom:737.025000px;}
.y67{bottom:741.525000px;}
.y96{bottom:742.245000px;}
.y107{bottom:751.605000px;}
.y17c{bottom:752.325000px;}
.y12f{bottom:755.205000px;}
.y19{bottom:757.365000px;}
.yb9{bottom:760.065000px;}
.y66{bottom:763.665000px;}
.y95{bottom:764.385000px;}
.y15{bottom:765.645000px;}
.y12e{bottom:767.265000px;}
.y17b{bottom:767.625000px;}
.y106{bottom:774.645000px;}
.y17a{bottom:782.925000px;}
.yb8{bottom:783.105000px;}
.y65{bottom:785.985000px;}
.y94{bottom:786.705000px;}
.y105{bottom:797.685000px;}
.y179{bottom:798.225000px;}
.yb7{bottom:805.965000px;}
.y64{bottom:808.125000px;}
.y93{bottom:809.025000px;}
.y12d{bottom:813.345000px;}
.y178{bottom:813.525000px;}
.y104{bottom:820.545000px;}
.yf5{bottom:826.665000px;}
.yb6{bottom:829.005000px;}
.y63{bottom:830.445000px;}
.y92{bottom:831.165000px;}
.ye2{bottom:843.585000px;}
.y177{bottom:844.305000px;}
.y13{bottom:849.885000px;}
.yb5{bottom:852.045000px;}
.y62{bottom:852.585000px;}
.y91{bottom:853.485000px;}
.y11{bottom:859.065000px;}
.y176{bottom:859.605000px;}
.ye1{bottom:866.625000px;}
.y61{bottom:874.905000px;}
.yb4{bottom:875.085000px;}
.y90{bottom:875.625000px;}
.yf{bottom:886.965000px;}
.ye0{bottom:889.665000px;}
.y175{bottom:890.205000px;}
.yb{bottom:892.185000px;}
.y60{bottom:897.225000px;}
.y8f{bottom:897.945000px;}
.yb3{bottom:898.125000px;}
.y174{bottom:905.685000px;}
.ydf{bottom:912.750000px;}
.y5f{bottom:919.410000px;}
.y8e{bottom:920.130000px;}
.y173{bottom:921.030000px;}
.y127{bottom:922.140000px;}
.yde{bottom:935.790000px;}
.y172{bottom:936.330000px;}
.y5e{bottom:941.730000px;}
.y8d{bottom:942.450000px;}
.y171{bottom:951.630000px;}
.ydd{bottom:958.650000px;}
.y5d{bottom:963.870000px;}
.y8c{bottom:964.590000px;}
.y170{bottom:967.110000px;}
.ydc{bottom:981.690000px;}
.y16f{bottom:982.410000px;}
.y5c{bottom:986.190000px;}
.y8b{bottom:986.910000px;}
.y16e{bottom:997.710000px;}
.ydb{bottom:1004.730000px;}
.y5b{bottom:1008.330000px;}
.y8a{bottom:1009.230000px;}
.y16d{bottom:1013.010000px;}
.ya{bottom:1013.550000px;}
.yda{bottom:1027.770000px;}
.y16c{bottom:1028.310000px;}
.y4{bottom:1030.290000px;}
.y5a{bottom:1030.650000px;}
.y89{bottom:1031.370000px;}
.y46{bottom:1043.280000px;}
.y16b{bottom:1043.790000px;}
.yd9{bottom:1050.810000px;}
.y59{bottom:1052.790000px;}
.y88{bottom:1053.690000px;}
.y16a{bottom:1059.090000px;}
.yd8{bottom:1073.850000px;}
.y58{bottom:1075.110000px;}
.y87{bottom:1075.830000px;}
.y169{bottom:1091.310000px;}
.yd7{bottom:1096.710000px;}
.y57{bottom:1097.430000px;}
.y86{bottom:1098.150000px;}
.y56{bottom:1119.570000px;}
.yd6{bottom:1119.750000px;}
.y85{bottom:1120.290000px;}
.y84{bottom:1142.610000px;}
.y55{bottom:1142.790000px;}
.y4f{bottom:1161.000000px;}
.y4d{bottom:1185.840000px;}
.h2e{height:1.999688px;}
.h9{height:5.220000px;}
.h22{height:6.645000px;}
.h11{height:8.280000px;}
.hd{height:9.180000px;}
.h1e{height:10.245000px;}
.ha{height:12.190430px;}
.h1c{height:15.285000px;}
.h4d{height:15.300000px;}
.h49{height:15.321000px;}
.h4b{height:15.322500px;}
.h42{height:15.465000px;}
.h4c{height:15.480000px;}
.h4e{height:15.510000px;}
.h23{height:16.543828px;}
.h41{height:16.725000px;}
.h16{height:16.920000px;}
.h1a{height:17.130000px;}
.h34{height:17.640000px;}
.h17{height:18.360000px;}
.h28{height:19.245000px;}
.h2c{height:19.438500px;}
.h2b{height:19.440000px;}
.h2a{height:19.476000px;}
.h12{height:21.055781px;}
.he{height:22.975313px;}
.h10{height:23.980781px;}
.h26{height:25.365000px;}
.h44{height:25.380000px;}
.h46{height:25.560000px;}
.h24{height:25.905000px;}
.h1f{height:27.228516px;}
.h35{height:27.898500px;}
.hb{height:27.900000px;}
.h2{height:28.798500px;}
.h25{height:29.145586px;}
.h48{height:31.485000px;}
.h40{height:34.365000px;}
.h37{height:34.684453px;}
.h3b{height:36.509766px;}
.h43{height:38.664492px;}
.h4a{height:38.689453px;}
.h29{height:40.472227px;}
.h1d{height:40.842773px;}
.h14{height:40.869141px;}
.h27{height:41.493516px;}
.h21{height:42.366094px;}
.h15{height:44.820000px;}
.hc{height:44.860781px;}
.h1b{height:45.199336px;}
.h19{height:45.695391px;}
.h39{height:46.065000px;}
.h13{height:46.080000px;}
.h18{height:50.068125px;}
.h3{height:50.597578px;}
.h31{height:54.000000px;}
.h6{height:54.457031px;}
.h33{height:56.084062px;}
.h32{height:56.160000px;}
.h8{height:57.051211px;}
.h30{height:63.180000px;}
.h3f{height:68.925000px;}
.h4{height:70.664062px;}
.h45{height:70.805391px;}
.h36{height:72.562500px;}
.hf{height:84.240000px;}
.h3d{height:91.980000px;}
.h3a{height:97.581000px;}
.h7{height:106.942500px;}
.h2f{height:114.660000px;}
.h3c{height:121.162500px;}
.h2d{height:122.436000px;}
.h5{height:124.590000px;}
.h3e{height:169.770000px;}
.h47{height:203.430000px;}
.h38{height:287.130000px;}
.h20{height:345.075000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:18.540000px;}
.w18{width:18.720000px;}
.w15{width:20.325000px;}
.w1a{width:47.329500px;}
.w10{width:52.189500px;}
.w1e{width:61.725000px;}
.w1d{width:91.789500px;}
.w4{width:101.329500px;}
.w20{width:118.116000px;}
.w1f{width:121.881000px;}
.w21{width:133.401000px;}
.w1c{width:135.000000px;}
.w1b{width:141.681000px;}
.w22{width:148.125000px;}
.w17{width:149.745000px;}
.w16{width:153.915000px;}
.w9{width:154.429500px;}
.w8{width:243.915000px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.w13{width:324.015000px;}
.w14{width:324.019500px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w2{width:414.424500px;}
.w7{width:431.164500px;}
.wa{width:520.650000px;}
.wd{width:573.660000px;}
.w5{width:575.730000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:3.769500px;}
.x15{left:6.465000px;}
.x8{left:7.725000px;}
.x31{left:16.365000px;}
.x13{left:17.809500px;}
.x2c{left:20.685000px;}
.x1d{left:25.560000px;}
.x2f{left:31.500000px;}
.x17{left:32.565000px;}
.x20{left:34.920000px;}
.x1f{left:36.720000px;}
.xb{left:38.370000px;}
.x1e{left:40.320000px;}
.x36{left:42.480000px;}
.x3b{left:45.885000px;}
.x38{left:48.420000px;}
.x33{left:49.710000px;}
.x34{left:50.745000px;}
.x35{left:52.020000px;}
.x39{left:53.445000px;}
.x29{left:56.160000px;}
.x3a{left:57.990000px;}
.x23{left:61.380000px;}
.x24{left:62.460000px;}
.x22{left:64.260000px;}
.x21{left:71.100000px;}
.x37{left:73.980000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x12{left:122.025000px;}
.x18{left:143.445000px;}
.x27{left:155.385000px;}
.x14{left:164.385000px;}
.x2b{left:199.845000px;}
.x6{left:209.385000px;}
.x4{left:210.450000px;}
.xc{left:221.115000px;}
.x2d{left:261.585000px;}
.x9{left:263.385000px;}
.xd{left:273.705000px;}
.x26{left:290.700000px;}
.x28{left:297.075000px;}
.xe{left:303.405000px;}
.x2a{left:311.428500px;}
.x25{left:314.640000px;}
.x1a{left:324.030000px;}
.xf{left:341.025000px;}
.x2e{left:383.475000px;}
.x16{left:444.720000px;}
.x11{left:450.480000px;}
.xa{left:458.220000px;}
.x19{left:462.705000px;}
.x1b{left:483.060000px;}
.x30{left:501.600000px;}
.x3{left:521.220000px;}
.x7{left:540.120000px;}
.x10{left:573.990000px;}
.x32{left:635.010000px;}
.x1c{left:636.990000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-13.440000pt;}
.v7{vertical-align:-7.680000pt;}
.v8{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:16.000000pt;}
.ls24{letter-spacing:-1.088000pt;}
.ls23{letter-spacing:-1.072000pt;}
.ls21{letter-spacing:-1.024000pt;}
.ls22{letter-spacing:-0.992000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.208000pt;}
.ls10{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.086933pt;}
.ls1b{letter-spacing:-0.080000pt;}
.ls16{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.028160pt;}
.ls14{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.048000pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.135467pt;}
.ls25{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.176000pt;}
.ls27{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.208000pt;}
.ls20{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.268800pt;}
.ls0{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.342933pt;}
.ls29{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.496000pt;}
.ls2{letter-spacing:0.595840pt;}
.ls4{letter-spacing:0.960000pt;}
.ls5{letter-spacing:1.034667pt;}
.lsb{letter-spacing:1.136000pt;}
.ls18{letter-spacing:1.290667pt;}
.ls19{letter-spacing:1.312000pt;}
.ls3{letter-spacing:1.328000pt;}
.ls11{letter-spacing:3.200000pt;}
.ls1d{letter-spacing:6.400000pt;}
.lsd{letter-spacing:8.272000pt;}
.ws5{word-spacing:-18.833707pt;}
.ws4{word-spacing:-18.167040pt;}
.ws2{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.192640pt;}
.ws3{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.896000pt;}
.ws9{word-spacing:-12.704000pt;}
.ws1d{word-spacing:-12.400000pt;}
.ws1c{word-spacing:-12.384000pt;}
.ws1a{word-spacing:-12.352000pt;}
.ws1f{word-spacing:-12.272000pt;}
.ws1e{word-spacing:-12.224000pt;}
.ws6{word-spacing:-12.192000pt;}
.ws0{word-spacing:-11.686400pt;}
.ws14{word-spacing:-11.616000pt;}
.wsd{word-spacing:-11.599467pt;}
.ws8{word-spacing:-11.568000pt;}
.ws12{word-spacing:-11.520000pt;}
.ws13{word-spacing:-11.408000pt;}
.ws1b{word-spacing:-11.328000pt;}
.ws15{word-spacing:-11.312000pt;}
.ws17{word-spacing:-11.200000pt;}
.ws16{word-spacing:-11.168000pt;}
.ws18{word-spacing:-11.120000pt;}
.ws19{word-spacing:-11.104000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.512000pt;}
.ws11{word-spacing:-8.128000pt;}
.ws10{word-spacing:-8.032000pt;}
.wsf{word-spacing:-7.712000pt;}
.wsc{word-spacing:0.000000pt;}
._c{margin-left:-2.634453pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.039147pt;}
._6{width:1.971413pt;}
._2{width:3.219840pt;}
._3{width:4.147200pt;}
._22{width:5.061547pt;}
._8{width:6.216107pt;}
._4{width:7.720747pt;}
._5{width:9.014400pt;}
._7{width:10.006613pt;}
._30{width:11.294507pt;}
._9{width:13.032960pt;}
._f{width:14.400000pt;}
._a{width:16.113707pt;}
._15{width:17.006293pt;}
._10{width:18.000000pt;}
._11{width:19.440000pt;}
._14{width:21.024000pt;}
._26{width:22.656000pt;}
._d{width:23.664000pt;}
._e{width:25.008000pt;}
._20{width:26.016000pt;}
._21{width:26.976000pt;}
._1c{width:28.080000pt;}
._1d{width:29.136000pt;}
._1f{width:30.192000pt;}
._25{width:32.016000pt;}
._1a{width:33.168000pt;}
._1e{width:34.752000pt;}
._12{width:35.952000pt;}
._13{width:37.152000pt;}
._2a{width:38.272853pt;}
._1b{width:40.080000pt;}
._29{width:41.712000pt;}
._28{width:42.768000pt;}
._2b{width:44.016000pt;}
._2f{width:45.092267pt;}
._2d{width:48.048000pt;}
._2e{width:49.936853pt;}
._34{width:51.021440pt;}
._27{width:53.424000pt;}
._33{width:55.392000pt;}
._32{width:56.448000pt;}
._31{width:57.402453pt;}
._23{width:58.464000pt;}
._24{width:59.424000pt;}
._2c{width:62.064000pt;}
._17{width:65.754667pt;}
._16{width:68.160000pt;}
._18{width:132.384000pt;}
._19{width:133.610667pt;}
._b{width:1248.853333pt;}
.fsb{font-size:2.560000pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fse{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fsf{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs10{font-size:64.128000pt;}
.fsc{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.y4c{bottom:-16.346667pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:1.280000pt;}
.y39{bottom:1.426667pt;}
.y14{bottom:1.440000pt;}
.y1a{bottom:1.760000pt;}
.y27{bottom:2.080000pt;}
.y4b{bottom:2.533333pt;}
.y141{bottom:2.706667pt;}
.y25{bottom:2.720000pt;}
.y143{bottom:2.866667pt;}
.y21{bottom:2.880000pt;}
.y180{bottom:2.906667pt;}
.y4e{bottom:3.040000pt;}
.y23{bottom:3.200000pt;}
.y13a{bottom:3.360000pt;}
.y1f{bottom:4.000000pt;}
.y3f{bottom:5.746667pt;}
.y41{bottom:5.920000pt;}
.ye8{bottom:6.866667pt;}
.ye4{bottom:6.880000pt;}
.yf6{bottom:7.040000pt;}
.y12a{bottom:7.453333pt;}
.y128{bottom:7.493333pt;}
.y12c{bottom:7.773333pt;}
.yfb{bottom:9.600000pt;}
.y37{bottom:9.746667pt;}
.y1d{bottom:9.760000pt;}
.y51{bottom:10.400000pt;}
.y3d{bottom:11.186667pt;}
.y52{bottom:12.160000pt;}
.y12{bottom:12.320000pt;}
.y9{bottom:12.800000pt;}
.y2{bottom:12.960000pt;}
.y3b{bottom:14.546667pt;}
.y53{bottom:14.720000pt;}
.ye{bottom:15.680000pt;}
.y18{bottom:17.120000pt;}
.y10c{bottom:19.680000pt;}
.y4a{bottom:24.293333pt;}
.y36{bottom:30.066667pt;}
.yfa{bottom:30.080000pt;}
.yea{bottom:30.226667pt;}
.y1c{bottom:30.240000pt;}
.y8{bottom:40.480000pt;}
.y17{bottom:42.080000pt;}
.y54{bottom:42.240000pt;}
.y49{bottom:44.933333pt;}
.yd{bottom:47.400000pt;}
.y35{bottom:50.546667pt;}
.yf9{bottom:50.560000pt;}
.y3{bottom:51.840000pt;}
.y50{bottom:56.640000pt;}
.y48{bottom:65.413333pt;}
.y1{bottom:66.240000pt;}
.y16{bottom:67.040000pt;}
.y7{bottom:68.160000pt;}
.y34{bottom:71.026667pt;}
.yf8{bottom:71.040000pt;}
.yc{bottom:79.080000pt;}
.y47{bottom:86.533333pt;}
.y33{bottom:91.506667pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.y126{bottom:102.080000pt;}
.y103{bottom:102.720000pt;}
.yd5{bottom:102.880000pt;}
.yf4{bottom:103.200000pt;}
.y19a{bottom:103.680000pt;}
.y83{bottom:105.440000pt;}
.yb2{bottom:106.080000pt;}
.y45{bottom:107.680000pt;}
.y32{bottom:111.986667pt;}
.y150{bottom:114.880000pt;}
.y168{bottom:115.840000pt;}
.y44{bottom:118.400000pt;}
.y125{bottom:122.560000pt;}
.y102{bottom:123.200000pt;}
.yd4{bottom:123.360000pt;}
.yf3{bottom:123.680000pt;}
.y199{bottom:124.160000pt;}
.y82{bottom:125.120000pt;}
.yb1{bottom:125.920000pt;}
.y31{bottom:132.466667pt;}
.y14f{bottom:135.360000pt;}
.y43{bottom:135.680000pt;}
.y167{bottom:136.160000pt;}
.y124{bottom:143.040000pt;}
.yd3{bottom:143.680000pt;}
.yf2{bottom:144.160000pt;}
.y198{bottom:144.480000pt;}
.y81{bottom:144.960000pt;}
.yb0{bottom:145.600000pt;}
.y30{bottom:152.826667pt;}
.y42{bottom:152.960000pt;}
.y14e{bottom:155.040000pt;}
.y166{bottom:156.640000pt;}
.y123{bottom:163.520000pt;}
.yd2{bottom:164.160000pt;}
.yf1{bottom:164.480000pt;}
.y80{bottom:164.640000pt;}
.y197{bottom:164.960000pt;}
.yaf{bottom:165.440000pt;}
.y40{bottom:170.240000pt;}
.y2f{bottom:173.306667pt;}
.y14d{bottom:175.040000pt;}
.y165{bottom:177.120000pt;}
.y122{bottom:183.866667pt;}
.y7f{bottom:184.506667pt;}
.yd1{bottom:184.666667pt;}
.yf0{bottom:184.986667pt;}
.yae{bottom:185.146667pt;}
.y196{bottom:185.466667pt;}
.y3e{bottom:187.560000pt;}
.y2e{bottom:193.786667pt;}
.y14c{bottom:195.546667pt;}
.y164{bottom:197.626667pt;}
.y7e{bottom:204.346667pt;}
.y3c{bottom:204.680000pt;}
.yad{bottom:204.986667pt;}
.yd0{bottom:205.146667pt;}
.yef{bottom:205.466667pt;}
.y195{bottom:205.946667pt;}
.y2d{bottom:214.266667pt;}
.y14b{bottom:216.026667pt;}
.y163{bottom:218.106667pt;}
.y7d{bottom:224.026667pt;}
.yac{bottom:224.666667pt;}
.y121{bottom:224.826667pt;}
.y101{bottom:225.466667pt;}
.ycf{bottom:225.626667pt;}
.yee{bottom:225.946667pt;}
.y194{bottom:226.426667pt;}
.y3a{bottom:227.240000pt;}
.y2c{bottom:234.746667pt;}
.y14a{bottom:236.506667pt;}
.y162{bottom:238.586667pt;}
.y7c{bottom:243.866667pt;}
.yab{bottom:244.506667pt;}
.y120{bottom:245.306667pt;}
.yce{bottom:245.946667pt;}
.yed{bottom:246.426667pt;}
.y193{bottom:246.746667pt;}
.y38{bottom:250.280000pt;}
.y2b{bottom:255.066667pt;}
.y28{bottom:256.200000pt;}
.y149{bottom:256.826667pt;}
.y161{bottom:258.906667pt;}
.y7b{bottom:263.546667pt;}
.yaa{bottom:264.346667pt;}
.y11f{bottom:265.786667pt;}
.ycd{bottom:266.426667pt;}
.yec{bottom:266.906667pt;}
.y192{bottom:267.226667pt;}
.y2a{bottom:275.546667pt;}
.y148{bottom:277.306667pt;}
.y160{bottom:279.386667pt;}
.y7a{bottom:283.386667pt;}
.ya9{bottom:284.026667pt;}
.yeb{bottom:286.106667pt;}
.y11e{bottom:286.266667pt;}
.ycc{bottom:286.906667pt;}
.y191{bottom:287.706667pt;}
.ye9{bottom:295.720000pt;}
.y29{bottom:296.026667pt;}
.y147{bottom:297.786667pt;}
.y15f{bottom:299.866667pt;}
.y79{bottom:303.066667pt;}
.ya8{bottom:303.866667pt;}
.y11d{bottom:306.586667pt;}
.ycb{bottom:307.386667pt;}
.y190{bottom:308.186667pt;}
.y146{bottom:318.266667pt;}
.y15e{bottom:320.346667pt;}
.y78{bottom:322.906667pt;}
.ya7{bottom:323.546667pt;}
.y11c{bottom:327.066667pt;}
.y100{bottom:327.706667pt;}
.yca{bottom:327.866667pt;}
.y18f{bottom:328.666667pt;}
.ye7{bottom:336.680000pt;}
.y145{bottom:338.746667pt;}
.y15d{bottom:340.826667pt;}
.y77{bottom:342.746667pt;}
.ya6{bottom:343.386667pt;}
.y11b{bottom:347.546667pt;}
.yff{bottom:348.186667pt;}
.yc9{bottom:348.346667pt;}
.y18e{bottom:349.146667pt;}
.y144{bottom:351.400000pt;}
.y15c{bottom:361.306667pt;}
.y76{bottom:362.426667pt;}
.ya5{bottom:363.066667pt;}
.y142{bottom:365.000000pt;}
.y11a{bottom:368.026667pt;}
.yc8{bottom:368.666667pt;}
.y18d{bottom:369.466667pt;}
.y140{bottom:378.760000pt;}
.y15b{bottom:381.626667pt;}
.y75{bottom:382.266667pt;}
.ya4{bottom:382.906667pt;}
.y119{bottom:387.866667pt;}
.yc7{bottom:389.146667pt;}
.y18c{bottom:389.946667pt;}
.y13f{bottom:392.386667pt;}
.y118{bottom:400.066667pt;}
.y74{bottom:401.986667pt;}
.y15a{bottom:402.146667pt;}
.ya3{bottom:402.626667pt;}
.y13e{bottom:405.986667pt;}
.yc6{bottom:409.666667pt;}
.y18b{bottom:410.466667pt;}
.y117{bottom:413.666667pt;}
.y13d{bottom:419.586667pt;}
.yfe{bottom:420.386667pt;}
.y73{bottom:421.826667pt;}
.ya2{bottom:422.466667pt;}
.y159{bottom:422.626667pt;}
.y116{bottom:427.426667pt;}
.yc5{bottom:430.146667pt;}
.y18a{bottom:430.946667pt;}
.ye6{bottom:433.186667pt;}
.y13c{bottom:433.346667pt;}
.y115{bottom:441.026667pt;}
.y72{bottom:441.506667pt;}
.ya1{bottom:442.306667pt;}
.y158{bottom:443.106667pt;}
.ye5{bottom:443.906667pt;}
.y139{bottom:447.586667pt;}
.yc4{bottom:450.626667pt;}
.y189{bottom:451.426667pt;}
.y114{bottom:454.626667pt;}
.y71{bottom:461.346667pt;}
.y13b{bottom:461.826667pt;}
.ya0{bottom:461.986667pt;}
.y157{bottom:463.586667pt;}
.y113{bottom:468.226667pt;}
.yc3{bottom:471.106667pt;}
.y188{bottom:471.906667pt;}
.y70{bottom:481.026667pt;}
.yfd{bottom:481.666667pt;}
.y9f{bottom:481.826667pt;}
.y156{bottom:484.066667pt;}
.ye3{bottom:484.866667pt;}
.y138{bottom:487.266667pt;}
.yc2{bottom:491.426667pt;}
.y187{bottom:492.226667pt;}
.y112{bottom:495.586667pt;}
.y6f{bottom:500.866667pt;}
.y9e{bottom:501.506667pt;}
.y155{bottom:504.386667pt;}
.y137{bottom:507.746667pt;}
.y111{bottom:509.186667pt;}
.yc1{bottom:511.906667pt;}
.y186{bottom:512.706667pt;}
.y6e{bottom:520.706667pt;}
.y9d{bottom:521.346667pt;}
.y110{bottom:522.786667pt;}
.y154{bottom:524.866667pt;}
.y136{bottom:528.226667pt;}
.yc0{bottom:532.386667pt;}
.y185{bottom:533.186667pt;}
.y10f{bottom:536.386667pt;}
.y6d{bottom:540.386667pt;}
.y9c{bottom:541.026667pt;}
.y153{bottom:545.346667pt;}
.y184{bottom:545.986667pt;}
.y135{bottom:548.546667pt;}
.y10e{bottom:550.146667pt;}
.ybf{bottom:552.866667pt;}
.y183{bottom:559.586667pt;}
.y6c{bottom:560.226667pt;}
.y9b{bottom:560.866667pt;}
.y26{bottom:562.946667pt;}
.y10b{bottom:564.386667pt;}
.y152{bottom:565.826667pt;}
.y134{bottom:569.026667pt;}
.y24{bottom:572.066667pt;}
.y182{bottom:573.186667pt;}
.ybe{bottom:573.346667pt;}
.y6b{bottom:579.906667pt;}
.y10d{bottom:580.066667pt;}
.y9a{bottom:580.706667pt;}
.y22{bottom:585.666667pt;}
.y151{bottom:586.306667pt;}
.y181{bottom:586.786667pt;}
.y133{bottom:589.506667pt;}
.ybd{bottom:593.826667pt;}
.y6a{bottom:599.746667pt;}
.y99{bottom:600.386667pt;}
.y20{bottom:600.893333pt;}
.y10a{bottom:606.653333pt;}
.y12b{bottom:606.880000pt;}
.y129{bottom:609.600000pt;}
.y132{bottom:610.013333pt;}
.ybc{bottom:614.173333pt;}
.y1e{bottom:617.213333pt;}
.y69{bottom:619.453333pt;}
.y98{bottom:620.253333pt;}
.y109{bottom:627.133333pt;}
.y17f{bottom:627.773333pt;}
.y131{bottom:630.493333pt;}
.y1b{bottom:632.253333pt;}
.ybb{bottom:634.653333pt;}
.y68{bottom:639.293333pt;}
.y97{bottom:639.933333pt;}
.y17e{bottom:641.373333pt;}
.yfc{bottom:642.333333pt;}
.y108{bottom:647.613333pt;}
.y130{bottom:650.813333pt;}
.yf7{bottom:653.053333pt;}
.y17d{bottom:654.973333pt;}
.yba{bottom:655.133333pt;}
.y67{bottom:659.133333pt;}
.y96{bottom:659.773333pt;}
.y107{bottom:668.093333pt;}
.y17c{bottom:668.733333pt;}
.y12f{bottom:671.293333pt;}
.y19{bottom:673.213333pt;}
.yb9{bottom:675.613333pt;}
.y66{bottom:678.813333pt;}
.y95{bottom:679.453333pt;}
.y15{bottom:680.573333pt;}
.y12e{bottom:682.013333pt;}
.y17b{bottom:682.333333pt;}
.y106{bottom:688.573333pt;}
.y17a{bottom:695.933333pt;}
.yb8{bottom:696.093333pt;}
.y65{bottom:698.653333pt;}
.y94{bottom:699.293333pt;}
.y105{bottom:709.053333pt;}
.y179{bottom:709.533333pt;}
.yb7{bottom:716.413333pt;}
.y64{bottom:718.333333pt;}
.y93{bottom:719.133333pt;}
.y12d{bottom:722.973333pt;}
.y178{bottom:723.133333pt;}
.y104{bottom:729.373333pt;}
.yf5{bottom:734.813333pt;}
.yb6{bottom:736.893333pt;}
.y63{bottom:738.173333pt;}
.y92{bottom:738.813333pt;}
.ye2{bottom:749.853333pt;}
.y177{bottom:750.493333pt;}
.y13{bottom:755.453333pt;}
.yb5{bottom:757.373333pt;}
.y62{bottom:757.853333pt;}
.y91{bottom:758.653333pt;}
.y11{bottom:763.613333pt;}
.y176{bottom:764.093333pt;}
.ye1{bottom:770.333333pt;}
.y61{bottom:777.693333pt;}
.yb4{bottom:777.853333pt;}
.y90{bottom:778.333333pt;}
.yf{bottom:788.413333pt;}
.ye0{bottom:790.813333pt;}
.y175{bottom:791.293333pt;}
.yb{bottom:793.053333pt;}
.y60{bottom:797.533333pt;}
.y8f{bottom:798.173333pt;}
.yb3{bottom:798.333333pt;}
.y174{bottom:805.053333pt;}
.ydf{bottom:811.333333pt;}
.y5f{bottom:817.253333pt;}
.y8e{bottom:817.893333pt;}
.y173{bottom:818.693333pt;}
.y127{bottom:819.680000pt;}
.yde{bottom:831.813333pt;}
.y172{bottom:832.293333pt;}
.y5e{bottom:837.093333pt;}
.y8d{bottom:837.733333pt;}
.y171{bottom:845.893333pt;}
.ydd{bottom:852.133333pt;}
.y5d{bottom:856.773333pt;}
.y8c{bottom:857.413333pt;}
.y170{bottom:859.653333pt;}
.ydc{bottom:872.613333pt;}
.y16f{bottom:873.253333pt;}
.y5c{bottom:876.613333pt;}
.y8b{bottom:877.253333pt;}
.y16e{bottom:886.853333pt;}
.ydb{bottom:893.093333pt;}
.y5b{bottom:896.293333pt;}
.y8a{bottom:897.093333pt;}
.y16d{bottom:900.453333pt;}
.ya{bottom:900.933333pt;}
.yda{bottom:913.573333pt;}
.y16c{bottom:914.053333pt;}
.y4{bottom:915.813333pt;}
.y5a{bottom:916.133333pt;}
.y89{bottom:916.773333pt;}
.y46{bottom:927.360000pt;}
.y16b{bottom:927.813333pt;}
.yd9{bottom:934.053333pt;}
.y59{bottom:935.813333pt;}
.y88{bottom:936.613333pt;}
.y16a{bottom:941.413333pt;}
.yd8{bottom:954.533333pt;}
.y58{bottom:955.653333pt;}
.y87{bottom:956.293333pt;}
.y169{bottom:970.053333pt;}
.yd7{bottom:974.853333pt;}
.y57{bottom:975.493333pt;}
.y86{bottom:976.133333pt;}
.y56{bottom:995.173333pt;}
.yd6{bottom:995.333333pt;}
.y85{bottom:995.813333pt;}
.y84{bottom:1015.653333pt;}
.y55{bottom:1015.813333pt;}
.y4f{bottom:1032.000000pt;}
.y4d{bottom:1054.080000pt;}
.h2e{height:1.777500pt;}
.h9{height:4.640000pt;}
.h22{height:5.906667pt;}
.h11{height:7.360000pt;}
.hd{height:8.160000pt;}
.h1e{height:9.106667pt;}
.ha{height:10.835938pt;}
.h1c{height:13.586667pt;}
.h4d{height:13.600000pt;}
.h49{height:13.618667pt;}
.h4b{height:13.620000pt;}
.h42{height:13.746667pt;}
.h4c{height:13.760000pt;}
.h4e{height:13.786667pt;}
.h23{height:14.705625pt;}
.h41{height:14.866667pt;}
.h16{height:15.040000pt;}
.h1a{height:15.226667pt;}
.h34{height:15.680000pt;}
.h17{height:16.320000pt;}
.h28{height:17.106667pt;}
.h2c{height:17.278667pt;}
.h2b{height:17.280000pt;}
.h2a{height:17.312000pt;}
.h12{height:18.716250pt;}
.he{height:20.422500pt;}
.h10{height:21.316250pt;}
.h26{height:22.546667pt;}
.h44{height:22.560000pt;}
.h46{height:22.720000pt;}
.h24{height:23.026667pt;}
.h1f{height:24.203125pt;}
.h35{height:24.798667pt;}
.hb{height:24.800000pt;}
.h2{height:25.598667pt;}
.h25{height:25.907188pt;}
.h48{height:27.986667pt;}
.h40{height:30.546667pt;}
.h37{height:30.830625pt;}
.h3b{height:32.453125pt;}
.h43{height:34.368437pt;}
.h4a{height:34.390625pt;}
.h29{height:35.975313pt;}
.h1d{height:36.304688pt;}
.h14{height:36.328125pt;}
.h27{height:36.883125pt;}
.h21{height:37.658750pt;}
.h15{height:39.840000pt;}
.hc{height:39.876250pt;}
.h1b{height:40.177188pt;}
.h19{height:40.618125pt;}
.h39{height:40.946667pt;}
.h13{height:40.960000pt;}
.h18{height:44.505000pt;}
.h3{height:44.975625pt;}
.h31{height:48.000000pt;}
.h6{height:48.406250pt;}
.h33{height:49.852500pt;}
.h32{height:49.920000pt;}
.h8{height:50.712187pt;}
.h30{height:56.160000pt;}
.h3f{height:61.266667pt;}
.h4{height:62.812500pt;}
.h45{height:62.938125pt;}
.h36{height:64.500000pt;}
.hf{height:74.880000pt;}
.h3d{height:81.760000pt;}
.h3a{height:86.738667pt;}
.h7{height:95.060000pt;}
.h2f{height:101.920000pt;}
.h3c{height:107.700000pt;}
.h2d{height:108.832000pt;}
.h5{height:110.746667pt;}
.h3e{height:150.906667pt;}
.h47{height:180.826667pt;}
.h38{height:255.226667pt;}
.h20{height:306.733333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:16.480000pt;}
.w18{width:16.640000pt;}
.w15{width:18.066667pt;}
.w1a{width:42.070667pt;}
.w10{width:46.390667pt;}
.w1e{width:54.866667pt;}
.w1d{width:81.590667pt;}
.w4{width:90.070667pt;}
.w20{width:104.992000pt;}
.w1f{width:108.338667pt;}
.w21{width:118.578667pt;}
.w1c{width:120.000000pt;}
.w1b{width:125.938667pt;}
.w22{width:131.666667pt;}
.w17{width:133.106667pt;}
.w16{width:136.813333pt;}
.w9{width:137.270667pt;}
.w8{width:216.813333pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.w13{width:288.013333pt;}
.w14{width:288.017333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w2{width:368.377333pt;}
.w7{width:383.257333pt;}
.wa{width:462.800000pt;}
.wd{width:509.920000pt;}
.w5{width:511.760000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.350667pt;}
.x15{left:5.746667pt;}
.x8{left:6.866667pt;}
.x31{left:14.546667pt;}
.x13{left:15.830667pt;}
.x2c{left:18.386667pt;}
.x1d{left:22.720000pt;}
.x2f{left:28.000000pt;}
.x17{left:28.946667pt;}
.x20{left:31.040000pt;}
.x1f{left:32.640000pt;}
.xb{left:34.106667pt;}
.x1e{left:35.840000pt;}
.x36{left:37.760000pt;}
.x3b{left:40.786667pt;}
.x38{left:43.040000pt;}
.x33{left:44.186667pt;}
.x34{left:45.106667pt;}
.x35{left:46.240000pt;}
.x39{left:47.506667pt;}
.x29{left:49.920000pt;}
.x3a{left:51.546667pt;}
.x23{left:54.560000pt;}
.x24{left:55.520000pt;}
.x22{left:57.120000pt;}
.x21{left:63.200000pt;}
.x37{left:65.760000pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x12{left:108.466667pt;}
.x18{left:127.506667pt;}
.x27{left:138.120000pt;}
.x14{left:146.120000pt;}
.x2b{left:177.640000pt;}
.x6{left:186.120000pt;}
.x4{left:187.066667pt;}
.xc{left:196.546667pt;}
.x2d{left:232.520000pt;}
.x9{left:234.120000pt;}
.xd{left:243.293333pt;}
.x26{left:258.400000pt;}
.x28{left:264.066667pt;}
.xe{left:269.693333pt;}
.x2a{left:276.825333pt;}
.x25{left:279.680000pt;}
.x1a{left:288.026667pt;}
.xf{left:303.133333pt;}
.x2e{left:340.866667pt;}
.x16{left:395.306667pt;}
.x11{left:400.426667pt;}
.xa{left:407.306667pt;}
.x19{left:411.293333pt;}
.x1b{left:429.386667pt;}
.x30{left:445.866667pt;}
.x3{left:463.306667pt;}
.x7{left:480.106667pt;}
.x10{left:510.213333pt;}
.x32{left:564.453333pt;}
.x1c{left:566.213333pt;}
}




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