
    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_5fd3c5f7d9cfc545ccfd440b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fbc7444727b0462e08e931da.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_96e3299a319f31f66fc9216d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.675000;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_96e3299a319f31f66fc9216d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.675000;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_03100211d5e29fc8101857a6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_66edeb3b1946341c4f43ced0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_93cbd7cc582b41c28087d527.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_19935c37072137b0b2d2e549.woff')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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_872b6fe957a74a7435aba1f0.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_458442793faaeb64b11a994b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.922000;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_77f6a44c6548d66b996e812b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9e30466ec0f23b1ed3744b78.woff')format("woff");}.ffc{font-family:ffc;line-height:0.951000;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_597082d179e6695f1b8487d9.woff')format("woff");}.ffd{font-family:ffd;line-height:0.904000;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_8461919593b2da1591009ed2.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921000;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_4fb423588f201baca14d7d2f.woff')format("woff");}.fff{font-family:fff;line-height:0.898000;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_0daec9afa6b06d297df6f85f.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e29914650ec3689e7151780b.woff')format("woff");}.ff11{font-family:ff11;line-height:1.400000;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_96e3299a319f31f66fc9216d.woff')format("woff");}.ff12{font-family:ff12;line-height:0.675000;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_e9edac89a31c410701d7a69a.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_8f00e94cf8e5d81f82f550f1.woff')format("woff");}.ff14{font-family:ff14;line-height:0.514000;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_f6073c21b49b1750ee0d3079.woff')format("woff");}.ff15{font-family:ff15;line-height:0.897450;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_1681c33f90d742214f3c6308.woff')format("woff");}.ff16{font-family:ff16;line-height:0.453000;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_cd847cc2f5c80fe410f570c3.woff')format("woff");}.ff17{font-family:ff17;line-height:1.463000;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_631aa0bb77569ba4a151a44d.woff')format("woff");}.ff18{font-family:ff18;line-height:0.705000;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_9bdc0f793ec49cc946d8f9f1.woff')format("woff");}.ff19{font-family:ff19;line-height:1.431000;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_d65cb86c179a1cde18576720.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.705000;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_a9a2358fca4fe8672eb810dd.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.463000;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_631aa0bb77569ba4a151a44d.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.705000;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_f5ab396160dfa0a65d7332b4.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.431000;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_0193fcafeb0f151f0858b666.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_7263dc35588fee3adfe79d4c.woff')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_970f763b3cb37a60d02d1641.woff')format("woff");}.ff20{font-family:ff20;line-height:1.463000;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_4ab71b882d8f441459f0a99f.woff')format("woff");}.ff21{font-family:ff21;line-height:1.431000;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_34d95279e5993a3bbb405da5.woff')format("woff");}.ff22{font-family:ff22;line-height:0.647000;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_630640b97ee0475b4d0639dd.woff')format("woff");}.ff23{font-family:ff23;line-height:0.665000;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_4632f30430a7cf7b4c2ba5fe.woff')format("woff");}.ff24{font-family:ff24;line-height:1.463000;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_44f599b96866909871e52d67.woff')format("woff");}.ff25{font-family:ff25;line-height:1.463000;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_24989168ffcf34c69f46e8fa.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_223937e75c5f7c7f21589402.woff')format("woff");}.ff27{font-family:ff27;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-26.034000px;}
