
    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_8700e35db8ad5e85b56a39c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.709473;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_08117597f62349ff087d30d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_1f9d4b7fc446df664fd46a76.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.174316;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_7707a2d0c66e483482229db2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a5e16f84993fc3d99606e971.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_69fb8410d0d9875c690a242f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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_d129dd83eb0316c3a9036e4f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_9a62d17e84f1fdb032716d5b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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_6e5bcdd13bf894a4c28ad06c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.000000;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_f6ee0dfbceb1f80d14655f08.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.909180;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_f1df42f82b0b32b7a6cf23e9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.998047;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_58b44011a660da5ae766fb54.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.004883;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_90d0b1867153b71afed526e4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.909180;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_bdeab30bdbcdf3b0edaa0a34.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_6dc7e20c713a3030f613305b.woff2')format("woff");}.fff{font-family:fff;line-height:0.906000;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_d0070684b74bdb928f42ec83.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.867000;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_08117597f62349ff087d30d1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.900000;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_f7ab764c16e3f8da6d3c151c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.694000;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;}
.mc{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m7{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);}
.v5{vertical-align:-88.559965px;}
.v6{vertical-align:-81.359967px;}
.va{vertical-align:-15.839994px;}
.v9{vertical-align:-14.399994px;}
.v4{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.159999px;}
.v1{vertical-align:15.119994px;}
.v2{vertical-align:17.279993px;}
.v8{vertical-align:23.759990px;}
.v7{vertical-align:28.079989px;}
.ls3{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.004308px;}
.ls1f{letter-spacing:0.004320px;}
.ls5{letter-spacing:0.004321px;}
.ls11{letter-spacing:0.004395px;}
.ls0{letter-spacing:0.182940px;}
.ls9{letter-spacing:0.183560px;}
.ls4{letter-spacing:0.264780px;}
.ls6{letter-spacing:0.319740px;}
.ls2a{letter-spacing:0.362901px;}
.lsf{letter-spacing:0.365820px;}
.ls10{letter-spacing:0.365835px;}
.lsc{letter-spacing:0.405660px;}
.ls8{letter-spacing:1.914567px;}
.ls2{letter-spacing:2.343419px;}
.ls1{letter-spacing:7.384617px;}
.lsa{letter-spacing:9.767936px;}
.ls7{letter-spacing:35.239186px;}
.ls1e{letter-spacing:54.373178px;}
.ls32{letter-spacing:57.253777px;}
.ls20{letter-spacing:73.097371px;}
.lsb{letter-spacing:82.077207px;}
.ls2b{letter-spacing:83.179167px;}
.ls2c{letter-spacing:93.981562px;}
.ls2d{letter-spacing:104.783958px;}
.ls30{letter-spacing:114.865754px;}
.ls31{letter-spacing:117.026353px;}
.ls22{letter-spacing:209.205383px;}
.ls2f{letter-spacing:227.209109px;}
.ls24{letter-spacing:268.977492px;}
.ls25{letter-spacing:279.779888px;}
.ls26{letter-spacing:289.862284px;}
.ls27{letter-spacing:300.664080px;}
.ls2e{letter-spacing:304.265278px;}
.ls29{letter-spacing:484.302218px;}
.ls1c{letter-spacing:498.705401px;}
.ls17{letter-spacing:508.787196px;}
.ls19{letter-spacing:532.551987px;}
.lse{letter-spacing:610.889756px;}
.ls1a{letter-spacing:646.337741px;}
.ls13{letter-spacing:656.417737px;}
.ls1b{letter-spacing:688.823724px;}
.ls15{letter-spacing:698.903720px;}
.ls16{letter-spacing:731.315707px;}
.ls28{letter-spacing:757.238607px;}
.ls21{letter-spacing:797.566938px;}
.lsd{letter-spacing:806.777677px;}
.ls1d{letter-spacing:829.973668px;}
.ls14{letter-spacing:929.351628px;}
.ls18{letter-spacing:1161.239536px;}
.ls12{letter-spacing:1215.251514px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-37.349985px;}
.ws6{word-spacing:-26.099990px;}
.ws8{word-spacing:-20.176761px;}
.ws5{word-spacing:-20.152199px;}
.ws3{word-spacing:-14.939994px;}
.ws9{word-spacing:-13.865829px;}
.ws2{word-spacing:-13.499995px;}
.ws0{word-spacing:-12.059995px;}
.wsa{word-spacing:-10.444391px;}
.wsb{word-spacing:-10.439996px;}
.ws4{word-spacing:-8.999996px;}
.wsc{word-spacing:-6.839997px;}
.wse{word-spacing:-6.302898px;}
.wsd{word-spacing:-5.939998px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.668839px;}
._1{width:1.027907px;}
._2{width:2.387064px;}
._3{width:3.482843px;}
._8{width:4.760957px;}
._9{width:5.870365px;}
._6{width:7.389408px;}
._7{width:8.610976px;}
._a{width:10.191638px;}
._d{width:12.167912px;}
._5{width:13.270054px;}
._4{width:14.667689px;}
._b{width:16.093293px;}
._c{width:17.373003px;}
._f{width:18.384508px;}
._e{width:19.432965px;}
._13{width:21.005948px;}
._12{width:22.720134px;}
._24{width:25.006911px;}
._23{width:26.367520px;}
._26{width:27.695027px;}
._21{width:28.703980px;}
._22{width:29.746847px;}
._11{width:30.829339px;}
._10{width:31.967387px;}
._14{width:34.373790px;}
._50{width:41.972745px;}
._25{width:48.937180px;}
._38{width:54.993706px;}
._56{width:57.253990px;}
._6a{width:58.961496px;}
._5a{width:66.163006px;}
._4a{width:69.487369px;}
._4d{width:73.681368px;}
._58{width:74.720180px;}
._51{width:78.704546px;}
._1a{width:82.185733px;}
._48{width:89.217619px;}
._15{width:92.528409px;}
._5d{width:94.164046px;}
._37{width:95.393956px;}
._5f{width:100.010013px;}
._66{width:102.085915px;}
._47{width:105.995668px;}
._1c{width:107.678468px;}
._20{width:117.658345px;}
._36{width:122.084672px;}
._1f{width:123.327813px;}
._43{width:125.327476px;}
._44{width:128.545362px;}
._1e{width:130.456263px;}
._39{width:135.034901px;}
._1d{width:137.195131px;}
._3a{width:141.301119px;}
._1b{width:144.171867px;}
._3d{width:146.211643px;}
._18{width:150.760118px;}
._3e{width:151.972851px;}
._17{width:152.974194px;}
._16{width:156.051909px;}
._19{width:157.618005px;}
._64{width:165.338078px;}
._57{width:167.633012px;}
._45{width:172.477344px;}
._4b{width:178.627343px;}
._65{width:183.418285px;}
._3f{width:190.511945px;}
._40{width:197.677111px;}
._52{width:202.724044px;}
._4e{width:204.192814px;}
._41{width:212.799152px;}
._4c{width:217.157320px;}
._42{width:219.279149px;}
._4f{width:224.701076px;}
._67{width:236.035864px;}
._5e{width:242.450809px;}
._3c{width:246.657501px;}
._46{width:256.011711px;}
._54{width:258.167261px;}
._53{width:269.906255px;}
._3b{width:298.727293px;}
._5b{width:303.211585px;}
._49{width:325.373283px;}
._55{width:347.172985px;}
._68{width:348.813486px;}
._63{width:365.875559px;}
._59{width:367.438439px;}
._69{width:376.709155px;}
._34{width:405.884851px;}
._62{width:431.130320px;}
._60{width:439.541837px;}
._5c{width:473.576223px;}
._61{width:595.958642px;}
._2f{width:1092.993909px;}
._28{width:1115.502540px;}
._29{width:1129.761654px;}
._33{width:1147.969007px;}
._2a{width:1254.229204px;}
._30{width:1271.125904px;}
._32{width:1272.689984px;}
._2d{width:1283.175580px;}
._2e{width:1299.590120px;}
._27{width:1302.276498px;}
._31{width:1306.088838px;}
._2c{width:1318.732285px;}
._35{width:1329.114681px;}
._2b{width:1356.345057px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,8,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:2.879999px;}
.fs7{font-size:5.759998px;}
.fs4{font-size:23.759990px;}
.fse{font-size:27.359989px;}
.fs2{font-size:30.239988px;}
.fsb{font-size:33.119987px;}
.fs9{font-size:35.999986px;}
.fsc{font-size:38.879984px;}
.fsa{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs3{font-size:51.119980px;}
.fs6{font-size:53.999978px;}
.fs8{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs0{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y1b2{bottom:2.339943px;}
.y1e3{bottom:2.340012px;}
.y1f4{bottom:2.340048px;}
.y1ff{bottom:2.340067px;}
.y208{bottom:2.340087px;}
.y212{bottom:2.340106px;}
.y181{bottom:2.340126px;}
.y18b{bottom:2.340145px;}
.y19a{bottom:2.340180px;}
.y1a1{bottom:2.340200px;}
.y1ab{bottom:2.340219px;}
.y1d0{bottom:3.059941px;}
.y1d6{bottom:3.059956px;}
.y21f{bottom:3.059984px;}
.y226{bottom:3.059999px;}
.y22a{bottom:3.060014px;}
.y22f{bottom:3.060029px;}
.y234{bottom:3.060044px;}
.y237{bottom:3.060059px;}
.y23b{bottom:3.060074px;}
.y241{bottom:3.060090px;}
.y246{bottom:3.060105px;}
.y249{bottom:3.060120px;}
.y1bf{bottom:3.060180px;}
.y1c4{bottom:3.060195px;}
.y1c8{bottom:3.060210px;}
.y1cc{bottom:3.060225px;}
.ye{bottom:60.721176px;}
.yd{bottom:76.921169px;}
.yc{bottom:93.121163px;}
.y63{bottom:95.641462px;}
.y10e{bottom:97.081461px;}
.y122{bottom:97.261461px;}
.y251{bottom:97.981161px;}
.ye5{bottom:98.701461px;}
.y145{bottom:100.861460px;}
.y1b7{bottom:103.561159px;}
.y1b4{bottom:103.561459px;}
.y1d4{bottom:103.921158px;}
.yc4{bottom:104.281458px;}
.y1b6{bottom:107.341157px;}
.yb{bottom:107.521157px;}
.y99{bottom:107.701457px;}
.y1d5{bottom:107.881200px;}
.y156{bottom:108.961456px;}
.y250{bottom:110.041156px;}
.y1d1{bottom:110.941156px;}
.y88{bottom:111.841455px;}
.y1d7{bottom:114.001154px;}
.y10d{bottom:115.261454px;}
.y1b8{bottom:115.621154px;}
.y121{bottom:115.621454px;}
.y62{bottom:115.981454px;}
.ya{bottom:117.421153px;}
.y1d3{bottom:117.961153px;}
.ye4{bottom:118.861452px;}
.y144{bottom:119.041452px;}
.y1b5{bottom:119.401152px;}
.y24f{bottom:119.761452px;}
.y1d2{bottom:121.021152px;}
.yc3{bottom:124.441450px;}
.y1b3{bottom:127.681449px;}
.y98{bottom:127.861449px;}
.y9{bottom:131.281147px;}
.y87{bottom:132.181447px;}
.y165{bottom:132.901447px;}
.y10c{bottom:133.621447px;}
.y120{bottom:133.801446px;}
.y61{bottom:136.141446px;}
.y143{bottom:137.221445px;}
.ye3{bottom:139.201444px;}
.y1b1{bottom:139.741200px;}
.y36{bottom:142.981443px;}
.yc2{bottom:144.781442px;}
.y1cf{bottom:145.681200px;}
.y97{bottom:148.201441px;}
.y1ce{bottom:148.741141px;}
.y1cd{bottom:148.741441px;}
.y10b{bottom:151.801439px;}
.y11f{bottom:151.981439px;}
.y86{bottom:152.341439px;}
.y1af{bottom:154.141438px;}
.y142{bottom:155.581438px;}
.y60{bottom:156.301437px;}
.y164{bottom:158.821436px;}
.y35{bottom:159.181436px;}
.ye2{bottom:159.361436px;}
.yc1{bottom:164.941434px;}
.y1ad{bottom:166.201434px;}
.y96{bottom:168.361433px;}
.y10a{bottom:169.981432px;}
.y11e{bottom:170.161432px;}
.y85{bottom:172.501431px;}
.y141{bottom:173.041431px;}
.y34{bottom:175.381430px;}
.y5f{bottom:176.641429px;}
.y1ae{bottom:178.261429px;}
.ye1{bottom:179.701428px;}
.y1cb{bottom:183.301200px;}
.y11d{bottom:184.381426px;}
.y163{bottom:184.741426px;}
.yc0{bottom:185.281426px;}
.y1c9{bottom:186.361425px;}
.y95{bottom:187.981425px;}
.y109{bottom:188.161425px;}
.y1ca{bottom:189.421424px;}
.y1b0{bottom:190.321424px;}
.y33{bottom:191.581423px;}
.y84{bottom:192.841423px;}
.y140{bottom:195.001422px;}
.y5e{bottom:196.801421px;}
.ye0{bottom:199.861420px;}
.y1aa{bottom:200.041200px;}
.ybe{bottom:204.901418px;}
.y94{bottom:206.161418px;}
.y108{bottom:206.341417px;}
.y32{bottom:207.781417px;}
.y1a7{bottom:208.501417px;}
.ybf{bottom:209.761416px;}
.y162{bottom:210.661416px;}
.y83{bottom:213.001415px;}
.y1a4{bottom:214.441414px;}
.y5d{bottom:217.141413px;}
.y13f{bottom:217.501413px;}
.y1a9{bottom:218.221413px;}
.ydf{bottom:220.201412px;}
.y1a6{bottom:220.561412px;}
.y1c7{bottom:221.101200px;}
.ybd{bottom:223.081411px;}
.y31{bottom:223.981410px;}
.y1c5{bottom:224.161410px;}
.y1ac{bottom:224.341410px;}
.y93{bottom:224.521410px;}
.y1a3{bottom:226.501409px;}
.y1c6{bottom:227.221409px;}
.y1a5{bottom:232.621407px;}
.y82{bottom:233.341407px;}
.y161{bottom:236.581405px;}
.y5c{bottom:237.301405px;}
.y1a8{bottom:238.561405px;}
.y30{bottom:240.181404px;}
.yde{bottom:240.361404px;}
.ybc{bottom:241.261403px;}
.y92{bottom:242.701403px;}
.y107{bottom:242.881403px;}
.y1a0{bottom:248.281200px;}
.y81{bottom:253.501399px;}
.y2f{bottom:256.381397px;}
.y19c{bottom:256.741397px;}
.y5b{bottom:257.641397px;}
.y1c3{bottom:258.721200px;}
.ybb{bottom:259.441396px;}
.ydd{bottom:260.521396px;}
.y91{bottom:260.881396px;}
.y106{bottom:261.061396px;}
.y1c1{bottom:261.781395px;}
.y13e{bottom:262.681395px;}
.y1c2{bottom:264.841394px;}
.y19f{bottom:266.461393px;}
.y19b{bottom:268.801392px;}
.y1a2{bottom:272.581391px;}
.y2e{bottom:273.841390px;}
.y19e{bottom:274.921390px;}
.y5a{bottom:277.801389px;}
.y90{bottom:279.061388px;}
.y105{bottom:279.241388px;}
.ydc{bottom:280.861388px;}
.y13d{bottom:285.361386px;}
.y19d{bottom:286.981385px;}
.y11c{bottom:288.241385px;}
.y160{bottom:288.601385px;}
.y8f{bottom:293.461383px;}
.y80{bottom:294.001382px;}
.y2d{bottom:295.981382px;}
.yba{bottom:296.521381px;}
.y199{bottom:296.701200px;}
.y1be{bottom:296.881200px;}
.y104{bottom:297.421381px;}
.y59{bottom:297.961381px;}
.y8c{bottom:298.141381px;}
.y1c0{bottom:299.941380px;}
.ydb{bottom:301.021380px;}
.y8d{bottom:301.381379px;}
.y1bd{bottom:303.901378px;}
.y194{bottom:304.981378px;}
.y89{bottom:305.701378px;}
.y13c{bottom:307.861377px;}
.y11b{bottom:310.381376px;}
.y198{bottom:311.101376px;}
.y8b{bottom:312.361375px;}
.y7f{bottom:314.161374px;}
.y8a{bottom:314.521374px;}
.y197{bottom:314.881374px;}
.y103{bottom:315.601374px;}
.y193{bottom:316.321373px;}
.yb7{bottom:317.041373px;}
.y2c{bottom:318.301373px;}
.y8e{bottom:320.821372px;}
.yda{bottom:321.361371px;}
.yb4{bottom:321.541371px;}
.y196{bottom:323.161371px;}
.yb3{bottom:324.601370px;}
.yb5{bottom:325.141370px;}
.y192{bottom:329.101368px;}
.yb8{bottom:330.181368px;}
.y13b{bottom:330.361368px;}
.y11a{bottom:332.701367px;}
.yb6{bottom:333.421367px;}
.y102{bottom:333.961366px;}
.y7e{bottom:334.501366px;}
.y195{bottom:335.221366px;}
.y1bc{bottom:338.101365px;}
.y58{bottom:338.461365px;}
.y2b{bottom:339.361364px;}
.yb9{bottom:339.721364px;}
.yd9{bottom:340.981364px;}
.y15f{bottom:342.781363px;}
.y190{bottom:349.441360px;}
.yb2{bottom:351.961359px;}
.y101{bottom:352.141359px;}
.y13a{bottom:353.041359px;}
.y18f{bottom:353.221359px;}
.y7d{bottom:354.661358px;}
.y119{bottom:355.021358px;}
.y2a{bottom:355.561358px;}
.y57{bottom:358.801356px;}
.yd8{bottom:359.161356px;}
.y18d{bottom:361.501355px;}
.y24e{bottom:363.841354px;}
.y191{bottom:365.281354px;}
.y100{bottom:370.321352px;}
.y15e{bottom:370.861352px;}
.y29{bottom:371.761351px;}
.yb1{bottom:372.121351px;}
.y18e{bottom:373.561351px;}
.y7c{bottom:375.001350px;}
.y139{bottom:375.541350px;}
.y118{bottom:377.161349px;}
.yd7{bottom:377.341349px;}
.y56{bottom:378.961348px;}
.y24d{bottom:381.121348px;}
.y1bb{bottom:383.461347px;}
.y18a{bottom:385.621200px;}
.y28{bottom:387.781345px;}
.yff{bottom:388.501345px;}
.yb0{bottom:392.461343px;}
.y185{bottom:393.901342px;}
.y7b{bottom:395.161342px;}
.yd6{bottom:396.241342px;}
.y138{bottom:398.941340px;}
.y15d{bottom:399.121340px;}
.y55{bottom:399.481340px;}
.y24c{bottom:399.661340px;}
.y189{bottom:400.021340px;}
.y1ba{bottom:401.641339px;}
.y188{bottom:403.801338px;}
.y27{bottom:403.981338px;}
.y183{bottom:405.961338px;}
.yfe{bottom:406.681337px;}
.y18c{bottom:409.741336px;}
.y187{bottom:412.081335px;}
.yaf{bottom:412.621335px;}
.y7a{bottom:415.501334px;}
.y184{bottom:418.201333px;}
.y24b{bottom:419.821332px;}
.y1b9{bottom:420.001332px;}
.y26{bottom:420.181332px;}
.y54{bottom:421.801331px;}
.y137{bottom:422.161331px;}
.y186{bottom:424.141330px;}
.yfd{bottom:424.861330px;}
.y15c{bottom:427.381329px;}
.yae{bottom:432.961327px;}
.y180{bottom:433.861200px;}
.y21a{bottom:434.581200px;}
.y79{bottom:435.661326px;}
.y25{bottom:436.381325px;}
.yd5{bottom:436.741325px;}
.y17c{bottom:442.321323px;}
.y53{bottom:442.681323px;}
.y216{bottom:442.861323px;}
.yfc{bottom:443.221323px;}
.y117{bottom:443.941322px;}
.y136{bottom:444.841322px;}
.y17f{bottom:447.541321px;}
.y248{bottom:447.721200px;}
.y178{bottom:448.261321px;}
.y219{bottom:448.981320px;}
.y247{bottom:450.781320px;}
.y17e{bottom:452.041319px;}
.y24{bottom:452.581319px;}
.yad{bottom:453.121319px;}
.y15b{bottom:453.301319px;}
.y17b{bottom:453.661319px;}
.y24a{bottom:453.841318px;}
.y17a{bottom:454.381318px;}
.y214{bottom:454.921318px;}
.y78{bottom:455.821318px;}
.yd4{bottom:456.901317px;}
.y182{bottom:458.161317px;}
.y21b{bottom:458.701317px;}
.y52{bottom:458.881316px;}
.y177{bottom:460.321316px;}
.y218{bottom:461.041316px;}
.yfb{bottom:461.401315px;}
.y116{bottom:466.261313px;}
.y179{bottom:466.441313px;}
.y215{bottom:466.981313px;}
.y135{bottom:467.341313px;}
.y23{bottom:468.781312px;}
.y17d{bottom:472.381311px;}
.y217{bottom:473.101311px;}
.yac{bottom:473.281311px;}
.y51{bottom:475.081310px;}
.y77{bottom:476.161310px;}
.yd3{bottom:477.061309px;}
.y254{bottom:478.501309px;}
.y15a{bottom:479.221308px;}
.yfa{bottom:479.581308px;}
.y211{bottom:482.821200px;}
.y22{bottom:484.981306px;}
.y245{bottom:485.341200px;}
.y243{bottom:488.401305px;}
.y115{bottom:488.581305px;}
.y134{bottom:490.021304px;}
.y50{bottom:491.281303px;}
.y244{bottom:491.461303px;}
.y253{bottom:492.541303px;}
.yab{bottom:493.621303px;}
.y76{bottom:496.321301px;}
.y210{bottom:496.501301px;}
.y20f{bottom:497.221301px;}
.yd2{bottom:497.401301px;}
.yf9{bottom:497.761301px;}
.y20e{bottom:501.001300px;}
.y21{bottom:501.181300px;}
.y20b{bottom:502.621299px;}
.y176{bottom:502.801299px;}
.y209{bottom:503.341299px;}
.y260{bottom:503.521299px;}
.y213{bottom:507.121297px;}
.y4f{bottom:507.481297px;}
.y20d{bottom:509.281296px;}
.y114{bottom:510.721296px;}
.y133{bottom:512.521295px;}
.yaa{bottom:513.781294px;}
.y20a{bottom:515.401294px;}
.yf8{bottom:515.941294px;}
.y75{bottom:516.661293px;}
.y20{bottom:517.381293px;}
.yd1{bottom:517.561293px;}
.y23f{bottom:519.181292px;}
.y20c{bottom:521.341291px;}
.y159{bottom:522.961291px;}
.y240{bottom:523.141200px;}
.y4e{bottom:523.681291px;}
.y23c{bottom:526.201290px;}
.y25f{bottom:527.641289px;}
.y242{bottom:529.261288px;}
.y157{bottom:529.621288px;}
.y207{bottom:531.061200px;}
.y113{bottom:533.041287px;}
.y23e{bottom:533.221287px;}
.ya9{bottom:533.401287px;}
.y1f{bottom:533.581287px;}
.y175{bottom:534.121286px;}
.yf7{bottom:534.301286px;}
.y132{bottom:535.201286px;}
.y23d{bottom:536.281285px;}
.y74{bottom:536.821285px;}
.yd0{bottom:537.901285px;}
.y204{bottom:539.521284px;}
.y4d{bottom:539.881284px;}
.y174{bottom:540.241284px;}
.y158{bottom:543.841282px;}
.y201{bottom:545.461282px;}
.y206{bottom:549.241280px;}
.y1e{bottom:549.781280px;}
.y203{bottom:551.581279px;}
.ya7{bottom:551.761279px;}
.yf6{bottom:552.481279px;}
.y112{bottom:555.361278px;}
.y4c{bottom:556.081278px;}
.ya8{bottom:556.621277px;}
.y73{bottom:556.981277px;}
.y131{bottom:557.701277px;}
.ycf{bottom:558.061277px;}
.y155{bottom:559.861276px;}
.y23a{bottom:560.941200px;}
.y202{bottom:563.641275px;}
.y238{bottom:564.001274px;}
.y1d{bottom:565.981274px;}
.y239{bottom:567.061273px;}
.y205{bottom:569.761272px;}
.ya6{bottom:569.941272px;}
.yf5{bottom:570.661272px;}
.y4b{bottom:572.281271px;}
.y169{bottom:573.181271px;}
.y72{bottom:577.321269px;}
.y111{bottom:577.501269px;}
.y154{bottom:578.041269px;}
.yce{bottom:578.401269px;}
.y1fe{bottom:579.481200px;}
.y130{bottom:580.201268px;}
.y1c{bottom:582.181267px;}
.y1fa{bottom:587.761265px;}
.ya5{bottom:588.121265px;}
.y4a{bottom:588.481265px;}
.yf4{bottom:588.841264px;}
.y168{bottom:591.361263px;}
.y1fd{bottom:593.161263px;}
.y1f7{bottom:593.881262px;}
.y153{bottom:595.141262px;}
.y71{bottom:597.481261px;}
.y1fc{bottom:597.661261px;}
.y1b{bottom:598.381261px;}
.y236{bottom:598.561200px;}
.ycd{bottom:598.561261px;}
.y1f9{bottom:599.101260px;}
.y110{bottom:599.821260px;}
.y235{bottom:601.621259px;}
.y12f{bottom:602.881259px;}
.y200{bottom:603.601259px;}
.y49{bottom:604.681258px;}
.y1f6{bottom:605.941258px;}
.ya4{bottom:606.301257px;}
.yf3{bottom:607.021257px;}
.y167{bottom:608.641257px;}
.y152{bottom:610.621256px;}
.y1f8{bottom:611.881255px;}
.y1a{bottom:614.581254px;}
.y70{bottom:617.821253px;}
.y1fb{bottom:618.001253px;}
.ycc{bottom:618.721253px;}
.y48{bottom:620.881252px;}
.y10f{bottom:622.141251px;}
.y166{bottom:624.121250px;}
.ya3{bottom:624.481250px;}
.yf2{bottom:625.381250px;}
.y1f3{bottom:627.721200px;}
.y19{bottom:630.781248px;}
.y151{bottom:631.321247px;}
.y1ef{bottom:636.181246px;}
.y233{bottom:636.361200px;}
.y47{bottom:637.081245px;}
.y6f{bottom:637.981245px;}
.ycb{bottom:638.521245px;}
.y231{bottom:639.421244px;}
.y1f2{bottom:641.401243px;}
.y1eb{bottom:642.121243px;}
.y232{bottom:642.481243px;}
.ya2{bottom:643.381243px;}
.yf1{bottom:643.561243px;}
.y1f1{bottom:645.901242px;}
.y173{bottom:646.081242px;}
.y18{bottom:646.981241px;}
.y1ee{bottom:647.521241px;}
.y12e{bottom:648.061241px;}
.y1ed{bottom:648.241241px;}
.y1f5{bottom:652.021239px;}
.y46{bottom:653.281239px;}
.y150{bottom:653.821238px;}
.y1ea{bottom:654.181238px;}
.yca{bottom:656.701237px;}
.y6e{bottom:658.321237px;}
.ya1{bottom:659.221236px;}
.y255{bottom:659.761236px;}
.y1ec{bottom:660.301236px;}
.yf0{bottom:661.741235px;}
.y17{bottom:663.001235px;}
.y9e{bottom:663.901234px;}
.y1f0{bottom:666.241234px;}
.y9b{bottom:668.401233px;}
.y45{bottom:669.481232px;}
.y22d{bottom:670.021232px;}
.y12d{bottom:670.741232px;}
.y9a{bottom:671.461231px;}
.y9c{bottom:672.001231px;}
.y22e{bottom:673.981200px;}
.yc9{bottom:674.881230px;}
.y14f{bottom:676.501229px;}
.y9f{bottom:677.041229px;}
.y256{bottom:677.221229px;}
.y6d{bottom:678.481229px;}
.y16{bottom:679.201228px;}
.yef{bottom:679.921228px;}
.y230{bottom:680.101228px;}
.y9d{bottom:680.281228px;}
.y1e8{bottom:680.641228px;}
.y22c{bottom:684.241226px;}
.y1e7{bottom:684.421226px;}
.y44{bottom:685.681226px;}
.ya0{bottom:686.581225px;}
.y22b{bottom:687.301225px;}
.y12c{bottom:689.281224px;}
.y1e5{bottom:692.701223px;}
.yc8{bottom:693.601223px;}
.y257{bottom:694.501222px;}
.y15{bottom:695.401222px;}
.y1e9{bottom:696.481221px;}
.y172{bottom:697.921221px;}
.yee{bottom:698.101221px;}
.y6c{bottom:698.641221px;}
.y14e{bottom:699.001220px;}
.y43{bottom:701.881219px;}
.y1e6{bottom:704.761218px;}
.yc6{bottom:709.441216px;}
.y12b{bottom:709.981216px;}
.y14{bottom:711.601215px;}
.y229{bottom:711.781200px;}
.y258{bottom:711.961215px;}
.y228{bottom:714.841214px;}
.yed{bottom:716.281213px;}
.y1e2{bottom:716.641200px;}
.yc7{bottom:717.001213px;}
.y42{bottom:717.901213px;}
.y6b{bottom:718.981212px;}
.y14d{bottom:721.501211px;}
.y171{bottom:723.841210px;}
.y1dd{bottom:725.101210px;}
.yc5{bottom:725.821210px;}
.y13{bottom:727.801209px;}
.y259{bottom:729.241208px;}
.y1e1{bottom:731.041208px;}
.y41{bottom:734.101206px;}
.yec{bottom:734.641206px;}
.y1e0{bottom:734.821206px;}
.y12a{bottom:735.721206px;}
.y1db{bottom:737.161205px;}
.y6a{bottom:739.141204px;}
.y1e4{bottom:740.941204px;}
.y1df{bottom:743.101203px;}
.y12{bottom:744.001202px;}
.y14c{bottom:744.181202px;}
.y224{bottom:745.441202px;}
.y25a{bottom:746.701201px;}
.y1dc{bottom:749.221200px;}
.y225{bottom:749.581200px;}
.y170{bottom:749.761200px;}
.y40{bottom:750.301200px;}
.y221{bottom:752.641199px;}
.yeb{bottom:752.821199px;}
.y1de{bottom:755.161198px;}
.y227{bottom:755.701198px;}
.y129{bottom:759.121196px;}
.y69{bottom:759.481196px;}
.y223{bottom:759.661196px;}
.y11{bottom:760.201196px;}
.y222{bottom:762.721195px;}
.y25b{bottom:763.981194px;}
.y3f{bottom:766.501193px;}
.y14b{bottom:766.681193px;}
.yea{bottom:771.001192px;}
.y16f{bottom:775.861190px;}
.yf{bottom:776.761189px;}
.y10{bottom:778.381189px;}
.y128{bottom:779.101188px;}
.y68{bottom:779.641188px;}
.y25c{bottom:781.441187px;}
.y3e{bottom:782.701187px;}
.y1da{bottom:785.581186px;}
.y21e{bottom:787.561200px;}
.ye9{bottom:789.181184px;}
.y14a{bottom:789.361184px;}
.y220{bottom:790.621184px;}
.y8{bottom:792.601183px;}
.y21d{bottom:794.761182px;}
.y127{bottom:797.281181px;}
.y25d{bottom:798.721181px;}
.y3d{bottom:798.901180px;}
.y67{bottom:799.981180px;}
.y16d{bottom:803.941178px;}
.y7{bottom:805.921178px;}
.ye8{bottom:807.361177px;}
.y149{bottom:812.581175px;}
.y3c{bottom:815.101174px;}
.y126{bottom:815.461174px;}
.y1d9{bottom:816.901173px;}
.y16e{bottom:819.601172px;}
.y66{bottom:820.141172px;}
.y1d8{bottom:823.021171px;}
.y6{bottom:825.721170px;}
.y16b{bottom:826.261169px;}
.y21c{bottom:828.781168px;}
.y3b{bottom:831.301167px;}
.y16a{bottom:833.461167px;}
.y125{bottom:833.821166px;}
.y148{bottom:835.981166px;}
.y25e{bottom:839.941164px;}
.y65{bottom:840.301164px;}
.y16c{bottom:840.481164px;}
.y5{bottom:842.101163px;}
.ye7{bottom:843.901162px;}
.y3a{bottom:847.501161px;}
.y124{bottom:852.001159px;}
.y4{bottom:855.421158px;}
.y147{bottom:855.961158px;}
.y252{bottom:857.581157px;}
.y64{bottom:860.641156px;}
.ye6{bottom:862.081155px;}
.y39{bottom:863.701155px;}
.y123{bottom:871.081152px;}
.y3{bottom:871.981151px;}
.y146{bottom:874.321150px;}
.y2{bottom:882.421147px;}
.y38{bottom:885.661146px;}
.y1{bottom:901.861139px;}
.y37{bottom:906.001138px;}
.h27{height:2.084062px;}
.hf{height:3.839061px;}
.h30{height:11.880000px;}
.h32{height:14.040000px;}
.h7{height:16.346873px;}
.h33{height:17.193509px;}
.h2f{height:18.823672px;}
.h3{height:20.509445px;}
.h6{height:20.805112px;}
.h4{height:20.986552px;}
.h9{height:21.219249px;}
.h2c{height:28.605589px;}
.h2e{height:28.730869px;}
.h2d{height:28.981428px;}
.h19{height:29.578348px;}
.h34{height:30.218894px;}
.h22{height:30.300457px;}
.h29{height:30.504363px;}
.h21{height:32.400690px;}
.hc{height:35.002252px;}
.h3a{height:35.237798px;}
.hb{height:35.379126px;}
.h24{height:37.151985px;}
.h1f{height:39.076156px;}
.h1c{height:39.181625px;}
.h20{height:39.445297px;}
.ha{height:39.603500px;}
.h23{height:41.114864px;}
.h39{height:41.473423px;}
.h8{height:43.081506px;}
.h38{height:43.244280px;}
.h12{height:43.360998px;}
.h10{height:43.827873px;}
.h16{height:44.648420px;}
.h2{height:44.925451px;}
.h5{height:45.653536px;}
.h28{height:46.058888px;}
.h2a{height:46.778888px;}
.h1b{height:48.220293px;}
.he{height:48.225567px;}
.h1e{height:48.386231px;}
.hd{height:48.580293px;}
.h15{height:51.792167px;}
.h2b{height:52.365579px;}
.h36{height:52.490859px;}
.h31{height:53.210859px;}
.h11{height:53.369627px;}
.h13{height:55.353845px;}
.h1{height:57.133454px;}
.h35{height:58.298883px;}
.h37{height:59.018883px;}
.h1d{height:59.156695px;}
.h25{height:60.480679px;}
.h26{height:61.200679px;}
.h1a{height:66.972629px;}
.h14{height:74.116377px;}
.h18{height:76.276376px;}
.h17{height:91.396370px;}
.h0{height:973.500000px;}
.w2{width:5.220000px;}
.w1{width:9.900000px;}
.w5{width:13.860000px;}
.w7{width:14.400000px;}
.w3{width:21.600000px;}
.w6{width:23.040000px;}
.w4{width:36.000000px;}
.w0{width:688.500000px;}
.x58{left:-4.500190px;}
.x52{left:-1.980191px;}
.x0{left:0.000000px;}
.x7{left:93.239963px;}
.x27{left:98.099961px;}
.x25{left:102.239959px;}
.x37{left:103.319959px;}
.x31{left:106.199958px;}
.xb{left:114.479934px;}
.x3a{left:124.199950px;}
.x50{left:137.699945px;}
.x3d{left:144.899942px;}
.x26{left:147.239941px;}
.x38{left:154.079938px;}
.x70{left:155.879938px;}
.x6e{left:157.679937px;}
.x6f{left:161.099936px;}
.x15{left:164.519927px;}
.x36{left:190.255363px;}
.x4{left:203.032419px;}
.x28{left:214.379962px;}
.x3b{left:216.359913px;}
.x39{left:227.155409px;}
.x71{left:229.319908px;}
.x1b{left:232.379907px;}
.x9{left:233.639907px;}
.x5{left:243.179903px;}
.x34{left:255.059898px;}
.x16{left:268.379893px;}
.xc{left:274.863103px;}
.x1{left:278.099889px;}
.x2{left:284.219886px;}
.x2f{left:286.379885px;}
.x6{left:288.538677px;}
.x17{left:291.779883px;}
.x3c{left:294.479882px;}
.x18{left:301.319879px;}
.x3f{left:304.740064px;}
.x19{left:312.479875px;}
.x1a{left:316.799873px;}
.x61{left:318.059873px;}
.x40{left:319.859872px;}
.x29{left:322.379871px;}
.x35{left:325.439870px;}
.x41{left:328.499869px;}
.x67{left:329.759868px;}
.x2a{left:332.999867px;}
.xa{left:335.159866px;}
.x13{left:341.999863px;}
.x3{left:344.159862px;}
.x4c{left:345.240059px;}
.x49{left:347.219861px;}
.x8{left:349.379860px;}
.x32{left:350.459860px;}
.x60{left:351.900703px;}
.x4a{left:352.979859px;}
.x44{left:354.780000px;}
.x2b{left:356.039858px;}
.x4e{left:358.019864px;}
.x4f{left:361.439855px;}
.x2c{left:363.419855px;}
.x45{left:364.680000px;}
.x42{left:367.199853px;}
.x4d{left:368.639853px;}
.x4b{left:370.440000px;}
.x11{left:372.599851px;}
.xd{left:373.859850px;}
.x43{left:375.659850px;}
.x1c{left:379.439848px;}
.xe{left:380.519848px;}
.xf{left:387.359845px;}
.x2d{left:388.979844px;}
.x23{left:399.239840px;}
.x10{left:400.679840px;}
.x12{left:402.119839px;}
.x2e{left:404.459838px;}
.x64{left:406.259893px;}
.x5f{left:407.339830px;}
.x46{left:408.419837px;}
.x6a{left:412.739814px;}
.x14{left:416.339833px;}
.x68{left:422.819831px;}
.x54{left:424.079830px;}
.x69{left:427.859829px;}
.x55{left:429.119828px;}
.x6b{left:430.199828px;}
.x65{left:431.639827px;}
.x5c{left:432.719827px;}
.x1d{left:434.519826px;}
.x66{left:436.679825px;}
.x5d{left:437.759825px;}
.x1e{left:441.899823px;}
.x47{left:443.159823px;}
.x62{left:445.679822px;}
.x56{left:448.019821px;}
.x63{left:450.719820px;}
.x5e{left:452.519819px;}
.x48{left:453.779818px;}
.x57{left:455.579818px;}
.x1f{left:457.919817px;}
.x3e{left:460.620448px;}
.x20{left:467.459813px;}
.x21{left:478.619809px;}
.x51{left:480.060000px;}
.x22{left:482.939807px;}
.x30{left:491.399803px;}
.x59{left:493.919802px;}
.x5a{left:509.579796px;}
.x53{left:516.059794px;}
.x5b{left:518.759792px;}
.x24{left:521.279791px;}
.x33{left:549.899663px;}
.x6d{left:590.399764px;}
.x6c{left:594.900333px;}
@media print{
.v5{vertical-align:-78.719969pt;}
.v6{vertical-align:-72.319971pt;}
.va{vertical-align:-14.079994pt;}
.v9{vertical-align:-12.799995pt;}
.v4{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.919999pt;}
.v1{vertical-align:13.439995pt;}
.v2{vertical-align:15.359994pt;}
.v8{vertical-align:21.119992pt;}
.v7{vertical-align:24.959990pt;}
.ls3{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.003829pt;}
.ls1f{letter-spacing:0.003840pt;}
.ls5{letter-spacing:0.003841pt;}
.ls11{letter-spacing:0.003907pt;}
.ls0{letter-spacing:0.162613pt;}
.ls9{letter-spacing:0.163164pt;}
.ls4{letter-spacing:0.235360pt;}
.ls6{letter-spacing:0.284213pt;}
.ls2a{letter-spacing:0.322578pt;}
.lsf{letter-spacing:0.325173pt;}
.ls10{letter-spacing:0.325186pt;}
.lsc{letter-spacing:0.360587pt;}
.ls8{letter-spacing:1.701838pt;}
.ls2{letter-spacing:2.083039pt;}
.ls1{letter-spacing:6.564104pt;}
.lsa{letter-spacing:8.682610pt;}
.ls7{letter-spacing:31.323721pt;}
.ls1e{letter-spacing:48.331714pt;}
.ls32{letter-spacing:50.892246pt;}
.ls20{letter-spacing:64.975441pt;}
.lsb{letter-spacing:72.957517pt;}
.ls2b{letter-spacing:73.937037pt;}
.ls2c{letter-spacing:83.539167pt;}
.ls2d{letter-spacing:93.141296pt;}
.ls30{letter-spacing:102.102892pt;}
.ls31{letter-spacing:104.023425pt;}
.ls22{letter-spacing:185.960340pt;}
.ls2f{letter-spacing:201.963653pt;}
.ls24{letter-spacing:239.091104pt;}
.ls25{letter-spacing:248.693234pt;}
.ls26{letter-spacing:257.655364pt;}
.ls27{letter-spacing:267.256960pt;}
.ls2e{letter-spacing:270.458025pt;}
.ls29{letter-spacing:430.490860pt;}
.ls1c{letter-spacing:443.293689pt;}
.ls17{letter-spacing:452.255286pt;}
.ls19{letter-spacing:473.379544pt;}
.lse{letter-spacing:543.013116pt;}
.ls1a{letter-spacing:574.522437pt;}
.ls13{letter-spacing:583.482433pt;}
.ls1b{letter-spacing:612.287755pt;}
.ls15{letter-spacing:621.247752pt;}
.ls16{letter-spacing:650.058407pt;}
.ls28{letter-spacing:673.100984pt;}
.ls21{letter-spacing:708.948390pt;}
.lsd{letter-spacing:717.135713pt;}
.ls1d{letter-spacing:737.754372pt;}
.ls14{letter-spacing:826.090336pt;}
.ls18{letter-spacing:1032.212920pt;}
.ls12{letter-spacing:1080.223568pt;}
.ws7{word-spacing:-33.199987pt;}
.ws6{word-spacing:-23.199991pt;}
.ws8{word-spacing:-17.934898pt;}
.ws5{word-spacing:-17.913066pt;}
.ws3{word-spacing:-13.279995pt;}
.ws9{word-spacing:-12.325182pt;}
.ws2{word-spacing:-11.999995pt;}
.ws0{word-spacing:-10.719996pt;}
.wsa{word-spacing:-9.283903pt;}
.wsb{word-spacing:-9.279996pt;}
.ws4{word-spacing:-7.999997pt;}
.wsc{word-spacing:-6.079998pt;}
.wse{word-spacing:-5.602576pt;}
.wsd{word-spacing:-5.279998pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.483412pt;}
._1{width:0.913695pt;}
._2{width:2.121835pt;}
._3{width:3.095861pt;}
._8{width:4.231962pt;}
._9{width:5.218102pt;}
._6{width:6.568362pt;}
._7{width:7.654201pt;}
._a{width:9.059233pt;}
._d{width:10.815921pt;}
._5{width:11.795603pt;}
._4{width:13.037946pt;}
._b{width:14.305149pt;}
._c{width:15.442669pt;}
._f{width:16.341785pt;}
._e{width:17.273747pt;}
._13{width:18.671954pt;}
._12{width:20.195675pt;}
._24{width:22.228365pt;}
._23{width:23.437796pt;}
._26{width:24.617802pt;}
._21{width:25.514649pt;}
._22{width:26.441642pt;}
._11{width:27.403857pt;}
._10{width:28.415455pt;}
._14{width:30.554480pt;}
._50{width:37.309107pt;}
._25{width:43.499716pt;}
._38{width:48.883294pt;}
._56{width:50.892435pt;}
._6a{width:52.410219pt;}
._5a{width:58.811560pt;}
._4a{width:61.766550pt;}
._4d{width:65.494549pt;}
._58{width:66.417938pt;}
._51{width:69.959597pt;}
._1a{width:73.053985pt;}
._48{width:79.304551pt;}
._15{width:82.247475pt;}
._5d{width:83.701374pt;}
._37{width:84.794627pt;}
._5f{width:88.897789pt;}
._66{width:90.743035pt;}
._47{width:94.218372pt;}
._1c{width:95.714193pt;}
._20{width:104.585196pt;}
._36{width:108.519709pt;}
._1f{width:109.624723pt;}
._43{width:111.402201pt;}
._44{width:114.262544pt;}
._1e{width:115.961123pt;}
._39{width:120.031023pt;}
._1d{width:121.951228pt;}
._3a{width:125.600995pt;}
._1b{width:128.152770pt;}
._3d{width:129.965905pt;}
._18{width:134.008994pt;}
._3e{width:135.086979pt;}
._17{width:135.977061pt;}
._16{width:138.712808pt;}
._19{width:140.104894pt;}
._64{width:146.967181pt;}
._57{width:149.007122pt;}
._45{width:153.313195pt;}
._4b{width:158.779860pt;}
._65{width:163.038476pt;}
._3f{width:169.343951pt;}
._40{width:175.712988pt;}
._52{width:180.199150pt;}
._4e{width:181.504723pt;}
._41{width:189.154802pt;}
._4c{width:193.028729pt;}
._42{width:194.914799pt;}
._4f{width:199.734290pt;}
._67{width:209.809657pt;}
._5e{width:215.511830pt;}
._3c{width:219.251112pt;}
._46{width:227.565965pt;}
._54{width:229.482009pt;}
._53{width:239.916671pt;}
._3b{width:265.535372pt;}
._5b{width:269.521408pt;}
._49{width:289.220696pt;}
._55{width:308.598209pt;}
._68{width:310.056432pt;}
._63{width:325.222720pt;}
._59{width:326.611946pt;}
._69{width:334.852582pt;}
._34{width:360.786534pt;}
._62{width:383.226952pt;}
._60{width:390.703855pt;}
._5c{width:420.956643pt;}
._61{width:529.741015pt;}
._2f{width:971.550141pt;}
._28{width:991.557813pt;}
._29{width:1004.232581pt;}
._33{width:1020.416895pt;}
._2a{width:1114.870404pt;}
._30{width:1129.889693pt;}
._32{width:1131.279986pt;}
._2d{width:1140.600515pt;}
._2e{width:1155.191218pt;}
._27{width:1157.579109pt;}
._31{width:1160.967856pt;}
._2c{width:1172.206476pt;}
._35{width:1181.435272pt;}
._2b{width:1205.640051pt;}
.fsd{font-size:2.559999pt;}
.fs7{font-size:5.119998pt;}
.fs4{font-size:21.119992pt;}
.fse{font-size:24.319990pt;}
.fs2{font-size:26.879989pt;}
.fsb{font-size:29.439988pt;}
.fs9{font-size:31.999987pt;}
.fsc{font-size:34.559986pt;}
.fsa{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs3{font-size:45.439982pt;}
.fs6{font-size:47.999981pt;}
.fs8{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs0{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y1b2{bottom:2.079949pt;}
.y1e3{bottom:2.080011pt;}
.y1f4{bottom:2.080043pt;}
.y1ff{bottom:2.080060pt;}
.y208{bottom:2.080077pt;}
.y212{bottom:2.080094pt;}
.y181{bottom:2.080112pt;}
.y18b{bottom:2.080129pt;}
.y19a{bottom:2.080160pt;}
.y1a1{bottom:2.080178pt;}
.y1ab{bottom:2.080195pt;}
.y1d0{bottom:2.719947pt;}
.y1d6{bottom:2.719961pt;}
.y21f{bottom:2.719986pt;}
.y226{bottom:2.719999pt;}
.y22a{bottom:2.720013pt;}
.y22f{bottom:2.720026pt;}
.y234{bottom:2.720039pt;}
.y237{bottom:2.720053pt;}
.y23b{bottom:2.720066pt;}
.y241{bottom:2.720080pt;}
.y246{bottom:2.720093pt;}
.y249{bottom:2.720106pt;}
.y1bf{bottom:2.720160pt;}
.y1c4{bottom:2.720174pt;}
.y1c8{bottom:2.720187pt;}
.y1cc{bottom:2.720200pt;}
.ye{bottom:53.974378pt;}
.yd{bottom:68.374373pt;}
.yc{bottom:82.774367pt;}
.y63{bottom:85.014633pt;}
.y10e{bottom:86.294632pt;}
.y122{bottom:86.454632pt;}
.y251{bottom:87.094365pt;}
.ye5{bottom:87.734632pt;}
.y145{bottom:89.654631pt;}
.y1b7{bottom:92.054363pt;}
.y1b4{bottom:92.054630pt;}
.y1d4{bottom:92.374363pt;}
.yc4{bottom:92.694630pt;}
.y1b6{bottom:95.414362pt;}
.yb{bottom:95.574362pt;}
.y99{bottom:95.734628pt;}
.y1d5{bottom:95.894400pt;}
.y156{bottom:96.854628pt;}
.y250{bottom:97.814361pt;}
.y1d1{bottom:98.614361pt;}
.y88{bottom:99.414627pt;}
.y1d7{bottom:101.334359pt;}
.y10d{bottom:102.454626pt;}
.y1b8{bottom:102.774359pt;}
.y121{bottom:102.774626pt;}
.y62{bottom:103.094625pt;}
.ya{bottom:104.374358pt;}
.y1d3{bottom:104.854358pt;}
.ye4{bottom:105.654624pt;}
.y144{bottom:105.814624pt;}
.y1b5{bottom:106.134358pt;}
.y24f{bottom:106.454624pt;}
.y1d2{bottom:107.574357pt;}
.yc3{bottom:110.614622pt;}
.y1b3{bottom:113.494621pt;}
.y98{bottom:113.654621pt;}
.y9{bottom:116.694353pt;}
.y87{bottom:117.494620pt;}
.y165{bottom:118.134619pt;}
.y10c{bottom:118.774619pt;}
.y120{bottom:118.934619pt;}
.y61{bottom:121.014618pt;}
.y143{bottom:121.974618pt;}
.ye3{bottom:123.734617pt;}
.y1b1{bottom:124.214400pt;}
.y36{bottom:127.094616pt;}
.yc2{bottom:128.694615pt;}
.y1cf{bottom:129.494400pt;}
.y97{bottom:131.734614pt;}
.y1ce{bottom:132.214347pt;}
.y1cd{bottom:132.214614pt;}
.y10b{bottom:134.934613pt;}
.y11f{bottom:135.094613pt;}
.y86{bottom:135.414613pt;}
.y1af{bottom:137.014612pt;}
.y142{bottom:138.294611pt;}
.y60{bottom:138.934611pt;}
.y164{bottom:141.174610pt;}
.y35{bottom:141.494610pt;}
.ye2{bottom:141.654610pt;}
.yc1{bottom:146.614608pt;}
.y1ad{bottom:147.734608pt;}
.y96{bottom:149.654607pt;}
.y10a{bottom:151.094606pt;}
.y11e{bottom:151.254606pt;}
.y85{bottom:153.334605pt;}
.y141{bottom:153.814605pt;}
.y34{bottom:155.894604pt;}
.y5f{bottom:157.014604pt;}
.y1ae{bottom:158.454603pt;}
.ye1{bottom:159.734603pt;}
.y1cb{bottom:162.934400pt;}
.y11d{bottom:163.894601pt;}
.y163{bottom:164.214601pt;}
.yc0{bottom:164.694601pt;}
.y1c9{bottom:165.654600pt;}
.y95{bottom:167.094600pt;}
.y109{bottom:167.254600pt;}
.y1ca{bottom:168.374599pt;}
.y1b0{bottom:169.174599pt;}
.y33{bottom:170.294599pt;}
.y84{bottom:171.414598pt;}
.y140{bottom:173.334597pt;}
.y5e{bottom:174.934597pt;}
.ye0{bottom:177.654596pt;}
.y1aa{bottom:177.814400pt;}
.ybe{bottom:182.134594pt;}
.y94{bottom:183.254593pt;}
.y108{bottom:183.414593pt;}
.y32{bottom:184.694593pt;}
.y1a7{bottom:185.334593pt;}
.ybf{bottom:186.454592pt;}
.y162{bottom:187.254592pt;}
.y83{bottom:189.334591pt;}
.y1a4{bottom:190.614590pt;}
.y5d{bottom:193.014589pt;}
.y13f{bottom:193.334589pt;}
.y1a9{bottom:193.974589pt;}
.ydf{bottom:195.734588pt;}
.y1a6{bottom:196.054588pt;}
.y1c7{bottom:196.534400pt;}
.ybd{bottom:198.294587pt;}
.y31{bottom:199.094587pt;}
.y1c5{bottom:199.254587pt;}
.y1ac{bottom:199.414587pt;}
.y93{bottom:199.574587pt;}
.y1a3{bottom:201.334586pt;}
.y1c6{bottom:201.974586pt;}
.y1a5{bottom:206.774584pt;}
.y82{bottom:207.414584pt;}
.y161{bottom:210.294583pt;}
.y5c{bottom:210.934582pt;}
.y1a8{bottom:212.054582pt;}
.y30{bottom:213.494581pt;}
.yde{bottom:213.654581pt;}
.ybc{bottom:214.454581pt;}
.y92{bottom:215.734580pt;}
.y107{bottom:215.894580pt;}
.y1a0{bottom:220.694400pt;}
.y81{bottom:225.334577pt;}
.y2f{bottom:227.894576pt;}
.y19c{bottom:228.214575pt;}
.y5b{bottom:229.014575pt;}
.y1c3{bottom:229.974400pt;}
.ybb{bottom:230.614574pt;}
.ydd{bottom:231.574574pt;}
.y91{bottom:231.894574pt;}
.y106{bottom:232.054574pt;}
.y1c1{bottom:232.694574pt;}
.y13e{bottom:233.494573pt;}
.y1c2{bottom:235.414573pt;}
.y19f{bottom:236.854572pt;}
.y19b{bottom:238.934571pt;}
.y1a2{bottom:242.294570pt;}
.y2e{bottom:243.414569pt;}
.y19e{bottom:244.374569pt;}
.y5a{bottom:246.934568pt;}
.y90{bottom:248.054567pt;}
.y105{bottom:248.214567pt;}
.ydc{bottom:249.654567pt;}
.y13d{bottom:253.654565pt;}
.y19d{bottom:255.094565pt;}
.y11c{bottom:256.214564pt;}
.y160{bottom:256.534564pt;}
.y8f{bottom:260.854562pt;}
.y80{bottom:261.334562pt;}
.y2d{bottom:263.094561pt;}
.yba{bottom:263.574561pt;}
.y199{bottom:263.734400pt;}
.y1be{bottom:263.894400pt;}
.y104{bottom:264.374561pt;}
.y59{bottom:264.854561pt;}
.y8c{bottom:265.014561pt;}
.y1c0{bottom:266.614560pt;}
.ydb{bottom:267.574560pt;}
.y8d{bottom:267.894560pt;}
.y1bd{bottom:270.134559pt;}
.y194{bottom:271.094558pt;}
.y89{bottom:271.734558pt;}
.y13c{bottom:273.654557pt;}
.y11b{bottom:275.894556pt;}
.y198{bottom:276.534556pt;}
.y8b{bottom:277.654556pt;}
.y7f{bottom:279.254555pt;}
.y8a{bottom:279.574555pt;}
.y197{bottom:279.894555pt;}
.y103{bottom:280.534554pt;}
.y193{bottom:281.174554pt;}
.yb7{bottom:281.814554pt;}
.y2c{bottom:282.934553pt;}
.y8e{bottom:285.174553pt;}
.yda{bottom:285.654552pt;}
.yb4{bottom:285.814552pt;}
.y196{bottom:287.254552pt;}
.yb3{bottom:288.534551pt;}
.yb5{bottom:289.014551pt;}
.y192{bottom:292.534550pt;}
.yb8{bottom:293.494549pt;}
.y13b{bottom:293.654549pt;}
.y11a{bottom:295.734548pt;}
.yb6{bottom:296.374548pt;}
.y102{bottom:296.854548pt;}
.y7e{bottom:297.334548pt;}
.y195{bottom:297.974547pt;}
.y1bc{bottom:300.534546pt;}
.y58{bottom:300.854546pt;}
.y2b{bottom:301.654546pt;}
.yb9{bottom:301.974546pt;}
.yd9{bottom:303.094545pt;}
.y15f{bottom:304.694545pt;}
.y190{bottom:310.614542pt;}
.yb2{bottom:312.854542pt;}
.y101{bottom:313.014541pt;}
.y13a{bottom:313.814541pt;}
.y18f{bottom:313.974541pt;}
.y7d{bottom:315.254541pt;}
.y119{bottom:315.574540pt;}
.y2a{bottom:316.054540pt;}
.y57{bottom:318.934539pt;}
.yd8{bottom:319.254539pt;}
.y18d{bottom:321.334538pt;}
.y24e{bottom:323.414537pt;}
.y191{bottom:324.694537pt;}
.y100{bottom:329.174535pt;}
.y15e{bottom:329.654535pt;}
.y29{bottom:330.454534pt;}
.yb1{bottom:330.774534pt;}
.y18e{bottom:332.054534pt;}
.y7c{bottom:333.334533pt;}
.y139{bottom:333.814533pt;}
.y118{bottom:335.254533pt;}
.yd7{bottom:335.414533pt;}
.y56{bottom:336.854532pt;}
.y24d{bottom:338.774531pt;}
.y1bb{bottom:340.854530pt;}
.y18a{bottom:342.774400pt;}
.y28{bottom:344.694529pt;}
.yff{bottom:345.334529pt;}
.yb0{bottom:348.854527pt;}
.y185{bottom:350.134527pt;}
.y7b{bottom:351.254526pt;}
.yd6{bottom:352.214526pt;}
.y138{bottom:354.614525pt;}
.y15d{bottom:354.774525pt;}
.y55{bottom:355.094525pt;}
.y24c{bottom:355.254525pt;}
.y189{bottom:355.574524pt;}
.y1ba{bottom:357.014524pt;}
.y188{bottom:358.934523pt;}
.y27{bottom:359.094523pt;}
.y183{bottom:360.854522pt;}
.yfe{bottom:361.494522pt;}
.y18c{bottom:364.214521pt;}
.y187{bottom:366.294520pt;}
.yaf{bottom:366.774520pt;}
.y7a{bottom:369.334519pt;}
.y184{bottom:371.734518pt;}
.y24b{bottom:373.174517pt;}
.y1b9{bottom:373.334517pt;}
.y26{bottom:373.494517pt;}
.y54{bottom:374.934517pt;}
.y137{bottom:375.254517pt;}
.y186{bottom:377.014516pt;}
.yfd{bottom:377.654516pt;}
.y15c{bottom:379.894515pt;}
.yae{bottom:384.854513pt;}
.y180{bottom:385.654400pt;}
.y21a{bottom:386.294400pt;}
.y79{bottom:387.254512pt;}
.y25{bottom:387.894512pt;}
.yd5{bottom:388.214511pt;}
.y17c{bottom:393.174509pt;}
.y53{bottom:393.494509pt;}
.y216{bottom:393.654509pt;}
.yfc{bottom:393.974509pt;}
.y117{bottom:394.614509pt;}
.y136{bottom:395.414509pt;}
.y17f{bottom:397.814508pt;}
.y248{bottom:397.974400pt;}
.y178{bottom:398.454507pt;}
.y219{bottom:399.094507pt;}
.y247{bottom:400.694506pt;}
.y17e{bottom:401.814506pt;}
.y24{bottom:402.294506pt;}
.yad{bottom:402.774506pt;}
.y15b{bottom:402.934505pt;}
.y17b{bottom:403.254505pt;}
.y24a{bottom:403.414505pt;}
.y17a{bottom:403.894505pt;}
.y214{bottom:404.374505pt;}
.y78{bottom:405.174505pt;}
.yd4{bottom:406.134504pt;}
.y182{bottom:407.254504pt;}
.y21b{bottom:407.734504pt;}
.y52{bottom:407.894504pt;}
.y177{bottom:409.174503pt;}
.y218{bottom:409.814503pt;}
.yfb{bottom:410.134503pt;}
.y116{bottom:414.454501pt;}
.y179{bottom:414.614501pt;}
.y215{bottom:415.094501pt;}
.y135{bottom:415.414501pt;}
.y23{bottom:416.694500pt;}
.y17d{bottom:419.894499pt;}
.y217{bottom:420.534498pt;}
.yac{bottom:420.694498pt;}
.y51{bottom:422.294498pt;}
.y77{bottom:423.254497pt;}
.yd3{bottom:424.054497pt;}
.y254{bottom:425.334497pt;}
.y15a{bottom:425.974496pt;}
.yfa{bottom:426.294496pt;}
.y211{bottom:429.174400pt;}
.y22{bottom:431.094494pt;}
.y245{bottom:431.414400pt;}
.y243{bottom:434.134493pt;}
.y115{bottom:434.294493pt;}
.y134{bottom:435.574492pt;}
.y50{bottom:436.694492pt;}
.y244{bottom:436.854492pt;}
.y253{bottom:437.814492pt;}
.yab{bottom:438.774491pt;}
.y76{bottom:441.174490pt;}
.y210{bottom:441.334490pt;}
.y20f{bottom:441.974490pt;}
.yd2{bottom:442.134490pt;}
.yf9{bottom:442.454490pt;}
.y20e{bottom:445.334489pt;}
.y21{bottom:445.494488pt;}
.y20b{bottom:446.774488pt;}
.y176{bottom:446.934488pt;}
.y209{bottom:447.414488pt;}
.y260{bottom:447.574488pt;}
.y213{bottom:450.774486pt;}
.y4f{bottom:451.094486pt;}
.y20d{bottom:452.694486pt;}
.y114{bottom:453.974485pt;}
.y133{bottom:455.574484pt;}
.yaa{bottom:456.694484pt;}
.y20a{bottom:458.134483pt;}
.yf8{bottom:458.614483pt;}
.y75{bottom:459.254483pt;}
.y20{bottom:459.894483pt;}
.yd1{bottom:460.054483pt;}
.y23f{bottom:461.494482pt;}
.y20c{bottom:463.414481pt;}
.y159{bottom:464.854481pt;}
.y240{bottom:465.014400pt;}
.y4e{bottom:465.494480pt;}
.y23c{bottom:467.734480pt;}
.y25f{bottom:469.014479pt;}
.y242{bottom:470.454478pt;}
.y157{bottom:470.774478pt;}
.y207{bottom:472.054400pt;}
.y113{bottom:473.814477pt;}
.y23e{bottom:473.974477pt;}
.ya9{bottom:474.134477pt;}
.y1f{bottom:474.294477pt;}
.y175{bottom:474.774477pt;}
.yf7{bottom:474.934477pt;}
.y132{bottom:475.734476pt;}
.y23d{bottom:476.694476pt;}
.y74{bottom:477.174476pt;}
.yd0{bottom:478.134475pt;}
.y204{bottom:479.574475pt;}
.y4d{bottom:479.894475pt;}
.y174{bottom:480.214475pt;}
.y158{bottom:483.414473pt;}
.y201{bottom:484.854473pt;}
.y206{bottom:488.214471pt;}
.y1e{bottom:488.694471pt;}
.y203{bottom:490.294471pt;}
.ya7{bottom:490.454470pt;}
.yf6{bottom:491.094470pt;}
.y112{bottom:493.654469pt;}
.y4c{bottom:494.294469pt;}
.ya8{bottom:494.774469pt;}
.y73{bottom:495.094469pt;}
.y131{bottom:495.734468pt;}
.ycf{bottom:496.054468pt;}
.y155{bottom:497.654468pt;}
.y23a{bottom:498.614400pt;}
.y202{bottom:501.014466pt;}
.y238{bottom:501.334466pt;}
.y1d{bottom:503.094465pt;}
.y239{bottom:504.054465pt;}
.y205{bottom:506.454464pt;}
.ya6{bottom:506.614464pt;}
.yf5{bottom:507.254464pt;}
.y4b{bottom:508.694463pt;}
.y169{bottom:509.494463pt;}
.y72{bottom:513.174461pt;}
.y111{bottom:513.334461pt;}
.y154{bottom:513.814461pt;}
.yce{bottom:514.134461pt;}
.y1fe{bottom:515.094400pt;}
.y130{bottom:515.734460pt;}
.y1c{bottom:517.494460pt;}
.y1fa{bottom:522.454458pt;}
.ya5{bottom:522.774458pt;}
.y4a{bottom:523.094457pt;}
.yf4{bottom:523.414457pt;}
.y168{bottom:525.654456pt;}
.y1fd{bottom:527.254456pt;}
.y1f7{bottom:527.894456pt;}
.y153{bottom:529.014455pt;}
.y71{bottom:531.094454pt;}
.y1fc{bottom:531.254454pt;}
.y1b{bottom:531.894454pt;}
.y236{bottom:532.054400pt;}
.ycd{bottom:532.054454pt;}
.y1f9{bottom:532.534454pt;}
.y110{bottom:533.174453pt;}
.y235{bottom:534.774453pt;}
.y12f{bottom:535.894452pt;}
.y200{bottom:536.534452pt;}
.y49{bottom:537.494452pt;}
.y1f6{bottom:538.614451pt;}
.ya4{bottom:538.934451pt;}
.yf3{bottom:539.574451pt;}
.y167{bottom:541.014450pt;}
.y152{bottom:542.774450pt;}
.y1f8{bottom:543.894449pt;}
.y1a{bottom:546.294448pt;}
.y70{bottom:549.174447pt;}
.y1fb{bottom:549.334447pt;}
.ycc{bottom:549.974447pt;}
.y48{bottom:551.894446pt;}
.y10f{bottom:553.014445pt;}
.y166{bottom:554.774445pt;}
.ya3{bottom:555.094445pt;}
.yf2{bottom:555.894444pt;}
.y1f3{bottom:557.974400pt;}
.y19{bottom:560.694442pt;}
.y151{bottom:561.174442pt;}
.y1ef{bottom:565.494440pt;}
.y233{bottom:565.654400pt;}
.y47{bottom:566.294440pt;}
.y6f{bottom:567.094440pt;}
.ycb{bottom:567.574440pt;}
.y231{bottom:568.374439pt;}
.y1f2{bottom:570.134439pt;}
.y1eb{bottom:570.774438pt;}
.y232{bottom:571.094438pt;}
.ya2{bottom:571.894438pt;}
.yf1{bottom:572.054438pt;}
.y1f1{bottom:574.134437pt;}
.y173{bottom:574.294437pt;}
.y18{bottom:575.094437pt;}
.y1ee{bottom:575.574436pt;}
.y12e{bottom:576.054436pt;}
.y1ed{bottom:576.214436pt;}
.y1f5{bottom:579.574435pt;}
.y46{bottom:580.694434pt;}
.y150{bottom:581.174434pt;}
.y1ea{bottom:581.494434pt;}
.yca{bottom:583.734433pt;}
.y6e{bottom:585.174433pt;}
.ya1{bottom:585.974432pt;}
.y255{bottom:586.454432pt;}
.y1ec{bottom:586.934432pt;}
.yf0{bottom:588.214431pt;}
.y17{bottom:589.334431pt;}
.y9e{bottom:590.134431pt;}
.y1f0{bottom:592.214430pt;}
.y9b{bottom:594.134429pt;}
.y45{bottom:595.094429pt;}
.y22d{bottom:595.574428pt;}
.y12d{bottom:596.214428pt;}
.y9a{bottom:596.854428pt;}
.y9c{bottom:597.334428pt;}
.y22e{bottom:599.094400pt;}
.yc9{bottom:599.894427pt;}
.y14f{bottom:601.334426pt;}
.y9f{bottom:601.814426pt;}
.y256{bottom:601.974426pt;}
.y6d{bottom:603.094425pt;}
.y16{bottom:603.734425pt;}
.yef{bottom:604.374425pt;}
.y230{bottom:604.534425pt;}
.y9d{bottom:604.694425pt;}
.y1e8{bottom:605.014425pt;}
.y22c{bottom:608.214423pt;}
.y1e7{bottom:608.374423pt;}
.y44{bottom:609.494423pt;}
.ya0{bottom:610.294423pt;}
.y22b{bottom:610.934422pt;}
.y12c{bottom:612.694422pt;}
.y1e5{bottom:615.734420pt;}
.yc8{bottom:616.534420pt;}
.y257{bottom:617.334420pt;}
.y15{bottom:618.134419pt;}
.y1e9{bottom:619.094419pt;}
.y172{bottom:620.374419pt;}
.yee{bottom:620.534418pt;}
.y6c{bottom:621.014418pt;}
.y14e{bottom:621.334418pt;}
.y43{bottom:623.894417pt;}
.y1e6{bottom:626.454416pt;}
.yc6{bottom:630.614414pt;}
.y12b{bottom:631.094414pt;}
.y14{bottom:632.534414pt;}
.y229{bottom:632.694400pt;}
.y258{bottom:632.854414pt;}
.y228{bottom:635.414413pt;}
.yed{bottom:636.694412pt;}
.y1e2{bottom:637.014400pt;}
.yc7{bottom:637.334412pt;}
.y42{bottom:638.134411pt;}
.y6b{bottom:639.094411pt;}
.y14d{bottom:641.334410pt;}
.y171{bottom:643.414409pt;}
.y1dd{bottom:644.534409pt;}
.yc5{bottom:645.174409pt;}
.y13{bottom:646.934408pt;}
.y259{bottom:648.214407pt;}
.y1e1{bottom:649.814407pt;}
.y41{bottom:652.534406pt;}
.yec{bottom:653.014405pt;}
.y1e0{bottom:653.174405pt;}
.y12a{bottom:653.974405pt;}
.y1db{bottom:655.254405pt;}
.y6a{bottom:657.014404pt;}
.y1e4{bottom:658.614403pt;}
.y1df{bottom:660.534402pt;}
.y12{bottom:661.334402pt;}
.y14c{bottom:661.494402pt;}
.y224{bottom:662.614402pt;}
.y25a{bottom:663.734401pt;}
.y1dc{bottom:665.974400pt;}
.y225{bottom:666.294400pt;}
.y170{bottom:666.454400pt;}
.y40{bottom:666.934400pt;}
.y221{bottom:669.014399pt;}
.yeb{bottom:669.174399pt;}
.y1de{bottom:671.254398pt;}
.y227{bottom:671.734398pt;}
.y129{bottom:674.774397pt;}
.y69{bottom:675.094397pt;}
.y223{bottom:675.254397pt;}
.y11{bottom:675.734396pt;}
.y222{bottom:677.974395pt;}
.y25b{bottom:679.094395pt;}
.y3f{bottom:681.334394pt;}
.y14b{bottom:681.494394pt;}
.yea{bottom:685.334393pt;}
.y16f{bottom:689.654391pt;}
.yf{bottom:690.454390pt;}
.y10{bottom:691.894390pt;}
.y128{bottom:692.534390pt;}
.y68{bottom:693.014389pt;}
.y25c{bottom:694.614389pt;}
.y3e{bottom:695.734388pt;}
.y1da{bottom:698.294387pt;}
.y21e{bottom:700.054400pt;}
.ye9{bottom:701.494386pt;}
.y14a{bottom:701.654386pt;}
.y220{bottom:702.774386pt;}
.y8{bottom:704.534385pt;}
.y21d{bottom:706.454384pt;}
.y127{bottom:708.694383pt;}
.y25d{bottom:709.974383pt;}
.y3d{bottom:710.134383pt;}
.y67{bottom:711.094382pt;}
.y16d{bottom:714.614381pt;}
.y7{bottom:716.374380pt;}
.ye8{bottom:717.654380pt;}
.y149{bottom:722.294378pt;}
.y3c{bottom:724.534377pt;}
.y126{bottom:724.854377pt;}
.y1d9{bottom:726.134376pt;}
.y16e{bottom:728.534375pt;}
.y66{bottom:729.014375pt;}
.y1d8{bottom:731.574374pt;}
.y6{bottom:733.974373pt;}
.y16b{bottom:734.454373pt;}
.y21c{bottom:736.694372pt;}
.y3b{bottom:738.934371pt;}
.y16a{bottom:740.854370pt;}
.y125{bottom:741.174370pt;}
.y148{bottom:743.094369pt;}
.y25e{bottom:746.614368pt;}
.y65{bottom:746.934368pt;}
.y16c{bottom:747.094368pt;}
.y5{bottom:748.534367pt;}
.ye7{bottom:750.134367pt;}
.y3a{bottom:753.334365pt;}
.y124{bottom:757.334364pt;}
.y4{bottom:760.374363pt;}
.y147{bottom:760.854362pt;}
.y252{bottom:762.294362pt;}
.y64{bottom:765.014361pt;}
.ye6{bottom:766.294360pt;}
.y39{bottom:767.734360pt;}
.y123{bottom:774.294357pt;}
.y3{bottom:775.094357pt;}
.y146{bottom:777.174356pt;}
.y2{bottom:784.374353pt;}
.y38{bottom:787.254352pt;}
.y1{bottom:801.654346pt;}
.y37{bottom:805.334345pt;}
.h27{height:1.852499pt;}
.hf{height:3.412499pt;}
.h30{height:10.560000pt;}
.h32{height:12.480000pt;}
.h7{height:14.530554pt;}
.h33{height:15.283119pt;}
.h2f{height:16.732153pt;}
.h3{height:18.230618pt;}
.h6{height:18.493433pt;}
.h4{height:18.654713pt;}
.h9{height:18.861555pt;}
.h2c{height:25.427190pt;}
.h2e{height:25.538550pt;}
.h2d{height:25.761270pt;}
.h19{height:26.291864pt;}
.h34{height:26.861239pt;}
.h22{height:26.933739pt;}
.h29{height:27.114989pt;}
.h21{height:28.800613pt;}
.hc{height:31.113113pt;}
.h3a{height:31.322487pt;}
.hb{height:31.448112pt;}
.h24{height:33.023987pt;}
.h1f{height:34.734361pt;}
.h1c{height:34.828111pt;}
.h20{height:35.062486pt;}
.ha{height:35.203111pt;}
.h23{height:36.546545pt;}
.h39{height:36.865265pt;}
.h8{height:38.294672pt;}
.h38{height:38.439360pt;}
.h12{height:38.543110pt;}
.h10{height:38.958109pt;}
.h16{height:39.687484pt;}
.h2{height:39.933734pt;}
.h5{height:40.580921pt;}
.h28{height:40.941234pt;}
.h2a{height:41.581233pt;}
.h1b{height:42.862483pt;}
.he{height:42.867170pt;}
.h1e{height:43.009983pt;}
.hd{height:43.182483pt;}
.h15{height:46.037482pt;}
.h2b{height:46.547181pt;}
.h36{height:46.658541pt;}
.h31{height:47.298541pt;}
.h11{height:47.439669pt;}
.h13{height:49.203418pt;}
.h1{height:50.785292pt;}
.h35{height:51.821229pt;}
.h37{height:52.461229pt;}
.h1d{height:52.583729pt;}
.h25{height:53.760603pt;}
.h26{height:54.400603pt;}
.h1a{height:59.531226pt;}
.h14{height:65.881224pt;}
.h18{height:67.801223pt;}
.h17{height:81.241218pt;}
.h0{height:865.333333pt;}
.w2{width:4.640000pt;}
.w1{width:8.800000pt;}
.w5{width:12.320000pt;}
.w7{width:12.800000pt;}
.w3{width:19.200000pt;}
.w6{width:20.480000pt;}
.w4{width:32.000000pt;}
.w0{width:612.000000pt;}
.x58{left:-4.000169pt;}
.x52{left:-1.760170pt;}
.x0{left:0.000000pt;}
.x7{left:82.879967pt;}
.x27{left:87.199965pt;}
.x25{left:90.879964pt;}
.x37{left:91.839963pt;}
.x31{left:94.399962pt;}
.xb{left:101.759941pt;}
.x3a{left:110.399956pt;}
.x50{left:122.399951pt;}
.x3d{left:128.799948pt;}
.x26{left:130.879948pt;}
.x38{left:136.959945pt;}
.x70{left:138.559945pt;}
.x6e{left:140.159944pt;}
.x6f{left:143.199943pt;}
.x15{left:146.239935pt;}
.x36{left:169.115878pt;}
.x4{left:180.473261pt;}
.x28{left:190.559967pt;}
.x3b{left:192.319923pt;}
.x39{left:201.915919pt;}
.x71{left:203.839918pt;}
.x1b{left:206.559917pt;}
.x9{left:207.679917pt;}
.x5{left:216.159914pt;}
.x34{left:226.719909pt;}
.x16{left:238.559905pt;}
.xc{left:244.322758pt;}
.x1{left:247.199901pt;}
.x2{left:252.639899pt;}
.x2f{left:254.559898pt;}
.x6{left:256.478824pt;}
.x17{left:259.359896pt;}
.x3c{left:261.759895pt;}
.x18{left:267.839893pt;}
.x3f{left:270.880057pt;}
.x19{left:277.759889pt;}
.x1a{left:281.599887pt;}
.x61{left:282.719887pt;}
.x40{left:284.319886pt;}
.x29{left:286.559885pt;}
.x35{left:289.279884pt;}
.x41{left:291.999883pt;}
.x67{left:293.119883pt;}
.x2a{left:295.999882pt;}
.xa{left:297.919881pt;}
.x13{left:303.999878pt;}
.x3{left:305.919878pt;}
.x4c{left:306.880053pt;}
.x49{left:308.639877pt;}
.x8{left:310.559876pt;}
.x32{left:311.519876pt;}
.x60{left:312.800625pt;}
.x4a{left:313.759874pt;}
.x44{left:315.360000pt;}
.x2b{left:316.479873pt;}
.x4e{left:318.239879pt;}
.x4f{left:321.279871pt;}
.x2c{left:323.039871pt;}
.x45{left:324.160000pt;}
.x42{left:326.399869pt;}
.x4d{left:327.679869pt;}
.x4b{left:329.280000pt;}
.x11{left:331.199868pt;}
.xd{left:332.319867pt;}
.x43{left:333.919866pt;}
.x1c{left:337.279865pt;}
.xe{left:338.239865pt;}
.xf{left:344.319862pt;}
.x2d{left:345.759862pt;}
.x23{left:354.879858pt;}
.x10{left:356.159858pt;}
.x12{left:357.439857pt;}
.x2e{left:359.519856pt;}
.x64{left:361.119905pt;}
.x5f{left:362.079849pt;}
.x46{left:363.039855pt;}
.x6a{left:366.879834pt;}
.x14{left:370.079852pt;}
.x68{left:375.839850pt;}
.x54{left:376.959849pt;}
.x69{left:380.319848pt;}
.x55{left:381.439847pt;}
.x6b{left:382.399847pt;}
.x65{left:383.679847pt;}
.x5c{left:384.639846pt;}
.x1d{left:386.239846pt;}
.x66{left:388.159845pt;}
.x5d{left:389.119844pt;}
.x1e{left:392.799843pt;}
.x47{left:393.919842pt;}
.x62{left:396.159842pt;}
.x56{left:398.239841pt;}
.x63{left:400.639840pt;}
.x5e{left:402.239839pt;}
.x48{left:403.359839pt;}
.x57{left:404.959838pt;}
.x1f{left:407.039837pt;}
.x3e{left:409.440398pt;}
.x20{left:415.519834pt;}
.x21{left:425.439830pt;}
.x51{left:426.720000pt;}
.x22{left:429.279828pt;}
.x30{left:436.799825pt;}
.x59{left:439.039824pt;}
.x5a{left:452.959819pt;}
.x53{left:458.719817pt;}
.x5b{left:461.119816pt;}
.x24{left:463.359815pt;}
.x33{left:488.799701pt;}
.x6d{left:524.799790pt;}
.x6c{left:528.800296pt;}
}




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