
    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_96f24741dd2fca95d32e4fe8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ffb3c1f8bb6743b93ec44659.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893000;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_6402cdc8f5ab9055aeb858ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_73fc02ef483d583d8e4ef966.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_169f7b42aa5fc2cfbccafb6b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.713000;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_3bc1b73b75aa77153da133e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8f0fd5ea04d30e4cb2b21cea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.454000;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_74294ab6748e96d3acc5b304.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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_b4584667d9d9a61254b83cc8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.960938;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_82250876c409c0f3018706fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.888000;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_79ef5697beff1b49629c6858.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.686000;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_d77c16a8b6dde205950118e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.999000;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_268f85011ab1c691005f4b56.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727000;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_4ef71bbdafbab6b358166ee3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.728027;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_a6ab173c42035e01ec1969dd.woff2')format("woff");}.fff{font-family:fff;line-height:0.908000;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_3e0ea75d7b77ac4b50d2b685.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666000;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_58e36e632d920edaeaf1168c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.213000;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_957be488e51ce02749167e94.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.960938;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_8005f2a2cdd7b5dfad6c55ca.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f2e298f6e732e7dd8bcedda5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758000;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_31e83c053697398befa67466.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.888000;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_7eff3f3bfb49f9d9b354c970.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.264000;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_1e6c19784ee6404b652845bb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.652000;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_d48e41419e70862fa98320a0.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f46f51bd1004e6f037c8825d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.688965;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_c070e7b290df6e78f4320320.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.686000;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;}
