
    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_9582d33c5cf522ce1dc3579e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.839000;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_9cf8db033202011a8284af73.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_0a6d48e4ce6ebe47f2a2daf1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_43a3139b62c9bb4e44afeac7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.723000;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_e6955765261896ef83ac90e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;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_8a8c3b083c9e34dfc8414a82.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_e0bdc14572e8db6905a0ad58.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.391000;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_6e514f8ab7de8f25f7954934.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;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_8ceba26bacfdc46f81eea92c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;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_2b38b1f1a890a9740388a584.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_26ed673a813662d51f2838bb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;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_b181cb0598c875e3be0346d4.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;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_572d7b3f92c7e1408ec190cf.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_26ed673a813662d51f2838bb.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;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_b181cb0598c875e3be0346d4.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000488;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_572d7b3f92c7e1408ec190cf.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e00bd519839b4cfa191049a4.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;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_b3bef5267a0174644a61d37d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000488;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_83c2157d9ed20aa62a0c69cd.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_6e514f8ab7de8f25f7954934.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000488;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_6e1185d2d90e2f8c4a6bb05a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;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_2bfda34c182b2d91a63e08c5.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_6e514f8ab7de8f25f7954934.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000488;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_6e1185d2d90e2f8c4a6bb05a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000488;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_2bfda34c182b2d91a63e08c5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_6e514f8ab7de8f25f7954934.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000488;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_60c3d95ce79b95fc827c3981.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000488;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_a2b532e9237a6313bffb968f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_6e514f8ab7de8f25f7954934.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.000488;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_60c3d95ce79b95fc827c3981.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.000488;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_a2b532e9237a6313bffb968f.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_2e0fe68c7ddc89129f442ef7.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.873000;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_b65bfcd5b7a93183f217a648.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.000488;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_ed05dc04e3daa5492af57ad3.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.000488;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_4f7e37de798a3c4c4e7580d9.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_0555aef191da035e2b6a6846.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_7d359a0d33b7701b81239a9a.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.009000;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;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:32.874000px;}
