
    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_c49cfbf406e6080ba06b758a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.742676;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_631137a6c2929967c2107967.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_8bccd29174cd19e0539b98f8.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9e478621b27c72f83e8cb48b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_c49b0e19a312cb44262b82bc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.730469;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_31ab8764a106c54aac38a489.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4d0b53ebc99ee5e776efb653.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_c49cfbf406e6080ba06b758a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.742676;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_97ff4203ecf4de8cc4306e9c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_aaf0b6f8a00afb1f3a07431e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_deaa5d4692a921c54190284d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_f860ecd8bc7cd4a8bb299898.woff')format("woff");}.ffc{font-family:ffc;line-height:0.861328;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_0b6419a4804aac24f5df8f68.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a5895925cda39ca4617a0f0f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.742676;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_d34dc782f0e2a0dea94a2b3c.woff')format("woff");}.fff{font-family:fff;line-height:0.938477;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_26fe4ba48209ca7298c5d966.woff')format("woff");}.ff10{font-family:ff10;line-height:0.740234;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_e269ef64de2be46053db8a81.woff')format("woff");}.ff11{font-family:ff11;line-height:0.700195;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_a5895925cda39ca4617a0f0f.woff')format("woff");}.ff12{font-family:ff12;line-height:0.742676;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_2511eeb5b431234a3606c077.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_9969896403c2e6699f3bf393.woff')format("woff");}.ff14{font-family:ff14;line-height:0.938477;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_a830781fc20912dee60181e6.woff')format("woff");}.ff15{font-family:ff15;line-height:0.926270;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_db1f3af52d8d6462336a8ac4.woff')format("woff");}.ff16{font-family:ff16;line-height:0.938477;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_d005cd50b07eae77788a2350.woff')format("woff");}.ff17{font-family:ff17;line-height:0.929199;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_7c34bc5e70cac0cbb6a484eb.woff')format("woff");}.ff18{font-family:ff18;line-height:0.861328;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_14c22125aa9588e57d7e789f.woff')format("woff");}.ff19{font-family:ff19;line-height:0.938477;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_8de01dc470f2578f8c143640.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.938965;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_27fc53e492af123c9570a398.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.739746;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_36d743ce0d57337b957e62c4.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.938965;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_74855c4cf6efa3596d2d8c2a.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;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:ff1e;src:url('chunks/assets/font_3f3ac34e93ec81f5ef721f85.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.938965;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:ff1f;src:url('chunks/assets/font_f0eb00effa7803570f853fa9.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.938477;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:ff20;src:url('chunks/assets/font_2316dd86f641cbcb49d0e768.woff')format("woff");}.ff20{font-family:ff20;line-height:0.938965;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:ff21;src:url('chunks/assets/font_ceca1351d99ad1725b098643.woff')format("woff");}.ff21{font-family:ff21;line-height:0.935547;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:ff22;src:url('chunks/assets/font_f8d09479955f0d8880d62000.woff')format("woff");}.ff22{font-family:ff22;line-height:0.938477;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:ff23;src:url('chunks/assets/font_09a3aaa4f37da4a8ee3eec7a.woff')format("woff");}.ff23{font-family:ff23;line-height:0.938477;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:ff24;src:url('chunks/assets/font_c215d836c1d9c20aaf882b42.woff')format("woff");}.ff24{font-family:ff24;line-height:0.938965;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:ff25;src:url('chunks/assets/font_b5b2bfc323bd5cfc9d3d4151.woff')format("woff");}.ff25{font-family:ff25;line-height:1.008301;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:ff26;src:url('chunks/assets/font_f0b27b634cf1cfac051af11b.woff')format("woff");}.ff26{font-family:ff26;line-height:1.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:ff27;src:url('chunks/assets/font_22da648702d41d0ef9e89193.woff')format("woff");}.ff27{font-family:ff27;line-height:0.895996;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:ff28;src:url('chunks/assets/font_aa8314cd5c2559e3d9e5e61c.woff')format("woff");}.ff28{font-family:ff28;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-50.399919px;}
.v3{vertical-align:-47.519986px;}
.v4{vertical-align:-40.320027px;}
.v5{vertical-align:-10.079955px;}
.v6{vertical-align:-1.440036px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:38.879793px;}
.v8{vertical-align:53.279982px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.010092px;}
.ls7{letter-spacing:0.053319px;}
.ls1{letter-spacing:0.055116px;}
.lsa{letter-spacing:0.179375px;}
.ls4{letter-spacing:0.261176px;}
.ls5{letter-spacing:0.323388px;}
.ls9{letter-spacing:372.644710px;}
.ls3{letter-spacing:383.765821px;}
.ls8{letter-spacing:499.572229px;}
.ls2{letter-spacing:500.292180px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws33{word-spacing:-66.242700px;}
.ws0{word-spacing:-48.241800px;}
.ws1c{word-spacing:-18.359320px;}
.ws4{word-spacing:-18.349228px;}
.ws1{word-spacing:-16.554143px;}
.ws5{word-spacing:-16.272611px;}
.ws25{word-spacing:-16.155263px;}
.ws1d{word-spacing:-15.784450px;}
.ws34{word-spacing:-14.970850px;}
.ws32{word-spacing:-14.940563px;}
.ws3{word-spacing:-12.060450px;}
.ws2{word-spacing:0.000000px;}
.wsc{word-spacing:93.647446px;}
.ws22{word-spacing:94.245068px;}
.ws16{word-spacing:105.507803px;}
.ws2d{word-spacing:105.630203px;}
.ws24{word-spacing:105.947653px;}
.wse{word-spacing:109.835127px;}
.wsa{word-spacing:110.380876px;}
.ws20{word-spacing:110.978498px;}
.ws2b{word-spacing:119.994627px;}
.ws14{word-spacing:123.465879px;}
.ws9{word-spacing:128.907173px;}
.ws29{word-spacing:129.300428px;}
.ws1f{word-spacing:130.102418px;}
.ws12{word-spacing:131.895286px;}
.ws2c{word-spacing:151.788812px;}
.ws26{word-spacing:152.198311px;}
.ws15{word-spacing:156.039618px;}
.wsf{word-spacing:156.418498px;}
.ws19{word-spacing:168.350258px;}
.ws30{word-spacing:168.947881px;}
.ws17{word-spacing:171.538705px;}
.ws2e{word-spacing:172.258584px;}
.ws7{word-spacing:180.142584px;}
.ws1a{word-spacing:185.681311px;}
.ws31{word-spacing:186.278933px;}
.ws2f{word-spacing:190.566904px;}
.ws18{word-spacing:191.059913px;}
.ws1b{word-spacing:191.319470px;}
.ws6{word-spacing:213.819654px;}
.ws8{word-spacing:255.005521px;}
.ws28{word-spacing:256.074582px;}
.ws1e{word-spacing:259.188878px;}
.ws2a{word-spacing:262.554596px;}
.ws11{word-spacing:263.865938px;}
.ws13{word-spacing:270.345947px;}
.ws27{word-spacing:366.148716px;}
.ws10{word-spacing:377.853092px;}
.ws23{word-spacing:486.065708px;}
.wsd{word-spacing:486.785730px;}
.ws21{word-spacing:612.703316px;}
.wsb{word-spacing:613.423339px;}
._16{margin-left:-3288.602570px;}
._6{margin-left:-3264.481670px;}
._0{margin-left:-3240.360770px;}
._14{margin-left:-4.692105px;}
._7{margin-left:-3.238600px;}
._8{margin-left:-2.175953px;}
._5{margin-left:-1.010355px;}
._2{width:1.423322px;}
._12{width:2.472871px;}
._c{width:3.734440px;}
._10{width:5.399953px;}
._4{width:6.920982px;}
._d{width:8.724355px;}
._b{width:10.266734px;}
._15{width:11.519571px;}
._3{width:13.276324px;}
._1{width:14.552341px;}
._11{width:15.765880px;}
._a{width:17.742151px;}
._9{width:18.764880px;}
._52{width:20.137544px;}
._7a{width:21.807665px;}
._19{width:22.986217px;}
._1a{width:23.999006px;}
._17{width:25.202501px;}
._18{width:26.507172px;}
._e{width:32.328403px;}
._f{width:33.529968px;}
._54{width:34.605767px;}
._78{width:36.587175px;}
._77{width:37.906504px;}
._81{width:41.573512px;}
._50{width:42.736312px;}
._4f{width:43.795224px;}
._1d{width:48.482740px;}
._1e{width:49.764080px;}
._1c{width:52.248203px;}
._1b{width:53.512975px;}
._7f{width:59.769599px;}
._13{width:60.865915px;}
._4b{width:62.234585px;}
._4d{width:64.652716px;}
._79{width:72.373266px;}
._82{width:73.678772px;}
._53{width:75.161301px;}
._7e{width:78.053396px;}
._7d{width:79.064467px;}
._4a{width:80.619275px;}
._49{width:81.743786px;}
._2f{width:94.509609px;}
._1f{width:117.298844px;}
._2e{width:120.141265px;}
._31{width:121.196909px;}
._74{width:131.896219px;}
._68{width:134.606764px;}
._2b{width:137.820853px;}
._5d{width:141.386511px;}
._30{width:143.221399px;}
._2a{width:144.274709px;}
._58{width:149.312407px;}
._2d{width:155.022343px;}
._80{width:168.125877px;}
._27{width:170.621224px;}
._4c{width:172.551974px;}
._51{width:178.248147px;}
._28{width:179.524865px;}
._71{width:204.545171px;}
._6e{width:205.795976px;}
._2c{width:206.822000px;}
._5b{width:208.183163px;}
._62{width:213.558066px;}
._89{width:215.068066px;}
._26{width:218.029948px;}
._5f{width:225.380953px;}
._73{width:228.953615px;}
._8a{width:229.972375px;}
._5c{width:236.017466px;}
._4e{width:237.549479px;}
._45{width:242.813088px;}
._67{width:245.675139px;}
._23{width:271.628531px;}
._20{width:276.179566px;}
._22{width:296.550323px;}
._6d{width:298.318444px;}
._70{width:315.910023px;}
._72{width:322.386290px;}
._6c{width:325.823320px;}
._7b{width:334.398969px;}
._25{width:335.514843px;}
._40{width:343.688965px;}
._3d{width:346.969118px;}
._21{width:350.641929px;}
._5a{width:355.245022px;}
._83{width:356.498629px;}
._57{width:358.649603px;}
._76{width:368.670986px;}
._66{width:372.019072px;}
._87{width:373.063744px;}
._24{width:389.487391px;}
._61{width:401.687994px;}
._29{width:409.166006px;}
._6b{width:434.979303px;}
._88{width:436.053156px;}
._59{width:465.027809px;}
._56{width:469.938352px;}
._64{width:474.680580px;}
._86{width:475.825634px;}
._75{width:479.305384px;}
._65{width:483.087447px;}
._5e{width:491.933661px;}
._84{width:493.912585px;}
._60{width:512.187928px;}
._85{width:513.344421px;}
._6a{width:529.117453px;}
._37{width:532.918659px;}
._42{width:546.445004px;}
._41{width:552.780736px;}
._7c{width:583.349827px;}
._33{width:584.434652px;}
._3e{width:586.356616px;}
._6f{width:592.432289px;}
._48{width:608.140189px;}
._3b{width:613.849118px;}
._43{width:617.302956px;}
._63{width:622.420565px;}
._69{width:639.204653px;}
._36{width:642.584255px;}
._34{width:644.006177px;}
._3c{width:645.761226px;}
._55{width:652.175396px;}
._3f{width:664.126912px;}
._44{width:680.292368px;}
._39{width:690.383083px;}
._35{width:713.222301px;}
._32{width:720.344514px;}
._38{width:725.164246px;}
._46{width:740.334753px;}
._3a{width:741.948334px;}
._47{width:766.998755px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.881485px;}
.fs0{font-size:48.241800px;}
.fs5{font-size:54.002250px;}
.fs8{font-size:58.322250px;}
.fs1{font-size:59.762250px;}
.fs6{font-size:64.082700px;}
.fs3{font-size:66.242700px;}
.fs7{font-size:69.842700px;}
.fs4{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y250{bottom:3.059966px;}
.y25c{bottom:3.059967px;}
.y23e{bottom:3.060001px;}
.y240{bottom:3.060002px;}
.y252{bottom:3.060035px;}
.y254{bottom:3.060036px;}
.y118{bottom:3.239971px;}
.y124{bottom:3.239972px;}
.y113{bottom:3.240004px;}
.y127{bottom:3.240006px;}
.y110{bottom:3.240023px;}
.y10a{bottom:3.599997px;}
.ya4{bottom:3.600014px;}
.ya7{bottom:3.600015px;}
.y25{bottom:84.420043px;}
.y92{bottom:85.140060px;}
.y14c{bottom:91.980011px;}
.y191{bottom:100.080093px;}
.y1b0{bottom:100.440033px;}
.ydd{bottom:105.660049px;}
.y6e{bottom:108.360077px;}
.y108{bottom:109.080093px;}
.y171{bottom:110.880066px;}
.y2b8{bottom:111.600083px;}
.y14b{bottom:111.780052px;}
.y91{bottom:113.400055px;}
.y24{bottom:115.020058px;}
.y14d{bottom:121.680039px;}
.y14a{bottom:128.340088px;}
.y190{bottom:128.520058px;}
.ydc{bottom:129.960091px;}
.yba{bottom:132.840088px;}
.y4b{bottom:133.020058px;}
.y2b7{bottom:133.560036px;}
.y6d{bottom:136.440033px;}
.y107{bottom:137.160049px;}
.y170{bottom:137.520058px;}
.y90{bottom:141.480079px;}
.y29b{bottom:147.060036px;}
.y149{bottom:148.140060px;}
.y14e{bottom:151.740074px;}
.y23{bottom:155.340088px;}
.y1fe{bottom:156.060036px;}
.y1af{bottom:156.600083px;}
.ydb{bottom:158.040047px;}
.y4a{bottom:161.460091px;}
.y16f{bottom:164.340088px;}
.y1ff{bottom:164.520058px;}
.ya2{bottom:164.700096px;}
.yb9{bottom:165.960091px;}
.y105{bottom:166.500068px;}
.y276{bottom:167.040047px;}
.y8f{bottom:169.560036px;}
.y106{bottom:170.100083px;}
.y147{bottom:172.080093px;}
.y6c{bottom:173.880066px;}
.y2b6{bottom:177.120072px;}
.y22{bottom:179.640060px;}
.y1ca{bottom:183.060036px;}
.y1fd{bottom:184.140060px;}
.y1ae{bottom:184.680039px;}
.yda{bottom:186.120072px;}
.y275{bottom:186.300041px;}
.y146{bottom:188.640060px;}
.y49{bottom:189.900055px;}
.y16e{bottom:190.980079px;}
.y29a{bottom:191.160049px;}
.y148{bottom:191.880066px;}
.ya1{bottom:192.780052px;}
.yb8{bottom:194.400055px;}
.y277{bottom:196.020058px;}
.y8e{bottom:197.640060px;}
.y104{bottom:198.540047px;}
.y2b5{bottom:199.080093px;}
.y274{bottom:202.500068px;}
.y6b{bottom:206.820099px;}
.y145{bottom:208.440033px;}
.y1c9{bottom:211.500068px;}
.y21{bottom:212.220085px;}
.y1ad{bottom:212.940033px;}
.yd9{bottom:214.380066px;}
.y16d{bottom:217.620072px;}
.y299{bottom:217.980079px;}
.y18f{bottom:218.340088px;}
.y48{bottom:218.520058px;}
.ya0{bottom:220.860077px;}
.y273{bottom:221.760064px;}
.y278{bottom:225.180039px;}
.y8d{bottom:225.720085px;}
.y103{bottom:226.620072px;}
.yb7{bottom:227.340088px;}
.y142{bottom:232.200096px;}
.y6a{bottom:235.440033px;}
.y1c8{bottom:239.940033px;}
.y1fc{bottom:240.480079px;}
.y1ac{bottom:241.020058px;}
.y2b4{bottom:242.640060px;}
.y16c{bottom:244.440033px;}
.y298{bottom:244.620072px;}
.y271{bottom:244.980079px;}
.yd8{bottom:246.780052px;}
.y47{bottom:246.960091px;}
.y141{bottom:248.760064px;}
.y9f{bottom:248.940033px;}
.y18e{bottom:251.280052px;}
.y102{bottom:252.540047px;}
.y8c{bottom:253.980079px;}
.y20{bottom:255.960091px;}
.yb6{bottom:260.280052px;}
.y270{bottom:261.180039px;}
.y143{bottom:262.080093px;}
.y69{bottom:263.880066px;}
.y272{bottom:264.240074px;}
.y2b3{bottom:264.600083px;}
.y1c7{bottom:268.380066px;}
.y1fb{bottom:268.560036px;}
.y140{bottom:268.740074px;}
.y1ab{bottom:269.100083px;}
.y16b{bottom:271.080093px;}
.y297{bottom:271.260064px;}
.yd7{bottom:274.500068px;}
.y46{bottom:275.400055px;}
.y9e{bottom:277.020058px;}
.y101{bottom:278.460091px;}
.y18d{bottom:279.720085px;}
.y26f{bottom:280.440033px;}
.y1f{bottom:281.880066px;}
.y8b{bottom:282.060036px;}
.y2b2{bottom:286.380066px;}
.y13f{bottom:288.540047px;}
.yb5{bottom:288.720085px;}
.y1fa{bottom:296.640060px;}
.y1c6{bottom:296.820099px;}
.y1aa{bottom:297.180039px;}
.y16a{bottom:297.720085px;}
.y296{bottom:298.080093px;}
.yd6{bottom:298.620072px;}
.y144{bottom:302.040047px;}
.y26c{bottom:303.480079px;}
.y45{bottom:303.840088px;}
.y100{bottom:304.200096px;}
.y9d{bottom:305.280052px;}
.y1e{bottom:307.800041px;}
.y18c{bottom:308.160049px;}
.y8a{bottom:310.140060px;}
.y68{bottom:310.320099px;}
.y13d{bottom:312.300041px;}
.yb4{bottom:317.160049px;}
.yd5{bottom:318.960091px;}
.y26b{bottom:319.860077px;}
.y2b1{bottom:320.220085px;}
.y169{bottom:324.540047px;}
.y1f9{bottom:324.720085px;}
.y1a9{bottom:325.260064px;}
.y13c{bottom:328.860077px;}
.yff{bottom:330.120072px;}
.y44{bottom:332.280052px;}
.y26d{bottom:332.460091px;}
.y9c{bottom:333.360077px;}
.y1d{bottom:333.720085px;}
.y89{bottom:338.220085px;}
.yd4{bottom:339.120072px;}
.y18b{bottom:341.100083px;}
.y13e{bottom:342.000068px;}
.y1c5{bottom:343.440033px;}
.y13b{bottom:348.840088px;}
.yb3{bottom:350.100083px;}
.y168{bottom:351.180039px;}
.y295{bottom:351.360077px;}
.y1f8{bottom:352.800041px;}
.y1a8{bottom:353.520058px;}
.yfe{bottom:356.040047px;}
.y2d3{bottom:356.220085px;}
.y67{bottom:356.760064px;}
.y26a{bottom:358.380066px;}
.y1c{bottom:359.460091px;}
.y43{bottom:360.720085px;}
.y9b{bottom:361.440033px;}
.y1de{bottom:361.980079px;}
.y2b0{bottom:363.960091px;}
.y88{bottom:366.300041px;}
.y13a{bottom:368.640060px;}
.yd3{bottom:369.180039px;}
.y26e{bottom:371.520058px;}
.y1c4{bottom:371.880066px;}
.y167{bottom:377.820099px;}
.y294{bottom:378.180039px;}
.y1f7{bottom:381.060036px;}
.y268{bottom:381.420043px;}
.y1a7{bottom:381.600083px;}
.yfd{bottom:381.960091px;}
.y66{bottom:385.200096px;}
.y1b{bottom:385.380066px;}
.y1dd{bottom:386.820099px;}
.y18a{bottom:387.720085px;}
.y42{bottom:389.160049px;}
.y9a{bottom:389.520058px;}
.y2d2{bottom:390.060036px;}
.y137{bottom:392.400055px;}
.y87{bottom:394.560036px;}
.y267{bottom:397.620072px;}
.y2af{bottom:397.800041px;}
.yd2{bottom:399.240074px;}
.y1c3{bottom:400.320099px;}
.y166{bottom:404.640060px;}
.y293{bottom:404.820099px;}
.yfc{bottom:407.700096px;}
.yd1{bottom:408.960091px;}
.y1f6{bottom:409.140060px;}
.y1a6{bottom:409.680039px;}
.y269{bottom:410.400055px;}
.yb2{bottom:411.480079px;}
.y2d1{bottom:411.840088px;}
.y138{bottom:412.200096px;}
.y1dc{bottom:412.560036px;}
.y65{bottom:413.640060px;}
.y20c{bottom:415.260064px;}
.y189{bottom:416.160049px;}
.y266{bottom:416.880066px;}
.y41{bottom:417.600083px;}
.y2ae{bottom:419.580093px;}
.y86{bottom:422.640060px;}
.y1a{bottom:423.180039px;}
.y1c2{bottom:428.760064px;}
.y136{bottom:428.940033px;}
.y165{bottom:431.280052px;}
.y292{bottom:431.460091px;}
.y2d0{bottom:433.440033px;}
.yfb{bottom:433.620072px;}
.y265{bottom:436.320099px;}
.y1f5{bottom:437.220085px;}
.y1a5{bottom:437.760064px;}
.yb1{bottom:440.100083px;}
.y1db{bottom:440.820099px;}
.y64{bottom:442.080093px;}
.y139{bottom:442.440033px;}
.y188{bottom:444.600083px;}
.y99{bottom:445.860077px;}
.y40{bottom:446.040047px;}
.y20b{bottom:447.660049px;}
.yd0{bottom:450.180039px;}
.y85{bottom:450.720085px;}
.y134{bottom:452.700096px;}
.y2ad{bottom:453.420043px;}
.y2cf{bottom:455.220085px;}
.y1c1{bottom:457.200096px;}
.y164{bottom:457.920043px;}
.y291{bottom:458.280052px;}
.y262{bottom:459.360077px;}
.yfa{bottom:459.540047px;}
.y1f4{bottom:465.300041px;}
.y1a4{bottom:465.840088px;}
.y19{bottom:467.100083px;}
.yb0{bottom:468.540047px;}
.y1da{bottom:468.900055px;}
.y133{bottom:469.260064px;}
.y63{bottom:470.520058px;}
.y135{bottom:472.500068px;}
.y187{bottom:473.040047px;}
.y98{bottom:473.940033px;}
.y3f{bottom:474.660049px;}
.y261{bottom:475.560036px;}
.y263{bottom:478.620072px;}
.y84{bottom:478.800041px;}
.y20a{bottom:484.200096px;}
.y163{bottom:484.740074px;}
.y290{bottom:484.920043px;}
.yf9{bottom:485.280052px;}
.y1c0{bottom:485.640060px;}
.y2ac{bottom:487.260064px;}
.y132{bottom:489.060036px;}
.y18{bottom:493.020058px;}
.yae{bottom:493.380066px;}
.y1a3{bottom:494.100083px;}
.y260{bottom:494.820099px;}
.yaf{bottom:496.980079px;}
.y62{bottom:498.960091px;}
.y186{bottom:501.480079px;}
.y97{bottom:502.020058px;}
.ycf{bottom:502.740074px;}
.y3e{bottom:503.100083px;}
.y83{bottom:506.880066px;}
.y264{bottom:507.960091px;}
.yf8{bottom:511.200096px;}
.y162{bottom:511.380066px;}
.y28f{bottom:511.560036px;}
.y130{bottom:513.000068px;}
.y1bf{bottom:514.080093px;}
.y25e{bottom:518.040047px;}
.y17{bottom:518.760064px;}
.y209{bottom:520.920043px;}
.y2ab{bottom:521.100083px;}
.y1f3{bottom:521.640060px;}
.y1a2{bottom:522.180039px;}
.y1d9{bottom:525.060036px;}
.yad{bottom:526.500068px;}
.y61{bottom:527.400055px;}
.y185{bottom:529.920043px;}
.y96{bottom:530.100083px;}
.yce{bottom:530.820099px;}
.y12f{bottom:532.800041px;}
.y25d{bottom:534.240074px;}
.y82{bottom:535.140060px;}
.yf7{bottom:537.120072px;}
.y25f{bottom:537.300041px;}
.y161{bottom:538.020058px;}
.y28e{bottom:538.380066px;}
.y1be{bottom:542.520058px;}
.y16{bottom:544.680039px;}
.y12e{bottom:549.360077px;}
.y1f2{bottom:549.720085px;}
.y1d8{bottom:553.140060px;}
.y25b{bottom:553.500068px;}
.yac{bottom:554.940033px;}
.y60{bottom:556.020058px;}
.y2ce{bottom:556.740074px;}
.y208{bottom:557.640060px;}
.y95{bottom:558.180039px;}
.y184{bottom:558.360077px;}
.ycd{bottom:558.900055px;}
.y3d{bottom:559.980079px;}
.y1a1{bottom:562.320099px;}
.y131{bottom:562.860077px;}
.yf6{bottom:563.040047px;}
.y160{bottom:564.840088px;}
.y28d{bottom:565.020058px;}
.y81{bottom:568.080093px;}
.y15{bottom:570.600083px;}
.y12c{bottom:573.120072px;}
.y259{bottom:576.540047px;}
.y1f1{bottom:577.800041px;}
.y2cd{bottom:578.520058px;}
.yaa{bottom:579.780052px;}
.y1d7{bottom:581.220085px;}
.yab{bottom:583.380066px;}
.y5f{bottom:584.460091px;}
.y94{bottom:586.440033px;}
.y183{bottom:586.800041px;}
.ycc{bottom:587.160049px;}
.y3c{bottom:588.420043px;}
.yf5{bottom:588.780052px;}
.y1bd{bottom:588.960091px;}
.y12b{bottom:589.860077px;}
.y207{bottom:590.040047px;}
.y1a0{bottom:590.400055px;}
.y15f{bottom:591.480079px;}
.y28c{bottom:591.660049px;}
.y12d{bottom:593.100083px;}
.y258{bottom:595.800041px;}
.y14{bottom:596.520058px;}
.y2cc{bottom:600.480079px;}
.y80{bottom:601.020058px;}
.y1f0{bottom:605.880066px;}
.ya8{bottom:609.480079px;}
.y12a{bottom:609.660049px;}
.y257{bottom:612.180039px;}
.y5e{bottom:612.900055px;}
.ya9{bottom:613.080093px;}
.y93{bottom:614.520058px;}
.yf4{bottom:614.700096px;}
.ycb{bottom:615.240074px;}
.y3b{bottom:616.860077px;}
.y1bc{bottom:617.580093px;}
.y15e{bottom:618.120072px;}
.y19f{bottom:618.480079px;}
.y2cb{bottom:622.260064px;}
.y2aa{bottom:622.620072px;}
.y25a{bottom:625.140060px;}
.y128{bottom:633.420043px;}
.y1ef{bottom:633.960091px;}
.y255{bottom:635.220085px;}
.y13{bottom:637.200096px;}
.y1d6{bottom:637.560036px;}
.ya6{bottom:637.920043px;}
.yf3{bottom:640.620072px;}
.y5d{bottom:641.340088px;}
.y7f{bottom:642.600083px;}
.yca{bottom:643.320099px;}
.y182{bottom:643.860077px;}
.y2ca{bottom:644.040047px;}
.y15d{bottom:644.940033px;}
.y28b{bottom:645.120072px;}
.y3a{bottom:645.300041px;}
.y1bb{bottom:646.020058px;}
.y206{bottom:646.200096px;}
.y19e{bottom:646.560036px;}
.y23a{bottom:649.440033px;}
.y126{bottom:649.980079px;}
.y253{bottom:651.420043px;}
.y256{bottom:654.480079px;}
.y2a9{bottom:656.460091px;}
.y1ee{bottom:662.220085px;}
.y129{bottom:663.480079px;}
.y1d5{bottom:665.640060px;}
.y2c9{bottom:666.000068px;}
.y12{bottom:666.360077px;}
.yf2{bottom:666.540047px;}
.y5c{bottom:669.780052px;}
.ya5{bottom:669.960091px;}
.y7e{bottom:670.680039px;}
.yc9{bottom:671.400055px;}
.y15c{bottom:671.580093px;}
.y28a{bottom:671.760064px;}
.y181{bottom:672.300041px;}
.y39{bottom:673.740074px;}
.y125{bottom:673.920043px;}
.y205{bottom:674.460091px;}
.y19d{bottom:674.820099px;}
.y239{bottom:675.360077px;}
.y2c8{bottom:687.780052px;}
.y1ed{bottom:690.300076px;}
.y123{bottom:690.480079px;}
.y11{bottom:690.840054px;}
.y1ba{bottom:692.460056px;}
.yf1{bottom:693.180073px;}
.y1d4{bottom:693.720051px;}
.y5b{bottom:698.220051px;}
.y289{bottom:698.580059px;}
.y7d{bottom:698.760064px;}
.yc8{bottom:699.480079px;}
.y180{bottom:700.740074px;}
.y238{bottom:701.280052px;}
.y38{bottom:702.180073px;}
.y204{bottom:702.540081px;}
.y2c7{bottom:709.560070px;}
.y24f{bottom:710.100083px;}
.y121{bottom:714.240074px;}
.y19c{bottom:714.780052px;}
.y10{bottom:718.380066px;}
.yf0{bottom:719.640060px;}
.y1b9{bottom:720.900055px;}
.y1d3{bottom:721.980079px;}
.y251{bottom:723.060070px;}
.y2a8{bottom:724.140060px;}
.y15b{bottom:725.040081px;}
.y288{bottom:725.220051px;}
.y5a{bottom:726.660049px;}
.y7c{bottom:727.020058px;}
.y17f{bottom:729.180073px;}
.y203{bottom:730.620072px;}
.y37{bottom:730.800076px;}
.y2c6{bottom:731.340054px;}
.yc0{bottom:731.880066px;}
.yc7{bottom:732.600083px;}
.y24e{bottom:733.140060px;}
.yc1{bottom:741.780052px;}
.y19b{bottom:743.040081px;}
.y122{bottom:744.480079px;}
.y1ec{bottom:746.460056px;}
.y1b8{bottom:749.340054px;}
.y1d2{bottom:750.060070px;}
.yf{bottom:750.780052px;}
.ybf{bottom:751.680073px;}
.y287{bottom:751.860077px;}
.y237{bottom:752.940067px;}
.y2c5{bottom:753.300076px;}
.y120{bottom:754.740074px;}
.y59{bottom:755.100083px;}
.y17e{bottom:757.620072px;}
.y2a7{bottom:757.980079px;}
.y202{bottom:758.700061px;}
.y36{bottom:759.240074px;}
.yc6{bottom:765.540081px;}
.yef{bottom:770.040081px;}
.y19a{bottom:771.120072px;}
.y11f{bottom:771.300076px;}
.y24c{bottom:772.380066px;}
.y20f{bottom:773.100083px;}
.y1eb{bottom:774.540081px;}
.y2c4{bottom:775.080059px;}
.y1d1{bottom:778.140060px;}
.y15a{bottom:778.320065px;}
.y286{bottom:778.680073px;}
.y236{bottom:778.860077px;}
.y7b{bottom:783.180073px;}
.y58{bottom:783.540081px;}
.y17d{bottom:786.060070px;}
.y201{bottom:786.780052px;}
.y35{bottom:787.680073px;}
.y24b{bottom:788.580059px;}
.ye{bottom:789.660049px;}
.y2a6{bottom:791.820065px;}
.y11d{bottom:795.060070px;}
.y1b7{bottom:795.780052px;}
.y2c3{bottom:796.860077px;}
.yee{bottom:798.120072px;}
.y199{bottom:799.200061px;}
.y20e{bottom:800.640060px;}
.y24d{bottom:801.720051px;}
.y1ea{bottom:802.800076px;}
.y235{bottom:804.600083px;}
.y159{bottom:805.140060px;}
.y285{bottom:805.320065px;}
.y1d0{bottom:806.220051px;}
.y7a{bottom:811.260064px;}
.y24a{bottom:811.800076px;}
.yc5{bottom:811.980079px;}
.y57{bottom:812.160049px;}
.y200{bottom:813.060070px;}
.yd{bottom:814.140060px;}
.y17c{bottom:814.500068px;}
.y11c{bottom:814.860077px;}
.y34{bottom:816.120072px;}
.y2c2{bottom:818.820065px;}
.y2a5{bottom:825.660049px;}
.yed{bottom:826.200061px;}
.y198{bottom:827.280052px;}
.y249{bottom:828.000068px;}
.y234{bottom:830.520058px;}
.y1e9{bottom:830.880066px;}
.y11b{bottom:831.600083px;}
.y158{bottom:831.780052px;}
.y284{bottom:831.960056px;}
.y1cf{bottom:834.300076px;}
.yc{bottom:838.620072px;}
.y79{bottom:839.340054px;}
.yc4{bottom:840.420078px;}
.y56{bottom:840.600083px;}
.y1b6{bottom:842.220051px;}
.y33{bottom:844.560070px;}
.y11e{bottom:845.100083px;}
.y247{bottom:851.040081px;}
.yec{bottom:854.280052px;}
.y214{bottom:854.640060px;}
.y119{bottom:855.360077px;}
.ybe{bottom:856.440067px;}
.y283{bottom:858.780052px;}
.y1e8{bottom:858.960056px;}
.y2a4{bottom:859.500068px;}
.y1ce{bottom:862.200061px;}
.y2c1{bottom:862.380066px;}
.yb{bottom:862.920078px;}
.y213{bottom:864.360077px;}
.y157{bottom:865.260064px;}
.y78{bottom:867.600083px;}
.yc3{bottom:868.860077px;}
.y55{bottom:869.040081px;}
.y246{bottom:870.300076px;}
.y1b5{bottom:870.660049px;}
.y117{bottom:871.920078px;}
.y32{bottom:873.000068px;}
.y11a{bottom:875.160049px;}
.ybd{bottom:876.240074px;}
.yeb{bottom:880.560070px;}
.y233{bottom:882.360077px;}
.y2c0{bottom:884.340054px;}
.y282{bottom:885.420078px;}
.y245{bottom:886.500068px;}
.y1e7{bottom:887.040081px;}
.ya{bottom:887.400055px;}
.y116{bottom:891.720051px;}
.y197{bottom:892.980079px;}
.y2a3{bottom:893.340054px;}
.y17b{bottom:894.420078px;}
.y77{bottom:895.680073px;}
.yc2{bottom:897.300076px;}
.y54{bottom:897.480079px;}
.y228{bottom:898.380066px;}
.y1b4{bottom:899.100083px;}
.y248{bottom:899.640060px;}
.y31{bottom:901.440067px;}
.y156{bottom:901.980079px;}
.yea{bottom:905.580059px;}
.y2bf{bottom:906.120072px;}
.y1cd{bottom:907.920078px;}
.y232{bottom:908.100083px;}
.y243{bottom:909.720051px;}
.y9{bottom:911.880066px;}
.y281{bottom:912.060070px;}
.y1e6{bottom:915.120072px;}
.y114{bottom:915.660049px;}
.y196{bottom:921.420078px;}
.y155{bottom:922.320065px;}
.y76{bottom:923.760064px;}
.y53{bottom:925.920078px;}
.y2a2{bottom:927.180073px;}
.y1b3{bottom:927.720051px;}
.y244{bottom:928.980079px;}
.y30{bottom:929.880066px;}
.y17a{bottom:931.140060px;}
.y227{bottom:931.500068px;}
.y112{bottom:932.220051px;}
.ybc{bottom:933.300076px;}
.y231{bottom:934.020058px;}
.y8{bottom:936.360077px;}
.ye9{bottom:938.520058px;}
.y280{bottom:938.880066px;}
.ya3{bottom:939.060070px;}
.y2be{bottom:939.960056px;}
.y226{bottom:941.220051px;}
.y1e5{bottom:943.380066px;}
.y179{bottom:945.180073px;}
.y115{bottom:945.720051px;}
.ye8{bottom:948.420078px;}
.y195{bottom:949.860077px;}
.y75{bottom:951.840054px;}
.ybb{bottom:953.100083px;}
.y154{bottom:953.460056px;}
.y52{bottom:954.360077px;}
.y111{bottom:955.980079px;}
.y1b2{bottom:956.160049px;}
.y2f{bottom:958.320065px;}
.y230{bottom:959.940067px;}
.y7{bottom:960.840054px;}
.y2a1{bottom:961.020058px;}
.y178{bottom:962.280053px;}
.y1cc{bottom:964.800076px;}
.y27f{bottom:965.520058px;}
.y212{bottom:966.060070px;}
.y225{bottom:966.420078px;}
.y241{bottom:968.220051px;}
.y1e4{bottom:971.460056px;}
.y10f{bottom:972.720051px;}
.ye7{bottom:973.440067px;}
.y2bd{bottom:973.800076px;}
.y194{bottom:978.300058px;}
.y74{bottom:979.920061px;}
.y153{bottom:981.900072px;}
.y51{bottom:982.800058px;}
.y222{bottom:983.880066px;}
.y1b1{bottom:984.600065px;}
.y6{bottom:985.320065px;}
.y22f{bottom:985.860060px;}
.y224{bottom:986.220068px;}
.y2e{bottom:986.760064px;}
.y21c{bottom:988.740074px;}
.y177{bottom:989.280069px;}
.ye4{bottom:991.080059px;}
.y27e{bottom:992.160067px;}
.ye6{bottom:993.240074px;}
.y2a0{bottom:994.860060px;}
.y2bc{bottom:995.580059px;}
.y10d{bottom:996.480063px;}
.y242{bottom:997.560070px;}
.y1e3{bottom:999.540064px;}
.y10c{bottom:1006.380066px;}
.y193{bottom:1006.740074px;}
.y23f{bottom:1007.640060px;}
.y73{bottom:1008.180073px;}
.y21b{bottom:1008.900072px;}
.y5{bottom:1009.620072px;}
.y152{bottom:1010.340070px;}
.y50{bottom:1011.240074px;}
.y22e{bottom:1011.600065px;}
.y221{bottom:1014.300058px;}
.y2d{bottom:1015.380066px;}
.y176{bottom:1015.920061px;}
.y10e{bottom:1016.280069px;}
.y223{bottom:1016.640060px;}
.y2bb{bottom:1017.540064px;}
.y27d{bottom:1018.980063px;}
.ye3{bottom:1021.500068px;}
.y1cb{bottom:1021.680073px;}
.ye5{bottom:1023.840070px;}
.y220{bottom:1024.380066px;}
.y1e2{bottom:1027.620072px;}
.y29f{bottom:1028.700061px;}
.y21a{bottom:1029.240074px;}
.ye2{bottom:1031.580059px;}
.y4{bottom:1034.100065px;}
.y192{bottom:1035.180073px;}
.y72{bottom:1036.260064px;}
.y22d{bottom:1037.520058px;}
.y151{bottom:1038.780069px;}
.y4f{bottom:1039.680073px;}
.y211{bottom:1040.940067px;}
.y175{bottom:1042.560070px;}
.y10b{bottom:1042.920061px;}
.y2c{bottom:1043.820065px;}
.y27c{bottom:1045.620072px;}
.y23c{bottom:1046.880066px;}
.y219{bottom:1049.400072px;}
.y2ba{bottom:1051.380066px;}
.y1e1{bottom:1055.700061px;}
.y21f{bottom:1056.600065px;}
.y3{bottom:1058.580059px;}
.y210{bottom:1060.200061px;}
.y20d{bottom:1063.080059px;}
.y22c{bottom:1063.440067px;}
.ye1{bottom:1063.800058px;}
.y71{bottom:1064.340070px;}
.y23d{bottom:1066.140060px;}
.y109{bottom:1066.680073px;}
.y4e{bottom:1068.300058px;}
.y218{bottom:1069.020058px;}
.y174{bottom:1069.380066px;}
.y2b{bottom:1072.260064px;}
.ye0{bottom:1073.880066px;}
.y28{bottom:1074.060070px;}
.y27a{bottom:1075.320065px;}
.y2{bottom:1083.060070px;}
.y29e{bottom:1083.240074px;}
.y1e0{bottom:1083.960074px;}
.y217{bottom:1089.180073px;}
.y22b{bottom:1089.360060px;}
.y23b{bottom:1092.060070px;}
.y279{bottom:1092.240074px;}
.y70{bottom:1092.420061px;}
.y21e{bottom:1092.780069px;}
.y173{bottom:1096.020058px;}
.y4d{bottom:1096.740074px;}
.y27{bottom:1098.360060px;}
.y150{bottom:1098.540064px;}
.y216{bottom:1098.900072px;}
.ydf{bottom:1099.980063px;}
.y2a{bottom:1100.700061px;}
.y21d{bottom:1102.680073px;}
.y29d{bottom:1105.380066px;}
.y27b{bottom:1105.920061px;}
.y1{bottom:1107.540064px;}
.yde{bottom:1109.700061px;}
.y22a{bottom:1115.820065px;}
.y1df{bottom:1116.360060px;}
.y2b9{bottom:1119.060070px;}
.y6f{bottom:1120.500068px;}
.y29{bottom:1122.480063px;}
.y172{bottom:1122.660067px;}
.y26{bottom:1122.840063px;}
.y14f{bottom:1123.020066px;}
.y4c{bottom:1125.180064px;}
.y215{bottom:1140.300067px;}
.y29c{bottom:1140.840063px;}
.y229{bottom:1142.460065px;}
.ha{height:16.199958px;}
.hc{height:16.199960px;}
.h14{height:16.199993px;}
.hd{height:16.200027px;}
.hb{height:16.200028px;}
.h1a{height:16.739971px;}
.h1b{height:16.739972px;}
.h18{height:16.740004px;}
.h1d{height:16.740006px;}
.h16{height:16.740023px;}
.h6{height:34.885794px;}
.h2d{height:42.460193px;}
.h30{height:42.488670px;}
.h5{height:43.216744px;}
.h38{height:43.450191px;}
.h2{height:43.508552px;}
.h12{height:43.537733px;}
.h36{height:43.625275px;}
.h29{height:46.653958px;}
.h28{height:47.417870px;}
.h3a{height:47.547250px;}
.h7{height:47.611941px;}
.h2a{height:47.744033px;}
.h39{height:48.161807px;}
.h4{height:48.226497px;}
.h9{height:48.258842px;}
.h37{height:48.355877px;}
.he{height:49.220599px;}
.h3{height:53.575923px;}
.h8{height:59.385546px;}
.h2e{height:80.620175px;}
.h33{height:80.648580px;}
.h31{height:80.648720px;}
.h2f{height:81.340188px;}
.h32{height:81.368733px;}
.h34{height:81.368738px;}
.hf{height:82.417526px;}
.h2c{height:82.417728px;}
.h2b{height:82.417733px;}
.h13{height:82.417764px;}
.h11{height:82.417796px;}
.h10{height:82.417800px;}
.h1e{height:83.108494px;}
.h1f{height:83.108498px;}
.h15{height:83.108566px;}
.h17{height:83.137679px;}
.h19{height:83.137818px;}
.h1c{height:83.137953px;}
.h24{height:96.817575px;}
.h23{height:96.817580px;}
.h20{height:96.817715px;}
.h21{height:96.817850px;}
.h22{height:96.817854px;}
.h35{height:97.537733px;}
.h27{height:106.855905px;}
.h25{height:106.855973px;}
.h26{height:107.575923px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:13.500000px;}
.w2{width:13.680038px;}
.w6{width:291.960005px;}
.w4{width:299.880015px;}
.w5{width:696.780000px;}
.w7{width:696.960005px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:75.239997px;}
.x21{left:92.340002px;}
.x28{left:96.480002px;}
.x6{left:102.239997px;}
.x1c{left:104.579999px;}
.x49{left:127.620002px;}
.x12{left:130.140000px;}
.x2a{left:144.900003px;}
.x4a{left:160.199993px;}
.x43{left:161.280001px;}
.x4c{left:163.620002px;}
.x45{left:165.780001px;}
.x19{left:168.840002px;}
.x3f{left:173.340002px;}
.x4b{left:181.620002px;}
.x35{left:206.280001px;}
.x3{left:213.479994px;}
.x1d{left:218.520006px;}
.x36{left:223.740006px;}
.x23{left:229.139992px;}
.xf{left:242.819996px;}
.x18{left:264.060001px;}
.x1a{left:271.080008px;}
.x29{left:279.360008px;}
.x14{left:284.759994px;}
.xe{left:299.160015px;}
.x46{left:302.579990px;}
.xd{left:306.540012px;}
.x32{left:316.439999px;}
.x13{left:331.019989px;}
.x3c{left:337.680005px;}
.x3d{left:344.699993px;}
.x33{left:356.939999px;}
.x37{left:358.379998px;}
.x31{left:362.519989px;}
.x15{left:365.399987px;}
.x30{left:369.720017px;}
.xc{left:373.139992px;}
.x1b{left:379.620002px;}
.x7{left:412.740006px;}
.x22{left:414.180005px;}
.x10{left:423.180005px;}
.x2f{left:434.699993px;}
.x38{left:438.839985px;}
.x3e{left:453.240006px;}
.xb{left:470.699993px;}
.x2b{left:473.040012px;}
.x44{left:474.300007px;}
.x17{left:476.639992px;}
.x1e{left:486.540012px;}
.xa{left:497.519989px;}
.x24{left:498.779983px;}
.x34{left:511.199993px;}
.x8{left:515.160015px;}
.x2e{left:529.379998px;}
.x9{left:541.800007px;}
.x40{left:544.680005px;}
.x3b{left:550.079990px;}
.x2d{left:555.480011px;}
.x2c{left:572.579990px;}
.x11{left:577.440033px;}
.x20{left:598.500000px;}
.x1f{left:603.899987px;}
.x26{left:614.159981px;}
.x39{left:615.960023px;}
.x25{left:619.559967px;}
.x42{left:653.759994px;}
.x41{left:658.980011px;}
.x16{left:681.480011px;}
.x48{left:687.600014px;}
.x47{left:693.000000px;}
.x3a{left:755.100014px;}
.x27{left:847.440033px;}
.x1{left:858.059967px;}
.x2{left:868.679970px;}
.x4{left:879.299973px;}
@media print{
.v7{vertical-align:-44.799928pt;}
.v3{vertical-align:-42.239988pt;}
.v4{vertical-align:-35.840024pt;}
.v5{vertical-align:-8.959960pt;}
.v6{vertical-align:-1.280032pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:34.559816pt;}
.v8{vertical-align:47.359984pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.008970pt;}
.ls7{letter-spacing:0.047394pt;}
.ls1{letter-spacing:0.048992pt;}
.lsa{letter-spacing:0.159444pt;}
.ls4{letter-spacing:0.232157pt;}
.ls5{letter-spacing:0.287456pt;}
.ls9{letter-spacing:331.239742pt;}
.ls3{letter-spacing:341.125174pt;}
.ls8{letter-spacing:444.064204pt;}
.ls2{letter-spacing:444.704160pt;}
.ws33{word-spacing:-58.882400pt;}
.ws0{word-spacing:-42.881600pt;}
.ws1c{word-spacing:-16.319395pt;}
.ws4{word-spacing:-16.310425pt;}
.ws1{word-spacing:-14.714794pt;}
.ws5{word-spacing:-14.464543pt;}
.ws25{word-spacing:-14.360234pt;}
.ws1d{word-spacing:-14.030622pt;}
.ws34{word-spacing:-13.307422pt;}
.ws32{word-spacing:-13.280500pt;}
.ws3{word-spacing:-10.720400pt;}
.ws2{word-spacing:0.000000pt;}
.wsc{word-spacing:83.242174pt;}
.ws22{word-spacing:83.773394pt;}
.ws16{word-spacing:93.784714pt;}
.ws2d{word-spacing:93.893514pt;}
.ws24{word-spacing:94.175691pt;}
.wse{word-spacing:97.631224pt;}
.wsa{word-spacing:98.116334pt;}
.ws20{word-spacing:98.647554pt;}
.ws2b{word-spacing:106.661891pt;}
.ws14{word-spacing:109.747448pt;}
.ws9{word-spacing:114.584154pt;}
.ws29{word-spacing:114.933714pt;}
.ws1f{word-spacing:115.646594pt;}
.ws12{word-spacing:117.240254pt;}
.ws2c{word-spacing:134.923389pt;}
.ws26{word-spacing:135.287388pt;}
.ws15{word-spacing:138.701883pt;}
.wsf{word-spacing:139.038665pt;}
.ws19{word-spacing:149.644674pt;}
.ws30{word-spacing:150.175894pt;}
.ws17{word-spacing:152.478849pt;}
.ws2e{word-spacing:153.118741pt;}
.ws7{word-spacing:160.126742pt;}
.ws1a{word-spacing:165.050054pt;}
.ws31{word-spacing:165.581274pt;}
.ws2f{word-spacing:169.392804pt;}
.ws18{word-spacing:169.831034pt;}
.ws1b{word-spacing:170.061751pt;}
.ws6{word-spacing:190.061915pt;}
.ws8{word-spacing:226.671574pt;}
.ws28{word-spacing:227.621851pt;}
.ws1e{word-spacing:230.390114pt;}
.ws2a{word-spacing:233.381863pt;}
.ws11{word-spacing:234.547500pt;}
.ws13{word-spacing:240.307508pt;}
.ws27{word-spacing:325.465526pt;}
.ws10{word-spacing:335.869415pt;}
.ws23{word-spacing:432.058407pt;}
.wsd{word-spacing:432.698427pt;}
.ws21{word-spacing:544.625170pt;}
.wsb{word-spacing:545.265190pt;}
._16{margin-left:-2923.202284pt;}
._6{margin-left:-2901.761484pt;}
._0{margin-left:-2880.320684pt;}
._14{margin-left:-4.170760pt;}
._7{margin-left:-2.878756pt;}
._8{margin-left:-1.934180pt;}
._5{margin-left:-0.898094pt;}
._2{width:1.265175pt;}
._12{width:2.198107pt;}
._c{width:3.319502pt;}
._10{width:4.799959pt;}
._4{width:6.151984pt;}
._d{width:7.754982pt;}
._b{width:9.125986pt;}
._15{width:10.239619pt;}
._3{width:11.801177pt;}
._1{width:12.935414pt;}
._11{width:14.014115pt;}
._a{width:15.770801pt;}
._9{width:16.679893pt;}
._52{width:17.900039pt;}
._7a{width:19.384591pt;}
._19{width:20.432193pt;}
._1a{width:21.332450pt;}
._17{width:22.402223pt;}
._18{width:23.561930pt;}
._e{width:28.736358pt;}
._f{width:29.804416pt;}
._54{width:30.760682pt;}
._78{width:32.521933pt;}
._77{width:33.694670pt;}
._81{width:36.954233pt;}
._50{width:37.987833pt;}
._4f{width:38.929088pt;}
._1d{width:43.095769pt;}
._1e{width:44.234738pt;}
._1c{width:46.442847pt;}
._1b{width:47.567089pt;}
._7f{width:53.128532pt;}
._13{width:54.103035pt;}
._4b{width:55.319631pt;}
._4d{width:57.469081pt;}
._79{width:64.331792pt;}
._82{width:65.492242pt;}
._53{width:66.810045pt;}
._7e{width:69.380797pt;}
._7d{width:70.279526pt;}
._4a{width:71.661578pt;}
._49{width:72.661143pt;}
._2f{width:84.008542pt;}
._1f{width:104.265639pt;}
._2e{width:106.792236pt;}
._31{width:107.730586pt;}
._74{width:117.241084pt;}
._68{width:119.650457pt;}
._2b{width:122.507425pt;}
._5d{width:125.676899pt;}
._30{width:127.307910pt;}
._2a{width:128.244186pt;}
._58{width:132.722140pt;}
._2d{width:137.797638pt;}
._80{width:149.445224pt;}
._27{width:151.663310pt;}
._4c{width:153.379533pt;}
._51{width:158.442798pt;}
._28{width:159.577658pt;}
._71{width:181.817930pt;}
._6e{width:182.929757pt;}
._2c{width:183.841778pt;}
._5b{width:185.051700pt;}
._62{width:189.829392pt;}
._89{width:191.171614pt;}
._26{width:193.804398pt;}
._5f{width:200.338625pt;}
._73{width:203.514324pt;}
._8a{width:204.419888pt;}
._5c{width:209.793303pt;}
._4e{width:211.155092pt;}
._45{width:215.833856pt;}
._67{width:218.377901pt;}
._23{width:241.447583pt;}
._20{width:245.492948pt;}
._22{width:263.600287pt;}
._6d{width:265.171951pt;}
._70{width:280.808910pt;}
._72{width:286.565591pt;}
._6c{width:289.620729pt;}
._7b{width:297.243528pt;}
._25{width:298.235416pt;}
._40{width:305.501302pt;}
._3d{width:308.416994pt;}
._21{width:311.681715pt;}
._5a{width:315.773353pt;}
._83{width:316.887670pt;}
._57{width:318.799647pt;}
._76{width:327.707543pt;}
._66{width:330.683620pt;}
._87{width:331.612217pt;}
._24{width:346.211015pt;}
._61{width:357.055995pt;}
._29{width:363.703117pt;}
._6b{width:386.648269pt;}
._88{width:387.602805pt;}
._59{width:413.358052pt;}
._56{width:417.722979pt;}
._64{width:421.938293pt;}
._86{width:422.956119pt;}
._75{width:426.049230pt;}
._65{width:429.411064pt;}
._5e{width:437.274365pt;}
._84{width:439.033409pt;}
._60{width:455.278158pt;}
._85{width:456.306152pt;}
._6a{width:470.326625pt;}
._37{width:473.705475pt;}
._42{width:485.728892pt;}
._41{width:491.360654pt;}
._7c{width:518.533180pt;}
._33{width:519.497469pt;}
._3e{width:521.205880pt;}
._6f{width:526.606479pt;}
._48{width:540.569057pt;}
._3b{width:545.643660pt;}
._43{width:548.713739pt;}
._63{width:553.262725pt;}
._69{width:568.181914pt;}
._36{width:571.186005pt;}
._34{width:572.449935pt;}
._3c{width:574.009978pt;}
._55{width:579.711463pt;}
._3f{width:590.335033pt;}
._44{width:604.704327pt;}
._39{width:613.673852pt;}
._35{width:633.975379pt;}
._32{width:640.306234pt;}
._38{width:644.590441pt;}
._46{width:658.075336pt;}
._3a{width:659.509630pt;}
._47{width:681.776671pt;}
.fs2{font-size:34.561320pt;}
.fs0{font-size:42.881600pt;}
.fs5{font-size:48.002000pt;}
.fs8{font-size:51.842000pt;}
.fs1{font-size:53.122000pt;}
.fs6{font-size:56.962400pt;}
.fs3{font-size:58.882400pt;}
.fs7{font-size:62.082400pt;}
.fs4{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y250{bottom:2.719970pt;}
.y25c{bottom:2.719971pt;}
.y23e{bottom:2.720001pt;}
.y240{bottom:2.720002pt;}
.y252{bottom:2.720031pt;}
.y254{bottom:2.720032pt;}
.y118{bottom:2.879974pt;}
.y124{bottom:2.879975pt;}
.y113{bottom:2.880004pt;}
.y127{bottom:2.880005pt;}
.y110{bottom:2.880020pt;}
.y10a{bottom:3.199997pt;}
.ya4{bottom:3.200012pt;}
.ya7{bottom:3.200013pt;}
.y25{bottom:75.040039pt;}
.y92{bottom:75.680054pt;}
.y14c{bottom:81.760010pt;}
.y191{bottom:88.960083pt;}
.y1b0{bottom:89.280030pt;}
.ydd{bottom:93.920044pt;}
.y6e{bottom:96.320069pt;}
.y108{bottom:96.960083pt;}
.y171{bottom:98.560059pt;}
.y2b8{bottom:99.200074pt;}
.y14b{bottom:99.360047pt;}
.y91{bottom:100.800049pt;}
.y24{bottom:102.240052pt;}
.y14d{bottom:108.160035pt;}
.y14a{bottom:114.080079pt;}
.y190{bottom:114.240052pt;}
.ydc{bottom:115.520081pt;}
.yba{bottom:118.080079pt;}
.y4b{bottom:118.240052pt;}
.y2b7{bottom:118.720032pt;}
.y6d{bottom:121.280030pt;}
.y107{bottom:121.920044pt;}
.y170{bottom:122.240052pt;}
.y90{bottom:125.760071pt;}
.y29b{bottom:130.720032pt;}
.y149{bottom:131.680054pt;}
.y14e{bottom:134.880066pt;}
.y23{bottom:138.080079pt;}
.y1fe{bottom:138.720032pt;}
.y1af{bottom:139.200074pt;}
.ydb{bottom:140.480042pt;}
.y4a{bottom:143.520081pt;}
.y16f{bottom:146.080079pt;}
.y1ff{bottom:146.240052pt;}
.ya2{bottom:146.400086pt;}
.yb9{bottom:147.520081pt;}
.y105{bottom:148.000061pt;}
.y276{bottom:148.480042pt;}
.y8f{bottom:150.720032pt;}
.y106{bottom:151.200074pt;}
.y147{bottom:152.960083pt;}
.y6c{bottom:154.560059pt;}
.y2b6{bottom:157.440064pt;}
.y22{bottom:159.680054pt;}
.y1ca{bottom:162.720032pt;}
.y1fd{bottom:163.680054pt;}
.y1ae{bottom:164.160035pt;}
.yda{bottom:165.440064pt;}
.y275{bottom:165.600037pt;}
.y146{bottom:167.680054pt;}
.y49{bottom:168.800049pt;}
.y16e{bottom:169.760071pt;}
.y29a{bottom:169.920044pt;}
.y148{bottom:170.560059pt;}
.ya1{bottom:171.360047pt;}
.yb8{bottom:172.800049pt;}
.y277{bottom:174.240052pt;}
.y8e{bottom:175.680054pt;}
.y104{bottom:176.480042pt;}
.y2b5{bottom:176.960083pt;}
.y274{bottom:180.000061pt;}
.y6b{bottom:183.840088pt;}
.y145{bottom:185.280030pt;}
.y1c9{bottom:188.000061pt;}
.y21{bottom:188.640076pt;}
.y1ad{bottom:189.280030pt;}
.yd9{bottom:190.560059pt;}
.y16d{bottom:193.440064pt;}
.y299{bottom:193.760071pt;}
.y18f{bottom:194.080079pt;}
.y48{bottom:194.240052pt;}
.ya0{bottom:196.320069pt;}
.y273{bottom:197.120057pt;}
.y278{bottom:200.160035pt;}
.y8d{bottom:200.640076pt;}
.y103{bottom:201.440064pt;}
.yb7{bottom:202.080079pt;}
.y142{bottom:206.400086pt;}
.y6a{bottom:209.280030pt;}
.y1c8{bottom:213.280030pt;}
.y1fc{bottom:213.760071pt;}
.y1ac{bottom:214.240052pt;}
.y2b4{bottom:215.680054pt;}
.y16c{bottom:217.280030pt;}
.y298{bottom:217.440064pt;}
.y271{bottom:217.760071pt;}
.yd8{bottom:219.360047pt;}
.y47{bottom:219.520081pt;}
.y141{bottom:221.120057pt;}
.y9f{bottom:221.280030pt;}
.y18e{bottom:223.360047pt;}
.y102{bottom:224.480042pt;}
.y8c{bottom:225.760071pt;}
.y20{bottom:227.520081pt;}
.yb6{bottom:231.360047pt;}
.y270{bottom:232.160035pt;}
.y143{bottom:232.960083pt;}
.y69{bottom:234.560059pt;}
.y272{bottom:234.880066pt;}
.y2b3{bottom:235.200074pt;}
.y1c7{bottom:238.560059pt;}
.y1fb{bottom:238.720032pt;}
.y140{bottom:238.880066pt;}
.y1ab{bottom:239.200074pt;}
.y16b{bottom:240.960083pt;}
.y297{bottom:241.120057pt;}
.yd7{bottom:244.000061pt;}
.y46{bottom:244.800049pt;}
.y9e{bottom:246.240052pt;}
.y101{bottom:247.520081pt;}
.y18d{bottom:248.640076pt;}
.y26f{bottom:249.280030pt;}
.y1f{bottom:250.560059pt;}
.y8b{bottom:250.720032pt;}
.y2b2{bottom:254.560059pt;}
.y13f{bottom:256.480042pt;}
.yb5{bottom:256.640076pt;}
.y1fa{bottom:263.680054pt;}
.y1c6{bottom:263.840088pt;}
.y1aa{bottom:264.160035pt;}
.y16a{bottom:264.640076pt;}
.y296{bottom:264.960083pt;}
.yd6{bottom:265.440064pt;}
.y144{bottom:268.480042pt;}
.y26c{bottom:269.760071pt;}
.y45{bottom:270.080079pt;}
.y100{bottom:270.400086pt;}
.y9d{bottom:271.360047pt;}
.y1e{bottom:273.600037pt;}
.y18c{bottom:273.920044pt;}
.y8a{bottom:275.680054pt;}
.y68{bottom:275.840088pt;}
.y13d{bottom:277.600037pt;}
.yb4{bottom:281.920044pt;}
.yd5{bottom:283.520081pt;}
.y26b{bottom:284.320069pt;}
.y2b1{bottom:284.640076pt;}
.y169{bottom:288.480042pt;}
.y1f9{bottom:288.640076pt;}
.y1a9{bottom:289.120057pt;}
.y13c{bottom:292.320069pt;}
.yff{bottom:293.440064pt;}
.y44{bottom:295.360047pt;}
.y26d{bottom:295.520081pt;}
.y9c{bottom:296.320069pt;}
.y1d{bottom:296.640076pt;}
.y89{bottom:300.640076pt;}
.yd4{bottom:301.440064pt;}
.y18b{bottom:303.200074pt;}
.y13e{bottom:304.000061pt;}
.y1c5{bottom:305.280030pt;}
.y13b{bottom:310.080079pt;}
.yb3{bottom:311.200074pt;}
.y168{bottom:312.160035pt;}
.y295{bottom:312.320069pt;}
.y1f8{bottom:313.600037pt;}
.y1a8{bottom:314.240052pt;}
.yfe{bottom:316.480042pt;}
.y2d3{bottom:316.640076pt;}
.y67{bottom:317.120057pt;}
.y26a{bottom:318.560059pt;}
.y1c{bottom:319.520081pt;}
.y43{bottom:320.640076pt;}
.y9b{bottom:321.280030pt;}
.y1de{bottom:321.760071pt;}
.y2b0{bottom:323.520081pt;}
.y88{bottom:325.600037pt;}
.y13a{bottom:327.680054pt;}
.yd3{bottom:328.160035pt;}
.y26e{bottom:330.240052pt;}
.y1c4{bottom:330.560059pt;}
.y167{bottom:335.840088pt;}
.y294{bottom:336.160035pt;}
.y1f7{bottom:338.720032pt;}
.y268{bottom:339.040039pt;}
.y1a7{bottom:339.200074pt;}
.yfd{bottom:339.520081pt;}
.y66{bottom:342.400086pt;}
.y1b{bottom:342.560059pt;}
.y1dd{bottom:343.840088pt;}
.y18a{bottom:344.640076pt;}
.y42{bottom:345.920044pt;}
.y9a{bottom:346.240052pt;}
.y2d2{bottom:346.720032pt;}
.y137{bottom:348.800049pt;}
.y87{bottom:350.720032pt;}
.y267{bottom:353.440064pt;}
.y2af{bottom:353.600037pt;}
.yd2{bottom:354.880066pt;}
.y1c3{bottom:355.840088pt;}
.y166{bottom:359.680054pt;}
.y293{bottom:359.840088pt;}
.yfc{bottom:362.400086pt;}
.yd1{bottom:363.520081pt;}
.y1f6{bottom:363.680054pt;}
.y1a6{bottom:364.160035pt;}
.y269{bottom:364.800049pt;}
.yb2{bottom:365.760071pt;}
.y2d1{bottom:366.080079pt;}
.y138{bottom:366.400086pt;}
.y1dc{bottom:366.720032pt;}
.y65{bottom:367.680054pt;}
.y20c{bottom:369.120057pt;}
.y189{bottom:369.920044pt;}
.y266{bottom:370.560059pt;}
.y41{bottom:371.200074pt;}
.y2ae{bottom:372.960083pt;}
.y86{bottom:375.680054pt;}
.y1a{bottom:376.160035pt;}
.y1c2{bottom:381.120057pt;}
.y136{bottom:381.280030pt;}
.y165{bottom:383.360047pt;}
.y292{bottom:383.520081pt;}
.y2d0{bottom:385.280030pt;}
.yfb{bottom:385.440064pt;}
.y265{bottom:387.840088pt;}
.y1f5{bottom:388.640076pt;}
.y1a5{bottom:389.120057pt;}
.yb1{bottom:391.200074pt;}
.y1db{bottom:391.840088pt;}
.y64{bottom:392.960083pt;}
.y139{bottom:393.280030pt;}
.y188{bottom:395.200074pt;}
.y99{bottom:396.320069pt;}
.y40{bottom:396.480042pt;}
.y20b{bottom:397.920044pt;}
.yd0{bottom:400.160035pt;}
.y85{bottom:400.640076pt;}
.y134{bottom:402.400086pt;}
.y2ad{bottom:403.040039pt;}
.y2cf{bottom:404.640076pt;}
.y1c1{bottom:406.400086pt;}
.y164{bottom:407.040039pt;}
.y291{bottom:407.360047pt;}
.y262{bottom:408.320069pt;}
.yfa{bottom:408.480042pt;}
.y1f4{bottom:413.600037pt;}
.y1a4{bottom:414.080079pt;}
.y19{bottom:415.200074pt;}
.yb0{bottom:416.480042pt;}
.y1da{bottom:416.800049pt;}
.y133{bottom:417.120057pt;}
.y63{bottom:418.240052pt;}
.y135{bottom:420.000061pt;}
.y187{bottom:420.480042pt;}
.y98{bottom:421.280030pt;}
.y3f{bottom:421.920044pt;}
.y261{bottom:422.720032pt;}
.y263{bottom:425.440064pt;}
.y84{bottom:425.600037pt;}
.y20a{bottom:430.400086pt;}
.y163{bottom:430.880066pt;}
.y290{bottom:431.040039pt;}
.yf9{bottom:431.360047pt;}
.y1c0{bottom:431.680054pt;}
.y2ac{bottom:433.120057pt;}
.y132{bottom:434.720032pt;}
.y18{bottom:438.240052pt;}
.yae{bottom:438.560059pt;}
.y1a3{bottom:439.200074pt;}
.y260{bottom:439.840088pt;}
.yaf{bottom:441.760071pt;}
.y62{bottom:443.520081pt;}
.y186{bottom:445.760071pt;}
.y97{bottom:446.240052pt;}
.ycf{bottom:446.880066pt;}
.y3e{bottom:447.200074pt;}
.y83{bottom:450.560059pt;}
.y264{bottom:451.520081pt;}
.yf8{bottom:454.400086pt;}
.y162{bottom:454.560059pt;}
.y28f{bottom:454.720032pt;}
.y130{bottom:456.000061pt;}
.y1bf{bottom:456.960083pt;}
.y25e{bottom:460.480042pt;}
.y17{bottom:461.120057pt;}
.y209{bottom:463.040039pt;}
.y2ab{bottom:463.200074pt;}
.y1f3{bottom:463.680054pt;}
.y1a2{bottom:464.160035pt;}
.y1d9{bottom:466.720032pt;}
.yad{bottom:468.000061pt;}
.y61{bottom:468.800049pt;}
.y185{bottom:471.040039pt;}
.y96{bottom:471.200074pt;}
.yce{bottom:471.840088pt;}
.y12f{bottom:473.600037pt;}
.y25d{bottom:474.880066pt;}
.y82{bottom:475.680054pt;}
.yf7{bottom:477.440064pt;}
.y25f{bottom:477.600037pt;}
.y161{bottom:478.240052pt;}
.y28e{bottom:478.560059pt;}
.y1be{bottom:482.240052pt;}
.y16{bottom:484.160035pt;}
.y12e{bottom:488.320069pt;}
.y1f2{bottom:488.640076pt;}
.y1d8{bottom:491.680054pt;}
.y25b{bottom:492.000061pt;}
.yac{bottom:493.280030pt;}
.y60{bottom:494.240052pt;}
.y2ce{bottom:494.880066pt;}
.y208{bottom:495.680054pt;}
.y95{bottom:496.160035pt;}
.y184{bottom:496.320069pt;}
.ycd{bottom:496.800049pt;}
.y3d{bottom:497.760071pt;}
.y1a1{bottom:499.840088pt;}
.y131{bottom:500.320069pt;}
.yf6{bottom:500.480042pt;}
.y160{bottom:502.080079pt;}
.y28d{bottom:502.240052pt;}
.y81{bottom:504.960083pt;}
.y15{bottom:507.200074pt;}
.y12c{bottom:509.440064pt;}
.y259{bottom:512.480042pt;}
.y1f1{bottom:513.600037pt;}
.y2cd{bottom:514.240052pt;}
.yaa{bottom:515.360047pt;}
.y1d7{bottom:516.640076pt;}
.yab{bottom:518.560059pt;}
.y5f{bottom:519.520081pt;}
.y94{bottom:521.280030pt;}
.y183{bottom:521.600037pt;}
.ycc{bottom:521.920044pt;}
.y3c{bottom:523.040039pt;}
.yf5{bottom:523.360047pt;}
.y1bd{bottom:523.520081pt;}
.y12b{bottom:524.320069pt;}
.y207{bottom:524.480042pt;}
.y1a0{bottom:524.800049pt;}
.y15f{bottom:525.760071pt;}
.y28c{bottom:525.920044pt;}
.y12d{bottom:527.200074pt;}
.y258{bottom:529.600037pt;}
.y14{bottom:530.240052pt;}
.y2cc{bottom:533.760071pt;}
.y80{bottom:534.240052pt;}
.y1f0{bottom:538.560059pt;}
.ya8{bottom:541.760071pt;}
.y12a{bottom:541.920044pt;}
.y257{bottom:544.160035pt;}
.y5e{bottom:544.800049pt;}
.ya9{bottom:544.960083pt;}
.y93{bottom:546.240052pt;}
.yf4{bottom:546.400086pt;}
.ycb{bottom:546.880066pt;}
.y3b{bottom:548.320069pt;}
.y1bc{bottom:548.960083pt;}
.y15e{bottom:549.440064pt;}
.y19f{bottom:549.760071pt;}
.y2cb{bottom:553.120057pt;}
.y2aa{bottom:553.440064pt;}
.y25a{bottom:555.680054pt;}
.y128{bottom:563.040039pt;}
.y1ef{bottom:563.520081pt;}
.y255{bottom:564.640076pt;}
.y13{bottom:566.400086pt;}
.y1d6{bottom:566.720032pt;}
.ya6{bottom:567.040039pt;}
.yf3{bottom:569.440064pt;}
.y5d{bottom:570.080079pt;}
.y7f{bottom:571.200074pt;}
.yca{bottom:571.840088pt;}
.y182{bottom:572.320069pt;}
.y2ca{bottom:572.480042pt;}
.y15d{bottom:573.280030pt;}
.y28b{bottom:573.440064pt;}
.y3a{bottom:573.600037pt;}
.y1bb{bottom:574.240052pt;}
.y206{bottom:574.400086pt;}
.y19e{bottom:574.720032pt;}
.y23a{bottom:577.280030pt;}
.y126{bottom:577.760071pt;}
.y253{bottom:579.040039pt;}
.y256{bottom:581.760071pt;}
.y2a9{bottom:583.520081pt;}
.y1ee{bottom:588.640076pt;}
.y129{bottom:589.760071pt;}
.y1d5{bottom:591.680054pt;}
.y2c9{bottom:592.000061pt;}
.y12{bottom:592.320069pt;}
.yf2{bottom:592.480042pt;}
.y5c{bottom:595.360047pt;}
.ya5{bottom:595.520081pt;}
.y7e{bottom:596.160035pt;}
.yc9{bottom:596.800049pt;}
.y15c{bottom:596.960083pt;}
.y28a{bottom:597.120057pt;}
.y181{bottom:597.600037pt;}
.y39{bottom:598.880066pt;}
.y125{bottom:599.040039pt;}
.y205{bottom:599.520081pt;}
.y19d{bottom:599.840088pt;}
.y239{bottom:600.320069pt;}
.y2c8{bottom:611.360047pt;}
.y1ed{bottom:613.600068pt;}
.y123{bottom:613.760071pt;}
.y11{bottom:614.080048pt;}
.y1ba{bottom:615.520050pt;}
.yf1{bottom:616.160065pt;}
.y1d4{bottom:616.640046pt;}
.y5b{bottom:620.640046pt;}
.y289{bottom:620.960053pt;}
.y7d{bottom:621.120057pt;}
.yc8{bottom:621.760071pt;}
.y180{bottom:622.880066pt;}
.y238{bottom:623.360047pt;}
.y38{bottom:624.160065pt;}
.y204{bottom:624.480072pt;}
.y2c7{bottom:630.720063pt;}
.y24f{bottom:631.200074pt;}
.y121{bottom:634.880066pt;}
.y19c{bottom:635.360047pt;}
.y10{bottom:638.560059pt;}
.yf0{bottom:639.680054pt;}
.y1b9{bottom:640.800049pt;}
.y1d3{bottom:641.760071pt;}
.y251{bottom:642.720063pt;}
.y2a8{bottom:643.680054pt;}
.y15b{bottom:644.480072pt;}
.y288{bottom:644.640046pt;}
.y5a{bottom:645.920044pt;}
.y7c{bottom:646.240052pt;}
.y17f{bottom:648.160065pt;}
.y203{bottom:649.440064pt;}
.y37{bottom:649.600068pt;}
.y2c6{bottom:650.080048pt;}
.yc0{bottom:650.560059pt;}
.yc7{bottom:651.200074pt;}
.y24e{bottom:651.680054pt;}
.yc1{bottom:659.360047pt;}
.y19b{bottom:660.480072pt;}
.y122{bottom:661.760071pt;}
.y1ec{bottom:663.520050pt;}
.y1b8{bottom:666.080048pt;}
.y1d2{bottom:666.720063pt;}
.yf{bottom:667.360047pt;}
.ybf{bottom:668.160065pt;}
.y287{bottom:668.320069pt;}
.y237{bottom:669.280060pt;}
.y2c5{bottom:669.600068pt;}
.y120{bottom:670.880066pt;}
.y59{bottom:671.200074pt;}
.y17e{bottom:673.440064pt;}
.y2a7{bottom:673.760071pt;}
.y202{bottom:674.400055pt;}
.y36{bottom:674.880066pt;}
.yc6{bottom:680.480072pt;}
.yef{bottom:684.480072pt;}
.y19a{bottom:685.440064pt;}
.y11f{bottom:685.600068pt;}
.y24c{bottom:686.560059pt;}
.y20f{bottom:687.200074pt;}
.y1eb{bottom:688.480072pt;}
.y2c4{bottom:688.960053pt;}
.y1d1{bottom:691.680054pt;}
.y15a{bottom:691.840058pt;}
.y286{bottom:692.160065pt;}
.y236{bottom:692.320069pt;}
.y7b{bottom:696.160065pt;}
.y58{bottom:696.480072pt;}
.y17d{bottom:698.720063pt;}
.y201{bottom:699.360047pt;}
.y35{bottom:700.160065pt;}
.y24b{bottom:700.960053pt;}
.ye{bottom:701.920044pt;}
.y2a6{bottom:703.840058pt;}
.y11d{bottom:706.720063pt;}
.y1b7{bottom:707.360047pt;}
.y2c3{bottom:708.320069pt;}
.yee{bottom:709.440064pt;}
.y199{bottom:710.400055pt;}
.y20e{bottom:711.680054pt;}
.y24d{bottom:712.640046pt;}
.y1ea{bottom:713.600068pt;}
.y235{bottom:715.200074pt;}
.y159{bottom:715.680054pt;}
.y285{bottom:715.840058pt;}
.y1d0{bottom:716.640046pt;}
.y7a{bottom:721.120057pt;}
.y24a{bottom:721.600068pt;}
.yc5{bottom:721.760071pt;}
.y57{bottom:721.920044pt;}
.y200{bottom:722.720063pt;}
.yd{bottom:723.680054pt;}
.y17c{bottom:724.000061pt;}
.y11c{bottom:724.320069pt;}
.y34{bottom:725.440064pt;}
.y2c2{bottom:727.840058pt;}
.y2a5{bottom:733.920044pt;}
.yed{bottom:734.400055pt;}
.y198{bottom:735.360047pt;}
.y249{bottom:736.000061pt;}
.y234{bottom:738.240052pt;}
.y1e9{bottom:738.560059pt;}
.y11b{bottom:739.200074pt;}
.y158{bottom:739.360047pt;}
.y284{bottom:739.520050pt;}
.y1cf{bottom:741.600068pt;}
.yc{bottom:745.440064pt;}
.y79{bottom:746.080048pt;}
.yc4{bottom:747.040070pt;}
.y56{bottom:747.200074pt;}
.y1b6{bottom:748.640046pt;}
.y33{bottom:750.720063pt;}
.y11e{bottom:751.200074pt;}
.y247{bottom:756.480072pt;}
.yec{bottom:759.360047pt;}
.y214{bottom:759.680054pt;}
.y119{bottom:760.320069pt;}
.ybe{bottom:761.280060pt;}
.y283{bottom:763.360047pt;}
.y1e8{bottom:763.520050pt;}
.y2a4{bottom:764.000061pt;}
.y1ce{bottom:766.400055pt;}
.y2c1{bottom:766.560059pt;}
.yb{bottom:767.040070pt;}
.y213{bottom:768.320069pt;}
.y157{bottom:769.120057pt;}
.y78{bottom:771.200074pt;}
.yc3{bottom:772.320069pt;}
.y55{bottom:772.480072pt;}
.y246{bottom:773.600068pt;}
.y1b5{bottom:773.920044pt;}
.y117{bottom:775.040070pt;}
.y32{bottom:776.000061pt;}
.y11a{bottom:777.920044pt;}
.ybd{bottom:778.880066pt;}
.yeb{bottom:782.720063pt;}
.y233{bottom:784.320069pt;}
.y2c0{bottom:786.080048pt;}
.y282{bottom:787.040070pt;}
.y245{bottom:788.000061pt;}
.y1e7{bottom:788.480072pt;}
.ya{bottom:788.800049pt;}
.y116{bottom:792.640046pt;}
.y197{bottom:793.760071pt;}
.y2a3{bottom:794.080048pt;}
.y17b{bottom:795.040070pt;}
.y77{bottom:796.160065pt;}
.yc2{bottom:797.600068pt;}
.y54{bottom:797.760071pt;}
.y228{bottom:798.560059pt;}
.y1b4{bottom:799.200074pt;}
.y248{bottom:799.680054pt;}
.y31{bottom:801.280060pt;}
.y156{bottom:801.760071pt;}
.yea{bottom:804.960053pt;}
.y2bf{bottom:805.440064pt;}
.y1cd{bottom:807.040070pt;}
.y232{bottom:807.200074pt;}
.y243{bottom:808.640046pt;}
.y9{bottom:810.560059pt;}
.y281{bottom:810.720063pt;}
.y1e6{bottom:813.440064pt;}
.y114{bottom:813.920044pt;}
.y196{bottom:819.040070pt;}
.y155{bottom:819.840058pt;}
.y76{bottom:821.120057pt;}
.y53{bottom:823.040070pt;}
.y2a2{bottom:824.160065pt;}
.y1b3{bottom:824.640046pt;}
.y244{bottom:825.760071pt;}
.y30{bottom:826.560059pt;}
.y17a{bottom:827.680054pt;}
.y227{bottom:828.000061pt;}
.y112{bottom:828.640046pt;}
.ybc{bottom:829.600068pt;}
.y231{bottom:830.240052pt;}
.y8{bottom:832.320069pt;}
.ye9{bottom:834.240052pt;}
.y280{bottom:834.560059pt;}
.ya3{bottom:834.720063pt;}
.y2be{bottom:835.520050pt;}
.y226{bottom:836.640046pt;}
.y1e5{bottom:838.560059pt;}
.y179{bottom:840.160065pt;}
.y115{bottom:840.640046pt;}
.ye8{bottom:843.040070pt;}
.y195{bottom:844.320069pt;}
.y75{bottom:846.080048pt;}
.ybb{bottom:847.200074pt;}
.y154{bottom:847.520050pt;}
.y52{bottom:848.320069pt;}
.y111{bottom:849.760071pt;}
.y1b2{bottom:849.920044pt;}
.y2f{bottom:851.840058pt;}
.y230{bottom:853.280060pt;}
.y7{bottom:854.080048pt;}
.y2a1{bottom:854.240052pt;}
.y178{bottom:855.360047pt;}
.y1cc{bottom:857.600068pt;}
.y27f{bottom:858.240052pt;}
.y212{bottom:858.720063pt;}
.y225{bottom:859.040070pt;}
.y241{bottom:860.640046pt;}
.y1e4{bottom:863.520050pt;}
.y10f{bottom:864.640046pt;}
.ye7{bottom:865.280060pt;}
.y2bd{bottom:865.600068pt;}
.y194{bottom:869.600052pt;}
.y74{bottom:871.040055pt;}
.y153{bottom:872.800064pt;}
.y51{bottom:873.600052pt;}
.y222{bottom:874.560059pt;}
.y1b1{bottom:875.200058pt;}
.y6{bottom:875.840058pt;}
.y22f{bottom:876.320054pt;}
.y224{bottom:876.640061pt;}
.y2e{bottom:877.120057pt;}
.y21c{bottom:878.880066pt;}
.y177{bottom:879.360062pt;}
.ye4{bottom:880.960053pt;}
.y27e{bottom:881.920060pt;}
.ye6{bottom:882.880066pt;}
.y2a0{bottom:884.320054pt;}
.y2bc{bottom:884.960053pt;}
.y10d{bottom:885.760056pt;}
.y242{bottom:886.720063pt;}
.y1e3{bottom:888.480057pt;}
.y10c{bottom:894.560059pt;}
.y193{bottom:894.880066pt;}
.y23f{bottom:895.680054pt;}
.y73{bottom:896.160065pt;}
.y21b{bottom:896.800064pt;}
.y5{bottom:897.440064pt;}
.y152{bottom:898.080063pt;}
.y50{bottom:898.880066pt;}
.y22e{bottom:899.200058pt;}
.y221{bottom:901.600052pt;}
.y2d{bottom:902.560059pt;}
.y176{bottom:903.040055pt;}
.y10e{bottom:903.360062pt;}
.y223{bottom:903.680054pt;}
.y2bb{bottom:904.480057pt;}
.y27d{bottom:905.760056pt;}
.ye3{bottom:908.000061pt;}
.y1cb{bottom:908.160065pt;}
.ye5{bottom:910.080063pt;}
.y220{bottom:910.560059pt;}
.y1e2{bottom:913.440064pt;}
.y29f{bottom:914.400055pt;}
.y21a{bottom:914.880066pt;}
.ye2{bottom:916.960053pt;}
.y4{bottom:919.200058pt;}
.y192{bottom:920.160065pt;}
.y72{bottom:921.120057pt;}
.y22d{bottom:922.240052pt;}
.y151{bottom:923.360062pt;}
.y4f{bottom:924.160065pt;}
.y211{bottom:925.280060pt;}
.y175{bottom:926.720063pt;}
.y10b{bottom:927.040055pt;}
.y2c{bottom:927.840058pt;}
.y27c{bottom:929.440064pt;}
.y23c{bottom:930.560059pt;}
.y219{bottom:932.800064pt;}
.y2ba{bottom:934.560059pt;}
.y1e1{bottom:938.400055pt;}
.y21f{bottom:939.200058pt;}
.y3{bottom:940.960053pt;}
.y210{bottom:942.400055pt;}
.y20d{bottom:944.960053pt;}
.y22c{bottom:945.280060pt;}
.ye1{bottom:945.600052pt;}
.y71{bottom:946.080063pt;}
.y23d{bottom:947.680054pt;}
.y109{bottom:948.160065pt;}
.y4e{bottom:949.600052pt;}
.y218{bottom:950.240052pt;}
.y174{bottom:950.560059pt;}
.y2b{bottom:953.120057pt;}
.ye0{bottom:954.560059pt;}
.y28{bottom:954.720063pt;}
.y27a{bottom:955.840058pt;}
.y2{bottom:962.720063pt;}
.y29e{bottom:962.880066pt;}
.y1e0{bottom:963.520066pt;}
.y217{bottom:968.160065pt;}
.y22b{bottom:968.320054pt;}
.y23b{bottom:970.720063pt;}
.y279{bottom:970.880066pt;}
.y70{bottom:971.040055pt;}
.y21e{bottom:971.360062pt;}
.y173{bottom:974.240052pt;}
.y4d{bottom:974.880066pt;}
.y27{bottom:976.320054pt;}
.y150{bottom:976.480057pt;}
.y216{bottom:976.800064pt;}
.ydf{bottom:977.760056pt;}
.y2a{bottom:978.400055pt;}
.y21d{bottom:980.160065pt;}
.y29d{bottom:982.560059pt;}
.y27b{bottom:983.040055pt;}
.y1{bottom:984.480057pt;}
.yde{bottom:986.400055pt;}
.y22a{bottom:991.840058pt;}
.y1df{bottom:992.320054pt;}
.y2b9{bottom:994.720063pt;}
.y6f{bottom:996.000061pt;}
.y29{bottom:997.760056pt;}
.y172{bottom:997.920060pt;}
.y26{bottom:998.080056pt;}
.y14f{bottom:998.240059pt;}
.y4c{bottom:1000.160057pt;}
.y215{bottom:1013.600060pt;}
.y29c{bottom:1014.080056pt;}
.y229{bottom:1015.520058pt;}
.ha{height:14.399963pt;}
.hc{height:14.399964pt;}
.h14{height:14.399994pt;}
.hd{height:14.400024pt;}
.hb{height:14.400025pt;}
.h1a{height:14.879974pt;}
.h1b{height:14.879975pt;}
.h18{height:14.880004pt;}
.h1d{height:14.880005pt;}
.h16{height:14.880020pt;}
.h6{height:31.009595pt;}
.h2d{height:37.742394pt;}
.h30{height:37.767707pt;}
.h5{height:38.414884pt;}
.h38{height:38.622392pt;}
.h2{height:38.674269pt;}
.h12{height:38.700207pt;}
.h36{height:38.778022pt;}
.h29{height:41.470185pt;}
.h28{height:42.149218pt;}
.h3a{height:42.264223pt;}
.h7{height:42.321725pt;}
.h2a{height:42.439141pt;}
.h39{height:42.810495pt;}
.h4{height:42.867997pt;}
.h9{height:42.896748pt;}
.h37{height:42.983002pt;}
.he{height:43.751643pt;}
.h3{height:47.623043pt;}
.h8{height:52.787152pt;}
.h2e{height:71.662378pt;}
.h33{height:71.687627pt;}
.h31{height:71.687751pt;}
.h2f{height:72.302390pt;}
.h32{height:72.327763pt;}
.h34{height:72.327767pt;}
.hf{height:73.260023pt;}
.h2c{height:73.260203pt;}
.h2b{height:73.260207pt;}
.h13{height:73.260235pt;}
.h11{height:73.260263pt;}
.h10{height:73.260267pt;}
.h1e{height:73.874217pt;}
.h1f{height:73.874221pt;}
.h15{height:73.874281pt;}
.h17{height:73.900159pt;}
.h19{height:73.900283pt;}
.h1c{height:73.900403pt;}
.h24{height:86.060067pt;}
.h23{height:86.060071pt;}
.h20{height:86.060191pt;}
.h21{height:86.060311pt;}
.h22{height:86.060315pt;}
.h35{height:86.700207pt;}
.h27{height:94.983027pt;}
.h25{height:94.983087pt;}
.h26{height:95.623043pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:12.000000pt;}
.w2{width:12.160034pt;}
.w6{width:259.520004pt;}
.w4{width:266.560013pt;}
.w5{width:619.360000pt;}
.w7{width:619.520004pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:66.879997pt;}
.x21{left:82.080002pt;}
.x28{left:85.760002pt;}
.x6{left:90.879997pt;}
.x1c{left:92.959999pt;}
.x49{left:113.440002pt;}
.x12{left:115.680000pt;}
.x2a{left:128.800003pt;}
.x4a{left:142.399994pt;}
.x43{left:143.360001pt;}
.x4c{left:145.440002pt;}
.x45{left:147.360001pt;}
.x19{left:150.080002pt;}
.x3f{left:154.080002pt;}
.x4b{left:161.440002pt;}
.x35{left:183.360001pt;}
.x3{left:189.759995pt;}
.x1d{left:194.240005pt;}
.x36{left:198.880005pt;}
.x23{left:203.679993pt;}
.xf{left:215.839996pt;}
.x18{left:234.720001pt;}
.x1a{left:240.960007pt;}
.x29{left:248.320007pt;}
.x14{left:253.119995pt;}
.xe{left:265.920013pt;}
.x46{left:268.959991pt;}
.xd{left:272.480011pt;}
.x32{left:281.279999pt;}
.x13{left:294.239990pt;}
.x3c{left:300.160004pt;}
.x3d{left:306.399994pt;}
.x33{left:317.279999pt;}
.x37{left:318.559998pt;}
.x31{left:322.239990pt;}
.x15{left:324.799988pt;}
.x30{left:328.640015pt;}
.xc{left:331.679993pt;}
.x1b{left:337.440002pt;}
.x7{left:366.880005pt;}
.x22{left:368.160004pt;}
.x10{left:376.160004pt;}
.x2f{left:386.399994pt;}
.x38{left:390.079987pt;}
.x3e{left:402.880005pt;}
.xb{left:418.399994pt;}
.x2b{left:420.480011pt;}
.x44{left:421.600006pt;}
.x17{left:423.679993pt;}
.x1e{left:432.480011pt;}
.xa{left:442.239990pt;}
.x24{left:443.359985pt;}
.x34{left:454.399994pt;}
.x8{left:457.920013pt;}
.x2e{left:470.559998pt;}
.x9{left:481.600006pt;}
.x40{left:484.160004pt;}
.x3b{left:488.959991pt;}
.x2d{left:493.760010pt;}
.x2c{left:508.959991pt;}
.x11{left:513.280029pt;}
.x20{left:532.000000pt;}
.x1f{left:536.799988pt;}
.x26{left:545.919983pt;}
.x39{left:547.520020pt;}
.x25{left:550.719971pt;}
.x42{left:581.119995pt;}
.x41{left:585.760010pt;}
.x16{left:605.760010pt;}
.x48{left:611.200012pt;}
.x47{left:616.000000pt;}
.x3a{left:671.200012pt;}
.x27{left:753.280029pt;}
.x1{left:762.719971pt;}
.x2{left:772.159973pt;}
.x4{left:781.599976pt;}
}




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