.m13{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m26{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m25{transform:matrix(0.125000,-0.216506,0.216506,0.125000,0,0);-ms-transform:matrix(0.125000,-0.216506,0.216506,0.125000,0,0);-webkit-transform:matrix(0.125000,-0.216506,0.216506,0.125000,0,0);}
.m2{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);}
.m22{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);}
.mf{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);}
.m1c{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);}
.m11{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);}
.m17{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);}
.me{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);}
.m28{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);}
.m1a{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);}
.ma{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);}
.md{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);}
.m24{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);}
.mc{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);}
.m29{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);}
.m9{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);}
.m1e{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);}
.m5{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);}
.m15{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);}
.m3{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);}
.m27{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);}
.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);}
.m21{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);}
.m7{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);}
.m20{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);}
.m1d{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);}
.mb{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);}
.m12{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);}
.m4{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);}
.m23{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);}
.m6{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);}
.m2a{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);}
.m18{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m14{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);}
.m10{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m19{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);}
.m1f{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);}
.m16{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);}
.v2{vertical-align:-21.690000px;}
.v6{vertical-align:-16.872000px;}
.v4{vertical-align:-12.888000px;}
.v8{vertical-align:-10.458000px;}
.v3{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.976000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:22.854000px;}
.v7{vertical-align:35.568000px;}
.lsf{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.000141px;}
.ls12{letter-spacing:0.000365px;}
.ls48{letter-spacing:0.000532px;}
.ls11{letter-spacing:0.000557px;}
.ls35{letter-spacing:0.000579px;}
.ls10{letter-spacing:0.000780px;}
.ls2a{letter-spacing:0.001002px;}
.ls42{letter-spacing:0.001409px;}
.ls5d{letter-spacing:0.001559px;}
.ls27{letter-spacing:0.001670px;}
.ls4{letter-spacing:0.001682px;}
.ls2f{letter-spacing:0.001739px;}
.ls30{letter-spacing:0.002022px;}
.ls58{letter-spacing:0.002915px;}
.ls13{letter-spacing:0.003539px;}
.ls1d{letter-spacing:0.003859px;}
.ls14{letter-spacing:0.004113px;}
.ls1{letter-spacing:0.004200px;}
.ls3c{letter-spacing:0.004213px;}
.ls38{letter-spacing:0.004362px;}
.ls3e{letter-spacing:0.005374px;}
.ls39{letter-spacing:0.006579px;}
.ls33{letter-spacing:1.289374px;}
.ls3d{letter-spacing:1.295374px;}
.ls31{letter-spacing:1.412022px;}
.ls0{letter-spacing:2.984525px;}
.ls36{letter-spacing:2.986363px;}
.ls3{letter-spacing:2.988532px;}
.ls2e{letter-spacing:2.989200px;}
.ls34{letter-spacing:2.992363px;}
.ls19{letter-spacing:2.993282px;}
.ls17{letter-spacing:2.994532px;}
.ls15{letter-spacing:3.120330px;}
.ls25{letter-spacing:5.809569px;}
.ls3f{letter-spacing:8.158738px;}
.ls23{letter-spacing:9.126532px;}
.ls26{letter-spacing:9.210557px;}
.ls28{letter-spacing:9.216557px;}
.ls41{letter-spacing:9.454738px;}
.ls16{letter-spacing:10.320780px;}
.ls4a{letter-spacing:10.883374px;}
.ls4b{letter-spacing:10.884564px;}
.lsc{letter-spacing:12.283002px;}
.ls1c{letter-spacing:12.283559px;}
.ls8{letter-spacing:12.289002px;}
.ls49{letter-spacing:13.601864px;}
.ls4d{letter-spacing:13.607864px;}
.ls1e{letter-spacing:15.275282px;}
.ls7{letter-spacing:15.276532px;}
.ls6{letter-spacing:15.355559px;}
.ls5a{letter-spacing:15.361405px;}
.lsb{letter-spacing:15.361559px;}
.ls24{letter-spacing:15.709002px;}
.ls29{letter-spacing:16.237405px;}
.lsa{letter-spacing:18.342532px;}
.ls5{letter-spacing:18.348532px;}
.ls1a{letter-spacing:18.480330px;}
.lse{letter-spacing:18.829002px;}
.ls1b{letter-spacing:19.387534px;}
.ls2b{letter-spacing:19.723405px;}
.ls2c{letter-spacing:19.729405px;}
.lsd{letter-spacing:21.816532px;}
.ls5c{letter-spacing:22.423559px;}
.ls2{letter-spacing:23.906525px;}
.ls5b{letter-spacing:23.959682px;}
.ls5e{letter-spacing:23.965682px;}
.ls22{letter-spacing:25.327559px;}
.ls18{letter-spacing:25.927534px;}
.ls9{letter-spacing:28.044557px;}
.ls2d{letter-spacing:28.219405px;}
.ls21{letter-spacing:28.223282px;}
.ls20{letter-spacing:32.329534px;}
.ls57{letter-spacing:38.257409px;}
.ls40{letter-spacing:133.207409px;}
.ls45{letter-spacing:182.041409px;}
.ls43{letter-spacing:255.283409px;}
.ls53{letter-spacing:292.621409px;}
.ls55{letter-spacing:295.747409px;}
.ls47{letter-spacing:309.553409px;}
.ls4f{letter-spacing:314.713409px;}
.ls4c{letter-spacing:323.239409px;}
.ls51{letter-spacing:328.399409px;}
.ls1f{letter-spacing:430.247282px;}
.ls3b{letter-spacing:469.609409px;}
.ls37{letter-spacing:526.633409px;}
.ls32{letter-spacing:539.881409px;}
.ls46{letter-spacing:550.688525px;}
.ls44{letter-spacing:616.964525px;}
.ls54{letter-spacing:654.305406px;}
.ls56{letter-spacing:657.425406px;}
.ls50{letter-spacing:676.391406px;}
.ls4e{letter-spacing:684.917406px;}
.ls52{letter-spacing:690.077406px;}
.ls3a{letter-spacing:888.317374px;}
.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;}
}
.ws43{word-spacing:-55.293996px;}
.ws5c{word-spacing:-43.027960px;}
.ws36{word-spacing:-36.071827px;}
.ws5a{word-spacing:-26.872301px;}
.ws1{word-spacing:-25.404750px;}
.ws54{word-spacing:-15.359443px;}
.ws3{word-spacing:-13.531962px;}
.ws28{word-spacing:-13.449600px;}
.wsc3{word-spacing:-12.702300px;}
.ws7b{word-spacing:-12.379584px;}
.ws78{word-spacing:-12.379574px;}
.wsad{word-spacing:-11.955150px;}
.wsb3{word-spacing:-10.460700px;}
.ws7a{word-spacing:-10.316320px;}
.wsd0{word-spacing:-9.726632px;}
.ws91{word-spacing:-8.966400px;}
.wsb8{word-spacing:-2.652834px;}
.ws8d{word-spacing:-0.645581px;}
.wsa6{word-spacing:-0.640451px;}
.ws111{word-spacing:-0.621668px;}
.ws24{word-spacing:-0.591782px;}
.ws10e{word-spacing:-0.382565px;}
.ws121{word-spacing:-0.286924px;}
.ws125{word-spacing:-0.191282px;}
.ws74{word-spacing:-0.107597px;}
.ws58{word-spacing:-0.053798px;}
.wsb0{word-spacing:-0.050809px;}
.ws5{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws79{word-spacing:-0.041082px;}
.ws44{word-spacing:-0.035866px;}
.wsdc{word-spacing:-0.026899px;}
.ws3f{word-spacing:0.000000px;}
.wsb7{word-spacing:0.066948px;}
.ws8a{word-spacing:0.078755px;}
.ws12f{word-spacing:0.095641px;}
.ws10b{word-spacing:0.621668px;}
.ws118{word-spacing:0.669488px;}
.ws59{word-spacing:0.699379px;}
.wsa7{word-spacing:0.887674px;}
.ws27{word-spacing:1.022170px;}
.wse6{word-spacing:1.129766px;}
.wsfc{word-spacing:1.147694px;}
.ws11b{word-spacing:1.195515px;}
.wse{word-spacing:1.338977px;}
.ws132{word-spacing:1.434618px;}
.ws119{word-spacing:1.482439px;}
.ws107{word-spacing:1.530259px;}
.ws99{word-spacing:1.560154px;}
.ws122{word-spacing:1.673721px;}
.ws108{word-spacing:1.721542px;}
.wsd2{word-spacing:1.727513px;}
.ws8e{word-spacing:1.762297px;}
.ws8f{word-spacing:1.775347px;}
.wsa0{word-spacing:1.829146px;}
.ws12e{word-spacing:1.912824px;}
.wse3{word-spacing:1.990541px;}
.wsef{word-spacing:2.151927px;}
.ws57{word-spacing:2.205734px;}
.ws5e{word-spacing:2.420928px;}
.ws6c{word-spacing:2.474726px;}
.wse1{word-spacing:2.582323px;}
.ws52{word-spacing:2.636122px;}
.ws2d{word-spacing:2.689920px;}
.ws93{word-spacing:2.702051px;}
.ws94{word-spacing:2.702498px;}
.ws56{word-spacing:2.743718px;}
.wsa1{word-spacing:2.797517px;}
.wse8{word-spacing:2.905114px;}
.ws50{word-spacing:2.958912px;}
.ws4d{word-spacing:3.120307px;}
.wsba{word-spacing:3.142854px;}
.wsc5{word-spacing:3.143608px;}
.wsc6{word-spacing:3.144949px;}
.wsb6{word-spacing:3.145156px;}
.wsb9{word-spacing:3.145402px;}
.wsc4{word-spacing:3.146100px;}
.wsc7{word-spacing:3.148854px;}
.wsfa{word-spacing:3.156160px;}
.wse0{word-spacing:3.174106px;}
.wsf9{word-spacing:3.203980px;}
.ws8c{word-spacing:3.271842px;}
.ws18{word-spacing:3.281702px;}
.wsa4{word-spacing:3.389299px;}
.ws30{word-spacing:3.443098px;}
.ws40{word-spacing:3.496896px;}
.ws114{word-spacing:3.538724px;}
.ws72{word-spacing:3.550694px;}
.wsfd{word-spacing:3.586545px;}
.ws55{word-spacing:3.712090px;}
.wse4{word-spacing:3.765888px;}
.wsa{word-spacing:3.825648px;}
.ws53{word-spacing:3.927283px;}
.ws9{word-spacing:3.969110px;}
.ws3d{word-spacing:3.981082px;}
.ws15{word-spacing:4.034880px;}
.ws88{word-spacing:4.088678px;}
.ws109{word-spacing:4.112572px;}
.wsd1{word-spacing:4.166354px;}
.wsb2{word-spacing:4.184280px;}
.ws4a{word-spacing:4.196275px;}
.ws1d{word-spacing:4.250074px;}
.ws82{word-spacing:4.369591px;}
.ws10f{word-spacing:4.381600px;}
.wsa8{word-spacing:4.384570px;}
.ws110{word-spacing:4.399495px;}
.wsa3{word-spacing:4.411469px;}
.ws101{word-spacing:4.447316px;}
.wsb{word-spacing:4.495136px;}
.ws9e{word-spacing:4.519066px;}
.wsee{word-spacing:4.542957px;}
.wse5{word-spacing:4.572864px;}
.wsf3{word-spacing:4.638598px;}
.wsf4{word-spacing:4.686419px;}
.ws12d{word-spacing:4.689214px;}
.ws113{word-spacing:4.734239px;}
.ws90{word-spacing:4.734259px;}
.ws81{word-spacing:4.776065px;}
.ws116{word-spacing:4.779682px;}
.ws11c{word-spacing:4.781310px;}
.wsed{word-spacing:4.782060px;}
.wseb{word-spacing:4.829881px;}
.wsfb{word-spacing:4.864495px;}
.wsd4{word-spacing:4.869822px;}
.wsd3{word-spacing:4.870972px;}
.wsd5{word-spacing:4.877683px;}
.wsea{word-spacing:4.877701px;}
.ws3c{word-spacing:4.895654px;}
.ws3a{word-spacing:4.916101px;}
.wsf5{word-spacing:4.925522px;}
.wsc2{word-spacing:4.928492px;}
.ws2f{word-spacing:4.949453px;}
.wsf2{word-spacing:4.973342px;}
.wsdf{word-spacing:4.980339px;}
.ws35{word-spacing:5.003251px;}
.ws127{word-spacing:5.013543px;}
.ws128{word-spacing:5.021163px;}
.ws17{word-spacing:5.057050px;}
.wsf0{word-spacing:5.068984px;}
.ws33{word-spacing:5.080920px;}
.ws1e{word-spacing:5.110848px;}
.ws7e{word-spacing:5.131729px;}
.ws21{word-spacing:5.164646px;}
.wsc1{word-spacing:5.186651px;}
.ws96{word-spacing:5.188212px;}
.ws14{word-spacing:5.218445px;}
.wsb1{word-spacing:5.230350px;}
.wsaf{word-spacing:5.233348px;}
.ws6f{word-spacing:5.272243px;}
.wsd8{word-spacing:5.284157px;}
.ws26{word-spacing:5.326042px;}
.ws7f{word-spacing:5.334966px;}
.ws126{word-spacing:5.355907px;}
.ws5b{word-spacing:5.371555px;}
.ws32{word-spacing:5.379139px;}
.ws16{word-spacing:5.379840px;}
.ws3e{word-spacing:5.381510px;}
.ws7d{word-spacing:5.406530px;}
.ws13{word-spacing:5.433638px;}
.ws11{word-spacing:5.487437px;}
.ws68{word-spacing:5.498324px;}
.ws66{word-spacing:5.500729px;}
.ws67{word-spacing:5.522137px;}
.wsae{word-spacing:5.527470px;}
.ws1f{word-spacing:5.541235px;}
.ws69{word-spacing:5.579802px;}
.ws6a{word-spacing:5.580662px;}
.ws120{word-spacing:5.595010px;}
.ws2e{word-spacing:5.595034px;}
.wse2{word-spacing:5.596045px;}
.ws97{word-spacing:5.609779px;}
.ws1b{word-spacing:5.648832px;}
.ws8b{word-spacing:5.672262px;}
.ws1c{word-spacing:5.702630px;}
.ws4c{word-spacing:5.756429px;}
.wsa5{word-spacing:5.864026px;}
.wsd{word-spacing:5.881934px;}
.ws3b{word-spacing:5.900182px;}
.ws6e{word-spacing:5.917824px;}
.wsf{word-spacing:5.929754px;}
.ws1a{word-spacing:5.971622px;}
.ws2{word-spacing:5.977560px;}
.wsc{word-spacing:5.977575px;}
.ws4f{word-spacing:6.025421px;}
.ws8{word-spacing:6.073216px;}
.ws7{word-spacing:6.121037px;}
.ws20{word-spacing:6.348211px;}
.ws63{word-spacing:6.402010px;}
.ws51{word-spacing:6.617203px;}
.ws34{word-spacing:6.724800px;}
.ws92{word-spacing:6.832397px;}
.wse9{word-spacing:6.939994px;}
.ws5d{word-spacing:6.993792px;}
.ws12b{word-spacing:7.077449px;}
.ws73{word-spacing:7.155187px;}
.wsa9{word-spacing:7.252508px;}
.wsaa{word-spacing:7.258390px;}
.ws64{word-spacing:7.262784px;}
.ws80{word-spacing:7.265716px;}
.ws2a{word-spacing:7.370381px;}
.ws103{word-spacing:7.507834px;}
.ws9f{word-spacing:7.585574px;}
.ws112{word-spacing:7.651296px;}
.ws71{word-spacing:7.693171px;}
.ws10c{word-spacing:7.699117px;}
.ws87{word-spacing:7.854566px;}
.ws62{word-spacing:8.069760px;}
.wsb4{word-spacing:8.117503px;}
.ws45{word-spacing:8.123558px;}
.ws4e{word-spacing:8.177357px;}
.ws11e{word-spacing:8.225143px;}
.ws76{word-spacing:8.231155px;}
.ws102{word-spacing:8.272964px;}
.ws100{word-spacing:8.320784px;}
.ws98{word-spacing:8.392550px;}
.ws9a{word-spacing:8.446349px;}
.ws10a{word-spacing:8.559887px;}
.ws9b{word-spacing:8.661542px;}
.wsa2{word-spacing:8.715341px;}
.wsf7{word-spacing:8.751170px;}
.wsf6{word-spacing:8.798990px;}
.ws6d{word-spacing:8.822938px;}
.ws12c{word-spacing:8.846811px;}
.ws37{word-spacing:8.984333px;}
.ws4b{word-spacing:9.091930px;}
.wsbd{word-spacing:9.121033px;}
.wsbb{word-spacing:9.122379px;}
.wsc0{word-spacing:9.122508px;}
.wsbf{word-spacing:9.122679px;}
.wsbe{word-spacing:9.123993px;}
.wsbc{word-spacing:9.125339px;}
.wsc8{word-spacing:9.127033px;}
.ws104{word-spacing:9.181555px;}
.ws84{word-spacing:9.199526px;}
.ws83{word-spacing:9.307123px;}
.ws2b{word-spacing:9.468518px;}
.ws41{word-spacing:9.522317px;}
.ws75{word-spacing:9.629914px;}
.ws11d{word-spacing:9.707582px;}
.ws9d{word-spacing:9.737510px;}
.ws9c{word-spacing:9.756760px;}
.wsff{word-spacing:9.803223px;}
.ws60{word-spacing:9.872006px;}
.wsf8{word-spacing:9.898864px;}
.ws22{word-spacing:9.898906px;}
.ws65{word-spacing:9.952704px;}
.ws5f{word-spacing:10.006502px;}
.ws0{word-spacing:10.060281px;}
.ws61{word-spacing:10.114099px;}
.ws85{word-spacing:10.167898px;}
.ws42{word-spacing:10.275494px;}
.ws49{word-spacing:10.329293px;}
.ws48{word-spacing:10.383091px;}
.ws19{word-spacing:10.490688px;}
.ws12a{word-spacing:10.568353px;}
.ws25{word-spacing:10.759680px;}
.wsfe{word-spacing:10.807456px;}
.ws47{word-spacing:10.867277px;}
.wsd9{word-spacing:10.974874px;}
.ws117{word-spacing:11.046559px;}
.ws106{word-spacing:11.142200px;}
.ws12{word-spacing:11.190067px;}
.ws95{word-spacing:11.297664px;}
.ws6b{word-spacing:11.459059px;}
.wsac{word-spacing:11.620454px;}
.ws10d{word-spacing:11.668226px;}
.ws124{word-spacing:12.098612px;}
.ws70{word-spacing:12.266035px;}
.ws86{word-spacing:12.319834px;}
.ws39{word-spacing:12.473227px;}
.ws38{word-spacing:12.481229px;}
.ws89{word-spacing:12.642624px;}
.wsab{word-spacing:12.884717px;}
.ws2c{word-spacing:12.911616px;}
.ws10{word-spacing:13.449600px;}
.wsde{word-spacing:13.598665px;}
.wsdd{word-spacing:13.610995px;}
.ws46{word-spacing:13.933786px;}
.ws105{word-spacing:14.059256px;}
.wsd6{word-spacing:14.087881px;}
.wsd7{word-spacing:14.154898px;}
.wsec{word-spacing:14.585283px;}
.ws130{word-spacing:14.633104px;}
.ws11f{word-spacing:14.680924px;}
.wsf1{word-spacing:15.254771px;}
.ws129{word-spacing:15.637336px;}
.ws29{word-spacing:15.655334px;}
.ws11a{word-spacing:15.685157px;}
.ws23{word-spacing:16.785101px;}
.ws131{word-spacing:17.024134px;}
.wsda{word-spacing:19.056838px;}
.wsdb{word-spacing:19.098432px;}
.wse7{word-spacing:19.206029px;}
.ws6{word-spacing:19.558625px;}
.ws115{word-spacing:21.901835px;}
.ws123{word-spacing:25.440559px;}
.ws77{word-spacing:55.271323px;}
.ws7c{word-spacing:59.494394px;}
.wsca{word-spacing:81.021000px;}
.wscf{word-spacing:83.457031px;}
.wscc{word-spacing:83.481000px;}
.wscd{word-spacing:85.925756px;}
.wsce{word-spacing:118.521298px;}
.wscb{word-spacing:132.413107px;}
.wsc9{word-spacing:214.424995px;}
.ws31{word-spacing:240.012873px;}
.wsb5{word-spacing:817.760787px;}
._f{margin-left:-90.195105px;}
._17{margin-left:-85.835338px;}
._10{margin-left:-40.690886px;}
._0{margin-left:-8.129520px;}
._16{margin-left:-6.671002px;}
._4{margin-left:-5.080926px;}
._2{margin-left:-4.064760px;}
._34{margin-left:-3.036629px;}
._1{margin-left:-2.032380px;}
._6{margin-left:-1.004224px;}
._13{width:1.021177px;}
._5{width:3.317670px;}
._3{width:4.526476px;}
._39{width:7.746830px;}
._7{width:14.298368px;}
._e{width:17.484480px;}
._8{width:19.869530px;}
._35{width:22.081220px;}
._b{width:25.836377px;}
._a{width:26.899200px;}
._d{width:32.800477px;}
._c{width:37.020105px;}
._38{width:45.582717px;}
._36{width:47.818580px;}
._3a{width:55.192692px;}
._37{width:57.572213px;}
._11{width:62.619011px;}
._14{width:66.841239px;}
._12{width:74.912642px;}
._15{width:79.134879px;}
._31{width:88.739611px;}
._2c{width:93.941700px;}
._32{width:95.656246px;}
._2b{width:101.484300px;}
._33{width:105.377191px;}
._2d{width:110.543700px;}
._30{width:112.403100px;}
._2a{width:118.217700px;}
._2e{width:127.145700px;}
._1c{width:133.358795px;}
._29{width:135.648300px;}
._2f{width:141.152605px;}
._28{width:144.221700px;}
._20{width:157.334719px;}
._27{width:162.821700px;}
._1a{width:175.076090px;}
._25{width:231.731218px;}
._26{width:234.032572px;}
._23{width:248.008067px;}
._24{width:259.371391px;}
._1b{width:280.705211px;}
._9{width:296.761102px;}
._1e{width:313.217066px;}
._21{width:331.693667px;}
._22{width:343.056991px;}
._1d{width:366.775850px;}
._1f{width:374.433083px;}
._18{width:551.855629px;}
._19{width:590.488643px;}
.fc1{color:transparent;}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.825494px;}
.fsa{font-size:29.344200px;}
.fs9{font-size:29.887800px;}
.fse{font-size:35.009039px;}
.fsf{font-size:35.009040px;}
.fsb{font-size:35.213011px;}
.fsd{font-size:35.213040px;}
.fs5{font-size:35.865600px;}
.fs10{font-size:38.191677px;}
.fsc{font-size:41.081953px;}
.fs11{font-size:41.601385px;}
.fs2{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs12{font-size:50.338741px;}
.fs7{font-size:50.809200px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:70.258945px;}
.fs0{font-size:101.619000px;}
.y69{bottom:-5.768368px;}
.y15e{bottom:-0.324088px;}
.y0{bottom:0.000000px;}
.yea{bottom:0.111039px;}
.y15f{bottom:0.300369px;}
.y160{bottom:1.775387px;}
.y55{bottom:3.476067px;}
.y56{bottom:3.748808px;}
.y5b{bottom:3.909277px;}
.y161{bottom:4.897692px;}
.yf1{bottom:8.031665px;}
.y15d{bottom:8.278423px;}
.y54{bottom:9.967303px;}
.yeb{bottom:11.051966px;}
.y5a{bottom:13.017089px;}
.y59{bottom:21.987039px;}
.y15c{bottom:22.361116px;}
.y162{bottom:27.891031px;}
.yec{bottom:28.441205px;}
.yf2{bottom:32.431390px;}
.y67{bottom:44.388044px;}
.yed{bottom:45.830465px;}
.y50{bottom:53.622605px;}
.yf3{bottom:54.630308px;}
.yee{bottom:63.219703px;}
.y163{bottom:63.677123px;}
.y68{bottom:64.263698px;}
.y16c{bottom:67.114322px;}
.yf4{bottom:77.929619px;}
.yef{bottom:80.608963px;}
.y4f{bottom:89.092106px;}
.yf8{bottom:93.354474px;}
.yf0{bottom:94.299399px;}
.y164{bottom:99.136676px;}
.yf5{bottom:101.228930px;}
.ye2{bottom:109.051361px;}
.y38{bottom:111.486000px;}
.y4d{bottom:113.854183px;}
.y139{bottom:115.704000px;}
.y169{bottom:122.016323px;}
.ye3{bottom:124.449531px;}
.y199{bottom:124.935000px;}
.y4e{bottom:127.188968px;}
.y37{bottom:127.995000px;}
.y4c{bottom:131.588933px;}
.ye7{bottom:133.176258px;}
.y165{bottom:134.596225px;}
.y198{bottom:138.384000px;}
.y138{bottom:142.771500px;}
.y16d{bottom:143.013082px;}
.y36{bottom:144.504000px;}
.y229{bottom:147.136500px;}
.y4b{bottom:149.323688px;}
.y197{bottom:151.834500px;}
.y1e2{bottom:152.295000px;}
.ye4{bottom:152.795834px;}
.y65{bottom:155.832000px;}
.y137{bottom:159.280500px;}
.y228{bottom:160.585500px;}
.y35{bottom:161.014500px;}
.ye8{bottom:161.564380px;}
.y1e1{bottom:165.744000px;}
.y4a{bottom:166.401648px;}
.y166{bottom:170.055776px;}
.y196{bottom:172.867500px;}
.y16e{bottom:173.201749px;}
.y52{bottom:173.639535px;}
.y227{bottom:174.036000px;}
.y136{bottom:175.789500px;}
.y98{bottom:177.523500px;}
.y34{bottom:179.296500px;}
.y1e0{bottom:179.655000px;}
.ye5{bottom:181.142158px;}
.y51{bottom:181.469347px;}
.y64{bottom:183.670500px;}
.y49{bottom:184.136509px;}
.y226{bottom:187.485000px;}
.ye9{bottom:189.952475px;}
.ye6{bottom:190.145412px;}
.yf7{bottom:190.190351px;}
.y135{bottom:192.300000px;}
.y1df{bottom:193.104000px;}
.y97{bottom:194.032500px;}
.y33{bottom:195.807000px;}
.y195{bottom:196.599000px;}
.y63{bottom:200.179500px;}
.y225{bottom:200.934000px;}
.yda{bottom:204.786765px;}
.y167{bottom:205.515326px;}
.y1de{bottom:206.553000px;}
.y57{bottom:208.439507px;}
.y134{bottom:208.809000px;}
.y96{bottom:210.543000px;}
.y32{bottom:212.316000px;}
.y194{bottom:213.109500px;}
.y224{bottom:214.384500px;}
.y62{bottom:216.690000px;}
.y1dd{bottom:220.003500px;}
.ydb{bottom:220.184935px;}
.y58{bottom:223.546886px;}
.y133{bottom:225.318000px;}
.y95{bottom:227.052000px;}
.y223{bottom:227.833500px;}
.y31{bottom:228.825000px;}
.y193{bottom:229.618500px;}
.ydf{bottom:230.363452px;}
.y61{bottom:233.199000px;}
.y1dc{bottom:233.452500px;}
.y168{bottom:240.974877px;}
.y222{bottom:241.284000px;}
.y132{bottom:241.828500px;}
.y94{bottom:243.561000px;}
.y30{bottom:245.335500px;}
.y192{bottom:246.127500px;}
.y1db{bottom:247.363500px;}
.ydc{bottom:248.531281px;}
.y60{bottom:249.708000px;}
.y221{bottom:254.733000px;}
.y131{bottom:258.843000px;}
.y16a{bottom:258.989906px;}
.ye0{bottom:259.708236px;}
.y93{bottom:260.071500px;}
.y1da{bottom:260.812500px;}
.y2f{bottom:261.844500px;}
.y191{bottom:262.638000px;}
.y5f{bottom:266.218500px;}
.y53{bottom:266.639359px;}
.y220{bottom:268.182000px;}
.y1d9{bottom:274.261500px;}
.y130{bottom:275.352000px;}
.y92{bottom:276.580500px;}
.y177{bottom:276.663000px;}
.ydd{bottom:276.877615px;}
.y2e{bottom:278.353500px;}
.y190{bottom:279.147000px;}
.y21f{bottom:281.632500px;}
.yf6{bottom:284.825398px;}
.yde{bottom:285.581477px;}
.y1d8{bottom:287.712000px;}
.ye1{bottom:289.052958px;}
.y5e{bottom:289.090500px;}
.y12f{bottom:291.862500px;}
.y91{bottom:293.089500px;}
.y176{bottom:293.172000px;}
.y2d{bottom:294.864000px;}
.y21e{bottom:295.081500px;}
.y18f{bottom:295.656000px;}
.y1d7{bottom:301.621500px;}
.ycf{bottom:301.622680px;}
.y12e{bottom:308.371500px;}
.y21d{bottom:308.530500px;}
.y90{bottom:309.600000px;}
.y175{bottom:309.682500px;}
.y2c{bottom:311.373000px;}
.y18e{bottom:312.166500px;}
.y5d{bottom:313.482000px;}
.y100{bottom:314.901000px;}
.y1d6{bottom:315.072000px;}
.yd0{bottom:317.020850px;}
.yd5{bottom:318.107209px;}
.y21c{bottom:321.981000px;}
.y12d{bottom:324.880500px;}
.y8f{bottom:326.109000px;}
.y2b{bottom:327.882000px;}
.y1d5{bottom:328.521000px;}
.y18d{bottom:332.602500px;}
.yd6{bottom:334.273765px;}
.y21b{bottom:335.430000px;}
.y12c{bottom:341.391000px;}
.y1d4{bottom:342.430500px;}
.y8e{bottom:342.618000px;}
.y2a{bottom:344.392500px;}
.y174{bottom:344.934000px;}
.yd1{bottom:345.367164px;}
.y21a{bottom:348.880500px;}
.yd7{bottom:350.440329px;}
.y1d3{bottom:355.881000px;}
.y18c{bottom:356.335500px;}
.yff{bottom:357.310500px;}
.y12b{bottom:357.900000px;}
.y8d{bottom:359.128500px;}
.y173{bottom:359.878500px;}
.y5c{bottom:360.888000px;}
.y29{bottom:360.901500px;}
.y219{bottom:362.329500px;}
.yd8{bottom:366.606892px;}
.y1d2{bottom:369.330000px;}
.yfe{bottom:372.255000px;}
.y18b{bottom:372.844500px;}
.yd2{bottom:373.713479px;}
.y12a{bottom:374.409000px;}
.y172{bottom:374.821500px;}
.y218{bottom:375.778500px;}
.y28{bottom:377.410500px;}
.y48{bottom:380.698500px;}
.yc0{bottom:381.385500px;}
.y8c{bottom:381.577500px;}
.yd4{bottom:382.761742px;}
.yd9{bottom:382.773448px;}
.y1d1{bottom:382.780500px;}
.yd3{bottom:383.517749px;}
.yfd{bottom:387.199500px;}
.y217{bottom:389.229000px;}
.y18a{bottom:389.353500px;}
.y171{bottom:389.766000px;}
.y129{bottom:390.919500px;}
.y27{bottom:393.921000px;}
.y1d0{bottom:396.229500px;}
.yfc{bottom:402.142500px;}
.y216{bottom:402.678000px;}
.y170{bottom:404.710500px;}
.y189{bottom:405.864000px;}
.y128{bottom:407.428500px;}
.ybf{bottom:408.591000px;}
.y8b{bottom:409.182000px;}
.y1cf{bottom:410.139000px;}
.y26{bottom:410.430000px;}
.y215{bottom:416.127000px;}
.yfb{bottom:417.087000px;}
.y16f{bottom:419.653500px;}
.y188{bottom:422.373000px;}
.y1ce{bottom:423.589500px;}
.y127{bottom:423.937500px;}
.ybe{bottom:425.100000px;}
.y8a{bottom:425.692500px;}
.y25{bottom:426.939000px;}
.y214{bottom:429.577500px;}
.yfa{bottom:432.030000px;}
.y1cd{bottom:437.038500px;}
.y187{bottom:438.882000px;}
.y15b{bottom:439.465500px;}
.y126{bottom:440.448000px;}
.ybd{bottom:441.610500px;}
.y89{bottom:442.201500px;}
.y213{bottom:443.026500px;}
.y24{bottom:443.449500px;}
.yf9{bottom:446.974500px;}
.y1cc{bottom:450.489000px;}
.y186{bottom:455.392500px;}
.y212{bottom:456.477000px;}
.y125{bottom:456.957000px;}
.ybc{bottom:458.119500px;}
.y88{bottom:458.710500px;}
.y23{bottom:459.958500px;}
.y1cb{bottom:464.398500px;}
.yce{bottom:466.786500px;}
.y211{bottom:469.926000px;}
.y185{bottom:471.901500px;}
.y124{bottom:473.466000px;}
.y87{bottom:475.221000px;}
.y22{bottom:476.467500px;}
.y1ca{bottom:477.847500px;}
.ybb{bottom:481.456500px;}
.y210{bottom:483.375000px;}
.y184{bottom:488.410500px;}
.y122{bottom:489.976500px;}
.y1c9{bottom:491.298000px;}
.y86{bottom:491.730000px;}
.y21{bottom:492.978000px;}
.y123{bottom:495.690000px;}
.y20f{bottom:496.825500px;}
.y16b{bottom:497.412251px;}
.y1c8{bottom:504.747000px;}
.y183{bottom:504.921000px;}
.y121{bottom:506.485500px;}
.y85{bottom:508.969500px;}
.y20{bottom:509.487000px;}
.y20e{bottom:510.274500px;}
.yba{bottom:510.715500px;}
.y1c7{bottom:518.658000px;}
.y182{bottom:521.430000px;}
.y120{bottom:522.994500px;}
.y20d{bottom:523.723500px;}
.y84{bottom:525.478500px;}
.y1f{bottom:525.996000px;}
.yb9{bottom:527.224500px;}
.y1c6{bottom:532.107000px;}
.y20c{bottom:537.174000px;}
.y181{bottom:537.939000px;}
.y11f{bottom:539.505000px;}
.y83{bottom:541.989000px;}
.y1e{bottom:542.506500px;}
.yb8{bottom:543.735000px;}
.y1c5{bottom:545.556000px;}
.y20b{bottom:550.623000px;}
.y180{bottom:554.449500px;}
.y11e{bottom:556.014000px;}
.y82{bottom:558.498000px;}
.y1d{bottom:559.015500px;}
.y1c4{bottom:559.467000px;}
.yb7{bottom:560.244000px;}
.y20a{bottom:564.073500px;}
.y11d{bottom:572.523000px;}
.y1c3{bottom:572.916000px;}
.y81{bottom:575.007000px;}
.y1c{bottom:575.524500px;}
.yb6{bottom:576.753000px;}
.y209{bottom:577.522500px;}
.y17f{bottom:578.904000px;}
.y1c2{bottom:586.366500px;}
.y11c{bottom:589.033500px;}
.y208{bottom:590.971500px;}
.y80{bottom:591.517500px;}
.y1b{bottom:592.035000px;}
.yb5{bottom:593.263500px;}
.y17e{bottom:595.413000px;}
.y1c1{bottom:599.815500px;}
.y207{bottom:604.422000px;}
.y11b{bottom:605.542500px;}
.y7f{bottom:608.026500px;}
.y1a{bottom:608.544000px;}
.yb4{bottom:610.204500px;}
.y17d{bottom:611.923500px;}
.y1c0{bottom:613.725000px;}
.y206{bottom:617.871000px;}
.y11a{bottom:622.051500px;}
.y7e{bottom:624.535500px;}
.y19{bottom:625.053000px;}
.yb3{bottom:626.713500px;}
.y1bf{bottom:627.175500px;}
.y17c{bottom:628.432500px;}
.y205{bottom:631.320000px;}
.y119{bottom:638.562000px;}
.y1be{bottom:640.624500px;}
.y18{bottom:641.563500px;}
.y7d{bottom:641.776500px;}
.yb2{bottom:643.222500px;}
.y203{bottom:644.770500px;}
.y204{bottom:644.830500px;}
.y17b{bottom:644.941500px;}
.y1bc{bottom:654.073500px;}
.y1bd{bottom:654.133500px;}
.y118{bottom:655.071000px;}
.y17{bottom:658.072500px;}
.y202{bottom:658.219500px;}
.y7c{bottom:658.285500px;}
.yb1{bottom:659.733000px;}
.y17a{bottom:661.452000px;}
.y1bb{bottom:667.984500px;}
.y117{bottom:671.580000px;}
.y201{bottom:671.670000px;}
.y16{bottom:674.581500px;}
.y7b{bottom:674.794500px;}
.y47{bottom:675.609000px;}
.yb0{bottom:676.242000px;}
.y179{bottom:677.961000px;}
.y1ba{bottom:681.433500px;}
.y200{bottom:685.119000px;}
.y116{bottom:688.090500px;}
.y15{bottom:691.092000px;}
.y7a{bottom:691.305000px;}
.y46{bottom:692.118000px;}
.yaf{bottom:692.751000px;}
.y178{bottom:694.470000px;}
.y1b9{bottom:694.884000px;}
.y1ff{bottom:698.568000px;}
.y14{bottom:707.601000px;}
.y79{bottom:707.814000px;}
.y45{bottom:708.627000px;}
.y1b8{bottom:708.793500px;}
.yae{bottom:709.261500px;}
.y115{bottom:710.604000px;}
.y1fe{bottom:712.018500px;}
.y1b7{bottom:722.244000px;}
.y78{bottom:724.323000px;}
.y44{bottom:725.137500px;}
.y1fd{bottom:725.467500px;}
.yad{bottom:725.770500px;}
.y15a{bottom:730.968000px;}
.y1b6{bottom:735.693000px;}
.y114{bottom:738.342000px;}
.y1fc{bottom:738.916500px;}
.y13{bottom:738.988500px;}
.y77{bottom:740.833500px;}
.y43{bottom:741.646500px;}
.yac{bottom:742.279500px;}
.y159{bottom:745.911000px;}
.y1b5{bottom:749.142000px;}
.y1fb{bottom:752.367000px;}
.y113{bottom:754.851000px;}
.y76{bottom:757.342500px;}
.y42{bottom:758.155500px;}
.yab{bottom:758.790000px;}
.y1b4{bottom:763.053000px;}
.y158{bottom:764.442000px;}
.y1fa{bottom:765.816000px;}
.y112{bottom:771.360000px;}
.y75{bottom:773.851500px;}
.y41{bottom:774.666000px;}
.yaa{bottom:775.299000px;}
.y1b3{bottom:776.502000px;}
.y1f9{bottom:779.266500px;}
.y157{bottom:779.386500px;}
.y12{bottom:779.652000px;}
.y111{bottom:787.870500px;}
.y1b2{bottom:789.951000px;}
.y74{bottom:790.362000px;}
.y40{bottom:791.175000px;}
.ya9{bottom:791.808000px;}
.y1f8{bottom:792.715500px;}
.y11{bottom:793.102500px;}
.y156{bottom:794.329500px;}
.y1b1{bottom:803.401500px;}
.y110{bottom:804.379500px;}
.y1f7{bottom:806.164500px;}
.y10{bottom:806.551500px;}
.y73{bottom:806.871000px;}
.y3f{bottom:807.684000px;}
.ya8{bottom:808.318500px;}
.y155{bottom:809.274000px;}
.y1b0{bottom:817.311000px;}
.y1f6{bottom:819.615000px;}
.yf{bottom:820.000500px;}
.y10f{bottom:820.888500px;}
.y72{bottom:823.380000px;}
.y3e{bottom:824.194500px;}
.ya7{bottom:824.827500px;}
.y154{bottom:827.803500px;}
.y1af{bottom:830.761500px;}
.y1f5{bottom:833.064000px;}
.ye{bottom:833.451000px;}
.y10e{bottom:837.399000px;}
.y71{bottom:839.890500px;}
.ya6{bottom:841.336500px;}
.y153{bottom:843.823500px;}
.y1ae{bottom:844.210500px;}
.y3d{bottom:845.050500px;}
.y1f4{bottom:846.513000px;}
.yd{bottom:846.900000px;}
.y10d{bottom:853.908000px;}
.y70{bottom:856.399500px;}
.y1ac{bottom:857.659500px;}
.y1ad{bottom:857.719500px;}
.ya5{bottom:857.847000px;}
.y152{bottom:858.768000px;}
.y1f3{bottom:859.963500px;}
.yc{bottom:860.349000px;}
.y3c{bottom:861.559500px;}
.y10c{bottom:870.417000px;}
.y1ab{bottom:871.570500px;}
.y6f{bottom:872.908500px;}
.y1f2{bottom:873.412500px;}
.yb{bottom:873.799500px;}
.ya4{bottom:874.356000px;}
.y3b{bottom:878.068500px;}
.ycd{bottom:882.130500px;}
.y1aa{bottom:885.019500px;}
.y150{bottom:886.315500px;}
.y1f1{bottom:886.863000px;}
.y10b{bottom:886.927500px;}
.ya{bottom:887.248500px;}
.y151{bottom:888.931500px;}
.y6e{bottom:889.419000px;}
.y3a{bottom:894.579000px;}
.y1a9{bottom:898.470000px;}
.ycc{bottom:898.641000px;}
.y1f0{bottom:900.312000px;}
.y9{bottom:900.699000px;}
.y14e{bottom:901.857000px;}
.ya3{bottom:901.975500px;}
.y10a{bottom:903.436500px;}
.y14f{bottom:904.473000px;}
.y6d{bottom:906.658500px;}
.y39{bottom:911.088000px;}
.y1a8{bottom:911.919000px;}
.y1ef{bottom:913.761000px;}
.y8{bottom:914.148000px;}
.ycb{bottom:915.150000px;}
.y14c{bottom:917.400000px;}
.y109{bottom:919.945500px;}
.y14d{bottom:920.014500px;}
.y6c{bottom:923.167500px;}
.y1a7{bottom:925.828500px;}
.y147{bottom:925.887000px;}
.y1ee{bottom:927.211500px;}
.y7{bottom:927.597000px;}
.yca{bottom:931.659000px;}
.y14a{bottom:932.941500px;}
.y14b{bottom:935.556000px;}
.y108{bottom:936.456000px;}
.ya2{bottom:937.026000px;}
.y1a6{bottom:939.279000px;}
.y1ed{bottom:940.660500px;}
.y6b{bottom:945.618000px;}
.yc9{bottom:948.169500px;}
.y148{bottom:948.483000px;}
.y149{bottom:951.097500px;}
.y1a5{bottom:952.728000px;}
.y107{bottom:952.965000px;}
.ya1{bottom:953.535000px;}
.y1ec{bottom:954.109500px;}
.y145{bottom:964.024500px;}
.yc8{bottom:964.678500px;}
.y1a3{bottom:966.178500px;}
.y1a4{bottom:966.237000px;}
.y146{bottom:966.639000px;}
.y1eb{bottom:967.560000px;}
.y106{bottom:969.474000px;}
.ya0{bottom:970.044000px;}
.y6{bottom:975.084000px;}
.y1a2{bottom:979.627500px;}
.y144{bottom:980.164500px;}
.y1ea{bottom:981.009000px;}
.yc7{bottom:981.187500px;}
.y6a{bottom:981.972000px;}
.y105{bottom:985.984500px;}
.y9f{bottom:986.554500px;}
.y5{bottom:987.594000px;}
.y4{bottom:993.016500px;}
.y1a1{bottom:993.537000px;}
.y1e9{bottom:994.459500px;}
.y143{bottom:995.706000px;}
.y142{bottom:996.423000px;}
.yc6{bottom:997.698000px;}
.y66{bottom:1001.782500px;}
.y104{bottom:1002.493500px;}
.y9e{bottom:1003.063500px;}
.y1a0{bottom:1006.987500px;}
.y1e8{bottom:1007.908500px;}
.y141{bottom:1011.247500px;}
.yc5{bottom:1014.207000px;}
.y103{bottom:1019.002500px;}
.y9d{bottom:1019.572500px;}
.y19f{bottom:1020.436500px;}
.y1e7{bottom:1021.357500px;}
.y3{bottom:1023.459000px;}
.y140{bottom:1027.387500px;}
.yc4{bottom:1030.716000px;}
.y19e{bottom:1033.887000px;}
.y1e6{bottom:1034.808000px;}
.y102{bottom:1035.513000px;}
.y9c{bottom:1041.831000px;}
.y13f{bottom:1042.929000px;}
.y13e{bottom:1043.646000px;}
.yc3{bottom:1047.226500px;}
.y19d{bottom:1047.796500px;}
.y1e5{bottom:1048.257000px;}
.y101{bottom:1052.527500px;}
.y2{bottom:1054.842000px;}
.y13d{bottom:1058.470500px;}
.y19c{bottom:1061.245500px;}
.y1e4{bottom:1061.707500px;}
.yc2{bottom:1063.735500px;}
.y9b{bottom:1069.036500px;}
.y13c{bottom:1074.610500px;}
.y19b{bottom:1075.156500px;}
.yc1{bottom:1080.244500px;}
.y1{bottom:1084.729500px;}
.y9a{bottom:1085.545500px;}
.y19a{bottom:1088.605500px;}
.y13b{bottom:1092.064500px;}
.y99{bottom:1102.056000px;}
.y1e3{bottom:1102.114500px;}
.y13a{bottom:1107.009000px;}
.h21{height:1.087913px;}
.ha{height:17.107891px;}
.h25{height:18.323846px;}
.h22{height:18.329846px;}
.hd{height:18.861557px;}
.hc{height:18.982775px;}
.h15{height:22.294714px;}
.h1a{height:24.675533px;}
.h29{height:25.487538px;}
.h24{height:26.191913px;}
.h20{height:26.197913px;}
.h16{height:26.753635px;}
.h18{height:26.753657px;}
.h1c{height:26.970818px;}
.h2a{height:27.804585px;}
.h1e{height:28.787846px;}
.h27{height:29.038903px;}
.h17{height:29.908785px;}
.h2b{height:30.286946px;}
.h3{height:31.382100px;}
.h2e{height:31.800699px;}
.h30{height:32.804932px;}
.h2f{height:32.900573px;}
.h7{height:33.187496px;}
.h6{height:33.426599px;}
.h2d{height:34.681623px;}
.h19{height:34.956730px;}
.h26{height:35.261585px;}
.h1d{height:35.357166px;}
.h23{height:36.649913px;}
.h1f{height:36.655913px;}
.h9{height:37.013299px;}
.h8{height:37.336090px;}
.hf{height:37.927872px;}
.h1b{height:39.224702px;}
.he{height:40.348800px;}
.h5{height:41.125613px;}
.h4{height:41.425613px;}
.h13{height:41.532365px;}
.h12{height:46.704624px;}
.h11{height:51.150433px;}
.h2{height:53.078100px;}
.h1{height:69.913872px;}
.h10{height:111.829059px;}
.h2c{height:195.026610px;}
.h28{height:266.561642px;}
.hb{height:271.354750px;}
.h14{height:392.614458px;}
.h0{height:1188.000000px;}
.w3{width:269.884484px;}
.w5{width:289.157166px;}
.w4{width:323.871363px;}
.w1{width:331.648970px;}
.w2{width:331.675811px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6b{left:5.369157px;}
.x97{left:6.951436px;}
.x6c{left:10.031644px;}
.x96{left:12.036267px;}
.x95{left:16.909766px;}
.x18{left:18.535477px;}
.x6a{left:21.799991px;}
.x2d{left:30.934493px;}
.x6e{left:35.754338px;}
.x90{left:49.643270px;}
.x98{left:53.792186px;}
.x2e{left:55.227128px;}
.x9b{left:72.175500px;}
.x1{left:73.446000px;}
.x2f{left:76.503207px;}
.xa7{left:79.423500px;}
.x9{left:86.895000px;}
.x8f{left:89.643000px;}
.x10{left:90.650268px;}
.xf{left:94.816259px;}
.x1a{left:96.846628px;}
.x12{left:98.861288px;}
.x6f{left:99.933239px;}
.x11{left:102.123575px;}
.x6d{left:104.298339px;}
.x73{left:107.511000px;}
.x40{left:120.672000px;}
.x35{left:126.588000px;}
.xa9{left:127.725000px;}
.x74{left:132.640500px;}
.x4b{left:134.035500px;}
.x77{left:141.406500px;}
.x9c{left:147.852000px;}
.x17{left:149.782289px;}
.x36{left:151.717500px;}
.x50{left:155.178000px;}
.x1b{left:163.927093px;}
.x30{left:165.163500px;}
.x91{left:167.199967px;}
.x78{left:172.062000px;}
.x99{left:173.466578px;}
.x51{left:177.187500px;}
.x1c{left:178.377637px;}
.x37{left:180.100500px;}
.x42{left:189.732000px;}
.x15{left:195.745083px;}
.x16{left:198.037618px;}
.xa{left:199.737000px;}
.x13{left:201.630854px;}
.x9a{left:203.415332px;}
.xa8{left:205.905000px;}
.x14{left:207.218390px;}
.x92{left:208.934151px;}
.x43{left:214.861500px;}
.x5{left:217.503000px;}
.x75{left:222.420000px;}
.x48{left:225.829500px;}
.x38{left:227.734500px;}
.x39{left:235.168500px;}
.x44{left:239.313000px;}
.x33{left:242.986500px;}
.x1d{left:246.654651px;}
.x76{left:249.264000px;}
.x93{left:251.143999px;}
.x8{left:256.072500px;}
.x3a{left:257.866500px;}
.x34{left:265.915500px;}
.x45{left:267.598500px;}
.x49{left:279.066000px;}
.x3b{left:281.389500px;}
.x19{left:287.840984px;}
.x94{left:298.989453px;}
.x3{left:304.816500px;}
.x71{left:307.671000px;}
.x4a{left:308.850000px;}
.x3c{left:329.023500px;}
.x72{left:334.933500px;}
.x3d{left:336.457500px;}
.x9d{left:343.458000px;}
.x3e{left:354.664500px;}
.xaa{left:357.399000px;}
.x4e{left:359.524500px;}
.x6{left:364.335000px;}
.x31{left:366.108000px;}
.x4f{left:371.988000px;}
.x79{left:379.162500px;}
.x2{left:388.236000px;}
.x32{left:397.156500px;}
.x70{left:401.530500px;}
.x7a{left:404.292000px;}
.x4c{left:410.490000px;}
.x46{left:423.963000px;}
.x41{left:426.000000px;}
.x3f{left:432.843000px;}
.x4d{left:435.619500px;}
.x47{left:449.092500px;}
.x8e{left:455.083500px;}
.x8c{left:457.699500px;}
.x8d{left:459.319500px;}
.xd{left:467.334000px;}
.x61{left:470.460000px;}
.xa6{left:473.944500px;}
.x85{left:479.922000px;}
.xb{left:481.416000px;}
.x67{left:486.028500px;}
.x9e{left:487.320000px;}
.xe{left:490.434000px;}
.xad{left:493.018500px;}
.xab{left:494.046000px;}
.xc{left:495.214500px;}
.x7c{left:497.712000px;}
.x4{left:502.189500px;}
.x2a{left:503.949000px;}
.x20{left:506.466000px;}
.x52{left:519.568500px;}
.x29{left:520.872000px;}
.x86{left:527.551500px;}
.x58{left:530.224500px;}
.x5b{left:531.327000px;}
.x9f{left:534.945000px;}
.x21{left:537.322500px;}
.xa0{left:539.514000px;}
.x84{left:541.704000px;}
.x2b{left:544.180500px;}
.x1e{left:549.135000px;}
.x55{left:551.113500px;}
.x59{left:556.038000px;}
.x5c{left:559.024500px;}
.x2c{left:561.112500px;}
.x66{left:568.191000px;}
.x1f{left:578.280000px;}
.x57{left:589.561500px;}
.xa1{left:596.512500px;}
.x62{left:598.389000px;}
.xa5{left:602.274000px;}
.x24{left:603.520500px;}
.x7{left:606.052500px;}
.x68{left:611.116500px;}
.x63{left:613.156500px;}
.x5d{left:615.049500px;}
.x5a{left:616.156500px;}
.x69{left:621.189000px;}
.x25{left:628.650000px;}
.x7b{left:629.925000px;}
.x56{left:636.837000px;}
.x87{left:639.943500px;}
.x5e{left:645.330000px;}
.x80{left:658.752000px;}
.x82{left:664.417500px;}
.x7d{left:668.500500px;}
.x64{left:669.598500px;}
.xac{left:673.405500px;}
.x8a{left:680.568000px;}
.x65{left:689.151000px;}
.x22{left:699.625500px;}
.xa2{left:718.462500px;}
.x81{left:719.583000px;}
.x23{left:724.755000px;}
.x53{left:727.945500px;}
.x83{left:733.906500px;}
.x54{left:750.493500px;}
.x26{left:766.539000px;}
.xa3{left:770.431500px;}
.xa4{left:774.999000px;}
.x88{left:781.567500px;}
.x8b{left:788.749500px;}
.x5f{left:791.725500px;}
.x27{left:796.167000px;}
.x89{left:798.118500px;}
.x28{left:819.699000px;}
.x60{left:823.209000px;}
.x7e{left:838.267500px;}
.x7f{left:843.498000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v6{vertical-align:-14.997333pt;}
.v4{vertical-align:-11.456000pt;}
.v8{vertical-align:-9.296000pt;}
.v3{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.312000pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:20.314667pt;}
.v7{vertical-align:31.616000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.000125pt;}
.ls12{letter-spacing:0.000324pt;}
.ls48{letter-spacing:0.000473pt;}
.ls11{letter-spacing:0.000495pt;}
.ls35{letter-spacing:0.000515pt;}
.ls10{letter-spacing:0.000693pt;}
.ls2a{letter-spacing:0.000891pt;}
.ls42{letter-spacing:0.001253pt;}
.ls5d{letter-spacing:0.001386pt;}
.ls27{letter-spacing:0.001485pt;}
.ls4{letter-spacing:0.001495pt;}
.ls2f{letter-spacing:0.001546pt;}
.ls30{letter-spacing:0.001798pt;}
.ls58{letter-spacing:0.002591pt;}
.ls13{letter-spacing:0.003145pt;}
.ls1d{letter-spacing:0.003430pt;}
.ls14{letter-spacing:0.003656pt;}
.ls1{letter-spacing:0.003733pt;}
.ls3c{letter-spacing:0.003745pt;}
.ls38{letter-spacing:0.003878pt;}
.ls3e{letter-spacing:0.004777pt;}
.ls39{letter-spacing:0.005848pt;}
.ls33{letter-spacing:1.146110pt;}
.ls3d{letter-spacing:1.151444pt;}
.ls31{letter-spacing:1.255131pt;}
.ls0{letter-spacing:2.652911pt;}
.ls36{letter-spacing:2.654545pt;}
.ls3{letter-spacing:2.656473pt;}
.ls2e{letter-spacing:2.657067pt;}
.ls34{letter-spacing:2.659879pt;}
.ls19{letter-spacing:2.660695pt;}
.ls17{letter-spacing:2.661806pt;}
.ls15{letter-spacing:2.773627pt;}
.ls25{letter-spacing:5.164061pt;}
.ls3f{letter-spacing:7.252212pt;}
.ls23{letter-spacing:8.112473pt;}
.ls26{letter-spacing:8.187162pt;}
.ls28{letter-spacing:8.192495pt;}
.ls41{letter-spacing:8.404212pt;}
.ls16{letter-spacing:9.174026pt;}
.ls4a{letter-spacing:9.674110pt;}
.ls4b{letter-spacing:9.675168pt;}
.lsc{letter-spacing:10.918224pt;}
.ls1c{letter-spacing:10.918719pt;}
.ls8{letter-spacing:10.923558pt;}
.ls49{letter-spacing:12.090546pt;}
.ls4d{letter-spacing:12.095879pt;}
.ls1e{letter-spacing:13.578028pt;}
.ls7{letter-spacing:13.579139pt;}
.ls6{letter-spacing:13.649386pt;}
.ls5a{letter-spacing:13.654583pt;}
.lsb{letter-spacing:13.654719pt;}
.ls24{letter-spacing:13.963558pt;}
.ls29{letter-spacing:14.433249pt;}
.lsa{letter-spacing:16.304473pt;}
.ls5{letter-spacing:16.309806pt;}
.ls1a{letter-spacing:16.426960pt;}
.lse{letter-spacing:16.736891pt;}
.ls1b{letter-spacing:17.233364pt;}
.ls2b{letter-spacing:17.531916pt;}
.ls2c{letter-spacing:17.537249pt;}
.lsd{letter-spacing:19.392473pt;}
.ls5c{letter-spacing:19.932052pt;}
.ls2{letter-spacing:21.250245pt;}
.ls5b{letter-spacing:21.297495pt;}
.ls5e{letter-spacing:21.302828pt;}
.ls22{letter-spacing:22.513386pt;}
.ls18{letter-spacing:23.046697pt;}
.ls9{letter-spacing:24.928495pt;}
.ls2d{letter-spacing:25.083916pt;}
.ls21{letter-spacing:25.087362pt;}
.ls20{letter-spacing:28.737364pt;}
.ls57{letter-spacing:34.006586pt;}
.ls40{letter-spacing:118.406586pt;}
.ls45{letter-spacing:161.814586pt;}
.ls43{letter-spacing:226.918586pt;}
.ls53{letter-spacing:260.107919pt;}
.ls55{letter-spacing:262.886586pt;}
.ls47{letter-spacing:275.158586pt;}
.ls4f{letter-spacing:279.745253pt;}
.ls4c{letter-spacing:287.323919pt;}
.ls51{letter-spacing:291.910586pt;}
.ls1f{letter-spacing:382.442028pt;}
.ls3b{letter-spacing:417.430586pt;}
.ls37{letter-spacing:468.118586pt;}
.ls32{letter-spacing:479.894586pt;}
.ls46{letter-spacing:489.500911pt;}
.ls44{letter-spacing:548.412911pt;}
.ls54{letter-spacing:581.604805pt;}
.ls56{letter-spacing:584.378138pt;}
.ls50{letter-spacing:601.236805pt;}
.ls4e{letter-spacing:608.815472pt;}
.ls52{letter-spacing:613.402138pt;}
.ls3a{letter-spacing:789.615444pt;}
.ws43{word-spacing:-49.150218pt;}
.ws5c{word-spacing:-38.247076pt;}
.ws36{word-spacing:-32.063846pt;}
.ws5a{word-spacing:-23.886490pt;}
.ws1{word-spacing:-22.582000pt;}
.ws54{word-spacing:-13.652838pt;}
.ws3{word-spacing:-12.028410pt;}
.ws28{word-spacing:-11.955200pt;}
.wsc3{word-spacing:-11.290933pt;}
.ws7b{word-spacing:-11.004075pt;}
.ws78{word-spacing:-11.004066pt;}
.wsad{word-spacing:-10.626800pt;}
.wsb3{word-spacing:-9.298400pt;}
.ws7a{word-spacing:-9.170063pt;}
.wsd0{word-spacing:-8.645895pt;}
.ws91{word-spacing:-7.970133pt;}
.wsb8{word-spacing:-2.358074pt;}
.ws8d{word-spacing:-0.573850pt;}
.wsa6{word-spacing:-0.569290pt;}
.ws111{word-spacing:-0.552594pt;}
.ws24{word-spacing:-0.526029pt;}
.ws10e{word-spacing:-0.340058pt;}
.ws121{word-spacing:-0.255043pt;}
.ws125{word-spacing:-0.170029pt;}
.ws74{word-spacing:-0.095642pt;}
.ws58{word-spacing:-0.047821pt;}
.wsb0{word-spacing:-0.045164pt;}
.ws5{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws79{word-spacing:-0.036517pt;}
.ws44{word-spacing:-0.031881pt;}
.wsdc{word-spacing:-0.023910pt;}
.ws3f{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.059510pt;}
.ws8a{word-spacing:0.070004pt;}
.ws12f{word-spacing:0.085014pt;}
.ws10b{word-spacing:0.552594pt;}
.ws118{word-spacing:0.595101pt;}
.ws59{word-spacing:0.621670pt;}
.wsa7{word-spacing:0.789043pt;}
.ws27{word-spacing:0.908595pt;}
.wse6{word-spacing:1.004237pt;}
.wsfc{word-spacing:1.020173pt;}
.ws11b{word-spacing:1.062680pt;}
.wse{word-spacing:1.190202pt;}
.ws132{word-spacing:1.275216pt;}
.ws119{word-spacing:1.317723pt;}
.ws107{word-spacing:1.360230pt;}
.ws99{word-spacing:1.386803pt;}
.ws122{word-spacing:1.487752pt;}
.ws108{word-spacing:1.530259pt;}
.wsd2{word-spacing:1.535567pt;}
.ws8e{word-spacing:1.566486pt;}
.ws8f{word-spacing:1.578086pt;}
.wsa0{word-spacing:1.625907pt;}
.ws12e{word-spacing:1.700288pt;}
.wse3{word-spacing:1.769370pt;}
.wsef{word-spacing:1.912824pt;}
.ws57{word-spacing:1.960653pt;}
.ws5e{word-spacing:2.151936pt;}
.ws6c{word-spacing:2.199757pt;}
.wse1{word-spacing:2.295398pt;}
.ws52{word-spacing:2.343219pt;}
.ws2d{word-spacing:2.391040pt;}
.ws93{word-spacing:2.401823pt;}
.ws94{word-spacing:2.402220pt;}
.ws56{word-spacing:2.438861pt;}
.wsa1{word-spacing:2.486682pt;}
.wse8{word-spacing:2.582323pt;}
.ws50{word-spacing:2.630144pt;}
.ws4d{word-spacing:2.773606pt;}
.wsba{word-spacing:2.793648pt;}
.wsc5{word-spacing:2.794318pt;}
.wsc6{word-spacing:2.795510pt;}
.wsb6{word-spacing:2.795694pt;}
.wsb9{word-spacing:2.795913pt;}
.wsc4{word-spacing:2.796533pt;}
.wsc7{word-spacing:2.798981pt;}
.wsfa{word-spacing:2.805475pt;}
.wse0{word-spacing:2.821427pt;}
.wsf9{word-spacing:2.847982pt;}
.ws8c{word-spacing:2.908304pt;}
.ws18{word-spacing:2.917069pt;}
.wsa4{word-spacing:3.012710pt;}
.ws30{word-spacing:3.060531pt;}
.ws40{word-spacing:3.108352pt;}
.ws114{word-spacing:3.145533pt;}
.ws72{word-spacing:3.156173pt;}
.wsfd{word-spacing:3.188040pt;}
.ws55{word-spacing:3.299635pt;}
.wse4{word-spacing:3.347456pt;}
.wsa{word-spacing:3.400576pt;}
.ws53{word-spacing:3.490918pt;}
.ws9{word-spacing:3.528098pt;}
.ws3d{word-spacing:3.538739pt;}
.ws15{word-spacing:3.586560pt;}
.ws88{word-spacing:3.634381pt;}
.ws109{word-spacing:3.655619pt;}
.wsd1{word-spacing:3.703426pt;}
.wsb2{word-spacing:3.719360pt;}
.ws4a{word-spacing:3.730022pt;}
.ws1d{word-spacing:3.777843pt;}
.ws82{word-spacing:3.884081pt;}
.ws10f{word-spacing:3.894755pt;}
.wsa8{word-spacing:3.897395pt;}
.ws110{word-spacing:3.910662pt;}
.wsa3{word-spacing:3.921306pt;}
.ws101{word-spacing:3.953170pt;}
.wsb{word-spacing:3.995677pt;}
.ws9e{word-spacing:4.016947pt;}
.wsee{word-spacing:4.038184pt;}
.wse5{word-spacing:4.064768pt;}
.wsf3{word-spacing:4.123198pt;}
.wsf4{word-spacing:4.165706pt;}
.ws12d{word-spacing:4.168190pt;}
.ws113{word-spacing:4.208213pt;}
.ws90{word-spacing:4.208230pt;}
.ws81{word-spacing:4.245391pt;}
.ws116{word-spacing:4.248606pt;}
.ws11c{word-spacing:4.250053pt;}
.wsed{word-spacing:4.250720pt;}
.wseb{word-spacing:4.293227pt;}
.wsfb{word-spacing:4.323996pt;}
.wsd4{word-spacing:4.328731pt;}
.wsd3{word-spacing:4.329753pt;}
.wsd5{word-spacing:4.335718pt;}
.wsea{word-spacing:4.335734pt;}
.ws3c{word-spacing:4.351693pt;}
.ws3a{word-spacing:4.369867pt;}
.wsf5{word-spacing:4.378242pt;}
.wsc2{word-spacing:4.380882pt;}
.ws2f{word-spacing:4.399514pt;}
.wsf2{word-spacing:4.420749pt;}
.wsdf{word-spacing:4.426968pt;}
.ws35{word-spacing:4.447334pt;}
.ws127{word-spacing:4.456483pt;}
.ws128{word-spacing:4.463256pt;}
.ws17{word-spacing:4.495155pt;}
.wsf0{word-spacing:4.505763pt;}
.ws33{word-spacing:4.516373pt;}
.ws1e{word-spacing:4.542976pt;}
.ws7e{word-spacing:4.561537pt;}
.ws21{word-spacing:4.590797pt;}
.wsc1{word-spacing:4.610356pt;}
.ws96{word-spacing:4.611744pt;}
.ws14{word-spacing:4.638618pt;}
.wsb1{word-spacing:4.649200pt;}
.wsaf{word-spacing:4.651865pt;}
.ws6f{word-spacing:4.686438pt;}
.wsd8{word-spacing:4.697028pt;}
.ws26{word-spacing:4.734259pt;}
.ws7f{word-spacing:4.742192pt;}
.ws126{word-spacing:4.760806pt;}
.ws5b{word-spacing:4.774716pt;}
.ws32{word-spacing:4.781457pt;}
.ws16{word-spacing:4.782080pt;}
.ws3e{word-spacing:4.783565pt;}
.ws7d{word-spacing:4.805804pt;}
.ws13{word-spacing:4.829901pt;}
.ws11{word-spacing:4.877722pt;}
.ws68{word-spacing:4.887399pt;}
.ws66{word-spacing:4.889537pt;}
.ws67{word-spacing:4.908566pt;}
.wsae{word-spacing:4.913307pt;}
.ws1f{word-spacing:4.925542pt;}
.ws69{word-spacing:4.959824pt;}
.ws6a{word-spacing:4.960588pt;}
.ws120{word-spacing:4.973342pt;}
.ws2e{word-spacing:4.973363pt;}
.wse2{word-spacing:4.974262pt;}
.ws97{word-spacing:4.986470pt;}
.ws1b{word-spacing:5.021184pt;}
.ws8b{word-spacing:5.042011pt;}
.ws1c{word-spacing:5.069005pt;}
.ws4c{word-spacing:5.116826pt;}
.wsa5{word-spacing:5.212467pt;}
.wsd{word-spacing:5.228386pt;}
.ws3b{word-spacing:5.244607pt;}
.ws6e{word-spacing:5.260288pt;}
.wsf{word-spacing:5.270893pt;}
.ws1a{word-spacing:5.308109pt;}
.ws2{word-spacing:5.313387pt;}
.wsc{word-spacing:5.313400pt;}
.ws4f{word-spacing:5.355930pt;}
.ws8{word-spacing:5.398414pt;}
.ws7{word-spacing:5.440922pt;}
.ws20{word-spacing:5.642854pt;}
.ws63{word-spacing:5.690675pt;}
.ws51{word-spacing:5.881958pt;}
.ws34{word-spacing:5.977600pt;}
.ws92{word-spacing:6.073242pt;}
.wse9{word-spacing:6.168883pt;}
.ws5d{word-spacing:6.216704pt;}
.ws12b{word-spacing:6.291066pt;}
.ws73{word-spacing:6.360166pt;}
.wsa9{word-spacing:6.446674pt;}
.wsaa{word-spacing:6.451902pt;}
.ws64{word-spacing:6.455808pt;}
.ws80{word-spacing:6.458414pt;}
.ws2a{word-spacing:6.551450pt;}
.ws103{word-spacing:6.673630pt;}
.ws9f{word-spacing:6.742733pt;}
.ws112{word-spacing:6.801152pt;}
.ws71{word-spacing:6.838374pt;}
.ws10c{word-spacing:6.843659pt;}
.ws87{word-spacing:6.981837pt;}
.ws62{word-spacing:7.173120pt;}
.wsb4{word-spacing:7.215558pt;}
.ws45{word-spacing:7.220941pt;}
.ws4e{word-spacing:7.268762pt;}
.ws11e{word-spacing:7.311238pt;}
.ws76{word-spacing:7.316582pt;}
.ws102{word-spacing:7.353746pt;}
.ws100{word-spacing:7.396253pt;}
.ws98{word-spacing:7.460045pt;}
.ws9a{word-spacing:7.507866pt;}
.ws10a{word-spacing:7.608789pt;}
.ws9b{word-spacing:7.699149pt;}
.wsa2{word-spacing:7.746970pt;}
.wsf7{word-spacing:7.778818pt;}
.wsf6{word-spacing:7.821325pt;}
.ws6d{word-spacing:7.842611pt;}
.ws12c{word-spacing:7.863832pt;}
.ws37{word-spacing:7.986074pt;}
.ws4b{word-spacing:8.081715pt;}
.wsbd{word-spacing:8.107585pt;}
.wsbb{word-spacing:8.108781pt;}
.wsc0{word-spacing:8.108896pt;}
.wsbf{word-spacing:8.109048pt;}
.wsbe{word-spacing:8.110216pt;}
.wsbc{word-spacing:8.111412pt;}
.wsc8{word-spacing:8.112918pt;}
.ws104{word-spacing:8.161382pt;}
.ws84{word-spacing:8.177357pt;}
.ws83{word-spacing:8.272998pt;}
.ws2b{word-spacing:8.416461pt;}
.ws41{word-spacing:8.464282pt;}
.ws75{word-spacing:8.559923pt;}
.ws11d{word-spacing:8.628962pt;}
.ws9d{word-spacing:8.655565pt;}
.ws9c{word-spacing:8.672675pt;}
.wsff{word-spacing:8.713976pt;}
.ws60{word-spacing:8.775117pt;}
.wsf8{word-spacing:8.798990pt;}
.ws22{word-spacing:8.799027pt;}
.ws65{word-spacing:8.846848pt;}
.ws5f{word-spacing:8.894669pt;}
.ws0{word-spacing:8.942472pt;}
.ws61{word-spacing:8.990310pt;}
.ws85{word-spacing:9.038131pt;}
.ws42{word-spacing:9.133773pt;}
.ws49{word-spacing:9.181594pt;}
.ws48{word-spacing:9.229414pt;}
.ws19{word-spacing:9.325056pt;}
.ws12a{word-spacing:9.394091pt;}
.ws25{word-spacing:9.564160pt;}
.wsfe{word-spacing:9.606627pt;}
.ws47{word-spacing:9.659802pt;}
.wsd9{word-spacing:9.755443pt;}
.ws117{word-spacing:9.819163pt;}
.ws106{word-spacing:9.904178pt;}
.ws12{word-spacing:9.946726pt;}
.ws95{word-spacing:10.042368pt;}
.ws6b{word-spacing:10.185830pt;}
.wsac{word-spacing:10.329293pt;}
.ws10d{word-spacing:10.371757pt;}
.ws124{word-spacing:10.754322pt;}
.ws70{word-spacing:10.903142pt;}
.ws86{word-spacing:10.950963pt;}
.ws39{word-spacing:11.087313pt;}
.ws38{word-spacing:11.094426pt;}
.ws89{word-spacing:11.237888pt;}
.wsab{word-spacing:11.453082pt;}
.ws2c{word-spacing:11.476992pt;}
.ws10{word-spacing:11.955200pt;}
.wsde{word-spacing:12.087702pt;}
.wsdd{word-spacing:12.098662pt;}
.ws46{word-spacing:12.385587pt;}
.ws105{word-spacing:12.497117pt;}
.wsd6{word-spacing:12.522561pt;}
.wsd7{word-spacing:12.582131pt;}
.wsec{word-spacing:12.964696pt;}
.ws130{word-spacing:13.007203pt;}
.ws11f{word-spacing:13.049710pt;}
.wsf1{word-spacing:13.559797pt;}
.ws129{word-spacing:13.899854pt;}
.ws29{word-spacing:13.915853pt;}
.ws11a{word-spacing:13.942362pt;}
.ws23{word-spacing:14.920090pt;}
.ws131{word-spacing:15.132563pt;}
.wsda{word-spacing:16.939412pt;}
.wsdb{word-spacing:16.976384pt;}
.wse7{word-spacing:17.072026pt;}
.ws6{word-spacing:17.385445pt;}
.ws115{word-spacing:19.468298pt;}
.ws123{word-spacing:22.613830pt;}
.ws77{word-spacing:49.130065pt;}
.ws7c{word-spacing:52.883906pt;}
.wsca{word-spacing:72.018667pt;}
.wscf{word-spacing:74.184028pt;}
.wscc{word-spacing:74.205333pt;}
.wscd{word-spacing:76.378450pt;}
.wsce{word-spacing:105.352265pt;}
.wscb{word-spacing:117.700540pt;}
.wsc9{word-spacing:190.599996pt;}
.ws31{word-spacing:213.344776pt;}
.wsb5{word-spacing:726.898477pt;}
._f{margin-left:-80.173426pt;}
._17{margin-left:-76.298079pt;}
._10{margin-left:-36.169677pt;}
._0{margin-left:-7.226240pt;}
._16{margin-left:-5.929779pt;}
._4{margin-left:-4.516379pt;}
._2{margin-left:-3.613120pt;}
._34{margin-left:-2.699226pt;}
._1{margin-left:-1.806560pt;}
._6{margin-left:-0.892643pt;}
._13{width:0.907713pt;}
._5{width:2.949040pt;}
._3{width:4.023534pt;}
._39{width:6.886071pt;}
._7{width:12.709661pt;}
._e{width:15.541760pt;}
._8{width:17.661805pt;}
._35{width:19.627751pt;}
._b{width:22.965668pt;}
._a{width:23.910400pt;}
._d{width:29.155980pt;}
._c{width:32.906760pt;}
._38{width:40.517971pt;}
._36{width:42.505405pt;}
._3a{width:49.060171pt;}
._37{width:51.175300pt;}
._11{width:55.661343pt;}
._14{width:59.414435pt;}
._12{width:66.589015pt;}
._15{width:70.342115pt;}
._31{width:78.879654pt;}
._2c{width:83.503733pt;}
._32{width:85.027774pt;}
._2b{width:90.208267pt;}
._33{width:93.668614pt;}
._2d{width:98.261067pt;}
._30{width:99.913867pt;}
._2a{width:105.082400pt;}
._2e{width:113.018400pt;}
._1c{width:118.541151pt;}
._29{width:120.576267pt;}
._2f{width:125.468982pt;}
._28{width:128.197067pt;}
._20{width:139.853084pt;}
._27{width:144.730400pt;}
._1a{width:155.623191pt;}
._25{width:205.983305pt;}
._26{width:208.028953pt;}
._23{width:220.451615pt;}
._24{width:230.552348pt;}
._1b{width:249.515743pt;}
._9{width:263.787646pt;}
._1e{width:278.415170pt;}
._21{width:294.838815pt;}
._22{width:304.939548pt;}
._1d{width:326.022978pt;}
._1f{width:332.829407pt;}
._18{width:490.538337pt;}
._19{width:524.878794pt;}
.fs6{font-size:22.067105pt;}
.fsa{font-size:26.083733pt;}
.fs9{font-size:26.566933pt;}
.fse{font-size:31.119146pt;}
.fsf{font-size:31.119147pt;}
.fsb{font-size:31.300454pt;}
.fsd{font-size:31.300480pt;}
.fs5{font-size:31.880533pt;}
.fs10{font-size:33.948157pt;}
.fsc{font-size:36.517292pt;}
.fs11{font-size:36.979009pt;}
.fs2{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs12{font-size:44.745548pt;}
.fs7{font-size:45.163733pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:62.452395pt;}
.fs0{font-size:90.328000pt;}
.y69{bottom:-5.127438pt;}
.y15e{bottom:-0.288078pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:0.098701pt;}
.y15f{bottom:0.266994pt;}
.y160{bottom:1.578122pt;}
.y55{bottom:3.089837pt;}
.y56{bottom:3.332274pt;}
.y5b{bottom:3.474912pt;}
.y161{bottom:4.353504pt;}
.yf1{bottom:7.139257pt;}
.y15d{bottom:7.358598pt;}
.y54{bottom:8.859825pt;}
.yeb{bottom:9.823970pt;}
.y5a{bottom:11.570746pt;}
.y59{bottom:19.544034pt;}
.y15c{bottom:19.876547pt;}
.y162{bottom:24.792027pt;}
.yec{bottom:25.281071pt;}
.yf2{bottom:28.827902pt;}
.y67{bottom:39.456039pt;}
.yed{bottom:40.738191pt;}
.y50{bottom:47.664538pt;}
.yf3{bottom:48.560273pt;}
.yee{bottom:56.195292pt;}
.y163{bottom:56.601887pt;}
.y68{bottom:57.123287pt;}
.y16c{bottom:59.657175pt;}
.yf4{bottom:69.270772pt;}
.yef{bottom:71.652412pt;}
.y4f{bottom:79.192983pt;}
.yf8{bottom:82.981755pt;}
.yf0{bottom:83.821688pt;}
.y164{bottom:88.121489pt;}
.yf5{bottom:89.981271pt;}
.ye2{bottom:96.934543pt;}
.y38{bottom:99.098667pt;}
.y4d{bottom:101.203719pt;}
.y139{bottom:102.848000pt;}
.y169{bottom:108.458954pt;}
.ye3{bottom:110.621806pt;}
.y199{bottom:111.053333pt;}
.y4e{bottom:113.056860pt;}
.y37{bottom:113.773333pt;}
.y4c{bottom:116.967940pt;}
.ye7{bottom:118.378896pt;}
.y165{bottom:119.641089pt;}
.y198{bottom:123.008000pt;}
.y138{bottom:126.908000pt;}
.y16d{bottom:127.122740pt;}
.y36{bottom:128.448000pt;}
.y229{bottom:130.788000pt;}
.y4b{bottom:132.732167pt;}
.y197{bottom:134.964000pt;}
.y1e2{bottom:135.373333pt;}
.ye4{bottom:135.818519pt;}
.y65{bottom:138.517333pt;}
.y137{bottom:141.582667pt;}
.y228{bottom:142.742667pt;}
.y35{bottom:143.124000pt;}
.ye8{bottom:143.612782pt;}
.y1e1{bottom:147.328000pt;}
.y4a{bottom:147.912576pt;}
.y166{bottom:151.160690pt;}
.y196{bottom:153.660000pt;}
.y16e{bottom:153.957110pt;}
.y52{bottom:154.346253pt;}
.y227{bottom:154.698667pt;}
.y136{bottom:156.257333pt;}
.y98{bottom:157.798667pt;}
.y34{bottom:159.374667pt;}
.y1e0{bottom:159.693333pt;}
.ye5{bottom:161.015252pt;}
.y51{bottom:161.306086pt;}
.y64{bottom:163.262667pt;}
.y49{bottom:163.676897pt;}
.y226{bottom:166.653333pt;}
.ye9{bottom:168.846645pt;}
.ye6{bottom:169.018144pt;}
.yf7{bottom:169.058090pt;}
.y135{bottom:170.933333pt;}
.y1df{bottom:171.648000pt;}
.y97{bottom:172.473333pt;}
.y33{bottom:174.050667pt;}
.y195{bottom:174.754667pt;}
.y63{bottom:177.937333pt;}
.y225{bottom:178.608000pt;}
.yda{bottom:182.032680pt;}
.y167{bottom:182.680290pt;}
.y1de{bottom:183.602667pt;}
.y57{bottom:185.279561pt;}
.y134{bottom:185.608000pt;}
.y96{bottom:187.149333pt;}
.y32{bottom:188.725333pt;}
.y194{bottom:189.430667pt;}
.y224{bottom:190.564000pt;}
.y62{bottom:192.613333pt;}
.y1dd{bottom:195.558667pt;}
.ydb{bottom:195.719943pt;}
.y58{bottom:198.708343pt;}
.y133{bottom:200.282667pt;}
.y95{bottom:201.824000pt;}
.y223{bottom:202.518667pt;}
.y31{bottom:203.400000pt;}
.y193{bottom:204.105333pt;}
.ydf{bottom:204.767513pt;}
.y61{bottom:207.288000pt;}
.y1dc{bottom:207.513333pt;}
.y168{bottom:214.199891pt;}
.y222{bottom:214.474667pt;}
.y132{bottom:214.958667pt;}
.y94{bottom:216.498667pt;}
.y30{bottom:218.076000pt;}
.y192{bottom:218.780000pt;}
.y1db{bottom:219.878667pt;}
.ydc{bottom:220.916694pt;}
.y60{bottom:221.962667pt;}
.y221{bottom:226.429333pt;}
.y131{bottom:230.082667pt;}
.y16a{bottom:230.213249pt;}
.ye0{bottom:230.851766pt;}
.y93{bottom:231.174667pt;}
.y1da{bottom:231.833333pt;}
.y2f{bottom:232.750667pt;}
.y191{bottom:233.456000pt;}
.y5f{bottom:236.638667pt;}
.y53{bottom:237.012763pt;}
.y220{bottom:238.384000pt;}
.y1d9{bottom:243.788000pt;}
.y130{bottom:244.757333pt;}
.y92{bottom:245.849333pt;}
.y177{bottom:245.922667pt;}
.ydd{bottom:246.113436pt;}
.y2e{bottom:247.425333pt;}
.y190{bottom:248.130667pt;}
.y21f{bottom:250.340000pt;}
.yf6{bottom:253.178131pt;}
.yde{bottom:253.850202pt;}
.y1d8{bottom:255.744000pt;}
.ye1{bottom:256.935963pt;}
.y5e{bottom:256.969333pt;}
.y12f{bottom:259.433333pt;}
.y91{bottom:260.524000pt;}
.y176{bottom:260.597333pt;}
.y2d{bottom:262.101333pt;}
.y21e{bottom:262.294667pt;}
.y18f{bottom:262.805333pt;}
.y1d7{bottom:268.108000pt;}
.ycf{bottom:268.109049pt;}
.y12e{bottom:274.108000pt;}
.y21d{bottom:274.249333pt;}
.y90{bottom:275.200000pt;}
.y175{bottom:275.273333pt;}
.y2c{bottom:276.776000pt;}
.y18e{bottom:277.481333pt;}
.y5d{bottom:278.650667pt;}
.y100{bottom:279.912000pt;}
.y1d6{bottom:280.064000pt;}
.yd0{bottom:281.796311pt;}
.yd5{bottom:282.761964pt;}
.y21c{bottom:286.205333pt;}
.y12d{bottom:288.782667pt;}
.y8f{bottom:289.874667pt;}
.y2b{bottom:291.450667pt;}
.y1d5{bottom:292.018667pt;}
.y18d{bottom:295.646667pt;}
.yd6{bottom:297.132235pt;}
.y21b{bottom:298.160000pt;}
.y12c{bottom:303.458667pt;}
.y1d4{bottom:304.382667pt;}
.y8e{bottom:304.549333pt;}
.y2a{bottom:306.126667pt;}
.y174{bottom:306.608000pt;}
.yd1{bottom:306.993035pt;}
.y21a{bottom:310.116000pt;}
.yd7{bottom:311.502515pt;}
.y1d3{bottom:316.338667pt;}
.y18c{bottom:316.742667pt;}
.yff{bottom:317.609333pt;}
.y12b{bottom:318.133333pt;}
.y8d{bottom:319.225333pt;}
.y173{bottom:319.892000pt;}
.y5c{bottom:320.789333pt;}
.y29{bottom:320.801333pt;}
.y219{bottom:322.070667pt;}
.yd8{bottom:325.872793pt;}
.y1d2{bottom:328.293333pt;}
.yfe{bottom:330.893333pt;}
.y18b{bottom:331.417333pt;}
.yd2{bottom:332.189760pt;}
.y12a{bottom:332.808000pt;}
.y172{bottom:333.174667pt;}
.y218{bottom:334.025333pt;}
.y28{bottom:335.476000pt;}
.y48{bottom:338.398667pt;}
.yc0{bottom:339.009333pt;}
.y8c{bottom:339.180000pt;}
.yd4{bottom:340.232659pt;}
.yd9{bottom:340.243065pt;}
.y1d1{bottom:340.249333pt;}
.yd3{bottom:340.904665pt;}
.yfd{bottom:344.177333pt;}
.y217{bottom:345.981333pt;}
.y18a{bottom:346.092000pt;}
.y171{bottom:346.458667pt;}
.y129{bottom:347.484000pt;}
.y27{bottom:350.152000pt;}
.y1d0{bottom:352.204000pt;}
.yfc{bottom:357.460000pt;}
.y216{bottom:357.936000pt;}
.y170{bottom:359.742667pt;}
.y189{bottom:360.768000pt;}
.y128{bottom:362.158667pt;}
.ybf{bottom:363.192000pt;}
.y8b{bottom:363.717333pt;}
.y1cf{bottom:364.568000pt;}
.y26{bottom:364.826667pt;}
.y215{bottom:369.890667pt;}
.yfb{bottom:370.744000pt;}
.y16f{bottom:373.025333pt;}
.y188{bottom:375.442667pt;}
.y1ce{bottom:376.524000pt;}
.y127{bottom:376.833333pt;}
.ybe{bottom:377.866667pt;}
.y8a{bottom:378.393333pt;}
.y25{bottom:379.501333pt;}
.y214{bottom:381.846667pt;}
.yfa{bottom:384.026667pt;}
.y1cd{bottom:388.478667pt;}
.y187{bottom:390.117333pt;}
.y15b{bottom:390.636000pt;}
.y126{bottom:391.509333pt;}
.ybd{bottom:392.542667pt;}
.y89{bottom:393.068000pt;}
.y213{bottom:393.801333pt;}
.y24{bottom:394.177333pt;}
.yf9{bottom:397.310667pt;}
.y1cc{bottom:400.434667pt;}
.y186{bottom:404.793333pt;}
.y212{bottom:405.757333pt;}
.y125{bottom:406.184000pt;}
.ybc{bottom:407.217333pt;}
.y88{bottom:407.742667pt;}
.y23{bottom:408.852000pt;}
.y1cb{bottom:412.798667pt;}
.yce{bottom:414.921333pt;}
.y211{bottom:417.712000pt;}
.y185{bottom:419.468000pt;}
.y124{bottom:420.858667pt;}
.y87{bottom:422.418667pt;}
.y22{bottom:423.526667pt;}
.y1ca{bottom:424.753333pt;}
.ybb{bottom:427.961333pt;}
.y210{bottom:429.666667pt;}
.y184{bottom:434.142667pt;}
.y122{bottom:435.534667pt;}
.y1c9{bottom:436.709333pt;}
.y86{bottom:437.093333pt;}
.y21{bottom:438.202667pt;}
.y123{bottom:440.613333pt;}
.y20f{bottom:441.622667pt;}
.y16b{bottom:442.144223pt;}
.y1c8{bottom:448.664000pt;}
.y183{bottom:448.818667pt;}
.y121{bottom:450.209333pt;}
.y85{bottom:452.417333pt;}
.y20{bottom:452.877333pt;}
.y20e{bottom:453.577333pt;}
.yba{bottom:453.969333pt;}
.y1c7{bottom:461.029333pt;}
.y182{bottom:463.493333pt;}
.y120{bottom:464.884000pt;}
.y20d{bottom:465.532000pt;}
.y84{bottom:467.092000pt;}
.y1f{bottom:467.552000pt;}
.yb9{bottom:468.644000pt;}
.y1c6{bottom:472.984000pt;}
.y20c{bottom:477.488000pt;}
.y181{bottom:478.168000pt;}
.y11f{bottom:479.560000pt;}
.y83{bottom:481.768000pt;}
.y1e{bottom:482.228000pt;}
.yb8{bottom:483.320000pt;}
.y1c5{bottom:484.938667pt;}
.y20b{bottom:489.442667pt;}
.y180{bottom:492.844000pt;}
.y11e{bottom:494.234667pt;}
.y82{bottom:496.442667pt;}
.y1d{bottom:496.902667pt;}
.y1c4{bottom:497.304000pt;}
.yb7{bottom:497.994667pt;}
.y20a{bottom:501.398667pt;}
.y11d{bottom:508.909333pt;}
.y1c3{bottom:509.258667pt;}
.y81{bottom:511.117333pt;}
.y1c{bottom:511.577333pt;}
.yb6{bottom:512.669333pt;}
.y209{bottom:513.353333pt;}
.y17f{bottom:514.581333pt;}
.y1c2{bottom:521.214667pt;}
.y11c{bottom:523.585333pt;}
.y208{bottom:525.308000pt;}
.y80{bottom:525.793333pt;}
.y1b{bottom:526.253333pt;}
.yb5{bottom:527.345333pt;}
.y17e{bottom:529.256000pt;}
.y1c1{bottom:533.169333pt;}
.y207{bottom:537.264000pt;}
.y11b{bottom:538.260000pt;}
.y7f{bottom:540.468000pt;}
.y1a{bottom:540.928000pt;}
.yb4{bottom:542.404000pt;}
.y17d{bottom:543.932000pt;}
.y1c0{bottom:545.533333pt;}
.y206{bottom:549.218667pt;}
.y11a{bottom:552.934667pt;}
.y7e{bottom:555.142667pt;}
.y19{bottom:555.602667pt;}
.yb3{bottom:557.078667pt;}
.y1bf{bottom:557.489333pt;}
.y17c{bottom:558.606667pt;}
.y205{bottom:561.173333pt;}
.y119{bottom:567.610667pt;}
.y1be{bottom:569.444000pt;}
.y18{bottom:570.278667pt;}
.y7d{bottom:570.468000pt;}
.yb2{bottom:571.753333pt;}
.y203{bottom:573.129333pt;}
.y204{bottom:573.182667pt;}
.y17b{bottom:573.281333pt;}
.y1bc{bottom:581.398667pt;}
.y1bd{bottom:581.452000pt;}
.y118{bottom:582.285333pt;}
.y17{bottom:584.953333pt;}
.y202{bottom:585.084000pt;}
.y7c{bottom:585.142667pt;}
.yb1{bottom:586.429333pt;}
.y17a{bottom:587.957333pt;}
.y1bb{bottom:593.764000pt;}
.y117{bottom:596.960000pt;}
.y201{bottom:597.040000pt;}
.y16{bottom:599.628000pt;}
.y7b{bottom:599.817333pt;}
.y47{bottom:600.541333pt;}
.yb0{bottom:601.104000pt;}
.y179{bottom:602.632000pt;}
.y1ba{bottom:605.718667pt;}
.y200{bottom:608.994667pt;}
.y116{bottom:611.636000pt;}
.y15{bottom:614.304000pt;}
.y7a{bottom:614.493333pt;}
.y46{bottom:615.216000pt;}
.yaf{bottom:615.778667pt;}
.y178{bottom:617.306667pt;}
.y1b9{bottom:617.674667pt;}
.y1ff{bottom:620.949333pt;}
.y14{bottom:628.978667pt;}
.y79{bottom:629.168000pt;}
.y45{bottom:629.890667pt;}
.y1b8{bottom:630.038667pt;}
.yae{bottom:630.454667pt;}
.y115{bottom:631.648000pt;}
.y1fe{bottom:632.905333pt;}
.y1b7{bottom:641.994667pt;}
.y78{bottom:643.842667pt;}
.y44{bottom:644.566667pt;}
.y1fd{bottom:644.860000pt;}
.yad{bottom:645.129333pt;}
.y15a{bottom:649.749333pt;}
.y1b6{bottom:653.949333pt;}
.y114{bottom:656.304000pt;}
.y1fc{bottom:656.814667pt;}
.y13{bottom:656.878667pt;}
.y77{bottom:658.518667pt;}
.y43{bottom:659.241333pt;}
.yac{bottom:659.804000pt;}
.y159{bottom:663.032000pt;}
.y1b5{bottom:665.904000pt;}
.y1fb{bottom:668.770667pt;}
.y113{bottom:670.978667pt;}
.y76{bottom:673.193333pt;}
.y42{bottom:673.916000pt;}
.yab{bottom:674.480000pt;}
.y1b4{bottom:678.269333pt;}
.y158{bottom:679.504000pt;}
.y1fa{bottom:680.725333pt;}
.y112{bottom:685.653333pt;}
.y75{bottom:687.868000pt;}
.y41{bottom:688.592000pt;}
.yaa{bottom:689.154667pt;}
.y1b3{bottom:690.224000pt;}
.y1f9{bottom:692.681333pt;}
.y157{bottom:692.788000pt;}
.y12{bottom:693.024000pt;}
.y111{bottom:700.329333pt;}
.y1b2{bottom:702.178667pt;}
.y74{bottom:702.544000pt;}
.y40{bottom:703.266667pt;}
.ya9{bottom:703.829333pt;}
.y1f8{bottom:704.636000pt;}
.y11{bottom:704.980000pt;}
.y156{bottom:706.070667pt;}
.y1b1{bottom:714.134667pt;}
.y110{bottom:715.004000pt;}
.y1f7{bottom:716.590667pt;}
.y10{bottom:716.934667pt;}
.y73{bottom:717.218667pt;}
.y3f{bottom:717.941333pt;}
.ya8{bottom:718.505333pt;}
.y155{bottom:719.354667pt;}
.y1b0{bottom:726.498667pt;}
.y1f6{bottom:728.546667pt;}
.yf{bottom:728.889333pt;}
.y10f{bottom:729.678667pt;}
.y72{bottom:731.893333pt;}
.y3e{bottom:732.617333pt;}
.ya7{bottom:733.180000pt;}
.y154{bottom:735.825333pt;}
.y1af{bottom:738.454667pt;}
.y1f5{bottom:740.501333pt;}
.ye{bottom:740.845333pt;}
.y10e{bottom:744.354667pt;}
.y71{bottom:746.569333pt;}
.ya6{bottom:747.854667pt;}
.y153{bottom:750.065333pt;}
.y1ae{bottom:750.409333pt;}
.y3d{bottom:751.156000pt;}
.y1f4{bottom:752.456000pt;}
.yd{bottom:752.800000pt;}
.y10d{bottom:759.029333pt;}
.y70{bottom:761.244000pt;}
.y1ac{bottom:762.364000pt;}
.y1ad{bottom:762.417333pt;}
.ya5{bottom:762.530667pt;}
.y152{bottom:763.349333pt;}
.y1f3{bottom:764.412000pt;}
.yc{bottom:764.754667pt;}
.y3c{bottom:765.830667pt;}
.y10c{bottom:773.704000pt;}
.y1ab{bottom:774.729333pt;}
.y6f{bottom:775.918667pt;}
.y1f2{bottom:776.366667pt;}
.yb{bottom:776.710667pt;}
.ya4{bottom:777.205333pt;}
.y3b{bottom:780.505333pt;}
.ycd{bottom:784.116000pt;}
.y1aa{bottom:786.684000pt;}
.y150{bottom:787.836000pt;}
.y1f1{bottom:788.322667pt;}
.y10b{bottom:788.380000pt;}
.ya{bottom:788.665333pt;}
.y151{bottom:790.161333pt;}
.y6e{bottom:790.594667pt;}
.y3a{bottom:795.181333pt;}
.y1a9{bottom:798.640000pt;}
.ycc{bottom:798.792000pt;}
.y1f0{bottom:800.277333pt;}
.y9{bottom:800.621333pt;}
.y14e{bottom:801.650667pt;}
.ya3{bottom:801.756000pt;}
.y10a{bottom:803.054667pt;}
.y14f{bottom:803.976000pt;}
.y6d{bottom:805.918667pt;}
.y39{bottom:809.856000pt;}
.y1a8{bottom:810.594667pt;}
.y1ef{bottom:812.232000pt;}
.y8{bottom:812.576000pt;}
.ycb{bottom:813.466667pt;}
.y14c{bottom:815.466667pt;}
.y109{bottom:817.729333pt;}
.y14d{bottom:817.790667pt;}
.y6c{bottom:820.593333pt;}
.y1a7{bottom:822.958667pt;}
.y147{bottom:823.010667pt;}
.y1ee{bottom:824.188000pt;}
.y7{bottom:824.530667pt;}
.yca{bottom:828.141333pt;}
.y14a{bottom:829.281333pt;}
.y14b{bottom:831.605333pt;}
.y108{bottom:832.405333pt;}
.ya2{bottom:832.912000pt;}
.y1a6{bottom:834.914667pt;}
.y1ed{bottom:836.142667pt;}
.y6b{bottom:840.549333pt;}
.yc9{bottom:842.817333pt;}
.y148{bottom:843.096000pt;}
.y149{bottom:845.420000pt;}
.y1a5{bottom:846.869333pt;}
.y107{bottom:847.080000pt;}
.ya1{bottom:847.586667pt;}
.y1ec{bottom:848.097333pt;}
.y145{bottom:856.910667pt;}
.yc8{bottom:857.492000pt;}
.y1a3{bottom:858.825333pt;}
.y1a4{bottom:858.877333pt;}
.y146{bottom:859.234667pt;}
.y1eb{bottom:860.053333pt;}
.y106{bottom:861.754667pt;}
.ya0{bottom:862.261333pt;}
.y6{bottom:866.741333pt;}
.y1a2{bottom:870.780000pt;}
.y144{bottom:871.257333pt;}
.y1ea{bottom:872.008000pt;}
.yc7{bottom:872.166667pt;}
.y6a{bottom:872.864000pt;}
.y105{bottom:876.430667pt;}
.y9f{bottom:876.937333pt;}
.y5{bottom:877.861333pt;}
.y4{bottom:882.681333pt;}
.y1a1{bottom:883.144000pt;}
.y1e9{bottom:883.964000pt;}
.y143{bottom:885.072000pt;}
.y142{bottom:885.709333pt;}
.yc6{bottom:886.842667pt;}
.y66{bottom:890.473333pt;}
.y104{bottom:891.105333pt;}
.y9e{bottom:891.612000pt;}
.y1a0{bottom:895.100000pt;}
.y1e8{bottom:895.918667pt;}
.y141{bottom:898.886667pt;}
.yc5{bottom:901.517333pt;}
.y103{bottom:905.780000pt;}
.y9d{bottom:906.286667pt;}
.y19f{bottom:907.054667pt;}
.y1e7{bottom:907.873333pt;}
.y3{bottom:909.741333pt;}
.y140{bottom:913.233333pt;}
.yc4{bottom:916.192000pt;}
.y19e{bottom:919.010667pt;}
.y1e6{bottom:919.829333pt;}
.y102{bottom:920.456000pt;}
.y9c{bottom:926.072000pt;}
.y13f{bottom:927.048000pt;}
.y13e{bottom:927.685333pt;}
.yc3{bottom:930.868000pt;}
.y19d{bottom:931.374667pt;}
.y1e5{bottom:931.784000pt;}
.y101{bottom:935.580000pt;}
.y2{bottom:937.637333pt;}
.y13d{bottom:940.862667pt;}
.y19c{bottom:943.329333pt;}
.y1e4{bottom:943.740000pt;}
.yc2{bottom:945.542667pt;}
.y9b{bottom:950.254667pt;}
.y13c{bottom:955.209333pt;}
.y19b{bottom:955.694667pt;}
.yc1{bottom:960.217333pt;}
.y1{bottom:964.204000pt;}
.y9a{bottom:964.929333pt;}
.y19a{bottom:967.649333pt;}
.y13b{bottom:970.724000pt;}
.y99{bottom:979.605333pt;}
.y1e3{bottom:979.657333pt;}
.y13a{bottom:984.008000pt;}
.h21{height:0.967034pt;}
.ha{height:15.207014pt;}
.h25{height:16.287863pt;}
.h22{height:16.293197pt;}
.hd{height:16.765828pt;}
.hc{height:16.873578pt;}
.h15{height:19.817524pt;}
.h1a{height:21.933807pt;}
.h29{height:22.655589pt;}
.h24{height:23.281700pt;}
.h20{height:23.287034pt;}
.h16{height:23.781009pt;}
.h18{height:23.781029pt;}
.h1c{height:23.974061pt;}
.h2a{height:24.715187pt;}
.h1e{height:25.589197pt;}
.h27{height:25.812358pt;}
.h17{height:26.585587pt;}
.h2b{height:26.921730pt;}
.h3{height:27.895200pt;}
.h2e{height:28.267288pt;}
.h30{height:29.159939pt;}
.h2f{height:29.244954pt;}
.h7{height:29.499997pt;}
.h6{height:29.712533pt;}
.h2d{height:30.828109pt;}
.h19{height:31.072649pt;}
.h26{height:31.343631pt;}
.h1d{height:31.428592pt;}
.h23{height:32.577700pt;}
.h1f{height:32.583034pt;}
.h9{height:32.900710pt;}
.h8{height:33.187635pt;}
.hf{height:33.713664pt;}
.h1b{height:34.866402pt;}
.he{height:35.865600pt;}
.h5{height:36.556100pt;}
.h4{height:36.822767pt;}
.h13{height:36.917658pt;}
.h12{height:41.515221pt;}
.h11{height:45.467052pt;}
.h2{height:47.180533pt;}
.h1{height:62.145664pt;}
.h10{height:99.403608pt;}
.h2c{height:173.356986pt;}
.h28{height:236.943682pt;}
.hb{height:241.204222pt;}
.h14{height:348.990629pt;}
.h0{height:1056.000000pt;}
.w3{width:239.897319pt;}
.w5{width:257.028592pt;}
.w4{width:287.885656pt;}
.w1{width:294.799084pt;}
.w2{width:294.822943pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6b{left:4.772584pt;}
.x97{left:6.179054pt;}
.x6c{left:8.917017pt;}
.x96{left:10.698904pt;}
.x95{left:15.030903pt;}
.x18{left:16.475979pt;}
.x6a{left:19.377770pt;}
.x2d{left:27.497327pt;}
.x6e{left:31.781634pt;}
.x90{left:44.127351pt;}
.x98{left:47.815277pt;}
.x2e{left:49.090780pt;}
.x9b{left:64.156000pt;}
.x1{left:65.285333pt;}
.x2f{left:68.002850pt;}
.xa7{left:70.598667pt;}
.x9{left:77.240000pt;}
.x8f{left:79.682667pt;}
.x10{left:80.578016pt;}
.xf{left:84.281119pt;}
.x1a{left:86.085892pt;}
.x12{left:87.876700pt;}
.x6f{left:88.829546pt;}
.x11{left:90.776511pt;}
.x6d{left:92.709635pt;}
.x73{left:95.565333pt;}
.x40{left:107.264000pt;}
.x35{left:112.522667pt;}
.xa9{left:113.533333pt;}
.x74{left:117.902667pt;}
.x4b{left:119.142667pt;}
.x77{left:125.694667pt;}
.x9c{left:131.424000pt;}
.x17{left:133.139812pt;}
.x36{left:134.860000pt;}
.x50{left:137.936000pt;}
.x1b{left:145.712971pt;}
.x30{left:146.812000pt;}
.x91{left:148.622193pt;}
.x78{left:152.944000pt;}
.x99{left:154.192514pt;}
.x51{left:157.500000pt;}
.x1c{left:158.557899pt;}
.x37{left:160.089333pt;}
.x42{left:168.650667pt;}
.x15{left:173.995629pt;}
.x16{left:176.033438pt;}
.xa{left:177.544000pt;}
.x13{left:179.227426pt;}
.x9a{left:180.813628pt;}
.xa8{left:183.026667pt;}
.x14{left:184.194124pt;}
.x92{left:185.719246pt;}
.x43{left:190.988000pt;}
.x5{left:193.336000pt;}
.x75{left:197.706667pt;}
.x48{left:200.737333pt;}
.x38{left:202.430667pt;}
.x39{left:209.038667pt;}
.x44{left:212.722667pt;}
.x33{left:215.988000pt;}
.x1d{left:219.248578pt;}
.x76{left:221.568000pt;}
.x93{left:223.239111pt;}
.x8{left:227.620000pt;}
.x3a{left:229.214667pt;}
.x34{left:236.369333pt;}
.x45{left:237.865333pt;}
.x49{left:248.058667pt;}
.x3b{left:250.124000pt;}
.x19{left:255.858653pt;}
.x94{left:265.768403pt;}
.x3{left:270.948000pt;}
.x71{left:273.485333pt;}
.x4a{left:274.533333pt;}
.x3c{left:292.465333pt;}
.x72{left:297.718667pt;}
.x3d{left:299.073333pt;}
.x9d{left:305.296000pt;}
.x3e{left:315.257333pt;}
.xaa{left:317.688000pt;}
.x4e{left:319.577333pt;}
.x6{left:323.853333pt;}
.x31{left:325.429333pt;}
.x4f{left:330.656000pt;}
.x79{left:337.033333pt;}
.x2{left:345.098667pt;}
.x32{left:353.028000pt;}
.x70{left:356.916000pt;}
.x7a{left:359.370667pt;}
.x4c{left:364.880000pt;}
.x46{left:376.856000pt;}
.x41{left:378.666667pt;}
.x3f{left:384.749333pt;}
.x4d{left:387.217333pt;}
.x47{left:399.193333pt;}
.x8e{left:404.518667pt;}
.x8c{left:406.844000pt;}
.x8d{left:408.284000pt;}
.xd{left:415.408000pt;}
.x61{left:418.186667pt;}
.xa6{left:421.284000pt;}
.x85{left:426.597333pt;}
.xb{left:427.925333pt;}
.x67{left:432.025333pt;}
.x9e{left:433.173333pt;}
.xe{left:435.941333pt;}
.xad{left:438.238667pt;}
.xab{left:439.152000pt;}
.xc{left:440.190667pt;}
.x7c{left:442.410667pt;}
.x4{left:446.390667pt;}
.x2a{left:447.954667pt;}
.x20{left:450.192000pt;}
.x52{left:461.838667pt;}
.x29{left:462.997333pt;}
.x86{left:468.934667pt;}
.x58{left:471.310667pt;}
.x5b{left:472.290667pt;}
.x9f{left:475.506667pt;}
.x21{left:477.620000pt;}
.xa0{left:479.568000pt;}
.x84{left:481.514667pt;}
.x2b{left:483.716000pt;}
.x1e{left:488.120000pt;}
.x55{left:489.878667pt;}
.x59{left:494.256000pt;}
.x5c{left:496.910667pt;}
.x2c{left:498.766667pt;}
.x66{left:505.058667pt;}
.x1f{left:514.026667pt;}
.x57{left:524.054667pt;}
.xa1{left:530.233333pt;}
.x62{left:531.901333pt;}
.xa5{left:535.354667pt;}
.x24{left:536.462667pt;}
.x7{left:538.713333pt;}
.x68{left:543.214667pt;}
.x63{left:545.028000pt;}
.x5d{left:546.710667pt;}
.x5a{left:547.694667pt;}
.x69{left:552.168000pt;}
.x25{left:558.800000pt;}
.x7b{left:559.933333pt;}
.x56{left:566.077333pt;}
.x87{left:568.838667pt;}
.x5e{left:573.626667pt;}
.x80{left:585.557333pt;}
.x82{left:590.593333pt;}
.x7d{left:594.222667pt;}
.x64{left:595.198667pt;}
.xac{left:598.582667pt;}
.x8a{left:604.949333pt;}
.x65{left:612.578667pt;}
.x22{left:621.889333pt;}
.xa2{left:638.633333pt;}
.x81{left:639.629333pt;}
.x23{left:644.226667pt;}
.x53{left:647.062667pt;}
.x83{left:652.361333pt;}
.x54{left:667.105333pt;}
.x26{left:681.368000pt;}
.xa3{left:684.828000pt;}
.xa4{left:688.888000pt;}
.x88{left:694.726667pt;}
.x8b{left:701.110667pt;}
.x5f{left:703.756000pt;}
.x27{left:707.704000pt;}
.x89{left:709.438667pt;}
.x28{left:728.621333pt;}
.x60{left:731.741333pt;}
.x7e{left:745.126667pt;}
.x7f{left:749.776000pt;}
}




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