.v3{vertical-align:-22.854000px;}
.v8{vertical-align:-16.512000px;}
.vd{vertical-align:-15.357108px;}
.v5{vertical-align:-9.816000px;}
.v9{vertical-align:-8.436000px;}
.v6{vertical-align:-7.290000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.640738px;}
.vb{vertical-align:19.966493px;}
.v4{vertical-align:23.754000px;}
.v1{vertical-align:26.034000px;}
.v7{vertical-align:46.254000px;}
.va{vertical-align:59.337904px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000525px;}
.ls13{letter-spacing:0.001223px;}
.ls3a{letter-spacing:0.001985px;}
.ls26{letter-spacing:0.002147px;}
.ls38{letter-spacing:0.002692px;}
.ls16{letter-spacing:0.002698px;}
.ls23{letter-spacing:0.002700px;}
.ls27{letter-spacing:0.002706px;}
.ls1d{letter-spacing:0.002712px;}
.ls14{letter-spacing:0.003056px;}
.ls1c{letter-spacing:0.003791px;}
.ls29{letter-spacing:0.004890px;}
.ls28{letter-spacing:2.062335px;}
.ls10{letter-spacing:2.755488px;}
.ls1{letter-spacing:2.984915px;}
.ls0{letter-spacing:2.988479px;}
.ls2{letter-spacing:2.988532px;}
.ls2d{letter-spacing:2.990915px;}
.ls18{letter-spacing:3.747796px;}
.ls22{letter-spacing:4.265644px;}
.ls21{letter-spacing:5.743488px;}
.ls24{letter-spacing:10.910700px;}
.ls12{letter-spacing:14.549412px;}
.ls2c{letter-spacing:14.933412px;}
.ls20{letter-spacing:15.173644px;}
.ls3e{letter-spacing:15.358992px;}
.ls1f{letter-spacing:16.657488px;}
.ls7{letter-spacing:17.672742px;}
.ls1e{letter-spacing:18.179412px;}
.ls25{letter-spacing:18.179418px;}
.ls36{letter-spacing:18.183791px;}
.ls3d{letter-spacing:18.433405px;}
.ls2b{letter-spacing:19.159604px;}
.ls31{letter-spacing:19.245791px;}
.ls11{letter-spacing:20.287488px;}
.ls3b{letter-spacing:20.454532px;}
.ls30{letter-spacing:20.561412px;}
.ls37{letter-spacing:20.597412px;}
.ls33{letter-spacing:20.880017px;}
.lsf{letter-spacing:21.175289px;}
.lsa{letter-spacing:21.272745px;}
.ls3c{letter-spacing:21.420532px;}
.ls8{letter-spacing:21.796382px;}
.ls9{letter-spacing:21.861836px;}
.ls2a{letter-spacing:22.058692px;}
.ls34{letter-spacing:22.340692px;}
.ls6{letter-spacing:22.385473px;}
.lse{letter-spacing:22.581837px;}
.ls35{letter-spacing:23.651408px;}
.ls5{letter-spacing:23.825474px;}
.ls2e{letter-spacing:25.786890px;}
.ls15{letter-spacing:26.318149px;}
.lsb{letter-spacing:26.705477px;}
.lsc{letter-spacing:26.770931px;}
.ls19{letter-spacing:26.942692px;}
.ls1a{letter-spacing:27.244890px;}
.ls32{letter-spacing:27.338692px;}
.ls1b{letter-spacing:27.482692px;}
.ls2f{letter-spacing:29.529796px;}
.ls17{letter-spacing:32.443488px;}
.ls4{letter-spacing:32.729412px;}
.ls39{letter-spacing:1095.403610px;}
.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;}
}
.ws82{word-spacing:-47.258221px;}
.ws6e{word-spacing:-42.637126px;}
.ws70{word-spacing:-33.211407px;}
.ws47{word-spacing:-32.727300px;}
.ws81{word-spacing:-31.771663px;}
.ws83{word-spacing:-31.706208px;}
.wsfe{word-spacing:-28.228020px;}
.ws119{word-spacing:-27.646998px;}
.wsec{word-spacing:-19.800628px;}
.wsb7{word-spacing:-19.518027px;}
.ws5d{word-spacing:-17.934560px;}
.wsbd{word-spacing:-17.579123px;}
.ws86{word-spacing:-16.791908px;}
.wsa5{word-spacing:-16.494559px;}
.ws61{word-spacing:-16.429105px;}
.ws3{word-spacing:-16.139475px;}
.ws6d{word-spacing:-16.036377px;}
.ws8e{word-spacing:-15.905468px;}
.ws13{word-spacing:-15.840013px;}
.ws13b{word-spacing:-15.380963px;}
.ws116{word-spacing:-15.327164px;}
.wsa2{word-spacing:-15.316376px;}
.ws15{word-spacing:-15.185467px;}
.ws30{word-spacing:-15.111971px;}
.ws41{word-spacing:-15.054558px;}
.ws167{word-spacing:-14.842979px;}
.ws1a{word-spacing:-14.789180px;}
.ws8d{word-spacing:-14.661830px;}
.ws34{word-spacing:-14.627785px;}
.ws2a{word-spacing:-14.466390px;}
.wsa9{word-spacing:-14.465467px;}
.wsb{word-spacing:-14.203648px;}
.ws11d{word-spacing:-14.143599px;}
.ws11c{word-spacing:-14.132840px;}
.ws118{word-spacing:-14.089801px;}
.ws117{word-spacing:-14.079041px;}
.ws14{word-spacing:-14.007284px;}
.wsae{word-spacing:-13.876375px;}
.wsa8{word-spacing:-13.745466px;}
.ws169{word-spacing:-13.713212px;}
.ws168{word-spacing:-13.648654px;}
.ws99{word-spacing:-13.483648px;}
.ws4{word-spacing:-13.449600px;}
.ws62{word-spacing:-13.418193px;}
.ws1c{word-spacing:-13.390422px;}
.wsb4{word-spacing:-13.352738px;}
.ws15c{word-spacing:-13.336623px;}
.wsb9{word-spacing:-13.316277px;}
.ws2e{word-spacing:-13.282825px;}
.ws5c{word-spacing:-13.221829px;}
.ws24{word-spacing:-13.175228px;}
.ws4f{word-spacing:-13.090920px;}
.ws89{word-spacing:-13.025465px;}
.ws13a{word-spacing:-12.960035px;}
.wsa1{word-spacing:-12.960011px;}
.ws144{word-spacing:-12.906236px;}
.wsfb{word-spacing:-12.852438px;}
.wsb1{word-spacing:-12.829102px;}
.ws45{word-spacing:-12.763647px;}
.ws60{word-spacing:-12.698192px;}
.ws2c{word-spacing:-12.691043px;}
.ws143{word-spacing:-12.529647px;}
.wsaa{word-spacing:-12.436374px;}
.ws122{word-spacing:-12.368252px;}
.ws63{word-spacing:-12.240010px;}
.ws38{word-spacing:-12.206857px;}
.wsab{word-spacing:-12.174556px;}
.ws46{word-spacing:-12.043646px;}
.ws17{word-spacing:-11.937865px;}
.wsac{word-spacing:-11.912737px;}
.ws9e{word-spacing:-11.847283px;}
.wsf8{word-spacing:-11.830268px;}
.wsfc{word-spacing:-11.819508px;}
.wsa0{word-spacing:-11.781828px;}
.ws25{word-spacing:-11.776470px;}
.wsbb{word-spacing:-11.695516px;}
.ws156{word-spacing:-11.668873px;}
.ws3b{word-spacing:-11.592010px;}
.ws48{word-spacing:-11.526555px;}
.ws51{word-spacing:-11.454555px;}
.ws123{word-spacing:-11.389121px;}
.ws6c{word-spacing:-11.389100px;}
.ws1d{word-spacing:-11.346083px;}
.wsfa{word-spacing:-11.292284px;}
.ws7e{word-spacing:-11.127282px;}
.ws7d{word-spacing:-10.996373px;}
.ws11a{word-spacing:-10.969494px;}
.ws5{word-spacing:-10.930918px;}
.ws54{word-spacing:-10.865464px;}
.ws114{word-spacing:-10.861897px;}
.wsf9{word-spacing:-10.851137px;}
.ws8c{word-spacing:-10.800009px;}
.ws15d{word-spacing:-10.754300px;}
.ws3a{word-spacing:-10.669100px;}
.wse9{word-spacing:-10.646703px;}
.wsa7{word-spacing:-10.603645px;}
.ws1e{word-spacing:-10.592905px;}
.wsb8{word-spacing:-10.572321px;}
.ws149{word-spacing:-10.485308px;}
.ws52{word-spacing:-10.407281px;}
.ws1b{word-spacing:-10.377711px;}
.ws8f{word-spacing:-10.341827px;}
.ws40{word-spacing:-10.276372px;}
.ws39{word-spacing:-10.216316px;}
.wsea{word-spacing:-10.162518px;}
.ws65{word-spacing:-10.145463px;}
.wse8{word-spacing:-10.001123px;}
.ws68{word-spacing:-9.982525px;}
.wsff{word-spacing:-9.947324px;}
.ws6a{word-spacing:-9.922750px;}
.ws146{word-spacing:-9.893526px;}
.ws13c{word-spacing:-9.839727px;}
.ws15e{word-spacing:-9.828968px;}
.ws100{word-spacing:-9.785929px;}
.ws16{word-spacing:-9.752735px;}
.ws166{word-spacing:-9.721371px;}
.ws4d{word-spacing:-9.687281px;}
.ws10e{word-spacing:-9.624534px;}
.ws3d{word-spacing:-9.621826px;}
.ws14a{word-spacing:-9.613774px;}
.ws96{word-spacing:-9.496594px;}
.ws95{word-spacing:-9.490917px;}
.ws93{word-spacing:-9.463924px;}
.ws64{word-spacing:-9.425462px;}
.ws104{word-spacing:-9.409340px;}
.wsba{word-spacing:-9.247945px;}
.wseb{word-spacing:-9.238247px;}
.ws7{word-spacing:-9.194147px;}
.ws50{word-spacing:-9.163644px;}
.ws33{word-spacing:-9.140348px;}
.ws20{word-spacing:-9.032751px;}
.ws53{word-spacing:-9.032735px;}
.ws12c{word-spacing:-9.021992px;}
.ws12d{word-spacing:-8.978953px;}
.ws3f{word-spacing:-8.967280px;}
.ws84{word-spacing:-8.953224px;}
.ws3e{word-spacing:-8.901826px;}
.ws92{word-spacing:-8.836371px;}
.ws14d{word-spacing:-8.817558px;}
.wsa3{word-spacing:-8.770916px;}
.ws10a{word-spacing:-8.763759px;}
.ws27{word-spacing:-8.709961px;}
.ws142{word-spacing:-8.656163px;}
.ws105{word-spacing:-8.645403px;}
.ws44{word-spacing:-8.574553px;}
.ws28{word-spacing:-8.494767px;}
.wsf6{word-spacing:-8.484008px;}
.ws158{word-spacing:-8.440969px;}
.wsf2{word-spacing:-8.430209px;}
.ws11e{word-spacing:-8.387171px;}
.wsbe{word-spacing:-8.310115px;}
.wsa6{word-spacing:-8.247280px;}
.ws23{word-spacing:-8.225775px;}
.ws12e{word-spacing:-8.215016px;}
.ws139{word-spacing:-8.171977px;}
.ws4a{word-spacing:-8.116370px;}
.ws125{word-spacing:-7.902985px;}
.ws160{word-spacing:-7.849187px;}
.ws36{word-spacing:-7.795388px;}
.ws159{word-spacing:-7.784628px;}
.ws31{word-spacing:-7.741590px;}
.ws32{word-spacing:-7.687791px;}
.wsaf{word-spacing:-7.592734px;}
.wsb2{word-spacing:-7.588630px;}
.ws127{word-spacing:-7.580195px;}
.ws2d{word-spacing:-7.472598px;}
.ws5e{word-spacing:-7.461824px;}
.ws56{word-spacing:-7.396370px;}
.ws151{word-spacing:-7.365001px;}
.ws133{word-spacing:-7.257404px;}
.ws126{word-spacing:-7.246644px;}
.ws153{word-spacing:-7.192846px;}
.ws21{word-spacing:-7.149807px;}
.ws145{word-spacing:-7.096009px;}
.wsf1{word-spacing:-7.085249px;}
.wsa4{word-spacing:-7.003642px;}
.ws10b{word-spacing:-6.988412px;}
.ws66{word-spacing:-6.938188px;}
.ws97{word-spacing:-6.904630px;}
.ws120{word-spacing:-6.880815px;}
.wsc{word-spacing:-6.807278px;}
.ws106{word-spacing:-6.719420px;}
.ws12{word-spacing:-6.610915px;}
.ws134{word-spacing:-6.558025px;}
.ws10d{word-spacing:-6.504227px;}
.ws5a{word-spacing:-6.480005px;}
.ws10c{word-spacing:-6.439668px;}
.ws91{word-spacing:-6.414551px;}
.ws137{word-spacing:-6.396630px;}
.ws14f{word-spacing:-6.289033px;}
.ws2f{word-spacing:-6.235235px;}
.ws135{word-spacing:-6.063080px;}
.ws73{word-spacing:-6.059063px;}
.ws71{word-spacing:-6.025224px;}
.ws58{word-spacing:-6.021823px;}
.ws136{word-spacing:-5.912444px;}
.wsf{word-spacing:-5.825459px;}
.ws154{word-spacing:-5.804847px;}
.ws161{word-spacing:-5.740289px;}
.ws4c{word-spacing:-5.694550px;}
.ws2b{word-spacing:-5.643452px;}
.ws9b{word-spacing:-5.629096px;}
.ws9a{word-spacing:-5.624370px;}
.ws150{word-spacing:-5.535855px;}
.ws78{word-spacing:-5.498186px;}
.ws77{word-spacing:-5.478661px;}
.ws76{word-spacing:-5.471659px;}
.ws12f{word-spacing:-5.428259px;}
.ws57{word-spacing:-5.367277px;}
.ws155{word-spacing:-5.309902px;}
.ws85{word-spacing:-5.191869px;}
.ws11b{word-spacing:-5.131298px;}
.ws43{word-spacing:-5.105459px;}
.wsb0{word-spacing:-5.104829px;}
.ws15a{word-spacing:-5.051670px;}
.ws11{word-spacing:-4.974550px;}
.ws19{word-spacing:-4.944073px;}
.wse{word-spacing:-4.909095px;}
.ws9d{word-spacing:-4.843640px;}
.ws152{word-spacing:-4.836476px;}
.ws29{word-spacing:-4.728879px;}
.wsad{word-spacing:-4.712731px;}
.ws103{word-spacing:-4.675081px;}
.ws162{word-spacing:-4.664321px;}
.ws5b{word-spacing:-4.647277px;}
.wsfd{word-spacing:-4.459887px;}
.ws13e{word-spacing:-4.244694px;}
.ws94{word-spacing:-4.216630px;}
.ws110{word-spacing:-4.190895px;}
.ws10{word-spacing:-4.189094px;}
.ws18{word-spacing:-4.137097px;}
.ws22{word-spacing:-4.083299px;}
.ws6b{word-spacing:-4.058185px;}
.ws15b{word-spacing:-4.029500px;}
.ws8a{word-spacing:-3.992731px;}
.ws130{word-spacing:-3.975702px;}
.ws13f{word-spacing:-3.857345px;}
.ws14e{word-spacing:-3.814307px;}
.ws147{word-spacing:-3.760508px;}
.ws131{word-spacing:-3.642152px;}
.ws115{word-spacing:-3.599113px;}
.ws164{word-spacing:-3.545315px;}
.ws74{word-spacing:-3.534548px;}
.ws138{word-spacing:-3.491516px;}
.wsd{word-spacing:-3.338185px;}
.ws102{word-spacing:-3.330121px;}
.ws165{word-spacing:-3.265563px;}
.ws26{word-spacing:-3.168726px;}
.ws101{word-spacing:-3.139421px;}
.ws10f{word-spacing:-3.138774px;}
.wsf5{word-spacing:-3.133841px;}
.ws121{word-spacing:-3.081648px;}
.ws15f{word-spacing:-3.078722px;}
.ws157{word-spacing:-3.077401px;}
.ws4b{word-spacing:-3.076366px;}
.ws16a{word-spacing:-3.074655px;}
.ws11f{word-spacing:-3.073841px;}
.ws1f{word-spacing:-3.061129px;}
.ws148{word-spacing:-3.055342px;}
.ws141{word-spacing:-3.052253px;}
.ws163{word-spacing:-3.049644px;}
.ws140{word-spacing:-3.007331px;}
.ws35{word-spacing:-2.792137px;}
.ws132{word-spacing:-2.684540px;}
.ws8b{word-spacing:-2.683639px;}
.wsf4{word-spacing:-2.576943px;}
.ws129{word-spacing:-2.415548px;}
.ws12a{word-spacing:-2.243393px;}
.ws111{word-spacing:-1.985161px;}
.ws107{word-spacing:-1.931363px;}
.ws112{word-spacing:-1.813006px;}
.ws108{word-spacing:-1.759208px;}
.ws13d{word-spacing:-1.393379px;}
.wsf7{word-spacing:-1.339580px;}
.wsb5{word-spacing:-1.112728px;}
.ws12b{word-spacing:-0.747798px;}
.ws9c{word-spacing:-0.364630px;}
.ws79{word-spacing:-0.244630px;}
.ws7c{word-spacing:-0.220630px;}
.ws113{word-spacing:-0.209814px;}
.ws109{word-spacing:-0.102217px;}
.ws2{word-spacing:-0.071731px;}
.ws59{word-spacing:-0.065455px;}
.ws7f{word-spacing:-0.059776px;}
.wsf3{word-spacing:-0.053798px;}
.ws6f{word-spacing:-0.047821px;}
.ws80{word-spacing:-0.035866px;}
.ws8{word-spacing:0.000000px;}
.ws128{word-spacing:0.166775px;}
.ws124{word-spacing:1.350340px;}
.ws14b{word-spacing:1.457937px;}
.ws37{word-spacing:1.619332px;}
.ws75{word-spacing:1.741370px;}
.ws14c{word-spacing:4.147857px;}
.ws5f{word-spacing:6.676369px;}
.ws98{word-spacing:8.023582px;}
.wsc3{word-spacing:10.810214px;}
.wsd2{word-spacing:12.998697px;}
.wsc7{word-spacing:13.171235px;}
.wscc{word-spacing:13.437470px;}
.wse6{word-spacing:13.574585px;}
.ws90{word-spacing:14.850460px;}
.wsf0{word-spacing:15.278746px;}
.wsd4{word-spacing:19.541920px;}
.wsde{word-spacing:20.309775px;}
.wsce{word-spacing:20.578525px;}
.wsc2{word-spacing:20.616918px;}
.wse5{word-spacing:20.638533px;}
.ws9f{word-spacing:20.842565px;}
.wse4{word-spacing:20.946059px;}
.wsd8{word-spacing:20.962453px;}
.wsa{word-spacing:21.207290px;}
.ws87{word-spacing:21.337561px;}
.ws88{word-spacing:21.338200px;}
.wse1{word-spacing:21.653522px;}
.ws4e{word-spacing:22.581837px;}
.ws67{word-spacing:22.834279px;}
.wsb3{word-spacing:23.227043px;}
.ws1{word-spacing:23.312640px;}
.wsd0{word-spacing:23.402774px;}
.wsdc{word-spacing:23.841910px;}
.wse0{word-spacing:23.979049px;}
.wsca{word-spacing:24.074991px;}
.wsda{word-spacing:24.190237px;}
.ws9{word-spacing:25.003657px;}
.ws72{word-spacing:26.247295px;}
.ws3c{word-spacing:26.509113px;}
.ws7a{word-spacing:27.163659px;}
.ws7b{word-spacing:27.173945px;}
.wse7{word-spacing:27.510875px;}
.ws49{word-spacing:28.210933px;}
.wsd3{word-spacing:28.240548px;}
.ws55{word-spacing:29.061842px;}
.wsdf{word-spacing:29.946361px;}
.wscd{word-spacing:30.791002px;}
.wsc4{word-spacing:31.021358px;}
.ws0{word-spacing:31.091012px;}
.wsdd{word-spacing:31.213322px;}
.wsc8{word-spacing:31.254402px;}
.wsd6{word-spacing:31.482072px;}
.wsc5{word-spacing:31.720222px;}
.ws42{word-spacing:31.745481px;}
.wsc0{word-spacing:32.249927px;}
.wse3{word-spacing:32.828468px;}
.wse2{word-spacing:33.121558px;}
.wscf{word-spacing:33.286532px;}
.wsbf{word-spacing:33.324925px;}
.ws6{word-spacing:34.298210px;}
.wsd5{word-spacing:34.399922px;}
.wsdb{word-spacing:38.011260px;}
.wsd9{word-spacing:38.068882px;}
.wsc9{word-spacing:38.069043px;}
.wsc1{word-spacing:38.184116px;}
.wsd1{word-spacing:38.359608px;}
.wscb{word-spacing:40.888300px;}
.wsc6{word-spacing:41.869850px;}
.wsd7{word-spacing:43.921329px;}
.wsee{word-spacing:178.814921px;}
.wsed{word-spacing:179.765763px;}
.wsef{word-spacing:179.765827px;}
.wsb6{word-spacing:322.344600px;}
.ws69{word-spacing:486.154955px;}
.wsbc{word-spacing:637.119523px;}
._37{margin-left:-974.130497px;}
._38{margin-left:-853.308620px;}
._2{margin-left:-6.320981px;}
._5{margin-left:-5.236368px;}
._4{margin-left:-3.801754px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.116151px;}
._6{width:1.506355px;}
._1{width:2.582310px;}
._24{width:3.634242px;}
._26{width:5.234292px;}
._44{width:13.557197px;}
._c{width:16.022616px;}
._3d{width:17.428161px;}
._b{width:18.626045px;}
._10{width:19.880997px;}
._13{width:21.014655px;}
._d{width:23.111365px;}
._7{width:24.570457px;}
._15{width:25.856531px;}
._9{width:27.554283px;}
._18{width:28.612075px;}
._8{width:29.865164px;}
._e{width:31.287298px;}
._16{width:32.609005px;}
._27{width:33.784077px;}
._f{width:35.095504px;}
._12{width:36.740237px;}
._2b{width:37.770892px;}
._42{width:39.522258px;}
._11{width:40.971690px;}
._17{width:42.488031px;}
._14{width:44.313489px;}
._a{width:45.362002px;}
._43{width:46.478522px;}
._2a{width:47.857912px;}
._28{width:48.896550px;}
._29{width:50.796698px;}
._25{width:54.390974px;}
._45{width:56.121317px;}
._46{width:57.157271px;}
._21{width:71.941905px;}
._33{width:88.420118px;}
._2f{width:98.115685px;}
._1d{width:131.000214px;}
._20{width:200.224375px;}
._3f{width:211.178565px;}
._19{width:274.568963px;}
._1b{width:295.052362px;}
._34{width:318.957990px;}
._1a{width:322.814131px;}
._31{width:351.943180px;}
._2d{width:358.654976px;}
._1e{width:364.069295px;}
._2c{width:374.334439px;}
._35{width:376.921049px;}
._36{width:382.085635px;}
._23{width:389.732915px;}
._32{width:394.967001px;}
._1c{width:410.146283px;}
._22{width:415.990361px;}
._30{width:425.047735px;}
._1f{width:449.669909px;}
._3e{width:524.235922px;}
._40{width:541.884729px;}
._2e{width:574.208669px;}
._41{width:578.833050px;}
._3c{width:651.558015px;}
._39{width:802.611462px;}
._3a{width:863.606113px;}
._3b{width:1798.192212px;}
.fcb{color:rgb(128,0,0);}
.fc7{color:rgb(106,74,60);}
.fc9{color:rgb(235,104,65);}
.fc6{color:rgb(97,11,94);}
.fc5{color:rgb(139,0,0);}
.fc4{color:rgb(57,109,53);}
.fc2{color:transparent;}
.fc8{color:rgb(11,72,107);}
.fc1{color:rgb(0,0,255);}
.fca{color:rgb(77,77,77);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:24.955299px;}
.fsf{font-size:25.242120px;}
.fsd{font-size:29.449140px;}
.fsa{font-size:31.748710px;}
.fs10{font-size:33.656160px;}
.fs5{font-size:35.865600px;}
.fsb{font-size:36.284133px;}
.fs12{font-size:38.392770px;}
.fse{font-size:42.070200px;}
.fsc{font-size:45.355229px;}
.fs2{font-size:47.820600px;}
.fs9{font-size:50.239398px;}
.fs17{font-size:50.285455px;}
.fs11{font-size:52.790160px;}
.fs6{font-size:53.798400px;}
.fs8{font-size:58.612693px;}
.fs14{font-size:59.461346px;}
.fs7{font-size:59.775600px;}
.fs16{font-size:63.999614px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs15{font-size:82.285200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y18e{bottom:7.614706px;}
.y139{bottom:11.556766px;}
.y19f{bottom:12.780236px;}
.y114{bottom:12.850795px;}
.y138{bottom:13.946417px;}
.y16c{bottom:15.208377px;}
.y18d{bottom:17.921905px;}
.y164{bottom:19.184011px;}
.y113{bottom:19.964212px;}
.y13b{bottom:28.150809px;}
.y1a4{bottom:28.675610px;}
.y116{bottom:30.373241px;}
.y169{bottom:30.532448px;}
.y15e{bottom:32.089045px;}
.y1a0{bottom:33.219311px;}
.y13a{bottom:35.325454px;}
.y182{bottom:38.220777px;}
.y1b0{bottom:38.751789px;}
.y24{bottom:40.207500px;}
.y1c0{bottom:40.899719px;}
.y180{bottom:41.186726px;}
.y1b7{bottom:41.876073px;}
.y13c{bottom:42.725706px;}
.y115{bottom:42.885590px;}
.y165{bottom:49.116959px;}
.y13d{bottom:51.999139px;}
.y137{bottom:53.133044px;}
.y117{bottom:53.690327px;}
.y168{bottom:54.323146px;}
.y10f{bottom:55.370122px;}
.y161{bottom:56.868393px;}
.y181{bottom:60.612641px;}
.y13e{bottom:61.211908px;}
.y1c8{bottom:63.099729px;}
.y118{bottom:66.816125px;}
.y1b6{bottom:67.627593px;}
.y16e{bottom:69.899637px;}
.y167{bottom:70.067918px;}
.y10e{bottom:70.204598px;}
.y148{bottom:71.137896px;}
.y119{bottom:80.553078px;}
.y140{bottom:81.063892px;}
.y166{bottom:82.783636px;}
.y160{bottom:83.015022px;}
.y58{bottom:85.039500px;}
.y1c4{bottom:86.260006px;}
.ybc{bottom:86.530500px;}
.y16b{bottom:89.167789px;}
.y13f{bottom:89.798725px;}
.y23{bottom:90.759000px;}
.y123{bottom:90.912769px;}
.y192{bottom:91.210500px;}
.y233{bottom:92.863500px;}
.y1b5{bottom:93.394007px;}
.y15f{bottom:95.594012px;}
.y162{bottom:95.720223px;}
.y11b{bottom:97.468306px;}
.y136{bottom:98.729182px;}
.y141{bottom:99.072166px;}
.y259{bottom:100.122000px;}
.y8a{bottom:101.700000px;}
.y11a{bottom:103.813501px;}
.y191{bottom:104.586000px;}
.y1b1{bottom:105.042820px;}
.y57{bottom:105.363000px;}
.ybb{bottom:106.855500px;}
.y142{bottom:107.528085px;}
.y205{bottom:108.042000px;}
.y17a{bottom:108.467493px;}
.y15d{bottom:108.562151px;}
.y163{bottom:108.625256px;}
.y232{bottom:109.302000px;}
.y1be{bottom:110.122842px;}
.y1b4{bottom:116.261681px;}
.y11c{bottom:116.463052px;}
.y258{bottom:116.559000px;}
.y190{bottom:117.960000px;}
.y144{bottom:119.682714px;}
.y173{bottom:121.330457px;}
.y89{bottom:122.023500px;}
.y204{bottom:124.480500px;}
.y56{bottom:125.686500px;}
.y245{bottom:125.740500px;}
.yba{bottom:127.179000px;}
.y11d{bottom:127.342652px;}
.y187{bottom:127.451671px;}
.y1bc{bottom:127.809000px;}
.y143{bottom:132.266498px;}
.y16a{bottom:134.014622px;}
.y18a{bottom:134.593087px;}
.y11e{bottom:138.222205px;}
.y177{bottom:139.778239px;}
.y135{bottom:139.923030px;}
.y156{bottom:140.927078px;}
.y1b3{bottom:141.849712px;}
.y1bb{bottom:142.006500px;}
.y189{bottom:142.170000px;}
.y231{bottom:142.179000px;}
.y88{bottom:142.347000px;}
.y186{bottom:142.996610px;}
.y1c5{bottom:143.402541px;}
.y55{bottom:146.011500px;}
.y10b{bottom:146.103882px;}
.yb9{bottom:147.502500px;}
.y203{bottom:147.964500px;}
.y16d{bottom:148.465736px;}
.y257{bottom:149.436000px;}
.y11f{bottom:150.439188px;}
.y145{bottom:150.692060px;}
.y184{bottom:152.336194px;}
.y1ba{bottom:155.382000px;}
.y131{bottom:157.558265px;}
.ye8{bottom:157.633500px;}
.y230{bottom:158.617500px;}
.y146{bottom:159.597542px;}
.y10a{bottom:160.938358px;}
.y179{bottom:161.013173px;}
.y174{bottom:161.402322px;}
.y87{bottom:162.670500px;}
.y1b2{bottom:164.717386px;}
.y256{bottom:165.874500px;}
.y54{bottom:166.335000px;}
.y120{bottom:167.056797px;}
.yb8{bottom:167.826000px;}
.y147{bottom:168.982675px;}
.y1b9{bottom:169.503000px;}
.y15c{bottom:169.810121px;}
.y170{bottom:172.666618px;}
.y1af{bottom:173.350215px;}
.y244{bottom:175.056000px;}
.y109{bottom:175.772834px;}
.y195{bottom:175.897104px;}
.y155{bottom:175.992314px;}
.y178{bottom:176.621217px;}
.ye7{bottom:177.957000px;}
.y19d{bottom:178.001512px;}
.y17f{bottom:178.661622px;}
.y121{bottom:179.023743px;}
.y86{bottom:182.995500px;}
.y185{bottom:183.573318px;}
.y1b8{bottom:184.447500px;}
.y172{bottom:185.540100px;}
.y14a{bottom:185.939280px;}
.y53{bottom:186.658500px;}
.yb7{bottom:188.149500px;}
.y122{bottom:188.204755px;}
.y202{bottom:188.374500px;}
.y108{bottom:190.607310px;}
.y22{bottom:190.798500px;}
.y22f{bottom:191.494500px;}
.y175{bottom:192.082016px;}
.y130{bottom:194.593628px;}
.ye6{bottom:198.280500px;}
.y134{bottom:198.318432px;}
.y255{bottom:198.751500px;}
.y14b{bottom:198.981738px;}
.y1c6{bottom:200.533556px;}
.y17d{bottom:200.822100px;}
.y19c{bottom:200.863953px;}
.y125{bottom:202.403231px;}
.y85{bottom:203.319000px;}
.y10d{bottom:205.303577px;}
.y107{bottom:205.441786px;}
.y52{bottom:206.982000px;}
.y243{bottom:207.931500px;}
.y22e{bottom:207.933000px;}
.yb6{bottom:208.474500px;}
.y1ae{bottom:209.478000px;}
.y154{bottom:210.716267px;}
.y21{bottom:211.122000px;}
.y126{bottom:212.846231px;}
.y254{bottom:215.190000px;}
.ye5{bottom:218.605500px;}
.y10c{bottom:220.138053px;}
.y106{bottom:220.276261px;}
.y149{bottom:220.693823px;}
.y84{bottom:223.642500px;}
.y12f{bottom:223.721871px;}
.y19b{bottom:223.739592px;}
.y242{bottom:224.370000px;}
.y17b{bottom:224.717973px;}
.y17e{bottom:225.548860px;}
.y51{bottom:227.305500px;}
.yb5{bottom:228.798000px;}
.y1ce{bottom:229.294436px;}
.y14c{bottom:229.642967px;}
.y20{bottom:231.447000px;}
.y253{bottom:231.628500px;}
.y124{bottom:233.180701px;}
.y196{bottom:234.750860px;}
.y14d{bottom:239.663638px;}
.y22d{bottom:240.808500px;}
.y127{bottom:241.387147px;}
.y83{bottom:243.966000px;}
.y19a{bottom:244.041711px;}
.ye4{bottom:245.974500px;}
.y128{bottom:247.371199px;}
.y50{bottom:247.630500px;}
.yb4{bottom:249.121500px;}
.y201{bottom:250.387500px;}
.y1cd{bottom:250.641831px;}
.y1f{bottom:251.770500px;}
.y188{bottom:253.262604px;}
.y14f{bottom:255.952949px;}
.y22c{bottom:257.247000px;}
.y1c7{bottom:257.675899px;}
.y252{bottom:264.505500px;}
.y12a{bottom:264.916291px;}
.y105{bottom:265.043270px;}
.y199{bottom:266.758979px;}
.y200{bottom:266.826000px;}
.y4f{bottom:267.954000px;}
.yb3{bottom:269.445000px;}
.y111{bottom:269.572500px;}
.y150{bottom:270.961556px;}
.y82{bottom:271.335000px;}
.y1c9{bottom:271.685691px;}
.y1d8{bottom:271.740000px;}
.y1e{bottom:272.094000px;}
.y241{bottom:273.685500px;}
.y104{bottom:279.877746px;}
.y151{bottom:280.145982px;}
.y251{bottom:280.942500px;}
.y18f{bottom:281.018418px;}
.y12b{bottom:282.155801px;}
.y110{bottom:283.770000px;}
.y1d7{bottom:285.115500px;}
.y132{bottom:286.081591px;}
.y197{bottom:287.061104px;}
.y4e{bottom:288.277500px;}
.y14e{bottom:288.345634px;}
.y12c{bottom:289.012943px;}
.yb2{bottom:289.768500px;}
.y22b{bottom:290.124000px;}
.y1d{bottom:292.417500px;}
.ye3{bottom:293.667000px;}
.y103{bottom:294.712222px;}
.y194{bottom:295.394744px;}
.y129{bottom:296.554952px;}
.y1ff{bottom:296.713500px;}
.y250{bottom:297.381000px;}
.y1d6{bottom:299.236500px;}
.y1bf{bottom:301.299748px;}
.y152{bottom:302.660310px;}
.y18b{bottom:303.820467px;}
.y81{bottom:306.348000px;}
.y12d{bottom:306.529683px;}
.y22a{bottom:306.562500px;}
.yf6{bottom:307.978500px;}
.y4d{bottom:308.601000px;}
.yb1{bottom:310.093500px;}
.y1c{bottom:312.741000px;}
.y1fe{bottom:313.152000px;}
.ye2{bottom:313.990500px;}
.y1d5{bottom:314.181000px;}
.y12e{bottom:317.891165px;}
.y153{bottom:318.334783px;}
.y1ca{bottom:320.252598px;}
.y229{bottom:323.001000px;}
.y80{bottom:326.671500px;}
.y4c{bottom:328.924500px;}
.y1d4{bottom:329.125500px;}
.y24f{bottom:330.258000px;}
.y1b{bottom:333.064500px;}
.ye1{bottom:334.314000px;}
.y102{bottom:336.948773px;}
.yb0{bottom:337.462500px;}
.y133{bottom:338.371726px;}
.y157{bottom:338.371729px;}
.y240{bottom:339.439500px;}
.y1fd{bottom:343.039500px;}
.y1d3{bottom:344.068500px;}
.y24e{bottom:346.696500px;}
.y7f{bottom:346.995000px;}
.y4b{bottom:349.249500px;}
.y101{bottom:351.783249px;}
.yf8{bottom:353.094361px;}
.y1a{bottom:353.389500px;}
.ye0{bottom:354.639000px;}
.y228{bottom:355.878000px;}
.y1d2{bottom:359.013000px;}
.y1fc{bottom:359.478000px;}
.y100{bottom:366.617725px;}
.y7e{bottom:367.318500px;}
.y4a{bottom:369.573000px;}
.y227{bottom:372.316500px;}
.y19{bottom:373.713000px;}
.y1d1{bottom:373.957500px;}
.ydf{bottom:374.962500px;}
.y1fb{bottom:375.916500px;}
.y24d{bottom:379.573500px;}
.yff{bottom:381.452201px;}
.y1c1{bottom:383.611171px;}
.yaf{bottom:385.155000px;}
.y7d{bottom:387.643500px;}
.y23f{bottom:388.753500px;}
.y1d0{bottom:388.900500px;}
.y49{bottom:389.896500px;}
.y18{bottom:394.036500px;}
.yde{bottom:395.286000px;}
.y24c{bottom:396.012000px;}
.yfb{bottom:396.286664px;}
.yfe{bottom:396.286677px;}
.y183{bottom:399.509137px;}
.y1cf{bottom:403.098000px;}
.y226{bottom:405.192000px;}
.yae{bottom:405.478500px;}
.y1fa{bottom:405.804000px;}
.y7c{bottom:407.967000px;}
.y48{bottom:410.220000px;}
.yfa{bottom:411.121140px;}
.yfd{bottom:411.121153px;}
.y17{bottom:414.360000px;}
.ydd{bottom:415.609500px;}
.y225{bottom:421.630500px;}
.y1f9{bottom:422.242500px;}
.y176{bottom:424.393660px;}
.yad{bottom:425.802000px;}
.yf9{bottom:425.955616px;}
.yfc{bottom:425.955629px;}
.y1bd{bottom:427.306500px;}
.y7b{bottom:428.290500px;}
.y24b{bottom:428.889000px;}
.y47{bottom:430.543500px;}
.y1c2{bottom:432.829146px;}
.y16{bottom:434.683500px;}
.ydc{bottom:435.933000px;}
.y23e{bottom:438.069000px;}
.y198{bottom:438.397850px;}
.y1a1{bottom:438.580206px;}
.y1f8{bottom:438.681000px;}
.y24a{bottom:445.326000px;}
.y7a{bottom:448.614000px;}
.y46{bottom:450.868500px;}
.y1a3{bottom:454.398798px;}
.y1a2{bottom:454.475581px;}
.y224{bottom:454.507500px;}
.y15{bottom:455.008500px;}
.y1f7{bottom:455.119500px;}
.yab{bottom:455.380500px;}
.ydb{bottom:456.258000px;}
.y19e{bottom:458.942567px;}
.yac{bottom:465.700500px;}
.y79{bottom:468.937500px;}
.y223{bottom:470.946000px;}
.y45{bottom:471.192000px;}
.y1f6{bottom:471.558000px;}
.yf7{bottom:472.882914px;}
.y18c{bottom:473.047846px;}
.y14{bottom:475.332000px;}
.y171{bottom:475.351190px;}
.yaa{bottom:476.059500px;}
.y249{bottom:478.203000px;}
.y1c3{bottom:482.234560px;}
.y222{bottom:487.384500px;}
.y78{bottom:489.262500px;}
.y17c{bottom:490.885611px;}
.y44{bottom:491.515500px;}
.y248{bottom:494.641500px;}
.y13{bottom:495.655500px;}
.yda{bottom:496.905000px;}
.y1f5{bottom:501.445500px;}
.y23d{bottom:503.823000px;}
.y77{bottom:509.586000px;}
.y247{bottom:511.080000px;}
.y1cc{bottom:511.211319px;}
.y43{bottom:511.839000px;}
.ya9{bottom:512.118000px;}
.y12{bottom:515.979000px;}
.yd9{bottom:517.228500px;}
.y1f4{bottom:517.884000px;}
.y221{bottom:520.261500px;}
.y76{bottom:529.909500px;}
.y42{bottom:532.162500px;}
.ya8{bottom:532.443000px;}
.y1f3{bottom:534.322500px;}
.y1ad{bottom:534.445500px;}
.y246{bottom:534.564000px;}
.y16f{bottom:534.638619px;}
.y1cb{bottom:535.925061px;}
.y11{bottom:536.302500px;}
.y220{bottom:536.700000px;}
.yd8{bottom:537.552000px;}
.y1ac{bottom:548.641500px;}
.y75{bottom:550.233000px;}
.y41{bottom:552.487500px;}
.ya7{bottom:552.766500px;}
.y23c{bottom:553.137000px;}
.y10{bottom:556.627500px;}
.yd7{bottom:557.877000px;}
.y1f2{bottom:564.210000px;}
.y1ab{bottom:564.243000px;}
.y21f{bottom:569.575500px;}
.y74{bottom:570.556500px;}
.y40{bottom:572.811000px;}
.ya6{bottom:573.090000px;}
.yf{bottom:576.951000px;}
.y1aa{bottom:577.618500px;}
.yd6{bottom:578.200500px;}
.y21e{bottom:586.014000px;}
.y73{bottom:590.881500px;}
.y3f{bottom:593.134500px;}
.y1a9{bottom:593.220000px;}
.ya5{bottom:593.413500px;}
.y1f1{bottom:594.097500px;}
.ye{bottom:597.274500px;}
.yd5{bottom:598.524000px;}
.y23b{bottom:602.452500px;}
.y1a8{bottom:606.594000px;}
.y1f0{bottom:610.536000px;}
.y72{bottom:611.205000px;}
.y3e{bottom:613.458000px;}
.ya4{bottom:613.737000px;}
.yd{bottom:617.598000px;}
.yd4{bottom:618.847500px;}
.y21d{bottom:618.891000px;}
.y1a7{bottom:619.969500px;}
.y71{bottom:631.528500px;}
.y3d{bottom:633.781500px;}
.ya3{bottom:634.062000px;}
.y1a6{bottom:634.092000px;}
.y21c{bottom:635.329500px;}
.yc{bottom:637.921500px;}
.yd3{bottom:639.171000px;}
.y1ef{bottom:640.423500px;}
.y1a5{bottom:649.035000px;}
.y21b{bottom:651.768000px;}
.y70{bottom:651.852000px;}
.y3c{bottom:654.105000px;}
.ya2{bottom:654.385500px;}
.y1ee{bottom:656.862000px;}
.yb{bottom:658.246500px;}
.yd2{bottom:659.494500px;}
.y21a{bottom:668.206500px;}
.y6f{bottom:672.175500px;}
.y1ed{bottom:673.300500px;}
.y193{bottom:674.067000px;}
.y3b{bottom:674.430000px;}
.yd1{bottom:679.819500px;}
.ya1{bottom:680.685000px;}
.y23a{bottom:684.645000px;}
.y6e{bottom:692.500500px;}
.y3a{bottom:694.753500px;}
.ya{bottom:696.502500px;}
.y9e{bottom:698.943000px;}
.yd0{bottom:700.143000px;}
.y219{bottom:701.083500px;}
.y1ec{bottom:703.189500px;}
.y6d{bottom:712.824000px;}
.ya0{bottom:713.494500px;}
.y39{bottom:715.077000px;}
.y218{bottom:717.522000px;}
.y9f{bottom:717.978000px;}
.y1eb{bottom:719.626500px;}
.ycf{bottom:720.466500px;}
.y9{bottom:723.871500px;}
.y6c{bottom:733.147500px;}
.y239{bottom:733.959000px;}
.y38{bottom:735.400500px;}
.y1ea{bottom:736.065000px;}
.yce{bottom:740.790000px;}
.y9d{bottom:746.437500px;}
.y217{bottom:750.397500px;}
.y6b{bottom:753.471000px;}
.y37{bottom:755.724000px;}
.y15b{bottom:758.622000px;}
.ycd{bottom:761.113500px;}
.y8{bottom:764.281500px;}
.y1e9{bottom:765.954000px;}
.y9c{bottom:766.761000px;}
.y216{bottom:766.836000px;}
.y15a{bottom:772.744500px;}
.y6a{bottom:773.794500px;}
.y36{bottom:776.049000px;}
.y1e8{bottom:782.392500px;}
.y25b{bottom:783.274500px;}
.y9b{bottom:787.086000px;}
.y159{bottom:787.689000px;}
.y69{bottom:794.118000px;}
.y35{bottom:796.372500px;}
.y215{bottom:799.713000px;}
.ycc{bottom:801.762000px;}
.y158{bottom:801.885000px;}
.y9a{bottom:807.409500px;}
.y1e7{bottom:812.280000px;}
.y68{bottom:814.443000px;}
.y214{bottom:816.151500px;}
.y34{bottom:816.696000px;}
.ycb{bottom:822.085500px;}
.y112{bottom:826.095000px;}
.y99{bottom:827.733000px;}
.y1e6{bottom:828.718500px;}
.y213{bottom:832.590000px;}
.y67{bottom:834.766500px;}
.y33{bottom:837.019500px;}
.yca{bottom:842.409000px;}
.y238{bottom:849.028500px;}
.yf5{bottom:852.036000px;}
.y66{bottom:855.090000px;}
.y32{bottom:857.343000px;}
.y7{bottom:858.312000px;}
.y1e5{bottom:858.606000px;}
.yc9{bottom:862.732500px;}
.y212{bottom:865.467000px;}
.y98{bottom:867.876000px;}
.y1e4{bottom:875.044500px;}
.y65{bottom:875.413500px;}
.y31{bottom:877.668000px;}
.y211{bottom:881.905500px;}
.yc8{bottom:883.057500px;}
.y97{bottom:885.808500px;}
.y64{bottom:895.737000px;}
.y6{bottom:897.166500px;}
.y30{bottom:897.991500px;}
.y210{bottom:898.342500px;}
.yc7{bottom:903.381000px;}
.y96{bottom:903.742500px;}
.y1e3{bottom:904.932000px;}
.y237{bottom:914.781000px;}
.y63{bottom:916.062000px;}
.yf4{bottom:919.428000px;}
.y1e2{bottom:921.370500px;}
.y95{bottom:921.675000px;}
.yc6{bottom:923.704500px;}
.y5{bottom:924.595500px;}
.y20f{bottom:931.219500px;}
.y2f{bottom:931.537500px;}
.y62{bottom:936.385500px;}
.yf3{bottom:937.360500px;}
.y94{bottom:939.607500px;}
.y20e{bottom:947.658000px;}
.yc5{bottom:951.073500px;}
.y1e1{bottom:951.258000px;}
.y2e{bottom:951.861000px;}
.y4{bottom:955.279500px;}
.yf2{bottom:955.293000px;}
.y61{bottom:956.709000px;}
.y93{bottom:957.540000px;}
.y20d{bottom:964.096500px;}
.y1e0{bottom:967.696500px;}
.y2d{bottom:972.184500px;}
.yf1{bottom:973.225500px;}
.y92{bottom:975.472500px;}
.y60{bottom:977.032500px;}
.yc4{bottom:978.442500px;}
.y236{bottom:980.535000px;}
.yf0{bottom:991.159500px;}
.y2c{bottom:992.509500px;}
.y91{bottom:993.405000px;}
.y20c{bottom:996.973500px;}
.y5f{bottom:997.356000px;}
.y1df{bottom:997.585500px;}
.yc3{bottom:998.766000px;}
.yef{bottom:1009.092000px;}
.y90{bottom:1011.339000px;}
.y3{bottom:1012.066500px;}
.y2b{bottom:1012.833000px;}
.y20b{bottom:1013.412000px;}
.y1de{bottom:1014.022500px;}
.y5e{bottom:1017.681000px;}
.yc2{bottom:1019.091000px;}
.yee{bottom:1027.024500px;}
.y8f{bottom:1029.271500px;}
.y235{bottom:1029.850500px;}
.y1dd{bottom:1030.461000px;}
.y2a{bottom:1033.156500px;}
.y5d{bottom:1038.004500px;}
.yc1{bottom:1039.414500px;}
.y2{bottom:1044.943500px;}
.yed{bottom:1044.957000px;}
.y20a{bottom:1046.289000px;}
.y8e{bottom:1047.204000px;}
.y29{bottom:1053.480000px;}
.y5c{bottom:1058.328000px;}
.yc0{bottom:1059.738000px;}
.y1dc{bottom:1060.350000px;}
.y209{bottom:1062.727500px;}
.yec{bottom:1063.488000px;}
.y8d{bottom:1065.735000px;}
.y28{bottom:1073.803500px;}
.y1db{bottom:1076.788500px;}
.y1{bottom:1077.820500px;}
.y5b{bottom:1078.651500px;}
.y25a{bottom:1079.164500px;}
.ybf{bottom:1080.061500px;}
.yeb{bottom:1094.122500px;}
.y27{bottom:1094.128500px;}
.y208{bottom:1095.603000px;}
.y8c{bottom:1096.369500px;}
.ybe{bottom:1100.385000px;}
.y5a{bottom:1106.020500px;}
.y1da{bottom:1106.676000px;}
.yea{bottom:1107.498000px;}
.y8b{bottom:1109.745000px;}
.y207{bottom:1112.041500px;}
.ybd{bottom:1120.710000px;}
.y1d9{bottom:1123.114500px;}
.y26{bottom:1127.811000px;}
.y234{bottom:1128.480000px;}
.y59{bottom:1141.033500px;}
.y206{bottom:1144.918500px;}
.ye9{bottom:1158.966000px;}
.y25{bottom:1161.357000px;}
.hf{height:0.000000px;}
.ha{height:23.850624px;}
.h22{height:26.326742px;}
.h27{height:28.948148px;}
.h1e{height:30.714533px;}
.h4{height:32.278905px;}
.h1f{height:32.355271px;}
.he{height:33.187496px;}
.h23{height:35.102323px;}
.h18{height:36.638012px;}
.h32{height:37.336090px;}
.hb{height:40.348800px;}
.h19{height:41.146207px;}
.h1c{height:41.871889px;}
.h20{height:43.877904px;}
.h26{height:44.305257px;}
.h29{height:44.823535px;}
.h2a{height:44.823536px;}
.hd{height:44.831700px;}
.h28{height:45.034681px;}
.h9{height:45.425492px;}
.h2b{height:46.704624px;}
.h8{height:49.090950px;}
.h7{height:50.211840px;}
.h5{height:51.216077px;}
.h1a{height:51.432830px;}
.hc{height:56.032905px;}
.h1b{height:56.604505px;}
.h11{height:56.941496px;}
.h14{height:56.971477px;}
.h15{height:57.976265px;}
.h31{height:58.029415px;}
.h3{height:58.312905px;}
.h10{height:60.211496px;}
.h6{height:60.254040px;}
.h25{height:60.919844px;}
.h13{height:67.639047px;}
.h2d{height:68.618393px;}
.h2{height:72.511265px;}
.h30{height:73.855554px;}
.h2f{height:94.957121px;}
.h16{height:117.314169px;}
.h2c{height:230.834664px;}
.h17{height:348.668092px;}
.h24{height:464.312925px;}
.h12{height:501.855431px;}
.h1d{height:562.867723px;}
.h2e{height:566.925590px;}
.h21{height:595.293330px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:510.244327px;}
.w4{width:565.276242px;}
.w5{width:595.293330px;}
.w6{width:680.272425px;}
.w8{width:680.310709px;}
.w7{width:680.320696px;}
.w3{width:680.328016px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:3.556973px;}
.x4e{left:7.026181px;}
.x5a{left:8.812526px;}
.x4b{left:11.800691px;}
.x25{left:13.562295px;}
.x22{left:15.449061px;}
.x48{left:16.533589px;}
.x5b{left:23.737280px;}
.x2f{left:27.082691px;}
.x1a{left:29.051822px;}
.x49{left:30.879527px;}
.x33{left:39.945655px;}
.x37{left:40.997410px;}
.x2e{left:44.320956px;}
.x5f{left:46.085329px;}
.x20{left:49.601518px;}
.x1b{left:52.826810px;}
.x5e{left:54.213280px;}
.x23{left:59.135184px;}
.x30{left:61.632843px;}
.x55{left:63.089706px;}
.x51{left:64.125351px;}
.x50{left:65.387794px;}
.x4f{left:67.802943px;}
.x38{left:74.011999px;}
.x44{left:78.324195px;}
.x8{left:85.039500px;}
.x5c{left:86.956500px;}
.x28{left:88.387500px;}
.x5d{left:89.767500px;}
.x60{left:90.805500px;}
.x17{left:92.341500px;}
.x27{left:94.984500px;}
.x58{left:96.366000px;}
.x57{left:98.329500px;}
.x62{left:101.403000px;}
.x5{left:102.654000px;}
.xd{left:105.039000px;}
.x1e{left:106.299000px;}
.xb{left:108.100500px;}
.xa{left:110.443500px;}
.x56{left:111.520500px;}
.x9{left:113.221500px;}
.x2d{left:120.131456px;}
.xe{left:125.949000px;}
.x2a{left:127.251837px;}
.x1{left:139.159500px;}
.x19{left:140.669267px;}
.x21{left:142.954406px;}
.x40{left:144.206128px;}
.x47{left:148.819500px;}
.x16{left:155.493000px;}
.x3b{left:160.718682px;}
.x2c{left:162.012340px;}
.x29{left:174.051102px;}
.x61{left:181.569000px;}
.x18{left:191.338500px;}
.x31{left:194.048798px;}
.x42{left:200.432950px;}
.x43{left:207.732130px;}
.x2{left:216.991500px;}
.x45{left:226.926659px;}
.x2b{left:229.608634px;}
.x35{left:251.632384px;}
.x3e{left:256.112860px;}
.x3f{left:261.645091px;}
.x4a{left:276.306556px;}
.x1f{left:286.644820px;}
.x3c{left:288.023107px;}
.x52{left:289.384949px;}
.x54{left:291.031033px;}
.x1c{left:296.158032px;}
.x1d{left:300.052500px;}
.x3{left:303.819000px;}
.x32{left:310.067892px;}
.x14{left:337.285500px;}
.x34{left:350.381661px;}
.x10{left:362.619000px;}
.xf{left:370.137000px;}
.x41{left:376.938474px;}
.x39{left:379.052502px;}
.x7{left:380.854500px;}
.x4{left:391.681500px;}
.x36{left:393.461545px;}
.x46{left:394.786757px;}
.x12{left:400.267500px;}
.x11{left:407.206500px;}
.x3a{left:411.299310px;}
.x6{left:420.973500px;}
.x13{left:424.816500px;}
.x63{left:438.274500px;}
.xc{left:442.366500px;}
.x3d{left:454.505406px;}
.x4c{left:462.707610px;}
.x4d{left:512.152219px;}
.x53{left:517.124678px;}
.x26{left:566.889255px;}
.x59{left:573.315463px;}
.x15{left:786.964500px;}
@media print{
.v2{vertical-align:-23.141333pt;}
.v3{vertical-align:-20.314667pt;}
.v8{vertical-align:-14.677333pt;}
.vd{vertical-align:-13.650763pt;}
.v5{vertical-align:-8.725333pt;}
.v9{vertical-align:-7.498667pt;}
.v6{vertical-align:-6.480000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.458434pt;}
.vb{vertical-align:17.747994pt;}
.v4{vertical-align:21.114667pt;}
.v1{vertical-align:23.141333pt;}
.v7{vertical-align:41.114667pt;}
.va{vertical-align:52.744803pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000467pt;}
.ls13{letter-spacing:0.001087pt;}
.ls3a{letter-spacing:0.001765pt;}
.ls26{letter-spacing:0.001908pt;}
.ls38{letter-spacing:0.002393pt;}
.ls16{letter-spacing:0.002399pt;}
.ls23{letter-spacing:0.002400pt;}
.ls27{letter-spacing:0.002405pt;}
.ls1d{letter-spacing:0.002411pt;}
.ls14{letter-spacing:0.002717pt;}
.ls1c{letter-spacing:0.003370pt;}
.ls29{letter-spacing:0.004347pt;}
.ls28{letter-spacing:1.833187pt;}
.ls10{letter-spacing:2.449323pt;}
.ls1{letter-spacing:2.653258pt;}
.ls0{letter-spacing:2.656426pt;}
.ls2{letter-spacing:2.656473pt;}
.ls2d{letter-spacing:2.658591pt;}
.ls18{letter-spacing:3.331374pt;}
.ls22{letter-spacing:3.791684pt;}
.ls21{letter-spacing:5.105323pt;}
.ls24{letter-spacing:9.698400pt;}
.ls12{letter-spacing:12.932811pt;}
.ls2c{letter-spacing:13.274144pt;}
.ls20{letter-spacing:13.487684pt;}
.ls3e{letter-spacing:13.652437pt;}
.ls1f{letter-spacing:14.806656pt;}
.ls7{letter-spacing:15.709104pt;}
.ls1e{letter-spacing:16.159477pt;}
.ls25{letter-spacing:16.159483pt;}
.ls36{letter-spacing:16.163370pt;}
.ls3d{letter-spacing:16.385249pt;}
.ls2b{letter-spacing:17.030759pt;}
.ls31{letter-spacing:17.107370pt;}
.ls11{letter-spacing:18.033323pt;}
.ls3b{letter-spacing:18.181806pt;}
.ls30{letter-spacing:18.276811pt;}
.ls37{letter-spacing:18.308811pt;}
.ls33{letter-spacing:18.560015pt;}
.lsf{letter-spacing:18.822479pt;}
.lsa{letter-spacing:18.909107pt;}
.ls3c{letter-spacing:19.040473pt;}
.ls8{letter-spacing:19.374562pt;}
.ls9{letter-spacing:19.432743pt;}
.ls2a{letter-spacing:19.607727pt;}
.ls34{letter-spacing:19.858393pt;}
.ls6{letter-spacing:19.898198pt;}
.lse{letter-spacing:20.072744pt;}
.ls35{letter-spacing:21.023474pt;}
.ls5{letter-spacing:21.178199pt;}
.ls2e{letter-spacing:22.921680pt;}
.ls15{letter-spacing:23.393910pt;}
.lsb{letter-spacing:23.738202pt;}
.lsc{letter-spacing:23.796383pt;}
.ls19{letter-spacing:23.949060pt;}
.ls1a{letter-spacing:24.217680pt;}
.ls32{letter-spacing:24.301060pt;}
.ls1b{letter-spacing:24.429060pt;}
.ls2f{letter-spacing:26.248707pt;}
.ls17{letter-spacing:28.838656pt;}
.ls4{letter-spacing:29.092811pt;}
.ls39{letter-spacing:973.692098pt;}
.ws82{word-spacing:-42.007308pt;}
.ws6e{word-spacing:-37.899668pt;}
.ws70{word-spacing:-29.521250pt;}
.ws47{word-spacing:-29.090933pt;}
.ws81{word-spacing:-28.241478pt;}
.ws83{word-spacing:-28.183296pt;}
.wsfe{word-spacing:-25.091574pt;}
.ws119{word-spacing:-24.575109pt;}
.wsec{word-spacing:-17.600558pt;}
.wsb7{word-spacing:-17.349357pt;}
.ws5d{word-spacing:-15.941831pt;}
.wsbd{word-spacing:-15.625887pt;}
.ws86{word-spacing:-14.926140pt;}
.wsa5{word-spacing:-14.661830pt;}
.ws61{word-spacing:-14.603649pt;}
.ws3{word-spacing:-14.346200pt;}
.ws6d{word-spacing:-14.254557pt;}
.ws8e{word-spacing:-14.138194pt;}
.ws13{word-spacing:-14.080012pt;}
.ws13b{word-spacing:-13.671967pt;}
.ws116{word-spacing:-13.624146pt;}
.wsa2{word-spacing:-13.614557pt;}
.ws15{word-spacing:-13.498193pt;}
.ws30{word-spacing:-13.432863pt;}
.ws41{word-spacing:-13.381829pt;}
.ws167{word-spacing:-13.193759pt;}
.ws1a{word-spacing:-13.145938pt;}
.ws8d{word-spacing:-13.032738pt;}
.ws34{word-spacing:-13.002476pt;}
.ws2a{word-spacing:-12.859013pt;}
.wsa9{word-spacing:-12.858193pt;}
.wsb{word-spacing:-12.625465pt;}
.ws11d{word-spacing:-12.572088pt;}
.ws11c{word-spacing:-12.562524pt;}
.ws118{word-spacing:-12.524268pt;}
.ws117{word-spacing:-12.514703pt;}
.ws14{word-spacing:-12.450919pt;}
.wsae{word-spacing:-12.334556pt;}
.wsa8{word-spacing:-12.218192pt;}
.ws169{word-spacing:-12.189522pt;}
.ws168{word-spacing:-12.132137pt;}
.ws99{word-spacing:-11.985465pt;}
.ws4{word-spacing:-11.955200pt;}
.ws62{word-spacing:-11.927283pt;}
.ws1c{word-spacing:-11.902597pt;}
.wsb4{word-spacing:-11.869101pt;}
.ws15c{word-spacing:-11.854776pt;}
.wsb9{word-spacing:-11.836690pt;}
.ws2e{word-spacing:-11.806956pt;}
.ws5c{word-spacing:-11.752737pt;}
.ws24{word-spacing:-11.711314pt;}
.ws4f{word-spacing:-11.636373pt;}
.ws89{word-spacing:-11.578191pt;}
.ws13a{word-spacing:-11.520031pt;}
.wsa1{word-spacing:-11.520010pt;}
.ws144{word-spacing:-11.472210pt;}
.wsfb{word-spacing:-11.424389pt;}
.wsb1{word-spacing:-11.403646pt;}
.ws45{word-spacing:-11.345464pt;}
.ws60{word-spacing:-11.287282pt;}
.ws2c{word-spacing:-11.280927pt;}
.ws143{word-spacing:-11.137464pt;}
.wsaa{word-spacing:-11.054555pt;}
.ws122{word-spacing:-10.994002pt;}
.ws63{word-spacing:-10.880009pt;}
.ws38{word-spacing:-10.850540pt;}
.wsab{word-spacing:-10.821827pt;}
.ws46{word-spacing:-10.705463pt;}
.ws17{word-spacing:-10.611436pt;}
.wsac{word-spacing:-10.589100pt;}
.ws9e{word-spacing:-10.530918pt;}
.wsf8{word-spacing:-10.515794pt;}
.wsfc{word-spacing:-10.506230pt;}
.wsa0{word-spacing:-10.472736pt;}
.ws25{word-spacing:-10.467973pt;}
.wsbb{word-spacing:-10.396014pt;}
.ws156{word-spacing:-10.372332pt;}
.ws3b{word-spacing:-10.304009pt;}
.ws48{word-spacing:-10.245827pt;}
.ws51{word-spacing:-10.181827pt;}
.ws123{word-spacing:-10.123663pt;}
.ws6c{word-spacing:-10.123645pt;}
.ws1d{word-spacing:-10.085407pt;}
.wsfa{word-spacing:-10.037586pt;}
.ws7e{word-spacing:-9.890917pt;}
.ws7d{word-spacing:-9.774554pt;}
.ws11a{word-spacing:-9.750661pt;}
.ws5{word-spacing:-9.716372pt;}
.ws54{word-spacing:-9.658190pt;}
.ws114{word-spacing:-9.655020pt;}
.wsf9{word-spacing:-9.645455pt;}
.ws8c{word-spacing:-9.600008pt;}
.ws15d{word-spacing:-9.559378pt;}
.ws3a{word-spacing:-9.483644pt;}
.wse9{word-spacing:-9.463736pt;}
.wsa7{word-spacing:-9.425462pt;}
.ws1e{word-spacing:-9.415916pt;}
.wsb8{word-spacing:-9.397618pt;}
.ws149{word-spacing:-9.320274pt;}
.ws52{word-spacing:-9.250917pt;}
.ws1b{word-spacing:-9.224632pt;}
.ws8f{word-spacing:-9.192735pt;}
.ws40{word-spacing:-9.134553pt;}
.ws39{word-spacing:-9.081170pt;}
.wsea{word-spacing:-9.033349pt;}
.ws65{word-spacing:-9.018189pt;}
.wse8{word-spacing:-8.889887pt;}
.ws68{word-spacing:-8.873356pt;}
.wsff{word-spacing:-8.842066pt;}
.ws6a{word-spacing:-8.820222pt;}
.ws146{word-spacing:-8.794245pt;}
.ws13c{word-spacing:-8.746424pt;}
.ws15e{word-spacing:-8.736860pt;}
.ws100{word-spacing:-8.698604pt;}
.ws16{word-spacing:-8.669098pt;}
.ws166{word-spacing:-8.641219pt;}
.ws4d{word-spacing:-8.610916pt;}
.ws10e{word-spacing:-8.555141pt;}
.ws3d{word-spacing:-8.552734pt;}
.ws14a{word-spacing:-8.545577pt;}
.ws96{word-spacing:-8.441417pt;}
.ws95{word-spacing:-8.436371pt;}
.ws93{word-spacing:-8.412377pt;}
.ws64{word-spacing:-8.378189pt;}
.ws104{word-spacing:-8.363858pt;}
.wsba{word-spacing:-8.220396pt;}
.wseb{word-spacing:-8.211775pt;}
.ws7{word-spacing:-8.172575pt;}
.ws50{word-spacing:-8.145461pt;}
.ws33{word-spacing:-8.124754pt;}
.ws20{word-spacing:-8.029112pt;}
.ws53{word-spacing:-8.029098pt;}
.ws12c{word-spacing:-8.019548pt;}
.ws12d{word-spacing:-7.981292pt;}
.ws3f{word-spacing:-7.970916pt;}
.ws84{word-spacing:-7.958422pt;}
.ws3e{word-spacing:-7.912734pt;}
.ws92{word-spacing:-7.854552pt;}
.ws14d{word-spacing:-7.837829pt;}
.wsa3{word-spacing:-7.796370pt;}
.ws10a{word-spacing:-7.790008pt;}
.ws27{word-spacing:-7.742188pt;}
.ws142{word-spacing:-7.694367pt;}
.ws105{word-spacing:-7.684803pt;}
.ws44{word-spacing:-7.621825pt;}
.ws28{word-spacing:-7.550904pt;}
.wsf6{word-spacing:-7.541340pt;}
.ws158{word-spacing:-7.503084pt;}
.wsf2{word-spacing:-7.493519pt;}
.ws11e{word-spacing:-7.455263pt;}
.wsbe{word-spacing:-7.386768pt;}
.wsa6{word-spacing:-7.330915pt;}
.ws23{word-spacing:-7.311800pt;}
.ws12e{word-spacing:-7.302236pt;}
.ws139{word-spacing:-7.263980pt;}
.ws4a{word-spacing:-7.214551pt;}
.ws125{word-spacing:-7.024876pt;}
.ws160{word-spacing:-6.977055pt;}
.ws36{word-spacing:-6.929234pt;}
.ws159{word-spacing:-6.919670pt;}
.ws31{word-spacing:-6.881413pt;}
.ws32{word-spacing:-6.833592pt;}
.wsaf{word-spacing:-6.749097pt;}
.wsb2{word-spacing:-6.745448pt;}
.ws127{word-spacing:-6.737951pt;}
.ws2d{word-spacing:-6.642309pt;}
.ws5e{word-spacing:-6.632733pt;}
.ws56{word-spacing:-6.574551pt;}
.ws151{word-spacing:-6.546668pt;}
.ws133{word-spacing:-6.451026pt;}
.ws126{word-spacing:-6.441462pt;}
.ws153{word-spacing:-6.393641pt;}
.ws21{word-spacing:-6.355384pt;}
.ws145{word-spacing:-6.307564pt;}
.wsf1{word-spacing:-6.297999pt;}
.wsa4{word-spacing:-6.225460pt;}
.ws10b{word-spacing:-6.211922pt;}
.ws66{word-spacing:-6.167278pt;}
.ws97{word-spacing:-6.137448pt;}
.ws120{word-spacing:-6.116280pt;}
.wsc{word-spacing:-6.050914pt;}
.ws106{word-spacing:-5.972818pt;}
.ws12{word-spacing:-5.876369pt;}
.ws134{word-spacing:-5.829356pt;}
.ws10d{word-spacing:-5.781535pt;}
.ws5a{word-spacing:-5.760005pt;}
.ws10c{word-spacing:-5.724150pt;}
.ws91{word-spacing:-5.701823pt;}
.ws137{word-spacing:-5.685893pt;}
.ws14f{word-spacing:-5.590252pt;}
.ws2f{word-spacing:-5.542431pt;}
.ws135{word-spacing:-5.389404pt;}
.ws73{word-spacing:-5.385833pt;}
.ws71{word-spacing:-5.355755pt;}
.ws58{word-spacing:-5.352732pt;}
.ws136{word-spacing:-5.255506pt;}
.wsf{word-spacing:-5.178186pt;}
.ws154{word-spacing:-5.159864pt;}
.ws161{word-spacing:-5.102479pt;}
.ws4c{word-spacing:-5.061822pt;}
.ws2b{word-spacing:-5.016402pt;}
.ws9b{word-spacing:-5.003641pt;}
.ws9a{word-spacing:-4.999440pt;}
.ws150{word-spacing:-4.920760pt;}
.ws78{word-spacing:-4.887277pt;}
.ws77{word-spacing:-4.869921pt;}
.ws76{word-spacing:-4.863697pt;}
.ws12f{word-spacing:-4.825119pt;}
.ws57{word-spacing:-4.770913pt;}
.ws155{word-spacing:-4.719913pt;}
.ws85{word-spacing:-4.614995pt;}
.ws11b{word-spacing:-4.561154pt;}
.ws43{word-spacing:-4.538186pt;}
.wsb0{word-spacing:-4.537626pt;}
.ws15a{word-spacing:-4.490373pt;}
.ws11{word-spacing:-4.421822pt;}
.ws19{word-spacing:-4.394732pt;}
.wse{word-spacing:-4.363640pt;}
.ws9d{word-spacing:-4.305458pt;}
.ws152{word-spacing:-4.299090pt;}
.ws29{word-spacing:-4.203448pt;}
.wsad{word-spacing:-4.189094pt;}
.ws103{word-spacing:-4.155628pt;}
.ws162{word-spacing:-4.146063pt;}
.ws5b{word-spacing:-4.130913pt;}
.wsfd{word-spacing:-3.964344pt;}
.ws13e{word-spacing:-3.773061pt;}
.ws94{word-spacing:-3.748115pt;}
.ws110{word-spacing:-3.725240pt;}
.ws10{word-spacing:-3.723639pt;}
.ws18{word-spacing:-3.677420pt;}
.ws22{word-spacing:-3.629599pt;}
.ws6b{word-spacing:-3.607276pt;}
.ws15b{word-spacing:-3.581778pt;}
.ws8a{word-spacing:-3.549094pt;}
.ws130{word-spacing:-3.533957pt;}
.ws13f{word-spacing:-3.428751pt;}
.ws14e{word-spacing:-3.390495pt;}
.ws147{word-spacing:-3.342674pt;}
.ws131{word-spacing:-3.237468pt;}
.ws115{word-spacing:-3.199212pt;}
.ws164{word-spacing:-3.151391pt;}
.ws74{word-spacing:-3.141821pt;}
.ws138{word-spacing:-3.103570pt;}
.wsd{word-spacing:-2.967275pt;}
.ws102{word-spacing:-2.960108pt;}
.ws165{word-spacing:-2.902723pt;}
.ws26{word-spacing:-2.816645pt;}
.ws101{word-spacing:-2.790596pt;}
.ws10f{word-spacing:-2.790021pt;}
.wsf5{word-spacing:-2.785637pt;}
.ws121{word-spacing:-2.739243pt;}
.ws15f{word-spacing:-2.736642pt;}
.ws157{word-spacing:-2.735468pt;}
.ws4b{word-spacing:-2.734548pt;}
.ws16a{word-spacing:-2.733027pt;}
.ws11f{word-spacing:-2.732303pt;}
.ws1f{word-spacing:-2.721004pt;}
.ws148{word-spacing:-2.715860pt;}
.ws141{word-spacing:-2.713114pt;}
.ws163{word-spacing:-2.710794pt;}
.ws140{word-spacing:-2.673183pt;}
.ws35{word-spacing:-2.481900pt;}
.ws132{word-spacing:-2.386258pt;}
.ws8b{word-spacing:-2.385457pt;}
.wsf4{word-spacing:-2.290616pt;}
.ws129{word-spacing:-2.147154pt;}
.ws12a{word-spacing:-1.994127pt;}
.ws111{word-spacing:-1.764588pt;}
.ws107{word-spacing:-1.716767pt;}
.ws112{word-spacing:-1.611561pt;}
.ws108{word-spacing:-1.563740pt;}
.ws13d{word-spacing:-1.238559pt;}
.wsf7{word-spacing:-1.190738pt;}
.wsb5{word-spacing:-0.989092pt;}
.ws12b{word-spacing:-0.664709pt;}
.ws9c{word-spacing:-0.324115pt;}
.ws79{word-spacing:-0.217448pt;}
.ws7c{word-spacing:-0.196115pt;}
.ws113{word-spacing:-0.186501pt;}
.ws109{word-spacing:-0.090860pt;}
.ws2{word-spacing:-0.063761pt;}
.ws59{word-spacing:-0.058182pt;}
.ws7f{word-spacing:-0.053134pt;}
.wsf3{word-spacing:-0.047821pt;}
.ws6f{word-spacing:-0.042507pt;}
.ws80{word-spacing:-0.031881pt;}
.ws8{word-spacing:0.000000pt;}
.ws128{word-spacing:0.148244pt;}
.ws124{word-spacing:1.200302pt;}
.ws14b{word-spacing:1.295944pt;}
.ws37{word-spacing:1.439406pt;}
.ws75{word-spacing:1.547885pt;}
.ws14c{word-spacing:3.686984pt;}
.ws5f{word-spacing:5.934550pt;}
.ws98{word-spacing:7.132073pt;}
.wsc3{word-spacing:9.609079pt;}
.wsd2{word-spacing:11.554397pt;}
.wsc7{word-spacing:11.707764pt;}
.wscc{word-spacing:11.944417pt;}
.wse6{word-spacing:12.066298pt;}
.ws90{word-spacing:13.200409pt;}
.wsf0{word-spacing:13.581107pt;}
.wsd4{word-spacing:17.370596pt;}
.wsde{word-spacing:18.053134pt;}
.wsce{word-spacing:18.292022pt;}
.wsc2{word-spacing:18.326149pt;}
.wse5{word-spacing:18.345362pt;}
.ws9f{word-spacing:18.526725pt;}
.wse4{word-spacing:18.618719pt;}
.wsd8{word-spacing:18.633291pt;}
.wsa{word-spacing:18.850925pt;}
.ws87{word-spacing:18.966721pt;}
.ws88{word-spacing:18.967289pt;}
.wse1{word-spacing:19.247575pt;}
.ws4e{word-spacing:20.072744pt;}
.ws67{word-spacing:20.297137pt;}
.wsb3{word-spacing:20.646261pt;}
.ws1{word-spacing:20.722347pt;}
.wsd0{word-spacing:20.802466pt;}
.wsdc{word-spacing:21.192809pt;}
.wse0{word-spacing:21.314710pt;}
.wsca{word-spacing:21.399992pt;}
.wsda{word-spacing:21.502433pt;}
.ws9{word-spacing:22.225473pt;}
.ws72{word-spacing:23.330929pt;}
.ws3c{word-spacing:23.563656pt;}
.ws7a{word-spacing:24.145475pt;}
.ws7b{word-spacing:24.154618pt;}
.wse7{word-spacing:24.454111pt;}
.ws49{word-spacing:25.076385pt;}
.wsd3{word-spacing:25.102710pt;}
.ws55{word-spacing:25.832749pt;}
.wsdf{word-spacing:26.618987pt;}
.wscd{word-spacing:27.369779pt;}
.wsc4{word-spacing:27.574541pt;}
.ws0{word-spacing:27.636455pt;}
.wsdd{word-spacing:27.745175pt;}
.wsc8{word-spacing:27.781691pt;}
.wsd6{word-spacing:27.984064pt;}
.wsc5{word-spacing:28.195753pt;}
.ws42{word-spacing:28.218205pt;}
.wsc0{word-spacing:28.666602pt;}
.wse3{word-spacing:29.180860pt;}
.wse2{word-spacing:29.441385pt;}
.wscf{word-spacing:29.588028pt;}
.wsbf{word-spacing:29.622155pt;}
.ws6{word-spacing:30.487298pt;}
.wsd5{word-spacing:30.577709pt;}
.wsdb{word-spacing:33.787786pt;}
.wsd9{word-spacing:33.839007pt;}
.wsc9{word-spacing:33.839149pt;}
.wsc1{word-spacing:33.941436pt;}
.wsd1{word-spacing:34.097430pt;}
.wscb{word-spacing:36.345156pt;}
.wsc6{word-spacing:37.217644pt;}
.wsd7{word-spacing:39.041181pt;}
.wsee{word-spacing:158.946596pt;}
.wsed{word-spacing:159.791789pt;}
.wsef{word-spacing:159.791846pt;}
.wsb6{word-spacing:286.528533pt;}
.ws69{word-spacing:432.137738pt;}
.wsbc{word-spacing:566.328465pt;}
._37{margin-left:-865.893775pt;}
._38{margin-left:-758.496551pt;}
._2{margin-left:-5.618650pt;}
._5{margin-left:-4.654549pt;}
._4{margin-left:-3.379337pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-0.992134pt;}
._6{width:1.338982pt;}
._1{width:2.295387pt;}
._24{width:3.230437pt;}
._26{width:4.652704pt;}
._44{width:12.050842pt;}
._c{width:14.242325pt;}
._3d{width:15.491698pt;}
._b{width:16.556484pt;}
._10{width:17.671997pt;}
._13{width:18.679693pt;}
._d{width:20.543436pt;}
._7{width:21.840406pt;}
._15{width:22.983583pt;}
._9{width:24.492696pt;}
._18{width:25.432956pt;}
._8{width:26.546812pt;}
._e{width:27.810932pt;}
._16{width:28.985782pt;}
._27{width:30.030291pt;}
._f{width:31.196003pt;}
._12{width:32.657988pt;}
._2b{width:33.574126pt;}
._42{width:35.130896pt;}
._11{width:36.419280pt;}
._17{width:37.767138pt;}
._14{width:39.389768pt;}
._a{width:40.321779pt;}
._43{width:41.314242pt;}
._2a{width:42.540366pt;}
._28{width:43.463600pt;}
._29{width:45.152620pt;}
._25{width:48.347532pt;}
._45{width:49.885616pt;}
._46{width:50.806463pt;}
._21{width:63.948360pt;}
._33{width:78.595661pt;}
._2f{width:87.213942pt;}
._1d{width:116.444634pt;}
._20{width:177.977222pt;}
._3f{width:187.714280pt;}
._19{width:244.061300pt;}
._1b{width:262.268766pt;}
._34{width:283.518214pt;}
._1a{width:286.945894pt;}
._31{width:312.838382pt;}
._2d{width:318.804423pt;}
._1e{width:323.617151pt;}
._2c{width:332.741724pt;}
._35{width:335.040932pt;}
._36{width:339.631676pt;}
._23{width:346.429258pt;}
._32{width:351.081778pt;}
._1c{width:364.574473pt;}
._22{width:369.769210pt;}
._30{width:377.820209pt;}
._1f{width:399.706586pt;}
._3e{width:465.987487pt;}
._40{width:481.675315pt;}
._2e{width:510.407706pt;}
._41{width:514.518267pt;}
._3c{width:579.162680pt;}
._39{width:713.432411pt;}
._3a{width:767.649878pt;}
._3b{width:1598.393077pt;}
.fs13{font-size:22.182488pt;}
.fsf{font-size:22.437440pt;}
.fsd{font-size:26.177013pt;}
.fsa{font-size:28.221076pt;}
.fs10{font-size:29.916587pt;}
.fs5{font-size:31.880533pt;}
.fsb{font-size:32.252562pt;}
.fs12{font-size:34.126907pt;}
.fse{font-size:37.395733pt;}
.fsc{font-size:40.315760pt;}
.fs2{font-size:42.507200pt;}
.fs9{font-size:44.657243pt;}
.fs17{font-size:44.698182pt;}
.fs11{font-size:46.924586pt;}
.fs6{font-size:47.820800pt;}
.fs8{font-size:52.100171pt;}
.fs14{font-size:52.854529pt;}
.fs7{font-size:53.133867pt;}
.fs16{font-size:56.888546pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs15{font-size:73.142400pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y18e{bottom:6.768628pt;}
.y139{bottom:10.272681pt;}
.y19f{bottom:11.360210pt;}
.y114{bottom:11.422928pt;}
.y138{bottom:12.396815pt;}
.y16c{bottom:13.518558pt;}
.y18d{bottom:15.930582pt;}
.y164{bottom:17.052454pt;}
.y113{bottom:17.745966pt;}
.y13b{bottom:25.022942pt;}
.y1a4{bottom:25.489431pt;}
.y116{bottom:26.998437pt;}
.y169{bottom:27.139953pt;}
.y15e{bottom:28.523596pt;}
.y1a0{bottom:29.528277pt;}
.y13a{bottom:31.400404pt;}
.y182{bottom:33.974024pt;}
.y1b0{bottom:34.446035pt;}
.y24{bottom:35.740000pt;}
.y1c0{bottom:36.355306pt;}
.y180{bottom:36.610423pt;}
.y1b7{bottom:37.223176pt;}
.y13c{bottom:37.978405pt;}
.y115{bottom:38.120525pt;}
.y165{bottom:43.659519pt;}
.y13d{bottom:46.221457pt;}
.y137{bottom:47.229373pt;}
.y117{bottom:47.724735pt;}
.y168{bottom:48.287241pt;}
.y10f{bottom:49.217886pt;}
.y161{bottom:50.549683pt;}
.y181{bottom:53.877903pt;}
.y13e{bottom:54.410585pt;}
.y1c8{bottom:56.088648pt;}
.y118{bottom:59.392111pt;}
.y1b6{bottom:60.113416pt;}
.y16e{bottom:62.133011pt;}
.y167{bottom:62.282594pt;}
.y10e{bottom:62.404087pt;}
.y148{bottom:63.233686pt;}
.y119{bottom:71.602736pt;}
.y140{bottom:72.056793pt;}
.y166{bottom:73.585454pt;}
.y160{bottom:73.791131pt;}
.y58{bottom:75.590667pt;}
.y1c4{bottom:76.675561pt;}
.ybc{bottom:76.916000pt;}
.y16b{bottom:79.260257pt;}
.y13f{bottom:79.821089pt;}
.y23{bottom:80.674667pt;}
.y123{bottom:80.811350pt;}
.y192{bottom:81.076000pt;}
.y233{bottom:82.545333pt;}
.y1b5{bottom:83.016895pt;}
.y15f{bottom:84.972455pt;}
.y162{bottom:85.084642pt;}
.y11b{bottom:86.638495pt;}
.y136{bottom:87.759273pt;}
.y141{bottom:88.064147pt;}
.y259{bottom:88.997333pt;}
.y8a{bottom:90.400000pt;}
.y11a{bottom:92.278667pt;}
.y191{bottom:92.965333pt;}
.y1b1{bottom:93.371396pt;}
.y57{bottom:93.656000pt;}
.ybb{bottom:94.982667pt;}
.y142{bottom:95.580520pt;}
.y205{bottom:96.037333pt;}
.y17a{bottom:96.415549pt;}
.y15d{bottom:96.499690pt;}
.y163{bottom:96.555783pt;}
.y232{bottom:97.157333pt;}
.y1be{bottom:97.886971pt;}
.y1b4{bottom:103.343717pt;}
.y11c{bottom:103.522713pt;}
.y258{bottom:103.608000pt;}
.y190{bottom:104.853333pt;}
.y144{bottom:106.384635pt;}
.y173{bottom:107.849295pt;}
.y89{bottom:108.465333pt;}
.y204{bottom:110.649333pt;}
.y56{bottom:111.721333pt;}
.y245{bottom:111.769333pt;}
.yba{bottom:113.048000pt;}
.y11d{bottom:113.193469pt;}
.y187{bottom:113.290374pt;}
.y1bc{bottom:113.608000pt;}
.y143{bottom:117.570220pt;}
.y16a{bottom:119.124109pt;}
.y18a{bottom:119.638300pt;}
.y11e{bottom:122.864182pt;}
.y177{bottom:124.247324pt;}
.y135{bottom:124.376027pt;}
.y156{bottom:125.268514pt;}
.y1b3{bottom:126.088633pt;}
.y1bb{bottom:126.228000pt;}
.y189{bottom:126.373333pt;}
.y231{bottom:126.381333pt;}
.y88{bottom:126.530667pt;}
.y186{bottom:127.108098pt;}
.y1c5{bottom:127.468925pt;}
.y55{bottom:129.788000pt;}
.y10b{bottom:129.870117pt;}
.yb9{bottom:131.113333pt;}
.y203{bottom:131.524000pt;}
.y16d{bottom:131.969543pt;}
.y257{bottom:132.832000pt;}
.y11f{bottom:133.723723pt;}
.y145{bottom:133.948498pt;}
.y184{bottom:135.409950pt;}
.y1ba{bottom:138.117333pt;}
.y131{bottom:140.051791pt;}
.ye8{bottom:140.118667pt;}
.y230{bottom:140.993333pt;}
.y146{bottom:141.864482pt;}
.y10a{bottom:143.056318pt;}
.y179{bottom:143.122820pt;}
.y174{bottom:143.468731pt;}
.y87{bottom:144.596000pt;}
.y1b2{bottom:146.415454pt;}
.y256{bottom:147.444000pt;}
.y54{bottom:147.853333pt;}
.y120{bottom:148.494930pt;}
.yb8{bottom:149.178667pt;}
.y147{bottom:150.206822pt;}
.y1b9{bottom:150.669333pt;}
.y15c{bottom:150.942330pt;}
.y170{bottom:153.481439pt;}
.y1af{bottom:154.089080pt;}
.y244{bottom:155.605333pt;}
.y109{bottom:156.242519pt;}
.y195{bottom:156.352981pt;}
.y155{bottom:156.437612pt;}
.y178{bottom:156.996637pt;}
.ye7{bottom:158.184000pt;}
.y19d{bottom:158.223566pt;}
.y17f{bottom:158.810331pt;}
.y121{bottom:159.132216pt;}
.y86{bottom:162.662667pt;}
.y185{bottom:163.176282pt;}
.y1b8{bottom:163.953333pt;}
.y172{bottom:164.924533pt;}
.y14a{bottom:165.279360pt;}
.y53{bottom:165.918667pt;}
.yb7{bottom:167.244000pt;}
.y122{bottom:167.293116pt;}
.y202{bottom:167.444000pt;}
.y108{bottom:169.428720pt;}
.y22{bottom:169.598667pt;}
.y22f{bottom:170.217333pt;}
.y175{bottom:170.739569pt;}
.y130{bottom:172.972113pt;}
.ye6{bottom:176.249333pt;}
.y134{bottom:176.283051pt;}
.y255{bottom:176.668000pt;}
.y14b{bottom:176.872656pt;}
.y1c6{bottom:178.252050pt;}
.y17d{bottom:178.508533pt;}
.y19c{bottom:178.545736pt;}
.y125{bottom:179.913983pt;}
.y85{bottom:180.728000pt;}
.y10d{bottom:182.492068pt;}
.y107{bottom:182.614920pt;}
.y52{bottom:183.984000pt;}
.y243{bottom:184.828000pt;}
.y22e{bottom:184.829333pt;}
.yb6{bottom:185.310667pt;}
.y1ae{bottom:186.202667pt;}
.y154{bottom:187.303349pt;}
.y21{bottom:187.664000pt;}
.y126{bottom:189.196650pt;}
.y254{bottom:191.280000pt;}
.ye5{bottom:194.316000pt;}
.y10c{bottom:195.678269pt;}
.y106{bottom:195.801121pt;}
.y149{bottom:196.172288pt;}
.y84{bottom:198.793333pt;}
.y12f{bottom:198.863885pt;}
.y19b{bottom:198.879637pt;}
.y242{bottom:199.440000pt;}
.y17b{bottom:199.749310pt;}
.y17e{bottom:200.487875pt;}
.y51{bottom:202.049333pt;}
.yb5{bottom:203.376000pt;}
.y1ce{bottom:203.817277pt;}
.y14c{bottom:204.127082pt;}
.y20{bottom:205.730667pt;}
.y253{bottom:205.892000pt;}
.y124{bottom:207.271734pt;}
.y196{bottom:208.667431pt;}
.y14d{bottom:213.034345pt;}
.y22d{bottom:214.052000pt;}
.y127{bottom:214.566353pt;}
.y83{bottom:216.858667pt;}
.y19a{bottom:216.925965pt;}
.ye4{bottom:218.644000pt;}
.y128{bottom:219.885511pt;}
.y50{bottom:220.116000pt;}
.yb4{bottom:221.441333pt;}
.y201{bottom:222.566667pt;}
.y1cd{bottom:222.792739pt;}
.y1f{bottom:223.796000pt;}
.y188{bottom:225.122315pt;}
.y14f{bottom:227.513732pt;}
.y22c{bottom:228.664000pt;}
.y1c7{bottom:229.045244pt;}
.y252{bottom:235.116000pt;}
.y12a{bottom:235.481147pt;}
.y105{bottom:235.594018pt;}
.y199{bottom:237.119093pt;}
.y200{bottom:237.178667pt;}
.y4f{bottom:238.181333pt;}
.yb3{bottom:239.506667pt;}
.y111{bottom:239.620000pt;}
.y150{bottom:240.854717pt;}
.y82{bottom:241.186667pt;}
.y1c9{bottom:241.498392pt;}
.y1d8{bottom:241.546667pt;}
.y1e{bottom:241.861333pt;}
.y241{bottom:243.276000pt;}
.y104{bottom:248.780219pt;}
.y151{bottom:249.018651pt;}
.y251{bottom:249.726667pt;}
.y18f{bottom:249.794150pt;}
.y12b{bottom:250.805156pt;}
.y110{bottom:252.240000pt;}
.y1d7{bottom:253.436000pt;}
.y132{bottom:254.294748pt;}
.y197{bottom:255.165426pt;}
.y4e{bottom:256.246667pt;}
.y14e{bottom:256.307230pt;}
.y12c{bottom:256.900394pt;}
.yb2{bottom:257.572000pt;}
.y22b{bottom:257.888000pt;}
.y1d{bottom:259.926667pt;}
.ye3{bottom:261.037333pt;}
.y103{bottom:261.966420pt;}
.y194{bottom:262.573105pt;}
.y129{bottom:263.604402pt;}
.y1ff{bottom:263.745333pt;}
.y250{bottom:264.338667pt;}
.y1d6{bottom:265.988000pt;}
.y1bf{bottom:267.821998pt;}
.y152{bottom:269.031387pt;}
.y18b{bottom:270.062637pt;}
.y81{bottom:272.309333pt;}
.y12d{bottom:272.470829pt;}
.y22a{bottom:272.500000pt;}
.yf6{bottom:273.758667pt;}
.y4d{bottom:274.312000pt;}
.yb1{bottom:275.638667pt;}
.y1c{bottom:277.992000pt;}
.y1fe{bottom:278.357333pt;}
.ye2{bottom:279.102667pt;}
.y1d5{bottom:279.272000pt;}
.y12e{bottom:282.569924pt;}
.y153{bottom:282.964252pt;}
.y1ca{bottom:284.668976pt;}
.y229{bottom:287.112000pt;}
.y80{bottom:290.374667pt;}
.y4c{bottom:292.377333pt;}
.y1d4{bottom:292.556000pt;}
.y24f{bottom:293.562667pt;}
.y1b{bottom:296.057333pt;}
.ye1{bottom:297.168000pt;}
.y102{bottom:299.510021pt;}
.yb0{bottom:299.966667pt;}
.y133{bottom:300.774867pt;}
.y157{bottom:300.774870pt;}
.y240{bottom:301.724000pt;}
.y1fd{bottom:304.924000pt;}
.y1d3{bottom:305.838667pt;}
.y24e{bottom:308.174667pt;}
.y7f{bottom:308.440000pt;}
.y4b{bottom:310.444000pt;}
.y101{bottom:312.696221pt;}
.yf8{bottom:313.861655pt;}
.y1a{bottom:314.124000pt;}
.ye0{bottom:315.234667pt;}
.y228{bottom:316.336000pt;}
.y1d2{bottom:319.122667pt;}
.y1fc{bottom:319.536000pt;}
.y100{bottom:325.882422pt;}
.y7e{bottom:326.505333pt;}
.y4a{bottom:328.509333pt;}
.y227{bottom:330.948000pt;}
.y19{bottom:332.189333pt;}
.y1d1{bottom:332.406667pt;}
.ydf{bottom:333.300000pt;}
.y1fb{bottom:334.148000pt;}
.y24d{bottom:337.398667pt;}
.yff{bottom:339.068623pt;}
.y1c1{bottom:340.987707pt;}
.yaf{bottom:342.360000pt;}
.y7d{bottom:344.572000pt;}
.y23f{bottom:345.558667pt;}
.y1d0{bottom:345.689333pt;}
.y49{bottom:346.574667pt;}
.y18{bottom:350.254667pt;}
.yde{bottom:351.365333pt;}
.y24c{bottom:352.010667pt;}
.yfb{bottom:352.254813pt;}
.yfe{bottom:352.254824pt;}
.y183{bottom:355.119233pt;}
.y1cf{bottom:358.309333pt;}
.y226{bottom:360.170667pt;}
.yae{bottom:360.425333pt;}
.y1fa{bottom:360.714667pt;}
.y7c{bottom:362.637333pt;}
.y48{bottom:364.640000pt;}
.yfa{bottom:365.441014pt;}
.yfd{bottom:365.441025pt;}
.y17{bottom:368.320000pt;}
.ydd{bottom:369.430667pt;}
.y225{bottom:374.782667pt;}
.y1f9{bottom:375.326667pt;}
.y176{bottom:377.238809pt;}
.yad{bottom:378.490667pt;}
.yf9{bottom:378.627215pt;}
.yfc{bottom:378.627226pt;}
.y1bd{bottom:379.828000pt;}
.y7b{bottom:380.702667pt;}
.y24b{bottom:381.234667pt;}
.y47{bottom:382.705333pt;}
.y1c2{bottom:384.737019pt;}
.y16{bottom:386.385333pt;}
.ydc{bottom:387.496000pt;}
.y23e{bottom:389.394667pt;}
.y198{bottom:389.686978pt;}
.y1a1{bottom:389.849072pt;}
.y1f8{bottom:389.938667pt;}
.y24a{bottom:395.845333pt;}
.y7a{bottom:398.768000pt;}
.y46{bottom:400.772000pt;}
.y1a3{bottom:403.910042pt;}
.y1a2{bottom:403.978294pt;}
.y224{bottom:404.006667pt;}
.y15{bottom:404.452000pt;}
.y1f7{bottom:404.550667pt;}
.yab{bottom:404.782667pt;}
.ydb{bottom:405.562667pt;}
.y19e{bottom:407.948949pt;}
.yac{bottom:413.956000pt;}
.y79{bottom:416.833333pt;}
.y223{bottom:418.618667pt;}
.y45{bottom:418.837333pt;}
.y1f6{bottom:419.162667pt;}
.yf7{bottom:420.340368pt;}
.y18c{bottom:420.486975pt;}
.y14{bottom:422.517333pt;}
.y171{bottom:422.534391pt;}
.yaa{bottom:423.164000pt;}
.y249{bottom:425.069333pt;}
.y1c3{bottom:428.652942pt;}
.y222{bottom:433.230667pt;}
.y78{bottom:434.900000pt;}
.y17c{bottom:436.342765pt;}
.y44{bottom:436.902667pt;}
.y248{bottom:439.681333pt;}
.y13{bottom:440.582667pt;}
.yda{bottom:441.693333pt;}
.y1f5{bottom:445.729333pt;}
.y23d{bottom:447.842667pt;}
.y77{bottom:452.965333pt;}
.y247{bottom:454.293333pt;}
.y1cc{bottom:454.410062pt;}
.y43{bottom:454.968000pt;}
.ya9{bottom:455.216000pt;}
.y12{bottom:458.648000pt;}
.yd9{bottom:459.758667pt;}
.y1f4{bottom:460.341333pt;}
.y221{bottom:462.454667pt;}
.y76{bottom:471.030667pt;}
.y42{bottom:473.033333pt;}
.ya8{bottom:473.282667pt;}
.y1f3{bottom:474.953333pt;}
.y1ad{bottom:475.062667pt;}
.y246{bottom:475.168000pt;}
.y16f{bottom:475.234328pt;}
.y1cb{bottom:476.377832pt;}
.y11{bottom:476.713333pt;}
.y220{bottom:477.066667pt;}
.yd8{bottom:477.824000pt;}
.y1ac{bottom:487.681333pt;}
.y75{bottom:489.096000pt;}
.y41{bottom:491.100000pt;}
.ya7{bottom:491.348000pt;}
.y23c{bottom:491.677333pt;}
.y10{bottom:494.780000pt;}
.yd7{bottom:495.890667pt;}
.y1f2{bottom:501.520000pt;}
.y1ab{bottom:501.549333pt;}
.y21f{bottom:506.289333pt;}
.y74{bottom:507.161333pt;}
.y40{bottom:509.165333pt;}
.ya6{bottom:509.413333pt;}
.yf{bottom:512.845333pt;}
.y1aa{bottom:513.438667pt;}
.yd6{bottom:513.956000pt;}
.y21e{bottom:520.901333pt;}
.y73{bottom:525.228000pt;}
.y3f{bottom:527.230667pt;}
.y1a9{bottom:527.306667pt;}
.ya5{bottom:527.478667pt;}
.y1f1{bottom:528.086667pt;}
.ye{bottom:530.910667pt;}
.yd5{bottom:532.021333pt;}
.y23b{bottom:535.513333pt;}
.y1a8{bottom:539.194667pt;}
.y1f0{bottom:542.698667pt;}
.y72{bottom:543.293333pt;}
.y3e{bottom:545.296000pt;}
.ya4{bottom:545.544000pt;}
.yd{bottom:548.976000pt;}
.yd4{bottom:550.086667pt;}
.y21d{bottom:550.125333pt;}
.y1a7{bottom:551.084000pt;}
.y71{bottom:561.358667pt;}
.y3d{bottom:563.361333pt;}
.ya3{bottom:563.610667pt;}
.y1a6{bottom:563.637333pt;}
.y21c{bottom:564.737333pt;}
.yc{bottom:567.041333pt;}
.yd3{bottom:568.152000pt;}
.y1ef{bottom:569.265333pt;}
.y1a5{bottom:576.920000pt;}
.y21b{bottom:579.349333pt;}
.y70{bottom:579.424000pt;}
.y3c{bottom:581.426667pt;}
.ya2{bottom:581.676000pt;}
.y1ee{bottom:583.877333pt;}
.yb{bottom:585.108000pt;}
.yd2{bottom:586.217333pt;}
.y21a{bottom:593.961333pt;}
.y6f{bottom:597.489333pt;}
.y1ed{bottom:598.489333pt;}
.y193{bottom:599.170667pt;}
.y3b{bottom:599.493333pt;}
.yd1{bottom:604.284000pt;}
.ya1{bottom:605.053333pt;}
.y23a{bottom:608.573333pt;}
.y6e{bottom:615.556000pt;}
.y3a{bottom:617.558667pt;}
.ya{bottom:619.113333pt;}
.y9e{bottom:621.282667pt;}
.yd0{bottom:622.349333pt;}
.y219{bottom:623.185333pt;}
.y1ec{bottom:625.057333pt;}
.y6d{bottom:633.621333pt;}
.ya0{bottom:634.217333pt;}
.y39{bottom:635.624000pt;}
.y218{bottom:637.797333pt;}
.y9f{bottom:638.202667pt;}
.y1eb{bottom:639.668000pt;}
.ycf{bottom:640.414667pt;}
.y9{bottom:643.441333pt;}
.y6c{bottom:651.686667pt;}
.y239{bottom:652.408000pt;}
.y38{bottom:653.689333pt;}
.y1ea{bottom:654.280000pt;}
.yce{bottom:658.480000pt;}
.y9d{bottom:663.500000pt;}
.y217{bottom:667.020000pt;}
.y6b{bottom:669.752000pt;}
.y37{bottom:671.754667pt;}
.y15b{bottom:674.330667pt;}
.ycd{bottom:676.545333pt;}
.y8{bottom:679.361333pt;}
.y1e9{bottom:680.848000pt;}
.y9c{bottom:681.565333pt;}
.y216{bottom:681.632000pt;}
.y15a{bottom:686.884000pt;}
.y6a{bottom:687.817333pt;}
.y36{bottom:689.821333pt;}
.y1e8{bottom:695.460000pt;}
.y25b{bottom:696.244000pt;}
.y9b{bottom:699.632000pt;}
.y159{bottom:700.168000pt;}
.y69{bottom:705.882667pt;}
.y35{bottom:707.886667pt;}
.y215{bottom:710.856000pt;}
.ycc{bottom:712.677333pt;}
.y158{bottom:712.786667pt;}
.y9a{bottom:717.697333pt;}
.y1e7{bottom:722.026667pt;}
.y68{bottom:723.949333pt;}
.y214{bottom:725.468000pt;}
.y34{bottom:725.952000pt;}
.ycb{bottom:730.742667pt;}
.y112{bottom:734.306667pt;}
.y99{bottom:735.762667pt;}
.y1e6{bottom:736.638667pt;}
.y213{bottom:740.080000pt;}
.y67{bottom:742.014667pt;}
.y33{bottom:744.017333pt;}
.yca{bottom:748.808000pt;}
.y238{bottom:754.692000pt;}
.yf5{bottom:757.365333pt;}
.y66{bottom:760.080000pt;}
.y32{bottom:762.082667pt;}
.y7{bottom:762.944000pt;}
.y1e5{bottom:763.205333pt;}
.yc9{bottom:766.873333pt;}
.y212{bottom:769.304000pt;}
.y98{bottom:771.445333pt;}
.y1e4{bottom:777.817333pt;}
.y65{bottom:778.145333pt;}
.y31{bottom:780.149333pt;}
.y211{bottom:783.916000pt;}
.yc8{bottom:784.940000pt;}
.y97{bottom:787.385333pt;}
.y64{bottom:796.210667pt;}
.y6{bottom:797.481333pt;}
.y30{bottom:798.214667pt;}
.y210{bottom:798.526667pt;}
.yc7{bottom:803.005333pt;}
.y96{bottom:803.326667pt;}
.y1e3{bottom:804.384000pt;}
.y237{bottom:813.138667pt;}
.y63{bottom:814.277333pt;}
.yf4{bottom:817.269333pt;}
.y1e2{bottom:818.996000pt;}
.y95{bottom:819.266667pt;}
.yc6{bottom:821.070667pt;}
.y5{bottom:821.862667pt;}
.y20f{bottom:827.750667pt;}
.y2f{bottom:828.033333pt;}
.y62{bottom:832.342667pt;}
.yf3{bottom:833.209333pt;}
.y94{bottom:835.206667pt;}
.y20e{bottom:842.362667pt;}
.yc5{bottom:845.398667pt;}
.y1e1{bottom:845.562667pt;}
.y2e{bottom:846.098667pt;}
.y4{bottom:849.137333pt;}
.yf2{bottom:849.149333pt;}
.y61{bottom:850.408000pt;}
.y93{bottom:851.146667pt;}
.y20d{bottom:856.974667pt;}
.y1e0{bottom:860.174667pt;}
.y2d{bottom:864.164000pt;}
.yf1{bottom:865.089333pt;}
.y92{bottom:867.086667pt;}
.y60{bottom:868.473333pt;}
.yc4{bottom:869.726667pt;}
.y236{bottom:871.586667pt;}
.yf0{bottom:881.030667pt;}
.y2c{bottom:882.230667pt;}
.y91{bottom:883.026667pt;}
.y20c{bottom:886.198667pt;}
.y5f{bottom:886.538667pt;}
.y1df{bottom:886.742667pt;}
.yc3{bottom:887.792000pt;}
.yef{bottom:896.970667pt;}
.y90{bottom:898.968000pt;}
.y3{bottom:899.614667pt;}
.y2b{bottom:900.296000pt;}
.y20b{bottom:900.810667pt;}
.y1de{bottom:901.353333pt;}
.y5e{bottom:904.605333pt;}
.yc2{bottom:905.858667pt;}
.yee{bottom:912.910667pt;}
.y8f{bottom:914.908000pt;}
.y235{bottom:915.422667pt;}
.y1dd{bottom:915.965333pt;}
.y2a{bottom:918.361333pt;}
.y5d{bottom:922.670667pt;}
.yc1{bottom:923.924000pt;}
.y2{bottom:928.838667pt;}
.yed{bottom:928.850667pt;}
.y20a{bottom:930.034667pt;}
.y8e{bottom:930.848000pt;}
.y29{bottom:936.426667pt;}
.y5c{bottom:940.736000pt;}
.yc0{bottom:941.989333pt;}
.y1dc{bottom:942.533333pt;}
.y209{bottom:944.646667pt;}
.yec{bottom:945.322667pt;}
.y8d{bottom:947.320000pt;}
.y28{bottom:954.492000pt;}
.y1db{bottom:957.145333pt;}
.y1{bottom:958.062667pt;}
.y5b{bottom:958.801333pt;}
.y25a{bottom:959.257333pt;}
.ybf{bottom:960.054667pt;}
.yeb{bottom:972.553333pt;}
.y27{bottom:972.558667pt;}
.y208{bottom:973.869333pt;}
.y8c{bottom:974.550667pt;}
.ybe{bottom:978.120000pt;}
.y5a{bottom:983.129333pt;}
.y1da{bottom:983.712000pt;}
.yea{bottom:984.442667pt;}
.y8b{bottom:986.440000pt;}
.y207{bottom:988.481333pt;}
.ybd{bottom:996.186667pt;}
.y1d9{bottom:998.324000pt;}
.y26{bottom:1002.498667pt;}
.y234{bottom:1003.093333pt;}
.y59{bottom:1014.252000pt;}
.y206{bottom:1017.705333pt;}
.ye9{bottom:1030.192000pt;}
.y25{bottom:1032.317333pt;}
.hf{height:0.000000pt;}
.ha{height:21.200555pt;}
.h22{height:23.401549pt;}
.h27{height:25.731687pt;}
.h1e{height:27.301807pt;}
.h4{height:28.692360pt;}
.h1f{height:28.760240pt;}
.he{height:29.499997pt;}
.h23{height:31.202065pt;}
.h18{height:32.567121pt;}
.h32{height:33.187635pt;}
.hb{height:35.865600pt;}
.h19{height:36.574406pt;}
.h1c{height:37.219457pt;}
.h20{height:39.002581pt;}
.h26{height:39.382451pt;}
.h29{height:39.843142pt;}
.h2a{height:39.843143pt;}
.hd{height:39.850400pt;}
.h28{height:40.030828pt;}
.h9{height:40.378215pt;}
.h2b{height:41.515221pt;}
.h8{height:43.636400pt;}
.h7{height:44.632747pt;}
.h5{height:45.525402pt;}
.h1a{height:45.718071pt;}
.hc{height:49.807027pt;}
.h1b{height:50.315115pt;}
.h11{height:50.614663pt;}
.h14{height:50.641313pt;}
.h15{height:51.534458pt;}
.h31{height:51.581702pt;}
.h3{height:51.833693pt;}
.h10{height:53.521330pt;}
.h6{height:53.559147pt;}
.h25{height:54.150973pt;}
.h13{height:60.123598pt;}
.h2d{height:60.994127pt;}
.h2{height:64.454458pt;}
.h30{height:65.649382pt;}
.h2f{height:84.406330pt;}
.h16{height:104.279262pt;}
.h2c{height:205.186368pt;}
.h17{height:309.927193pt;}
.h24{height:412.722600pt;}
.h12{height:446.093717pt;}
.h1d{height:500.326865pt;}
.h2e{height:503.933858pt;}
.h21{height:529.149627pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:453.550513pt;}
.w4{width:502.467771pt;}
.w5{width:529.149627pt;}
.w6{width:604.686600pt;}
.w8{width:604.720630pt;}
.w7{width:604.729507pt;}
.w3{width:604.736015pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:3.161754pt;}
.x4e{left:6.245495pt;}
.x5a{left:7.833357pt;}
.x4b{left:10.489503pt;}
.x25{left:12.055374pt;}
.x22{left:13.732499pt;}
.x48{left:14.696523pt;}
.x5b{left:21.099804pt;}
.x2f{left:24.073503pt;}
.x1a{left:25.823842pt;}
.x49{left:27.448468pt;}
.x33{left:35.507249pt;}
.x37{left:36.442142pt;}
.x2e{left:39.396405pt;}
.x5f{left:40.964737pt;}
.x20{left:44.090238pt;}
.x1b{left:46.957164pt;}
.x5e{left:48.189582pt;}
.x23{left:52.564608pt;}
.x30{left:54.784749pt;}
.x55{left:56.079739pt;}
.x51{left:57.000312pt;}
.x50{left:58.122483pt;}
.x4f{left:60.269283pt;}
.x38{left:65.788444pt;}
.x44{left:69.621507pt;}
.x8{left:75.590667pt;}
.x5c{left:77.294667pt;}
.x28{left:78.566667pt;}
.x5d{left:79.793333pt;}
.x60{left:80.716000pt;}
.x17{left:82.081333pt;}
.x27{left:84.430667pt;}
.x58{left:85.658667pt;}
.x57{left:87.404000pt;}
.x62{left:90.136000pt;}
.x5{left:91.248000pt;}
.xd{left:93.368000pt;}
.x1e{left:94.488000pt;}
.xb{left:96.089333pt;}
.xa{left:98.172000pt;}
.x56{left:99.129333pt;}
.x9{left:100.641333pt;}
.x2d{left:106.783517pt;}
.xe{left:111.954667pt;}
.x2a{left:113.112744pt;}
.x1{left:123.697333pt;}
.x19{left:125.039349pt;}
.x21{left:127.070583pt;}
.x40{left:128.183225pt;}
.x47{left:132.284000pt;}
.x16{left:138.216000pt;}
.x3b{left:142.861050pt;}
.x2c{left:144.010969pt;}
.x29{left:154.712091pt;}
.x61{left:161.394667pt;}
.x18{left:170.078667pt;}
.x31{left:172.487820pt;}
.x42{left:178.162623pt;}
.x43{left:184.650782pt;}
.x2{left:192.881333pt;}
.x45{left:201.712586pt;}
.x2b{left:204.096564pt;}
.x35{left:223.673230pt;}
.x3e{left:227.655876pt;}
.x3f{left:232.573415pt;}
.x4a{left:245.605828pt;}
.x1f{left:254.795396pt;}
.x3c{left:256.020539pt;}
.x52{left:257.231066pt;}
.x54{left:258.694251pt;}
.x1c{left:263.251584pt;}
.x1d{left:266.713333pt;}
.x3{left:270.061333pt;}
.x32{left:275.615904pt;}
.x14{left:299.809333pt;}
.x34{left:311.450365pt;}
.x10{left:322.328000pt;}
.xf{left:329.010667pt;}
.x41{left:335.056422pt;}
.x39{left:336.935557pt;}
.x7{left:338.537333pt;}
.x4{left:348.161333pt;}
.x36{left:349.743596pt;}
.x46{left:350.921562pt;}
.x12{left:355.793333pt;}
.x11{left:361.961333pt;}
.x3a{left:365.599387pt;}
.x6{left:374.198667pt;}
.x13{left:377.614667pt;}
.x63{left:389.577333pt;}
.xc{left:393.214667pt;}
.x3d{left:404.004805pt;}
.x4c{left:411.295653pt;}
.x4d{left:455.246417pt;}
.x53{left:459.666380pt;}
.x26{left:503.901560pt;}
.x59{left:509.613745pt;}
.x15{left:699.524000pt;}
}




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