.v4{vertical-align:40.322484px;}
.ls32{letter-spacing:-1.707408px;}
.ls33{letter-spacing:-0.991980px;}
.ls54{letter-spacing:-0.318636px;}
.ls25{letter-spacing:-0.216432px;}
.ls69{letter-spacing:-0.210420px;}
.ls68{letter-spacing:-0.204408px;}
.ls6d{letter-spacing:-0.172800px;}
.ls6a{letter-spacing:-0.150300px;}
.ls4e{letter-spacing:-0.138276px;}
.ls29{letter-spacing:-0.126252px;}
.ls24{letter-spacing:-0.120240px;}
.ls23{letter-spacing:-0.108216px;}
.ls2e{letter-spacing:-0.102204px;}
.ls1e{letter-spacing:-0.090972px;}
.ls40{letter-spacing:-0.090180px;}
.ls3e{letter-spacing:-0.086184px;}
.ls28{letter-spacing:-0.084168px;}
.ls41{letter-spacing:-0.078156px;}
.ls30{letter-spacing:-0.066132px;}
.ls2c{letter-spacing:-0.060120px;}
.ls6c{letter-spacing:-0.059400px;}
.ls34{letter-spacing:-0.054108px;}
.ls2f{letter-spacing:-0.048096px;}
.ls21{letter-spacing:-0.042084px;}
.ls31{letter-spacing:-0.036072px;}
.ls27{letter-spacing:-0.030060px;}
.ls2a{letter-spacing:-0.024048px;}
.ls26{letter-spacing:-0.018036px;}
.ls1f{letter-spacing:-0.014364px;}
.ls2d{letter-spacing:-0.012024px;}
.ls20{letter-spacing:-0.010800px;}
.ls2b{letter-spacing:-0.006012px;}
.ls3f{letter-spacing:-0.004788px;}
.ls7{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000154px;}
.ls0{letter-spacing:0.000240px;}
.lsb{letter-spacing:0.000990px;}
.lsa{letter-spacing:0.001080px;}
.ls1b{letter-spacing:0.001193px;}
.ls72{letter-spacing:0.001233px;}
.ls36{letter-spacing:0.001298px;}
.ls4c{letter-spacing:0.001331px;}
.ls1c{letter-spacing:0.001518px;}
.ls43{letter-spacing:0.001673px;}
.ls57{letter-spacing:0.001890px;}
.ls5c{letter-spacing:0.002589px;}
.ls73{letter-spacing:0.002818px;}
.ls56{letter-spacing:0.002940px;}
.ls5{letter-spacing:0.002958px;}
.ls52{letter-spacing:0.003049px;}
.ls4{letter-spacing:0.003494px;}
.ls4b{letter-spacing:0.003643px;}
.ls5b{letter-spacing:0.003859px;}
.ls1d{letter-spacing:0.004176px;}
.ls44{letter-spacing:0.004646px;}
.ls5a{letter-spacing:0.004800px;}
.ls5e{letter-spacing:0.005400px;}
.ls37{letter-spacing:0.005415px;}
.ls17{letter-spacing:0.006012px;}
.ls3c{letter-spacing:0.010800px;}
.ls13{letter-spacing:0.012024px;}
.ls3d{letter-spacing:0.016200px;}
.ls4f{letter-spacing:0.018036px;}
.ls63{letter-spacing:0.021600px;}
.ls15{letter-spacing:0.024048px;}
.ls10{letter-spacing:0.027000px;}
.ls19{letter-spacing:0.030060px;}
.ls3a{letter-spacing:0.032400px;}
.ls18{letter-spacing:0.036072px;}
.ls51{letter-spacing:0.037800px;}
.ls11{letter-spacing:0.042084px;}
.lsd{letter-spacing:0.043092px;}
.ls14{letter-spacing:0.048096px;}
.ls62{letter-spacing:0.048600px;}
.ls38{letter-spacing:0.052668px;}
.ls60{letter-spacing:0.054000px;}
.ls12{letter-spacing:0.054108px;}
.ls4a{letter-spacing:0.059400px;}
.ls49{letter-spacing:0.060120px;}
.ls61{letter-spacing:0.064800px;}
.ls1a{letter-spacing:0.066132px;}
.ls50{letter-spacing:0.070200px;}
.ls22{letter-spacing:0.072144px;}
.ls66{letter-spacing:0.075600px;}
.ls16{letter-spacing:0.078156px;}
.ls46{letter-spacing:0.084168px;}
.ls5f{letter-spacing:0.096192px;}
.ls65{letter-spacing:0.102600px;}
.ls47{letter-spacing:0.120240px;}
.ls3b{letter-spacing:0.138276px;}
.lsf{letter-spacing:0.172368px;}
.lse{letter-spacing:0.181944px;}
.ls67{letter-spacing:0.183600px;}
.ls39{letter-spacing:0.191520px;}
.ls45{letter-spacing:0.192384px;}
.ls74{letter-spacing:0.524565px;}
.ls8{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls35{letter-spacing:7.292556px;}
.ls6b{letter-spacing:8.110800px;}
.ls48{letter-spacing:11.621196px;}
.ls6{letter-spacing:11.954850px;}
.ls75{letter-spacing:13.248625px;}
.ls6f{letter-spacing:13.448400px;}
.ls6e{letter-spacing:13.454400px;}
.ls70{letter-spacing:13.468047px;}
.ls53{letter-spacing:14.943900px;}
.ls42{letter-spacing:14.966988px;}
.ls71{letter-spacing:14.997459px;}
.ls55{letter-spacing:15.182271px;}
.ls5d{letter-spacing:15.183002px;}
.ls4d{letter-spacing:21.997421px;}
.ls1{letter-spacing:70.236600px;}
.ls64{letter-spacing:70.345800px;}
.ls2{letter-spacing:72.353510px;}
.lsc{letter-spacing:93.543361px;}
.ls58{letter-spacing:312.112800px;}
.ls59{letter-spacing:345.742800px;}
.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;}
}
.ws0{word-spacing:-104.279312px;}
.ws1{word-spacing:-26.899200px;}
.wsf{word-spacing:-17.394700px;}
.ws103{word-spacing:-15.655334px;}
.ws31{word-spacing:-14.943900px;}
.ws26{word-spacing:-13.915795px;}
.ws108{word-spacing:-13.510800px;}
.wsff{word-spacing:-13.449600px;}
.ws80{word-spacing:-12.161520px;}
.ws3a{word-spacing:-12.151944px;}
.ws24{word-spacing:-11.955150px;}
.ws5{word-spacing:-11.357400px;}
.ws81{word-spacing:-4.363619px;}
.wsc3{word-spacing:-3.877740px;}
.wsc4{word-spacing:-3.474936px;}
.ws1a{word-spacing:-3.227882px;}
.wsae{word-spacing:-3.180348px;}
.ws3c{word-spacing:-2.988780px;}
.wsc2{word-spacing:-2.813616px;}
.ws33{word-spacing:-2.809453px;}
.ws8d{word-spacing:-2.446884px;}
.ws5c{word-spacing:-2.416824px;}
.ws8c{word-spacing:-2.398788px;}
.ws32{word-spacing:-2.331248px;}
.ws5d{word-spacing:-2.326644px;}
.wsdd{word-spacing:-2.271473px;}
.wsf4{word-spacing:-2.151922px;}
.ws4b{word-spacing:-2.116224px;}
.ws56{word-spacing:-2.092176px;}
.wsa5{word-spacing:-2.092146px;}
.ws4a{word-spacing:-2.080152px;}
.ws69{word-spacing:-2.068128px;}
.wscd{word-spacing:-2.056104px;}
.ws57{word-spacing:-2.044080px;}
.ws55{word-spacing:-1.941876px;}
.wsfd{word-spacing:-1.912819px;}
.ws8{word-spacing:-1.908367px;}
.ws28{word-spacing:-1.853044px;}
.ws98{word-spacing:-1.785564px;}
.ws97{word-spacing:-1.743480px;}
.ws16{word-spacing:-1.733492px;}
.ws60{word-spacing:-1.701396px;}
.ws5f{word-spacing:-1.659312px;}
.ws7a{word-spacing:-1.554166px;}
.ws3f{word-spacing:-1.494390px;}
.wsa8{word-spacing:-1.418832px;}
.ws150{word-spacing:-1.398758px;}
.ws75{word-spacing:-1.388772px;}
.wsec{word-spacing:-1.382760px;}
.ws107{word-spacing:-1.374839px;}
.ws76{word-spacing:-1.358712px;}
.wseb{word-spacing:-1.340676px;}
.wsde{word-spacing:-1.334664px;}
.ws7{word-spacing:-1.322630px;}
.ws7b{word-spacing:-1.315063px;}
.ws2f{word-spacing:-1.195512px;}
.ws14a{word-spacing:-1.129766px;}
.ws94{word-spacing:-1.028052px;}
.wsb3{word-spacing:-1.022040px;}
.wsee{word-spacing:-1.010016px;}
.ws62{word-spacing:-0.979956px;}
.ws34{word-spacing:-0.956410px;}
.ws63{word-spacing:-0.955908px;}
.ws4c{word-spacing:-0.949896px;}
.ws77{word-spacing:-0.937872px;}
.ws38{word-spacing:-0.717307px;}
.wscf{word-spacing:-0.673344px;}
.wsd0{word-spacing:-0.619236px;}
.ws3e{word-spacing:-0.597756px;}
.ws12{word-spacing:-0.537980px;}
.ws2{word-spacing:-0.430387px;}
.ws7d{word-spacing:-0.418429px;}
.ws83{word-spacing:-0.402804px;}
.ws13{word-spacing:-0.358654px;}
.wsa9{word-spacing:-0.348696px;}
.wsb4{word-spacing:-0.330660px;}
.wsbc{word-spacing:-0.324648px;}
.ws10e{word-spacing:-0.318636px;}
.ws92{word-spacing:-0.306612px;}
.ws15{word-spacing:-0.298878px;}
.ws5b{word-spacing:-0.276552px;}
.ws118{word-spacing:-0.270540px;}
.wsd7{word-spacing:-0.264528px;}
.wsef{word-spacing:-0.252504px;}
.ws72{word-spacing:-0.246492px;}
.ws3b{word-spacing:-0.239102px;}
.wsc8{word-spacing:-0.228456px;}
.ws125{word-spacing:-0.221400px;}
.ws13c{word-spacing:-0.215194px;}
.ws115{word-spacing:-0.210420px;}
.wsbb{word-spacing:-0.180360px;}
.ws2c{word-spacing:-0.179327px;}
.ws149{word-spacing:-0.161395px;}
.ws112{word-spacing:-0.138276px;}
.ws22{word-spacing:-0.119551px;}
.ws11b{word-spacing:-0.114228px;}
.ws151{word-spacing:-0.107597px;}
.ws82{word-spacing:-0.081396px;}
.ws43{word-spacing:-0.076608px;}
.ws2e{word-spacing:-0.059776px;}
.ws102{word-spacing:-0.053798px;}
.ws25{word-spacing:-0.047821px;}
.ws104{word-spacing:-0.027331px;}
.wsb5{word-spacing:-0.024048px;}
.ws141{word-spacing:-0.023760px;}
.ws101{word-spacing:-0.006355px;}
.ws100{word-spacing:-0.005155px;}
.ws4{word-spacing:-0.002350px;}
.ws3{word-spacing:0.000000px;}
.ws5a{word-spacing:0.012024px;}
.ws99{word-spacing:0.030060px;}
.ws116{word-spacing:0.036072px;}
.ws74{word-spacing:0.042084px;}
.ws89{word-spacing:0.048096px;}
.ws147{word-spacing:0.053798px;}
.wsc1{word-spacing:0.054108px;}
.ws18{word-spacing:0.059776px;}
.ws70{word-spacing:0.060120px;}
.ws117{word-spacing:0.072144px;}
.ws110{word-spacing:0.084168px;}
.ws119{word-spacing:0.090180px;}
.ws58{word-spacing:0.096192px;}
.ws68{word-spacing:0.102204px;}
.wsf2{word-spacing:0.113400px;}
.ws17{word-spacing:0.119551px;}
.ws71{word-spacing:0.120240px;}
.wsd8{word-spacing:0.124200px;}
.wsce{word-spacing:0.126252px;}
.ws127{word-spacing:0.135000px;}
.ws10f{word-spacing:0.138276px;}
.wsf3{word-spacing:0.145800px;}
.ws59{word-spacing:0.150300px;}
.ws46{word-spacing:0.151200px;}
.ws61{word-spacing:0.156312px;}
.ws126{word-spacing:0.162000px;}
.wsc0{word-spacing:0.167400px;}
.ws93{word-spacing:0.172800px;}
.ws45{word-spacing:0.178200px;}
.ws20{word-spacing:0.179327px;}
.wsbd{word-spacing:0.180360px;}
.ws47{word-spacing:0.189000px;}
.ws4f{word-spacing:0.192384px;}
.wsea{word-spacing:0.194400px;}
.ws142{word-spacing:0.215194px;}
.ws11{word-spacing:0.239102px;}
.ws12d{word-spacing:0.243000px;}
.ws146{word-spacing:0.268992px;}
.wsd{word-spacing:0.298878px;}
.ws111{word-spacing:0.300600px;}
.ws113{word-spacing:0.306612px;}
.ws14d{word-spacing:0.322790px;}
.ws19{word-spacing:0.358654px;}
.ws35{word-spacing:0.478205px;}
.ws143{word-spacing:0.699379px;}
.wsf7{word-spacing:0.717307px;}
.ws73{word-spacing:0.745488px;}
.wsf8{word-spacing:0.777083px;}
.ws1f{word-spacing:0.836858px;}
.ws14{word-spacing:0.956410px;}
.wsd9{word-spacing:1.075961px;}
.ws13d{word-spacing:1.075968px;}
.ws49{word-spacing:1.118232px;}
.ws41{word-spacing:1.135736px;}
.wsd4{word-spacing:1.154304px;}
.ws136{word-spacing:1.183565px;}
.ws79{word-spacing:1.184364px;}
.ws78{word-spacing:1.202400px;}
.wsbe{word-spacing:1.255288px;}
.ws36{word-spacing:1.434614px;}
.wsb6{word-spacing:1.503000px;}
.ws130{word-spacing:1.506355px;}
.wse0{word-spacing:1.521036px;}
.ws9c{word-spacing:1.533060px;}
.ws106{word-spacing:1.554166px;}
.ws138{word-spacing:1.560154px;}
.ws9d{word-spacing:1.593180px;}
.wsda{word-spacing:1.613941px;}
.ws9e{word-spacing:1.617228px;}
.wsb7{word-spacing:1.641276px;}
.ws39{word-spacing:1.733492px;}
.ws7f{word-spacing:1.793268px;}
.wsa2{word-spacing:1.853044px;}
.ws10c{word-spacing:1.882944px;}
.ws11d{word-spacing:1.887768px;}
.ws11e{word-spacing:1.935864px;}
.ws1c{word-spacing:1.972595px;}
.ws133{word-spacing:2.044339px;}
.wsdf{word-spacing:2.110212px;}
.wsa6{word-spacing:2.151922px;}
.wsf1{word-spacing:2.188368px;}
.ws5e{word-spacing:2.200392px;}
.ws10b{word-spacing:2.205734px;}
.wse1{word-spacing:2.218428px;}
.wsf0{word-spacing:2.248488px;}
.wse2{word-spacing:2.266524px;}
.wsfa{word-spacing:2.271473px;}
.wsf9{word-spacing:2.331248px;}
.ws50{word-spacing:2.368728px;}
.ws51{word-spacing:2.464920px;}
.wsa7{word-spacing:2.510575px;}
.ws48{word-spacing:2.567124px;}
.ws6c{word-spacing:2.573136px;}
.wse4{word-spacing:2.591172px;}
.wse3{word-spacing:2.597184px;}
.wse9{word-spacing:2.603196px;}
.wsa0{word-spacing:2.749678px;}
.ws12e{word-spacing:2.905114px;}
.wsc7{word-spacing:3.084156px;}
.ws139{word-spacing:3.174106px;}
.ws7e{word-spacing:3.227882px;}
.ws1b{word-spacing:3.287658px;}
.ws8b{word-spacing:3.306600px;}
.ws88{word-spacing:3.336660px;}
.ws123{word-spacing:3.358800px;}
.ws124{word-spacing:3.375000px;}
.ws8a{word-spacing:3.390768px;}
.ws30{word-spacing:3.586536px;}
.wsaa{word-spacing:3.697380px;}
.ws42{word-spacing:3.706087px;}
.wsab{word-spacing:3.709404px;}
.ws120{word-spacing:3.715416px;}
.wse7{word-spacing:3.745476px;}
.ws40{word-spacing:3.885414px;}
.ws144{word-spacing:3.927283px;}
.ws95{word-spacing:3.991968px;}
.wsc5{word-spacing:4.003992px;}
.ws2b{word-spacing:4.004965px;}
.ws96{word-spacing:4.010004px;}
.wsc6{word-spacing:4.082148px;}
.wse8{word-spacing:4.094172px;}
.ws11f{word-spacing:4.178340px;}
.wsa1{word-spacing:4.244068px;}
.ws9{word-spacing:4.303843px;}
.wsf5{word-spacing:4.363619px;}
.ws6b{word-spacing:4.388760px;}
.ws6a{word-spacing:4.430844px;}
.ws10a{word-spacing:4.519066px;}
.wsfc{word-spacing:4.542946px;}
.ws11a{word-spacing:4.761504px;}
.wsa{word-spacing:4.782048px;}
.ws12b{word-spacing:4.843800px;}
.ws12c{word-spacing:4.849200px;}
.ws109{word-spacing:4.895654px;}
.ws1d{word-spacing:4.961375px;}
.ws105{word-spacing:5.080926px;}
.wsd3{word-spacing:5.086152px;}
.ws86{word-spacing:5.110200px;}
.ws87{word-spacing:5.134248px;}
.ws131{word-spacing:5.377094px;}
.ws10d{word-spacing:5.378822px;}
.ws6{word-spacing:5.379840px;}
.ws13e{word-spacing:5.380973px;}
.ws2d{word-spacing:5.499355px;}
.wscb{word-spacing:5.525028px;}
.ws90{word-spacing:5.573124px;}
.wscc{word-spacing:5.579136px;}
.ws91{word-spacing:5.585148px;}
.ws3d{word-spacing:5.618906px;}
.wsac{word-spacing:5.807592px;}
.ws1e{word-spacing:5.858009px;}
.wsad{word-spacing:5.873724px;}
.wse{word-spacing:5.971475px;}
.ws145{word-spacing:5.971622px;}
.ws10{word-spacing:5.977560px;}
.wsdc{word-spacing:6.037336px;}
.wsa4{word-spacing:6.097111px;}
.ws14b{word-spacing:6.133018px;}
.ws29{word-spacing:6.156887px;}
.ws2a{word-spacing:6.216662px;}
.ws12a{word-spacing:6.269400px;}
.wsf6{word-spacing:6.515540px;}
.ws128{word-spacing:6.566400px;}
.wsdb{word-spacing:6.575316px;}
.ws129{word-spacing:6.631200px;}
.wsbf{word-spacing:6.993745px;}
.wsfb{word-spacing:7.173072px;}
.wsc9{word-spacing:7.677324px;}
.ws9f{word-spacing:7.711052px;}
.ws52{word-spacing:8.026020px;}
.ws121{word-spacing:8.094600px;}
.ws8f{word-spacing:8.098164px;}
.ws122{word-spacing:8.105400px;}
.ws8e{word-spacing:8.110188px;}
.wse6{word-spacing:8.380728px;}
.wse5{word-spacing:8.392752px;}
.ws44{word-spacing:9.097200px;}
.wsc{word-spacing:9.683647px;}
.wsca{word-spacing:10.166292px;}
.ws53{word-spacing:10.202364px;}
.ws54{word-spacing:10.256472px;}
.wsaf{word-spacing:10.827612px;}
.wsba{word-spacing:10.863684px;}
.ws64{word-spacing:10.875708px;}
.ws65{word-spacing:10.899756px;}
.wsed{word-spacing:10.911780px;}
.wsb0{word-spacing:10.953864px;}
.ws4d{word-spacing:11.176308px;}
.ws4e{word-spacing:11.356668px;}
.ws21{word-spacing:11.536691px;}
.wsb2{word-spacing:11.681316px;}
.ws23{word-spacing:11.903612px;}
.wsb9{word-spacing:12.360672px;}
.wsb8{word-spacing:12.366684px;}
.wsd1{word-spacing:12.709368px;}
.wsd2{word-spacing:12.841632px;}
.ws14c{word-spacing:13.180608px;}
.ws13f{word-spacing:13.388803px;}
.ws148{word-spacing:13.389341px;}
.ws140{word-spacing:13.394803px;}
.ws13b{word-spacing:13.395802px;}
.ws6e{word-spacing:13.767480px;}
.ws6f{word-spacing:13.893732px;}
.ws6d{word-spacing:14.056056px;}
.ws84{word-spacing:14.476896px;}
.ws85{word-spacing:14.543028px;}
.ws137{word-spacing:14.579366px;}
.ws7c{word-spacing:14.884124px;}
.ws134{word-spacing:15.440141px;}
.ws9a{word-spacing:15.559056px;}
.ws9b{word-spacing:15.583104px;}
.ws13a{word-spacing:16.569907px;}
.ws66{word-spacing:18.066060px;}
.ws67{word-spacing:18.216360px;}
.wsb{word-spacing:18.470660px;}
.ws12f{word-spacing:18.774480px;}
.ws132{word-spacing:18.775363px;}
.ws14f{word-spacing:18.775642px;}
.ws11c{word-spacing:18.841608px;}
.ws135{word-spacing:19.098432px;}
.ws14e{word-spacing:19.313626px;}
.wsa3{word-spacing:20.861684px;}
.wsd5{word-spacing:23.873652px;}
.wsd6{word-spacing:23.891688px;}
.wsb1{word-spacing:24.619140px;}
.ws37{word-spacing:29.349820px;}
.ws114{word-spacing:232.051176px;}
.wsfe{word-spacing:425.706739px;}
.ws27{word-spacing:790.952724px;}
._42{margin-left:-231.930936px;}
._21{margin-left:-12.733416px;}
._20{margin-left:-11.657268px;}
._22{margin-left:-10.508976px;}
._44{margin-left:-9.127948px;}
._1{margin-left:-7.962163px;}
._4{margin-left:-6.635092px;}
._6{margin-left:-4.949453px;}
._5{margin-left:-3.287658px;}
._4a{margin-left:-2.275562px;}
._7{margin-left:-1.273273px;}
._9{width:1.091170px;}
._2{width:3.000703px;}
._15{width:4.303843px;}
._45{width:9.124873px;}
._46{width:10.202620px;}
._1b{width:11.416788px;}
._1c{width:13.527271px;}
._e{width:14.842334px;}
._1d{width:15.846598px;}
._34{width:17.813129px;}
._8{width:18.829440px;}
._12{width:20.084602px;}
._b{width:21.459440px;}
._14{width:22.935845px;}
._d{width:24.149342px;}
._16{width:25.763284px;}
._c{width:27.472968px;}
._47{width:28.525182px;}
._1f{width:30.067127px;}
._f{width:31.262639px;}
._13{width:33.414560px;}
._25{width:34.807385px;}
._a{width:36.182224px;}
._0{width:37.338221px;}
._10{width:39.631223px;}
._24{width:40.659575px;}
._23{width:42.560227px;}
._1e{width:44.293720px;}
._18{width:52.082533px;}
._49{width:61.868160px;}
._3{width:69.348377px;}
._48{width:88.767360px;}
._19{width:93.548814px;}
._17{width:96.537594px;}
._43{width:108.799164px;}
._27{width:120.364909px;}
._2d{width:157.037530px;}
._38{width:195.377976px;}
._29{width:201.152218px;}
._2e{width:206.929104px;}
._37{width:216.029196px;}
._26{width:229.898452px;}
._2f{width:233.833037px;}
._40{width:254.833658px;}
._30{width:261.783014px;}
._41{width:270.864648px;}
._2c{width:273.726259px;}
._32{width:280.317379px;}
._3d{width:315.128006px;}
._3e{width:327.067838px;}
._31{width:336.024806px;}
._2a{width:346.461696px;}
._39{width:353.313216px;}
._3c{width:368.523576px;}
._28{width:370.593305px;}
._2b{width:372.661517px;}
._3f{width:381.602690px;}
._36{width:401.198796px;}
._3b{width:411.761880px;}
._3a{width:455.547276px;}
._35{width:1601.552978px;}
._1a{width:1624.966298px;}
._33{width:2053.515600px;}
._11{width:2077.425600px;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc4{color:transparent;}
.fc0{color:rgb(88,96,44);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs5{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fsa{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:134.035106px;}
.y14a{bottom:-769.103550px;}
.yd0{bottom:-760.792914px;}
.y84{bottom:-748.242450px;}
.ycf{bottom:-740.542995px;}
.y149{bottom:-736.613550px;}
.y83{bottom:-727.992531px;}
.yce{bottom:-720.293076px;}
.y82{bottom:-707.832792px;}
.ycd{bottom:-700.043157px;}
.y81{bottom:-687.582873px;}
.ycc{bottom:-679.793238px;}
.y80{bottom:-667.332954px;}
.ycb{bottom:-659.543319px;}
.y7f{bottom:-647.083035px;}
.yca{bottom:-639.293400px;}
.y7e{bottom:-626.833116px;}
.y7d{bottom:-606.583197px;}
.yc9{bottom:-601.583550px;}
.y7c{bottom:-586.423458px;}
.yc8{bottom:-567.833550px;}
.y7b{bottom:-566.173539px;}
.y181{bottom:-547.694550px;}
.y7a{bottom:-545.923620px;}
.y79{bottom:-525.673701px;}
.y180{bottom:-509.984550px;}
.y78{bottom:-505.423782px;}
.y77{bottom:-485.173863px;}
.y76{bottom:-464.923944px;}
.y120{bottom:-453.936435px;}
.y75{bottom:-444.764205px;}
.y11f{bottom:-433.686516px;}
.y74{bottom:-424.514286px;}
.y11e{bottom:-413.436597px;}
.y73{bottom:-404.264367px;}
.y148{bottom:-397.851678px;}
.y11d{bottom:-393.186678px;}
.y72{bottom:-384.014448px;}
.y147{bottom:-377.601759px;}
.y11c{bottom:-372.936759px;}
.y71{bottom:-363.764529px;}
.y146{bottom:-357.351840px;}
.y11b{bottom:-352.686840px;}
.y70{bottom:-343.514610px;}
.y145{bottom:-337.101921px;}
.y11a{bottom:-332.436921px;}
.y144{bottom:-316.942182px;}
.y6f{bottom:-314.354907px;}
.y119{bottom:-312.277182px;}
.y143{bottom:-296.692263px;}
.y118{bottom:-292.027263px;}
.y1e0{bottom:-291.034950px;}
.yc7{bottom:-279.202344px;}
.y142{bottom:-276.442344px;}
.y6e{bottom:-276.105060px;}
.y117{bottom:-271.777344px;}
.y1df{bottom:-271.594950px;}
.yc6{bottom:-258.952425px;}
.y141{bottom:-256.192425px;}
.y6d{bottom:-255.855141px;}
.y1de{bottom:-252.064500px;}
.y116{bottom:-251.527425px;}
.yc5{bottom:-238.702506px;}
.y140{bottom:-235.942506px;}
.y6c{bottom:-235.605222px;}
.y1dd{bottom:-232.534050px;}
.y115{bottom:-231.277506px;}
.yc4{bottom:-218.452587px;}
.y13f{bottom:-215.692587px;}
.y6b{bottom:-215.355303px;}
.y114{bottom:-211.027587px;}
.y1dc{bottom:-203.644050px;}
.yc3{bottom:-198.202668px;}
.y13e{bottom:-195.442668px;}
.y6a{bottom:-195.105384px;}
.y113{bottom:-190.867848px;}
.yfd{bottom:-188.865414px;}
.yc2{bottom:-178.042929px;}
.y13d{bottom:-175.282929px;}
.y69{bottom:-174.855465px;}
.y112{bottom:-170.617929px;}
.yfc{bottom:-168.615495px;}
.y1db{bottom:-165.843150px;}
.y17f{bottom:-163.101420px;}
.yc1{bottom:-157.793010px;}
.y13c{bottom:-155.033010px;}
.y68{bottom:-154.605546px;}
.y111{bottom:-150.368010px;}
.yfb{bottom:-148.365576px;}
.y17e{bottom:-142.856010px;}
.y1da{bottom:-138.573150px;}
.yc0{bottom:-137.543091px;}
.y13b{bottom:-134.783091px;}
.y67{bottom:-134.445807px;}
.y110{bottom:-130.118091px;}
.yfa{bottom:-128.115657px;}
.y17d{bottom:-122.610600px;}
.ybf{bottom:-117.293172px;}
.y13a{bottom:-114.533172px;}
.y66{bottom:-114.195888px;}
.y1d9{bottom:-111.393600px;}
.y10f{bottom:-109.868172px;}
.yf9{bottom:-107.865738px;}
.y17c{bottom:-102.455370px;}
.ybe{bottom:-97.043253px;}
.y139{bottom:-94.283253px;}
.y65{bottom:-93.945969px;}
.y1d8{bottom:-93.124050px;}
.y10e{bottom:-89.618253px;}
.yf8{bottom:-87.615819px;}
.y17b{bottom:-82.209960px;}
.y64{bottom:-73.696050px;}
.y195{bottom:-68.918550px;}
.ybd{bottom:-67.883550px;}
.yf7{bottom:-67.365900px;}
.y138{bottom:-65.123550px;}
.y17a{bottom:-61.964550px;}
.y10d{bottom:-60.458550px;}
.y1d7{bottom:-57.034500px;}
.y1d6{bottom:-37.504050px;}
.y63{bottom:-35.986050px;}
.y194{bottom:-31.208550px;}
.ybc{bottom:-30.083550px;}
.yf6{bottom:-29.656050px;}
.y16d{bottom:-28.064250px;}
.y137{bottom:-27.323550px;}
.y179{bottom:-24.164550px;}
.y10c{bottom:-22.658550px;}
.y1d5{bottom:-10.413900px;}
.y62{bottom:-6.826050px;}
.y0{bottom:0.000000px;}
.y136{bottom:3.186600px;}
.ybb{bottom:3.396450px;}
.ye{bottom:3.425340px;}
.y10b{bottom:3.711450px;}
.yf5{bottom:4.093950px;}
.y16c{bottom:4.425750px;}
.yd{bottom:14.151273px;}
.y2{bottom:16.605659px;}
.y2f{bottom:63.780000px;}
.ya6{bottom:108.612000px;}
.y5f{bottom:114.066000px;}
.y1e6{bottom:126.007500px;}
.y2e{bottom:128.274000px;}
.ya5{bottom:128.875500px;}
.y5e{bottom:134.329500px;}
.yda{bottom:137.932500px;}
.y1b3{bottom:146.802000px;}
.y2d{bottom:148.537500px;}
.ya4{bottom:149.139000px;}
.y1e5{bottom:150.171000px;}
.y5d{bottom:156.088500px;}
.yd9{bottom:158.197500px;}
.y1b1{bottom:163.240500px;}
.y106{bottom:165.355500px;}
.y2c{bottom:168.802500px;}
.ya3{bottom:169.404000px;}
.y1e4{bottom:174.336000px;}
.y5c{bottom:176.352000px;}
.yd8{bottom:178.461000px;}
.y1b2{bottom:179.679000px;}
.y105{bottom:185.619000px;}
.y2b{bottom:189.066000px;}
.y1e3{bottom:189.534000px;}
.ya2{bottom:189.667500px;}
.y5b{bottom:198.111000px;}
.yd7{bottom:198.726000px;}
.y16e{bottom:200.364000px;}
.y1b0{bottom:203.320500px;}
.y104{bottom:205.884000px;}
.y2a{bottom:209.331000px;}
.ya1{bottom:209.932500px;}
.y1af{bottom:211.539000px;}
.y215{bottom:216.076500px;}
.yd6{bottom:218.989500px;}
.y5a{bottom:219.870000px;}
.y157{bottom:222.793200px;}
.y103{bottom:226.147500px;}
.y29{bottom:229.594500px;}
.ya0{bottom:230.196000px;}
.y214{bottom:235.443000px;}
.y1e2{bottom:237.400500px;}
.yd5{bottom:239.253000px;}
.y59{bottom:241.627500px;}
.y1ae{bottom:243.756000px;}
.y102{bottom:246.411000px;}
.y28{bottom:249.858000px;}
.y9f{bottom:250.459500px;}
.y213{bottom:254.811000px;}
.y1e1{bottom:256.633500px;}
.yd4{bottom:259.518000px;}
.y1d4{bottom:260.396616px;}
.y101{bottom:266.676000px;}
.y1ad{bottom:267.754500px;}
.y27{bottom:270.123000px;}
.y9e{bottom:270.724500px;}
.y58{bottom:273.847500px;}
.y212{bottom:274.177500px;}
.y1b7{bottom:279.063000px;}
.yd3{bottom:279.781500px;}
.y1d3{bottom:280.646535px;}
.y100{bottom:286.939500px;}
.y26{bottom:290.386500px;}
.y9d{bottom:290.988000px;}
.y1ac{bottom:291.751500px;}
.yf4{bottom:292.725156px;}
.y211{bottom:293.545500px;}
.y57{bottom:294.111000px;}
.yd2{bottom:300.045000px;}
.y1d2{bottom:300.896454px;}
.y133{bottom:304.113000px;}
.yff{bottom:307.204500px;}
.yba{bottom:309.396450px;}
.y25{bottom:310.651500px;}
.y9c{bottom:311.253000px;}
.y135{bottom:312.156450px;}
.y210{bottom:312.913500px;}
.yf3{bottom:312.975075px;}
.y1ab{bottom:315.393000px;}
.y193{bottom:315.674580px;}
.y1d1{bottom:321.146373px;}
.y1a8{bottom:323.611500px;}
.y132{bottom:324.376500px;}
.y56{bottom:326.331000px;}
.y61{bottom:327.973950px;}
.y24{bottom:330.915000px;}
.y9b{bottom:331.516500px;}
.y178{bottom:331.637760px;}
.y1aa{bottom:331.831500px;}
.y20f{bottom:332.280000px;}
.yf2{bottom:333.224994px;}
.yd1{bottom:335.046000px;}
.y192{bottom:335.919990px;}
.y1a7{bottom:340.050000px;}
.y1d0{bottom:341.396292px;}
.yfe{bottom:342.204000px;}
.y16b{bottom:343.187622px;}
.y131{bottom:344.641500px;}
.y55{bottom:348.088500px;}
.y1a9{bottom:348.270000px;}
.y23{bottom:351.178500px;}
.y20e{bottom:351.648000px;}
.y9a{bottom:351.780000px;}
.y177{bottom:351.883170px;}
.yf1{bottom:353.474913px;}
.y191{bottom:356.165400px;}
.yb9{bottom:357.475500px;}
.y1cf{bottom:361.556031px;}
.y16a{bottom:363.437541px;}
.ye6{bottom:364.633500px;}
.y130{bottom:364.905000px;}
.y54{bottom:369.847500px;}
.y20d{bottom:371.014500px;}
.y22{bottom:371.443500px;}
.y99{bottom:372.045000px;}
.y176{bottom:372.128580px;}
.y1a6{bottom:372.267000px;}
.yf0{bottom:373.724832px;}
.y190{bottom:376.320630px;}
.y1ce{bottom:381.805950px;}
.y169{bottom:383.687460px;}
.y12f{bottom:385.168500px;}
.y53{bottom:390.112500px;}
.y20c{bottom:390.382500px;}
.y21{bottom:391.707000px;}
.y98{bottom:392.308500px;}
.y175{bottom:392.373990px;}
.yef{bottom:393.884571px;}
.y1a5{bottom:396.265500px;}
.y18f{bottom:396.566040px;}
.y168{bottom:403.937379px;}
.y12e{bottom:405.433500px;}
.y20b{bottom:409.750500px;}
.y52{bottom:411.870000px;}
.y20{bottom:411.972000px;}
.y97{bottom:412.573500px;}
.y1cd{bottom:412.586913px;}
.y174{bottom:412.619400px;}
.yee{bottom:414.134490px;}
.y18e{bottom:416.811450px;}
.y10a{bottom:421.941531px;}
.y1ca{bottom:422.666031px;}
.y167{bottom:424.097118px;}
.y12d{bottom:425.697000px;}
.y1a4{bottom:427.884000px;}
.y20a{bottom:429.117000px;}
.y1f{bottom:432.235500px;}
.y1cc{bottom:432.836832px;}
.y96{bottom:432.837000px;}
.y173{bottom:432.864810px;}
.yed{bottom:434.384409px;}
.y109{bottom:442.191450px;}
.y1c9{bottom:442.915950px;}
.y51{bottom:444.090000px;}
.y166{bottom:444.347037px;}
.y12c{bottom:445.962000px;}
.y196{bottom:447.124500px;}
.y209{bottom:448.485000px;}
.y1e{bottom:452.499000px;}
.y172{bottom:453.020040px;}
.y1cb{bottom:453.086751px;}
.y95{bottom:453.100500px;}
.y18d{bottom:454.611450px;}
.yec{bottom:454.634328px;}
.y1a3{bottom:461.095500px;}
.y50{bottom:464.353500px;}
.y165{bottom:464.596956px;}
.y12b{bottom:466.225500px;}
.y208{bottom:467.851500px;}
.y183{bottom:469.554000px;}
.y1d{bottom:472.764000px;}
.y171{bottom:473.265450px;}
.y94{bottom:473.365500px;}
.y1c8{bottom:474.055329px;}
.yeb{bottom:474.884247px;}
.y108{bottom:479.541450px;}
.y1a2{bottom:481.360500px;}
.y1c7{bottom:484.135950px;}
.y4f{bottom:484.618500px;}
.y164{bottom:484.846875px;}
.y12a{bottom:486.489000px;}
.y207{bottom:487.219500px;}
.y1c{bottom:493.027500px;}
.y93{bottom:493.629000px;}
.y170{bottom:501.615450px;}
.y1a1{bottom:501.624000px;}
.yea{bottom:504.043950px;}
.y4e{bottom:504.882000px;}
.y163{bottom:505.096794px;}
.y206{bottom:506.587500px;}
.y129{bottom:506.754000px;}
.y1b{bottom:513.292500px;}
.y92{bottom:513.894000px;}
.y1c6{bottom:515.276031px;}
.y1a0{bottom:521.889000px;}
.y4d{bottom:525.145500px;}
.y162{bottom:525.346713px;}
.y205{bottom:525.954000px;}
.y128{bottom:527.017500px;}
.y1a{bottom:533.556000px;}
.y1c5{bottom:535.525950px;}
.ye9{bottom:541.843950px;}
.y19f{bottom:542.152500px;}
.y91{bottom:543.124500px;}
.y204{bottom:545.322000px;}
.y4c{bottom:545.410500px;}
.y161{bottom:545.596632px;}
.y127{bottom:547.282500px;}
.y1b6{bottom:548.667000px;}
.y19{bottom:553.819500px;}
.y1c4{bottom:556.495950px;}
.y19e{bottom:562.416000px;}
.y203{bottom:564.688500px;}
.y160{bottom:565.756371px;}
.y126{bottom:567.546000px;}
.y1b5{bottom:568.932000px;}
.y18{bottom:574.084500px;}
.y4b{bottom:574.641000px;}
.ye8{bottom:575.323950px;}
.y156{bottom:577.215000px;}
.y1c3{bottom:577.466031px;}
.y90{bottom:577.944000px;}
.y19d{bottom:582.681000px;}
.y202{bottom:584.056500px;}
.y15f{bottom:586.006290px;}
.y125{bottom:587.809500px;}
.y1b4{bottom:589.195500px;}
.y155{bottom:597.480000px;}
.y1c2{bottom:597.715950px;}
.y8f{bottom:598.207500px;}
.y19c{bottom:602.944500px;}
.y17{bottom:603.315000px;}
.y201{bottom:603.424500px;}
.y15e{bottom:606.256209px;}
.y124{bottom:608.074500px;}
.y4a{bottom:609.460500px;}
.y154{bottom:617.743500px;}
.y8e{bottom:618.471000px;}
.y1c1{bottom:618.686913px;}
.y200{bottom:622.791000px;}
.y15d{bottom:626.506128px;}
.y123{bottom:628.338000px;}
.y1be{bottom:628.766031px;}
.y49{bottom:629.724000px;}
.y19b{bottom:632.175000px;}
.y153{bottom:638.008500px;}
.y8d{bottom:638.736000px;}
.y1c0{bottom:638.936832px;}
.y1ff{bottom:642.159000px;}
.y15c{bottom:646.756047px;}
.y1bd{bottom:649.015950px;}
.y48{bottom:649.987500px;}
.y122{bottom:657.568500px;}
.y152{bottom:658.272000px;}
.y8c{bottom:658.999500px;}
.y1bf{bottom:659.186751px;}
.y1fe{bottom:661.527000px;}
.yb8{bottom:663.736500px;}
.ye5{bottom:666.994500px;}
.y47{bottom:670.252500px;}
.y15b{bottom:675.915750px;}
.y151{bottom:678.535500px;}
.y8b{bottom:679.264500px;}
.y16{bottom:679.731000px;}
.y1bc{bottom:680.155950px;}
.y1fd{bottom:680.893500px;}
.yb7{bottom:684.001500px;}
.ye4{bottom:687.258000px;}
.y121{bottom:689.191500px;}
.y46{bottom:690.516000px;}
.y150{bottom:698.800500px;}
.y8a{bottom:699.528000px;}
.y1fc{bottom:700.261500px;}
.y1bb{bottom:701.126652px;}
.yb6{bottom:704.265000px;}
.ye3{bottom:707.523000px;}
.y45{bottom:710.781000px;}
.y1ba{bottom:711.295950px;}
.y107{bottom:711.621000px;}
.y15a{bottom:713.715750px;}
.y15{bottom:717.927000px;}
.y14f{bottom:719.064000px;}
.y1fb{bottom:719.628000px;}
.y89{bottom:719.791500px;}
.yb5{bottom:724.530000px;}
.ye2{bottom:727.786500px;}
.y44{bottom:731.044500px;}
.y14{bottom:738.192000px;}
.y1fa{bottom:738.996000px;}
.y14e{bottom:739.329000px;}
.y88{bottom:740.056500px;}
.y159{bottom:744.225900px;}
.yb4{bottom:744.793500px;}
.ye1{bottom:748.051500px;}
.y43{bottom:751.308000px;}
.y1b9{bottom:751.615950px;}
.y1f9{bottom:758.364000px;}
.y13{bottom:758.455500px;}
.y14d{bottom:759.592500px;}
.y87{bottom:760.320000px;}
.yb3{bottom:765.057000px;}
.ye0{bottom:768.315000px;}
.y42{bottom:771.573000px;}
.y1f8{bottom:777.730500px;}
.y12{bottom:778.719000px;}
.y86{bottom:780.585000px;}
.yb2{bottom:785.322000px;}
.ydf{bottom:788.578500px;}
.y1b8{bottom:788.695950px;}
.y14c{bottom:788.823000px;}
.y182{bottom:790.096500px;}
.y41{bottom:791.836500px;}
.y1f7{bottom:797.098500px;}
.y11{bottom:798.984000px;}
.y18c{bottom:801.413760px;}
.yb1{bottom:805.585500px;}
.yde{bottom:808.843500px;}
.y40{bottom:812.101500px;}
.y16f{bottom:812.526000px;}
.y85{bottom:813.973500px;}
.y1f6{bottom:816.465000px;}
.y10{bottom:819.247500px;}
.y14b{bottom:820.446000px;}
.y18b{bottom:821.659170px;}
.yb0{bottom:825.849000px;}
.ydd{bottom:829.107000px;}
.y3f{bottom:832.365000px;}
.y1f5{bottom:835.833000px;}
.y60{bottom:836.403000px;}
.yf{bottom:839.512500px;}
.y18a{bottom:841.904580px;}
.y134{bottom:842.875500px;}
.yaf{bottom:846.114000px;}
.ydc{bottom:849.372000px;}
.y3e{bottom:852.628500px;}
.y1f4{bottom:855.201000px;}
.y189{bottom:862.149990px;}
.yae{bottom:866.377500px;}
.y19a{bottom:869.635500px;}
.y3d{bottom:872.893500px;}
.y1f3{bottom:874.567500px;}
.yc{bottom:874.944055px;}
.yb{bottom:875.710500px;}
.ydb{bottom:878.602500px;}
.ye7{bottom:881.323950px;}
.y188{bottom:882.395400px;}
.yad{bottom:886.642500px;}
.y199{bottom:889.899000px;}
.y3c{bottom:893.157000px;}
.y1f2{bottom:893.935500px;}
.y187{bottom:902.640810px;}
.y198{bottom:910.164000px;}
.y1f1{bottom:913.302000px;}
.y3b{bottom:913.422000px;}
.ya{bottom:914.716500px;}
.yac{bottom:915.873000px;}
.y186{bottom:922.796040px;}
.y197{bottom:930.427500px;}
.y1f0{bottom:932.670000px;}
.y9{bottom:932.874000px;}
.y3a{bottom:933.685500px;}
.y185{bottom:943.041450px;}
.y21d{bottom:947.634000px;}
.yab{bottom:950.692500px;}
.y1ef{bottom:952.038000px;}
.y39{bottom:953.949000px;}
.y8{bottom:955.912500px;}
.y21c{bottom:967.002000px;}
.yaa{bottom:970.956000px;}
.y1ee{bottom:971.404500px;}
.y7{bottom:974.070000px;}
.y38{bottom:974.214000px;}
.y184{bottom:980.391450px;}
.y21b{bottom:986.368500px;}
.y1ed{bottom:990.772500px;}
.ya9{bottom:991.219500px;}
.y37{bottom:994.477500px;}
.y6{bottom:996.310500px;}
.y1ec{bottom:1010.139000px;}
.ya8{bottom:1011.484500px;}
.y36{bottom:1014.742500px;}
.y21a{bottom:1019.226000px;}
.y1eb{bottom:1029.507000px;}
.y35{bottom:1035.006000px;}
.y219{bottom:1038.592500px;}
.ya7{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.y1ea{bottom:1048.875000px;}
.y158{bottom:1053.195750px;}
.y34{bottom:1055.269500px;}
.y218{bottom:1057.960500px;}
.y1e9{bottom:1068.241500px;}
.y4{bottom:1071.244500px;}
.y33{bottom:1075.534500px;}
.y217{bottom:1077.327000px;}
.y1e8{bottom:1087.609500px;}
.y32{bottom:1095.798000px;}
.y216{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y1e7{bottom:1115.943000px;}
.y31{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y30{bottom:1168.366500px;}
.h9{height:25.508090px;}
.hf{height:27.855430px;}
.h7{height:30.461558px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h11{height:34.951465px;}
.he{height:35.052500px;}
.h25{height:38.143066px;}
.h1d{height:38.734848px;}
.h8{height:39.165235px;}
.h23{height:39.260742px;}
.h13{height:39.418945px;}
.h24{height:39.434227px;}
.hc{height:43.038432px;}
.h17{height:43.269961px;}
.hd{height:43.516637px;}
.h14{height:43.710293px;}
.h4{height:43.815515px;}
.h15{height:43.886426px;}
.h2{height:50.926964px;}
.h12{height:52.347656px;}
.h6{height:54.411312px;}
.h1e{height:72.039235px;}
.h5{height:77.469696px;}
.h3{height:83.771941px;}
.h21{height:84.032777px;}
.h20{height:84.208910px;}
.h22{height:84.387485px;}
.h1f{height:245.956500px;}
.h16{height:282.613500px;}
.h19{height:288.132000px;}
.h10{height:294.604500px;}
.h1c{height:304.762500px;}
.h1b{height:318.481500px;}
.h1a{height:334.674300px;}
.h18{height:419.386500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:199.680271px;}
.wc{width:390.613500px;}
.w5{width:395.343000px;}
.w4{width:415.945500px;}
.w6{width:418.597500px;}
.w7{width:425.167500px;}
.w8{width:445.795500px;}
.wb{width:501.165000px;}
.wa{width:523.444500px;}
.w9{width:548.008500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x79{left:-137.817000px;}
.x29{left:-133.480500px;}
.x7e{left:-125.217000px;}
.x7f{left:-123.777701px;}
.x1b{left:-122.761500px;}
.x38{left:-117.976500px;}
.x88{left:-114.327000px;}
.x7d{left:-112.707000px;}
.x87{left:-110.727000px;}
.x3e{left:-108.649500px;}
.x8e{left:-105.957000px;}
.x2c{left:-101.620606px;}
.x89{left:-92.186914px;}
.x1e{left:-90.901500px;}
.x3b{left:-86.116606px;}
.x86{left:-82.467648px;}
.x56{left:-80.434500px;}
.x41{left:-76.789606px;}
.x7b{left:-73.377000px;}
.x50{left:-69.627000px;}
.x2e{left:-66.340500px;}
.x2b{left:-55.810500px;}
.x1d{left:-48.781500px;}
.x32{left:-44.380500px;}
.x51{left:-37.767000px;}
.x4d{left:-24.870106px;}
.x53{left:-13.647000px;}
.x0{left:0.000000px;}
.x80{left:7.712347px;}
.x3a{left:10.003500px;}
.x7a{left:12.303000px;}
.x43{left:14.200500px;}
.x81{left:23.911224px;}
.x7{left:29.274117px;}
.x40{left:34.900500px;}
.x8a{left:38.672126px;}
.x2{left:56.335440px;}
.x4f{left:66.120000px;}
.x4c{left:86.820000px;}
.x57{left:89.035500px;}
.x52{left:99.843000px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x6d{left:142.056000px;}
.x6a{left:143.952000px;}
.x4{left:146.170500px;}
.x19{left:149.397000px;}
.x61{left:151.632000px;}
.x6c{left:161.013000px;}
.x60{left:162.451500px;}
.x6b{left:165.700500px;}
.xd{left:168.499500px;}
.x4b{left:172.453500px;}
.xe{left:175.971000px;}
.xf{left:179.782500px;}
.x34{left:185.283000px;}
.x10{left:187.254000px;}
.x1f{left:189.175500px;}
.x8{left:191.301000px;}
.x2f{left:193.722000px;}
.x55{left:195.874500px;}
.x8b{left:210.300293px;}
.x82{left:217.770403px;}
.x83{left:221.999659px;}
.x3d{left:223.560000px;}
.x37{left:233.874000px;}
.x30{left:237.159000px;}
.x1a{left:238.485000px;}
.x3c{left:245.004000px;}
.x28{left:248.785500px;}
.x78{left:251.151000px;}
.x97{left:254.101500px;}
.x44{left:258.427500px;}
.x5c{left:260.104500px;}
.x5e{left:265.588500px;}
.x96{left:267.238500px;}
.x13{left:268.962000px;}
.x6e{left:273.405000px;}
.x5d{left:275.047500px;}
.x14{left:276.433500px;}
.x62{left:281.353500px;}
.x54{left:284.364000px;}
.x63{left:295.032000px;}
.x9{left:296.833500px;}
.x5f{left:301.702500px;}
.xa{left:304.305000px;}
.xb{left:307.966500px;}
.xc{left:315.439500px;}
.x47{left:336.436500px;}
.x48{left:351.381000px;}
.x84{left:363.839741px;}
.x15{left:369.126000px;}
.x16{left:376.597500px;}
.x8c{left:378.779429px;}
.x8d{left:392.729213px;}
.x2a{left:393.919500px;}
.x85{left:398.579736px;}
.x2d{left:404.089500px;}
.x31{left:405.349500px;}
.x8f{left:409.833000px;}
.x7c{left:411.361843px;}
.x33{left:415.519500px;}
.x39{left:421.753500px;}
.x1c{left:423.808500px;}
.x75{left:430.455000px;}
.x6f{left:439.231500px;}
.x3f{left:442.330500px;}
.x64{left:448.021500px;}
.x73{left:449.703000px;}
.x74{left:464.647500px;}
.x65{left:472.728000px;}
.x70{left:474.166500px;}
.x66{left:476.769000px;}
.x42{left:493.360500px;}
.x58{left:533.535000px;}
.x11{left:541.443000px;}
.x4e{left:545.280000px;}
.x45{left:546.981000px;}
.x12{left:548.914500px;}
.x24{left:550.233000px;}
.x26{left:560.022000px;}
.x46{left:561.925500px;}
.x25{left:565.177500px;}
.x27{left:574.966500px;}
.x76{left:579.513000px;}
.x77{left:594.457500px;}
.x68{left:604.660500px;}
.x67{left:613.008000px;}
.x35{left:621.531000px;}
.x71{left:625.542000px;}
.x36{left:636.474000px;}
.x72{left:638.056500px;}
.x49{left:644.328000px;}
.x20{left:649.032000px;}
.x69{left:654.525000px;}
.x4a{left:659.271000px;}
.x21{left:663.976500px;}
.x59{left:665.958000px;}
.x22{left:667.636500px;}
.x5a{left:680.901000px;}
.x23{left:682.581000px;}
.x94{left:688.885500px;}
.x5b{left:698.371500px;}
.x6{left:701.339982px;}
.x95{left:715.785000px;}
.x90{left:728.880000px;}
.x92{left:749.580000px;}
.x91{left:755.779500px;}
.x17{left:757.243500px;}
.x18{left:772.188000px;}
.x93{left:776.479500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:29.221333pt;}
.v4{vertical-align:35.842208pt;}
.ls32{letter-spacing:-1.517696pt;}
.ls33{letter-spacing:-0.881760pt;}
.ls54{letter-spacing:-0.283232pt;}
.ls25{letter-spacing:-0.192384pt;}
.ls69{letter-spacing:-0.187040pt;}
.ls68{letter-spacing:-0.181696pt;}
.ls6d{letter-spacing:-0.153600pt;}
.ls6a{letter-spacing:-0.133600pt;}
.ls4e{letter-spacing:-0.122912pt;}
.ls29{letter-spacing:-0.112224pt;}
.ls24{letter-spacing:-0.106880pt;}
.ls23{letter-spacing:-0.096192pt;}
.ls2e{letter-spacing:-0.090848pt;}
.ls1e{letter-spacing:-0.080864pt;}
.ls40{letter-spacing:-0.080160pt;}
.ls3e{letter-spacing:-0.076608pt;}
.ls28{letter-spacing:-0.074816pt;}
.ls41{letter-spacing:-0.069472pt;}
.ls30{letter-spacing:-0.058784pt;}
.ls2c{letter-spacing:-0.053440pt;}
.ls6c{letter-spacing:-0.052800pt;}
.ls34{letter-spacing:-0.048096pt;}
.ls2f{letter-spacing:-0.042752pt;}
.ls21{letter-spacing:-0.037408pt;}
.ls31{letter-spacing:-0.032064pt;}
.ls27{letter-spacing:-0.026720pt;}
.ls2a{letter-spacing:-0.021376pt;}
.ls26{letter-spacing:-0.016032pt;}
.ls1f{letter-spacing:-0.012768pt;}
.ls2d{letter-spacing:-0.010688pt;}
.ls20{letter-spacing:-0.009600pt;}
.ls2b{letter-spacing:-0.005344pt;}
.ls3f{letter-spacing:-0.004256pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000137pt;}
.ls0{letter-spacing:0.000213pt;}
.lsb{letter-spacing:0.000880pt;}
.lsa{letter-spacing:0.000960pt;}
.ls1b{letter-spacing:0.001061pt;}
.ls72{letter-spacing:0.001096pt;}
.ls36{letter-spacing:0.001154pt;}
.ls4c{letter-spacing:0.001183pt;}
.ls1c{letter-spacing:0.001349pt;}
.ls43{letter-spacing:0.001487pt;}
.ls57{letter-spacing:0.001680pt;}
.ls5c{letter-spacing:0.002301pt;}
.ls73{letter-spacing:0.002505pt;}
.ls56{letter-spacing:0.002613pt;}
.ls5{letter-spacing:0.002630pt;}
.ls52{letter-spacing:0.002710pt;}
.ls4{letter-spacing:0.003106pt;}
.ls4b{letter-spacing:0.003239pt;}
.ls5b{letter-spacing:0.003430pt;}
.ls1d{letter-spacing:0.003712pt;}
.ls44{letter-spacing:0.004130pt;}
.ls5a{letter-spacing:0.004267pt;}
.ls5e{letter-spacing:0.004800pt;}
.ls37{letter-spacing:0.004813pt;}
.ls17{letter-spacing:0.005344pt;}
.ls3c{letter-spacing:0.009600pt;}
.ls13{letter-spacing:0.010688pt;}
.ls3d{letter-spacing:0.014400pt;}
.ls4f{letter-spacing:0.016032pt;}
.ls63{letter-spacing:0.019200pt;}
.ls15{letter-spacing:0.021376pt;}
.ls10{letter-spacing:0.024000pt;}
.ls19{letter-spacing:0.026720pt;}
.ls3a{letter-spacing:0.028800pt;}
.ls18{letter-spacing:0.032064pt;}
.ls51{letter-spacing:0.033600pt;}
.ls11{letter-spacing:0.037408pt;}
.lsd{letter-spacing:0.038304pt;}
.ls14{letter-spacing:0.042752pt;}
.ls62{letter-spacing:0.043200pt;}
.ls38{letter-spacing:0.046816pt;}
.ls60{letter-spacing:0.048000pt;}
.ls12{letter-spacing:0.048096pt;}
.ls4a{letter-spacing:0.052800pt;}
.ls49{letter-spacing:0.053440pt;}
.ls61{letter-spacing:0.057600pt;}
.ls1a{letter-spacing:0.058784pt;}
.ls50{letter-spacing:0.062400pt;}
.ls22{letter-spacing:0.064128pt;}
.ls66{letter-spacing:0.067200pt;}
.ls16{letter-spacing:0.069472pt;}
.ls46{letter-spacing:0.074816pt;}
.ls5f{letter-spacing:0.085504pt;}
.ls65{letter-spacing:0.091200pt;}
.ls47{letter-spacing:0.106880pt;}
.ls3b{letter-spacing:0.122912pt;}
.lsf{letter-spacing:0.153216pt;}
.lse{letter-spacing:0.161728pt;}
.ls67{letter-spacing:0.163200pt;}
.ls39{letter-spacing:0.170240pt;}
.ls45{letter-spacing:0.171008pt;}
.ls74{letter-spacing:0.466280pt;}
.ls8{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls35{letter-spacing:6.482272pt;}
.ls6b{letter-spacing:7.209600pt;}
.ls48{letter-spacing:10.329952pt;}
.ls6{letter-spacing:10.626533pt;}
.ls75{letter-spacing:11.776555pt;}
.ls6f{letter-spacing:11.954133pt;}
.ls6e{letter-spacing:11.959467pt;}
.ls70{letter-spacing:11.971597pt;}
.ls53{letter-spacing:13.283467pt;}
.ls42{letter-spacing:13.303989pt;}
.ls71{letter-spacing:13.331075pt;}
.ls55{letter-spacing:13.495352pt;}
.ls5d{letter-spacing:13.496002pt;}
.ls4d{letter-spacing:19.553263pt;}
.ls1{letter-spacing:62.432533pt;}
.ls64{letter-spacing:62.529600pt;}
.ls2{letter-spacing:64.314231pt;}
.lsc{letter-spacing:83.149654pt;}
.ls58{letter-spacing:277.433600pt;}
.ls59{letter-spacing:307.326933pt;}
.ws0{word-spacing:-92.692722pt;}
.ws1{word-spacing:-23.910400pt;}
.wsf{word-spacing:-15.461955pt;}
.ws103{word-spacing:-13.915853pt;}
.ws31{word-spacing:-13.283467pt;}
.ws26{word-spacing:-12.369595pt;}
.ws108{word-spacing:-12.009600pt;}
.wsff{word-spacing:-11.955200pt;}
.ws80{word-spacing:-10.810240pt;}
.ws3a{word-spacing:-10.801728pt;}
.ws24{word-spacing:-10.626800pt;}
.ws5{word-spacing:-10.095467pt;}
.ws81{word-spacing:-3.878772pt;}
.wsc3{word-spacing:-3.446880pt;}
.wsc4{word-spacing:-3.088832pt;}
.ws1a{word-spacing:-2.869229pt;}
.wsae{word-spacing:-2.826976pt;}
.ws3c{word-spacing:-2.656693pt;}
.wsc2{word-spacing:-2.500992pt;}
.ws33{word-spacing:-2.497292pt;}
.ws8d{word-spacing:-2.175008pt;}
.ws5c{word-spacing:-2.148288pt;}
.ws8c{word-spacing:-2.132256pt;}
.ws32{word-spacing:-2.072221pt;}
.ws5d{word-spacing:-2.068128pt;}
.wsdd{word-spacing:-2.019087pt;}
.wsf4{word-spacing:-1.912819pt;}
.ws4b{word-spacing:-1.881088pt;}
.ws56{word-spacing:-1.859712pt;}
.wsa5{word-spacing:-1.859685pt;}
.ws4a{word-spacing:-1.849024pt;}
.ws69{word-spacing:-1.838336pt;}
.wscd{word-spacing:-1.827648pt;}
.ws57{word-spacing:-1.816960pt;}
.ws55{word-spacing:-1.726112pt;}
.wsfd{word-spacing:-1.700284pt;}
.ws8{word-spacing:-1.696326pt;}
.ws28{word-spacing:-1.647150pt;}
.ws98{word-spacing:-1.587168pt;}
.ws97{word-spacing:-1.549760pt;}
.ws16{word-spacing:-1.540882pt;}
.ws60{word-spacing:-1.512352pt;}
.ws5f{word-spacing:-1.474944pt;}
.ws7a{word-spacing:-1.381481pt;}
.ws3f{word-spacing:-1.328347pt;}
.wsa8{word-spacing:-1.261184pt;}
.ws150{word-spacing:-1.243341pt;}
.ws75{word-spacing:-1.234464pt;}
.wsec{word-spacing:-1.229120pt;}
.ws107{word-spacing:-1.222079pt;}
.ws76{word-spacing:-1.207744pt;}
.wseb{word-spacing:-1.191712pt;}
.wsde{word-spacing:-1.186368pt;}
.ws7{word-spacing:-1.175671pt;}
.ws7b{word-spacing:-1.168945pt;}
.ws2f{word-spacing:-1.062677pt;}
.ws14a{word-spacing:-1.004237pt;}
.ws94{word-spacing:-0.913824pt;}
.wsb3{word-spacing:-0.908480pt;}
.wsee{word-spacing:-0.897792pt;}
.ws62{word-spacing:-0.871072pt;}
.ws34{word-spacing:-0.850142pt;}
.ws63{word-spacing:-0.849696pt;}
.ws4c{word-spacing:-0.844352pt;}
.ws77{word-spacing:-0.833664pt;}
.ws38{word-spacing:-0.637606pt;}
.wscf{word-spacing:-0.598528pt;}
.wsd0{word-spacing:-0.550432pt;}
.ws3e{word-spacing:-0.531339pt;}
.ws12{word-spacing:-0.478205pt;}
.ws2{word-spacing:-0.382566pt;}
.ws7d{word-spacing:-0.371937pt;}
.ws83{word-spacing:-0.358048pt;}
.ws13{word-spacing:-0.318803pt;}
.wsa9{word-spacing:-0.309952pt;}
.wsb4{word-spacing:-0.293920pt;}
.wsbc{word-spacing:-0.288576pt;}
.ws10e{word-spacing:-0.283232pt;}
.ws92{word-spacing:-0.272544pt;}
.ws15{word-spacing:-0.265669pt;}
.ws5b{word-spacing:-0.245824pt;}
.ws118{word-spacing:-0.240480pt;}
.wsd7{word-spacing:-0.235136pt;}
.wsef{word-spacing:-0.224448pt;}
.ws72{word-spacing:-0.219104pt;}
.ws3b{word-spacing:-0.212535pt;}
.wsc8{word-spacing:-0.203072pt;}
.ws125{word-spacing:-0.196800pt;}
.ws13c{word-spacing:-0.191283pt;}
.ws115{word-spacing:-0.187040pt;}
.wsbb{word-spacing:-0.160320pt;}
.ws2c{word-spacing:-0.159402pt;}
.ws149{word-spacing:-0.143462pt;}
.ws112{word-spacing:-0.122912pt;}
.ws22{word-spacing:-0.106268pt;}
.ws11b{word-spacing:-0.101536pt;}
.ws151{word-spacing:-0.095642pt;}
.ws82{word-spacing:-0.072352pt;}
.ws43{word-spacing:-0.068096pt;}
.ws2e{word-spacing:-0.053134pt;}
.ws102{word-spacing:-0.047821pt;}
.ws25{word-spacing:-0.042507pt;}
.ws104{word-spacing:-0.024294pt;}
.wsb5{word-spacing:-0.021376pt;}
.ws141{word-spacing:-0.021120pt;}
.ws101{word-spacing:-0.005649pt;}
.ws100{word-spacing:-0.004582pt;}
.ws4{word-spacing:-0.002089pt;}
.ws3{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.010688pt;}
.ws99{word-spacing:0.026720pt;}
.ws116{word-spacing:0.032064pt;}
.ws74{word-spacing:0.037408pt;}
.ws89{word-spacing:0.042752pt;}
.ws147{word-spacing:0.047821pt;}
.wsc1{word-spacing:0.048096pt;}
.ws18{word-spacing:0.053134pt;}
.ws70{word-spacing:0.053440pt;}
.ws117{word-spacing:0.064128pt;}
.ws110{word-spacing:0.074816pt;}
.ws119{word-spacing:0.080160pt;}
.ws58{word-spacing:0.085504pt;}
.ws68{word-spacing:0.090848pt;}
.wsf2{word-spacing:0.100800pt;}
.ws17{word-spacing:0.106268pt;}
.ws71{word-spacing:0.106880pt;}
.wsd8{word-spacing:0.110400pt;}
.wsce{word-spacing:0.112224pt;}
.ws127{word-spacing:0.120000pt;}
.ws10f{word-spacing:0.122912pt;}
.wsf3{word-spacing:0.129600pt;}
.ws59{word-spacing:0.133600pt;}
.ws46{word-spacing:0.134400pt;}
.ws61{word-spacing:0.138944pt;}
.ws126{word-spacing:0.144000pt;}
.wsc0{word-spacing:0.148800pt;}
.ws93{word-spacing:0.153600pt;}
.ws45{word-spacing:0.158400pt;}
.ws20{word-spacing:0.159402pt;}
.wsbd{word-spacing:0.160320pt;}
.ws47{word-spacing:0.168000pt;}
.ws4f{word-spacing:0.171008pt;}
.wsea{word-spacing:0.172800pt;}
.ws142{word-spacing:0.191283pt;}
.ws11{word-spacing:0.212535pt;}
.ws12d{word-spacing:0.216000pt;}
.ws146{word-spacing:0.239104pt;}
.wsd{word-spacing:0.265669pt;}
.ws111{word-spacing:0.267200pt;}
.ws113{word-spacing:0.272544pt;}
.ws14d{word-spacing:0.286925pt;}
.ws19{word-spacing:0.318803pt;}
.ws35{word-spacing:0.425071pt;}
.ws143{word-spacing:0.621670pt;}
.wsf7{word-spacing:0.637606pt;}
.ws73{word-spacing:0.662656pt;}
.wsf8{word-spacing:0.690740pt;}
.ws1f{word-spacing:0.743874pt;}
.ws14{word-spacing:0.850142pt;}
.wsd9{word-spacing:0.956410pt;}
.ws13d{word-spacing:0.956416pt;}
.ws49{word-spacing:0.993984pt;}
.ws41{word-spacing:1.009543pt;}
.wsd4{word-spacing:1.026048pt;}
.ws136{word-spacing:1.052058pt;}
.ws79{word-spacing:1.052768pt;}
.ws78{word-spacing:1.068800pt;}
.wsbe{word-spacing:1.115811pt;}
.ws36{word-spacing:1.275213pt;}
.wsb6{word-spacing:1.336000pt;}
.ws130{word-spacing:1.338982pt;}
.wse0{word-spacing:1.352032pt;}
.ws9c{word-spacing:1.362720pt;}
.ws106{word-spacing:1.381481pt;}
.ws138{word-spacing:1.386803pt;}
.ws9d{word-spacing:1.416160pt;}
.wsda{word-spacing:1.434614pt;}
.ws9e{word-spacing:1.437536pt;}
.wsb7{word-spacing:1.458912pt;}
.ws39{word-spacing:1.540882pt;}
.ws7f{word-spacing:1.594016pt;}
.wsa2{word-spacing:1.647150pt;}
.ws10c{word-spacing:1.673728pt;}
.ws11d{word-spacing:1.678016pt;}
.ws11e{word-spacing:1.720768pt;}
.ws1c{word-spacing:1.753418pt;}
.ws133{word-spacing:1.817190pt;}
.wsdf{word-spacing:1.875744pt;}
.wsa6{word-spacing:1.912819pt;}
.wsf1{word-spacing:1.945216pt;}
.ws5e{word-spacing:1.955904pt;}
.ws10b{word-spacing:1.960653pt;}
.wse1{word-spacing:1.971936pt;}
.wsf0{word-spacing:1.998656pt;}
.wse2{word-spacing:2.014688pt;}
.wsfa{word-spacing:2.019087pt;}
.wsf9{word-spacing:2.072221pt;}
.ws50{word-spacing:2.105536pt;}
.ws51{word-spacing:2.191040pt;}
.wsa7{word-spacing:2.231622pt;}
.ws48{word-spacing:2.281888pt;}
.ws6c{word-spacing:2.287232pt;}
.wse4{word-spacing:2.303264pt;}
.wse3{word-spacing:2.308608pt;}
.wse9{word-spacing:2.313952pt;}
.wsa0{word-spacing:2.444158pt;}
.ws12e{word-spacing:2.582323pt;}
.wsc7{word-spacing:2.741472pt;}
.ws139{word-spacing:2.821427pt;}
.ws7e{word-spacing:2.869229pt;}
.ws1b{word-spacing:2.922363pt;}
.ws8b{word-spacing:2.939200pt;}
.ws88{word-spacing:2.965920pt;}
.ws123{word-spacing:2.985600pt;}
.ws124{word-spacing:3.000000pt;}
.ws8a{word-spacing:3.014016pt;}
.ws30{word-spacing:3.188032pt;}
.wsaa{word-spacing:3.286560pt;}
.ws42{word-spacing:3.294300pt;}
.wsab{word-spacing:3.297248pt;}
.ws120{word-spacing:3.302592pt;}
.wse7{word-spacing:3.329312pt;}
.ws40{word-spacing:3.453701pt;}
.ws144{word-spacing:3.490918pt;}
.ws95{word-spacing:3.548416pt;}
.wsc5{word-spacing:3.559104pt;}
.ws2b{word-spacing:3.559969pt;}
.ws96{word-spacing:3.564448pt;}
.wsc6{word-spacing:3.628576pt;}
.wse8{word-spacing:3.639264pt;}
.ws11f{word-spacing:3.714080pt;}
.wsa1{word-spacing:3.772505pt;}
.ws9{word-spacing:3.825638pt;}
.wsf5{word-spacing:3.878772pt;}
.ws6b{word-spacing:3.901120pt;}
.ws6a{word-spacing:3.938528pt;}
.ws10a{word-spacing:4.016947pt;}
.wsfc{word-spacing:4.038174pt;}
.ws11a{word-spacing:4.232448pt;}
.wsa{word-spacing:4.250709pt;}
.ws12b{word-spacing:4.305600pt;}
.ws12c{word-spacing:4.310400pt;}
.ws109{word-spacing:4.351693pt;}
.ws1d{word-spacing:4.410111pt;}
.ws105{word-spacing:4.516379pt;}
.wsd3{word-spacing:4.521024pt;}
.ws86{word-spacing:4.542400pt;}
.ws87{word-spacing:4.563776pt;}
.ws131{word-spacing:4.779639pt;}
.ws10d{word-spacing:4.781175pt;}
.ws6{word-spacing:4.782080pt;}
.ws13e{word-spacing:4.783087pt;}
.ws2d{word-spacing:4.888316pt;}
.wscb{word-spacing:4.911136pt;}
.ws90{word-spacing:4.953888pt;}
.wscc{word-spacing:4.959232pt;}
.ws91{word-spacing:4.964576pt;}
.ws3d{word-spacing:4.994583pt;}
.wsac{word-spacing:5.162304pt;}
.ws1e{word-spacing:5.207119pt;}
.wsad{word-spacing:5.221088pt;}
.wse{word-spacing:5.307978pt;}
.ws145{word-spacing:5.308109pt;}
.ws10{word-spacing:5.313387pt;}
.wsdc{word-spacing:5.366521pt;}
.wsa4{word-spacing:5.419654pt;}
.ws14b{word-spacing:5.451571pt;}
.ws29{word-spacing:5.472788pt;}
.ws2a{word-spacing:5.525922pt;}
.ws12a{word-spacing:5.572800pt;}
.wsf6{word-spacing:5.791591pt;}
.ws128{word-spacing:5.836800pt;}
.wsdb{word-spacing:5.844725pt;}
.ws129{word-spacing:5.894400pt;}
.wsbf{word-spacing:6.216662pt;}
.wsfb{word-spacing:6.376064pt;}
.wsc9{word-spacing:6.824288pt;}
.ws9f{word-spacing:6.854269pt;}
.ws52{word-spacing:7.134240pt;}
.ws121{word-spacing:7.195200pt;}
.ws8f{word-spacing:7.198368pt;}
.ws122{word-spacing:7.204800pt;}
.ws8e{word-spacing:7.209056pt;}
.wse6{word-spacing:7.449536pt;}
.wse5{word-spacing:7.460224pt;}
.ws44{word-spacing:8.086400pt;}
.wsc{word-spacing:8.607686pt;}
.wsca{word-spacing:9.036704pt;}
.ws53{word-spacing:9.068768pt;}
.ws54{word-spacing:9.116864pt;}
.wsaf{word-spacing:9.624544pt;}
.wsba{word-spacing:9.656608pt;}
.ws64{word-spacing:9.667296pt;}
.ws65{word-spacing:9.688672pt;}
.wsed{word-spacing:9.699360pt;}
.wsb0{word-spacing:9.736768pt;}
.ws4d{word-spacing:9.934496pt;}
.ws4e{word-spacing:10.094816pt;}
.ws21{word-spacing:10.254836pt;}
.wsb2{word-spacing:10.383392pt;}
.ws23{word-spacing:10.580989pt;}
.wsb9{word-spacing:10.987264pt;}
.wsb8{word-spacing:10.992608pt;}
.wsd1{word-spacing:11.297216pt;}
.wsd2{word-spacing:11.414784pt;}
.ws14c{word-spacing:11.716096pt;}
.ws13f{word-spacing:11.901158pt;}
.ws148{word-spacing:11.901636pt;}
.ws140{word-spacing:11.906492pt;}
.ws13b{word-spacing:11.907379pt;}
.ws6e{word-spacing:12.237760pt;}
.ws6f{word-spacing:12.349984pt;}
.ws6d{word-spacing:12.494272pt;}
.ws84{word-spacing:12.868352pt;}
.ws85{word-spacing:12.927136pt;}
.ws137{word-spacing:12.959437pt;}
.ws7c{word-spacing:13.230333pt;}
.ws134{word-spacing:13.724570pt;}
.ws9a{word-spacing:13.830272pt;}
.ws9b{word-spacing:13.851648pt;}
.ws13a{word-spacing:14.728806pt;}
.ws66{word-spacing:16.058720pt;}
.ws67{word-spacing:16.192320pt;}
.wsb{word-spacing:16.418365pt;}
.ws12f{word-spacing:16.688427pt;}
.ws132{word-spacing:16.689212pt;}
.ws14f{word-spacing:16.689459pt;}
.ws11c{word-spacing:16.748096pt;}
.ws135{word-spacing:16.976384pt;}
.ws14e{word-spacing:17.167667pt;}
.wsa3{word-spacing:18.543719pt;}
.wsd5{word-spacing:21.221024pt;}
.wsd6{word-spacing:21.237056pt;}
.wsb1{word-spacing:21.883680pt;}
.ws37{word-spacing:26.088729pt;}
.ws114{word-spacing:206.267712pt;}
.wsfe{word-spacing:378.405990pt;}
.ws27{word-spacing:703.069088pt;}
._42{margin-left:-206.160832pt;}
._21{margin-left:-11.318592pt;}
._20{margin-left:-10.362016pt;}
._22{margin-left:-9.341312pt;}
._44{margin-left:-8.113731pt;}
._1{margin-left:-7.077478pt;}
._4{margin-left:-5.897859pt;}
._6{margin-left:-4.399514pt;}
._5{margin-left:-2.922363pt;}
._4a{margin-left:-2.022722pt;}
._7{margin-left:-1.131798pt;}
._9{width:0.969929pt;}
._2{width:2.667292pt;}
._15{width:3.825638pt;}
._45{width:8.110998pt;}
._46{width:9.068995pt;}
._1b{width:10.148256pt;}
._1c{width:12.024241pt;}
._e{width:13.193186pt;}
._1d{width:14.085865pt;}
._34{width:15.833892pt;}
._8{width:16.737280pt;}
._12{width:17.852979pt;}
._b{width:19.075058pt;}
._14{width:20.387418pt;}
._d{width:21.466082pt;}
._16{width:22.900697pt;}
._c{width:24.420416pt;}
._47{width:25.355717pt;}
._1f{width:26.726335pt;}
._f{width:27.789012pt;}
._13{width:29.701831pt;}
._25{width:30.939898pt;}
._a{width:32.161977pt;}
._0{width:33.189530pt;}
._10{width:35.227754pt;}
._24{width:36.141844pt;}
._23{width:37.831313pt;}
._1e{width:39.372195pt;}
._18{width:46.295585pt;}
._49{width:54.993920pt;}
._3{width:61.643002pt;}
._48{width:78.904320pt;}
._19{width:83.154501pt;}
._17{width:85.811195pt;}
._43{width:96.710368pt;}
._27{width:106.991030pt;}
._2d{width:139.588915pt;}
._38{width:173.669312pt;}
._29{width:178.801971pt;}
._2e{width:183.936981pt;}
._37{width:192.025952pt;}
._26{width:204.354179pt;}
._2f{width:207.851588pt;}
._40{width:226.518807pt;}
._30{width:232.696013pt;}
._41{width:240.768576pt;}
._2c{width:243.312230pt;}
._32{width:249.171004pt;}
._3d{width:280.113783pt;}
._3e{width:290.726967pt;}
._31{width:298.688717pt;}
._2a{width:307.965952pt;}
._39{width:314.056192pt;}
._3c{width:327.576512pt;}
._28{width:329.416271pt;}
._2b{width:331.254682pt;}
._3f{width:339.202391pt;}
._36{width:356.621152pt;}
._3b{width:366.010560pt;}
._3a{width:404.930912pt;}
._35{width:1423.602647pt;}
._1a{width:1444.414487pt;}
._33{width:1825.347200pt;}
._11{width:1846.600533pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs5{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fsa{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:119.142316pt;}
.y14a{bottom:-683.647600pt;}
.yd0{bottom:-676.260368pt;}
.y84{bottom:-665.104400pt;}
.ycf{bottom:-658.260440pt;}
.y149{bottom:-654.767600pt;}
.y83{bottom:-647.104472pt;}
.yce{bottom:-640.260512pt;}
.y82{bottom:-629.184704pt;}
.ycd{bottom:-622.260584pt;}
.y81{bottom:-611.184776pt;}
.ycc{bottom:-604.260656pt;}
.y80{bottom:-593.184848pt;}
.ycb{bottom:-586.260728pt;}
.y7f{bottom:-575.184920pt;}
.yca{bottom:-568.260800pt;}
.y7e{bottom:-557.184992pt;}
.y7d{bottom:-539.185064pt;}
.yc9{bottom:-534.740933pt;}
.y7c{bottom:-521.265296pt;}
.yc8{bottom:-504.740933pt;}
.y7b{bottom:-503.265368pt;}
.y181{bottom:-486.839600pt;}
.y7a{bottom:-485.265440pt;}
.y79{bottom:-467.265512pt;}
.y180{bottom:-453.319600pt;}
.y78{bottom:-449.265584pt;}
.y77{bottom:-431.265656pt;}
.y76{bottom:-413.265728pt;}
.y120{bottom:-403.499053pt;}
.y75{bottom:-395.345960pt;}
.y11f{bottom:-385.499125pt;}
.y74{bottom:-377.346032pt;}
.y11e{bottom:-367.499197pt;}
.y73{bottom:-359.346104pt;}
.y148{bottom:-353.645936pt;}
.y11d{bottom:-349.499269pt;}
.y72{bottom:-341.346176pt;}
.y147{bottom:-335.646008pt;}
.y11c{bottom:-331.499341pt;}
.y71{bottom:-323.346248pt;}
.y146{bottom:-317.646080pt;}
.y11b{bottom:-313.499413pt;}
.y70{bottom:-305.346320pt;}
.y145{bottom:-299.646152pt;}
.y11a{bottom:-295.499485pt;}
.y144{bottom:-281.726384pt;}
.y6f{bottom:-279.426584pt;}
.y119{bottom:-277.579717pt;}
.y143{bottom:-263.726456pt;}
.y118{bottom:-259.579789pt;}
.y1e0{bottom:-258.697733pt;}
.yc7{bottom:-248.179861pt;}
.y142{bottom:-245.726528pt;}
.y6e{bottom:-245.426720pt;}
.y117{bottom:-241.579861pt;}
.y1df{bottom:-241.417733pt;}
.yc6{bottom:-230.179933pt;}
.y141{bottom:-227.726600pt;}
.y6d{bottom:-227.426792pt;}
.y1de{bottom:-224.057333pt;}
.y116{bottom:-223.579933pt;}
.yc5{bottom:-212.180005pt;}
.y140{bottom:-209.726672pt;}
.y6c{bottom:-209.426864pt;}
.y1dd{bottom:-206.696933pt;}
.y115{bottom:-205.580005pt;}
.yc4{bottom:-194.180077pt;}
.y13f{bottom:-191.726744pt;}
.y6b{bottom:-191.426936pt;}
.y114{bottom:-187.580077pt;}
.y1dc{bottom:-181.016933pt;}
.yc3{bottom:-176.180149pt;}
.y13e{bottom:-173.726816pt;}
.y6a{bottom:-173.427008pt;}
.y113{bottom:-169.660309pt;}
.yfd{bottom:-167.880368pt;}
.yc2{bottom:-158.260381pt;}
.y13d{bottom:-155.807048pt;}
.y69{bottom:-155.427080pt;}
.y112{bottom:-151.660381pt;}
.yfc{bottom:-149.880440pt;}
.y1db{bottom:-147.416133pt;}
.y17f{bottom:-144.979040pt;}
.yc1{bottom:-140.260453pt;}
.y13c{bottom:-137.807120pt;}
.y68{bottom:-137.427152pt;}
.y111{bottom:-133.660453pt;}
.yfb{bottom:-131.880512pt;}
.y17e{bottom:-126.983120pt;}
.y1da{bottom:-123.176133pt;}
.yc0{bottom:-122.260525pt;}
.y13b{bottom:-119.807192pt;}
.y67{bottom:-119.507384pt;}
.y110{bottom:-115.660525pt;}
.yfa{bottom:-113.880584pt;}
.y17d{bottom:-108.987200pt;}
.ybf{bottom:-104.260597pt;}
.y13a{bottom:-101.807264pt;}
.y66{bottom:-101.507456pt;}
.y1d9{bottom:-99.016533pt;}
.y10f{bottom:-97.660597pt;}
.yf9{bottom:-95.880656pt;}
.y17c{bottom:-91.071440pt;}
.ybe{bottom:-86.260669pt;}
.y139{bottom:-83.807336pt;}
.y65{bottom:-83.507528pt;}
.y1d8{bottom:-82.776933pt;}
.y10e{bottom:-79.660669pt;}
.yf8{bottom:-77.880728pt;}
.y17b{bottom:-73.075520pt;}
.y64{bottom:-65.507600pt;}
.y195{bottom:-61.260933pt;}
.ybd{bottom:-60.340933pt;}
.yf7{bottom:-59.880800pt;}
.y138{bottom:-57.887600pt;}
.y17a{bottom:-55.079600pt;}
.y10d{bottom:-53.740933pt;}
.y1d7{bottom:-50.697333pt;}
.y1d6{bottom:-33.336933pt;}
.y63{bottom:-31.987600pt;}
.y194{bottom:-27.740933pt;}
.ybc{bottom:-26.740933pt;}
.yf6{bottom:-26.360933pt;}
.y16d{bottom:-24.946000pt;}
.y137{bottom:-24.287600pt;}
.y179{bottom:-21.479600pt;}
.y10c{bottom:-20.140933pt;}
.y1d5{bottom:-9.256800pt;}
.y62{bottom:-6.067600pt;}
.y0{bottom:0.000000pt;}
.y136{bottom:2.832533pt;}
.ybb{bottom:3.019067pt;}
.ye{bottom:3.044747pt;}
.y10b{bottom:3.299067pt;}
.yf5{bottom:3.639067pt;}
.y16c{bottom:3.934000pt;}
.yd{bottom:12.578910pt;}
.y2{bottom:14.760586pt;}
.y2f{bottom:56.693333pt;}
.ya6{bottom:96.544000pt;}
.y5f{bottom:101.392000pt;}
.y1e6{bottom:112.006667pt;}
.y2e{bottom:114.021333pt;}
.ya5{bottom:114.556000pt;}
.y5e{bottom:119.404000pt;}
.yda{bottom:122.606667pt;}
.y1b3{bottom:130.490667pt;}
.y2d{bottom:132.033333pt;}
.ya4{bottom:132.568000pt;}
.y1e5{bottom:133.485333pt;}
.y5d{bottom:138.745333pt;}
.yd9{bottom:140.620000pt;}
.y1b1{bottom:145.102667pt;}
.y106{bottom:146.982667pt;}
.y2c{bottom:150.046667pt;}
.ya3{bottom:150.581333pt;}
.y1e4{bottom:154.965333pt;}
.y5c{bottom:156.757333pt;}
.yd8{bottom:158.632000pt;}
.y1b2{bottom:159.714667pt;}
.y105{bottom:164.994667pt;}
.y2b{bottom:168.058667pt;}
.y1e3{bottom:168.474667pt;}
.ya2{bottom:168.593333pt;}
.y5b{bottom:176.098667pt;}
.yd7{bottom:176.645333pt;}
.y16e{bottom:178.101333pt;}
.y1b0{bottom:180.729333pt;}
.y104{bottom:183.008000pt;}
.y2a{bottom:186.072000pt;}
.ya1{bottom:186.606667pt;}
.y1af{bottom:188.034667pt;}
.y215{bottom:192.068000pt;}
.yd6{bottom:194.657333pt;}
.y5a{bottom:195.440000pt;}
.y157{bottom:198.038400pt;}
.y103{bottom:201.020000pt;}
.y29{bottom:204.084000pt;}
.ya0{bottom:204.618667pt;}
.y214{bottom:209.282667pt;}
.y1e2{bottom:211.022667pt;}
.yd5{bottom:212.669333pt;}
.y59{bottom:214.780000pt;}
.y1ae{bottom:216.672000pt;}
.y102{bottom:219.032000pt;}
.y28{bottom:222.096000pt;}
.y9f{bottom:222.630667pt;}
.y213{bottom:226.498667pt;}
.y1e1{bottom:228.118667pt;}
.yd4{bottom:230.682667pt;}
.y1d4{bottom:231.463659pt;}
.y101{bottom:237.045333pt;}
.y1ad{bottom:238.004000pt;}
.y27{bottom:240.109333pt;}
.y9e{bottom:240.644000pt;}
.y58{bottom:243.420000pt;}
.y212{bottom:243.713333pt;}
.y1b7{bottom:248.056000pt;}
.yd3{bottom:248.694667pt;}
.y1d3{bottom:249.463587pt;}
.y100{bottom:255.057333pt;}
.y26{bottom:258.121333pt;}
.y9d{bottom:258.656000pt;}
.y1ac{bottom:259.334667pt;}
.yf4{bottom:260.200139pt;}
.y211{bottom:260.929333pt;}
.y57{bottom:261.432000pt;}
.yd2{bottom:266.706667pt;}
.y1d2{bottom:267.463515pt;}
.y133{bottom:270.322667pt;}
.yff{bottom:273.070667pt;}
.yba{bottom:275.019067pt;}
.y25{bottom:276.134667pt;}
.y9c{bottom:276.669333pt;}
.y135{bottom:277.472400pt;}
.y210{bottom:278.145333pt;}
.yf3{bottom:278.200067pt;}
.y1ab{bottom:280.349333pt;}
.y193{bottom:280.599627pt;}
.y1d1{bottom:285.463443pt;}
.y1a8{bottom:287.654667pt;}
.y132{bottom:288.334667pt;}
.y56{bottom:290.072000pt;}
.y61{bottom:291.532400pt;}
.y24{bottom:294.146667pt;}
.y9b{bottom:294.681333pt;}
.y178{bottom:294.789120pt;}
.y1aa{bottom:294.961333pt;}
.y20f{bottom:295.360000pt;}
.yf2{bottom:296.199995pt;}
.yd1{bottom:297.818667pt;}
.y192{bottom:298.595547pt;}
.y1a7{bottom:302.266667pt;}
.y1d0{bottom:303.463371pt;}
.yfe{bottom:304.181333pt;}
.y16b{bottom:305.055664pt;}
.y131{bottom:306.348000pt;}
.y55{bottom:309.412000pt;}
.y1a9{bottom:309.573333pt;}
.y23{bottom:312.158667pt;}
.y20e{bottom:312.576000pt;}
.y9a{bottom:312.693333pt;}
.y177{bottom:312.785040pt;}
.yf1{bottom:314.199923pt;}
.y191{bottom:316.591467pt;}
.yb9{bottom:317.756000pt;}
.y1cf{bottom:321.383139pt;}
.y16a{bottom:323.055592pt;}
.ye6{bottom:324.118667pt;}
.y130{bottom:324.360000pt;}
.y54{bottom:328.753333pt;}
.y20d{bottom:329.790667pt;}
.y22{bottom:330.172000pt;}
.y99{bottom:330.706667pt;}
.y176{bottom:330.780960pt;}
.y1a6{bottom:330.904000pt;}
.yf0{bottom:332.199851pt;}
.y190{bottom:334.507227pt;}
.y1ce{bottom:339.383067pt;}
.y169{bottom:341.055520pt;}
.y12f{bottom:342.372000pt;}
.y53{bottom:346.766667pt;}
.y20c{bottom:347.006667pt;}
.y21{bottom:348.184000pt;}
.y98{bottom:348.718667pt;}
.y175{bottom:348.776880pt;}
.yef{bottom:350.119619pt;}
.y1a5{bottom:352.236000pt;}
.y18f{bottom:352.503147pt;}
.y168{bottom:359.055448pt;}
.y12e{bottom:360.385333pt;}
.y20b{bottom:364.222667pt;}
.y52{bottom:366.106667pt;}
.y20{bottom:366.197333pt;}
.y97{bottom:366.732000pt;}
.y1cd{bottom:366.743923pt;}
.y174{bottom:366.772800pt;}
.yee{bottom:368.119547pt;}
.y18e{bottom:370.499067pt;}
.y10a{bottom:375.059139pt;}
.y1ca{bottom:375.703139pt;}
.y167{bottom:376.975216pt;}
.y12d{bottom:378.397333pt;}
.y1a4{bottom:380.341333pt;}
.y20a{bottom:381.437333pt;}
.y1f{bottom:384.209333pt;}
.y1cc{bottom:384.743851pt;}
.y96{bottom:384.744000pt;}
.y173{bottom:384.768720pt;}
.yed{bottom:386.119475pt;}
.y109{bottom:393.059067pt;}
.y1c9{bottom:393.703067pt;}
.y51{bottom:394.746667pt;}
.y166{bottom:394.975144pt;}
.y12c{bottom:396.410667pt;}
.y196{bottom:397.444000pt;}
.y209{bottom:398.653333pt;}
.y1e{bottom:402.221333pt;}
.y172{bottom:402.684480pt;}
.y1cb{bottom:402.743779pt;}
.y95{bottom:402.756000pt;}
.y18d{bottom:404.099067pt;}
.yec{bottom:404.119403pt;}
.y1a3{bottom:409.862667pt;}
.y50{bottom:412.758667pt;}
.y165{bottom:412.975072pt;}
.y12b{bottom:414.422667pt;}
.y208{bottom:415.868000pt;}
.y183{bottom:417.381333pt;}
.y1d{bottom:420.234667pt;}
.y171{bottom:420.680400pt;}
.y94{bottom:420.769333pt;}
.y1c8{bottom:421.382515pt;}
.yeb{bottom:422.119331pt;}
.y108{bottom:426.259067pt;}
.y1a2{bottom:427.876000pt;}
.y1c7{bottom:430.343067pt;}
.y4f{bottom:430.772000pt;}
.y164{bottom:430.975000pt;}
.y12a{bottom:432.434667pt;}
.y207{bottom:433.084000pt;}
.y1c{bottom:438.246667pt;}
.y93{bottom:438.781333pt;}
.y170{bottom:445.880400pt;}
.y1a1{bottom:445.888000pt;}
.yea{bottom:448.039067pt;}
.y4e{bottom:448.784000pt;}
.y163{bottom:448.974928pt;}
.y206{bottom:450.300000pt;}
.y129{bottom:450.448000pt;}
.y1b{bottom:456.260000pt;}
.y92{bottom:456.794667pt;}
.y1c6{bottom:458.023139pt;}
.y1a0{bottom:463.901333pt;}
.y4d{bottom:466.796000pt;}
.y162{bottom:466.974856pt;}
.y205{bottom:467.514667pt;}
.y128{bottom:468.460000pt;}
.y1a{bottom:474.272000pt;}
.y1c5{bottom:476.023067pt;}
.ye9{bottom:481.639067pt;}
.y19f{bottom:481.913333pt;}
.y91{bottom:482.777333pt;}
.y204{bottom:484.730667pt;}
.y4c{bottom:484.809333pt;}
.y161{bottom:484.974784pt;}
.y127{bottom:486.473333pt;}
.y1b6{bottom:487.704000pt;}
.y19{bottom:492.284000pt;}
.y1c4{bottom:494.663067pt;}
.y19e{bottom:499.925333pt;}
.y203{bottom:501.945333pt;}
.y160{bottom:502.894552pt;}
.y126{bottom:504.485333pt;}
.y1b5{bottom:505.717333pt;}
.y18{bottom:510.297333pt;}
.y4b{bottom:510.792000pt;}
.ye8{bottom:511.399067pt;}
.y156{bottom:513.080000pt;}
.y1c3{bottom:513.303139pt;}
.y90{bottom:513.728000pt;}
.y19d{bottom:517.938667pt;}
.y202{bottom:519.161333pt;}
.y15f{bottom:520.894480pt;}
.y125{bottom:522.497333pt;}
.y1b4{bottom:523.729333pt;}
.y155{bottom:531.093333pt;}
.y1c2{bottom:531.303067pt;}
.y8f{bottom:531.740000pt;}
.y19c{bottom:535.950667pt;}
.y17{bottom:536.280000pt;}
.y201{bottom:536.377333pt;}
.y15e{bottom:538.894408pt;}
.y124{bottom:540.510667pt;}
.y4a{bottom:541.742667pt;}
.y154{bottom:549.105333pt;}
.y8e{bottom:549.752000pt;}
.y1c1{bottom:549.943923pt;}
.y200{bottom:553.592000pt;}
.y15d{bottom:556.894336pt;}
.y123{bottom:558.522667pt;}
.y1be{bottom:558.903139pt;}
.y49{bottom:559.754667pt;}
.y19b{bottom:561.933333pt;}
.y153{bottom:567.118667pt;}
.y8d{bottom:567.765333pt;}
.y1c0{bottom:567.943851pt;}
.y1ff{bottom:570.808000pt;}
.y15c{bottom:574.894264pt;}
.y1bd{bottom:576.903067pt;}
.y48{bottom:577.766667pt;}
.y122{bottom:584.505333pt;}
.y152{bottom:585.130667pt;}
.y8c{bottom:585.777333pt;}
.y1bf{bottom:585.943779pt;}
.y1fe{bottom:588.024000pt;}
.yb8{bottom:589.988000pt;}
.ye5{bottom:592.884000pt;}
.y47{bottom:595.780000pt;}
.y15b{bottom:600.814000pt;}
.y151{bottom:603.142667pt;}
.y8b{bottom:603.790667pt;}
.y16{bottom:604.205333pt;}
.y1bc{bottom:604.583067pt;}
.y1fd{bottom:605.238667pt;}
.yb7{bottom:608.001333pt;}
.ye4{bottom:610.896000pt;}
.y121{bottom:612.614667pt;}
.y46{bottom:613.792000pt;}
.y150{bottom:621.156000pt;}
.y8a{bottom:621.802667pt;}
.y1fc{bottom:622.454667pt;}
.y1bb{bottom:623.223691pt;}
.yb6{bottom:626.013333pt;}
.ye3{bottom:628.909333pt;}
.y45{bottom:631.805333pt;}
.y1ba{bottom:632.263067pt;}
.y107{bottom:632.552000pt;}
.y15a{bottom:634.414000pt;}
.y15{bottom:638.157333pt;}
.y14f{bottom:639.168000pt;}
.y1fb{bottom:639.669333pt;}
.y89{bottom:639.814667pt;}
.yb5{bottom:644.026667pt;}
.ye2{bottom:646.921333pt;}
.y44{bottom:649.817333pt;}
.y14{bottom:656.170667pt;}
.y1fa{bottom:656.885333pt;}
.y14e{bottom:657.181333pt;}
.y88{bottom:657.828000pt;}
.y159{bottom:661.534133pt;}
.yb4{bottom:662.038667pt;}
.ye1{bottom:664.934667pt;}
.y43{bottom:667.829333pt;}
.y1b9{bottom:668.103067pt;}
.y1f9{bottom:674.101333pt;}
.y13{bottom:674.182667pt;}
.y14d{bottom:675.193333pt;}
.y87{bottom:675.840000pt;}
.yb3{bottom:680.050667pt;}
.ye0{bottom:682.946667pt;}
.y42{bottom:685.842667pt;}
.y1f8{bottom:691.316000pt;}
.y12{bottom:692.194667pt;}
.y86{bottom:693.853333pt;}
.yb2{bottom:698.064000pt;}
.ydf{bottom:700.958667pt;}
.y1b8{bottom:701.063067pt;}
.y14c{bottom:701.176000pt;}
.y182{bottom:702.308000pt;}
.y41{bottom:703.854667pt;}
.y1f7{bottom:708.532000pt;}
.y11{bottom:710.208000pt;}
.y18c{bottom:712.367787pt;}
.yb1{bottom:716.076000pt;}
.yde{bottom:718.972000pt;}
.y40{bottom:721.868000pt;}
.y16f{bottom:722.245333pt;}
.y85{bottom:723.532000pt;}
.y1f6{bottom:725.746667pt;}
.y10{bottom:728.220000pt;}
.y14b{bottom:729.285333pt;}
.y18b{bottom:730.363707pt;}
.yb0{bottom:734.088000pt;}
.ydd{bottom:736.984000pt;}
.y3f{bottom:739.880000pt;}
.y1f5{bottom:742.962667pt;}
.y60{bottom:743.469333pt;}
.yf{bottom:746.233333pt;}
.y18a{bottom:748.359627pt;}
.y134{bottom:749.222667pt;}
.yaf{bottom:752.101333pt;}
.ydc{bottom:754.997333pt;}
.y3e{bottom:757.892000pt;}
.y1f4{bottom:760.178667pt;}
.y189{bottom:766.355547pt;}
.yae{bottom:770.113333pt;}
.y19a{bottom:773.009333pt;}
.y3d{bottom:775.905333pt;}
.y1f3{bottom:777.393333pt;}
.yc{bottom:777.728048pt;}
.yb{bottom:778.409333pt;}
.ydb{bottom:780.980000pt;}
.ye7{bottom:783.399067pt;}
.y188{bottom:784.351467pt;}
.yad{bottom:788.126667pt;}
.y199{bottom:791.021333pt;}
.y3c{bottom:793.917333pt;}
.y1f2{bottom:794.609333pt;}
.y187{bottom:802.347387pt;}
.y198{bottom:809.034667pt;}
.y1f1{bottom:811.824000pt;}
.y3b{bottom:811.930667pt;}
.ya{bottom:813.081333pt;}
.yac{bottom:814.109333pt;}
.y186{bottom:820.263147pt;}
.y197{bottom:827.046667pt;}
.y1f0{bottom:829.040000pt;}
.y9{bottom:829.221333pt;}
.y3a{bottom:829.942667pt;}
.y185{bottom:838.259067pt;}
.y21d{bottom:842.341333pt;}
.yab{bottom:845.060000pt;}
.y1ef{bottom:846.256000pt;}
.y39{bottom:847.954667pt;}
.y8{bottom:849.700000pt;}
.y21c{bottom:859.557333pt;}
.yaa{bottom:863.072000pt;}
.y1ee{bottom:863.470667pt;}
.y7{bottom:865.840000pt;}
.y38{bottom:865.968000pt;}
.y184{bottom:871.459067pt;}
.y21b{bottom:876.772000pt;}
.y1ed{bottom:880.686667pt;}
.ya9{bottom:881.084000pt;}
.y37{bottom:883.980000pt;}
.y6{bottom:885.609333pt;}
.y1ec{bottom:897.901333pt;}
.ya8{bottom:899.097333pt;}
.y36{bottom:901.993333pt;}
.y21a{bottom:905.978667pt;}
.y1eb{bottom:915.117333pt;}
.y35{bottom:920.005333pt;}
.y219{bottom:923.193333pt;}
.ya7{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.y1ea{bottom:932.333333pt;}
.y158{bottom:936.174000pt;}
.y34{bottom:938.017333pt;}
.y218{bottom:940.409333pt;}
.y1e9{bottom:949.548000pt;}
.y4{bottom:952.217333pt;}
.y33{bottom:956.030667pt;}
.y217{bottom:957.624000pt;}
.y1e8{bottom:966.764000pt;}
.y32{bottom:974.042667pt;}
.y216{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y1e7{bottom:991.949333pt;}
.y31{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y30{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.hf{height:24.760382pt;}
.h7{height:27.076941pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h11{height:31.067969pt;}
.he{height:31.157778pt;}
.h25{height:33.904947pt;}
.h1d{height:34.430976pt;}
.h8{height:34.813542pt;}
.h23{height:34.898438pt;}
.h13{height:35.039062pt;}
.h24{height:35.052646pt;}
.hc{height:38.256384pt;}
.h17{height:38.462187pt;}
.hd{height:38.681455pt;}
.h14{height:38.853594pt;}
.h4{height:38.947124pt;}
.h15{height:39.010156pt;}
.h2{height:45.268412pt;}
.h12{height:46.531250pt;}
.h6{height:48.365611pt;}
.h1e{height:64.034876pt;}
.h5{height:68.861952pt;}
.h3{height:74.463948pt;}
.h21{height:74.695802pt;}
.h20{height:74.852364pt;}
.h22{height:75.011098pt;}
.h1f{height:218.628000pt;}
.h16{height:251.212000pt;}
.h19{height:256.117333pt;}
.h10{height:261.870667pt;}
.h1c{height:270.900000pt;}
.h1b{height:283.094667pt;}
.h1a{height:297.488267pt;}
.h18{height:372.788000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:177.493574pt;}
.wc{width:347.212000pt;}
.w5{width:351.416000pt;}
.w4{width:369.729333pt;}
.w6{width:372.086667pt;}
.w7{width:377.926667pt;}
.w8{width:396.262667pt;}
.wb{width:445.480000pt;}
.wa{width:465.284000pt;}
.w9{width:487.118667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x79{left:-122.504000pt;}
.x29{left:-118.649333pt;}
.x7e{left:-111.304000pt;}
.x7f{left:-110.024623pt;}
.x1b{left:-109.121333pt;}
.x38{left:-104.868000pt;}
.x88{left:-101.624000pt;}
.x7d{left:-100.184000pt;}
.x87{left:-98.424000pt;}
.x3e{left:-96.577333pt;}
.x8e{left:-94.184000pt;}
.x2c{left:-90.329427pt;}
.x89{left:-81.943923pt;}
.x1e{left:-80.801333pt;}
.x3b{left:-76.548094pt;}
.x86{left:-73.304576pt;}
.x56{left:-71.497333pt;}
.x41{left:-68.257427pt;}
.x7b{left:-65.224000pt;}
.x50{left:-61.890667pt;}
.x2e{left:-58.969333pt;}
.x2b{left:-49.609333pt;}
.x1d{left:-43.361333pt;}
.x32{left:-39.449333pt;}
.x51{left:-33.570667pt;}
.x4d{left:-22.106761pt;}
.x53{left:-12.130667pt;}
.x0{left:0.000000pt;}
.x80{left:6.855420pt;}
.x3a{left:8.892000pt;}
.x7a{left:10.936000pt;}
.x43{left:12.622667pt;}
.x81{left:21.254421pt;}
.x7{left:26.021437pt;}
.x40{left:31.022667pt;}
.x8a{left:34.375223pt;}
.x2{left:50.075946pt;}
.x4f{left:58.773333pt;}
.x4c{left:77.173333pt;}
.x57{left:79.142667pt;}
.x52{left:88.749333pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x6d{left:126.272000pt;}
.x6a{left:127.957333pt;}
.x4{left:129.929333pt;}
.x19{left:132.797333pt;}
.x61{left:134.784000pt;}
.x6c{left:143.122667pt;}
.x60{left:144.401333pt;}
.x6b{left:147.289333pt;}
.xd{left:149.777333pt;}
.x4b{left:153.292000pt;}
.xe{left:156.418667pt;}
.xf{left:159.806667pt;}
.x34{left:164.696000pt;}
.x10{left:166.448000pt;}
.x1f{left:168.156000pt;}
.x8{left:170.045333pt;}
.x2f{left:172.197333pt;}
.x55{left:174.110667pt;}
.x8b{left:186.933594pt;}
.x82{left:193.573692pt;}
.x83{left:197.333030pt;}
.x3d{left:198.720000pt;}
.x37{left:207.888000pt;}
.x30{left:210.808000pt;}
.x1a{left:211.986667pt;}
.x3c{left:217.781333pt;}
.x28{left:221.142667pt;}
.x78{left:223.245333pt;}
.x97{left:225.868000pt;}
.x44{left:229.713333pt;}
.x5c{left:231.204000pt;}
.x5e{left:236.078667pt;}
.x96{left:237.545333pt;}
.x13{left:239.077333pt;}
.x6e{left:243.026667pt;}
.x5d{left:244.486667pt;}
.x14{left:245.718667pt;}
.x62{left:250.092000pt;}
.x54{left:252.768000pt;}
.x63{left:262.250667pt;}
.x9{left:263.852000pt;}
.x5f{left:268.180000pt;}
.xa{left:270.493333pt;}
.xb{left:273.748000pt;}
.xc{left:280.390667pt;}
.x47{left:299.054667pt;}
.x48{left:312.338667pt;}
.x84{left:323.413103pt;}
.x15{left:328.112000pt;}
.x16{left:334.753333pt;}
.x8c{left:336.692826pt;}
.x8d{left:349.092634pt;}
.x2a{left:350.150667pt;}
.x85{left:354.293099pt;}
.x2d{left:359.190667pt;}
.x31{left:360.310667pt;}
.x8f{left:364.296000pt;}
.x7c{left:365.654972pt;}
.x33{left:369.350667pt;}
.x39{left:374.892000pt;}
.x1c{left:376.718667pt;}
.x75{left:382.626667pt;}
.x6f{left:390.428000pt;}
.x3f{left:393.182667pt;}
.x64{left:398.241333pt;}
.x73{left:399.736000pt;}
.x74{left:413.020000pt;}
.x65{left:420.202667pt;}
.x70{left:421.481333pt;}
.x66{left:423.794667pt;}
.x42{left:438.542667pt;}
.x58{left:474.253333pt;}
.x11{left:481.282667pt;}
.x4e{left:484.693333pt;}
.x45{left:486.205333pt;}
.x12{left:487.924000pt;}
.x24{left:489.096000pt;}
.x26{left:497.797333pt;}
.x46{left:499.489333pt;}
.x25{left:502.380000pt;}
.x27{left:511.081333pt;}
.x76{left:515.122667pt;}
.x77{left:528.406667pt;}
.x68{left:537.476000pt;}
.x67{left:544.896000pt;}
.x35{left:552.472000pt;}
.x71{left:556.037333pt;}
.x36{left:565.754667pt;}
.x72{left:567.161333pt;}
.x49{left:572.736000pt;}
.x20{left:576.917333pt;}
.x69{left:581.800000pt;}
.x4a{left:586.018667pt;}
.x21{left:590.201333pt;}
.x59{left:591.962667pt;}
.x22{left:593.454667pt;}
.x5a{left:605.245333pt;}
.x23{left:606.738667pt;}
.x94{left:612.342667pt;}
.x5b{left:620.774667pt;}
.x6{left:623.413317pt;}
.x95{left:636.253333pt;}
.x90{left:647.893333pt;}
.x92{left:666.293333pt;}
.x91{left:671.804000pt;}
.x17{left:673.105333pt;}
.x18{left:686.389333pt;}
.x93{left:690.204000pt;}
}




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