
    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_2437061e77337d982dcb2ae5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_f524bc6f9b08ca5d6fcc6e0c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e0ecbf5cb44951a9e2683ba4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1e80b01588ea27dc565619f1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ec8369223c293845c4c61d48.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0ecccbbf4af6a8e486f92b75.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9222d38e8a81f1b9362e759d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fa10798132b8a7c22304bfd2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_839c458af03cada2c310fb8a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;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_15e68f489fd0dabff5e146f8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.208008;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_4c4d590ccac3ee4c9af6485e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6c403aa2f29499e3cda98100.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_10dc04912a96470a6101265a.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m1{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:-13.680000px;}
.v2{vertical-align:-9.360000px;}
.v9{vertical-align:-3.600000px;}
.v4{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.160000px;}
.v7{vertical-align:9.360000px;}
.v5{vertical-align:13.680000px;}
.v6{vertical-align:15.840000px;}
.va{vertical-align:27.360000px;}
.v8{vertical-align:30.240000px;}
.ls13{letter-spacing:-0.810000px;}
.ls7{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.612000px;}
.ls1d{letter-spacing:-0.567600px;}
.ls2{letter-spacing:-0.414600px;}
.ls14{letter-spacing:-0.372000px;}
.ls40{letter-spacing:-0.305400px;}
.ls3e{letter-spacing:-0.259200px;}
.ls4a{letter-spacing:-0.192960px;}
.ls41{letter-spacing:-0.152400px;}
.ls49{letter-spacing:-0.119520px;}
.ls15{letter-spacing:-0.089400px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000086px;}
.ls21{letter-spacing:0.023040px;}
.ls3b{letter-spacing:0.069120px;}
.ls20{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.106560px;}
.ls4{letter-spacing:0.109200px;}
.ls43{letter-spacing:0.109440px;}
.ls26{letter-spacing:0.152400px;}
.ls2a{letter-spacing:0.178560px;}
.ls25{letter-spacing:0.208200px;}
.ls12{letter-spacing:0.210000px;}
.ls47{letter-spacing:0.239040px;}
.ls6{letter-spacing:0.262200px;}
.ls48{letter-spacing:0.269280px;}
.lsb{letter-spacing:0.305280px;}
.ls3{letter-spacing:0.305400px;}
.ls3f{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.501120px;}
.ls36{letter-spacing:0.650880px;}
.ls8{letter-spacing:0.666000px;}
.ls18{letter-spacing:1.097280px;}
.ls19{letter-spacing:1.195200px;}
.ls2c{letter-spacing:1.221120px;}
.ls17{letter-spacing:1.315200px;}
.lsd{letter-spacing:1.411200px;}
.ls39{letter-spacing:1.480320px;}
.ls3a{letter-spacing:1.586880px;}
.ls3d{letter-spacing:1.929600px;}
.lsa{letter-spacing:2.018160px;}
.ls32{letter-spacing:2.041920px;}
.ls28{letter-spacing:2.520000px;}
.ls30{letter-spacing:2.537280px;}
.ls31{letter-spacing:2.661120px;}
.ls34{letter-spacing:3.029040px;}
.ls24{letter-spacing:3.352320px;}
.ls35{letter-spacing:3.855600px;}
.ls1f{letter-spacing:3.947760px;}
.ls2d{letter-spacing:4.015440px;}
.ls1a{letter-spacing:4.667760px;}
.ls33{letter-spacing:5.760000px;}
.ls44{letter-spacing:7.200000px;}
.ls2f{letter-spacing:7.615440px;}
.ls45{letter-spacing:8.640000px;}
.ls11{letter-spacing:10.900800px;}
.ls46{letter-spacing:12.960000px;}
.lsc{letter-spacing:14.086080px;}
.ls23{letter-spacing:14.256000px;}
.ls22{letter-spacing:14.270400px;}
.ls16{letter-spacing:14.806080px;}
.ls27{letter-spacing:17.657280px;}
.ls29{letter-spacing:17.870400px;}
.ls37{letter-spacing:18.198720px;}
.ls10{letter-spacing:18.347760px;}
.lsf{letter-spacing:18.590400px;}
.ls9{letter-spacing:20.738160px;}
.ls3c{letter-spacing:21.090240px;}
.lse{letter-spacing:21.974400px;}
.ls1e{letter-spacing:22.667760px;}
.ls1b{letter-spacing:23.387760px;}
.ls38{letter-spacing:93.663360px;}
.ls2b{letter-spacing:97.755840px;}
.ls42{letter-spacing:847.596000px;}
.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:-24.148200px;}
.ws6{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.822200px;}
.ws21{word-spacing:-16.712400px;}
.ws4{word-spacing:-16.669200px;}
.wsd{word-spacing:-16.560000px;}
.ws30{word-spacing:-16.493760px;}
.ws2d{word-spacing:-16.407600px;}
.ws2c{word-spacing:-16.254600px;}
.ws3{word-spacing:-16.145400px;}
.ws2f{word-spacing:-15.948000px;}
.ws2e{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.606000px;}
.ws8{word-spacing:-14.572800px;}
.ws2a{word-spacing:-14.313600px;}
.ws31{word-spacing:-13.410720px;}
.ws32{word-spacing:-13.217760px;}
.ws1{word-spacing:-11.676000px;}
.wsb{word-spacing:-10.612800px;}
.ws16{word-spacing:-10.440000px;}
.ws17{word-spacing:-10.350600px;}
.ws15{word-spacing:-10.240800px;}
.wsc{word-spacing:-9.630000px;}
.ws10{word-spacing:-0.694080px;}
.ws13{word-spacing:-0.486720px;}
.ws1f{word-spacing:-0.224640px;}
.ws1a{word-spacing:-0.149760px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.025920px;}
.ws33{word-spacing:0.059760px;}
.ws36{word-spacing:0.119520px;}
.ws37{word-spacing:0.482400px;}
.ws35{word-spacing:2.211120px;}
.ws25{word-spacing:2.881920px;}
.ws1b{word-spacing:2.905920px;}
.ws12{word-spacing:3.085920px;}
.ws23{word-spacing:3.193920px;}
.ws22{word-spacing:3.199680px;}
.ws24{word-spacing:3.398400px;}
.ws9{word-spacing:3.493440px;}
.ws1d{word-spacing:3.496320px;}
.ws1c{word-spacing:3.525120px;}
.ws29{word-spacing:3.601920px;}
.ws11{word-spacing:3.625920px;}
.ws28{word-spacing:3.919680px;}
.ws19{word-spacing:4.213440px;}
.ws20{word-spacing:5.342400px;}
.wsf{word-spacing:6.096240px;}
.wse{word-spacing:9.696240px;}
.wsa{word-spacing:9.705600px;}
.ws18{word-spacing:9.876240px;}
.ws27{word-spacing:12.986400px;}
.ws34{word-spacing:15.179040px;}
.ws2{word-spacing:39.000011px;}
.ws26{word-spacing:396.516240px;}
.ws2b{word-spacing:536.832000px;}
._23{margin-left:-11.254560px;}
._27{margin-left:-10.180800px;}
._25{margin-left:-9.095520px;}
._24{margin-left:-7.747920px;}
._2a{margin-left:-6.608880px;}
._28{margin-left:-4.428720px;}
._1f{margin-left:-3.385920px;}
._7{margin-left:-2.328000px;}
._6{margin-left:-1.212000px;}
._2{width:1.152000px;}
._12{width:2.422560px;}
._1{width:3.618000px;}
._5{width:5.190000px;}
._0{width:7.116000px;}
._4{width:8.262000px;}
._3{width:9.342000px;}
._f{width:10.606080px;}
._13{width:11.656080px;}
._18{width:13.090560px;}
._2b{width:14.092800px;}
._11{width:15.178560px;}
._1a{width:16.656480px;}
._16{width:17.686080px;}
._10{width:19.077120px;}
._c{width:20.904960px;}
._b{width:22.464000px;}
._14{width:24.312000px;}
._17{width:25.469040px;}
._1d{width:27.096960px;}
._d{width:28.284480px;}
._e{width:29.526720px;}
._15{width:30.970080px;}
._19{width:32.508000px;}
._9{width:35.999989px;}
._20{width:44.571360px;}
._8{width:54.000001px;}
._1e{width:55.919040px;}
._a{width:57.756000px;}
._26{width:64.944720px;}
._22{width:105.590880px;}
._21{width:126.355680px;}
._1b{width:148.656000px;}
._29{width:188.098560px;}
._1c{width:195.840000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,139);}
.fc4{color:rgb(51,51,51);}
.fc1{color:rgb(88,88,88);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:45.360000px;}
.fs5{font-size:48.000000px;}
.fsd{font-size:48.240000px;}
.fs10{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fse{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y157{bottom:3.960000px;}
.y155{bottom:4.140000px;}
.y15d{bottom:4.170000px;}
.y15c{bottom:23.070000px;}
.y1c7{bottom:42.660000px;}
.y1c8{bottom:52.380000px;}
.y44{bottom:57.060000px;}
.y5{bottom:66.525004px;}
.y1b5{bottom:66.960000px;}
.y22{bottom:69.586499px;}
.y43{bottom:75.996000px;}
.y21{bottom:86.686500px;}
.y4{bottom:97.125005px;}
.yb0{bottom:109.836000px;}
.y138{bottom:110.376000px;}
.y5f{bottom:114.336000px;}
.y10a{bottom:116.676000px;}
.y92{bottom:117.036000px;}
.y7a{bottom:124.956000px;}
.yaf{bottom:127.116000px;}
.y109{bottom:127.476000px;}
.y1b4{bottom:133.236000px;}
.yee{bottom:133.956000px;}
.y20{bottom:139.264499px;}
.yae{bottom:144.396000px;}
.yed{bottom:144.756000px;}
.y137{bottom:146.916000px;}
.y11b{bottom:148.176000px;}
.y136{bottom:150.330000px;}
.y16c{bottom:151.230000px;}
.y5e{bottom:152.130000px;}
.y91{bottom:155.010000px;}
.yad{bottom:161.670000px;}
.y79{bottom:162.930000px;}
.yac{bottom:168.510000px;}
.yec{bottom:172.290000px;}
.y187{bottom:175.530000px;}
.y107{bottom:176.970000px;}
.yc4{bottom:178.410000px;}
.yab{bottom:178.950000px;}
.y166{bottom:180.570000px;}
.y108{bottom:184.530000px;}
.y11a{bottom:186.870000px;}
.y135{bottom:189.030000px;}
.y90{bottom:193.350000px;}
.y1b3{bottom:194.610000px;}
.yaa{bottom:196.230000px;}
.y17{bottom:196.933500px;}
.yc3{bottom:198.030000px;}
.yd7{bottom:199.470000px;}
.y78{bottom:200.730000px;}
.ya9{bottom:203.070000px;}
.y5d{bottom:205.050000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yeb{bottom:210.630000px;}
.ya8{bottom:213.330000px;}
.y186{bottom:213.690000px;}
.y106{bottom:214.770000px;}
.y14e{bottom:217.470000px;}
.y1b2{bottom:218.010000px;}
.y165{bottom:218.550000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y119{bottom:225.210000px;}
.y134{bottom:227.010000px;}
.ya7{bottom:230.610000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.yc2{bottom:236.010000px;}
.y1b1{bottom:237.090000px;}
.yd6{bottom:237.450000px;}
.y77{bottom:238.710000px;}
.y5c{bottom:243.030000px;}
.ya6{bottom:247.890000px;}
.yea{bottom:248.610000px;}
.y185{bottom:251.670000px;}
.y105{bottom:252.750000px;}
.y14d{bottom:255.630000px;}
.y8f{bottom:256.350000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y1b0{bottom:260.490000px;}
.y118{bottom:263.370000px;}
.y133{bottom:264.990000px;}
.ya5{bottom:265.170000px;}
.ya4{bottom:272.010000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.yc1{bottom:273.810000px;}
.yd5{bottom:275.430000px;}
.y76{bottom:276.690000px;}
.y1af{bottom:279.390000px;}
.y5b{bottom:281.010000px;}
.ya3{bottom:282.450000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y184{bottom:289.470000px;}
.y104{bottom:290.730000px;}
.y14c{bottom:293.970000px;}
.y164{bottom:294.330000px;}
.y8e{bottom:294.510000px;}
.ya2{bottom:299.550000px;}
.ye9{bottom:301.710000px;}
.y117{bottom:302.070000px;}
.y16b{bottom:302.970000px;}
.ya1{bottom:306.390000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.yc0{bottom:311.790000px;}
.y75{bottom:314.670000px;}
.ya0{bottom:317.190000px;}
.y132{bottom:317.730000px;}
.y5a{bottom:318.990000px;}
.y1ae{bottom:321.870000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y183{bottom:327.495000px;}
.yd4{bottom:328.215000px;}
.y103{bottom:329.115000px;}
.y163{bottom:332.355000px;}
.y8d{bottom:332.535000px;}
.y14b{bottom:340.095000px;}
.ye8{bottom:340.275000px;}
.y116{bottom:340.455000px;}
.y16a{bottom:340.995000px;}
.ye{bottom:348.133500px;}
.ybf{bottom:349.815000px;}
.y74{bottom:352.695000px;}
.y131{bottom:355.935000px;}
.y59{bottom:357.015000px;}
.y177{bottom:359.715000px;}
.y1ad{bottom:364.395000px;}
.y182{bottom:365.475000px;}
.yd3{bottom:366.375000px;}
.y16e{bottom:367.455000px;}
.y8c{bottom:370.335000px;}
.y14a{bottom:371.235000px;}
.y115{bottom:378.435000px;}
.ye7{bottom:378.615000px;}
.y9e{bottom:379.875000px;}
.y42{bottom:380.150998px;}
.y102{bottom:382.575000px;}
.y1ac{bottom:383.295000px;}
.yd{bottom:386.785499px;}
.y9f{bottom:387.435000px;}
.ybe{bottom:388.155000px;}
.y169{bottom:389.775000px;}
.y130{bottom:393.915000px;}
.y41{bottom:394.551001px;}
.y58{bottom:394.995000px;}
.y181{bottom:403.455000px;}
.yd2{bottom:404.175000px;}
.y73{bottom:405.435000px;}
.y16d{bottom:405.615000px;}
.y1ab{bottom:406.875000px;}
.yc{bottom:408.044999px;}
.y162{bottom:408.315000px;}
.y40{bottom:408.950999px;}
.y149{bottom:409.215000px;}
.y174{bottom:412.635000px;}
.y114{bottom:416.775000px;}
.ye6{bottom:417.315000px;}
.y9d{bottom:417.855000px;}
.y101{bottom:421.455000px;}
.y8b{bottom:423.075000px;}
.y1aa{bottom:425.775000px;}
.ybd{bottom:426.495000px;}
.y12f{bottom:431.715000px;}
.y178{bottom:431.895000px;}
.y3f{bottom:432.278999px;}
.y57{bottom:432.795000px;}
.y180{bottom:441.435000px;}
.yd1{bottom:442.155000px;}
.y72{bottom:443.595000px;}
.y161{bottom:446.295000px;}
.y3e{bottom:446.679000px;}
.y148{bottom:447.375000px;}
.y1a9{bottom:449.355000px;}
.y176{bottom:450.795000px;}
.y113{bottom:455.115000px;}
.ye5{bottom:455.475000px;}
.y9c{bottom:455.835000px;}
.y100{bottom:459.795000px;}
.y3d{bottom:461.079000px;}
.y8a{bottom:461.235000px;}
.y173{bottom:461.595000px;}
.y1a8{bottom:468.255000px;}
.y12e{bottom:469.695000px;}
.y56{bottom:470.775000px;}
.y17f{bottom:479.415000px;}
.ybc{bottom:479.595000px;}
.yd0{bottom:480.135000px;}
.y71{bottom:481.395000px;}
.y160{bottom:484.095000px;}
.y3c{bottom:485.651997px;}
.y1a7{bottom:487.155000px;}
.y112{bottom:493.095000px;}
.ye4{bottom:493.455000px;}
.y9b{bottom:493.815000px;}
.yff{bottom:498.135000px;}
.y89{bottom:499.215000px;}
.y175{bottom:499.575000px;}
.y3b{bottom:503.651997px;}
.y12d{bottom:507.675000px;}
.y55{bottom:508.755000px;}
.y1a6{bottom:510.735000px;}
.y147{bottom:510.915000px;}
.y17e{bottom:517.215000px;}
.ycf{bottom:518.115000px;}
.y70{bottom:519.375000px;}
.yb{bottom:520.864502px;}
.y3a{bottom:521.651997px;}
.y15f{bottom:522.075000px;}
.y1c6{bottom:525.960000px;}
.y1a5{bottom:529.635000px;}
.y111{bottom:530.895000px;}
.ye3{bottom:531.435000px;}
.y9a{bottom:532.155000px;}
.ybb{bottom:532.875000px;}
.yfe{bottom:536.835000px;}
.y88{bottom:537.195000px;}
.ya{bottom:538.864499px;}
.y39{bottom:539.651997px;}
.y54{bottom:546.735000px;}
.y1c5{bottom:547.196040px;}
.y12c{bottom:547.635000px;}
.y146{bottom:549.435000px;}
.y1a4{bottom:553.215000px;}
.y17d{bottom:555.195000px;}
.y9{bottom:556.864499px;}
.y6f{bottom:557.355000px;}
.y38{bottom:557.651997px;}
.y110{bottom:569.235000px;}
.ye2{bottom:569.415000px;}
.yce{bottom:571.215000px;}
.y1a3{bottom:572.115000px;}
.y15e{bottom:574.815000px;}
.yfd{bottom:575.535000px;}
.y37{bottom:575.651997px;}
.y1c4{bottom:583.920000px;}
.y53{bottom:584.715000px;}
.yba{bottom:586.155000px;}
.y12b{bottom:586.695000px;}
.y145{bottom:587.235000px;}
.y87{bottom:589.935000px;}
.y15b{bottom:590.655000px;}
.y17c{bottom:593.535000px;}
.y99{bottom:595.185000px;}
.y6e{bottom:595.365000px;}
.y1a2{bottom:595.545000px;}
.y36{bottom:602.652000px;}
.ye1{bottom:607.425000px;}
.yfc{bottom:614.265000px;}
.y1a1{bottom:614.625000px;}
.y35{bottom:620.652000px;}
.y52{bottom:622.545000px;}
.ycd{bottom:624.885000px;}
.y12a{bottom:625.065000px;}
.y144{bottom:625.605000px;}
.y86{bottom:628.125000px;}
.y15a{bottom:628.665000px;}
.y1c3{bottom:630.010440px;}
.y10f{bottom:632.445000px;}
.y6d{bottom:633.345000px;}
.y1a0{bottom:638.025000px;}
.yb9{bottom:639.645000px;}
.ye0{bottom:645.405000px;}
.y8{bottom:645.510000px;}
.y34{bottom:647.652011px;}
.y159{bottom:647.745000px;}
.y17b{bottom:656.565000px;}
.y19f{bottom:657.105000px;}
.y51{bottom:660.525000px;}
.y143{bottom:663.945000px;}
.y33{bottom:665.652011px;}
.y85{bottom:666.105000px;}
.y158{bottom:666.645000px;}
.y7{bottom:666.771000px;}
.yfb{bottom:667.365000px;}
.y1c2{bottom:668.525760px;}
.y10e{bottom:670.425000px;}
.y6c{bottom:671.145000px;}
.y19e{bottom:676.005000px;}
.yb8{bottom:677.625000px;}
.y129{bottom:677.805000px;}
.ycc{bottom:678.165000px;}
.y98{bottom:678.705000px;}
.ydf{bottom:683.205000px;}
.y32{bottom:683.652011px;}
.y156{bottom:687.885000px;}
.y50{bottom:698.505000px;}
.y19d{bottom:699.585000px;}
.y31{bottom:701.652011px;}
.y142{bottom:702.285000px;}
.y84{bottom:704.085000px;}
.yfa{bottom:705.525000px;}
.y1c1{bottom:706.503240px;}
.y154{bottom:706.785000px;}
.y10d{bottom:708.405000px;}
.y6b{bottom:709.125000px;}
.y17a{bottom:709.485000px;}
.yb7{bottom:715.605000px;}
.y128{bottom:715.965000px;}
.ycb{bottom:716.325000px;}
.y19c{bottom:718.485000px;}
.y30{bottom:719.652011px;}
.yde{bottom:721.185000px;}
.y6{bottom:726.298500px;}
.y153{bottom:731.805000px;}
.y4f{bottom:736.485000px;}
.y2f{bottom:737.652011px;}
.y141{bottom:740.985000px;}
.y83{bottom:741.885000px;}
.yf9{bottom:743.505000px;}
.y1c0{bottom:744.839280px;}
.y10c{bottom:746.745000px;}
.y6a{bottom:747.105000px;}
.y3{bottom:752.599495px;}
.yb6{bottom:753.585000px;}
.y127{bottom:753.945000px;}
.yca{bottom:754.305000px;}
.y2e{bottom:755.652011px;}
.y179{bottom:758.625000px;}
.ydd{bottom:759.165000px;}
.y19b{bottom:760.965000px;}
.y2d{bottom:773.652011px;}
.y140{bottom:779.325000px;}
.y82{bottom:779.865000px;}
.yf8{bottom:781.665000px;}
.y1bf{bottom:782.996040px;}
.y19a{bottom:784.365000px;}
.y152{bottom:784.905000px;}
.y69{bottom:785.085000px;}
.y4e{bottom:789.225000px;}
.yb5{bottom:791.565000px;}
.y2c{bottom:791.652011px;}
.y126{bottom:791.925000px;}
.yc9{bottom:792.285000px;}
.ydc{bottom:797.505000px;}
.y199{bottom:803.445000px;}
.y170{bottom:807.765000px;}
.y2b{bottom:809.652011px;}
.y81{bottom:817.845000px;}
.yf7{bottom:820.005000px;}
.y1be{bottom:821.332080px;}
.y68{bottom:823.065000px;}
.y198{bottom:826.845000px;}
.y4d{bottom:827.385000px;}
.y2a{bottom:827.652011px;}
.yb4{bottom:829.905000px;}
.yc8{bottom:830.265000px;}
.y97{bottom:830.625000px;}
.y13f{bottom:832.065000px;}
.ydb{bottom:836.205000px;}
.y1bd{bottom:838.438380px;}
.y189{bottom:838.545000px;}
.y29{bottom:845.652011px;}
.y197{bottom:845.745000px;}
.y1bc{bottom:855.723960px;}
.y80{bottom:855.825000px;}
.yf6{bottom:857.985000px;}
.y16f{bottom:860.865000px;}
.y67{bottom:861.045000px;}
.y28{bottom:863.614498px;}
.y4c{bottom:865.410000px;}
.yc7{bottom:868.290000px;}
.y196{bottom:869.370000px;}
.y125{bottom:869.910000px;}
.y13e{bottom:870.630000px;}
.yda{bottom:874.950000px;}
.y2{bottom:879.369000px;}
.yb3{bottom:883.410000px;}
.y195{bottom:892.770000px;}
.y7f{bottom:893.850000px;}
.y1bb{bottom:894.060000px;}
.y188{bottom:898.710000px;}
.y66{bottom:898.890000px;}
.y4b{bottom:903.390000px;}
.y151{bottom:906.450000px;}
.y124{bottom:908.970000px;}
.y13d{bottom:909.330000px;}
.y27{bottom:910.728004px;}
.yf5{bottom:910.770000px;}
.y194{bottom:911.850000px;}
.yd9{bottom:913.650000px;}
.y96{bottom:913.830000px;}
.yc6{bottom:921.390000px;}
.y193{bottom:930.750000px;}
.y1ba{bottom:933.300000px;}
.yb2{bottom:936.690000px;}
.y65{bottom:936.870000px;}
.y4a{bottom:941.190000px;}
.y123{bottom:945.870000px;}
.y7e{bottom:947.670000px;}
.y13c{bottom:948.030000px;}
.yf4{bottom:949.290000px;}
.y10b{bottom:951.810000px;}
.y95{bottom:951.990000px;}
.y192{bottom:954.150000px;}
.y26{bottom:958.902000px;}
.y1{bottom:966.726000px;}
.y191{bottom:973.230000px;}
.yc5{bottom:974.670000px;}
.y64{bottom:974.850000px;}
.y1b9{bottom:975.060000px;}
.y49{bottom:979.170000px;}
.y122{bottom:986.550000px;}
.y13b{bottom:986.730000px;}
.y7d{bottom:987.450000px;}
.yf3{bottom:987.630000px;}
.y25{bottom:989.502002px;}
.y94{bottom:989.790000px;}
.y121{bottom:989.970000px;}
.y190{bottom:992.130000px;}
.y63{bottom:1012.830000px;}
.y18f{bottom:1015.710000px;}
.y1b8{bottom:1016.820000px;}
.y48{bottom:1017.150000px;}
.yf2{bottom:1025.970000px;}
.y7c{bottom:1027.050000px;}
.yb1{bottom:1027.590000px;}
.y93{bottom:1027.770000px;}
.y168{bottom:1031.370000px;}
.y18e{bottom:1034.610000px;}
.y13a{bottom:1036.590000px;}
.y139{bottom:1043.430000px;}
.y120{bottom:1043.790000px;}
.y11e{bottom:1044.510000px;}
.y11d{bottom:1047.930000px;}
.y167{bottom:1050.450000px;}
.y150{bottom:1050.810000px;}
.y18d{bottom:1053.510000px;}
.y11f{bottom:1054.590000px;}
.y47{bottom:1055.130000px;}
.y1b7{bottom:1058.400000px;}
.yf1{bottom:1064.670000px;}
.y62{bottom:1065.570000px;}
.y7b{bottom:1065.750000px;}
.y24{bottom:1068.090000px;}
.y18c{bottom:1077.090000px;}
.y23{bottom:1082.490000px;}
.y46{bottom:1093.110000px;}
.y18b{bottom:1095.990000px;}
.y1b6{bottom:1100.160000px;}
.y11c{bottom:1102.830000px;}
.yf0{bottom:1103.010000px;}
.y172{bottom:1103.370000px;}
.y14f{bottom:1103.550000px;}
.y61{bottom:1103.730000px;}
.y171{bottom:1122.270000px;}
.y45{bottom:1131.480000px;}
.y18a{bottom:1134.360000px;}
.yef{bottom:1141.380000px;}
.y60{bottom:1141.740000px;}
.yd8{bottom:1149.300000px;}
.h26{height:18.900000px;}
.h25{height:19.080000px;}
.h7{height:32.130000px;}
.h27{height:38.010000px;}
.h17{height:38.158594px;}
.h16{height:40.985156px;}
.h1c{height:42.916641px;}
.h8{height:43.804688px;}
.h23{height:44.518359px;}
.h6{height:45.900000px;}
.he{height:47.085938px;}
.h10{height:47.109375px;}
.h3{height:48.195000px;}
.hf{height:48.375000px;}
.h19{height:48.480196px;}
.h9{height:50.062500px;}
.h2f{height:50.312812px;}
.h2c{height:52.998047px;}
.h2{height:55.080000px;}
.h18{height:58.651172px;}
.hd{height:58.886719px;}
.h1f{height:58.930312px;}
.h29{height:59.383125px;}
.hc{height:60.468750px;}
.h1a{height:61.090312px;}
.h2d{height:62.327813px;}
.h30{height:63.540000px;}
.h2a{height:64.978594px;}
.h12{height:65.010937px;}
.h24{height:66.757500px;}
.h14{height:67.837500px;}
.h28{height:70.664062px;}
.h20{height:71.225156px;}
.h1b{height:72.610313px;}
.h5{height:78.030000px;}
.h21{height:78.666937px;}
.h1e{height:78.690937px;}
.h1d{height:81.570938px;}
.hb{height:82.400391px;}
.h22{height:92.370938px;}
.h2e{height:93.936445px;}
.h13{height:96.508125px;}
.ha{height:102.796875px;}
.h4{height:119.055004px;}
.h2b{height:1262.700000px;}
.h0{height:1262.833500px;}
.h15{height:1262.877990px;}
.h11{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:144.349500px;}
.w9{width:144.396000px;}
.w8{width:144.561000px;}
.w6{width:216.570000px;}
.w5{width:216.739500px;}
.wc{width:579.420000px;}
.w2{width:637.794021px;}
.wb{width:892.500000px;}
.wa{width:892.800000px;}
.w0{width:892.912500px;}
.w4{width:892.978125px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:8.089500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x20{left:119.566500px;}
.x7{left:127.656000px;}
.x11{left:132.696000px;}
.x1a{left:134.316000px;}
.x5{left:153.070500px;}
.x26{left:160.050000px;}
.x29{left:168.840000px;}
.x28{left:170.100000px;}
.x18{left:190.290000px;}
.x4{left:203.484001px;}
.x1b{left:234.030000px;}
.x19{left:238.170000px;}
.x23{left:263.925000px;}
.x17{left:275.430000px;}
.x1e{left:296.173125px;}
.x1f{left:301.395000px;}
.x22{left:336.315000px;}
.x10{left:343.695000px;}
.x8{left:376.633125px;}
.x9{left:383.655000px;}
.xc{left:385.453125px;}
.xd{left:391.215000px;}
.x24{left:408.495000px;}
.x16{left:438.195000px;}
.x6{left:442.335000px;}
.x3{left:454.959000px;}
.x12{left:517.243125px;}
.x13{left:524.265000px;}
.x1c{left:530.385000px;}
.xa{left:534.343125px;}
.xb{left:541.365000px;}
.x1d{left:542.985000px;}
.x14{left:562.423125px;}
.x15{left:567.645000px;}
.x27{left:748.260000px;}
.xe{left:760.288125px;}
.xf{left:765.510000px;}
.x25{left:767.670000px;}
@media print{
.v1{vertical-align:-12.160000pt;}
.v2{vertical-align:-8.320000pt;}
.v9{vertical-align:-3.200000pt;}
.v4{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.920000pt;}
.v7{vertical-align:8.320000pt;}
.v5{vertical-align:12.160000pt;}
.v6{vertical-align:14.080000pt;}
.va{vertical-align:24.320000pt;}
.v8{vertical-align:26.880000pt;}
.ls13{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.544000pt;}
.ls1d{letter-spacing:-0.504533pt;}
.ls2{letter-spacing:-0.368533pt;}
.ls14{letter-spacing:-0.330667pt;}
.ls40{letter-spacing:-0.271467pt;}
.ls3e{letter-spacing:-0.230400pt;}
.ls4a{letter-spacing:-0.171520pt;}
.ls41{letter-spacing:-0.135467pt;}
.ls49{letter-spacing:-0.106240pt;}
.ls15{letter-spacing:-0.079467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000077pt;}
.ls21{letter-spacing:0.020480pt;}
.ls3b{letter-spacing:0.061440pt;}
.ls20{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.094720pt;}
.ls4{letter-spacing:0.097067pt;}
.ls43{letter-spacing:0.097280pt;}
.ls26{letter-spacing:0.135467pt;}
.ls2a{letter-spacing:0.158720pt;}
.ls25{letter-spacing:0.185067pt;}
.ls12{letter-spacing:0.186667pt;}
.ls47{letter-spacing:0.212480pt;}
.ls6{letter-spacing:0.233067pt;}
.ls48{letter-spacing:0.239360pt;}
.lsb{letter-spacing:0.271360pt;}
.ls3{letter-spacing:0.271467pt;}
.ls3f{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.445440pt;}
.ls36{letter-spacing:0.578560pt;}
.ls8{letter-spacing:0.592000pt;}
.ls18{letter-spacing:0.975360pt;}
.ls19{letter-spacing:1.062400pt;}
.ls2c{letter-spacing:1.085440pt;}
.ls17{letter-spacing:1.169067pt;}
.lsd{letter-spacing:1.254400pt;}
.ls39{letter-spacing:1.315840pt;}
.ls3a{letter-spacing:1.410560pt;}
.ls3d{letter-spacing:1.715200pt;}
.lsa{letter-spacing:1.793920pt;}
.ls32{letter-spacing:1.815040pt;}
.ls28{letter-spacing:2.240000pt;}
.ls30{letter-spacing:2.255360pt;}
.ls31{letter-spacing:2.365440pt;}
.ls34{letter-spacing:2.692480pt;}
.ls24{letter-spacing:2.979840pt;}
.ls35{letter-spacing:3.427200pt;}
.ls1f{letter-spacing:3.509120pt;}
.ls2d{letter-spacing:3.569280pt;}
.ls1a{letter-spacing:4.149120pt;}
.ls33{letter-spacing:5.120000pt;}
.ls44{letter-spacing:6.400000pt;}
.ls2f{letter-spacing:6.769280pt;}
.ls45{letter-spacing:7.680000pt;}
.ls11{letter-spacing:9.689600pt;}
.ls46{letter-spacing:11.520000pt;}
.lsc{letter-spacing:12.520960pt;}
.ls23{letter-spacing:12.672000pt;}
.ls22{letter-spacing:12.684800pt;}
.ls16{letter-spacing:13.160960pt;}
.ls27{letter-spacing:15.695360pt;}
.ls29{letter-spacing:15.884800pt;}
.ls37{letter-spacing:16.176640pt;}
.ls10{letter-spacing:16.309120pt;}
.lsf{letter-spacing:16.524800pt;}
.ls9{letter-spacing:18.433920pt;}
.ls3c{letter-spacing:18.746880pt;}
.lse{letter-spacing:19.532800pt;}
.ls1e{letter-spacing:20.149120pt;}
.ls1b{letter-spacing:20.789120pt;}
.ls38{letter-spacing:83.256320pt;}
.ls2b{letter-spacing:86.894080pt;}
.ls42{letter-spacing:753.418667pt;}
.ws1e{word-spacing:-21.465067pt;}
.ws6{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.953067pt;}
.ws21{word-spacing:-14.855467pt;}
.ws4{word-spacing:-14.817067pt;}
.wsd{word-spacing:-14.720000pt;}
.ws30{word-spacing:-14.661120pt;}
.ws2d{word-spacing:-14.584533pt;}
.ws2c{word-spacing:-14.448533pt;}
.ws3{word-spacing:-14.351467pt;}
.ws2f{word-spacing:-14.176000pt;}
.ws2e{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.872000pt;}
.ws8{word-spacing:-12.953600pt;}
.ws2a{word-spacing:-12.723200pt;}
.ws31{word-spacing:-11.920640pt;}
.ws32{word-spacing:-11.749120pt;}
.ws1{word-spacing:-10.378667pt;}
.wsb{word-spacing:-9.433600pt;}
.ws16{word-spacing:-9.280000pt;}
.ws17{word-spacing:-9.200533pt;}
.ws15{word-spacing:-9.102933pt;}
.wsc{word-spacing:-8.560000pt;}
.ws10{word-spacing:-0.616960pt;}
.ws13{word-spacing:-0.432640pt;}
.ws1f{word-spacing:-0.199680pt;}
.ws1a{word-spacing:-0.133120pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.023040pt;}
.ws33{word-spacing:0.053120pt;}
.ws36{word-spacing:0.106240pt;}
.ws37{word-spacing:0.428800pt;}
.ws35{word-spacing:1.965440pt;}
.ws25{word-spacing:2.561707pt;}
.ws1b{word-spacing:2.583040pt;}
.ws12{word-spacing:2.743040pt;}
.ws23{word-spacing:2.839040pt;}
.ws22{word-spacing:2.844160pt;}
.ws24{word-spacing:3.020800pt;}
.ws9{word-spacing:3.105280pt;}
.ws1d{word-spacing:3.107840pt;}
.ws1c{word-spacing:3.133440pt;}
.ws29{word-spacing:3.201707pt;}
.ws11{word-spacing:3.223040pt;}
.ws28{word-spacing:3.484160pt;}
.ws19{word-spacing:3.745280pt;}
.ws20{word-spacing:4.748800pt;}
.wsf{word-spacing:5.418880pt;}
.wse{word-spacing:8.618880pt;}
.wsa{word-spacing:8.627200pt;}
.ws18{word-spacing:8.778880pt;}
.ws27{word-spacing:11.543467pt;}
.ws34{word-spacing:13.492480pt;}
.ws2{word-spacing:34.666676pt;}
.ws26{word-spacing:352.458880pt;}
.ws2b{word-spacing:477.184000pt;}
._23{margin-left:-10.004053pt;}
._27{margin-left:-9.049600pt;}
._25{margin-left:-8.084907pt;}
._24{margin-left:-6.887040pt;}
._2a{margin-left:-5.874560pt;}
._28{margin-left:-3.936640pt;}
._1f{margin-left:-3.009707pt;}
._7{margin-left:-2.069333pt;}
._6{margin-left:-1.077333pt;}
._2{width:1.024000pt;}
._12{width:2.153387pt;}
._1{width:3.216000pt;}
._5{width:4.613333pt;}
._0{width:6.325333pt;}
._4{width:7.344000pt;}
._3{width:8.304000pt;}
._f{width:9.427627pt;}
._13{width:10.360960pt;}
._18{width:11.636053pt;}
._2b{width:12.526933pt;}
._11{width:13.492053pt;}
._1a{width:14.805760pt;}
._16{width:15.720960pt;}
._10{width:16.957440pt;}
._c{width:18.582187pt;}
._b{width:19.968000pt;}
._14{width:21.610667pt;}
._17{width:22.639147pt;}
._1d{width:24.086187pt;}
._d{width:25.141760pt;}
._e{width:26.245973pt;}
._15{width:27.528960pt;}
._19{width:28.896000pt;}
._9{width:31.999990pt;}
._20{width:39.618987pt;}
._8{width:48.000001pt;}
._1e{width:49.705813pt;}
._a{width:51.338667pt;}
._26{width:57.728640pt;}
._22{width:93.858560pt;}
._21{width:112.316160pt;}
._1b{width:132.138667pt;}
._29{width:167.198720pt;}
._1c{width:174.080000pt;}
.fsb{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:40.320000pt;}
.fs5{font-size:42.666667pt;}
.fsd{font-size:42.880000pt;}
.fs10{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fse{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y157{bottom:3.520000pt;}
.y155{bottom:3.680000pt;}
.y15d{bottom:3.706667pt;}
.y15c{bottom:20.506667pt;}
.y1c7{bottom:37.920000pt;}
.y1c8{bottom:46.560000pt;}
.y44{bottom:50.720000pt;}
.y5{bottom:59.133337pt;}
.y1b5{bottom:59.520000pt;}
.y22{bottom:61.854666pt;}
.y43{bottom:67.552000pt;}
.y21{bottom:77.054667pt;}
.y4{bottom:86.333337pt;}
.yb0{bottom:97.632000pt;}
.y138{bottom:98.112000pt;}
.y5f{bottom:101.632000pt;}
.y10a{bottom:103.712000pt;}
.y92{bottom:104.032000pt;}
.y7a{bottom:111.072000pt;}
.yaf{bottom:112.992000pt;}
.y109{bottom:113.312000pt;}
.y1b4{bottom:118.432000pt;}
.yee{bottom:119.072000pt;}
.y20{bottom:123.790666pt;}
.yae{bottom:128.352000pt;}
.yed{bottom:128.672000pt;}
.y137{bottom:130.592000pt;}
.y11b{bottom:131.712000pt;}
.y136{bottom:133.626667pt;}
.y16c{bottom:134.426667pt;}
.y5e{bottom:135.226667pt;}
.y91{bottom:137.786667pt;}
.yad{bottom:143.706667pt;}
.y79{bottom:144.826667pt;}
.yac{bottom:149.786667pt;}
.yec{bottom:153.146667pt;}
.y187{bottom:156.026667pt;}
.y107{bottom:157.306667pt;}
.yc4{bottom:158.586667pt;}
.yab{bottom:159.066667pt;}
.y166{bottom:160.506667pt;}
.y108{bottom:164.026667pt;}
.y11a{bottom:166.106667pt;}
.y135{bottom:168.026667pt;}
.y90{bottom:171.866667pt;}
.y1b3{bottom:172.986667pt;}
.yaa{bottom:174.426667pt;}
.y17{bottom:175.052000pt;}
.yc3{bottom:176.026667pt;}
.yd7{bottom:177.306667pt;}
.y78{bottom:178.426667pt;}
.ya9{bottom:180.506667pt;}
.y5d{bottom:182.266667pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yeb{bottom:187.226667pt;}
.ya8{bottom:189.626667pt;}
.y186{bottom:189.946667pt;}
.y106{bottom:190.906667pt;}
.y14e{bottom:193.306667pt;}
.y1b2{bottom:193.786667pt;}
.y165{bottom:194.266667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y119{bottom:200.186667pt;}
.y134{bottom:201.786667pt;}
.ya7{bottom:204.986667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.yc2{bottom:209.786667pt;}
.y1b1{bottom:210.746667pt;}
.yd6{bottom:211.066667pt;}
.y77{bottom:212.186667pt;}
.y5c{bottom:216.026667pt;}
.ya6{bottom:220.346667pt;}
.yea{bottom:220.986667pt;}
.y185{bottom:223.706667pt;}
.y105{bottom:224.666667pt;}
.y14d{bottom:227.226667pt;}
.y8f{bottom:227.866667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y1b0{bottom:231.546667pt;}
.y118{bottom:234.106667pt;}
.y133{bottom:235.546667pt;}
.ya5{bottom:235.706667pt;}
.ya4{bottom:241.786667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.yc1{bottom:243.386667pt;}
.yd5{bottom:244.826667pt;}
.y76{bottom:245.946667pt;}
.y1af{bottom:248.346667pt;}
.y5b{bottom:249.786667pt;}
.ya3{bottom:251.066667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y184{bottom:257.306667pt;}
.y104{bottom:258.426667pt;}
.y14c{bottom:261.306667pt;}
.y164{bottom:261.626667pt;}
.y8e{bottom:261.786667pt;}
.ya2{bottom:266.266667pt;}
.ye9{bottom:268.186667pt;}
.y117{bottom:268.506667pt;}
.y16b{bottom:269.306667pt;}
.ya1{bottom:272.346667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.yc0{bottom:277.146667pt;}
.y75{bottom:279.706667pt;}
.ya0{bottom:281.946667pt;}
.y132{bottom:282.426667pt;}
.y5a{bottom:283.546667pt;}
.y1ae{bottom:286.106667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y183{bottom:291.106667pt;}
.yd4{bottom:291.746667pt;}
.y103{bottom:292.546667pt;}
.y163{bottom:295.426667pt;}
.y8d{bottom:295.586667pt;}
.y14b{bottom:302.306667pt;}
.ye8{bottom:302.466667pt;}
.y116{bottom:302.626667pt;}
.y16a{bottom:303.106667pt;}
.ye{bottom:309.452000pt;}
.ybf{bottom:310.946667pt;}
.y74{bottom:313.506667pt;}
.y131{bottom:316.386667pt;}
.y59{bottom:317.346667pt;}
.y177{bottom:319.746667pt;}
.y1ad{bottom:323.906667pt;}
.y182{bottom:324.866667pt;}
.yd3{bottom:325.666667pt;}
.y16e{bottom:326.626667pt;}
.y8c{bottom:329.186667pt;}
.y14a{bottom:329.986667pt;}
.y115{bottom:336.386667pt;}
.ye7{bottom:336.546667pt;}
.y9e{bottom:337.666667pt;}
.y42{bottom:337.911998pt;}
.y102{bottom:340.066667pt;}
.y1ac{bottom:340.706667pt;}
.yd{bottom:343.809333pt;}
.y9f{bottom:344.386667pt;}
.ybe{bottom:345.026667pt;}
.y169{bottom:346.466667pt;}
.y130{bottom:350.146667pt;}
.y41{bottom:350.712001pt;}
.y58{bottom:351.106667pt;}
.y181{bottom:358.626667pt;}
.yd2{bottom:359.266667pt;}
.y73{bottom:360.386667pt;}
.y16d{bottom:360.546667pt;}
.y1ab{bottom:361.666667pt;}
.yc{bottom:362.706666pt;}
.y162{bottom:362.946667pt;}
.y40{bottom:363.511999pt;}
.y149{bottom:363.746667pt;}
.y174{bottom:366.786667pt;}
.y114{bottom:370.466667pt;}
.ye6{bottom:370.946667pt;}
.y9d{bottom:371.426667pt;}
.y101{bottom:374.626667pt;}
.y8b{bottom:376.066667pt;}
.y1aa{bottom:378.466667pt;}
.ybd{bottom:379.106667pt;}
.y12f{bottom:383.746667pt;}
.y178{bottom:383.906667pt;}
.y3f{bottom:384.247999pt;}
.y57{bottom:384.706667pt;}
.y180{bottom:392.386667pt;}
.yd1{bottom:393.026667pt;}
.y72{bottom:394.306667pt;}
.y161{bottom:396.706667pt;}
.y3e{bottom:397.048000pt;}
.y148{bottom:397.666667pt;}
.y1a9{bottom:399.426667pt;}
.y176{bottom:400.706667pt;}
.y113{bottom:404.546667pt;}
.ye5{bottom:404.866667pt;}
.y9c{bottom:405.186667pt;}
.y100{bottom:408.706667pt;}
.y3d{bottom:409.848000pt;}
.y8a{bottom:409.986667pt;}
.y173{bottom:410.306667pt;}
.y1a8{bottom:416.226667pt;}
.y12e{bottom:417.506667pt;}
.y56{bottom:418.466667pt;}
.y17f{bottom:426.146667pt;}
.ybc{bottom:426.306667pt;}
.yd0{bottom:426.786667pt;}
.y71{bottom:427.906667pt;}
.y160{bottom:430.306667pt;}
.y3c{bottom:431.690664pt;}
.y1a7{bottom:433.026667pt;}
.y112{bottom:438.306667pt;}
.ye4{bottom:438.626667pt;}
.y9b{bottom:438.946667pt;}
.yff{bottom:442.786667pt;}
.y89{bottom:443.746667pt;}
.y175{bottom:444.066667pt;}
.y3b{bottom:447.690664pt;}
.y12d{bottom:451.266667pt;}
.y55{bottom:452.226667pt;}
.y1a6{bottom:453.986667pt;}
.y147{bottom:454.146667pt;}
.y17e{bottom:459.746667pt;}
.ycf{bottom:460.546667pt;}
.y70{bottom:461.666667pt;}
.yb{bottom:462.990669pt;}
.y3a{bottom:463.690664pt;}
.y15f{bottom:464.066667pt;}
.y1c6{bottom:467.520000pt;}
.y1a5{bottom:470.786667pt;}
.y111{bottom:471.906667pt;}
.ye3{bottom:472.386667pt;}
.y9a{bottom:473.026667pt;}
.ybb{bottom:473.666667pt;}
.yfe{bottom:477.186667pt;}
.y88{bottom:477.506667pt;}
.ya{bottom:478.990666pt;}
.y39{bottom:479.690664pt;}
.y54{bottom:485.986667pt;}
.y1c5{bottom:486.396480pt;}
.y12c{bottom:486.786667pt;}
.y146{bottom:488.386667pt;}
.y1a4{bottom:491.746667pt;}
.y17d{bottom:493.506667pt;}
.y9{bottom:494.990666pt;}
.y6f{bottom:495.426667pt;}
.y38{bottom:495.690664pt;}
.y110{bottom:505.986667pt;}
.ye2{bottom:506.146667pt;}
.yce{bottom:507.746667pt;}
.y1a3{bottom:508.546667pt;}
.y15e{bottom:510.946667pt;}
.yfd{bottom:511.586667pt;}
.y37{bottom:511.690664pt;}
.y1c4{bottom:519.040000pt;}
.y53{bottom:519.746667pt;}
.yba{bottom:521.026667pt;}
.y12b{bottom:521.506667pt;}
.y145{bottom:521.986667pt;}
.y87{bottom:524.386667pt;}
.y15b{bottom:525.026667pt;}
.y17c{bottom:527.586667pt;}
.y99{bottom:529.053333pt;}
.y6e{bottom:529.213333pt;}
.y1a2{bottom:529.373333pt;}
.y36{bottom:535.690667pt;}
.ye1{bottom:539.933333pt;}
.yfc{bottom:546.013333pt;}
.y1a1{bottom:546.333333pt;}
.y35{bottom:551.690667pt;}
.y52{bottom:553.373333pt;}
.ycd{bottom:555.453333pt;}
.y12a{bottom:555.613333pt;}
.y144{bottom:556.093333pt;}
.y86{bottom:558.333333pt;}
.y15a{bottom:558.813333pt;}
.y1c3{bottom:560.009280pt;}
.y10f{bottom:562.173333pt;}
.y6d{bottom:562.973333pt;}
.y1a0{bottom:567.133333pt;}
.yb9{bottom:568.573333pt;}
.ye0{bottom:573.693333pt;}
.y8{bottom:573.786667pt;}
.y34{bottom:575.690677pt;}
.y159{bottom:575.773333pt;}
.y17b{bottom:583.613333pt;}
.y19f{bottom:584.093333pt;}
.y51{bottom:587.133333pt;}
.y143{bottom:590.173333pt;}
.y33{bottom:591.690677pt;}
.y85{bottom:592.093333pt;}
.y158{bottom:592.573333pt;}
.y7{bottom:592.685334pt;}
.yfb{bottom:593.213333pt;}
.y1c2{bottom:594.245120pt;}
.y10e{bottom:595.933333pt;}
.y6c{bottom:596.573333pt;}
.y19e{bottom:600.893333pt;}
.yb8{bottom:602.333333pt;}
.y129{bottom:602.493333pt;}
.ycc{bottom:602.813333pt;}
.y98{bottom:603.293333pt;}
.ydf{bottom:607.293333pt;}
.y32{bottom:607.690677pt;}
.y156{bottom:611.453333pt;}
.y50{bottom:620.893333pt;}
.y19d{bottom:621.853333pt;}
.y31{bottom:623.690677pt;}
.y142{bottom:624.253333pt;}
.y84{bottom:625.853333pt;}
.yfa{bottom:627.133333pt;}
.y1c1{bottom:628.002880pt;}
.y154{bottom:628.253333pt;}
.y10d{bottom:629.693333pt;}
.y6b{bottom:630.333333pt;}
.y17a{bottom:630.653333pt;}
.yb7{bottom:636.093333pt;}
.y128{bottom:636.413333pt;}
.ycb{bottom:636.733333pt;}
.y19c{bottom:638.653333pt;}
.y30{bottom:639.690677pt;}
.yde{bottom:641.053333pt;}
.y6{bottom:645.598667pt;}
.y153{bottom:650.493333pt;}
.y4f{bottom:654.653333pt;}
.y2f{bottom:655.690677pt;}
.y141{bottom:658.653333pt;}
.y83{bottom:659.453333pt;}
.yf9{bottom:660.893333pt;}
.y1c0{bottom:662.079360pt;}
.y10c{bottom:663.773333pt;}
.y6a{bottom:664.093333pt;}
.y3{bottom:668.977329pt;}
.yb6{bottom:669.853333pt;}
.y127{bottom:670.173333pt;}
.yca{bottom:670.493333pt;}
.y2e{bottom:671.690677pt;}
.y179{bottom:674.333333pt;}
.ydd{bottom:674.813333pt;}
.y19b{bottom:676.413333pt;}
.y2d{bottom:687.690677pt;}
.y140{bottom:692.733333pt;}
.y82{bottom:693.213333pt;}
.yf8{bottom:694.813333pt;}
.y1bf{bottom:695.996480pt;}
.y19a{bottom:697.213333pt;}
.y152{bottom:697.693333pt;}
.y69{bottom:697.853333pt;}
.y4e{bottom:701.533333pt;}
.yb5{bottom:703.613333pt;}
.y2c{bottom:703.690677pt;}
.y126{bottom:703.933333pt;}
.yc9{bottom:704.253333pt;}
.ydc{bottom:708.893333pt;}
.y199{bottom:714.173333pt;}
.y170{bottom:718.013333pt;}
.y2b{bottom:719.690677pt;}
.y81{bottom:726.973333pt;}
.yf7{bottom:728.893333pt;}
.y1be{bottom:730.072960pt;}
.y68{bottom:731.613333pt;}
.y198{bottom:734.973333pt;}
.y4d{bottom:735.453333pt;}
.y2a{bottom:735.690677pt;}
.yb4{bottom:737.693333pt;}
.yc8{bottom:738.013333pt;}
.y97{bottom:738.333333pt;}
.y13f{bottom:739.613333pt;}
.ydb{bottom:743.293333pt;}
.y1bd{bottom:745.278560pt;}
.y189{bottom:745.373333pt;}
.y29{bottom:751.690677pt;}
.y197{bottom:751.773333pt;}
.y1bc{bottom:760.643520pt;}
.y80{bottom:760.733333pt;}
.yf6{bottom:762.653333pt;}
.y16f{bottom:765.213333pt;}
.y67{bottom:765.373333pt;}
.y28{bottom:767.657331pt;}
.y4c{bottom:769.253333pt;}
.yc7{bottom:771.813333pt;}
.y196{bottom:772.773333pt;}
.y125{bottom:773.253333pt;}
.y13e{bottom:773.893333pt;}
.yda{bottom:777.733333pt;}
.y2{bottom:781.661334pt;}
.yb3{bottom:785.253333pt;}
.y195{bottom:793.573333pt;}
.y7f{bottom:794.533333pt;}
.y1bb{bottom:794.720000pt;}
.y188{bottom:798.853333pt;}
.y66{bottom:799.013333pt;}
.y4b{bottom:803.013333pt;}
.y151{bottom:805.733333pt;}
.y124{bottom:807.973333pt;}
.y13d{bottom:808.293333pt;}
.y27{bottom:809.536003pt;}
.yf5{bottom:809.573333pt;}
.y194{bottom:810.533333pt;}
.yd9{bottom:812.133333pt;}
.y96{bottom:812.293333pt;}
.yc6{bottom:819.013333pt;}
.y193{bottom:827.333333pt;}
.y1ba{bottom:829.600000pt;}
.yb2{bottom:832.613333pt;}
.y65{bottom:832.773333pt;}
.y4a{bottom:836.613333pt;}
.y123{bottom:840.773333pt;}
.y7e{bottom:842.373333pt;}
.y13c{bottom:842.693333pt;}
.yf4{bottom:843.813333pt;}
.y10b{bottom:846.053333pt;}
.y95{bottom:846.213333pt;}
.y192{bottom:848.133333pt;}
.y26{bottom:852.357333pt;}
.y1{bottom:859.312000pt;}
.y191{bottom:865.093333pt;}
.yc5{bottom:866.373333pt;}
.y64{bottom:866.533333pt;}
.y1b9{bottom:866.720000pt;}
.y49{bottom:870.373333pt;}
.y122{bottom:876.933333pt;}
.y13b{bottom:877.093333pt;}
.y7d{bottom:877.733333pt;}
.yf3{bottom:877.893333pt;}
.y25{bottom:879.557335pt;}
.y94{bottom:879.813333pt;}
.y121{bottom:879.973333pt;}
.y190{bottom:881.893333pt;}
.y63{bottom:900.293333pt;}
.y18f{bottom:902.853333pt;}
.y1b8{bottom:903.840000pt;}
.y48{bottom:904.133333pt;}
.yf2{bottom:911.973333pt;}
.y7c{bottom:912.933333pt;}
.yb1{bottom:913.413333pt;}
.y93{bottom:913.573333pt;}
.y168{bottom:916.773333pt;}
.y18e{bottom:919.653333pt;}
.y13a{bottom:921.413333pt;}
.y139{bottom:927.493333pt;}
.y120{bottom:927.813333pt;}
.y11e{bottom:928.453333pt;}
.y11d{bottom:931.493333pt;}
.y167{bottom:933.733333pt;}
.y150{bottom:934.053333pt;}
.y18d{bottom:936.453333pt;}
.y11f{bottom:937.413333pt;}
.y47{bottom:937.893333pt;}
.y1b7{bottom:940.800000pt;}
.yf1{bottom:946.373333pt;}
.y62{bottom:947.173333pt;}
.y7b{bottom:947.333333pt;}
.y24{bottom:949.413333pt;}
.y18c{bottom:957.413333pt;}
.y23{bottom:962.213334pt;}
.y46{bottom:971.653333pt;}
.y18b{bottom:974.213333pt;}
.y1b6{bottom:977.920000pt;}
.y11c{bottom:980.293333pt;}
.yf0{bottom:980.453333pt;}
.y172{bottom:980.773333pt;}
.y14f{bottom:980.933333pt;}
.y61{bottom:981.093333pt;}
.y171{bottom:997.573333pt;}
.y45{bottom:1005.760000pt;}
.y18a{bottom:1008.320000pt;}
.yef{bottom:1014.560000pt;}
.y60{bottom:1014.880000pt;}
.yd8{bottom:1021.600000pt;}
.h26{height:16.800000pt;}
.h25{height:16.960000pt;}
.h7{height:28.560000pt;}
.h27{height:33.786667pt;}
.h17{height:33.918750pt;}
.h16{height:36.431250pt;}
.h1c{height:38.148125pt;}
.h8{height:38.937500pt;}
.h23{height:39.571875pt;}
.h6{height:40.800000pt;}
.he{height:41.854167pt;}
.h10{height:41.875000pt;}
.h3{height:42.840000pt;}
.hf{height:43.000000pt;}
.h19{height:43.093508pt;}
.h9{height:44.500000pt;}
.h2f{height:44.722500pt;}
.h2c{height:47.109375pt;}
.h2{height:48.960000pt;}
.h18{height:52.134375pt;}
.hd{height:52.343750pt;}
.h1f{height:52.382500pt;}
.h29{height:52.785000pt;}
.hc{height:53.750000pt;}
.h1a{height:54.302500pt;}
.h2d{height:55.402500pt;}
.h30{height:56.480000pt;}
.h2a{height:57.758750pt;}
.h12{height:57.787500pt;}
.h24{height:59.340000pt;}
.h14{height:60.300000pt;}
.h28{height:62.812500pt;}
.h20{height:63.311250pt;}
.h1b{height:64.542500pt;}
.h5{height:69.360000pt;}
.h21{height:69.926167pt;}
.h1e{height:69.947500pt;}
.h1d{height:72.507500pt;}
.hb{height:73.244792pt;}
.h22{height:82.107500pt;}
.h2e{height:83.499062pt;}
.h13{height:85.785000pt;}
.ha{height:91.375000pt;}
.h4{height:105.826671pt;}
.h2b{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h15{height:1122.558213pt;}
.h11{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:128.310667pt;}
.w9{width:128.352000pt;}
.w8{width:128.498667pt;}
.w6{width:192.506667pt;}
.w5{width:192.657333pt;}
.wc{width:515.040000pt;}
.w2{width:566.928019pt;}
.wb{width:793.333333pt;}
.wa{width:793.600000pt;}
.w0{width:793.700000pt;}
.w4{width:793.758333pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.190667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x20{left:106.281333pt;}
.x7{left:113.472000pt;}
.x11{left:117.952000pt;}
.x1a{left:119.392000pt;}
.x5{left:136.062667pt;}
.x26{left:142.266667pt;}
.x29{left:150.080000pt;}
.x28{left:151.200000pt;}
.x18{left:169.146667pt;}
.x4{left:180.874667pt;}
.x1b{left:208.026667pt;}
.x19{left:211.706667pt;}
.x23{left:234.600000pt;}
.x17{left:244.826667pt;}
.x1e{left:263.265000pt;}
.x1f{left:267.906667pt;}
.x22{left:298.946667pt;}
.x10{left:305.506667pt;}
.x8{left:334.785000pt;}
.x9{left:341.026667pt;}
.xc{left:342.625000pt;}
.xd{left:347.746667pt;}
.x24{left:363.106667pt;}
.x16{left:389.506667pt;}
.x6{left:393.186667pt;}
.x3{left:404.408000pt;}
.x12{left:459.771667pt;}
.x13{left:466.013333pt;}
.x1c{left:471.453333pt;}
.xa{left:474.971667pt;}
.xb{left:481.213333pt;}
.x1d{left:482.653333pt;}
.x14{left:499.931667pt;}
.x15{left:504.573333pt;}
.x27{left:665.120000pt;}
.xe{left:675.811667pt;}
.xf{left:680.453333pt;}
.x25{left:682.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; }
  