
    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_72979edaddaaee84ba3a1f4d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_54de24ac3be5c207bd628fea.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_54e73a7de3ae968e1b21ed8e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_97a1dd128eb1c04121630de1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_aae0be9eec96a89409606131.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_84723a37933180f64621203a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e6e9b6125fb10ec0d74953e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_faaecaea7d23435e1ca7ae7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d0acd06b1f8cd315555d038e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_516e418e7891e55548efaa2b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_01fd487aede6664ae6bcc0b1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.725000;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5a9788ad675f9f46a0008aa0.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.549805;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_50a838424665fe9e4a785c7a.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_0ed708d5dbd3d6886bc2f22c.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8a4b95a6cfd6bce0609c1e90.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_78c9eef897d7ee7fe129be0a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.003906;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_81b707e09117d9336212bd07.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_3e0935109a31f7cceab70fd3.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_81d36742f009233dad58489b.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_a684d02d52238ca7fd77310e.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_e5d377e446113cf0dca593e6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-13.680000px;}
.v5{vertical-align:-10.080000px;}
.v3{vertical-align:-5.760000px;}
.va{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:5.760000px;}
.v9{vertical-align:13.680000px;}
.vb{vertical-align:15.840000px;}
.v11{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:39.600000px;}
.vd{vertical-align:44.640000px;}
.vc{vertical-align:51.120000px;}
.v7{vertical-align:64.800000px;}
.vf{vertical-align:71.280000px;}
.ve{vertical-align:84.960000px;}
.v8{vertical-align:92.880000px;}
.ls3{letter-spacing:-1.746000px;}
.lse{letter-spacing:-1.176000px;}
.ls10{letter-spacing:-1.134000px;}
.ls18{letter-spacing:-1.026000px;}
.ls44{letter-spacing:-0.984000px;}
.ls43{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.828000px;}
.ls8{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.414600px;}
.ls3c{letter-spacing:-0.339600px;}
.ls9{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.262200px;}
.ls12{letter-spacing:-0.178800px;}
.ls15{letter-spacing:-0.152400px;}
.lsa{letter-spacing:-0.109200px;}
.ls39{letter-spacing:-0.106800px;}
.ls51{letter-spacing:-0.100200px;}
.ls34{letter-spacing:-0.089400px;}
.ls3b{letter-spacing:-0.053280px;}
.ls4d{letter-spacing:-0.017280px;}
.ls4e{letter-spacing:-0.012960px;}
.ls4f{letter-spacing:-0.008640px;}
.ls3a{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.001440px;}
.ls4a{letter-spacing:0.004320px;}
.ls4b{letter-spacing:0.008640px;}
.ls4c{letter-spacing:0.012960px;}
.ls40{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.064800px;}
.ls2e{letter-spacing:0.069120px;}
.ls48{letter-spacing:0.070560px;}
.ls1b{letter-spacing:0.089280px;}
.ls33{letter-spacing:0.089400px;}
.ls1e{letter-spacing:0.138240px;}
.ls2c{letter-spacing:0.146880px;}
.ls49{letter-spacing:0.238080px;}
.ls20{letter-spacing:0.239040px;}
.ls28{letter-spacing:0.241800px;}
.ls17{letter-spacing:0.256200px;}
.ls38{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.262080px;}
.ls4{letter-spacing:0.262200px;}
.ls2f{letter-spacing:0.264960px;}
.ls1{letter-spacing:0.285600px;}
.ls14{letter-spacing:0.305280px;}
.ls7{letter-spacing:0.305400px;}
.ls3d{letter-spacing:0.315360px;}
.ls3e{letter-spacing:0.315600px;}
.ls42{letter-spacing:0.380400px;}
.ls11{letter-spacing:0.567600px;}
.lsf{letter-spacing:0.612000px;}
.ls41{letter-spacing:0.613440px;}
.ls36{letter-spacing:0.715680px;}
.ls50{letter-spacing:0.726000px;}
.ls37{letter-spacing:0.835680px;}
.ls16{letter-spacing:1.026000px;}
.ls46{letter-spacing:2.268000px;}
.ls2d{letter-spacing:2.370240px;}
.ls26{letter-spacing:2.903040px;}
.ls2b{letter-spacing:3.090240px;}
.ls47{letter-spacing:3.286080px;}
.ls1a{letter-spacing:3.905280px;}
.ls21{letter-spacing:3.947760px;}
.ls24{letter-spacing:4.015440px;}
.ls3f{letter-spacing:6.785280px;}
.ls27{letter-spacing:8.225280px;}
.ls25{letter-spacing:10.218240px;}
.ls13{letter-spacing:12.545280px;}
.ls22{letter-spacing:13.919040px;}
.ls32{letter-spacing:13.985280px;}
.ls23{letter-spacing:14.598720px;}
.ls31{letter-spacing:14.705280px;}
.ls45{letter-spacing:16.145280px;}
.ls2a{letter-spacing:16.709040px;}
.ls30{letter-spacing:16.770240px;}
.ls1d{letter-spacing:17.100000px;}
.ls1f{letter-spacing:18.347760px;}
.ls29{letter-spacing:20.370240px;}
.ls1c{letter-spacing:22.667760px;}
.ls19{letter-spacing:59.345280px;}
.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;}
}
.ws15{word-spacing:-66.240000px;}
.ws0{word-spacing:-23.363760px;}
.ws1{word-spacing:-20.931840px;}
.ws2a{word-spacing:-20.682720px;}
.ws13{word-spacing:-19.440720px;}
.wsc{word-spacing:-19.026720px;}
.wse{word-spacing:-18.982320px;}
.ws9{word-spacing:-18.720120px;}
.ws7{word-spacing:-18.676920px;}
.ws5{word-spacing:-18.414720px;}
.ws8{word-spacing:-18.305520px;}
.ws29{word-spacing:-18.262320px;}
.wsb{word-spacing:-18.152520px;}
.ws6{word-spacing:-18.109320px;}
.wsd{word-spacing:-18.000120px;}
.wsf{word-spacing:-17.956920px;}
.ws2b{word-spacing:-17.694720px;}
.wsa{word-spacing:-17.586720px;}
.ws11{word-spacing:-17.280720px;}
.ws2c{word-spacing:-17.238720px;}
.ws27{word-spacing:-17.225280px;}
.ws3{word-spacing:-16.668720px;}
.ws20{word-spacing:-16.613280px;}
.ws23{word-spacing:-16.560000px;}
.ws32{word-spacing:-16.513080px;}
.ws1f{word-spacing:-16.506480px;}
.ws14{word-spacing:-15.226440px;}
.ws17{word-spacing:-14.814600px;}
.ws16{word-spacing:-14.572800px;}
.ws24{word-spacing:-11.924880px;}
.ws26{word-spacing:-11.924640px;}
.ws12{word-spacing:-11.609280px;}
.ws31{word-spacing:-11.534640px;}
.ws1e{word-spacing:-11.519880px;}
.ws10{word-spacing:-11.430480px;}
.ws2f{word-spacing:-10.821600px;}
.ws30{word-spacing:-10.817280px;}
.ws2d{word-spacing:-10.812960px;}
.ws22{word-spacing:-10.808640px;}
.ws21{word-spacing:-10.804320px;}
.ws2e{word-spacing:-10.791360px;}
.ws28{word-spacing:-10.709280px;}
.ws18{word-spacing:-10.612800px;}
.ws2{word-spacing:-10.465920px;}
.ws25{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
.ws19{word-spacing:72.336240px;}
.ws1a{word-spacing:127.776240px;}
.ws1b{word-spacing:132.816240px;}
.ws1c{word-spacing:138.576240px;}
.ws1d{word-spacing:309.216240px;}
._22{margin-left:-14.096400px;}
._21{margin-left:-7.589760px;}
._1a{margin-left:-5.349120px;}
._10{margin-left:-3.446640px;}
._1{margin-left:-1.722240px;}
._0{width:1.459440px;}
._7{width:3.113280px;}
._8{width:4.173120px;}
._d{width:6.094080px;}
._13{width:7.750080px;}
._5{width:8.809920px;}
._6{width:9.867600px;}
._4{width:11.128320px;}
._3{width:12.453120px;}
._18{width:13.549440px;}
._14{width:14.655120px;}
._19{width:15.809760px;}
._c{width:17.089920px;}
._20{width:18.451680px;}
._17{width:20.382240px;}
._16{width:21.613920px;}
._12{width:23.230560px;}
._11{width:24.310080px;}
._28{width:25.357440px;}
._a{width:26.363520px;}
._9{width:28.019520px;}
._b{width:29.273760px;}
._15{width:30.601680px;}
._1d{width:32.179200px;}
._2e{width:33.280800px;}
._1f{width:34.378560px;}
._1e{width:35.438400px;}
._2a{width:36.829440px;}
._29{width:39.769920px;}
._25{width:41.664960px;}
._24{width:42.721200px;}
._23{width:43.784640px;}
._26{width:46.699200px;}
._27{width:48.433440px;}
._1b{width:50.342400px;}
._1c{width:51.996240px;}
._e{width:56.210400px;}
._2{width:57.653760px;}
._2f{width:61.002720px;}
._2b{width:93.663360px;}
._2c{width:94.984320px;}
._2d{width:259.702080px;}
._f{width:845.741280px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(47,84,150);}
.fc6{color:rgb(17,17,17);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:33.120000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y1ea{bottom:-3.420000px;}
.y0{bottom:0.000000px;}
.y1eb{bottom:2.160000px;}
.y227{bottom:2.334000px;}
.y1f0{bottom:2.340000px;}
.y1fb{bottom:2.520000px;}
.y216{bottom:2.700000px;}
.y1fc{bottom:2.880000px;}
.y1e7{bottom:3.060000px;}
.y224{bottom:3.240000px;}
.y210{bottom:3.420000px;}
.ya{bottom:3.600000px;}
.y18f{bottom:3.780000px;}
.yd{bottom:4.320000px;}
.y211{bottom:4.500000px;}
.y1f5{bottom:4.725000px;}
.y20e{bottom:4.860000px;}
.y1f8{bottom:5.580000px;}
.y1f6{bottom:7.245000px;}
.y20f{bottom:7.380000px;}
.y14a{bottom:7.560000px;}
.y153{bottom:7.605000px;}
.y15c{bottom:7.734000px;}
.y14b{bottom:7.740000px;}
.y1f1{bottom:7.920000px;}
.y177{bottom:8.100000px;}
.y189{bottom:8.130000px;}
.y20a{bottom:8.490000px;}
.y1e8{bottom:8.640000px;}
.y222{bottom:8.820000px;}
.y1f9{bottom:9.000000px;}
.y14d{bottom:10.440000px;}
.y152{bottom:10.485000px;}
.y15b{bottom:10.614000px;}
.y14f{bottom:10.620000px;}
.y22f{bottom:12.060000px;}
.y148{bottom:12.240000px;}
.y233{bottom:12.285000px;}
.y174{bottom:12.600000px;}
.y275{bottom:12.630000px;}
.y17e{bottom:12.774000px;}
.y175{bottom:12.780000px;}
.y188{bottom:12.810000px;}
.y24d{bottom:12.954000px;}
.y23f{bottom:12.960000px;}
.y23e{bottom:13.140000px;}
.y203{bottom:13.320000px;}
.y225{bottom:13.494000px;}
.y1ef{bottom:13.500000px;}
.y1e6{bottom:14.220000px;}
.y20b{bottom:14.250000px;}
.y223{bottom:14.400000px;}
.y20c{bottom:14.790000px;}
.y15f{bottom:14.940000px;}
.y184{bottom:17.100000px;}
.y201{bottom:18.900000px;}
.y204{bottom:19.080000px;}
.y21b{bottom:19.440000px;}
.y220{bottom:20.334000px;}
.yc{bottom:20.700000px;}
.y9{bottom:22.860000px;}
.y218{bottom:24.480000px;}
.y226{bottom:24.654000px;}
.y202{bottom:24.660000px;}
.y21d{bottom:24.705000px;}
.y15e{bottom:25.020000px;}
.y18e{bottom:28.620000px;}
.y183{bottom:29.340000px;}
.y21a{bottom:30.825000px;}
.y21f{bottom:31.674000px;}
.y217{bottom:35.820000px;}
.y205{bottom:36.000000px;}
.y1ed{bottom:36.720000px;}
.y8{bottom:42.120000px;}
.y18d{bottom:47.520000px;}
.y4{bottom:57.420000px;}
.y18c{bottom:66.600000px;}
.y208{bottom:76.680000px;}
.y3{bottom:77.616000px;}
.y207{bottom:87.840000px;}
.y1f3{bottom:89.640000px;}
.y15d{bottom:110.016000px;}
.yc0{bottom:110.556000px;}
.y1ad{bottom:111.276000px;}
.y17f{bottom:111.456000px;}
.y13d{bottom:112.716000px;}
.y4c{bottom:115.056000px;}
.yed{bottom:116.316000px;}
.y1e0{bottom:116.676000px;}
.y1b2{bottom:118.476000px;}
.yac{bottom:119.556000px;}
.y1c9{bottom:125.496000px;}
.y70{bottom:127.116000px;}
.y24e{bottom:128.196000px;}
.y99{bottom:128.556000px;}
.ybf{bottom:138.996000px;}
.y17d{bottom:139.356000px;}
.y1ac{bottom:139.716000px;}
.y13c{bottom:141.156000px;}
.y4b{bottom:143.496000px;}
.yec{bottom:144.756000px;}
.y1df{bottom:145.116000px;}
.yfb{bottom:145.836000px;}
.y1b1{bottom:146.556000px;}
.y8c{bottom:147.996000px;}
.y15a{bottom:148.896000px;}
.y21e{bottom:149.796000px;}
.y1c8{bottom:153.930000px;}
.y6f{bottom:155.550000px;}
.y94{bottom:156.990000px;}
.y11d{bottom:158.970000px;}
.y28{bottom:164.910000px;}
.y1b0{bottom:165.450000px;}
.ybe{bottom:167.430000px;}
.y1ab{bottom:168.150000px;}
.y13b{bottom:169.590000px;}
.y4a{bottom:171.930000px;}
.y24c{bottom:172.110000px;}
.yeb{bottom:173.190000px;}
.y159{bottom:173.550000px;}
.yfa{bottom:174.270000px;}
.y8b{bottom:176.430000px;}
.y1c7{bottom:182.370000px;}
.y6e{bottom:183.990000px;}
.y221{bottom:184.170000px;}
.y98{bottom:185.430000px;}
.y11c{bottom:187.410000px;}
.y1af{bottom:193.530000px;}
.y93{bottom:194.610000px;}
.y17c{bottom:195.330000px;}
.y1aa{bottom:196.590000px;}
.y158{bottom:198.210000px;}
.y24b{bottom:199.110000px;}
.y49{bottom:200.370000px;}
.yea{bottom:201.630000px;}
.y1de{bottom:201.990000px;}
.yf9{bottom:202.890000px;}
.yab{bottom:204.870000px;}
.y27{bottom:205.230000px;}
.y13a{bottom:207.030000px;}
.y219{bottom:209.190000px;}
.y1c6{bottom:210.810000px;}
.y6d{bottom:212.430000px;}
.y8a{bottom:213.870000px;}
.y11b{bottom:216.030000px;}
.y157{bottom:222.870000px;}
.y17b{bottom:223.230000px;}
.y1a9{bottom:225.030000px;}
.y24a{bottom:226.110000px;}
.y1ae{bottom:227.190000px;}
.y48{bottom:228.810000px;}
.ye9{bottom:230.070000px;}
.y1dd{bottom:230.430000px;}
.y92{bottom:232.050000px;}
.yf8{bottom:232.230000px;}
.yaa{bottom:233.310000px;}
.y26{bottom:233.850000px;}
.yd6{bottom:234.750000px;}
.y139{bottom:235.470000px;}
.y1c5{bottom:239.430000px;}
.y6c{bottom:240.870000px;}
.y97{bottom:242.310000px;}
.y21c{bottom:243.615000px;}
.y11a{bottom:245.550000px;}
.y156{bottom:247.350000px;}
.y17a{bottom:251.310000px;}
.y89{bottom:251.490000px;}
.y249{bottom:253.110000px;}
.y1a8{bottom:253.470000px;}
.y47{bottom:257.430000px;}
.ye8{bottom:258.510000px;}
.y1dc{bottom:258.870000px;}
.yf7{bottom:260.670000px;}
.ya9{bottom:261.750000px;}
.y138{bottom:263.910000px;}
.y206{bottom:267.015000px;}
.y1c4{bottom:267.870000px;}
.y6b{bottom:269.310000px;}
.y1b9{bottom:270.750000px;}
.y155{bottom:272.010000px;}
.y119{bottom:273.990000px;}
.y25{bottom:274.350000px;}
.yd5{bottom:275.250000px;}
.y179{bottom:279.210000px;}
.y96{bottom:279.750000px;}
.y248{bottom:280.290000px;}
.y1a7{bottom:281.910000px;}
.y46{bottom:285.870000px;}
.ye7{bottom:286.950000px;}
.y1db{bottom:287.310000px;}
.y88{bottom:288.750000px;}
.yf6{bottom:289.110000px;}
.ya8{bottom:290.190000px;}
.y137{bottom:292.350000px;}
.y154{bottom:296.670000px;}
.y6a{bottom:297.750000px;}
.y1b8{bottom:299.190000px;}
.y118{bottom:302.610000px;}
.yd4{bottom:303.870000px;}
.y178{bottom:307.290000px;}
.y1bf{bottom:308.190000px;}
.y1c3{bottom:308.370000px;}
.y215{bottom:312.555000px;}
.y45{bottom:314.310000px;}
.y24{bottom:314.850000px;}
.ye6{bottom:315.390000px;}
.y1da{bottom:315.750000px;}
.y87{bottom:317.190000px;}
.y95{bottom:317.370000px;}
.yf5{bottom:317.910000px;}
.ya7{bottom:318.810000px;}
.y136{bottom:320.970000px;}
.y151{bottom:321.330000px;}
.y214{bottom:324.975000px;}
.y69{bottom:326.190000px;}
.y1b7{bottom:327.855000px;}
.y1a6{bottom:328.575000px;}
.y117{bottom:331.995000px;}
.y247{bottom:334.335000px;}
.y176{bottom:335.235000px;}
.y1be{bottom:336.855000px;}
.y213{bottom:337.035000px;}
.y44{bottom:342.795000px;}
.ye5{bottom:343.875000px;}
.yd3{bottom:344.235000px;}
.y86{bottom:345.855000px;}
.ya6{bottom:347.295000px;}
.y135{bottom:349.455000px;}
.y68{bottom:354.855000px;}
.y23{bottom:355.215000px;}
.yf4{bottom:356.295000px;}
.y1a5{bottom:357.015000px;}
.y212{bottom:360.075000px;}
.y116{bottom:360.435000px;}
.y246{bottom:361.335000px;}
.y173{bottom:364.035000px;}
.y1bb{bottom:365.295000px;}
.y150{bottom:370.515000px;}
.y43{bottom:371.235000px;}
.ye4{bottom:372.495000px;}
.yd2{bottom:372.675000px;}
.y1d9{bottom:372.855000px;}
.y85{bottom:374.295000px;}
.ybd{bottom:375.735000px;}
.y134{bottom:377.895000px;}
.y91{bottom:383.295000px;}
.y22{bottom:383.655000px;}
.ya5{bottom:384.735000px;}
.y1a4{bottom:385.455000px;}
.y245{bottom:388.335000px;}
.y115{bottom:389.055000px;}
.y67{bottom:392.295000px;}
.y1ba{bottom:393.735000px;}
.y14e{bottom:395.175000px;}
.y20d{bottom:397.515000px;}
.y42{bottom:399.675000px;}
.ye3{bottom:400.935000px;}
.yd1{bottom:401.115000px;}
.y1d8{bottom:401.295000px;}
.y84{bottom:402.735000px;}
.ybc{bottom:404.175000px;}
.y133{bottom:406.335000px;}
.y26d{bottom:408.855000px;}
.y90{bottom:411.735000px;}
.y21{bottom:412.095000px;}
.ya4{bottom:413.175000px;}
.y1a3{bottom:413.895000px;}
.y209{bottom:414.615000px;}
.y172{bottom:414.795000px;}
.y244{bottom:415.515000px;}
.y114{bottom:418.575000px;}
.y14c{bottom:419.835000px;}
.y66{bottom:420.735000px;}
.yf3{bottom:422.175000px;}
.y26c{bottom:427.935000px;}
.y41{bottom:428.115000px;}
.ye2{bottom:429.375000px;}
.yd0{bottom:429.555000px;}
.y1d7{bottom:429.735000px;}
.y83{bottom:431.175000px;}
.ybb{bottom:432.615000px;}
.y132{bottom:434.775000px;}
.y1f2{bottom:439.125000px;}
.y8f{bottom:440.175000px;}
.y20{bottom:440.535000px;}
.ya3{bottom:441.615000px;}
.y243{bottom:442.515000px;}
.y149{bottom:445.215000px;}
.y113{bottom:447.195000px;}
.y65{bottom:449.175000px;}
.yf2{bottom:450.615000px;}
.y171{bottom:452.415000px;}
.y26b{bottom:452.955000px;}
.y40{bottom:456.555000px;}
.ye1{bottom:457.815000px;}
.y1d6{bottom:458.175000px;}
.y1c2{bottom:459.615000px;}
.y1a2{bottom:460.335000px;}
.ycf{bottom:466.995000px;}
.y147{bottom:467.715000px;}
.y82{bottom:468.615000px;}
.y1f{bottom:468.975000px;}
.y242{bottom:469.515000px;}
.ya2{bottom:470.055000px;}
.y26a{bottom:471.855000px;}
.y131{bottom:472.215000px;}
.y64{bottom:477.615000px;}
.yf1{bottom:479.055000px;}
.y200{bottom:484.845000px;}
.y3f{bottom:484.995000px;}
.y112{bottom:485.535000px;}
.y1d5{bottom:486.615000px;}
.y1c1{bottom:488.055000px;}
.y1a1{bottom:488.775000px;}
.y269{bottom:490.935000px;}
.ye0{bottom:495.255000px;}
.yce{bottom:495.795000px;}
.y241{bottom:496.515000px;}
.y81{bottom:497.055000px;}
.y1e{bottom:497.415000px;}
.ya1{bottom:498.495000px;}
.yba{bottom:498.675000px;}
.y170{bottom:498.855000px;}
.y130{bottom:500.655000px;}
.y63{bottom:506.055000px;}
.yf0{bottom:507.495000px;}
.y268{bottom:509.835000px;}
.y3e{bottom:513.615000px;}
.y111{bottom:514.155000px;}
.y1d4{bottom:515.055000px;}
.y1c0{bottom:516.495000px;}
.y1a0{bottom:517.215000px;}
.y1ff{bottom:519.225000px;}
.y240{bottom:523.515000px;}
.ydf{bottom:523.695000px;}
.y80{bottom:525.495000px;}
.y1d{bottom:526.035000px;}
.ya0{bottom:526.935000px;}
.y16f{bottom:527.295000px;}
.y267{bottom:528.735000px;}
.y12f{bottom:529.095000px;}
.y1fe{bottom:531.105000px;}
.y277{bottom:532.515000px;}
.ycd{bottom:533.055000px;}
.y62{bottom:534.495000px;}
.yb9{bottom:535.935000px;}
.y3d{bottom:542.055000px;}
.y1d3{bottom:543.495000px;}
.y1bd{bottom:544.935000px;}
.y266{bottom:547.815000px;}
.y110{bottom:551.415000px;}
.yde{bottom:552.135000px;}
.y7f{bottom:553.935000px;}
.y1fd{bottom:554.325000px;}
.y1c{bottom:554.475000px;}
.y9f{bottom:555.375000px;}
.y16e{bottom:555.735000px;}
.y12e{bottom:557.535000px;}
.y276{bottom:560.415000px;}
.ycc{bottom:561.675000px;}
.y61{bottom:562.935000px;}
.y19f{bottom:563.655000px;}
.yb8{bottom:564.375000px;}
.yef{bottom:564.555000px;}
.y265{bottom:566.715000px;}
.y3c{bottom:570.495000px;}
.y1d2{bottom:571.935000px;}
.y1bc{bottom:573.375000px;}
.y1fa{bottom:577.545000px;}
.y23d{bottom:579.135000px;}
.y10f{bottom:579.855000px;}
.ydd{bottom:580.575000px;}
.y7e{bottom:582.375000px;}
.y1b{bottom:582.915000px;}
.y16d{bottom:584.175000px;}
.y264{bottom:585.795000px;}
.y12d{bottom:586.155000px;}
.y274{bottom:588.495000px;}
.y1f7{bottom:590.145000px;}
.y60{bottom:591.375000px;}
.y19e{bottom:592.095000px;}
.y9e{bottom:592.995000px;}
.y3b{bottom:598.965000px;}
.y1d1{bottom:600.405000px;}
.y146{bottom:602.025000px;}
.y263{bottom:604.725000px;}
.y10e{bottom:608.325000px;}
.y1f4{bottom:608.865000px;}
.ydc{bottom:609.045000px;}
.y7d{bottom:611.025000px;}
.y1a{bottom:611.385000px;}
.y12c{bottom:614.625000px;}
.y273{bottom:617.145000px;}
.y23c{bottom:619.845000px;}
.y5f{bottom:620.025000px;}
.y19d{bottom:620.745000px;}
.yb7{bottom:621.465000px;}
.y262{bottom:623.625000px;}
.y1ec{bottom:625.830000px;}
.y3a{bottom:627.405000px;}
.y1e1{bottom:628.845000px;}
.y1d0{bottom:629.025000px;}
.yee{bottom:630.465000px;}
.y9d{bottom:630.645000px;}
.y10d{bottom:637.125000px;}
.ydb{bottom:637.665000px;}
.y7c{bottom:639.465000px;}
.y19{bottom:639.825000px;}
.y261{bottom:642.705000px;}
.y12b{bottom:643.065000px;}
.y272{bottom:645.945000px;}
.y23b{bottom:646.305000px;}
.y5e{bottom:648.465000px;}
.y1ee{bottom:649.050000px;}
.y19c{bottom:649.185000px;}
.yb6{bottom:649.905000px;}
.y39{bottom:655.845000px;}
.y1cf{bottom:657.465000px;}
.y145{bottom:658.905000px;}
.y16c{bottom:659.085000px;}
.y260{bottom:661.605000px;}
.yda{bottom:666.105000px;}
.y10c{bottom:666.465000px;}
.y7b{bottom:667.905000px;}
.y18{bottom:668.265000px;}
.y1e9{bottom:672.270000px;}
.y23a{bottom:673.125000px;}
.y5d{bottom:676.905000px;}
.y19b{bottom:677.625000px;}
.yb5{bottom:678.345000px;}
.y12a{bottom:680.505000px;}
.y25f{bottom:680.685000px;}
.y1e5{bottom:684.150000px;}
.y38{bottom:684.285000px;}
.y1ce{bottom:685.905000px;}
.y144{bottom:687.345000px;}
.y16b{bottom:687.525000px;}
.y10b{bottom:695.085000px;}
.y7a{bottom:696.345000px;}
.y239{bottom:701.025000px;}
.y25e{bottom:702.645000px;}
.yd9{bottom:703.545000px;}
.y5c{bottom:705.345000px;}
.y19a{bottom:706.065000px;}
.yb4{bottom:706.785000px;}
.y17{bottom:708.945000px;}
.ycb{bottom:712.725000px;}
.y1cd{bottom:714.345000px;}
.y143{bottom:715.785000px;}
.y16a{bottom:715.965000px;}
.y238{bottom:717.585000px;}
.y37{bottom:721.725000px;}
.y79{bottom:724.785000px;}
.y25d{bottom:730.725000px;}
.y10a{bottom:733.425000px;}
.y5b{bottom:733.785000px;}
.y199{bottom:734.505000px;}
.y1e4{bottom:737.250000px;}
.yca{bottom:741.165000px;}
.y1cc{bottom:742.785000px;}
.y237{bottom:743.865000px;}
.yb3{bottom:744.225000px;}
.y169{bottom:744.405000px;}
.y129{bottom:746.385000px;}
.y36{bottom:750.165000px;}
.y16{bottom:750.705000px;}
.y9c{bottom:753.225000px;}
.y1e3{bottom:756.330000px;}
.y25c{bottom:758.625000px;}
.y127{bottom:761.505000px;}
.y109{bottom:761.865000px;}
.y5a{bottom:762.225000px;}
.y198{bottom:762.945000px;}
.yc9{bottom:769.785000px;}
.y236{bottom:770.145000px;}
.y1cb{bottom:771.225000px;}
.yb2{bottom:772.665000px;}
.y168{bottom:773.025000px;}
.yd8{bottom:778.605000px;}
.y35{bottom:778.785000px;}
.y9b{bottom:781.665000px;}
.y15{bottom:781.845000px;}
.y126{bottom:782.745000px;}
.y1e2{bottom:784.230000px;}
.y25b{bottom:786.525000px;}
.y59{bottom:790.665000px;}
.y197{bottom:791.385000px;}
.y235{bottom:797.865000px;}
.yc8{bottom:798.225000px;}
.y108{bottom:799.305000px;}
.y1ca{bottom:799.665000px;}
.yb1{bottom:801.105000px;}
.y167{bottom:801.465000px;}
.y34{bottom:807.225000px;}
.y128{bottom:807.405000px;}
.y9a{bottom:810.105000px;}
.y14{bottom:812.805000px;}
.yd7{bottom:816.225000px;}
.y78{bottom:819.105000px;}
.y196{bottom:819.825000px;}
.y25a{bottom:820.545000px;}
.y125{bottom:821.265000px;}
.y234{bottom:825.585000px;}
.yc7{bottom:826.665000px;}
.y107{bottom:827.925000px;}
.y58{bottom:828.105000px;}
.yb0{bottom:829.545000px;}
.y166{bottom:829.905000px;}
.y13{bottom:833.505000px;}
.y33{bottom:835.665000px;}
.y123{bottom:837.825000px;}
.y142{bottom:838.545000px;}
.y77{bottom:847.545000px;}
.y195{bottom:848.265000px;}
.y259{bottom:848.445000px;}
.y232{bottom:851.865000px;}
.y12{bottom:854.205000px;}
.yc6{bottom:855.105000px;}
.y106{bottom:856.365000px;}
.y57{bottom:856.545000px;}
.yaf{bottom:858.165000px;}
.y165{bottom:858.345000px;}
.y122{bottom:859.065000px;}
.y32{bottom:864.150000px;}
.y141{bottom:867.210000px;}
.y11{bottom:874.950000px;}
.y76{bottom:876.210000px;}
.y258{bottom:876.570000px;}
.y194{bottom:876.930000px;}
.y231{bottom:878.190000px;}
.yc5{bottom:883.590000px;}
.y124{bottom:883.770000px;}
.y105{bottom:884.850000px;}
.y56{bottom:885.210000px;}
.y164{bottom:886.830000px;}
.y31{bottom:892.590000px;}
.yae{bottom:895.650000px;}
.y271{bottom:896.910000px;}
.y257{bottom:898.530000px;}
.y230{bottom:904.470000px;}
.y75{bottom:904.650000px;}
.y10{bottom:905.910000px;}
.yc4{bottom:912.030000px;}
.y121{bottom:912.210000px;}
.y104{bottom:913.290000px;}
.y55{bottom:913.650000px;}
.y163{bottom:915.270000px;}
.y193{bottom:923.370000px;}
.y140{bottom:924.090000px;}
.yad{bottom:924.270000px;}
.y270{bottom:924.990000px;}
.y256{bottom:926.430000px;}
.y30{bottom:930.030000px;}
.y22e{bottom:930.750000px;}
.y74{bottom:933.090000px;}
.y11f{bottom:933.450000px;}
.yf{bottom:937.050000px;}
.y162{bottom:940.110000px;}
.yc3{bottom:940.470000px;}
.y103{bottom:941.730000px;}
.y54{bottom:942.090000px;}
.y192{bottom:951.810000px;}
.y13f{bottom:952.530000px;}
.y26f{bottom:952.890000px;}
.y255{bottom:954.510000px;}
.y22d{bottom:956.850000px;}
.y120{bottom:957.930000px;}
.y2f{bottom:958.470000px;}
.y161{bottom:959.190000px;}
.y73{bottom:961.530000px;}
.ye{bottom:968.010000px;}
.y102{bottom:970.170000px;}
.y53{bottom:970.530000px;}
.yc2{bottom:977.910000px;}
.y160{bottom:978.090000px;}
.y191{bottom:980.250000px;}
.y1b6{bottom:980.970000px;}
.y26e{bottom:981.690000px;}
.y254{bottom:982.410000px;}
.y22c{bottom:983.130000px;}
.yb{bottom:984.390000px;}
.y2e{bottom:986.910000px;}
.y72{bottom:989.970000px;}
.y52{bottom:998.970000px;}
.y100{bottom:1001.310000px;}
.y101{bottom:1002.390000px;}
.y186{bottom:1003.110000px;}
.yff{bottom:1003.470000px;}
.y7{bottom:1005.090000px;}
.y190{bottom:1008.690000px;}
.y1b5{bottom:1009.410000px;}
.y253{bottom:1010.490000px;}
.yfe{bottom:1013.550000px;}
.y2d{bottom:1015.350000px;}
.y71{bottom:1018.410000px;}
.y18b{bottom:1023.990000px;}
.y185{bottom:1024.890000px;}
.y51{bottom:1027.410000px;}
.y22b{bottom:1037.130000px;}
.y1b4{bottom:1037.850000px;}
.y252{bottom:1038.390000px;}
.y2c{bottom:1043.970000px;}
.yc1{bottom:1044.150000px;}
.y8e{bottom:1046.850000px;}
.y182{bottom:1049.550000px;}
.yfd{bottom:1054.770000px;}
.y50{bottom:1055.850000px;}
.y251{bottom:1057.290000px;}
.y1b3{bottom:1066.290000px;}
.y2b{bottom:1072.410000px;}
.y8d{bottom:1075.290000px;}
.y11e{bottom:1075.470000px;}
.y22a{bottom:1078.170000px;}
.yfc{bottom:1083.390000px;}
.y4f{bottom:1084.290000px;}
.y250{bottom:1085.550000px;}
.y181{bottom:1092.930000px;}
.y6{bottom:1093.830000px;}
.y18a{bottom:1100.670000px;}
.y2a{bottom:1100.850000px;}
.y13e{bottom:1103.730000px;}
.y229{bottom:1105.710000px;}
.y4e{bottom:1112.730000px;}
.y24f{bottom:1113.450000px;}
.y187{bottom:1128.570000px;}
.y180{bottom:1132.020000px;}
.y228{bottom:1132.560000px;}
.y5{bottom:1134.900000px;}
.y4d{bottom:1141.380000px;}
.y29{bottom:1141.560000px;}
.y2{bottom:1173.960000px;}
.y1{bottom:1194.120000px;}
.h29{height:11.160000px;}
.h37{height:11.700000px;}
.h2f{height:11.880000px;}
.h35{height:13.500000px;}
.h2d{height:16.236000px;}
.h34{height:16.380000px;}
.h2e{height:18.000000px;}
.h6{height:20.700000px;}
.h17{height:21.600000px;}
.h22{height:21.780000px;}
.h36{height:22.320000px;}
.h2b{height:22.500000px;}
.h27{height:23.760000px;}
.h33{height:23.796000px;}
.h3c{height:24.300000px;}
.h18{height:24.480000px;}
.h1a{height:24.516000px;}
.h19{height:24.660000px;}
.h15{height:26.100000px;}
.h3d{height:26.280000px;}
.h3e{height:26.316000px;}
.h40{height:27.000000px;}
.h3f{height:27.036000px;}
.h41{height:27.180000px;}
.h1d{height:27.900000px;}
.h1e{height:27.936000px;}
.h1f{height:28.080000px;}
.h23{height:28.116000px;}
.h30{height:33.660000px;}
.h3a{height:33.696000px;}
.h1b{height:38.880000px;}
.h20{height:39.096000px;}
.h28{height:40.550625px;}
.h21{height:43.380000px;}
.h42{height:43.554375px;}
.h38{height:44.820000px;}
.h31{height:45.000000px;}
.h1c{height:45.326250px;}
.h2a{height:45.720000px;}
.hb{height:47.162880px;}
.h39{height:56.916000px;}
.h4{height:57.600000px;}
.h3b{height:58.680000px;}
.ha{height:59.383125px;}
.h16{height:62.327813px;}
.h2{height:65.884219px;}
.h9{height:69.086250px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.h5{height:70.678080px;}
.h3{height:72.474609px;}
.h13{height:75.093750px;}
.h11{height:75.304336px;}
.h24{height:75.960000px;}
.hc{height:103.402969px;}
.h10{height:112.394531px;}
.hf{height:148.042969px;}
.h14{height:160.053750px;}
.h32{height:171.390000px;}
.h2c{height:185.970000px;}
.h12{height:188.362969px;}
.hd{height:196.282969px;}
.he{height:202.762969px;}
.h25{height:892.980000px;}
.h26{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:16.740000px;}
.w29{width:28.620000px;}
.w28{width:28.800000px;}
.w27{width:53.640000px;}
.w20{width:53.820000px;}
.w1d{width:53.856000px;}
.w1f{width:65.340000px;}
.w1e{width:67.140000px;}
.w10{width:77.040000px;}
.w24{width:82.440000px;}
.w25{width:82.476000px;}
.w26{width:82.620000px;}
.wd{width:84.960000px;}
.wb{width:84.996000px;}
.w31{width:86.220000px;}
.w33{width:86.256000px;}
.w32{width:86.400000px;}
.wc{width:87.840000px;}
.w2c{width:93.456000px;}
.w9{width:93.636000px;}
.wa{width:95.220000px;}
.w7{width:95.580000px;}
.w11{width:95.760000px;}
.wf{width:106.416000px;}
.w15{width:131.976000px;}
.w2b{width:134.460000px;}
.w19{width:137.880000px;}
.w1c{width:140.400000px;}
.w2f{width:163.830000px;}
.w2d{width:165.630000px;}
.w6{width:178.230000px;}
.w3{width:192.090000px;}
.w5{width:198.750000px;}
.w1b{width:211.890000px;}
.w18{width:212.250000px;}
.w22{width:241.770000px;}
.w4{width:246.990000px;}
.w17{width:249.510000px;}
.we{width:282.630000px;}
.w21{width:294.015000px;}
.w1a{width:333.930000px;}
.w16{width:334.290000px;}
.w2a{width:393.555000px;}
.w30{width:431.355000px;}
.w8{width:446.655000px;}
.w2e{width:595.185000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w14{width:1262.879981px;}
.w12{width:1262.880000px;}
.w13{width:1263.000000px;}
.x0{left:0.000000px;}
.x46{left:5.040000px;}
.x2b{left:6.300000px;}
.x10{left:8.100000px;}
.x37{left:15.480000px;}
.x3f{left:16.740000px;}
.x35{left:17.820000px;}
.x33{left:19.800000px;}
.x38{left:21.240000px;}
.x32{left:22.320000px;}
.x34{left:23.400000px;}
.x8{left:25.194000px;}
.x6{left:26.994000px;}
.x30{left:28.080000px;}
.x36{left:29.700000px;}
.xa{left:31.680000px;}
.xf{left:34.380000px;}
.x47{left:38.880000px;}
.x44{left:39.960000px;}
.xc{left:43.740000px;}
.x2c{left:47.700000px;}
.x29{left:59.754000px;}
.x45{left:66.090000px;}
.xe{left:67.140000px;}
.x7{left:71.814000px;}
.x40{left:77.940000px;}
.xb{left:84.960000px;}
.x3e{left:88.740000px;}
.x3d{left:93.599981px;}
.x11{left:123.480000px;}
.x2{left:127.655987px;}
.x39{left:135.756000px;}
.x5{left:150.329987px;}
.x1b{left:154.649987px;}
.x1c{left:181.649987px;}
.x58{left:184.890000px;}
.x4{left:197.849987px;}
.x17{left:220.709987px;}
.x14{left:258.509987px;}
.x55{left:262.110000px;}
.x48{left:268.050000px;}
.x18{left:290.234987px;}
.x57{left:291.495000px;}
.x13{left:302.474987px;}
.x2a{left:305.895000px;}
.x9{left:319.755000px;}
.x49{left:321.915000px;}
.x1d{left:327.674987px;}
.x22{left:330.374987px;}
.x21{left:336.674987px;}
.x12{left:345.494987px;}
.x56{left:355.575000px;}
.x15{left:369.614987px;}
.x59{left:377.715000px;}
.x4d{left:386.175000px;}
.x4a{left:389.055000px;}
.x24{left:401.834987px;}
.x23{left:408.134987px;}
.x1e{left:414.434987px;}
.x3a{left:418.395000px;}
.x50{left:439.815000px;}
.x16{left:446.474987px;}
.x4b{left:454.395000px;}
.x5a{left:464.115000px;}
.x4e{left:468.615000px;}
.x26{left:474.584987px;}
.x25{left:480.884987px;}
.x2d{left:495.105000px;}
.x1f{left:497.084987px;}
.x4c{left:508.245000px;}
.x51{left:522.465000px;}
.x53{left:532.904987px;}
.x28{left:548.564987px;}
.x4f{left:551.085000px;}
.x27{left:554.864987px;}
.x41{left:556.095000px;}
.xd{left:566.745000px;}
.x2e{left:590.325000px;}
.x20{left:601.664987px;}
.x52{left:604.905000px;}
.x5b{left:636.585000px;}
.x2f{left:675.330000px;}
.x54{left:734.549987px;}
.x19{left:748.769987px;}
.x3b{left:752.370000px;}
.x3{left:757.229987px;}
.x31{left:763.170000px;}
.x1{left:765.509987px;}
.x3c{left:767.669987px;}
.x42{left:805.965000px;}
.x1a{left:827.429987px;}
.x43{left:1018.590000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-12.160000pt;}
.v5{vertical-align:-8.960000pt;}
.v3{vertical-align:-5.120000pt;}
.va{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:5.120000pt;}
.v9{vertical-align:12.160000pt;}
.vb{vertical-align:14.080000pt;}
.v11{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:35.200000pt;}
.vd{vertical-align:39.680000pt;}
.vc{vertical-align:45.440000pt;}
.v7{vertical-align:57.600000pt;}
.vf{vertical-align:63.360000pt;}
.ve{vertical-align:75.520000pt;}
.v8{vertical-align:82.560000pt;}
.ls3{letter-spacing:-1.552000pt;}
.lse{letter-spacing:-1.045333pt;}
.ls10{letter-spacing:-1.008000pt;}
.ls18{letter-spacing:-0.912000pt;}
.ls44{letter-spacing:-0.874667pt;}
.ls43{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.736000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.368533pt;}
.ls3c{letter-spacing:-0.301867pt;}
.ls9{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.233067pt;}
.ls12{letter-spacing:-0.158933pt;}
.ls15{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls39{letter-spacing:-0.094933pt;}
.ls51{letter-spacing:-0.089067pt;}
.ls34{letter-spacing:-0.079467pt;}
.ls3b{letter-spacing:-0.047360pt;}
.ls4d{letter-spacing:-0.015360pt;}
.ls4e{letter-spacing:-0.011520pt;}
.ls4f{letter-spacing:-0.007680pt;}
.ls3a{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.001280pt;}
.ls4a{letter-spacing:0.003840pt;}
.ls4b{letter-spacing:0.007680pt;}
.ls4c{letter-spacing:0.011520pt;}
.ls40{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.057600pt;}
.ls2e{letter-spacing:0.061440pt;}
.ls48{letter-spacing:0.062720pt;}
.ls1b{letter-spacing:0.079360pt;}
.ls33{letter-spacing:0.079467pt;}
.ls1e{letter-spacing:0.122880pt;}
.ls2c{letter-spacing:0.130560pt;}
.ls49{letter-spacing:0.211627pt;}
.ls20{letter-spacing:0.212480pt;}
.ls28{letter-spacing:0.214933pt;}
.ls17{letter-spacing:0.227733pt;}
.ls38{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.232960pt;}
.ls4{letter-spacing:0.233067pt;}
.ls2f{letter-spacing:0.235520pt;}
.ls1{letter-spacing:0.253867pt;}
.ls14{letter-spacing:0.271360pt;}
.ls7{letter-spacing:0.271467pt;}
.ls3d{letter-spacing:0.280320pt;}
.ls3e{letter-spacing:0.280533pt;}
.ls42{letter-spacing:0.338133pt;}
.ls11{letter-spacing:0.504533pt;}
.lsf{letter-spacing:0.544000pt;}
.ls41{letter-spacing:0.545280pt;}
.ls36{letter-spacing:0.636160pt;}
.ls50{letter-spacing:0.645333pt;}
.ls37{letter-spacing:0.742827pt;}
.ls16{letter-spacing:0.912000pt;}
.ls46{letter-spacing:2.016000pt;}
.ls2d{letter-spacing:2.106880pt;}
.ls26{letter-spacing:2.580480pt;}
.ls2b{letter-spacing:2.746880pt;}
.ls47{letter-spacing:2.920960pt;}
.ls1a{letter-spacing:3.471360pt;}
.ls21{letter-spacing:3.509120pt;}
.ls24{letter-spacing:3.569280pt;}
.ls3f{letter-spacing:6.031360pt;}
.ls27{letter-spacing:7.311360pt;}
.ls25{letter-spacing:9.082880pt;}
.ls13{letter-spacing:11.151360pt;}
.ls22{letter-spacing:12.372480pt;}
.ls32{letter-spacing:12.431360pt;}
.ls23{letter-spacing:12.976640pt;}
.ls31{letter-spacing:13.071360pt;}
.ls45{letter-spacing:14.351360pt;}
.ls2a{letter-spacing:14.852480pt;}
.ls30{letter-spacing:14.906880pt;}
.ls1d{letter-spacing:15.200000pt;}
.ls1f{letter-spacing:16.309120pt;}
.ls29{letter-spacing:18.106880pt;}
.ls1c{letter-spacing:20.149120pt;}
.ls19{letter-spacing:52.751360pt;}
.ws15{word-spacing:-58.880000pt;}
.ws0{word-spacing:-20.767787pt;}
.ws1{word-spacing:-18.606080pt;}
.ws2a{word-spacing:-18.384640pt;}
.ws13{word-spacing:-17.280640pt;}
.wsc{word-spacing:-16.912640pt;}
.wse{word-spacing:-16.873173pt;}
.ws9{word-spacing:-16.640107pt;}
.ws7{word-spacing:-16.601707pt;}
.ws5{word-spacing:-16.368640pt;}
.ws8{word-spacing:-16.271573pt;}
.ws29{word-spacing:-16.233173pt;}
.wsb{word-spacing:-16.135573pt;}
.ws6{word-spacing:-16.097173pt;}
.wsd{word-spacing:-16.000107pt;}
.wsf{word-spacing:-15.961707pt;}
.ws2b{word-spacing:-15.728640pt;}
.wsa{word-spacing:-15.632640pt;}
.ws11{word-spacing:-15.360640pt;}
.ws2c{word-spacing:-15.323307pt;}
.ws27{word-spacing:-15.311360pt;}
.ws3{word-spacing:-14.816640pt;}
.ws20{word-spacing:-14.767360pt;}
.ws23{word-spacing:-14.720000pt;}
.ws32{word-spacing:-14.678293pt;}
.ws1f{word-spacing:-14.672427pt;}
.ws14{word-spacing:-13.534613pt;}
.ws17{word-spacing:-13.168533pt;}
.ws16{word-spacing:-12.953600pt;}
.ws24{word-spacing:-10.599893pt;}
.ws26{word-spacing:-10.599680pt;}
.ws12{word-spacing:-10.319360pt;}
.ws31{word-spacing:-10.253013pt;}
.ws1e{word-spacing:-10.239893pt;}
.ws10{word-spacing:-10.160427pt;}
.ws2f{word-spacing:-9.619200pt;}
.ws30{word-spacing:-9.615360pt;}
.ws2d{word-spacing:-9.611520pt;}
.ws22{word-spacing:-9.607680pt;}
.ws21{word-spacing:-9.603840pt;}
.ws2e{word-spacing:-9.592320pt;}
.ws28{word-spacing:-9.519360pt;}
.ws18{word-spacing:-9.433600pt;}
.ws2{word-spacing:-9.303040pt;}
.ws25{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
.ws19{word-spacing:64.298880pt;}
.ws1a{word-spacing:113.578880pt;}
.ws1b{word-spacing:118.058880pt;}
.ws1c{word-spacing:123.178880pt;}
.ws1d{word-spacing:274.858880pt;}
._22{margin-left:-12.530133pt;}
._21{margin-left:-6.746453pt;}
._1a{margin-left:-4.754773pt;}
._10{margin-left:-3.063680pt;}
._1{margin-left:-1.530880pt;}
._0{width:1.297280pt;}
._7{width:2.767360pt;}
._8{width:3.709440pt;}
._d{width:5.416960pt;}
._13{width:6.888960pt;}
._5{width:7.831040pt;}
._6{width:8.771200pt;}
._4{width:9.891840pt;}
._3{width:11.069440pt;}
._18{width:12.043947pt;}
._14{width:13.026773pt;}
._19{width:14.053120pt;}
._c{width:15.191040pt;}
._20{width:16.401493pt;}
._17{width:18.117547pt;}
._16{width:19.212373pt;}
._12{width:20.649387pt;}
._11{width:21.608960pt;}
._28{width:22.539947pt;}
._a{width:23.434240pt;}
._9{width:24.906240pt;}
._b{width:26.021120pt;}
._15{width:27.201493pt;}
._1d{width:28.603733pt;}
._2e{width:29.582933pt;}
._1f{width:30.558720pt;}
._1e{width:31.500800pt;}
._2a{width:32.737280pt;}
._29{width:35.351040pt;}
._25{width:37.035520pt;}
._24{width:37.974400pt;}
._23{width:38.919680pt;}
._26{width:41.510400pt;}
._27{width:43.051947pt;}
._1b{width:44.748800pt;}
._1c{width:46.218880pt;}
._e{width:49.964800pt;}
._2{width:51.247787pt;}
._2f{width:54.224640pt;}
._2b{width:83.256320pt;}
._2c{width:84.430507pt;}
._2d{width:230.846293pt;}
._f{width:751.770027pt;}
.fs2{font-size:29.440000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y1ea{bottom:-3.040000pt;}
.y0{bottom:0.000000pt;}
.y1eb{bottom:1.920000pt;}
.y227{bottom:2.074667pt;}
.y1f0{bottom:2.080000pt;}
.y1fb{bottom:2.240000pt;}
.y216{bottom:2.400000pt;}
.y1fc{bottom:2.560000pt;}
.y1e7{bottom:2.720000pt;}
.y224{bottom:2.880000pt;}
.y210{bottom:3.040000pt;}
.ya{bottom:3.200000pt;}
.y18f{bottom:3.360000pt;}
.yd{bottom:3.840000pt;}
.y211{bottom:4.000000pt;}
.y1f5{bottom:4.200000pt;}
.y20e{bottom:4.320000pt;}
.y1f8{bottom:4.960000pt;}
.y1f6{bottom:6.440000pt;}
.y20f{bottom:6.560000pt;}
.y14a{bottom:6.720000pt;}
.y153{bottom:6.760000pt;}
.y15c{bottom:6.874667pt;}
.y14b{bottom:6.880000pt;}
.y1f1{bottom:7.040000pt;}
.y177{bottom:7.200000pt;}
.y189{bottom:7.226667pt;}
.y20a{bottom:7.546667pt;}
.y1e8{bottom:7.680000pt;}
.y222{bottom:7.840000pt;}
.y1f9{bottom:8.000000pt;}
.y14d{bottom:9.280000pt;}
.y152{bottom:9.320000pt;}
.y15b{bottom:9.434667pt;}
.y14f{bottom:9.440000pt;}
.y22f{bottom:10.720000pt;}
.y148{bottom:10.880000pt;}
.y233{bottom:10.920000pt;}
.y174{bottom:11.200000pt;}
.y275{bottom:11.226667pt;}
.y17e{bottom:11.354667pt;}
.y175{bottom:11.360000pt;}
.y188{bottom:11.386667pt;}
.y24d{bottom:11.514667pt;}
.y23f{bottom:11.520000pt;}
.y23e{bottom:11.680000pt;}
.y203{bottom:11.840000pt;}
.y225{bottom:11.994667pt;}
.y1ef{bottom:12.000000pt;}
.y1e6{bottom:12.640000pt;}
.y20b{bottom:12.666667pt;}
.y223{bottom:12.800000pt;}
.y20c{bottom:13.146667pt;}
.y15f{bottom:13.280000pt;}
.y184{bottom:15.200000pt;}
.y201{bottom:16.800000pt;}
.y204{bottom:16.960000pt;}
.y21b{bottom:17.280000pt;}
.y220{bottom:18.074667pt;}
.yc{bottom:18.400000pt;}
.y9{bottom:20.320000pt;}
.y218{bottom:21.760000pt;}
.y226{bottom:21.914667pt;}
.y202{bottom:21.920000pt;}
.y21d{bottom:21.960000pt;}
.y15e{bottom:22.240000pt;}
.y18e{bottom:25.440000pt;}
.y183{bottom:26.080000pt;}
.y21a{bottom:27.400000pt;}
.y21f{bottom:28.154667pt;}
.y217{bottom:31.840000pt;}
.y205{bottom:32.000000pt;}
.y1ed{bottom:32.640000pt;}
.y8{bottom:37.440000pt;}
.y18d{bottom:42.240000pt;}
.y4{bottom:51.040000pt;}
.y18c{bottom:59.200000pt;}
.y208{bottom:68.160000pt;}
.y3{bottom:68.992000pt;}
.y207{bottom:78.080000pt;}
.y1f3{bottom:79.680000pt;}
.y15d{bottom:97.792000pt;}
.yc0{bottom:98.272000pt;}
.y1ad{bottom:98.912000pt;}
.y17f{bottom:99.072000pt;}
.y13d{bottom:100.192000pt;}
.y4c{bottom:102.272000pt;}
.yed{bottom:103.392000pt;}
.y1e0{bottom:103.712000pt;}
.y1b2{bottom:105.312000pt;}
.yac{bottom:106.272000pt;}
.y1c9{bottom:111.552000pt;}
.y70{bottom:112.992000pt;}
.y24e{bottom:113.952000pt;}
.y99{bottom:114.272000pt;}
.ybf{bottom:123.552000pt;}
.y17d{bottom:123.872000pt;}
.y1ac{bottom:124.192000pt;}
.y13c{bottom:125.472000pt;}
.y4b{bottom:127.552000pt;}
.yec{bottom:128.672000pt;}
.y1df{bottom:128.992000pt;}
.yfb{bottom:129.632000pt;}
.y1b1{bottom:130.272000pt;}
.y8c{bottom:131.552000pt;}
.y15a{bottom:132.352000pt;}
.y21e{bottom:133.152000pt;}
.y1c8{bottom:136.826667pt;}
.y6f{bottom:138.266667pt;}
.y94{bottom:139.546667pt;}
.y11d{bottom:141.306667pt;}
.y28{bottom:146.586667pt;}
.y1b0{bottom:147.066667pt;}
.ybe{bottom:148.826667pt;}
.y1ab{bottom:149.466667pt;}
.y13b{bottom:150.746667pt;}
.y4a{bottom:152.826667pt;}
.y24c{bottom:152.986667pt;}
.yeb{bottom:153.946667pt;}
.y159{bottom:154.266667pt;}
.yfa{bottom:154.906667pt;}
.y8b{bottom:156.826667pt;}
.y1c7{bottom:162.106667pt;}
.y6e{bottom:163.546667pt;}
.y221{bottom:163.706667pt;}
.y98{bottom:164.826667pt;}
.y11c{bottom:166.586667pt;}
.y1af{bottom:172.026667pt;}
.y93{bottom:172.986667pt;}
.y17c{bottom:173.626667pt;}
.y1aa{bottom:174.746667pt;}
.y158{bottom:176.186667pt;}
.y24b{bottom:176.986667pt;}
.y49{bottom:178.106667pt;}
.yea{bottom:179.226667pt;}
.y1de{bottom:179.546667pt;}
.yf9{bottom:180.346667pt;}
.yab{bottom:182.106667pt;}
.y27{bottom:182.426667pt;}
.y13a{bottom:184.026667pt;}
.y219{bottom:185.946667pt;}
.y1c6{bottom:187.386667pt;}
.y6d{bottom:188.826667pt;}
.y8a{bottom:190.106667pt;}
.y11b{bottom:192.026667pt;}
.y157{bottom:198.106667pt;}
.y17b{bottom:198.426667pt;}
.y1a9{bottom:200.026667pt;}
.y24a{bottom:200.986667pt;}
.y1ae{bottom:201.946667pt;}
.y48{bottom:203.386667pt;}
.ye9{bottom:204.506667pt;}
.y1dd{bottom:204.826667pt;}
.y92{bottom:206.266667pt;}
.yf8{bottom:206.426667pt;}
.yaa{bottom:207.386667pt;}
.y26{bottom:207.866667pt;}
.yd6{bottom:208.666667pt;}
.y139{bottom:209.306667pt;}
.y1c5{bottom:212.826667pt;}
.y6c{bottom:214.106667pt;}
.y97{bottom:215.386667pt;}
.y21c{bottom:216.546667pt;}
.y11a{bottom:218.266667pt;}
.y156{bottom:219.866667pt;}
.y17a{bottom:223.386667pt;}
.y89{bottom:223.546667pt;}
.y249{bottom:224.986667pt;}
.y1a8{bottom:225.306667pt;}
.y47{bottom:228.826667pt;}
.ye8{bottom:229.786667pt;}
.y1dc{bottom:230.106667pt;}
.yf7{bottom:231.706667pt;}
.ya9{bottom:232.666667pt;}
.y138{bottom:234.586667pt;}
.y206{bottom:237.346667pt;}
.y1c4{bottom:238.106667pt;}
.y6b{bottom:239.386667pt;}
.y1b9{bottom:240.666667pt;}
.y155{bottom:241.786667pt;}
.y119{bottom:243.546667pt;}
.y25{bottom:243.866667pt;}
.yd5{bottom:244.666667pt;}
.y179{bottom:248.186667pt;}
.y96{bottom:248.666667pt;}
.y248{bottom:249.146667pt;}
.y1a7{bottom:250.586667pt;}
.y46{bottom:254.106667pt;}
.ye7{bottom:255.066667pt;}
.y1db{bottom:255.386667pt;}
.y88{bottom:256.666667pt;}
.yf6{bottom:256.986667pt;}
.ya8{bottom:257.946667pt;}
.y137{bottom:259.866667pt;}
.y154{bottom:263.706667pt;}
.y6a{bottom:264.666667pt;}
.y1b8{bottom:265.946667pt;}
.y118{bottom:268.986667pt;}
.yd4{bottom:270.106667pt;}
.y178{bottom:273.146667pt;}
.y1bf{bottom:273.946667pt;}
.y1c3{bottom:274.106667pt;}
.y215{bottom:277.826667pt;}
.y45{bottom:279.386667pt;}
.y24{bottom:279.866667pt;}
.ye6{bottom:280.346667pt;}
.y1da{bottom:280.666667pt;}
.y87{bottom:281.946667pt;}
.y95{bottom:282.106667pt;}
.yf5{bottom:282.586667pt;}
.ya7{bottom:283.386667pt;}
.y136{bottom:285.306667pt;}
.y151{bottom:285.626667pt;}
.y214{bottom:288.866667pt;}
.y69{bottom:289.946667pt;}
.y1b7{bottom:291.426667pt;}
.y1a6{bottom:292.066667pt;}
.y117{bottom:295.106667pt;}
.y247{bottom:297.186667pt;}
.y176{bottom:297.986667pt;}
.y1be{bottom:299.426667pt;}
.y213{bottom:299.586667pt;}
.y44{bottom:304.706667pt;}
.ye5{bottom:305.666667pt;}
.yd3{bottom:305.986667pt;}
.y86{bottom:307.426667pt;}
.ya6{bottom:308.706667pt;}
.y135{bottom:310.626667pt;}
.y68{bottom:315.426667pt;}
.y23{bottom:315.746667pt;}
.yf4{bottom:316.706667pt;}
.y1a5{bottom:317.346667pt;}
.y212{bottom:320.066667pt;}
.y116{bottom:320.386667pt;}
.y246{bottom:321.186667pt;}
.y173{bottom:323.586667pt;}
.y1bb{bottom:324.706667pt;}
.y150{bottom:329.346667pt;}
.y43{bottom:329.986667pt;}
.ye4{bottom:331.106667pt;}
.yd2{bottom:331.266667pt;}
.y1d9{bottom:331.426667pt;}
.y85{bottom:332.706667pt;}
.ybd{bottom:333.986667pt;}
.y134{bottom:335.906667pt;}
.y91{bottom:340.706667pt;}
.y22{bottom:341.026667pt;}
.ya5{bottom:341.986667pt;}
.y1a4{bottom:342.626667pt;}
.y245{bottom:345.186667pt;}
.y115{bottom:345.826667pt;}
.y67{bottom:348.706667pt;}
.y1ba{bottom:349.986667pt;}
.y14e{bottom:351.266667pt;}
.y20d{bottom:353.346667pt;}
.y42{bottom:355.266667pt;}
.ye3{bottom:356.386667pt;}
.yd1{bottom:356.546667pt;}
.y1d8{bottom:356.706667pt;}
.y84{bottom:357.986667pt;}
.ybc{bottom:359.266667pt;}
.y133{bottom:361.186667pt;}
.y26d{bottom:363.426667pt;}
.y90{bottom:365.986667pt;}
.y21{bottom:366.306667pt;}
.ya4{bottom:367.266667pt;}
.y1a3{bottom:367.906667pt;}
.y209{bottom:368.546667pt;}
.y172{bottom:368.706667pt;}
.y244{bottom:369.346667pt;}
.y114{bottom:372.066667pt;}
.y14c{bottom:373.186667pt;}
.y66{bottom:373.986667pt;}
.yf3{bottom:375.266667pt;}
.y26c{bottom:380.386667pt;}
.y41{bottom:380.546667pt;}
.ye2{bottom:381.666667pt;}
.yd0{bottom:381.826667pt;}
.y1d7{bottom:381.986667pt;}
.y83{bottom:383.266667pt;}
.ybb{bottom:384.546667pt;}
.y132{bottom:386.466667pt;}
.y1f2{bottom:390.333333pt;}
.y8f{bottom:391.266667pt;}
.y20{bottom:391.586667pt;}
.ya3{bottom:392.546667pt;}
.y243{bottom:393.346667pt;}
.y149{bottom:395.746667pt;}
.y113{bottom:397.506667pt;}
.y65{bottom:399.266667pt;}
.yf2{bottom:400.546667pt;}
.y171{bottom:402.146667pt;}
.y26b{bottom:402.626667pt;}
.y40{bottom:405.826667pt;}
.ye1{bottom:406.946667pt;}
.y1d6{bottom:407.266667pt;}
.y1c2{bottom:408.546667pt;}
.y1a2{bottom:409.186667pt;}
.ycf{bottom:415.106667pt;}
.y147{bottom:415.746667pt;}
.y82{bottom:416.546667pt;}
.y1f{bottom:416.866667pt;}
.y242{bottom:417.346667pt;}
.ya2{bottom:417.826667pt;}
.y26a{bottom:419.426667pt;}
.y131{bottom:419.746667pt;}
.y64{bottom:424.546667pt;}
.yf1{bottom:425.826667pt;}
.y200{bottom:430.973333pt;}
.y3f{bottom:431.106667pt;}
.y112{bottom:431.586667pt;}
.y1d5{bottom:432.546667pt;}
.y1c1{bottom:433.826667pt;}
.y1a1{bottom:434.466667pt;}
.y269{bottom:436.386667pt;}
.ye0{bottom:440.226667pt;}
.yce{bottom:440.706667pt;}
.y241{bottom:441.346667pt;}
.y81{bottom:441.826667pt;}
.y1e{bottom:442.146667pt;}
.ya1{bottom:443.106667pt;}
.yba{bottom:443.266667pt;}
.y170{bottom:443.426667pt;}
.y130{bottom:445.026667pt;}
.y63{bottom:449.826667pt;}
.yf0{bottom:451.106667pt;}
.y268{bottom:453.186667pt;}
.y3e{bottom:456.546667pt;}
.y111{bottom:457.026667pt;}
.y1d4{bottom:457.826667pt;}
.y1c0{bottom:459.106667pt;}
.y1a0{bottom:459.746667pt;}
.y1ff{bottom:461.533333pt;}
.y240{bottom:465.346667pt;}
.ydf{bottom:465.506667pt;}
.y80{bottom:467.106667pt;}
.y1d{bottom:467.586667pt;}
.ya0{bottom:468.386667pt;}
.y16f{bottom:468.706667pt;}
.y267{bottom:469.986667pt;}
.y12f{bottom:470.306667pt;}
.y1fe{bottom:472.093333pt;}
.y277{bottom:473.346667pt;}
.ycd{bottom:473.826667pt;}
.y62{bottom:475.106667pt;}
.yb9{bottom:476.386667pt;}
.y3d{bottom:481.826667pt;}
.y1d3{bottom:483.106667pt;}
.y1bd{bottom:484.386667pt;}
.y266{bottom:486.946667pt;}
.y110{bottom:490.146667pt;}
.yde{bottom:490.786667pt;}
.y7f{bottom:492.386667pt;}
.y1fd{bottom:492.733333pt;}
.y1c{bottom:492.866667pt;}
.y9f{bottom:493.666667pt;}
.y16e{bottom:493.986667pt;}
.y12e{bottom:495.586667pt;}
.y276{bottom:498.146667pt;}
.ycc{bottom:499.266667pt;}
.y61{bottom:500.386667pt;}
.y19f{bottom:501.026667pt;}
.yb8{bottom:501.666667pt;}
.yef{bottom:501.826667pt;}
.y265{bottom:503.746667pt;}
.y3c{bottom:507.106667pt;}
.y1d2{bottom:508.386667pt;}
.y1bc{bottom:509.666667pt;}
.y1fa{bottom:513.373333pt;}
.y23d{bottom:514.786667pt;}
.y10f{bottom:515.426667pt;}
.ydd{bottom:516.066667pt;}
.y7e{bottom:517.666667pt;}
.y1b{bottom:518.146667pt;}
.y16d{bottom:519.266667pt;}
.y264{bottom:520.706667pt;}
.y12d{bottom:521.026667pt;}
.y274{bottom:523.106667pt;}
.y1f7{bottom:524.573333pt;}
.y60{bottom:525.666667pt;}
.y19e{bottom:526.306667pt;}
.y9e{bottom:527.106667pt;}
.y3b{bottom:532.413333pt;}
.y1d1{bottom:533.693333pt;}
.y146{bottom:535.133333pt;}
.y263{bottom:537.533333pt;}
.y10e{bottom:540.733333pt;}
.y1f4{bottom:541.213333pt;}
.ydc{bottom:541.373333pt;}
.y7d{bottom:543.133333pt;}
.y1a{bottom:543.453333pt;}
.y12c{bottom:546.333333pt;}
.y273{bottom:548.573333pt;}
.y23c{bottom:550.973333pt;}
.y5f{bottom:551.133333pt;}
.y19d{bottom:551.773333pt;}
.yb7{bottom:552.413333pt;}
.y262{bottom:554.333333pt;}
.y1ec{bottom:556.293333pt;}
.y3a{bottom:557.693333pt;}
.y1e1{bottom:558.973333pt;}
.y1d0{bottom:559.133333pt;}
.yee{bottom:560.413333pt;}
.y9d{bottom:560.573333pt;}
.y10d{bottom:566.333333pt;}
.ydb{bottom:566.813333pt;}
.y7c{bottom:568.413333pt;}
.y19{bottom:568.733333pt;}
.y261{bottom:571.293333pt;}
.y12b{bottom:571.613333pt;}
.y272{bottom:574.173333pt;}
.y23b{bottom:574.493333pt;}
.y5e{bottom:576.413333pt;}
.y1ee{bottom:576.933333pt;}
.y19c{bottom:577.053333pt;}
.yb6{bottom:577.693333pt;}
.y39{bottom:582.973333pt;}
.y1cf{bottom:584.413333pt;}
.y145{bottom:585.693333pt;}
.y16c{bottom:585.853333pt;}
.y260{bottom:588.093333pt;}
.yda{bottom:592.093333pt;}
.y10c{bottom:592.413333pt;}
.y7b{bottom:593.693333pt;}
.y18{bottom:594.013333pt;}
.y1e9{bottom:597.573333pt;}
.y23a{bottom:598.333333pt;}
.y5d{bottom:601.693333pt;}
.y19b{bottom:602.333333pt;}
.yb5{bottom:602.973333pt;}
.y12a{bottom:604.893333pt;}
.y25f{bottom:605.053333pt;}
.y1e5{bottom:608.133333pt;}
.y38{bottom:608.253333pt;}
.y1ce{bottom:609.693333pt;}
.y144{bottom:610.973333pt;}
.y16b{bottom:611.133333pt;}
.y10b{bottom:617.853333pt;}
.y7a{bottom:618.973333pt;}
.y239{bottom:623.133333pt;}
.y25e{bottom:624.573333pt;}
.yd9{bottom:625.373333pt;}
.y5c{bottom:626.973333pt;}
.y19a{bottom:627.613333pt;}
.yb4{bottom:628.253333pt;}
.y17{bottom:630.173333pt;}
.ycb{bottom:633.533333pt;}
.y1cd{bottom:634.973333pt;}
.y143{bottom:636.253333pt;}
.y16a{bottom:636.413333pt;}
.y238{bottom:637.853333pt;}
.y37{bottom:641.533333pt;}
.y79{bottom:644.253333pt;}
.y25d{bottom:649.533333pt;}
.y10a{bottom:651.933333pt;}
.y5b{bottom:652.253333pt;}
.y199{bottom:652.893333pt;}
.y1e4{bottom:655.333333pt;}
.yca{bottom:658.813333pt;}
.y1cc{bottom:660.253333pt;}
.y237{bottom:661.213333pt;}
.yb3{bottom:661.533333pt;}
.y169{bottom:661.693333pt;}
.y129{bottom:663.453333pt;}
.y36{bottom:666.813333pt;}
.y16{bottom:667.293333pt;}
.y9c{bottom:669.533333pt;}
.y1e3{bottom:672.293333pt;}
.y25c{bottom:674.333333pt;}
.y127{bottom:676.893333pt;}
.y109{bottom:677.213333pt;}
.y5a{bottom:677.533333pt;}
.y198{bottom:678.173333pt;}
.yc9{bottom:684.253333pt;}
.y236{bottom:684.573333pt;}
.y1cb{bottom:685.533333pt;}
.yb2{bottom:686.813333pt;}
.y168{bottom:687.133333pt;}
.yd8{bottom:692.093333pt;}
.y35{bottom:692.253333pt;}
.y9b{bottom:694.813333pt;}
.y15{bottom:694.973333pt;}
.y126{bottom:695.773333pt;}
.y1e2{bottom:697.093333pt;}
.y25b{bottom:699.133333pt;}
.y59{bottom:702.813333pt;}
.y197{bottom:703.453333pt;}
.y235{bottom:709.213333pt;}
.yc8{bottom:709.533333pt;}
.y108{bottom:710.493333pt;}
.y1ca{bottom:710.813333pt;}
.yb1{bottom:712.093333pt;}
.y167{bottom:712.413333pt;}
.y34{bottom:717.533333pt;}
.y128{bottom:717.693333pt;}
.y9a{bottom:720.093333pt;}
.y14{bottom:722.493333pt;}
.yd7{bottom:725.533333pt;}
.y78{bottom:728.093333pt;}
.y196{bottom:728.733333pt;}
.y25a{bottom:729.373333pt;}
.y125{bottom:730.013333pt;}
.y234{bottom:733.853333pt;}
.yc7{bottom:734.813333pt;}
.y107{bottom:735.933333pt;}
.y58{bottom:736.093333pt;}
.yb0{bottom:737.373333pt;}
.y166{bottom:737.693333pt;}
.y13{bottom:740.893333pt;}
.y33{bottom:742.813333pt;}
.y123{bottom:744.733333pt;}
.y142{bottom:745.373333pt;}
.y77{bottom:753.373333pt;}
.y195{bottom:754.013333pt;}
.y259{bottom:754.173333pt;}
.y232{bottom:757.213333pt;}
.y12{bottom:759.293333pt;}
.yc6{bottom:760.093333pt;}
.y106{bottom:761.213333pt;}
.y57{bottom:761.373333pt;}
.yaf{bottom:762.813333pt;}
.y165{bottom:762.973333pt;}
.y122{bottom:763.613333pt;}
.y32{bottom:768.133333pt;}
.y141{bottom:770.853333pt;}
.y11{bottom:777.733333pt;}
.y76{bottom:778.853333pt;}
.y258{bottom:779.173333pt;}
.y194{bottom:779.493333pt;}
.y231{bottom:780.613333pt;}
.yc5{bottom:785.413333pt;}
.y124{bottom:785.573333pt;}
.y105{bottom:786.533333pt;}
.y56{bottom:786.853333pt;}
.y164{bottom:788.293333pt;}
.y31{bottom:793.413333pt;}
.yae{bottom:796.133333pt;}
.y271{bottom:797.253333pt;}
.y257{bottom:798.693333pt;}
.y230{bottom:803.973333pt;}
.y75{bottom:804.133333pt;}
.y10{bottom:805.253333pt;}
.yc4{bottom:810.693333pt;}
.y121{bottom:810.853333pt;}
.y104{bottom:811.813333pt;}
.y55{bottom:812.133333pt;}
.y163{bottom:813.573333pt;}
.y193{bottom:820.773333pt;}
.y140{bottom:821.413333pt;}
.yad{bottom:821.573333pt;}
.y270{bottom:822.213333pt;}
.y256{bottom:823.493333pt;}
.y30{bottom:826.693333pt;}
.y22e{bottom:827.333333pt;}
.y74{bottom:829.413333pt;}
.y11f{bottom:829.733333pt;}
.yf{bottom:832.933333pt;}
.y162{bottom:835.653333pt;}
.yc3{bottom:835.973333pt;}
.y103{bottom:837.093333pt;}
.y54{bottom:837.413333pt;}
.y192{bottom:846.053333pt;}
.y13f{bottom:846.693333pt;}
.y26f{bottom:847.013333pt;}
.y255{bottom:848.453333pt;}
.y22d{bottom:850.533333pt;}
.y120{bottom:851.493333pt;}
.y2f{bottom:851.973333pt;}
.y161{bottom:852.613333pt;}
.y73{bottom:854.693333pt;}
.ye{bottom:860.453333pt;}
.y102{bottom:862.373333pt;}
.y53{bottom:862.693333pt;}
.yc2{bottom:869.253333pt;}
.y160{bottom:869.413333pt;}
.y191{bottom:871.333333pt;}
.y1b6{bottom:871.973333pt;}
.y26e{bottom:872.613333pt;}
.y254{bottom:873.253333pt;}
.y22c{bottom:873.893333pt;}
.yb{bottom:875.013333pt;}
.y2e{bottom:877.253333pt;}
.y72{bottom:879.973333pt;}
.y52{bottom:887.973333pt;}
.y100{bottom:890.053333pt;}
.y101{bottom:891.013333pt;}
.y186{bottom:891.653333pt;}
.yff{bottom:891.973333pt;}
.y7{bottom:893.413333pt;}
.y190{bottom:896.613333pt;}
.y1b5{bottom:897.253333pt;}
.y253{bottom:898.213333pt;}
.yfe{bottom:900.933333pt;}
.y2d{bottom:902.533333pt;}
.y71{bottom:905.253333pt;}
.y18b{bottom:910.213333pt;}
.y185{bottom:911.013333pt;}
.y51{bottom:913.253333pt;}
.y22b{bottom:921.893333pt;}
.y1b4{bottom:922.533333pt;}
.y252{bottom:923.013333pt;}
.y2c{bottom:927.973333pt;}
.yc1{bottom:928.133333pt;}
.y8e{bottom:930.533333pt;}
.y182{bottom:932.933333pt;}
.yfd{bottom:937.573333pt;}
.y50{bottom:938.533333pt;}
.y251{bottom:939.813333pt;}
.y1b3{bottom:947.813333pt;}
.y2b{bottom:953.253333pt;}
.y8d{bottom:955.813333pt;}
.y11e{bottom:955.973333pt;}
.y22a{bottom:958.373333pt;}
.yfc{bottom:963.013333pt;}
.y4f{bottom:963.813333pt;}
.y250{bottom:964.933333pt;}
.y181{bottom:971.493333pt;}
.y6{bottom:972.293333pt;}
.y18a{bottom:978.373333pt;}
.y2a{bottom:978.533333pt;}
.y13e{bottom:981.093333pt;}
.y229{bottom:982.853333pt;}
.y4e{bottom:989.093333pt;}
.y24f{bottom:989.733333pt;}
.y187{bottom:1003.173333pt;}
.y180{bottom:1006.240000pt;}
.y228{bottom:1006.720000pt;}
.y5{bottom:1008.800000pt;}
.y4d{bottom:1014.560000pt;}
.y29{bottom:1014.720000pt;}
.y2{bottom:1043.520000pt;}
.y1{bottom:1061.440000pt;}
.h29{height:9.920000pt;}
.h37{height:10.400000pt;}
.h2f{height:10.560000pt;}
.h35{height:12.000000pt;}
.h2d{height:14.432000pt;}
.h34{height:14.560000pt;}
.h2e{height:16.000000pt;}
.h6{height:18.400000pt;}
.h17{height:19.200000pt;}
.h22{height:19.360000pt;}
.h36{height:19.840000pt;}
.h2b{height:20.000000pt;}
.h27{height:21.120000pt;}
.h33{height:21.152000pt;}
.h3c{height:21.600000pt;}
.h18{height:21.760000pt;}
.h1a{height:21.792000pt;}
.h19{height:21.920000pt;}
.h15{height:23.200000pt;}
.h3d{height:23.360000pt;}
.h3e{height:23.392000pt;}
.h40{height:24.000000pt;}
.h3f{height:24.032000pt;}
.h41{height:24.160000pt;}
.h1d{height:24.800000pt;}
.h1e{height:24.832000pt;}
.h1f{height:24.960000pt;}
.h23{height:24.992000pt;}
.h30{height:29.920000pt;}
.h3a{height:29.952000pt;}
.h1b{height:34.560000pt;}
.h20{height:34.752000pt;}
.h28{height:36.045000pt;}
.h21{height:38.560000pt;}
.h42{height:38.715000pt;}
.h38{height:39.840000pt;}
.h31{height:40.000000pt;}
.h1c{height:40.290000pt;}
.h2a{height:40.640000pt;}
.hb{height:41.922560pt;}
.h39{height:50.592000pt;}
.h4{height:51.200000pt;}
.h3b{height:52.160000pt;}
.ha{height:52.785000pt;}
.h16{height:55.402500pt;}
.h2{height:58.563750pt;}
.h9{height:61.410000pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.h5{height:62.824960pt;}
.h3{height:64.421875pt;}
.h13{height:66.750000pt;}
.h11{height:66.937187pt;}
.h24{height:67.520000pt;}
.hc{height:91.913750pt;}
.h10{height:99.906250pt;}
.hf{height:131.593750pt;}
.h14{height:142.270000pt;}
.h32{height:152.346667pt;}
.h2c{height:165.306667pt;}
.h12{height:167.433750pt;}
.hd{height:174.473750pt;}
.he{height:180.233750pt;}
.h25{height:793.760000pt;}
.h26{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:14.880000pt;}
.w29{width:25.440000pt;}
.w28{width:25.600000pt;}
.w27{width:47.680000pt;}
.w20{width:47.840000pt;}
.w1d{width:47.872000pt;}
.w1f{width:58.080000pt;}
.w1e{width:59.680000pt;}
.w10{width:68.480000pt;}
.w24{width:73.280000pt;}
.w25{width:73.312000pt;}
.w26{width:73.440000pt;}
.wd{width:75.520000pt;}
.wb{width:75.552000pt;}
.w31{width:76.640000pt;}
.w33{width:76.672000pt;}
.w32{width:76.800000pt;}
.wc{width:78.080000pt;}
.w2c{width:83.072000pt;}
.w9{width:83.232000pt;}
.wa{width:84.640000pt;}
.w7{width:84.960000pt;}
.w11{width:85.120000pt;}
.wf{width:94.592000pt;}
.w15{width:117.312000pt;}
.w2b{width:119.520000pt;}
.w19{width:122.560000pt;}
.w1c{width:124.800000pt;}
.w2f{width:145.626667pt;}
.w2d{width:147.226667pt;}
.w6{width:158.426667pt;}
.w3{width:170.746667pt;}
.w5{width:176.666667pt;}
.w1b{width:188.346667pt;}
.w18{width:188.666667pt;}
.w22{width:214.906667pt;}
.w4{width:219.546667pt;}
.w17{width:221.786667pt;}
.we{width:251.226667pt;}
.w21{width:261.346667pt;}
.w1a{width:296.826667pt;}
.w16{width:297.146667pt;}
.w2a{width:349.826667pt;}
.w30{width:383.426667pt;}
.w8{width:397.026667pt;}
.w2e{width:529.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w14{width:1122.559983pt;}
.w12{width:1122.560000pt;}
.w13{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x46{left:4.480000pt;}
.x2b{left:5.600000pt;}
.x10{left:7.200000pt;}
.x37{left:13.760000pt;}
.x3f{left:14.880000pt;}
.x35{left:15.840000pt;}
.x33{left:17.600000pt;}
.x38{left:18.880000pt;}
.x32{left:19.840000pt;}
.x34{left:20.800000pt;}
.x8{left:22.394667pt;}
.x6{left:23.994667pt;}
.x30{left:24.960000pt;}
.x36{left:26.400000pt;}
.xa{left:28.160000pt;}
.xf{left:30.560000pt;}
.x47{left:34.560000pt;}
.x44{left:35.520000pt;}
.xc{left:38.880000pt;}
.x2c{left:42.400000pt;}
.x29{left:53.114667pt;}
.x45{left:58.746667pt;}
.xe{left:59.680000pt;}
.x7{left:63.834667pt;}
.x40{left:69.280000pt;}
.xb{left:75.520000pt;}
.x3e{left:78.880000pt;}
.x3d{left:83.199983pt;}
.x11{left:109.760000pt;}
.x2{left:113.471988pt;}
.x39{left:120.672000pt;}
.x5{left:133.626655pt;}
.x1b{left:137.466655pt;}
.x1c{left:161.466655pt;}
.x58{left:164.346667pt;}
.x4{left:175.866655pt;}
.x17{left:196.186655pt;}
.x14{left:229.786655pt;}
.x55{left:232.986667pt;}
.x48{left:238.266667pt;}
.x18{left:257.986655pt;}
.x57{left:259.106667pt;}
.x13{left:268.866655pt;}
.x2a{left:271.906667pt;}
.x9{left:284.226667pt;}
.x49{left:286.146667pt;}
.x1d{left:291.266655pt;}
.x22{left:293.666655pt;}
.x21{left:299.266655pt;}
.x12{left:307.106655pt;}
.x56{left:316.066667pt;}
.x15{left:328.546655pt;}
.x59{left:335.746667pt;}
.x4d{left:343.266667pt;}
.x4a{left:345.826667pt;}
.x24{left:357.186655pt;}
.x23{left:362.786655pt;}
.x1e{left:368.386655pt;}
.x3a{left:371.906667pt;}
.x50{left:390.946667pt;}
.x16{left:396.866655pt;}
.x4b{left:403.906667pt;}
.x5a{left:412.546667pt;}
.x4e{left:416.546667pt;}
.x26{left:421.853322pt;}
.x25{left:427.453322pt;}
.x2d{left:440.093333pt;}
.x1f{left:441.853322pt;}
.x4c{left:451.773333pt;}
.x51{left:464.413333pt;}
.x53{left:473.693322pt;}
.x28{left:487.613322pt;}
.x4f{left:489.853333pt;}
.x27{left:493.213322pt;}
.x41{left:494.306667pt;}
.xd{left:503.773333pt;}
.x2e{left:524.733333pt;}
.x20{left:534.813322pt;}
.x52{left:537.693333pt;}
.x5b{left:565.853333pt;}
.x2f{left:600.293333pt;}
.x54{left:652.933322pt;}
.x19{left:665.573322pt;}
.x3b{left:668.773333pt;}
.x3{left:673.093322pt;}
.x31{left:678.373333pt;}
.x1{left:680.453322pt;}
.x3c{left:682.373322pt;}
.x42{left:716.413333pt;}
.x1a{left:735.493322pt;}
.x43{left:905.413333pt;}
}




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