
    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_cb8a9cab0c68eb6b097190c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f3f6708115c621b232b333dc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c9003003813949b1bb07b4cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_1f2741c80438af12889f2ece.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_84527255154e669c7c81c55b.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_42eaca8e3b210fe39c4757fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.281250;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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.281250;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_0d9434b8aecc641263f1adcb.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c9cb78e319c56a9946d5aa4e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b4cef21cc2bea8bc5dfd8c08.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0abcc2f045d9684ac9d6ebed.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_45ffcea2af9551ca96c382bd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682617;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_525e2d8b627183dfd43dbe19.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.959961;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_b5bc1e76c5e1c68c5d73120b.woff2')format("woff");}.fff{font-family:fff;line-height:0.959961;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_6ada25b2ec7fd6d5ee342780.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_7a8e4c24b6d06c69a72eabad.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6300d0c49d36ac4b99c7e690.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.959961;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_0abcc2f045d9684ac9d6ebed.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_c3002da4106dd69762782808.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.372070;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_35074e9e18f58e01d07ad01e.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_ec0f61b8b1518d59bf38a113.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c3f0ec45a2a6d07fa4af5c4c.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_7c0060174534cb84aa19ff9a.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_752a2a336ee9523f90e56872.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.959961;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:ff1a;src:url('chunks/assets/font_7944649fab05153a27ea4f2d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.959961;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:ff1b;src:url('chunks/assets/font_fdf402018780d5551400926b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_99bc15650eb17e836e220367.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_8a5d9b00315ce20a32ebf628.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.251533,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251533,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251533,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250500,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.251199,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251199,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251199,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.248476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248476,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-76.320000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.176000px;}
.ls1e{letter-spacing:-0.839393px;}
.ls5{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.567600px;}
.ls11{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.152400px;}
.ls8{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.078156px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.109200px;}
.ls18{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.123840px;}
.ls13{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.243840px;}
.lsd{letter-spacing:0.262200px;}
.ls1a{letter-spacing:0.305280px;}
.ls7{letter-spacing:0.305400px;}
.ls1d{letter-spacing:0.354240px;}
.ls3{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.612000px;}
.ls1c{letter-spacing:0.720000px;}
.lsf{letter-spacing:3.240000px;}
.ls1{letter-spacing:15.840000px;}
.ls15{letter-spacing:21.600000px;}
.ls17{letter-spacing:31.680000px;}
.ls19{letter-spacing:199.416000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(0,51,153),0 0.015em rgb(0,51,153),0.015em 0 rgb(0,51,153),0 -0.015em  rgb(0,51,153);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,51,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-66.240000px;}
.ws12{word-spacing:-17.172000px;}
.wsb{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.822200px;}
.ws11{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.450800px;}
.ws8{word-spacing:-16.407600px;}
.ws6{word-spacing:-16.254600px;}
.wsd{word-spacing:-16.145400px;}
.ws10{word-spacing:-15.992400px;}
.ws9{word-spacing:-15.948000px;}
.wsa{word-spacing:-15.840000px;}
.wse{word-spacing:-15.384000px;}
.ws3{word-spacing:-15.000000px;}
.ws18{word-spacing:-14.918542px;}
.ws14{word-spacing:-13.205090px;}
.ws1c{word-spacing:-12.336728px;}
.ws13{word-spacing:-11.160000px;}
.ws1{word-spacing:-10.800000px;}
.ws0{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
.ws16{word-spacing:192.488110px;}
.ws15{word-spacing:192.503605px;}
.ws17{word-spacing:192.539761px;}
.ws1b{word-spacing:213.380098px;}
.ws1a{word-spacing:217.464768px;}
.ws19{word-spacing:217.499780px;}
.ws1f{word-spacing:257.276268px;}
.ws1e{word-spacing:260.757842px;}
.ws1d{word-spacing:260.791227px;}
._16{margin-left:-4.968000px;}
._4{margin-left:-3.643458px;}
._0{margin-left:-1.987134px;}
._2{width:1.090487px;}
._e{width:2.156664px;}
._5{width:3.642604px;}
._6{width:4.896527px;}
._10{width:5.960938px;}
._f{width:7.220491px;}
._12{width:8.743812px;}
._9{width:10.068612px;}
._11{width:11.137297px;}
._b{width:12.176861px;}
._a{width:13.253749px;}
._3{width:14.333370px;}
._1{width:15.367812px;}
._13{width:18.215934px;}
._7{width:19.673412px;}
._8{width:20.931641px;}
._18{width:21.961033px;}
._17{width:23.184132px;}
._1a{width:24.443900px;}
._26{width:25.864914px;}
._1d{width:27.025920px;}
._1b{width:28.681920px;}
._1c{width:30.139134px;}
._21{width:31.433287px;}
._20{width:32.471955px;}
._1f{width:33.551986px;}
._1e{width:34.560007px;}
._14{width:36.167040px;}
._15{width:37.382363px;}
._d{width:38.908381px;}
._c{width:40.191441px;}
._33{width:44.359680px;}
._34{width:45.494208px;}
._28{width:49.388588px;}
._27{width:50.541120px;}
._24{width:52.025896px;}
._2b{width:60.259680px;}
._2a{width:61.599360px;}
._29{width:62.729214px;}
._32{width:72.861732px;}
._31{width:74.254974px;}
._2f{width:78.693120px;}
._30{width:79.730400px;}
._2c{width:89.490240px;}
._2e{width:92.904007px;}
._2d{width:93.963847px;}
._25{width:100.785134px;}
._22{width:115.820581px;}
._35{width:135.903360px;}
._36{width:148.143360px;}
._23{width:195.840000px;}
._3d{width:442.610210px;}
._38{width:479.431130px;}
._3c{width:482.314502px;}
._37{width:518.485100px;}
._3b{width:536.559622px;}
._3a{width:586.021155px;}
._19{width:847.596000px;}
._39{width:1359.420000px;}
.fc5{color:rgb(68,114,196);}
.fc3{color:rgb(0,51,153);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs10{font-size:44.376720px;}
.fsf{font-size:44.465388px;}
.fsa{font-size:47.500325px;}
.fs9{font-size:47.791585px;}
.fsd{font-size:53.663819px;}
.fsc{font-size:53.921208px;}
.fse{font-size:54.698253px;}
.fs8{font-size:58.790431px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:60.120000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsb{font-size:66.330738px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2a6{bottom:3.600000px;}
.y19d{bottom:3.780000px;}
.y1c1{bottom:3.945000px;}
.y1b4{bottom:3.960000px;}
.y2ab{bottom:3.975000px;}
.y294{bottom:4.125000px;}
.y29e{bottom:4.131000px;}
.y1b0{bottom:4.140000px;}
.y1aa{bottom:4.155000px;}
.y213{bottom:4.170000px;}
.y1a{bottom:4.500000px;}
.y250{bottom:5.040000px;}
.y1df{bottom:5.220000px;}
.y265{bottom:5.400000px;}
.y292{bottom:5.565000px;}
.y278{bottom:5.580000px;}
.y246{bottom:6.120000px;}
.y285{bottom:6.840000px;}
.y227{bottom:7.020000px;}
.y1f9{bottom:7.200000px;}
.y253{bottom:7.560000px;}
.y243{bottom:8.100000px;}
.y280{bottom:8.280000px;}
.y1e7{bottom:8.640000px;}
.y1f6{bottom:9.000000px;}
.y1d8{bottom:9.540000px;}
.y23e{bottom:9.900000px;}
.y1dd{bottom:10.080000px;}
.y2ce{bottom:10.800000px;}
.y258{bottom:11.895000px;}
.y211{bottom:12.600000px;}
.y234{bottom:12.945000px;}
.y22f{bottom:12.960000px;}
.y232{bottom:13.140000px;}
.y2b9{bottom:13.500000px;}
.y24f{bottom:16.020000px;}
.y24c{bottom:16.380000px;}
.y2c3{bottom:16.935000px;}
.y30c{bottom:17.047208px;}
.y2de{bottom:18.191099px;}
.y23a{bottom:18.720000px;}
.y28e{bottom:18.750000px;}
.y1f0{bottom:19.260000px;}
.y2e4{bottom:19.290204px;}
.y1d2{bottom:20.160000px;}
.y2cc{bottom:20.340000px;}
.y1d4{bottom:20.520000px;}
.y2fe{bottom:20.524242px;}
.y20a{bottom:22.485000px;}
.y1e3{bottom:22.500000px;}
.y208{bottom:22.530000px;}
.y19c{bottom:22.680000px;}
.y1c6{bottom:22.845000px;}
.y1fb{bottom:22.860000px;}
.y207{bottom:22.890000px;}
.y29a{bottom:23.025000px;}
.y29d{bottom:23.031000px;}
.y1af{bottom:23.040000px;}
.y1a9{bottom:23.055000px;}
.y1c0{bottom:23.070000px;}
.y312{bottom:23.153332px;}
.y267{bottom:23.220000px;}
.y27b{bottom:23.400000px;}
.y2bd{bottom:23.430000px;}
.y1e1{bottom:23.760000px;}
.y304{bottom:23.819378px;}
.y217{bottom:24.300000px;}
.y291{bottom:24.465000px;}
.y264{bottom:24.480000px;}
.y221{bottom:24.495000px;}
.y26c{bottom:24.660000px;}
.y289{bottom:24.870000px;}
.y228{bottom:25.560000px;}
.y283{bottom:25.740000px;}
.y2c5{bottom:25.920000px;}
.y1f8{bottom:26.100000px;}
.y225{bottom:26.820000px;}
.y27f{bottom:27.360000px;}
.y1d9{bottom:27.900000px;}
.y23d{bottom:28.980000px;}
.y1d6{bottom:29.160000px;}
.y1de{bottom:29.700000px;}
.y2cd{bottom:29.880000px;}
.y2ca{bottom:30.255000px;}
.y24a{bottom:30.780000px;}
.y1db{bottom:30.960000px;}
.y241{bottom:31.320000px;}
.y2be{bottom:31.890000px;}
.y2ba{bottom:32.220000px;}
.y255{bottom:32.400000px;}
.y2e3{bottom:32.987444px;}
.y7b{bottom:33.498900px;}
.yc1{bottom:33.783000px;}
.y2c6{bottom:34.740000px;}
.y2c1{bottom:35.820000px;}
.y311{bottom:35.948594px;}
.y2cf{bottom:38.700000px;}
.y303{bottom:39.274856px;}
.y1ee{bottom:39.780000px;}
.y22d{bottom:40.500000px;}
.y29c{bottom:41.565000px;}
.y1c5{bottom:41.925000px;}
.y1a3{bottom:41.940000px;}
.y1a8{bottom:41.955000px;}
.y1bf{bottom:41.970000px;}
.y2b0{bottom:41.985000px;}
.y21d{bottom:42.120000px;}
.y1ba{bottom:42.135000px;}
.y272{bottom:42.150000px;}
.y27a{bottom:42.300000px;}
.y2b7{bottom:42.480000px;}
.y2bc{bottom:42.510000px;}
.y28c{bottom:42.690000px;}
.y298{bottom:42.825000px;}
.y21b{bottom:43.380000px;}
.y270{bottom:43.410000px;}
.y290{bottom:43.545000px;}
.y26b{bottom:43.560000px;}
.y2ae{bottom:43.605000px;}
.y288{bottom:43.950000px;}
.y282{bottom:44.640000px;}
.y27e{bottom:46.260000px;}
.y30e{bottom:47.743891px;}
.y244{bottom:48.960000px;}
.y2c8{bottom:49.140000px;}
.y1f7{bottom:49.500000px;}
.y249{bottom:49.890000px;}
.y240{bottom:50.220000px;}
.y7a{bottom:50.422680px;}
.yc0{bottom:50.702250px;}
.y1f4{bottom:50.760000px;}
.y2e0{bottom:51.053822px;}
.y238{bottom:54.360000px;}
.y2c0{bottom:54.720000px;}
.y1f1{bottom:57.420000px;}
.y300{bottom:57.601852px;}
.y1ed{bottom:58.680000px;}
.y22c{bottom:59.400000px;}
.y29b{bottom:60.465000px;}
.y1c4{bottom:60.825000px;}
.y1b3{bottom:60.840000px;}
.y1a2{bottom:61.020000px;}
.y1a7{bottom:61.035000px;}
.y28b{bottom:61.590000px;}
.y297{bottom:61.725000px;}
.y26a{bottom:62.460000px;}
.y287{bottom:62.850000px;}
.y79{bottom:67.436640px;}
.y24d{bottom:67.530000px;}
.ybf{bottom:67.711650px;}
.y248{bottom:68.790000px;}
.y237{bottom:73.260000px;}
.y22b{bottom:78.525000px;}
.y1c3{bottom:79.905000px;}
.y1a1{bottom:79.920000px;}
.y1a6{bottom:79.935000px;}
.y1ae{bottom:79.965000px;}
.y2a1{bottom:81.540000px;}
.y30f{bottom:84.397359px;}
.y78{bottom:84.450600px;}
.ybe{bottom:84.721200px;}
.y1e8{bottom:86.445000px;}
.y1e5{bottom:87.705000px;}
.y2e1{bottom:88.470166px;}
.y23b{bottom:90.900000px;}
.y236{bottom:92.160000px;}
.y230{bottom:96.165000px;}
.y22a{bottom:97.425000px;}
.y1b2{bottom:98.820000px;}
.y1a0{bottom:99.000000px;}
.y1a5{bottom:99.015000px;}
.y1b9{bottom:99.030000px;}
.y1ad{bottom:99.045000px;}
.y77{bottom:101.464560px;}
.ybd{bottom:101.730600px;}
.y106{bottom:110.916000px;}
.y184{bottom:111.456000px;}
.y16a{bottom:113.256000px;}
.y3a{bottom:115.236000px;}
.y16c{bottom:117.036000px;}
.y19f{bottom:117.900000px;}
.y1b7{bottom:117.930000px;}
.y1ac{bottom:117.945000px;}
.y76{bottom:118.478520px;}
.ybc{bottom:118.740000px;}
.y2fb{bottom:118.836000px;}
.y11b{bottom:121.356000px;}
.y296{bottom:121.725000px;}
.yde{bottom:122.976000px;}
.y20f{bottom:128.556000px;}
.y75{bottom:135.402300px;}
.ybb{bottom:135.659250px;}
.y1b1{bottom:136.800000px;}
.y1b6{bottom:137.010000px;}
.y1c8{bottom:137.196000px;}
.y2fa{bottom:137.916000px;}
.y301{bottom:138.949792px;}
.y105{bottom:139.356000px;}
.y183{bottom:139.896000px;}
.y133{bottom:140.796000px;}
.y169{bottom:141.696000px;}
.y39{bottom:143.676000px;}
.ydd{bottom:145.476000px;}
.y145{bottom:146.916000px;}
.y20e{bottom:147.456000px;}
.y11a{bottom:149.796000px;}
.y74{bottom:152.416260px;}
.yba{bottom:152.668800px;}
.y194{bottom:152.850000px;}
.y1c7{bottom:152.865000px;}
.y2f9{bottom:156.810000px;}
.y299{bottom:160.425000px;}
.y162{bottom:161.130000px;}
.y20d{bottom:166.530000px;}
.y104{bottom:167.790000px;}
.y182{bottom:168.330000px;}
.y132{bottom:169.230000px;}
.y73{bottom:169.430220px;}
.yb9{bottom:169.678200px;}
.y168{bottom:170.130000px;}
.y38{bottom:172.110000px;}
.y1c2{bottom:172.665000px;}
.y186{bottom:173.550000px;}
.ydc{bottom:173.910000px;}
.ye5{bottom:175.350000px;}
.y2f8{bottom:175.710000px;}
.y193{bottom:181.290000px;}
.y119{bottom:182.730000px;}
.y20c{bottom:185.430000px;}
.y72{bottom:186.444180px;}
.yb8{bottom:186.687750px;}
.y161{bottom:189.570000px;}
.y2f7{bottom:194.790000px;}
.y103{bottom:196.230000px;}
.y181{bottom:196.770000px;}
.y131{bottom:197.670000px;}
.y28f{bottom:199.125000px;}
.y167{bottom:199.290000px;}
.y37{bottom:200.550000px;}
.y185{bottom:201.990000px;}
.ydb{bottom:202.350000px;}
.y71{bottom:203.458140px;}
.yb7{bottom:203.697150px;}
.ye4{bottom:203.790000px;}
.y20b{bottom:204.330000px;}
.y192{bottom:209.730000px;}
.y2f6{bottom:213.690000px;}
.y160{bottom:218.010000px;}
.y295{bottom:218.925000px;}
.y209{bottom:220.185000px;}
.y70{bottom:220.381920px;}
.yb6{bottom:220.616400px;}
.y102{bottom:224.670000px;}
.y180{bottom:225.210000px;}
.y130{bottom:226.110000px;}
.y36{bottom:228.990000px;}
.y118{bottom:229.170000px;}
.y166{bottom:229.530000px;}
.yda{bottom:230.790000px;}
.ye3{bottom:232.230000px;}
.y2f5{bottom:232.770000px;}
.y30d{bottom:233.600154px;}
.y6f{bottom:237.395880px;}
.yb5{bottom:237.625800px;}
.y191{bottom:237.810000px;}
.y293{bottom:238.545000px;}
.y2d5{bottom:239.610000px;}
.y15f{bottom:246.090000px;}
.y2df{bottom:250.013933px;}
.y2f4{bottom:251.670000px;}
.y101{bottom:253.110000px;}
.y17f{bottom:253.650000px;}
.y6e{bottom:254.409840px;}
.yb4{bottom:254.635350px;}
.y35{bottom:257.610000px;}
.y286{bottom:258.345000px;}
.y16b{bottom:258.870000px;}
.y206{bottom:258.885000px;}
.yd9{bottom:259.230000px;}
.y144{bottom:260.670000px;}
.y12f{bottom:263.550000px;}
.y190{bottom:266.250000px;}
.y117{bottom:266.610000px;}
.y1be{bottom:268.245000px;}
.y2d4{bottom:269.490000px;}
.ye2{bottom:269.670000px;}
.y2f3{bottom:270.570000px;}
.y6d{bottom:271.423800px;}
.yb3{bottom:271.644750px;}
.y15e{bottom:275.115000px;}
.y15{bottom:281.415000px;}
.y100{bottom:281.595000px;}
.y2ff{bottom:282.080067px;}
.y17e{bottom:282.135000px;}
.y34{bottom:286.095000px;}
.y165{bottom:287.715000px;}
.y2d3{bottom:288.435000px;}
.y6c{bottom:288.437760px;}
.yb2{bottom:288.654150px;}
.y143{bottom:289.155000px;}
.y2f2{bottom:289.695000px;}
.y28d{bottom:292.935000px;}
.yd8{bottom:293.655000px;}
.y116{bottom:295.095000px;}
.y205{bottom:297.615000px;}
.y12e{bottom:300.855000px;}
.y15d{bottom:303.555000px;}
.y6b{bottom:305.361540px;}
.yb1{bottom:305.573400px;}
.ye1{bottom:306.795000px;}
.y2d2{bottom:307.335000px;}
.y2f1{bottom:308.595000px;}
.y14{bottom:309.855000px;}
.yff{bottom:310.215000px;}
.y17d{bottom:310.575000px;}
.y28a{bottom:312.555000px;}
.y33{bottom:314.535000px;}
.yd7{bottom:316.155000px;}
.y142{bottom:317.595000px;}
.y6a{bottom:322.375500px;}
.yb0{bottom:322.582950px;}
.y115{bottom:323.715000px;}
.y1bd{bottom:325.875000px;}
.y2d1{bottom:326.415000px;}
.y2f0{bottom:327.675000px;}
.y15c{bottom:331.995000px;}
.y204{bottom:336.135000px;}
.y27d{bottom:336.855000px;}
.y13{bottom:338.295000px;}
.yfe{bottom:338.655000px;}
.y17c{bottom:339.015000px;}
.y69{bottom:339.389460px;}
.yaf{bottom:339.592350px;}
.y32{bottom:342.975000px;}
.ye0{bottom:344.235000px;}
.yd6{bottom:344.595000px;}
.y2d0{bottom:345.315000px;}
.y141{bottom:346.215000px;}
.y2ef{bottom:346.575000px;}
.y114{bottom:352.155000px;}
.y68{bottom:356.403420px;}
.yae{bottom:356.601750px;}
.y284{bottom:356.655000px;}
.y203{bottom:359.895000px;}
.y15b{bottom:360.435000px;}
.y2c9{bottom:360.960000px;}
.y2c7{bottom:360.975000px;}
.y1bc{bottom:364.560000px;}
.y1bb{bottom:364.575000px;}
.y2ee{bottom:365.655000px;}
.y12{bottom:366.735000px;}
.yfd{bottom:367.095000px;}
.y17b{bottom:367.635000px;}
.y31{bottom:371.415000px;}
.yd5{bottom:373.215000px;}
.y67{bottom:373.417380px;}
.yad{bottom:373.611300px;}
.y140{bottom:374.655000px;}
.y12d{bottom:375.735000px;}
.y202{bottom:378.975000px;}
.y281{bottom:379.155000px;}
.y113{bottom:380.595000px;}
.y2ed{bottom:384.555000px;}
.y15a{bottom:388.875000px;}
.y66{bottom:390.431340px;}
.yac{bottom:390.620700px;}
.yfc{bottom:395.535000px;}
.y17a{bottom:396.075000px;}
.y201{bottom:397.875000px;}
.y277{bottom:398.775000px;}
.y2cb{bottom:399.675000px;}
.y30{bottom:399.855000px;}
.y11{bottom:401.295000px;}
.yd4{bottom:401.655000px;}
.y13f{bottom:403.095000px;}
.y2ec{bottom:403.815000px;}
.y65{bottom:407.355120px;}
.yab{bottom:407.539950px;}
.y112{bottom:409.035000px;}
.y12c{bottom:413.175000px;}
.y200{bottom:416.955000px;}
.y159{bottom:417.315000px;}
.y27c{bottom:418.575000px;}
.y2eb{bottom:422.895000px;}
.yfb{bottom:423.975000px;}
.y64{bottom:424.369080px;}
.y179{bottom:424.515000px;}
.yaa{bottom:424.549500px;}
.y2f{bottom:428.295000px;}
.yd3{bottom:430.095000px;}
.y13e{bottom:431.535000px;}
.y2db{bottom:432.615000px;}
.y111{bottom:437.475000px;}
.y279{bottom:438.195000px;}
.y63{bottom:441.383040px;}
.y2ea{bottom:441.435000px;}
.ya9{bottom:441.558900px;}
.y10{bottom:441.795000px;}
.y12b{bottom:441.975000px;}
.y158{bottom:445.755000px;}
.y30b{bottom:447.595241px;}
.y2da{bottom:451.515000px;}
.y2c2{bottom:451.860000px;}
.y2bf{bottom:451.875000px;}
.yfa{bottom:452.415000px;}
.y178{bottom:452.955000px;}
.y1d0{bottom:454.215000px;}
.y1ff{bottom:454.935000px;}
.y2e{bottom:456.735000px;}
.y274{bottom:457.995000px;}
.y62{bottom:458.397000px;}
.yd2{bottom:458.535000px;}
.ya8{bottom:458.568300px;}
.y13d{bottom:459.975000px;}
.y1b8{bottom:460.140000px;}
.y1b5{bottom:460.155000px;}
.y2e9{bottom:460.875000px;}
.y110{bottom:465.915000px;}
.y12a{bottom:470.415000px;}
.y1cf{bottom:473.115000px;}
.y1fe{bottom:473.475000px;}
.y157{bottom:474.195000px;}
.y61{bottom:475.410960px;}
.ya7{bottom:475.577850px;}
.y276{bottom:477.795000px;}
.y2dd{bottom:479.137075px;}
.y2e8{bottom:479.775000px;}
.y18f{bottom:480.495000px;}
.y177{bottom:481.395000px;}
.y2d{bottom:485.175000px;}
.yd1{bottom:486.975000px;}
.yf{bottom:488.235000px;}
.y13c{bottom:488.415000px;}
.y2d9{bottom:489.495000px;}
.yf9{bottom:489.855000px;}
.y2c4{bottom:490.575000px;}
.y1ce{bottom:492.195000px;}
.y60{bottom:492.334740px;}
.ya6{bottom:492.497100px;}
.y1fd{bottom:492.735000px;}
.y10f{bottom:494.355000px;}
.y275{bottom:497.415000px;}
.y2e7{bottom:498.675000px;}
.y129{bottom:498.855000px;}
.y156{bottom:502.635000px;}
.y247{bottom:508.395000px;}
.y18e{bottom:508.935000px;}
.y5f{bottom:509.348700px;}
.ya5{bottom:509.506500px;}
.y176{bottom:509.835000px;}
.y1cd{bottom:511.095000px;}
.y2e6{bottom:513.615000px;}
.y2fc{bottom:513.720000px;}
.y2c{bottom:513.795000px;}
.yd0{bottom:515.415000px;}
.y13b{bottom:516.855000px;}
.y26f{bottom:517.215000px;}
.yf8{bottom:518.295000px;}
.y10e{bottom:522.795000px;}
.y5e{bottom:526.362660px;}
.ya4{bottom:526.516050px;}
.y128{bottom:527.295000px;}
.y2d8{bottom:527.475000px;}
.y24e{bottom:529.095000px;}
.y1cc{bottom:530.175000px;}
.y155{bottom:531.255000px;}
.ye{bottom:534.675000px;}
.y2bb{bottom:535.035000px;}
.y273{bottom:536.835000px;}
.y175{bottom:538.275000px;}
.y2fd{bottom:540.589944px;}
.y2b{bottom:542.235000px;}
.y5d{bottom:543.376620px;}
.y164{bottom:543.495000px;}
.ya3{bottom:543.525450px;}
.ycf{bottom:543.855000px;}
.y13a{bottom:545.295000px;}
.y2d7{bottom:546.375000px;}
.yf7{bottom:546.735000px;}
.y1cb{bottom:549.075000px;}
.y10d{bottom:551.235000px;}
.y127{bottom:555.765000px;}
.y271{bottom:556.665000px;}
.y199{bottom:559.500000px;}
.y154{bottom:559.725000px;}
.y5c{bottom:560.390580px;}
.y309{bottom:560.445000px;}
.ya2{bottom:560.534850px;}
.y24b{bottom:560.805000px;}
.y2dc{bottom:561.420000px;}
.y2d6{bottom:561.525000px;}
.y1fc{bottom:564.765000px;}
.y174{bottom:566.745000px;}
.y2a{bottom:570.705000px;}
.y163{bottom:571.965000px;}
.yce{bottom:572.325000px;}
.y139{bottom:573.765000px;}
.y18d{bottom:575.385000px;}
.y269{bottom:576.285000px;}
.y5b{bottom:577.314360px;}
.ya1{bottom:577.454100px;}
.y10c{bottom:579.885000px;}
.y308{bottom:580.605000px;}
.yd{bottom:581.145000px;}
.yf6{bottom:584.385000px;}
.y153{bottom:588.165000px;}
.y198{bottom:589.500000px;}
.y23f{bottom:592.845000px;}
.y5a{bottom:594.328320px;}
.ya0{bottom:594.463650px;}
.y173{bottom:595.185000px;}
.y29{bottom:599.145000px;}
.y307{bottom:599.505000px;}
.ycd{bottom:600.765000px;}
.y138{bottom:602.385000px;}
.y302{bottom:607.228282px;}
.y59{bottom:611.342280px;}
.y9f{bottom:611.473050px;}
.y18c{bottom:612.465000px;}
.y10b{bottom:612.825000px;}
.y245{bottom:613.005000px;}
.y26e{bottom:614.985000px;}
.y152{bottom:616.605000px;}
.y306{bottom:618.585000px;}
.y197{bottom:619.500000px;}
.y1fa{bottom:622.545000px;}
.y172{bottom:623.805000px;}
.yc{bottom:627.585000px;}
.y58{bottom:628.356240px;}
.y9e{bottom:628.482450px;}
.ycc{bottom:629.385000px;}
.yf5{bottom:630.825000px;}
.y30a{bottom:633.600000px;}
.y305{bottom:633.705000px;}
.y26d{bottom:634.785000px;}
.y242{bottom:634.965000px;}
.y126{bottom:641.265000px;}
.y2e2{bottom:644.298502px;}
.y151{bottom:645.045000px;}
.y57{bottom:645.370200px;}
.y9d{bottom:645.492000px;}
.y2b8{bottom:651.165000px;}
.y171{bottom:652.245000px;}
.y263{bottom:654.585000px;}
.y28{bottom:656.025000px;}
.y18b{bottom:656.205000px;}
.y81{bottom:656.745000px;}
.ycb{bottom:657.825000px;}
.y235{bottom:658.725000px;}
.yf4{bottom:659.265000px;}
.y1f3{bottom:661.245000px;}
.y56{bottom:662.293980px;}
.y9c{bottom:662.411250px;}
.y125{bottom:669.705000px;}
.y150{bottom:673.485000px;}
.yb{bottom:674.025000px;}
.y268{bottom:674.205000px;}
.y55{bottom:679.307940px;}
.y9b{bottom:679.420650px;}
.y170{bottom:680.685000px;}
.y18a{bottom:684.645000px;}
.y27{bottom:685.185000px;}
.y80{bottom:686.265000px;}
.y137{bottom:687.345000px;}
.yf3{bottom:687.705000px;}
.y2b6{bottom:689.865000px;}
.y266{bottom:694.005000px;}
.y54{bottom:696.321900px;}
.y9a{bottom:696.430050px;}
.y10a{bottom:696.705000px;}
.y124{bottom:698.145000px;}
.y14f{bottom:701.925000px;}
.y1f5{bottom:703.005000px;}
.y23c{bottom:703.365000px;}
.y16f{bottom:709.665000px;}
.y310{bottom:711.042997px;}
.y189{bottom:713.085000px;}
.y53{bottom:713.335860px;}
.y99{bottom:713.439600px;}
.y262{bottom:713.625000px;}
.y26{bottom:714.705000px;}
.yf2{bottom:716.145000px;}
.ya{bottom:720.105000px;}
.y123{bottom:726.585000px;}
.y1ec{bottom:727.665000px;}
.y52{bottom:730.349820px;}
.y14e{bottom:730.365000px;}
.y98{bottom:730.449000px;}
.y239{bottom:732.165000px;}
.y2b5{bottom:732.705000px;}
.y109{bottom:734.145000px;}
.y261{bottom:737.385000px;}
.y16e{bottom:740.085000px;}
.y188{bottom:741.525000px;}
.y25{bottom:743.145000px;}
.yf1{bottom:744.585000px;}
.y51{bottom:747.273600px;}
.y1f2{bottom:747.285000px;}
.y97{bottom:747.369750px;}
.y2b4{bottom:751.605000px;}
.y122{bottom:755.025000px;}
.y260{bottom:756.465000px;}
.y14d{bottom:758.805000px;}
.y108{bottom:762.585000px;}
.y50{bottom:764.287560px;}
.y96{bottom:764.379300px;}
.y1ab{bottom:765.285000px;}
.y229{bottom:766.725000px;}
.y233{bottom:766.740000px;}
.y1ef{bottom:767.085000px;}
.y16d{bottom:770.325000px;}
.y2b3{bottom:770.685000px;}
.y24{bottom:771.585000px;}
.y9{bottom:772.845000px;}
.yf0{bottom:773.025000px;}
.y25f{bottom:775.365000px;}
.y4f{bottom:781.301520px;}
.y95{bottom:781.388700px;}
.y121{bottom:783.465000px;}
.y187{bottom:784.725000px;}
.y14c{bottom:787.425000px;}
.y2b2{bottom:789.585000px;}
.y107{bottom:791.025000px;}
.y25e{bottom:794.445000px;}
.y4e{bottom:798.315480px;}
.y94{bottom:798.398100px;}
.yc9{bottom:799.665000px;}
.y23{bottom:800.025000px;}
.y136{bottom:801.465000px;}
.y1e4{bottom:802.005000px;}
.y231{bottom:804.345000px;}
.y2ad{bottom:805.245000px;}
.y25d{bottom:813.345000px;}
.y4d{bottom:815.329440px;}
.y93{bottom:815.407650px;}
.yef{bottom:816.405000px;}
.y8{bottom:819.465000px;}
.y120{bottom:820.905000px;}
.y1eb{bottom:821.820000px;}
.y2b1{bottom:825.045000px;}
.yc8{bottom:828.105000px;}
.y22{bottom:828.465000px;}
.y135{bottom:829.905000px;}
.y25c{bottom:832.245000px;}
.y4c{bottom:832.253220px;}
.y92{bottom:832.326900px;}
.yee{bottom:838.950000px;}
.y1ea{bottom:841.650000px;}
.y22e{bottom:842.190000px;}
.y2af{bottom:844.710000px;}
.y14b{bottom:846.690000px;}
.y4b{bottom:849.267180px;}
.y91{bottom:849.336300px;}
.y25b{bottom:851.370000px;}
.yc7{bottom:856.590000px;}
.y21{bottom:856.950000px;}
.y11f{bottom:858.570000px;}
.y1e9{bottom:861.270000px;}
.y2aa{bottom:864.495000px;}
.y2a8{bottom:864.510000px;}
.y7{bottom:865.950000px;}
.y4a{bottom:866.281140px;}
.y90{bottom:866.345700px;}
.yed{bottom:867.570000px;}
.y25a{bottom:870.270000px;}
.y14a{bottom:876.570000px;}
.y224{bottom:879.810000px;}
.y1e6{bottom:881.070000px;}
.y49{bottom:883.295100px;}
.y8f{bottom:883.355250px;}
.y2ac{bottom:884.130000px;}
.yc6{bottom:885.210000px;}
.y20{bottom:885.570000px;}
.y259{bottom:885.930000px;}
.y134{bottom:887.010000px;}
.yec{bottom:896.010000px;}
.y1a4{bottom:898.875000px;}
.y19e{bottom:898.890000px;}
.y226{bottom:899.610000px;}
.y48{bottom:900.309060px;}
.y8e{bottom:900.364650px;}
.y2a9{bottom:903.930000px;}
.y149{bottom:905.010000px;}
.y1e0{bottom:905.370000px;}
.y6{bottom:912.390000px;}
.yc5{bottom:913.650000px;}
.y1f{bottom:914.010000px;}
.y47{bottom:917.232840px;}
.y8d{bottom:917.285400px;}
.y220{bottom:922.275000px;}
.y21f{bottom:922.290000px;}
.y2a7{bottom:923.730000px;}
.yeb{bottom:924.450000px;}
.y257{bottom:924.615000px;}
.y256{bottom:924.630000px;}
.y1e2{bottom:924.990000px;}
.y148{bottom:933.450000px;}
.y46{bottom:934.246800px;}
.y8c{bottom:934.294950px;}
.y223{bottom:941.910000px;}
.yc4{bottom:942.090000px;}
.y1e{bottom:942.450000px;}
.y1da{bottom:944.790000px;}
.y45{bottom:951.260760px;}
.y8b{bottom:951.304350px;}
.y314{bottom:951.630000px;}
.y5{bottom:952.530000px;}
.y11e{bottom:952.890000px;}
.y222{bottom:961.710000px;}
.yea{bottom:961.890000px;}
.y2a5{bottom:962.430000px;}
.y1dc{bottom:965.670000px;}
.y44{bottom:968.274720px;}
.y8a{bottom:968.313750px;}
.yc3{bottom:970.530000px;}
.y1d{bottom:970.890000px;}
.y254{bottom:971.070000px;}
.y11d{bottom:981.330000px;}
.y21a{bottom:981.510000px;}
.y43{bottom:985.288680px;}
.y89{bottom:985.323300px;}
.ye9{bottom:990.330000px;}
.y1d5{bottom:991.590000px;}
.yc2{bottom:998.970000px;}
.y1c{bottom:999.330000px;}
.y2a4{bottom:1000.950000px;}
.y21e{bottom:1001.130000px;}
.y42{bottom:1002.212460px;}
.y88{bottom:1002.244050px;}
.y11c{bottom:1009.770000px;}
.y1d7{bottom:1011.210000px;}
.ye8{bottom:1018.770000px;}
.y252{bottom:1019.130000px;}
.y41{bottom:1019.226420px;}
.y87{bottom:1019.253450px;}
.y21c{bottom:1020.930000px;}
.y7f{bottom:1027.410000px;}
.y4{bottom:1027.770000px;}
.y19b{bottom:1032.450000px;}
.y40{bottom:1036.240380px;}
.y86{bottom:1036.262850px;}
.y1d3{bottom:1036.590000px;}
.y2a0{bottom:1039.650000px;}
.y219{bottom:1040.535000px;}
.y216{bottom:1040.550000px;}
.ye7{bottom:1047.210000px;}
.y3f{bottom:1053.254340px;}
.y85{bottom:1053.272400px;}
.y1b{bottom:1055.850000px;}
.y3{bottom:1056.210000px;}
.y2a3{bottom:1059.450000px;}
.y218{bottom:1060.890000px;}
.y251{bottom:1065.750000px;}
.y195{bottom:1066.500000px;}
.y3e{bottom:1070.268300px;}
.y84{bottom:1070.281800px;}
.y1d1{bottom:1072.770000px;}
.y147{bottom:1075.290000px;}
.ye6{bottom:1075.650000px;}
.y214{bottom:1080.510000px;}
.yca{bottom:1084.290000px;}
.y7e{bottom:1084.650000px;}
.y3d{bottom:1087.192080px;}
.y83{bottom:1087.201050px;}
.y19a{bottom:1094.190000px;}
.y2a2{bottom:1098.150000px;}
.y215{bottom:1100.310000px;}
.y146{bottom:1103.730000px;}
.y313{bottom:1104.090000px;}
.y3c{bottom:1104.206040px;}
.y82{bottom:1104.210600px;}
.y2{bottom:1112.730000px;}
.y7d{bottom:1113.090000px;}
.y212{bottom:1119.930000px;}
.y3b{bottom:1121.220000px;}
.y1ca{bottom:1122.660000px;}
.y29f{bottom:1136.880000px;}
.y210{bottom:1139.760000px;}
.y1{bottom:1141.380000px;}
.ydf{bottom:1141.740000px;}
.y196{bottom:1170.000000px;}
.y19{bottom:1189.080000px;}
.y7c{bottom:1193.580000px;}
.y18{bottom:1195.590000px;}
.y17{bottom:1213.590000px;}
.y2e5{bottom:1229.880000px;}
.y16{bottom:1231.590000px;}
.y1c9{bottom:1244.880000px;}
.h1e{height:18.885000px;}
.h2d{height:18.900000px;}
.h29{height:18.921000px;}
.h63{height:18.922500px;}
.h26{height:19.065000px;}
.h2a{height:19.080000px;}
.h36{height:19.110000px;}
.h3a{height:19.425000px;}
.h4a{height:19.440000px;}
.h4e{height:19.965000px;}
.h24{height:20.145000px;}
.h7{height:20.700000px;}
.h49{height:21.060000px;}
.h5a{height:21.765000px;}
.h3f{height:21.945000px;}
.h50{height:22.845000px;}
.h48{height:23.040000px;}
.h28{height:23.565000px;}
.h2f{height:23.940000px;}
.h21{height:24.465000px;}
.h23{height:25.005000px;}
.h45{height:28.080000px;}
.h4d{height:30.990000px;}
.h4c{height:31.320000px;}
.h44{height:33.660000px;}
.h5d{height:33.681000px;}
.h2c{height:34.200000px;}
.h1f{height:35.445000px;}
.h41{height:36.885000px;}
.h35{height:36.900000px;}
.h42{height:37.102500px;}
.h33{height:37.785000px;}
.h31{height:37.800000px;}
.h34{height:37.821000px;}
.h10{height:37.965000px;}
.h5f{height:37.971000px;}
.h56{height:37.980000px;}
.h61{height:38.010000px;}
.h25{height:38.685000px;}
.h37{height:39.225000px;}
.h38{height:39.231000px;}
.h39{height:39.240000px;}
.h30{height:41.040000px;}
.h4{height:41.250937px;}
.h6{height:41.689453px;}
.h3e{height:41.745000px;}
.hc{height:42.229687px;}
.h5{height:42.997500px;}
.h68{height:43.725000px;}
.h46{height:43.920000px;}
.h20{height:44.085000px;}
.hd{height:45.000000px;}
.h54{height:45.705000px;}
.h52{height:45.711000px;}
.h53{height:45.720000px;}
.h22{height:45.885000px;}
.h7d{height:46.283532px;}
.h7e{height:46.283628px;}
.h7c{height:46.376011px;}
.h51{height:47.325000px;}
.h7b{height:49.036129px;}
.h71{height:49.541354px;}
.h72{height:49.541456px;}
.h70{height:49.845129px;}
.h6c{height:51.465000px;}
.h6f{height:52.704703px;}
.h77{height:55.969686px;}
.h78{height:55.969778px;}
.h76{height:56.238135px;}
.h32{height:56.880000px;}
.h1b{height:56.901000px;}
.h1c{height:56.902500px;}
.h3b{height:58.305000px;}
.h3c{height:58.311000px;}
.h3d{height:58.320000px;}
.h57{height:58.350000px;}
.h58{height:58.485000px;}
.h62{height:58.522500px;}
.ha{height:58.975137px;}
.h75{height:59.464470px;}
.h59{height:61.185000px;}
.he{height:63.000000px;}
.hb{height:64.978594px;}
.h3{height:65.010937px;}
.h47{height:65.160000px;}
.h2e{height:65.700000px;}
.h4f{height:66.078281px;}
.h2{height:66.757500px;}
.h8{height:70.664062px;}
.h2b{height:73.620000px;}
.h5e{height:76.671000px;}
.h64{height:76.680000px;}
.h65{height:76.710000px;}
.h55{height:77.400000px;}
.h5c{height:77.781000px;}
.h5b{height:77.782500px;}
.hf{height:81.000000px;}
.h69{height:82.425000px;}
.h66{height:82.435500px;}
.h67{height:82.440000px;}
.h4b{height:83.730000px;}
.h6d{height:90.165000px;}
.h6a{height:90.175500px;}
.h6b{height:90.180000px;}
.h18{height:94.845000px;}
.h1d{height:94.851000px;}
.h19{height:94.855500px;}
.h1a{height:94.860000px;}
.h60{height:96.510000px;}
.h27{height:102.622500px;}
.h43{height:107.100000px;}
.h40{height:112.342500px;}
.h11{height:132.825000px;}
.h12{height:132.831000px;}
.h13{height:132.840000px;}
.h14{height:132.862500px;}
.h15{height:151.740000px;}
.h16{height:151.950000px;}
.h17{height:151.965000px;}
.h7f{height:345.531818px;}
.h73{height:369.902136px;}
.h79{height:417.344818px;}
.h7a{height:485.093923px;}
.h6e{height:519.290300px;}
.h74{height:585.893117px;}
.h9{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:9.000000px;}
.w3{width:18.000000px;}
.w2c{width:41.760000px;}
.w1e{width:75.240000px;}
.w5{width:83.511000px;}
.w11{width:84.261000px;}
.w13{width:84.276000px;}
.w1f{width:86.076000px;}
.w1d{width:86.220000px;}
.w16{width:93.801000px;}
.w2d{width:94.845000px;}
.w24{width:94.896000px;}
.w12{width:95.040000px;}
.we{width:98.805000px;}
.wd{width:98.856000px;}
.w18{width:102.225000px;}
.w17{width:104.760000px;}
.w27{width:105.465000px;}
.w29{width:105.471000px;}
.w2a{width:105.480000px;}
.wc{width:107.640000px;}
.wa{width:112.131000px;}
.w25{width:116.085000px;}
.w26{width:116.301000px;}
.w15{width:118.971000px;}
.w1b{width:118.980000px;}
.wb{width:121.341000px;}
.w22{width:126.711000px;}
.w28{width:126.720000px;}
.w20{width:139.305000px;}
.wf{width:145.821000px;}
.w19{width:146.541000px;}
.w1a{width:146.542500px;}
.w14{width:147.945000px;}
.w10{width:148.131000px;}
.w1c{width:172.815000px;}
.w21{width:172.830000px;}
.w23{width:180.195000px;}
.w2f{width:182.535000px;}
.w2b{width:182.541000px;}
.w30{width:182.550000px;}
.w6{width:239.775000px;}
.w8{width:239.790000px;}
.w2e{width:241.215000px;}
.w7{width:311.640000px;}
.w36{width:392.368666px;}
.w32{width:420.899415px;}
.w34{width:474.492845px;}
.w35{width:485.989625px;}
.w31{width:520.197373px;}
.w33{width:587.696565px;}
.w9{width:636.390000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w4{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:7.500000px;}
.x2{left:12.429000px;}
.x2d{left:16.429996px;}
.x36{left:19.591822px;}
.x4{left:27.000000px;}
.x3f{left:46.049776px;}
.x2f{left:49.291296px;}
.x38{left:55.687181px;}
.x3e{left:63.101144px;}
.x2e{left:67.543269px;}
.x37{left:76.307474px;}
.x9{left:112.536000px;}
.x1{left:127.656000px;}
.x3c{left:165.410546px;}
.x2c{left:174.320219px;}
.x40{left:189.752988px;}
.x34{left:192.825621px;}
.x30{left:194.126395px;}
.x39{left:202.756057px;}
.xd{left:212.625000px;}
.x3d{left:219.124562px;}
.x5{left:233.850000px;}
.xf{left:241.245000px;}
.x18{left:248.085000px;}
.x21{left:255.825000px;}
.x35{left:264.978410px;}
.x14{left:276.885000px;}
.x41{left:283.198654px;}
.xb{left:295.650000px;}
.x1d{left:301.575000px;}
.x31{left:305.854522px;}
.x26{left:311.295000px;}
.x7{left:340.095000px;}
.x19{left:342.615000px;}
.x3a{left:344.520085px;}
.x27{left:353.775000px;}
.x15{left:361.875000px;}
.x10{left:363.315000px;}
.xc{left:367.500000px;}
.x1e{left:388.515000px;}
.x6{left:393.195000px;}
.x22{left:436.755000px;}
.x32{left:446.490000px;}
.x1a{left:448.095000px;}
.x28{left:449.535000px;}
.xe{left:453.135000px;}
.x16{left:457.635000px;}
.x1f{left:464.475000px;}
.x11{left:471.675000px;}
.x23{left:532.560000px;}
.x29{left:534.720000px;}
.x17{left:542.820000px;}
.x1b{left:547.680000px;}
.x20{left:551.460000px;}
.x12{left:571.260000px;}
.x3b{left:613.725000px;}
.x2a{left:630.300000px;}
.x2b{left:647.925000px;}
.x24{left:649.380000px;}
.x1c{left:650.640000px;}
.x13{left:670.800000px;}
.x33{left:715.470000px;}
.x8{left:747.495000px;}
.x3{left:756.495000px;}
.x25{left:766.410000px;}
@media print{
.v3{vertical-align:-67.840000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.045333pt;}
.ls1e{letter-spacing:-0.746127pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.504533pt;}
.ls11{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.135467pt;}
.ls8{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.069472pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.097067pt;}
.ls18{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.110080pt;}
.ls13{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.216747pt;}
.lsd{letter-spacing:0.233067pt;}
.ls1a{letter-spacing:0.271360pt;}
.ls7{letter-spacing:0.271467pt;}
.ls1d{letter-spacing:0.314880pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.544000pt;}
.ls1c{letter-spacing:0.640000pt;}
.lsf{letter-spacing:2.880000pt;}
.ls1{letter-spacing:14.080000pt;}
.ls15{letter-spacing:19.200000pt;}
.ls17{letter-spacing:28.160000pt;}
.ls19{letter-spacing:177.258667pt;}
.wsf{word-spacing:-58.880000pt;}
.ws12{word-spacing:-15.264000pt;}
.wsb{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.953067pt;}
.ws11{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.622933pt;}
.ws8{word-spacing:-14.584533pt;}
.ws6{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.351467pt;}
.ws10{word-spacing:-14.215467pt;}
.ws9{word-spacing:-14.176000pt;}
.wsa{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.674667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws18{word-spacing:-13.260926pt;}
.ws14{word-spacing:-11.737858pt;}
.ws1c{word-spacing:-10.965980pt;}
.ws13{word-spacing:-9.920000pt;}
.ws1{word-spacing:-9.600000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
.ws16{word-spacing:171.100542pt;}
.ws15{word-spacing:171.114316pt;}
.ws17{word-spacing:171.146454pt;}
.ws1b{word-spacing:189.671198pt;}
.ws1a{word-spacing:193.302016pt;}
.ws19{word-spacing:193.333138pt;}
.ws1f{word-spacing:228.690016pt;}
.ws1e{word-spacing:231.784748pt;}
.ws1d{word-spacing:231.814424pt;}
._16{margin-left:-4.416000pt;}
._4{margin-left:-3.238629pt;}
._0{margin-left:-1.766341pt;}
._2{width:0.969321pt;}
._e{width:1.917035pt;}
._5{width:3.237870pt;}
._6{width:4.352468pt;}
._10{width:5.298611pt;}
._f{width:6.418214pt;}
._12{width:7.772278pt;}
._9{width:8.949878pt;}
._11{width:9.899820pt;}
._b{width:10.823876pt;}
._a{width:11.781110pt;}
._3{width:12.740773pt;}
._1{width:13.660278pt;}
._13{width:16.191941pt;}
._7{width:17.487478pt;}
._8{width:18.605903pt;}
._18{width:19.520919pt;}
._17{width:20.608118pt;}
._1a{width:21.727911pt;}
._26{width:22.991035pt;}
._1d{width:24.023040pt;}
._1b{width:25.495040pt;}
._1c{width:26.790341pt;}
._21{width:27.940700pt;}
._20{width:28.863960pt;}
._1f{width:29.823987pt;}
._1e{width:30.720006pt;}
._14{width:32.148480pt;}
._15{width:33.228767pt;}
._d{width:34.585228pt;}
._c{width:35.725725pt;}
._33{width:39.430827pt;}
._34{width:40.439296pt;}
._28{width:43.900967pt;}
._27{width:44.925440pt;}
._24{width:46.245241pt;}
._2b{width:53.564160pt;}
._2a{width:54.754987pt;}
._29{width:55.759301pt;}
._32{width:64.765984pt;}
._31{width:66.004421pt;}
._2f{width:69.949440pt;}
._30{width:70.871467pt;}
._2c{width:79.546880pt;}
._2e{width:82.581340pt;}
._2d{width:83.523420pt;}
._25{width:89.586786pt;}
._22{width:102.951628pt;}
._35{width:120.802987pt;}
._36{width:131.682987pt;}
._23{width:174.080000pt;}
._3d{width:393.431298pt;}
._38{width:426.161005pt;}
._3c{width:428.724002pt;}
._37{width:460.875644pt;}
._3b{width:476.941886pt;}
._3a{width:520.907693pt;}
._19{width:753.418667pt;}
._39{width:1208.373333pt;}
.fs1{font-size:37.120000pt;}
.fs10{font-size:39.445973pt;}
.fsf{font-size:39.524790pt;}
.fsa{font-size:42.222511pt;}
.fs9{font-size:42.481409pt;}
.fsd{font-size:47.701173pt;}
.fsc{font-size:47.929963pt;}
.fse{font-size:48.620669pt;}
.fs8{font-size:52.258161pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:53.440000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsb{font-size:58.960656pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2a6{bottom:3.200000pt;}
.y19d{bottom:3.360000pt;}
.y1c1{bottom:3.506667pt;}
.y1b4{bottom:3.520000pt;}
.y2ab{bottom:3.533333pt;}
.y294{bottom:3.666667pt;}
.y29e{bottom:3.672000pt;}
.y1b0{bottom:3.680000pt;}
.y1aa{bottom:3.693333pt;}
.y213{bottom:3.706667pt;}
.y1a{bottom:4.000000pt;}
.y250{bottom:4.480000pt;}
.y1df{bottom:4.640000pt;}
.y265{bottom:4.800000pt;}
.y292{bottom:4.946667pt;}
.y278{bottom:4.960000pt;}
.y246{bottom:5.440000pt;}
.y285{bottom:6.080000pt;}
.y227{bottom:6.240000pt;}
.y1f9{bottom:6.400000pt;}
.y253{bottom:6.720000pt;}
.y243{bottom:7.200000pt;}
.y280{bottom:7.360000pt;}
.y1e7{bottom:7.680000pt;}
.y1f6{bottom:8.000000pt;}
.y1d8{bottom:8.480000pt;}
.y23e{bottom:8.800000pt;}
.y1dd{bottom:8.960000pt;}
.y2ce{bottom:9.600000pt;}
.y258{bottom:10.573333pt;}
.y211{bottom:11.200000pt;}
.y234{bottom:11.506667pt;}
.y22f{bottom:11.520000pt;}
.y232{bottom:11.680000pt;}
.y2b9{bottom:12.000000pt;}
.y24f{bottom:14.240000pt;}
.y24c{bottom:14.560000pt;}
.y2c3{bottom:15.053333pt;}
.y30c{bottom:15.153074pt;}
.y2de{bottom:16.169866pt;}
.y23a{bottom:16.640000pt;}
.y28e{bottom:16.666667pt;}
.y1f0{bottom:17.120000pt;}
.y2e4{bottom:17.146848pt;}
.y1d2{bottom:17.920000pt;}
.y2cc{bottom:18.080000pt;}
.y1d4{bottom:18.240000pt;}
.y2fe{bottom:18.243771pt;}
.y20a{bottom:19.986667pt;}
.y1e3{bottom:20.000000pt;}
.y208{bottom:20.026667pt;}
.y19c{bottom:20.160000pt;}
.y1c6{bottom:20.306667pt;}
.y1fb{bottom:20.320000pt;}
.y207{bottom:20.346667pt;}
.y29a{bottom:20.466667pt;}
.y29d{bottom:20.472000pt;}
.y1af{bottom:20.480000pt;}
.y1a9{bottom:20.493333pt;}
.y1c0{bottom:20.506667pt;}
.y312{bottom:20.580739pt;}
.y267{bottom:20.640000pt;}
.y27b{bottom:20.800000pt;}
.y2bd{bottom:20.826667pt;}
.y1e1{bottom:21.120000pt;}
.y304{bottom:21.172780pt;}
.y217{bottom:21.600000pt;}
.y291{bottom:21.746667pt;}
.y264{bottom:21.760000pt;}
.y221{bottom:21.773333pt;}
.y26c{bottom:21.920000pt;}
.y289{bottom:22.106667pt;}
.y228{bottom:22.720000pt;}
.y283{bottom:22.880000pt;}
.y2c5{bottom:23.040000pt;}
.y1f8{bottom:23.200000pt;}
.y225{bottom:23.840000pt;}
.y27f{bottom:24.320000pt;}
.y1d9{bottom:24.800000pt;}
.y23d{bottom:25.760000pt;}
.y1d6{bottom:25.920000pt;}
.y1de{bottom:26.400000pt;}
.y2cd{bottom:26.560000pt;}
.y2ca{bottom:26.893333pt;}
.y24a{bottom:27.360000pt;}
.y1db{bottom:27.520000pt;}
.y241{bottom:27.840000pt;}
.y2be{bottom:28.346667pt;}
.y2ba{bottom:28.640000pt;}
.y255{bottom:28.800000pt;}
.y2e3{bottom:29.322173pt;}
.y7b{bottom:29.776800pt;}
.yc1{bottom:30.029333pt;}
.y2c6{bottom:30.880000pt;}
.y2c1{bottom:31.840000pt;}
.y311{bottom:31.954306pt;}
.y2cf{bottom:34.400000pt;}
.y303{bottom:34.910983pt;}
.y1ee{bottom:35.360000pt;}
.y22d{bottom:36.000000pt;}
.y29c{bottom:36.946667pt;}
.y1c5{bottom:37.266667pt;}
.y1a3{bottom:37.280000pt;}
.y1a8{bottom:37.293333pt;}
.y1bf{bottom:37.306667pt;}
.y2b0{bottom:37.320000pt;}
.y21d{bottom:37.440000pt;}
.y1ba{bottom:37.453333pt;}
.y272{bottom:37.466667pt;}
.y27a{bottom:37.600000pt;}
.y2b7{bottom:37.760000pt;}
.y2bc{bottom:37.786667pt;}
.y28c{bottom:37.946667pt;}
.y298{bottom:38.066667pt;}
.y21b{bottom:38.560000pt;}
.y270{bottom:38.586667pt;}
.y290{bottom:38.706667pt;}
.y26b{bottom:38.720000pt;}
.y2ae{bottom:38.760000pt;}
.y288{bottom:39.066667pt;}
.y282{bottom:39.680000pt;}
.y27e{bottom:41.120000pt;}
.y30e{bottom:42.439014pt;}
.y244{bottom:43.520000pt;}
.y2c8{bottom:43.680000pt;}
.y1f7{bottom:44.000000pt;}
.y249{bottom:44.346667pt;}
.y240{bottom:44.640000pt;}
.y7a{bottom:44.820160pt;}
.yc0{bottom:45.068667pt;}
.y1f4{bottom:45.120000pt;}
.y2e0{bottom:45.381175pt;}
.y238{bottom:48.320000pt;}
.y2c0{bottom:48.640000pt;}
.y1f1{bottom:51.040000pt;}
.y300{bottom:51.201646pt;}
.y1ed{bottom:52.160000pt;}
.y22c{bottom:52.800000pt;}
.y29b{bottom:53.746667pt;}
.y1c4{bottom:54.066667pt;}
.y1b3{bottom:54.080000pt;}
.y1a2{bottom:54.240000pt;}
.y1a7{bottom:54.253333pt;}
.y28b{bottom:54.746667pt;}
.y297{bottom:54.866667pt;}
.y26a{bottom:55.520000pt;}
.y287{bottom:55.866667pt;}
.y79{bottom:59.943680pt;}
.y24d{bottom:60.026667pt;}
.ybf{bottom:60.188133pt;}
.y248{bottom:61.146667pt;}
.y237{bottom:65.120000pt;}
.y22b{bottom:69.800000pt;}
.y1c3{bottom:71.026667pt;}
.y1a1{bottom:71.040000pt;}
.y1a6{bottom:71.053333pt;}
.y1ae{bottom:71.080000pt;}
.y2a1{bottom:72.480000pt;}
.y30f{bottom:75.019875pt;}
.y78{bottom:75.067200pt;}
.ybe{bottom:75.307733pt;}
.y1e8{bottom:76.840000pt;}
.y1e5{bottom:77.960000pt;}
.y2e1{bottom:78.640148pt;}
.y23b{bottom:80.800000pt;}
.y236{bottom:81.920000pt;}
.y230{bottom:85.480000pt;}
.y22a{bottom:86.600000pt;}
.y1b2{bottom:87.840000pt;}
.y1a0{bottom:88.000000pt;}
.y1a5{bottom:88.013333pt;}
.y1b9{bottom:88.026667pt;}
.y1ad{bottom:88.040000pt;}
.y77{bottom:90.190720pt;}
.ybd{bottom:90.427200pt;}
.y106{bottom:98.592000pt;}
.y184{bottom:99.072000pt;}
.y16a{bottom:100.672000pt;}
.y3a{bottom:102.432000pt;}
.y16c{bottom:104.032000pt;}
.y19f{bottom:104.800000pt;}
.y1b7{bottom:104.826667pt;}
.y1ac{bottom:104.840000pt;}
.y76{bottom:105.314240pt;}
.ybc{bottom:105.546667pt;}
.y2fb{bottom:105.632000pt;}
.y11b{bottom:107.872000pt;}
.y296{bottom:108.200000pt;}
.yde{bottom:109.312000pt;}
.y20f{bottom:114.272000pt;}
.y75{bottom:120.357600pt;}
.ybb{bottom:120.586000pt;}
.y1b1{bottom:121.600000pt;}
.y1b6{bottom:121.786667pt;}
.y1c8{bottom:121.952000pt;}
.y2fa{bottom:122.592000pt;}
.y301{bottom:123.510926pt;}
.y105{bottom:123.872000pt;}
.y183{bottom:124.352000pt;}
.y133{bottom:125.152000pt;}
.y169{bottom:125.952000pt;}
.y39{bottom:127.712000pt;}
.ydd{bottom:129.312000pt;}
.y145{bottom:130.592000pt;}
.y20e{bottom:131.072000pt;}
.y11a{bottom:133.152000pt;}
.y74{bottom:135.481120pt;}
.yba{bottom:135.705600pt;}
.y194{bottom:135.866667pt;}
.y1c7{bottom:135.880000pt;}
.y2f9{bottom:139.386667pt;}
.y299{bottom:142.600000pt;}
.y162{bottom:143.226667pt;}
.y20d{bottom:148.026667pt;}
.y104{bottom:149.146667pt;}
.y182{bottom:149.626667pt;}
.y132{bottom:150.426667pt;}
.y73{bottom:150.604640pt;}
.yb9{bottom:150.825067pt;}
.y168{bottom:151.226667pt;}
.y38{bottom:152.986667pt;}
.y1c2{bottom:153.480000pt;}
.y186{bottom:154.266667pt;}
.ydc{bottom:154.586667pt;}
.ye5{bottom:155.866667pt;}
.y2f8{bottom:156.186667pt;}
.y193{bottom:161.146667pt;}
.y119{bottom:162.426667pt;}
.y20c{bottom:164.826667pt;}
.y72{bottom:165.728160pt;}
.yb8{bottom:165.944667pt;}
.y161{bottom:168.506667pt;}
.y2f7{bottom:173.146667pt;}
.y103{bottom:174.426667pt;}
.y181{bottom:174.906667pt;}
.y131{bottom:175.706667pt;}
.y28f{bottom:177.000000pt;}
.y167{bottom:177.146667pt;}
.y37{bottom:178.266667pt;}
.y185{bottom:179.546667pt;}
.ydb{bottom:179.866667pt;}
.y71{bottom:180.851680pt;}
.yb7{bottom:181.064133pt;}
.ye4{bottom:181.146667pt;}
.y20b{bottom:181.626667pt;}
.y192{bottom:186.426667pt;}
.y2f6{bottom:189.946667pt;}
.y160{bottom:193.786667pt;}
.y295{bottom:194.600000pt;}
.y209{bottom:195.720000pt;}
.y70{bottom:195.895040pt;}
.yb6{bottom:196.103467pt;}
.y102{bottom:199.706667pt;}
.y180{bottom:200.186667pt;}
.y130{bottom:200.986667pt;}
.y36{bottom:203.546667pt;}
.y118{bottom:203.706667pt;}
.y166{bottom:204.026667pt;}
.yda{bottom:205.146667pt;}
.ye3{bottom:206.426667pt;}
.y2f5{bottom:206.906667pt;}
.y30d{bottom:207.644581pt;}
.y6f{bottom:211.018560pt;}
.yb5{bottom:211.222933pt;}
.y191{bottom:211.386667pt;}
.y293{bottom:212.040000pt;}
.y2d5{bottom:212.986667pt;}
.y15f{bottom:218.746667pt;}
.y2df{bottom:222.234607pt;}
.y2f4{bottom:223.706667pt;}
.y101{bottom:224.986667pt;}
.y17f{bottom:225.466667pt;}
.y6e{bottom:226.142080pt;}
.yb4{bottom:226.342533pt;}
.y35{bottom:228.986667pt;}
.y286{bottom:229.640000pt;}
.y16b{bottom:230.106667pt;}
.y206{bottom:230.120000pt;}
.yd9{bottom:230.426667pt;}
.y144{bottom:231.706667pt;}
.y12f{bottom:234.266667pt;}
.y190{bottom:236.666667pt;}
.y117{bottom:236.986667pt;}
.y1be{bottom:238.440000pt;}
.y2d4{bottom:239.546667pt;}
.ye2{bottom:239.706667pt;}
.y2f3{bottom:240.506667pt;}
.y6d{bottom:241.265600pt;}
.yb3{bottom:241.462000pt;}
.y15e{bottom:244.546667pt;}
.y15{bottom:250.146667pt;}
.y100{bottom:250.306667pt;}
.y2ff{bottom:250.737838pt;}
.y17e{bottom:250.786667pt;}
.y34{bottom:254.306667pt;}
.y165{bottom:255.746667pt;}
.y2d3{bottom:256.386667pt;}
.y6c{bottom:256.389120pt;}
.yb2{bottom:256.581467pt;}
.y143{bottom:257.026667pt;}
.y2f2{bottom:257.506667pt;}
.y28d{bottom:260.386667pt;}
.yd8{bottom:261.026667pt;}
.y116{bottom:262.306667pt;}
.y205{bottom:264.546667pt;}
.y12e{bottom:267.426667pt;}
.y15d{bottom:269.826667pt;}
.y6b{bottom:271.432480pt;}
.yb1{bottom:271.620800pt;}
.ye1{bottom:272.706667pt;}
.y2d2{bottom:273.186667pt;}
.y2f1{bottom:274.306667pt;}
.y14{bottom:275.426667pt;}
.yff{bottom:275.746667pt;}
.y17d{bottom:276.066667pt;}
.y28a{bottom:277.826667pt;}
.y33{bottom:279.586667pt;}
.yd7{bottom:281.026667pt;}
.y142{bottom:282.306667pt;}
.y6a{bottom:286.556000pt;}
.yb0{bottom:286.740400pt;}
.y115{bottom:287.746667pt;}
.y1bd{bottom:289.666667pt;}
.y2d1{bottom:290.146667pt;}
.y2f0{bottom:291.266667pt;}
.y15c{bottom:295.106667pt;}
.y204{bottom:298.786667pt;}
.y27d{bottom:299.426667pt;}
.y13{bottom:300.706667pt;}
.yfe{bottom:301.026667pt;}
.y17c{bottom:301.346667pt;}
.y69{bottom:301.679520pt;}
.yaf{bottom:301.859867pt;}
.y32{bottom:304.866667pt;}
.ye0{bottom:305.986667pt;}
.yd6{bottom:306.306667pt;}
.y2d0{bottom:306.946667pt;}
.y141{bottom:307.746667pt;}
.y2ef{bottom:308.066667pt;}
.y114{bottom:313.026667pt;}
.y68{bottom:316.803040pt;}
.yae{bottom:316.979333pt;}
.y284{bottom:317.026667pt;}
.y203{bottom:319.906667pt;}
.y15b{bottom:320.386667pt;}
.y2c9{bottom:320.853333pt;}
.y2c7{bottom:320.866667pt;}
.y1bc{bottom:324.053333pt;}
.y1bb{bottom:324.066667pt;}
.y2ee{bottom:325.026667pt;}
.y12{bottom:325.986667pt;}
.yfd{bottom:326.306667pt;}
.y17b{bottom:326.786667pt;}
.y31{bottom:330.146667pt;}
.yd5{bottom:331.746667pt;}
.y67{bottom:331.926560pt;}
.yad{bottom:332.098933pt;}
.y140{bottom:333.026667pt;}
.y12d{bottom:333.986667pt;}
.y202{bottom:336.866667pt;}
.y281{bottom:337.026667pt;}
.y113{bottom:338.306667pt;}
.y2ed{bottom:341.826667pt;}
.y15a{bottom:345.666667pt;}
.y66{bottom:347.050080pt;}
.yac{bottom:347.218400pt;}
.yfc{bottom:351.586667pt;}
.y17a{bottom:352.066667pt;}
.y201{bottom:353.666667pt;}
.y277{bottom:354.466667pt;}
.y2cb{bottom:355.266667pt;}
.y30{bottom:355.426667pt;}
.y11{bottom:356.706667pt;}
.yd4{bottom:357.026667pt;}
.y13f{bottom:358.306667pt;}
.y2ec{bottom:358.946667pt;}
.y65{bottom:362.093440pt;}
.yab{bottom:362.257733pt;}
.y112{bottom:363.586667pt;}
.y12c{bottom:367.266667pt;}
.y200{bottom:370.626667pt;}
.y159{bottom:370.946667pt;}
.y27c{bottom:372.066667pt;}
.y2eb{bottom:375.906667pt;}
.yfb{bottom:376.866667pt;}
.y64{bottom:377.216960pt;}
.y179{bottom:377.346667pt;}
.yaa{bottom:377.377333pt;}
.y2f{bottom:380.706667pt;}
.yd3{bottom:382.306667pt;}
.y13e{bottom:383.586667pt;}
.y2db{bottom:384.546667pt;}
.y111{bottom:388.866667pt;}
.y279{bottom:389.506667pt;}
.y63{bottom:392.340480pt;}
.y2ea{bottom:392.386667pt;}
.ya9{bottom:392.496800pt;}
.y10{bottom:392.706667pt;}
.y12b{bottom:392.866667pt;}
.y158{bottom:396.226667pt;}
.y30b{bottom:397.862437pt;}
.y2da{bottom:401.346667pt;}
.y2c2{bottom:401.653333pt;}
.y2bf{bottom:401.666667pt;}
.yfa{bottom:402.146667pt;}
.y178{bottom:402.626667pt;}
.y1d0{bottom:403.746667pt;}
.y1ff{bottom:404.386667pt;}
.y2e{bottom:405.986667pt;}
.y274{bottom:407.106667pt;}
.y62{bottom:407.464000pt;}
.yd2{bottom:407.586667pt;}
.ya8{bottom:407.616267pt;}
.y13d{bottom:408.866667pt;}
.y1b8{bottom:409.013333pt;}
.y1b5{bottom:409.026667pt;}
.y2e9{bottom:409.666667pt;}
.y110{bottom:414.146667pt;}
.y12a{bottom:418.146667pt;}
.y1cf{bottom:420.546667pt;}
.y1fe{bottom:420.866667pt;}
.y157{bottom:421.506667pt;}
.y61{bottom:422.587520pt;}
.ya7{bottom:422.735867pt;}
.y276{bottom:424.706667pt;}
.y2dd{bottom:425.899622pt;}
.y2e8{bottom:426.466667pt;}
.y18f{bottom:427.106667pt;}
.y177{bottom:427.906667pt;}
.y2d{bottom:431.266667pt;}
.yd1{bottom:432.866667pt;}
.yf{bottom:433.986667pt;}
.y13c{bottom:434.146667pt;}
.y2d9{bottom:435.106667pt;}
.yf9{bottom:435.426667pt;}
.y2c4{bottom:436.066667pt;}
.y1ce{bottom:437.506667pt;}
.y60{bottom:437.630880pt;}
.ya6{bottom:437.775200pt;}
.y1fd{bottom:437.986667pt;}
.y10f{bottom:439.426667pt;}
.y275{bottom:442.146667pt;}
.y2e7{bottom:443.266667pt;}
.y129{bottom:443.426667pt;}
.y156{bottom:446.786667pt;}
.y247{bottom:451.906667pt;}
.y18e{bottom:452.386667pt;}
.y5f{bottom:452.754400pt;}
.ya5{bottom:452.894667pt;}
.y176{bottom:453.186667pt;}
.y1cd{bottom:454.306667pt;}
.y2e6{bottom:456.546667pt;}
.y2fc{bottom:456.640000pt;}
.y2c{bottom:456.706667pt;}
.yd0{bottom:458.146667pt;}
.y13b{bottom:459.426667pt;}
.y26f{bottom:459.746667pt;}
.yf8{bottom:460.706667pt;}
.y10e{bottom:464.706667pt;}
.y5e{bottom:467.877920pt;}
.ya4{bottom:468.014267pt;}
.y128{bottom:468.706667pt;}
.y2d8{bottom:468.866667pt;}
.y24e{bottom:470.306667pt;}
.y1cc{bottom:471.266667pt;}
.y155{bottom:472.226667pt;}
.ye{bottom:475.266667pt;}
.y2bb{bottom:475.586667pt;}
.y273{bottom:477.186667pt;}
.y175{bottom:478.466667pt;}
.y2fd{bottom:480.524395pt;}
.y2b{bottom:481.986667pt;}
.y5d{bottom:483.001440pt;}
.y164{bottom:483.106667pt;}
.ya3{bottom:483.133733pt;}
.ycf{bottom:483.426667pt;}
.y13a{bottom:484.706667pt;}
.y2d7{bottom:485.666667pt;}
.yf7{bottom:485.986667pt;}
.y1cb{bottom:488.066667pt;}
.y10d{bottom:489.986667pt;}
.y127{bottom:494.013333pt;}
.y271{bottom:494.813333pt;}
.y199{bottom:497.333333pt;}
.y154{bottom:497.533333pt;}
.y5c{bottom:498.124960pt;}
.y309{bottom:498.173333pt;}
.ya2{bottom:498.253200pt;}
.y24b{bottom:498.493333pt;}
.y2dc{bottom:499.040000pt;}
.y2d6{bottom:499.133333pt;}
.y1fc{bottom:502.013333pt;}
.y174{bottom:503.773333pt;}
.y2a{bottom:507.293333pt;}
.y163{bottom:508.413333pt;}
.yce{bottom:508.733333pt;}
.y139{bottom:510.013333pt;}
.y18d{bottom:511.453333pt;}
.y269{bottom:512.253333pt;}
.y5b{bottom:513.168320pt;}
.ya1{bottom:513.292533pt;}
.y10c{bottom:515.453333pt;}
.y308{bottom:516.093333pt;}
.yd{bottom:516.573333pt;}
.yf6{bottom:519.453333pt;}
.y153{bottom:522.813333pt;}
.y198{bottom:524.000000pt;}
.y23f{bottom:526.973333pt;}
.y5a{bottom:528.291840pt;}
.ya0{bottom:528.412133pt;}
.y173{bottom:529.053333pt;}
.y29{bottom:532.573333pt;}
.y307{bottom:532.893333pt;}
.ycd{bottom:534.013333pt;}
.y138{bottom:535.453333pt;}
.y302{bottom:539.758473pt;}
.y59{bottom:543.415360pt;}
.y9f{bottom:543.531600pt;}
.y18c{bottom:544.413333pt;}
.y10b{bottom:544.733333pt;}
.y245{bottom:544.893333pt;}
.y26e{bottom:546.653333pt;}
.y152{bottom:548.093333pt;}
.y306{bottom:549.853333pt;}
.y197{bottom:550.666667pt;}
.y1fa{bottom:553.373333pt;}
.y172{bottom:554.493333pt;}
.yc{bottom:557.853333pt;}
.y58{bottom:558.538880pt;}
.y9e{bottom:558.651067pt;}
.ycc{bottom:559.453333pt;}
.yf5{bottom:560.733333pt;}
.y30a{bottom:563.200000pt;}
.y305{bottom:563.293333pt;}
.y26d{bottom:564.253333pt;}
.y242{bottom:564.413333pt;}
.y126{bottom:570.013333pt;}
.y2e2{bottom:572.709779pt;}
.y151{bottom:573.373333pt;}
.y57{bottom:573.662400pt;}
.y9d{bottom:573.770667pt;}
.y2b8{bottom:578.813333pt;}
.y171{bottom:579.773333pt;}
.y263{bottom:581.853333pt;}
.y28{bottom:583.133333pt;}
.y18b{bottom:583.293333pt;}
.y81{bottom:583.773333pt;}
.ycb{bottom:584.733333pt;}
.y235{bottom:585.533333pt;}
.yf4{bottom:586.013333pt;}
.y1f3{bottom:587.773333pt;}
.y56{bottom:588.705760pt;}
.y9c{bottom:588.810000pt;}
.y125{bottom:595.293333pt;}
.y150{bottom:598.653333pt;}
.yb{bottom:599.133333pt;}
.y268{bottom:599.293333pt;}
.y55{bottom:603.829280pt;}
.y9b{bottom:603.929467pt;}
.y170{bottom:605.053333pt;}
.y18a{bottom:608.573333pt;}
.y27{bottom:609.053333pt;}
.y80{bottom:610.013333pt;}
.y137{bottom:610.973333pt;}
.yf3{bottom:611.293333pt;}
.y2b6{bottom:613.213333pt;}
.y266{bottom:616.893333pt;}
.y54{bottom:618.952800pt;}
.y9a{bottom:619.048933pt;}
.y10a{bottom:619.293333pt;}
.y124{bottom:620.573333pt;}
.y14f{bottom:623.933333pt;}
.y1f5{bottom:624.893333pt;}
.y23c{bottom:625.213333pt;}
.y16f{bottom:630.813333pt;}
.y310{bottom:632.038219pt;}
.y189{bottom:633.853333pt;}
.y53{bottom:634.076320pt;}
.y99{bottom:634.168533pt;}
.y262{bottom:634.333333pt;}
.y26{bottom:635.293333pt;}
.yf2{bottom:636.573333pt;}
.ya{bottom:640.093333pt;}
.y123{bottom:645.853333pt;}
.y1ec{bottom:646.813333pt;}
.y52{bottom:649.199840pt;}
.y14e{bottom:649.213333pt;}
.y98{bottom:649.288000pt;}
.y239{bottom:650.813333pt;}
.y2b5{bottom:651.293333pt;}
.y109{bottom:652.573333pt;}
.y261{bottom:655.453333pt;}
.y16e{bottom:657.853333pt;}
.y188{bottom:659.133333pt;}
.y25{bottom:660.573333pt;}
.yf1{bottom:661.853333pt;}
.y51{bottom:664.243200pt;}
.y1f2{bottom:664.253333pt;}
.y97{bottom:664.328667pt;}
.y2b4{bottom:668.093333pt;}
.y122{bottom:671.133333pt;}
.y260{bottom:672.413333pt;}
.y14d{bottom:674.493333pt;}
.y108{bottom:677.853333pt;}
.y50{bottom:679.366720pt;}
.y96{bottom:679.448267pt;}
.y1ab{bottom:680.253333pt;}
.y229{bottom:681.533333pt;}
.y233{bottom:681.546667pt;}
.y1ef{bottom:681.853333pt;}
.y16d{bottom:684.733333pt;}
.y2b3{bottom:685.053333pt;}
.y24{bottom:685.853333pt;}
.y9{bottom:686.973333pt;}
.yf0{bottom:687.133333pt;}
.y25f{bottom:689.213333pt;}
.y4f{bottom:694.490240pt;}
.y95{bottom:694.567733pt;}
.y121{bottom:696.413333pt;}
.y187{bottom:697.533333pt;}
.y14c{bottom:699.933333pt;}
.y2b2{bottom:701.853333pt;}
.y107{bottom:703.133333pt;}
.y25e{bottom:706.173333pt;}
.y4e{bottom:709.613760pt;}
.y94{bottom:709.687200pt;}
.yc9{bottom:710.813333pt;}
.y23{bottom:711.133333pt;}
.y136{bottom:712.413333pt;}
.y1e4{bottom:712.893333pt;}
.y231{bottom:714.973333pt;}
.y2ad{bottom:715.773333pt;}
.y25d{bottom:722.973333pt;}
.y4d{bottom:724.737280pt;}
.y93{bottom:724.806800pt;}
.yef{bottom:725.693333pt;}
.y8{bottom:728.413333pt;}
.y120{bottom:729.693333pt;}
.y1eb{bottom:730.506667pt;}
.y2b1{bottom:733.373333pt;}
.yc8{bottom:736.093333pt;}
.y22{bottom:736.413333pt;}
.y135{bottom:737.693333pt;}
.y25c{bottom:739.773333pt;}
.y4c{bottom:739.780640pt;}
.y92{bottom:739.846133pt;}
.yee{bottom:745.733333pt;}
.y1ea{bottom:748.133333pt;}
.y22e{bottom:748.613333pt;}
.y2af{bottom:750.853333pt;}
.y14b{bottom:752.613333pt;}
.y4b{bottom:754.904160pt;}
.y91{bottom:754.965600pt;}
.y25b{bottom:756.773333pt;}
.yc7{bottom:761.413333pt;}
.y21{bottom:761.733333pt;}
.y11f{bottom:763.173333pt;}
.y1e9{bottom:765.573333pt;}
.y2aa{bottom:768.440000pt;}
.y2a8{bottom:768.453333pt;}
.y7{bottom:769.733333pt;}
.y4a{bottom:770.027680pt;}
.y90{bottom:770.085067pt;}
.yed{bottom:771.173333pt;}
.y25a{bottom:773.573333pt;}
.y14a{bottom:779.173333pt;}
.y224{bottom:782.053333pt;}
.y1e6{bottom:783.173333pt;}
.y49{bottom:785.151200pt;}
.y8f{bottom:785.204667pt;}
.y2ac{bottom:785.893333pt;}
.yc6{bottom:786.853333pt;}
.y20{bottom:787.173333pt;}
.y259{bottom:787.493333pt;}
.y134{bottom:788.453333pt;}
.yec{bottom:796.453333pt;}
.y1a4{bottom:799.000000pt;}
.y19e{bottom:799.013333pt;}
.y226{bottom:799.653333pt;}
.y48{bottom:800.274720pt;}
.y8e{bottom:800.324133pt;}
.y2a9{bottom:803.493333pt;}
.y149{bottom:804.453333pt;}
.y1e0{bottom:804.773333pt;}
.y6{bottom:811.013333pt;}
.yc5{bottom:812.133333pt;}
.y1f{bottom:812.453333pt;}
.y47{bottom:815.318080pt;}
.y8d{bottom:815.364800pt;}
.y220{bottom:819.800000pt;}
.y21f{bottom:819.813333pt;}
.y2a7{bottom:821.093333pt;}
.yeb{bottom:821.733333pt;}
.y257{bottom:821.880000pt;}
.y256{bottom:821.893333pt;}
.y1e2{bottom:822.213333pt;}
.y148{bottom:829.733333pt;}
.y46{bottom:830.441600pt;}
.y8c{bottom:830.484400pt;}
.y223{bottom:837.253333pt;}
.yc4{bottom:837.413333pt;}
.y1e{bottom:837.733333pt;}
.y1da{bottom:839.813333pt;}
.y45{bottom:845.565120pt;}
.y8b{bottom:845.603867pt;}
.y314{bottom:845.893333pt;}
.y5{bottom:846.693333pt;}
.y11e{bottom:847.013333pt;}
.y222{bottom:854.853333pt;}
.yea{bottom:855.013333pt;}
.y2a5{bottom:855.493333pt;}
.y1dc{bottom:858.373333pt;}
.y44{bottom:860.688640pt;}
.y8a{bottom:860.723333pt;}
.yc3{bottom:862.693333pt;}
.y1d{bottom:863.013333pt;}
.y254{bottom:863.173333pt;}
.y11d{bottom:872.293333pt;}
.y21a{bottom:872.453333pt;}
.y43{bottom:875.812160pt;}
.y89{bottom:875.842933pt;}
.ye9{bottom:880.293333pt;}
.y1d5{bottom:881.413333pt;}
.yc2{bottom:887.973333pt;}
.y1c{bottom:888.293333pt;}
.y2a4{bottom:889.733333pt;}
.y21e{bottom:889.893333pt;}
.y42{bottom:890.855520pt;}
.y88{bottom:890.883600pt;}
.y11c{bottom:897.573333pt;}
.y1d7{bottom:898.853333pt;}
.ye8{bottom:905.573333pt;}
.y252{bottom:905.893333pt;}
.y41{bottom:905.979040pt;}
.y87{bottom:906.003067pt;}
.y21c{bottom:907.493333pt;}
.y7f{bottom:913.253333pt;}
.y4{bottom:913.573333pt;}
.y19b{bottom:917.733333pt;}
.y40{bottom:921.102560pt;}
.y86{bottom:921.122533pt;}
.y1d3{bottom:921.413333pt;}
.y2a0{bottom:924.133333pt;}
.y219{bottom:924.920000pt;}
.y216{bottom:924.933333pt;}
.ye7{bottom:930.853333pt;}
.y3f{bottom:936.226080pt;}
.y85{bottom:936.242133pt;}
.y1b{bottom:938.533333pt;}
.y3{bottom:938.853333pt;}
.y2a3{bottom:941.733333pt;}
.y218{bottom:943.013333pt;}
.y251{bottom:947.333333pt;}
.y195{bottom:948.000000pt;}
.y3e{bottom:951.349600pt;}
.y84{bottom:951.361600pt;}
.y1d1{bottom:953.573333pt;}
.y147{bottom:955.813333pt;}
.ye6{bottom:956.133333pt;}
.y214{bottom:960.453333pt;}
.yca{bottom:963.813333pt;}
.y7e{bottom:964.133333pt;}
.y3d{bottom:966.392960pt;}
.y83{bottom:966.400933pt;}
.y19a{bottom:972.613333pt;}
.y2a2{bottom:976.133333pt;}
.y215{bottom:978.053333pt;}
.y146{bottom:981.093333pt;}
.y313{bottom:981.413333pt;}
.y3c{bottom:981.516480pt;}
.y82{bottom:981.520533pt;}
.y2{bottom:989.093333pt;}
.y7d{bottom:989.413333pt;}
.y212{bottom:995.493333pt;}
.y3b{bottom:996.640000pt;}
.y1ca{bottom:997.920000pt;}
.y29f{bottom:1010.560000pt;}
.y210{bottom:1013.120000pt;}
.y1{bottom:1014.560000pt;}
.ydf{bottom:1014.880000pt;}
.y196{bottom:1040.000000pt;}
.y19{bottom:1056.960000pt;}
.y7c{bottom:1060.960000pt;}
.y18{bottom:1062.746667pt;}
.y17{bottom:1078.746667pt;}
.y2e5{bottom:1093.226667pt;}
.y16{bottom:1094.746667pt;}
.y1c9{bottom:1106.560000pt;}
.h1e{height:16.786667pt;}
.h2d{height:16.800000pt;}
.h29{height:16.818667pt;}
.h63{height:16.820000pt;}
.h26{height:16.946667pt;}
.h2a{height:16.960000pt;}
.h36{height:16.986667pt;}
.h3a{height:17.266667pt;}
.h4a{height:17.280000pt;}
.h4e{height:17.746667pt;}
.h24{height:17.906667pt;}
.h7{height:18.400000pt;}
.h49{height:18.720000pt;}
.h5a{height:19.346667pt;}
.h3f{height:19.506667pt;}
.h50{height:20.306667pt;}
.h48{height:20.480000pt;}
.h28{height:20.946667pt;}
.h2f{height:21.280000pt;}
.h21{height:21.746667pt;}
.h23{height:22.226667pt;}
.h45{height:24.960000pt;}
.h4d{height:27.546667pt;}
.h4c{height:27.840000pt;}
.h44{height:29.920000pt;}
.h5d{height:29.938667pt;}
.h2c{height:30.400000pt;}
.h1f{height:31.506667pt;}
.h41{height:32.786667pt;}
.h35{height:32.800000pt;}
.h42{height:32.980000pt;}
.h33{height:33.586667pt;}
.h31{height:33.600000pt;}
.h34{height:33.618667pt;}
.h10{height:33.746667pt;}
.h5f{height:33.752000pt;}
.h56{height:33.760000pt;}
.h61{height:33.786667pt;}
.h25{height:34.386667pt;}
.h37{height:34.866667pt;}
.h38{height:34.872000pt;}
.h39{height:34.880000pt;}
.h30{height:36.480000pt;}
.h4{height:36.667500pt;}
.h6{height:37.057292pt;}
.h3e{height:37.106667pt;}
.hc{height:37.537500pt;}
.h5{height:38.220000pt;}
.h68{height:38.866667pt;}
.h46{height:39.040000pt;}
.h20{height:39.186667pt;}
.hd{height:40.000000pt;}
.h54{height:40.626667pt;}
.h52{height:40.632000pt;}
.h53{height:40.640000pt;}
.h22{height:40.786667pt;}
.h7d{height:41.140917pt;}
.h7e{height:41.141002pt;}
.h7c{height:41.223121pt;}
.h51{height:42.066667pt;}
.h7b{height:43.587670pt;}
.h71{height:44.036759pt;}
.h72{height:44.036850pt;}
.h70{height:44.306782pt;}
.h6c{height:45.746667pt;}
.h6f{height:46.848625pt;}
.h77{height:49.750832pt;}
.h78{height:49.750914pt;}
.h76{height:49.989454pt;}
.h32{height:50.560000pt;}
.h1b{height:50.578667pt;}
.h1c{height:50.580000pt;}
.h3b{height:51.826667pt;}
.h3c{height:51.832000pt;}
.h3d{height:51.840000pt;}
.h57{height:51.866667pt;}
.h58{height:51.986667pt;}
.h62{height:52.020000pt;}
.ha{height:52.422344pt;}
.h75{height:52.857307pt;}
.h59{height:54.386667pt;}
.he{height:56.000000pt;}
.hb{height:57.758750pt;}
.h3{height:57.787500pt;}
.h47{height:57.920000pt;}
.h2e{height:58.400000pt;}
.h4f{height:58.736250pt;}
.h2{height:59.340000pt;}
.h8{height:62.812500pt;}
.h2b{height:65.440000pt;}
.h5e{height:68.152000pt;}
.h64{height:68.160000pt;}
.h65{height:68.186667pt;}
.h55{height:68.800000pt;}
.h5c{height:69.138667pt;}
.h5b{height:69.140000pt;}
.hf{height:72.000000pt;}
.h69{height:73.266667pt;}
.h66{height:73.276000pt;}
.h67{height:73.280000pt;}
.h4b{height:74.426667pt;}
.h6d{height:80.146667pt;}
.h6a{height:80.156000pt;}
.h6b{height:80.160000pt;}
.h18{height:84.306667pt;}
.h1d{height:84.312000pt;}
.h19{height:84.316000pt;}
.h1a{height:84.320000pt;}
.h60{height:85.786667pt;}
.h27{height:91.220000pt;}
.h43{height:95.200000pt;}
.h40{height:99.860000pt;}
.h11{height:118.066667pt;}
.h12{height:118.072000pt;}
.h13{height:118.080000pt;}
.h14{height:118.100000pt;}
.h15{height:134.880000pt;}
.h16{height:135.066667pt;}
.h17{height:135.080000pt;}
.h7f{height:307.139394pt;}
.h73{height:328.801899pt;}
.h79{height:370.973172pt;}
.h7a{height:431.194598pt;}
.h6e{height:461.591377pt;}
.h74{height:520.793882pt;}
.h9{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w3{width:16.000000pt;}
.w2c{width:37.120000pt;}
.w1e{width:66.880000pt;}
.w5{width:74.232000pt;}
.w11{width:74.898667pt;}
.w13{width:74.912000pt;}
.w1f{width:76.512000pt;}
.w1d{width:76.640000pt;}
.w16{width:83.378667pt;}
.w2d{width:84.306667pt;}
.w24{width:84.352000pt;}
.w12{width:84.480000pt;}
.we{width:87.826667pt;}
.wd{width:87.872000pt;}
.w18{width:90.866667pt;}
.w17{width:93.120000pt;}
.w27{width:93.746667pt;}
.w29{width:93.752000pt;}
.w2a{width:93.760000pt;}
.wc{width:95.680000pt;}
.wa{width:99.672000pt;}
.w25{width:103.186667pt;}
.w26{width:103.378667pt;}
.w15{width:105.752000pt;}
.w1b{width:105.760000pt;}
.wb{width:107.858667pt;}
.w22{width:112.632000pt;}
.w28{width:112.640000pt;}
.w20{width:123.826667pt;}
.wf{width:129.618667pt;}
.w19{width:130.258667pt;}
.w1a{width:130.260000pt;}
.w14{width:131.506667pt;}
.w10{width:131.672000pt;}
.w1c{width:153.613333pt;}
.w21{width:153.626667pt;}
.w23{width:160.173333pt;}
.w2f{width:162.253333pt;}
.w2b{width:162.258667pt;}
.w30{width:162.266667pt;}
.w6{width:213.133333pt;}
.w8{width:213.146667pt;}
.w2e{width:214.413333pt;}
.w7{width:277.013333pt;}
.w36{width:348.772147pt;}
.w32{width:374.132813pt;}
.w34{width:421.771418pt;}
.w35{width:431.990778pt;}
.w31{width:462.397665pt;}
.w33{width:522.396947pt;}
.w9{width:565.680000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w4{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.666667pt;}
.x2{left:11.048000pt;}
.x2d{left:14.604441pt;}
.x36{left:17.414953pt;}
.x4{left:24.000000pt;}
.x3f{left:40.933134pt;}
.x2f{left:43.814485pt;}
.x38{left:49.499717pt;}
.x3e{left:56.089906pt;}
.x2e{left:60.038462pt;}
.x37{left:67.828865pt;}
.x9{left:100.032000pt;}
.x1{left:113.472000pt;}
.x3c{left:147.031597pt;}
.x2c{left:154.951305pt;}
.x40{left:168.669322pt;}
.x34{left:171.400552pt;}
.x30{left:172.556795pt;}
.x39{left:180.227606pt;}
.xd{left:189.000000pt;}
.x3d{left:194.777389pt;}
.x5{left:207.866667pt;}
.xf{left:214.440000pt;}
.x18{left:220.520000pt;}
.x21{left:227.400000pt;}
.x35{left:235.536364pt;}
.x14{left:246.120000pt;}
.x41{left:251.732137pt;}
.xb{left:262.800000pt;}
.x1d{left:268.066667pt;}
.x31{left:271.870686pt;}
.x26{left:276.706667pt;}
.x7{left:302.306667pt;}
.x19{left:304.546667pt;}
.x3a{left:306.240075pt;}
.x27{left:314.466667pt;}
.x15{left:321.666667pt;}
.x10{left:322.946667pt;}
.xc{left:326.666667pt;}
.x1e{left:345.346667pt;}
.x6{left:349.506667pt;}
.x22{left:388.226667pt;}
.x32{left:396.880000pt;}
.x1a{left:398.306667pt;}
.x28{left:399.586667pt;}
.xe{left:402.786667pt;}
.x16{left:406.786667pt;}
.x1f{left:412.866667pt;}
.x11{left:419.266667pt;}
.x23{left:473.386667pt;}
.x29{left:475.306667pt;}
.x17{left:482.506667pt;}
.x1b{left:486.826667pt;}
.x20{left:490.186667pt;}
.x12{left:507.786667pt;}
.x3b{left:545.533333pt;}
.x2a{left:560.266667pt;}
.x2b{left:575.933333pt;}
.x24{left:577.226667pt;}
.x1c{left:578.346667pt;}
.x13{left:596.266667pt;}
.x33{left:635.973333pt;}
.x8{left:664.440000pt;}
.x3{left:672.440000pt;}
.x25{left:681.253333pt;}
}




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