
    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_0217b1e24d53185d3ffbe55f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.232000;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_9f3451bb71cf2fba12fd44f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.212000;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_7e7cb58b3aca11d7fa22a1fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.212000;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_df7d7374400a2941207d6d67.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.034000;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_e1447da9744915a69a124048.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.232000;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_732952fe6aa95829688993e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.212000;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_7d26214a02018a1a5d600c0c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947000;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_ac3898f96d727cfa0a6447b8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.232000;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_b21f86234336cd277a5f507b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.723145;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_d6d695759e95292416fd781b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.061000;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_684d0785ee78d44d34038520.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.238000;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_bd4b9644513caa10025d1aae.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.066000;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_feca5ee37892e0230aafa6f4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.034000;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_667067a3ce0c81597853d439.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.204000;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_8e4eb8df4b72687154dc5ab3.woff2')format("woff");}.fff{font-family:fff;line-height:1.212000;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_c1eb03c5554744d942c5b56a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.212000;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_79c3d3deeb4379ddcf143673.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_62cb018deed5cc481bb1aba3.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.225000;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_5e7f5bfe954b2723df85d080.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.723145;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_62cb018deed5cc481bb1aba3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.225000;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_4dab2aa6a6b90f4809ec06b5.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.212000;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_4b506852588acd3bd88eca58.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.034000;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_15a15d946f51a266850b4ade.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.204000;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_5e7f5bfe954b2723df85d080.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.723145;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_62cb018deed5cc481bb1aba3.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.225000;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_54b3100389f28569afe69d5b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.238000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_c45b778e505d3e2e3800eeeb.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.212000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_7d26214a02018a1a5d600c0c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_e0a0945c6c91b80cede8f4e4.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.212000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_59b74e092f9152ef91bbc02c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.232000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_5215fd7afebf42b7e2fcf142.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.034000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_4a06dd46a07d61e520e78542.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.723145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_5fcb9e22097bfebf5fba260a.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.204000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_0a2e7b77a4a4b75496593586.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.228000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_0f1327b8154ab791b238fbbd.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.212000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_898bfd22e97b6a30cd43ed1e.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.034000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_3f58341902f83240d3da684d.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.061000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_3f28c1e0a11819875d02e53d.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.204000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v2{vertical-align:21.978000px;}
.v1{vertical-align:27.112800px;}
.v5{vertical-align:41.400000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000216px;}
.ls7{letter-spacing:2.162400px;}
.ls1{letter-spacing:33.678600px;}
.ls6{letter-spacing:117.134400px;}
.ls3{letter-spacing:120.060600px;}
.ls5{letter-spacing:125.802600px;}
.ls4{letter-spacing:133.118400px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(140,70,165),0 0.015em rgb(140,70,165),0.015em 0 rgb(140,70,165),0 -0.015em  rgb(140,70,165);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(140,70,165);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-28.800000px;}
.wsfc{word-spacing:-17.880000px;}
.ws2{word-spacing:-11.214000px;}
.ws5{word-spacing:-10.200000px;}
.ws10{word-spacing:-9.339660px;}
.ws7{word-spacing:-8.010000px;}
.ws8{word-spacing:-7.632000px;}
.ws1{word-spacing:-7.140000px;}
.ws9{word-spacing:-6.360000px;}
.ws137{word-spacing:-6.000000px;}
.ws0{word-spacing:-5.100000px;}
.wsa{word-spacing:-5.088000px;}
.wsd0{word-spacing:-4.380000px;}
.ws9b{word-spacing:-3.780000px;}
.ws50{word-spacing:-3.360000px;}
.wsf0{word-spacing:-3.300000px;}
.wsf1{word-spacing:-3.240000px;}
.ws8e{word-spacing:-3.180000px;}
.ws76{word-spacing:-3.120000px;}
.ws16{word-spacing:-3.000000px;}
.ws63{word-spacing:-2.940000px;}
.ws36{word-spacing:-2.820000px;}
.ws33{word-spacing:-2.760000px;}
.ws1e{word-spacing:-2.640000px;}
.ws66{word-spacing:-2.580000px;}
.ws55{word-spacing:-2.400000px;}
.wseb{word-spacing:-2.340000px;}
.wsbf{word-spacing:-2.280000px;}
.wsd{word-spacing:-2.220000px;}
.ws2c{word-spacing:-2.160000px;}
.ws14b{word-spacing:-2.100000px;}
.ws4a{word-spacing:-2.040000px;}
.ws69{word-spacing:-1.860000px;}
.ws99{word-spacing:-1.800000px;}
.wsc{word-spacing:-1.770000px;}
.wsa9{word-spacing:-1.680000px;}
.wsb5{word-spacing:-1.620000px;}
.ws129{word-spacing:-1.440000px;}
.ws128{word-spacing:-1.320000px;}
.wsc3{word-spacing:-1.260000px;}
.ws138{word-spacing:-1.200000px;}
.wse7{word-spacing:-1.140000px;}
.ws5d{word-spacing:-0.960000px;}
.ws126{word-spacing:-0.900000px;}
.ws11e{word-spacing:-0.840000px;}
.ws68{word-spacing:-0.780000px;}
.ws8a{word-spacing:-0.720000px;}
.ws2e{word-spacing:-0.660000px;}
.ws18{word-spacing:-0.600000px;}
.ws26{word-spacing:-0.540000px;}
.ws21{word-spacing:-0.480000px;}
.wse{word-spacing:-0.390000px;}
.wsd7{word-spacing:-0.360000px;}
.ws141{word-spacing:-0.300000px;}
.ws61{word-spacing:-0.240000px;}
.ws1c{word-spacing:-0.180000px;}
.ws92{word-spacing:-0.120000px;}
.ws2a{word-spacing:-0.060000px;}
.wsf{word-spacing:-0.036000px;}
.ws6{word-spacing:-0.027945px;}
.wsb{word-spacing:0.000000px;}
.wse8{word-spacing:0.060000px;}
.ws45{word-spacing:0.120000px;}
.ws5c{word-spacing:0.180000px;}
.ws46{word-spacing:0.240000px;}
.wsbe{word-spacing:0.300000px;}
.ws78{word-spacing:0.360000px;}
.wsad{word-spacing:0.540000px;}
.ws3a{word-spacing:0.600000px;}
.ws5f{word-spacing:0.660000px;}
.ws57{word-spacing:0.720000px;}
.ws37{word-spacing:0.780000px;}
.ws13a{word-spacing:0.840000px;}
.wscb{word-spacing:0.900000px;}
.ws47{word-spacing:0.960000px;}
.ws49{word-spacing:1.080000px;}
.wsc2{word-spacing:1.140000px;}
.wsb8{word-spacing:1.200000px;}
.ws127{word-spacing:1.260000px;}
.ws90{word-spacing:1.320000px;}
.wsa5{word-spacing:1.380000px;}
.ws91{word-spacing:1.500000px;}
.ws39{word-spacing:1.560000px;}
.wsbc{word-spacing:1.620000px;}
.wsc5{word-spacing:1.680000px;}
.wsd5{word-spacing:1.740000px;}
.wsc8{word-spacing:1.800000px;}
.ws4d{word-spacing:1.860000px;}
.ws7e{word-spacing:1.920000px;}
.ws64{word-spacing:1.980000px;}
.ws74{word-spacing:2.040000px;}
.ws4e{word-spacing:2.100000px;}
.ws72{word-spacing:2.160000px;}
.ws2d{word-spacing:2.220000px;}
.ws19{word-spacing:2.280000px;}
.ws96{word-spacing:2.340000px;}
.ws136{word-spacing:2.400000px;}
.ws1d{word-spacing:2.460000px;}
.ws132{word-spacing:2.580000px;}
.wsb0{word-spacing:2.640000px;}
.ws1f{word-spacing:2.700000px;}
.ws62{word-spacing:2.760000px;}
.ws2b{word-spacing:2.820000px;}
.wsdb{word-spacing:2.940000px;}
.ws23{word-spacing:3.000000px;}
.ws85{word-spacing:3.060000px;}
.ws15{word-spacing:3.120000px;}
.wsc4{word-spacing:3.180000px;}
.wsec{word-spacing:3.240000px;}
.ws3f{word-spacing:3.300000px;}
.ws22{word-spacing:3.360000px;}
.ws28{word-spacing:3.480000px;}
.ws1b{word-spacing:3.600000px;}
.ws3d{word-spacing:3.660000px;}
.ws70{word-spacing:3.720000px;}
.wsb2{word-spacing:3.780000px;}
.ws84{word-spacing:3.840000px;}
.ws12{word-spacing:3.900000px;}
.ws9d{word-spacing:3.960000px;}
.wsca{word-spacing:4.020000px;}
.ws43{word-spacing:4.140000px;}
.ws6a{word-spacing:4.260000px;}
.wsd4{word-spacing:4.320000px;}
.wsa3{word-spacing:4.380000px;}
.wsd2{word-spacing:4.440000px;}
.ws41{word-spacing:4.500000px;}
.ws133{word-spacing:4.560000px;}
.ws12e{word-spacing:4.620000px;}
.ws3b{word-spacing:4.680000px;}
.ws4f{word-spacing:4.800000px;}
.wsa4{word-spacing:4.860000px;}
.wsed{word-spacing:4.920000px;}
.ws79{word-spacing:4.980000px;}
.ws59{word-spacing:5.040000px;}
.wse5{word-spacing:5.100000px;}
.ws6d{word-spacing:5.160000px;}
.ws77{word-spacing:5.220000px;}
.ws86{word-spacing:5.280000px;}
.wsdf{word-spacing:5.340000px;}
.ws8f{word-spacing:5.400000px;}
.wse4{word-spacing:5.460000px;}
.ws93{word-spacing:5.520000px;}
.wsea{word-spacing:5.640000px;}
.ws35{word-spacing:5.700000px;}
.ws3c{word-spacing:5.760000px;}
.wscf{word-spacing:5.820000px;}
.ws65{word-spacing:5.880000px;}
.wse2{word-spacing:5.940000px;}
.ws54{word-spacing:6.000000px;}
.wse0{word-spacing:6.060000px;}
.ws4c{word-spacing:6.120000px;}
.ws52{word-spacing:6.180000px;}
.ws1a{word-spacing:6.300000px;}
.ws5a{word-spacing:6.360000px;}
.ws53{word-spacing:6.420000px;}
.ws75{word-spacing:6.480000px;}
.wscc{word-spacing:6.540000px;}
.ws81{word-spacing:6.600000px;}
.wsce{word-spacing:6.660000px;}
.ws11c{word-spacing:6.720000px;}
.ws17{word-spacing:6.780000px;}
.ws12a{word-spacing:6.900000px;}
.wsee{word-spacing:7.020000px;}
.ws58{word-spacing:7.080000px;}
.ws11f{word-spacing:7.140000px;}
.ws9e{word-spacing:7.200000px;}
.ws56{word-spacing:7.260000px;}
.wsa7{word-spacing:7.320000px;}
.wsc0{word-spacing:7.380000px;}
.wsda{word-spacing:7.500000px;}
.ws29{word-spacing:7.560000px;}
.ws5b{word-spacing:7.620000px;}
.wsb9{word-spacing:7.680000px;}
.ws7b{word-spacing:7.800000px;}
.ws27{word-spacing:7.860000px;}
.ws97{word-spacing:8.040000px;}
.ws7f{word-spacing:8.100000px;}
.ws134{word-spacing:8.160000px;}
.ws44{word-spacing:8.220000px;}
.wsde{word-spacing:8.280000px;}
.wsab{word-spacing:8.340000px;}
.wsa6{word-spacing:8.400000px;}
.ws40{word-spacing:8.520000px;}
.ws9c{word-spacing:8.580000px;}
.ws42{word-spacing:8.640000px;}
.ws118{word-spacing:8.700000px;}
.wsef{word-spacing:8.760000px;}
.wsac{word-spacing:8.820000px;}
.ws88{word-spacing:8.880000px;}
.ws6b{word-spacing:8.940000px;}
.ws9a{word-spacing:9.000000px;}
.ws119{word-spacing:9.060000px;}
.wsc7{word-spacing:9.120000px;}
.ws12b{word-spacing:9.180000px;}
.ws80{word-spacing:9.300000px;}
.ws67{word-spacing:9.360000px;}
.ws116{word-spacing:9.480000px;}
.wsb4{word-spacing:9.540000px;}
.ws7c{word-spacing:9.600000px;}
.ws131{word-spacing:9.720000px;}
.ws12c{word-spacing:9.780000px;}
.ws11a{word-spacing:9.900000px;}
.ws142{word-spacing:9.960000px;}
.ws60{word-spacing:10.020000px;}
.wsaa{word-spacing:10.080000px;}
.ws94{word-spacing:10.140000px;}
.ws12d{word-spacing:10.200000px;}
.wsb6{word-spacing:10.320000px;}
.ws83{word-spacing:10.380000px;}
.ws4b{word-spacing:10.500000px;}
.wse9{word-spacing:10.560000px;}
.wsb3{word-spacing:10.620000px;}
.ws6e{word-spacing:10.680000px;}
.ws24{word-spacing:10.740000px;}
.ws7a{word-spacing:10.800000px;}
.ws11b{word-spacing:10.980000px;}
.ws146{word-spacing:11.040000px;}
.wsdc{word-spacing:11.160000px;}
.ws140{word-spacing:11.220000px;}
.ws117{word-spacing:11.280000px;}
.ws8c{word-spacing:11.340000px;}
.wsd8{word-spacing:11.400000px;}
.ws2f{word-spacing:11.520000px;}
.ws51{word-spacing:11.640000px;}
.ws135{word-spacing:11.700000px;}
.ws130{word-spacing:11.760000px;}
.ws31{word-spacing:11.820000px;}
.ws11d{word-spacing:11.880000px;}
.wsa1{word-spacing:12.000000px;}
.ws9f{word-spacing:12.060000px;}
.ws34{word-spacing:12.120000px;}
.ws25{word-spacing:12.180000px;}
.wsb7{word-spacing:12.240000px;}
.wsbb{word-spacing:12.300000px;}
.ws13f{word-spacing:12.360000px;}
.ws95{word-spacing:12.420000px;}
.ws145{word-spacing:12.600000px;}
.ws82{word-spacing:12.660000px;}
.wsd9{word-spacing:12.780000px;}
.ws143{word-spacing:12.840000px;}
.ws14{word-spacing:12.960000px;}
.wsa0{word-spacing:13.080000px;}
.wse6{word-spacing:13.140000px;}
.ws13{word-spacing:13.200000px;}
.ws38{word-spacing:13.320000px;}
.ws14a{word-spacing:13.440000px;}
.wscd{word-spacing:13.500000px;}
.ws121{word-spacing:13.560000px;}
.ws6f{word-spacing:13.620000px;}
.wse1{word-spacing:13.680000px;}
.ws7d{word-spacing:13.740000px;}
.wsbd{word-spacing:13.800000px;}
.wsa2{word-spacing:13.980000px;}
.ws13e{word-spacing:14.100000px;}
.ws71{word-spacing:14.160000px;}
.wsd1{word-spacing:14.460000px;}
.wsc1{word-spacing:14.520000px;}
.wsc6{word-spacing:14.700000px;}
.ws13d{word-spacing:14.940000px;}
.ws148{word-spacing:15.000000px;}
.wse3{word-spacing:15.180000px;}
.wsd3{word-spacing:15.240000px;}
.ws114{word-spacing:15.540000px;}
.wsc9{word-spacing:15.600000px;}
.ws11{word-spacing:15.660000px;}
.ws144{word-spacing:15.840000px;}
.ws6c{word-spacing:16.140000px;}
.wsd6{word-spacing:16.320000px;}
.ws147{word-spacing:16.380000px;}
.wsb1{word-spacing:16.500000px;}
.ws89{word-spacing:16.800000px;}
.ws115{word-spacing:16.920000px;}
.ws124{word-spacing:17.040000px;}
.ws32{word-spacing:17.700000px;}
.ws73{word-spacing:17.940000px;}
.wsdd{word-spacing:18.000000px;}
.wsae{word-spacing:18.240000px;}
.wsaf{word-spacing:18.420000px;}
.ws48{word-spacing:18.660000px;}
.ws123{word-spacing:18.720000px;}
.ws122{word-spacing:18.780000px;}
.wsba{word-spacing:19.680000px;}
.ws98{word-spacing:19.860000px;}
.ws12f{word-spacing:20.040000px;}
.ws20{word-spacing:20.160000px;}
.ws13c{word-spacing:20.460000px;}
.ws120{word-spacing:20.520000px;}
.ws139{word-spacing:21.480000px;}
.ws8d{word-spacing:21.540000px;}
.wsa8{word-spacing:21.600000px;}
.ws149{word-spacing:21.900000px;}
.ws13b{word-spacing:21.960000px;}
.ws3e{word-spacing:22.320000px;}
.ws5e{word-spacing:24.720000px;}
.ws87{word-spacing:24.900000px;}
.ws30{word-spacing:25.260000px;}
.ws125{word-spacing:31.500000px;}
.ws104{word-spacing:33.606000px;}
.ws8b{word-spacing:35.820000px;}
.ws110{word-spacing:88.794000px;}
.ws111{word-spacing:95.364600px;}
.ws10d{word-spacing:106.200600px;}
.ws113{word-spacing:107.971800px;}
.ws109{word-spacing:108.324600px;}
.ws106{word-spacing:109.512000px;}
.ws10e{word-spacing:113.029200px;}
.ws107{word-spacing:113.191200px;}
.ws10c{word-spacing:113.317200px;}
.ws10a{word-spacing:114.559200px;}
.ws112{word-spacing:115.666800px;}
.ws10b{word-spacing:119.517600px;}
.wsf2{word-spacing:172.462200px;}
.wsfb{word-spacing:173.240400px;}
.wsf4{word-spacing:176.818200px;}
.ws108{word-spacing:177.360000px;}
.wsf3{word-spacing:182.204400px;}
.wsf5{word-spacing:190.195200px;}
.wsf6{word-spacing:194.602200px;}
.ws105{word-spacing:197.286600px;}
.wsf9{word-spacing:201.189600px;}
.wsf8{word-spacing:201.190200px;}
.ws10f{word-spacing:240.036600px;}
.wsfe{word-spacing:325.113600px;}
.wsfd{word-spacing:325.816200px;}
.wsff{word-spacing:326.283600px;}
.ws100{word-spacing:329.758200px;}
.ws102{word-spacing:334.492200px;}
.wsfa{word-spacing:380.785200px;}
.wsf7{word-spacing:381.739200px;}
.ws101{word-spacing:691.196400px;}
.ws4{word-spacing:751.786800px;}
.ws103{word-spacing:778.767000px;}
._1{margin-left:-522.135600px;}
._0{margin-left:-457.560000px;}
._2{margin-left:-15.153600px;}
._4c{margin-left:-10.368000px;}
._d{margin-left:-8.496000px;}
._13{margin-left:-6.768000px;}
._e{margin-left:-5.664000px;}
._11{margin-left:-3.686400px;}
._5{margin-left:-2.435400px;}
._4{margin-left:-1.252800px;}
._6{width:1.193400px;}
._7{width:2.737800px;}
._8{width:4.438800px;}
._9{width:5.734800px;}
._f{width:6.870000px;}
._b{width:8.056800px;}
._a{width:9.439200px;}
._c{width:11.129400px;}
._3{width:12.976200px;}
._16{width:14.502000px;}
._12{width:17.514000px;}
._14{width:18.576000px;}
._15{width:20.118000px;}
._1a{width:21.341880px;}
._10{width:22.416000px;}
._17{width:25.992000px;}
._4d{width:27.666000px;}
._18{width:30.414000px;}
._4e{width:35.418000px;}
._35{width:46.908600px;}
._34{width:48.301800px;}
._4a{width:49.435200px;}
._33{width:50.884200px;}
._37{width:53.188800px;}
._36{width:56.077800px;}
._38{width:59.047800px;}
._1e{width:78.700200px;}
._43{width:94.758600px;}
._1d{width:102.753000px;}
._41{width:107.260800px;}
._45{width:117.356400px;}
._1c{width:119.493000px;}
._3d{width:121.867800px;}
._44{width:124.650000px;}
._3b{width:125.856600px;}
._3a{width:127.627800px;}
._39{width:129.400200px;}
._3f{width:130.462800px;}
._42{width:133.297800px;}
._40{width:135.312000px;}
._3e{width:138.625800px;}
._32{width:146.724600px;}
._21{width:148.783200px;}
._3c{width:162.726600px;}
._2b{width:175.986600px;}
._25{width:190.665600px;}
._1f{width:199.239000px;}
._19{width:203.280000px;}
._29{width:213.272400px;}
._26{width:216.979800px;}
._22{width:222.399000px;}
._28{width:223.735200px;}
._20{width:228.267600px;}
._2d{width:230.667600px;}
._24{width:237.123600px;}
._2a{width:243.873600px;}
._27{width:245.349600px;}
._23{width:284.251800px;}
._1b{width:348.547800px;}
._30{width:356.865000px;}
._48{width:489.067200px;}
._31{width:523.490400px;}
._46{width:592.219200px;}
._2f{width:622.526400px;}
._2e{width:666.698400px;}
._47{width:745.819200px;}
._2c{width:762.045600px;}
._49{width:813.835200px;}
._4b{width:960.715200px;}
.fc7{color:rgb(29,27,25);}
.fc6{color:rgb(101,103,105);}
.fc4{color:rgb(103,104,105);}
.fc2{color:transparent;}
.fc1{color:rgb(140,70,165);}
.fc5{color:rgb(131,76,171);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:24.000000px;}
.fsb{font-size:27.945000px;}
.fs7{font-size:27.984000px;}
.fs0{font-size:30.000000px;}
.fsf{font-size:34.980000px;}
.fsd{font-size:36.000000px;}
.fsa{font-size:37.260000px;}
.fs6{font-size:38.478000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.fs3{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:34.726350px;}
.y42{bottom:35.478600px;}
.y2a{bottom:47.251500px;}
.y25{bottom:53.906850px;}
.y44{bottom:54.456600px;}
.y39{bottom:55.090050px;}
.y38{bottom:56.062650px;}
.y29{bottom:57.751500px;}
.y24{bottom:60.368550px;}
.y43{bottom:61.656600px;}
.y28{bottom:68.251500px;}
.y27{bottom:78.751500px;}
.y3a{bottom:84.144000px;}
.y26{bottom:89.251500px;}
.y1aa{bottom:102.869550px;}
.y137{bottom:112.583400px;}
.yf0{bottom:113.034150px;}
.y172{bottom:114.474900px;}
.ya9{bottom:115.061850px;}
.yd3{bottom:115.062000px;}
.y7b{bottom:117.089850px;}
.y111{bottom:117.090000px;}
.y1a9{bottom:120.119550px;}
.yd5{bottom:130.284150px;}
.y171{bottom:131.724900px;}
.ya8{bottom:132.311850px;}
.yd2{bottom:132.312000px;}
.y7a{bottom:134.339850px;}
.y110{bottom:134.340000px;}
.y1a8{bottom:137.369550px;}
.y3c{bottom:141.847650px;}
.y136{bottom:144.158400px;}
.yd4{bottom:147.534150px;}
.y170{bottom:148.974900px;}
.ya7{bottom:149.561850px;}
.ye3{bottom:149.562000px;}
.y79{bottom:151.589850px;}
.y10f{bottom:151.590000px;}
.y3b{bottom:154.447650px;}
.yd1{bottom:164.784150px;}
.y37{bottom:166.221300px;}
.ya6{bottom:166.811850px;}
.ye2{bottom:166.812000px;}
.y3d{bottom:167.947500px;}
.y78{bottom:168.839850px;}
.y10e{bottom:168.840000px;}
.y1a7{bottom:169.841700px;}
.y135{bottom:175.395900px;}
.y16f{bottom:181.446900px;}
.yd0{bottom:182.034150px;}
.ya5{bottom:184.061850px;}
.ye1{bottom:184.062000px;}
.y77{bottom:186.089850px;}
.y10d{bottom:186.090000px;}
.y1a6{bottom:187.091700px;}
.y16e{bottom:198.696900px;}
.ycf{bottom:199.284150px;}
.ya4{bottom:201.311850px;}
.ye0{bottom:201.312000px;}
.y76{bottom:203.339850px;}
.y10c{bottom:203.340000px;}
.y1a5{bottom:204.341700px;}
.y134{bottom:204.458400px;}
.y184{bottom:214.506150px;}
.y133{bottom:214.808400px;}
.y16d{bottom:215.946900px;}
.yce{bottom:216.534150px;}
.ya3{bottom:218.561850px;}
.ydf{bottom:218.562000px;}
.y75{bottom:220.589850px;}
.y10b{bottom:220.590000px;}
.y1a4{bottom:221.591700px;}
.y132{bottom:225.158400px;}
.y183{bottom:231.756150px;}
.y16c{bottom:233.196900px;}
.ycd{bottom:233.784150px;}
.ya2{bottom:235.811850px;}
.yde{bottom:235.812000px;}
.y74{bottom:237.839850px;}
.y10a{bottom:237.840000px;}
.y182{bottom:249.006150px;}
.y16b{bottom:250.446900px;}
.ycc{bottom:251.034150px;}
.ya1{bottom:253.061850px;}
.ydd{bottom:253.062000px;}
.y131{bottom:253.995900px;}
.y1a3{bottom:254.063700px;}
.y109{bottom:255.090000px;}
.y181{bottom:266.256150px;}
.y16a{bottom:267.696900px;}
.ycb{bottom:268.284150px;}
.y73{bottom:270.311850px;}
.ydc{bottom:270.312000px;}
.y1a2{bottom:271.313700px;}
.y108{bottom:272.340000px;}
.y130{bottom:282.321150px;}
.y180{bottom:283.506150px;}
.y169{bottom:284.946900px;}
.yca{bottom:285.534150px;}
.y72{bottom:287.561850px;}
.ydb{bottom:287.562000px;}
.y1a1{bottom:288.563700px;}
.y107{bottom:289.590000px;}
.y12f{bottom:292.671150px;}
.y17f{bottom:300.756150px;}
.y168{bottom:302.196900px;}
.ya0{bottom:302.784000px;}
.yc9{bottom:302.784150px;}
.y71{bottom:304.811850px;}
.yda{bottom:304.812000px;}
.y106{bottom:306.840000px;}
.y17e{bottom:318.006150px;}
.y12e{bottom:319.120050px;}
.y167{bottom:319.446900px;}
.y9f{bottom:320.034000px;}
.yc8{bottom:320.034150px;}
.y1a0{bottom:321.035850px;}
.y70{bottom:322.061850px;}
.yd9{bottom:322.062000px;}
.y105{bottom:324.090000px;}
.y17d{bottom:335.256150px;}
.y166{bottom:336.696900px;}
.y9e{bottom:337.284000px;}
.y19f{bottom:338.285700px;}
.y6f{bottom:339.312000px;}
.y104{bottom:341.340000px;}
.y17c{bottom:352.506150px;}
.y165{bottom:353.946900px;}
.y9d{bottom:354.534000px;}
.y6e{bottom:356.562000px;}
.y12d{bottom:358.453500px;}
.y103{bottom:358.590000px;}
.y17b{bottom:369.756150px;}
.y19e{bottom:370.757850px;}
.y164{bottom:371.196900px;}
.y9c{bottom:371.784000px;}
.y6d{bottom:373.812000px;}
.y12c{bottom:375.703500px;}
.y102{bottom:375.840000px;}
.y17a{bottom:387.006150px;}
.y19d{bottom:388.007850px;}
.y163{bottom:388.446900px;}
.y9b{bottom:389.034000px;}
.y23{bottom:390.407700px;}
.y6c{bottom:391.062000px;}
.y101{bottom:393.090000px;}
.y179{bottom:404.256150px;}
.y19c{bottom:405.257850px;}
.y162{bottom:405.696900px;}
.y9a{bottom:406.284000px;}
.y12b{bottom:408.175500px;}
.y6b{bottom:408.312000px;}
.y100{bottom:410.340000px;}
.y22{bottom:420.211050px;}
.y178{bottom:421.506150px;}
.y161{bottom:422.946900px;}
.y99{bottom:423.534000px;}
.y12a{bottom:425.425500px;}
.y6a{bottom:425.562000px;}
.y143{bottom:427.590000px;}
.y36{bottom:433.302300px;}
.y19b{bottom:437.729850px;}
.y21{bottom:438.211050px;}
.y177{bottom:438.756150px;}
.y160{bottom:440.196900px;}
.y98{bottom:440.784000px;}
.y35{bottom:442.302300px;}
.y129{bottom:442.675500px;}
.y69{bottom:442.812000px;}
.y142{bottom:444.840000px;}
.y34{bottom:451.302300px;}
.y19a{bottom:454.979850px;}
.y176{bottom:456.006150px;}
.y20{bottom:456.211050px;}
.y15f{bottom:457.446900px;}
.y97{bottom:458.034000px;}
.y128{bottom:459.925500px;}
.y68{bottom:460.062000px;}
.y141{bottom:462.090000px;}
.y199{bottom:472.229850px;}
.y175{bottom:473.256150px;}
.y1f{bottom:474.211050px;}
.y15e{bottom:474.696900px;}
.y96{bottom:475.284000px;}
.y67{bottom:477.312000px;}
.y140{bottom:479.340000px;}
.y198{bottom:489.479850px;}
.y174{bottom:490.506150px;}
.y127{bottom:490.897500px;}
.y1e{bottom:492.211050px;}
.y95{bottom:492.534000px;}
.y66{bottom:494.562000px;}
.y13f{bottom:496.590000px;}
.y15d{bottom:507.168900px;}
.y173{bottom:507.756150px;}
.y126{bottom:508.597500px;}
.y94{bottom:509.784000px;}
.y1d{bottom:510.211050px;}
.y65{bottom:511.812000px;}
.y13e{bottom:513.840000px;}
.y197{bottom:521.951850px;}
.yd8{bottom:525.006150px;}
.y125{bottom:526.297350px;}
.y93{bottom:527.034000px;}
.y1c{bottom:528.211050px;}
.y64{bottom:529.062000px;}
.y13d{bottom:531.090000px;}
.y196{bottom:539.201850px;}
.y15c{bottom:539.641050px;}
.yd7{bottom:542.256150px;}
.y124{bottom:543.997200px;}
.y92{bottom:544.284000px;}
.y1b{bottom:546.211050px;}
.y63{bottom:546.312000px;}
.y33{bottom:548.306550px;}
.y195{bottom:556.451850px;}
.y15b{bottom:556.891050px;}
.y32{bottom:559.106550px;}
.yd6{bottom:559.506150px;}
.y91{bottom:561.534000px;}
.y123{bottom:561.697200px;}
.y62{bottom:563.562000px;}
.y1a{bottom:564.211050px;}
.y31{bottom:569.906550px;}
.y194{bottom:573.701850px;}
.y15a{bottom:574.141050px;}
.yc7{bottom:576.756150px;}
.y90{bottom:578.784000px;}
.y122{bottom:579.397050px;}
.y61{bottom:580.812000px;}
.y19{bottom:582.211050px;}
.y159{bottom:591.391050px;}
.y30{bottom:591.506550px;}
.yc6{bottom:594.006150px;}
.y8f{bottom:596.034000px;}
.y121{bottom:597.096900px;}
.y60{bottom:598.062000px;}
.y18{bottom:600.211050px;}
.y2f{bottom:602.306550px;}
.y193{bottom:606.174000px;}
.y158{bottom:608.641050px;}
.yc5{bottom:611.256150px;}
.y2e{bottom:613.106550px;}
.y8e{bottom:613.284000px;}
.y5f{bottom:615.312000px;}
.y17{bottom:618.211050px;}
.y192{bottom:623.424000px;}
.y157{bottom:625.891050px;}
.yc4{bottom:628.506150px;}
.y8d{bottom:630.534000px;}
.y120{bottom:632.268750px;}
.y5e{bottom:632.562000px;}
.y2d{bottom:634.706550px;}
.y16{bottom:636.211050px;}
.y191{bottom:640.674000px;}
.y156{bottom:643.141050px;}
.yc3{bottom:645.756150px;}
.y8c{bottom:647.784000px;}
.y11f{bottom:649.518750px;}
.y5d{bottom:649.812000px;}
.y2c{bottom:652.706550px;}
.y15{bottom:654.211050px;}
.y190{bottom:657.924000px;}
.y155{bottom:660.391050px;}
.yc2{bottom:663.006150px;}
.y8b{bottom:665.034000px;}
.yff{bottom:667.062000px;}
.y14{bottom:672.211050px;}
.y2b{bottom:673.706550px;}
.y154{bottom:677.641050px;}
.yc1{bottom:680.256150px;}
.y11e{bottom:681.990900px;}
.y5c{bottom:682.284000px;}
.yfe{bottom:684.312000px;}
.y13{bottom:690.211050px;}
.y18f{bottom:690.396000px;}
.y153{bottom:694.891050px;}
.yc0{bottom:697.506150px;}
.y11d{bottom:699.240900px;}
.y5b{bottom:699.534000px;}
.yfd{bottom:701.562000px;}
.y18e{bottom:707.646000px;}
.y12{bottom:708.211050px;}
.y152{bottom:712.141050px;}
.ybf{bottom:714.756150px;}
.y11c{bottom:716.490900px;}
.y5a{bottom:716.784000px;}
.yef{bottom:716.784150px;}
.yfc{bottom:718.812000px;}
.y11{bottom:726.211050px;}
.y151{bottom:729.391050px;}
.ybe{bottom:732.006150px;}
.y11b{bottom:733.740900px;}
.y59{bottom:734.034000px;}
.yee{bottom:734.034150px;}
.yfb{bottom:736.062000px;}
.y18d{bottom:740.118000px;}
.y10{bottom:744.211050px;}
.y150{bottom:746.641050px;}
.ybd{bottom:749.256150px;}
.y58{bottom:751.284000px;}
.yed{bottom:751.284150px;}
.yfa{bottom:753.312000px;}
.y18c{bottom:757.368000px;}
.yf{bottom:762.211050px;}
.y14f{bottom:763.891050px;}
.y11a{bottom:764.712900px;}
.ybc{bottom:766.506150px;}
.y57{bottom:768.534000px;}
.yec{bottom:768.534150px;}
.yf9{bottom:770.562000px;}
.y18b{bottom:774.618000px;}
.y119{bottom:782.412750px;}
.ybb{bottom:783.756150px;}
.y56{bottom:785.784000px;}
.yeb{bottom:785.784150px;}
.yf8{bottom:787.812000px;}
.ye{bottom:789.935100px;}
.y14e{bottom:796.363050px;}
.y118{bottom:800.112600px;}
.yba{bottom:801.006150px;}
.y55{bottom:803.034000px;}
.yea{bottom:803.034150px;}
.yf7{bottom:805.062000px;}
.y18a{bottom:807.090000px;}
.y14d{bottom:813.613050px;}
.y117{bottom:817.812600px;}
.y8a{bottom:818.256000px;}
.yb9{bottom:818.256150px;}
.y54{bottom:820.284000px;}
.ye9{bottom:820.284150px;}
.yf6{bottom:822.312000px;}
.y189{bottom:824.340000px;}
.y14c{bottom:830.863050px;}
.y89{bottom:835.506000px;}
.yb8{bottom:835.506150px;}
.y116{bottom:835.512450px;}
.yd{bottom:835.701000px;}
.y53{bottom:837.534000px;}
.ye8{bottom:837.534150px;}
.yf5{bottom:839.562000px;}
.y188{bottom:841.590000px;}
.y14b{bottom:848.113050px;}
.yc{bottom:850.100850px;}
.y88{bottom:852.756000px;}
.yb7{bottom:852.756150px;}
.y115{bottom:853.212300px;}
.y52{bottom:854.784000px;}
.ye7{bottom:854.784150px;}
.yf4{bottom:856.812000px;}
.y187{bottom:858.840000px;}
.y87{bottom:870.006000px;}
.yb6{bottom:870.006150px;}
.y114{bottom:870.912300px;}
.y51{bottom:872.034000px;}
.ye6{bottom:872.034150px;}
.yf3{bottom:874.062000px;}
.y14a{bottom:879.085200px;}
.yb{bottom:882.573300px;}
.y86{bottom:887.256000px;}
.yb5{bottom:887.256150px;}
.y113{bottom:888.612150px;}
.y50{bottom:889.284000px;}
.ye5{bottom:889.284150px;}
.yf2{bottom:891.312000px;}
.y149{bottom:899.935050px;}
.y85{bottom:904.506000px;}
.yb4{bottom:904.506150px;}
.y4f{bottom:906.534000px;}
.ye4{bottom:906.534150px;}
.ya{bottom:907.714500px;}
.y13c{bottom:908.562000px;}
.y148{bottom:920.784900px;}
.y84{bottom:921.756000px;}
.yb3{bottom:921.756150px;}
.y4e{bottom:923.784000px;}
.yf1{bottom:923.784150px;}
.y13b{bottom:925.812000px;}
.y8{bottom:937.512900px;}
.y83{bottom:939.006000px;}
.yb2{bottom:939.006150px;}
.y4d{bottom:941.034000px;}
.y112{bottom:941.034150px;}
.y147{bottom:941.634750px;}
.y13a{bottom:943.062000px;}
.y82{bottom:956.256000px;}
.yb1{bottom:956.256150px;}
.y4c{bottom:958.284000px;}
.y186{bottom:958.284150px;}
.y139{bottom:960.312000px;}
.y146{bottom:962.484600px;}
.y81{bottom:973.506000px;}
.yb0{bottom:973.506150px;}
.y4b{bottom:975.534000px;}
.y185{bottom:975.534150px;}
.y7{bottom:977.112900px;}
.y145{bottom:983.334450px;}
.y80{bottom:990.756000px;}
.yaf{bottom:990.756150px;}
.y4a{bottom:992.784000px;}
.y138{bottom:992.784150px;}
.y144{bottom:1004.184300px;}
.y7f{bottom:1008.006000px;}
.yae{bottom:1008.006150px;}
.y49{bottom:1010.034000px;}
.y9{bottom:1018.526250px;}
.y7e{bottom:1025.256000px;}
.yad{bottom:1025.256150px;}
.y48{bottom:1027.284000px;}
.y7d{bottom:1042.506000px;}
.yac{bottom:1042.506150px;}
.y47{bottom:1044.534000px;}
.y7c{bottom:1059.756000px;}
.yab{bottom:1059.756150px;}
.y46{bottom:1077.006000px;}
.yaa{bottom:1077.006150px;}
.y4{bottom:1092.321900px;}
.y3{bottom:1112.589750px;}
.y2{bottom:1121.589750px;}
.y1{bottom:1130.589750px;}
.y41{bottom:1133.964300px;}
.y40{bottom:1149.212550px;}
.y6{bottom:1160.618250px;}
.y3f{bottom:1171.333500px;}
.y3e{bottom:1185.079050px;}
.y5{bottom:1199.309700px;}
.hf{height:19.757115px;}
.h9{height:22.464000px;}
.h16{height:22.800000px;}
.h1c{height:22.848000px;}
.h14{height:22.920000px;}
.he{height:26.835205px;}
.h15{height:28.020000px;}
.h3{height:28.260000px;}
.h1f{height:28.368000px;}
.h10{height:28.500000px;}
.h2{height:28.650000px;}
.h13{height:33.912000px;}
.h12{height:34.200000px;}
.h1a{height:34.380000px;}
.h17{height:34.570312px;}
.hb{height:36.672000px;}
.h7{height:37.824000px;}
.h1b{height:39.228000px;}
.h19{height:39.564000px;}
.h4{height:40.110000px;}
.h18{height:40.656000px;}
.ha{height:44.832000px;}
.h24{height:45.216000px;}
.h23{height:45.840000px;}
.hd{height:50.868000px;}
.h11{height:51.855469px;}
.h21{height:54.612000px;}
.h20{height:56.040000px;}
.h1e{height:56.520000px;}
.h1d{height:57.000000px;}
.hc{height:57.300000px;}
.h8{height:63.888000px;}
.h22{height:75.312000px;}
.h5{height:91.440000px;}
.h6{height:95.068359px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:54.000000px;}
.x21{left:58.125000px;}
.xf{left:65.684550px;}
.x13{left:67.591350px;}
.x12{left:79.178400px;}
.xe{left:86.302950px;}
.x11{left:93.358950px;}
.xc{left:97.167750px;}
.xb{left:100.085700px;}
.x14{left:103.644900px;}
.x1c{left:109.275600px;}
.x10{left:131.392500px;}
.x1a{left:179.131800px;}
.xd{left:184.329750px;}
.x19{left:199.895400px;}
.x1{left:233.858250px;}
.x6{left:243.212550px;}
.x5{left:244.358250px;}
.x3{left:273.472500px;}
.x17{left:281.587050px;}
.x4{left:289.742700px;}
.x15{left:297.956700px;}
.xa{left:320.542650px;}
.x16{left:338.854200px;}
.x18{left:414.509550px;}
.x1e{left:455.456700px;}
.x1f{left:510.732300px;}
.x9{left:629.644950px;}
.x2{left:714.769050px;}
.x7{left:782.470950px;}
.x8{left:797.384250px;}
.x20{left:807.548700px;}
.x1b{left:808.583700px;}
@media print{
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v2{vertical-align:19.536000pt;}
.v1{vertical-align:24.100267pt;}
.v5{vertical-align:36.800000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000192pt;}
.ls7{letter-spacing:1.922133pt;}
.ls1{letter-spacing:29.936533pt;}
.ls6{letter-spacing:104.119467pt;}
.ls3{letter-spacing:106.720533pt;}
.ls5{letter-spacing:111.824533pt;}
.ls4{letter-spacing:118.327467pt;}
.ws3{word-spacing:-25.600000pt;}
.wsfc{word-spacing:-15.893333pt;}
.ws2{word-spacing:-9.968000pt;}
.ws5{word-spacing:-9.066667pt;}
.ws10{word-spacing:-8.301920pt;}
.ws7{word-spacing:-7.120000pt;}
.ws8{word-spacing:-6.784000pt;}
.ws1{word-spacing:-6.346667pt;}
.ws9{word-spacing:-5.653333pt;}
.ws137{word-spacing:-5.333333pt;}
.ws0{word-spacing:-4.533333pt;}
.wsa{word-spacing:-4.522667pt;}
.wsd0{word-spacing:-3.893333pt;}
.ws9b{word-spacing:-3.360000pt;}
.ws50{word-spacing:-2.986667pt;}
.wsf0{word-spacing:-2.933333pt;}
.wsf1{word-spacing:-2.880000pt;}
.ws8e{word-spacing:-2.826667pt;}
.ws76{word-spacing:-2.773333pt;}
.ws16{word-spacing:-2.666667pt;}
.ws63{word-spacing:-2.613333pt;}
.ws36{word-spacing:-2.506667pt;}
.ws33{word-spacing:-2.453333pt;}
.ws1e{word-spacing:-2.346667pt;}
.ws66{word-spacing:-2.293333pt;}
.ws55{word-spacing:-2.133333pt;}
.wseb{word-spacing:-2.080000pt;}
.wsbf{word-spacing:-2.026667pt;}
.wsd{word-spacing:-1.973333pt;}
.ws2c{word-spacing:-1.920000pt;}
.ws14b{word-spacing:-1.866667pt;}
.ws4a{word-spacing:-1.813333pt;}
.ws69{word-spacing:-1.653333pt;}
.ws99{word-spacing:-1.600000pt;}
.wsc{word-spacing:-1.573333pt;}
.wsa9{word-spacing:-1.493333pt;}
.wsb5{word-spacing:-1.440000pt;}
.ws129{word-spacing:-1.280000pt;}
.ws128{word-spacing:-1.173333pt;}
.wsc3{word-spacing:-1.120000pt;}
.ws138{word-spacing:-1.066667pt;}
.wse7{word-spacing:-1.013333pt;}
.ws5d{word-spacing:-0.853333pt;}
.ws126{word-spacing:-0.800000pt;}
.ws11e{word-spacing:-0.746667pt;}
.ws68{word-spacing:-0.693333pt;}
.ws8a{word-spacing:-0.640000pt;}
.ws2e{word-spacing:-0.586667pt;}
.ws18{word-spacing:-0.533333pt;}
.ws26{word-spacing:-0.480000pt;}
.ws21{word-spacing:-0.426667pt;}
.wse{word-spacing:-0.346667pt;}
.wsd7{word-spacing:-0.320000pt;}
.ws141{word-spacing:-0.266667pt;}
.ws61{word-spacing:-0.213333pt;}
.ws1c{word-spacing:-0.160000pt;}
.ws92{word-spacing:-0.106667pt;}
.ws2a{word-spacing:-0.053333pt;}
.wsf{word-spacing:-0.032000pt;}
.ws6{word-spacing:-0.024840pt;}
.wsb{word-spacing:0.000000pt;}
.wse8{word-spacing:0.053333pt;}
.ws45{word-spacing:0.106667pt;}
.ws5c{word-spacing:0.160000pt;}
.ws46{word-spacing:0.213333pt;}
.wsbe{word-spacing:0.266667pt;}
.ws78{word-spacing:0.320000pt;}
.wsad{word-spacing:0.480000pt;}
.ws3a{word-spacing:0.533333pt;}
.ws5f{word-spacing:0.586667pt;}
.ws57{word-spacing:0.640000pt;}
.ws37{word-spacing:0.693333pt;}
.ws13a{word-spacing:0.746667pt;}
.wscb{word-spacing:0.800000pt;}
.ws47{word-spacing:0.853333pt;}
.ws49{word-spacing:0.960000pt;}
.wsc2{word-spacing:1.013333pt;}
.wsb8{word-spacing:1.066667pt;}
.ws127{word-spacing:1.120000pt;}
.ws90{word-spacing:1.173333pt;}
.wsa5{word-spacing:1.226667pt;}
.ws91{word-spacing:1.333333pt;}
.ws39{word-spacing:1.386667pt;}
.wsbc{word-spacing:1.440000pt;}
.wsc5{word-spacing:1.493333pt;}
.wsd5{word-spacing:1.546667pt;}
.wsc8{word-spacing:1.600000pt;}
.ws4d{word-spacing:1.653333pt;}
.ws7e{word-spacing:1.706667pt;}
.ws64{word-spacing:1.760000pt;}
.ws74{word-spacing:1.813333pt;}
.ws4e{word-spacing:1.866667pt;}
.ws72{word-spacing:1.920000pt;}
.ws2d{word-spacing:1.973333pt;}
.ws19{word-spacing:2.026667pt;}
.ws96{word-spacing:2.080000pt;}
.ws136{word-spacing:2.133333pt;}
.ws1d{word-spacing:2.186667pt;}
.ws132{word-spacing:2.293333pt;}
.wsb0{word-spacing:2.346667pt;}
.ws1f{word-spacing:2.400000pt;}
.ws62{word-spacing:2.453333pt;}
.ws2b{word-spacing:2.506667pt;}
.wsdb{word-spacing:2.613333pt;}
.ws23{word-spacing:2.666667pt;}
.ws85{word-spacing:2.720000pt;}
.ws15{word-spacing:2.773333pt;}
.wsc4{word-spacing:2.826667pt;}
.wsec{word-spacing:2.880000pt;}
.ws3f{word-spacing:2.933333pt;}
.ws22{word-spacing:2.986667pt;}
.ws28{word-spacing:3.093333pt;}
.ws1b{word-spacing:3.200000pt;}
.ws3d{word-spacing:3.253333pt;}
.ws70{word-spacing:3.306667pt;}
.wsb2{word-spacing:3.360000pt;}
.ws84{word-spacing:3.413333pt;}
.ws12{word-spacing:3.466667pt;}
.ws9d{word-spacing:3.520000pt;}
.wsca{word-spacing:3.573333pt;}
.ws43{word-spacing:3.680000pt;}
.ws6a{word-spacing:3.786667pt;}
.wsd4{word-spacing:3.840000pt;}
.wsa3{word-spacing:3.893333pt;}
.wsd2{word-spacing:3.946667pt;}
.ws41{word-spacing:4.000000pt;}
.ws133{word-spacing:4.053333pt;}
.ws12e{word-spacing:4.106667pt;}
.ws3b{word-spacing:4.160000pt;}
.ws4f{word-spacing:4.266667pt;}
.wsa4{word-spacing:4.320000pt;}
.wsed{word-spacing:4.373333pt;}
.ws79{word-spacing:4.426667pt;}
.ws59{word-spacing:4.480000pt;}
.wse5{word-spacing:4.533333pt;}
.ws6d{word-spacing:4.586667pt;}
.ws77{word-spacing:4.640000pt;}
.ws86{word-spacing:4.693333pt;}
.wsdf{word-spacing:4.746667pt;}
.ws8f{word-spacing:4.800000pt;}
.wse4{word-spacing:4.853333pt;}
.ws93{word-spacing:4.906667pt;}
.wsea{word-spacing:5.013333pt;}
.ws35{word-spacing:5.066667pt;}
.ws3c{word-spacing:5.120000pt;}
.wscf{word-spacing:5.173333pt;}
.ws65{word-spacing:5.226667pt;}
.wse2{word-spacing:5.280000pt;}
.ws54{word-spacing:5.333333pt;}
.wse0{word-spacing:5.386667pt;}
.ws4c{word-spacing:5.440000pt;}
.ws52{word-spacing:5.493333pt;}
.ws1a{word-spacing:5.600000pt;}
.ws5a{word-spacing:5.653333pt;}
.ws53{word-spacing:5.706667pt;}
.ws75{word-spacing:5.760000pt;}
.wscc{word-spacing:5.813333pt;}
.ws81{word-spacing:5.866667pt;}
.wsce{word-spacing:5.920000pt;}
.ws11c{word-spacing:5.973333pt;}
.ws17{word-spacing:6.026667pt;}
.ws12a{word-spacing:6.133333pt;}
.wsee{word-spacing:6.240000pt;}
.ws58{word-spacing:6.293333pt;}
.ws11f{word-spacing:6.346667pt;}
.ws9e{word-spacing:6.400000pt;}
.ws56{word-spacing:6.453333pt;}
.wsa7{word-spacing:6.506667pt;}
.wsc0{word-spacing:6.560000pt;}
.wsda{word-spacing:6.666667pt;}
.ws29{word-spacing:6.720000pt;}
.ws5b{word-spacing:6.773333pt;}
.wsb9{word-spacing:6.826667pt;}
.ws7b{word-spacing:6.933333pt;}
.ws27{word-spacing:6.986667pt;}
.ws97{word-spacing:7.146667pt;}
.ws7f{word-spacing:7.200000pt;}
.ws134{word-spacing:7.253333pt;}
.ws44{word-spacing:7.306667pt;}
.wsde{word-spacing:7.360000pt;}
.wsab{word-spacing:7.413333pt;}
.wsa6{word-spacing:7.466667pt;}
.ws40{word-spacing:7.573333pt;}
.ws9c{word-spacing:7.626667pt;}
.ws42{word-spacing:7.680000pt;}
.ws118{word-spacing:7.733333pt;}
.wsef{word-spacing:7.786667pt;}
.wsac{word-spacing:7.840000pt;}
.ws88{word-spacing:7.893333pt;}
.ws6b{word-spacing:7.946667pt;}
.ws9a{word-spacing:8.000000pt;}
.ws119{word-spacing:8.053333pt;}
.wsc7{word-spacing:8.106667pt;}
.ws12b{word-spacing:8.160000pt;}
.ws80{word-spacing:8.266667pt;}
.ws67{word-spacing:8.320000pt;}
.ws116{word-spacing:8.426667pt;}
.wsb4{word-spacing:8.480000pt;}
.ws7c{word-spacing:8.533333pt;}
.ws131{word-spacing:8.640000pt;}
.ws12c{word-spacing:8.693333pt;}
.ws11a{word-spacing:8.800000pt;}
.ws142{word-spacing:8.853333pt;}
.ws60{word-spacing:8.906667pt;}
.wsaa{word-spacing:8.960000pt;}
.ws94{word-spacing:9.013333pt;}
.ws12d{word-spacing:9.066667pt;}
.wsb6{word-spacing:9.173333pt;}
.ws83{word-spacing:9.226667pt;}
.ws4b{word-spacing:9.333333pt;}
.wse9{word-spacing:9.386667pt;}
.wsb3{word-spacing:9.440000pt;}
.ws6e{word-spacing:9.493333pt;}
.ws24{word-spacing:9.546667pt;}
.ws7a{word-spacing:9.600000pt;}
.ws11b{word-spacing:9.760000pt;}
.ws146{word-spacing:9.813333pt;}
.wsdc{word-spacing:9.920000pt;}
.ws140{word-spacing:9.973333pt;}
.ws117{word-spacing:10.026667pt;}
.ws8c{word-spacing:10.080000pt;}
.wsd8{word-spacing:10.133333pt;}
.ws2f{word-spacing:10.240000pt;}
.ws51{word-spacing:10.346667pt;}
.ws135{word-spacing:10.400000pt;}
.ws130{word-spacing:10.453333pt;}
.ws31{word-spacing:10.506667pt;}
.ws11d{word-spacing:10.560000pt;}
.wsa1{word-spacing:10.666667pt;}
.ws9f{word-spacing:10.720000pt;}
.ws34{word-spacing:10.773333pt;}
.ws25{word-spacing:10.826667pt;}
.wsb7{word-spacing:10.880000pt;}
.wsbb{word-spacing:10.933333pt;}
.ws13f{word-spacing:10.986667pt;}
.ws95{word-spacing:11.040000pt;}
.ws145{word-spacing:11.200000pt;}
.ws82{word-spacing:11.253333pt;}
.wsd9{word-spacing:11.360000pt;}
.ws143{word-spacing:11.413333pt;}
.ws14{word-spacing:11.520000pt;}
.wsa0{word-spacing:11.626667pt;}
.wse6{word-spacing:11.680000pt;}
.ws13{word-spacing:11.733333pt;}
.ws38{word-spacing:11.840000pt;}
.ws14a{word-spacing:11.946667pt;}
.wscd{word-spacing:12.000000pt;}
.ws121{word-spacing:12.053333pt;}
.ws6f{word-spacing:12.106667pt;}
.wse1{word-spacing:12.160000pt;}
.ws7d{word-spacing:12.213333pt;}
.wsbd{word-spacing:12.266667pt;}
.wsa2{word-spacing:12.426667pt;}
.ws13e{word-spacing:12.533333pt;}
.ws71{word-spacing:12.586667pt;}
.wsd1{word-spacing:12.853333pt;}
.wsc1{word-spacing:12.906667pt;}
.wsc6{word-spacing:13.066667pt;}
.ws13d{word-spacing:13.280000pt;}
.ws148{word-spacing:13.333333pt;}
.wse3{word-spacing:13.493333pt;}
.wsd3{word-spacing:13.546667pt;}
.ws114{word-spacing:13.813333pt;}
.wsc9{word-spacing:13.866667pt;}
.ws11{word-spacing:13.920000pt;}
.ws144{word-spacing:14.080000pt;}
.ws6c{word-spacing:14.346667pt;}
.wsd6{word-spacing:14.506667pt;}
.ws147{word-spacing:14.560000pt;}
.wsb1{word-spacing:14.666667pt;}
.ws89{word-spacing:14.933333pt;}
.ws115{word-spacing:15.040000pt;}
.ws124{word-spacing:15.146667pt;}
.ws32{word-spacing:15.733333pt;}
.ws73{word-spacing:15.946667pt;}
.wsdd{word-spacing:16.000000pt;}
.wsae{word-spacing:16.213333pt;}
.wsaf{word-spacing:16.373333pt;}
.ws48{word-spacing:16.586667pt;}
.ws123{word-spacing:16.640000pt;}
.ws122{word-spacing:16.693333pt;}
.wsba{word-spacing:17.493333pt;}
.ws98{word-spacing:17.653333pt;}
.ws12f{word-spacing:17.813333pt;}
.ws20{word-spacing:17.920000pt;}
.ws13c{word-spacing:18.186667pt;}
.ws120{word-spacing:18.240000pt;}
.ws139{word-spacing:19.093333pt;}
.ws8d{word-spacing:19.146667pt;}
.wsa8{word-spacing:19.200000pt;}
.ws149{word-spacing:19.466667pt;}
.ws13b{word-spacing:19.520000pt;}
.ws3e{word-spacing:19.840000pt;}
.ws5e{word-spacing:21.973333pt;}
.ws87{word-spacing:22.133333pt;}
.ws30{word-spacing:22.453333pt;}
.ws125{word-spacing:28.000000pt;}
.ws104{word-spacing:29.872000pt;}
.ws8b{word-spacing:31.840000pt;}
.ws110{word-spacing:78.928000pt;}
.ws111{word-spacing:84.768533pt;}
.ws10d{word-spacing:94.400533pt;}
.ws113{word-spacing:95.974933pt;}
.ws109{word-spacing:96.288533pt;}
.ws106{word-spacing:97.344000pt;}
.ws10e{word-spacing:100.470400pt;}
.ws107{word-spacing:100.614400pt;}
.ws10c{word-spacing:100.726400pt;}
.ws10a{word-spacing:101.830400pt;}
.ws112{word-spacing:102.814933pt;}
.ws10b{word-spacing:106.237867pt;}
.wsf2{word-spacing:153.299733pt;}
.wsfb{word-spacing:153.991467pt;}
.wsf4{word-spacing:157.171733pt;}
.ws108{word-spacing:157.653333pt;}
.wsf3{word-spacing:161.959467pt;}
.wsf5{word-spacing:169.062400pt;}
.wsf6{word-spacing:172.979733pt;}
.ws105{word-spacing:175.365867pt;}
.wsf9{word-spacing:178.835200pt;}
.wsf8{word-spacing:178.835733pt;}
.ws10f{word-spacing:213.365867pt;}
.wsfe{word-spacing:288.989867pt;}
.wsfd{word-spacing:289.614400pt;}
.wsff{word-spacing:290.029867pt;}
.ws100{word-spacing:293.118400pt;}
.ws102{word-spacing:297.326400pt;}
.wsfa{word-spacing:338.475733pt;}
.wsf7{word-spacing:339.323733pt;}
.ws101{word-spacing:614.396800pt;}
.ws4{word-spacing:668.254933pt;}
.ws103{word-spacing:692.237333pt;}
._1{margin-left:-464.120533pt;}
._0{margin-left:-406.720000pt;}
._2{margin-left:-13.469867pt;}
._4c{margin-left:-9.216000pt;}
._d{margin-left:-7.552000pt;}
._13{margin-left:-6.016000pt;}
._e{margin-left:-5.034667pt;}
._11{margin-left:-3.276800pt;}
._5{margin-left:-2.164800pt;}
._4{margin-left:-1.113600pt;}
._6{width:1.060800pt;}
._7{width:2.433600pt;}
._8{width:3.945600pt;}
._9{width:5.097600pt;}
._f{width:6.106667pt;}
._b{width:7.161600pt;}
._a{width:8.390400pt;}
._c{width:9.892800pt;}
._3{width:11.534400pt;}
._16{width:12.890667pt;}
._12{width:15.568000pt;}
._14{width:16.512000pt;}
._15{width:17.882667pt;}
._1a{width:18.970560pt;}
._10{width:19.925333pt;}
._17{width:23.104000pt;}
._4d{width:24.592000pt;}
._18{width:27.034667pt;}
._4e{width:31.482667pt;}
._35{width:41.696533pt;}
._34{width:42.934933pt;}
._4a{width:43.942400pt;}
._33{width:45.230400pt;}
._37{width:47.278933pt;}
._36{width:49.846933pt;}
._38{width:52.486933pt;}
._1e{width:69.955733pt;}
._43{width:84.229867pt;}
._1d{width:91.336000pt;}
._41{width:95.342933pt;}
._45{width:104.316800pt;}
._1c{width:106.216000pt;}
._3d{width:108.326933pt;}
._44{width:110.800000pt;}
._3b{width:111.872533pt;}
._3a{width:113.446933pt;}
._39{width:115.022400pt;}
._3f{width:115.966933pt;}
._42{width:118.486933pt;}
._40{width:120.277333pt;}
._3e{width:123.222933pt;}
._32{width:130.421867pt;}
._21{width:132.251733pt;}
._3c{width:144.645867pt;}
._2b{width:156.432533pt;}
._25{width:169.480533pt;}
._1f{width:177.101333pt;}
._19{width:180.693333pt;}
._29{width:189.575467pt;}
._26{width:192.870933pt;}
._22{width:197.688000pt;}
._28{width:198.875733pt;}
._20{width:202.904533pt;}
._2d{width:205.037867pt;}
._24{width:210.776533pt;}
._2a{width:216.776533pt;}
._27{width:218.088533pt;}
._23{width:252.668267pt;}
._1b{width:309.820267pt;}
._30{width:317.213333pt;}
._48{width:434.726400pt;}
._31{width:465.324800pt;}
._46{width:526.417067pt;}
._2f{width:553.356800pt;}
._2e{width:592.620800pt;}
._47{width:662.950400pt;}
._2c{width:677.373867pt;}
._49{width:723.409067pt;}
._4b{width:853.969067pt;}
.fse{font-size:21.333333pt;}
.fsb{font-size:24.840000pt;}
.fs7{font-size:24.874667pt;}
.fs0{font-size:26.666667pt;}
.fsf{font-size:31.093333pt;}
.fsd{font-size:32.000000pt;}
.fsa{font-size:33.120000pt;}
.fs6{font-size:34.202667pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.fs3{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:30.867867pt;}
.y42{bottom:31.536533pt;}
.y2a{bottom:42.001333pt;}
.y25{bottom:47.917200pt;}
.y44{bottom:48.405867pt;}
.y39{bottom:48.968933pt;}
.y38{bottom:49.833467pt;}
.y29{bottom:51.334667pt;}
.y24{bottom:53.660933pt;}
.y43{bottom:54.805867pt;}
.y28{bottom:60.668000pt;}
.y27{bottom:70.001333pt;}
.y3a{bottom:74.794667pt;}
.y26{bottom:79.334667pt;}
.y1aa{bottom:91.439600pt;}
.y137{bottom:100.074133pt;}
.yf0{bottom:100.474800pt;}
.y172{bottom:101.755467pt;}
.ya9{bottom:102.277200pt;}
.yd3{bottom:102.277333pt;}
.y7b{bottom:104.079867pt;}
.y111{bottom:104.080000pt;}
.y1a9{bottom:106.772933pt;}
.yd5{bottom:115.808133pt;}
.y171{bottom:117.088800pt;}
.ya8{bottom:117.610533pt;}
.yd2{bottom:117.610667pt;}
.y7a{bottom:119.413200pt;}
.y110{bottom:119.413333pt;}
.y1a8{bottom:122.106267pt;}
.y3c{bottom:126.086800pt;}
.y136{bottom:128.140800pt;}
.yd4{bottom:131.141467pt;}
.y170{bottom:132.422133pt;}
.ya7{bottom:132.943867pt;}
.ye3{bottom:132.944000pt;}
.y79{bottom:134.746533pt;}
.y10f{bottom:134.746667pt;}
.y3b{bottom:137.286800pt;}
.yd1{bottom:146.474800pt;}
.y37{bottom:147.752267pt;}
.ya6{bottom:148.277200pt;}
.ye2{bottom:148.277333pt;}
.y3d{bottom:149.286667pt;}
.y78{bottom:150.079867pt;}
.y10e{bottom:150.080000pt;}
.y1a7{bottom:150.970400pt;}
.y135{bottom:155.907467pt;}
.y16f{bottom:161.286133pt;}
.yd0{bottom:161.808133pt;}
.ya5{bottom:163.610533pt;}
.ye1{bottom:163.610667pt;}
.y77{bottom:165.413200pt;}
.y10d{bottom:165.413333pt;}
.y1a6{bottom:166.303733pt;}
.y16e{bottom:176.619467pt;}
.ycf{bottom:177.141467pt;}
.ya4{bottom:178.943867pt;}
.ye0{bottom:178.944000pt;}
.y76{bottom:180.746533pt;}
.y10c{bottom:180.746667pt;}
.y1a5{bottom:181.637067pt;}
.y134{bottom:181.740800pt;}
.y184{bottom:190.672133pt;}
.y133{bottom:190.940800pt;}
.y16d{bottom:191.952800pt;}
.yce{bottom:192.474800pt;}
.ya3{bottom:194.277200pt;}
.ydf{bottom:194.277333pt;}
.y75{bottom:196.079867pt;}
.y10b{bottom:196.080000pt;}
.y1a4{bottom:196.970400pt;}
.y132{bottom:200.140800pt;}
.y183{bottom:206.005467pt;}
.y16c{bottom:207.286133pt;}
.ycd{bottom:207.808133pt;}
.ya2{bottom:209.610533pt;}
.yde{bottom:209.610667pt;}
.y74{bottom:211.413200pt;}
.y10a{bottom:211.413333pt;}
.y182{bottom:221.338800pt;}
.y16b{bottom:222.619467pt;}
.ycc{bottom:223.141467pt;}
.ya1{bottom:224.943867pt;}
.ydd{bottom:224.944000pt;}
.y131{bottom:225.774133pt;}
.y1a3{bottom:225.834400pt;}
.y109{bottom:226.746667pt;}
.y181{bottom:236.672133pt;}
.y16a{bottom:237.952800pt;}
.ycb{bottom:238.474800pt;}
.y73{bottom:240.277200pt;}
.ydc{bottom:240.277333pt;}
.y1a2{bottom:241.167733pt;}
.y108{bottom:242.080000pt;}
.y130{bottom:250.952133pt;}
.y180{bottom:252.005467pt;}
.y169{bottom:253.286133pt;}
.yca{bottom:253.808133pt;}
.y72{bottom:255.610533pt;}
.ydb{bottom:255.610667pt;}
.y1a1{bottom:256.501067pt;}
.y107{bottom:257.413333pt;}
.y12f{bottom:260.152133pt;}
.y17f{bottom:267.338800pt;}
.y168{bottom:268.619467pt;}
.ya0{bottom:269.141333pt;}
.yc9{bottom:269.141467pt;}
.y71{bottom:270.943867pt;}
.yda{bottom:270.944000pt;}
.y106{bottom:272.746667pt;}
.y17e{bottom:282.672133pt;}
.y12e{bottom:283.662267pt;}
.y167{bottom:283.952800pt;}
.y9f{bottom:284.474667pt;}
.yc8{bottom:284.474800pt;}
.y1a0{bottom:285.365200pt;}
.y70{bottom:286.277200pt;}
.yd9{bottom:286.277333pt;}
.y105{bottom:288.080000pt;}
.y17d{bottom:298.005467pt;}
.y166{bottom:299.286133pt;}
.y9e{bottom:299.808000pt;}
.y19f{bottom:300.698400pt;}
.y6f{bottom:301.610667pt;}
.y104{bottom:303.413333pt;}
.y17c{bottom:313.338800pt;}
.y165{bottom:314.619467pt;}
.y9d{bottom:315.141333pt;}
.y6e{bottom:316.944000pt;}
.y12d{bottom:318.625333pt;}
.y103{bottom:318.746667pt;}
.y17b{bottom:328.672133pt;}
.y19e{bottom:329.562533pt;}
.y164{bottom:329.952800pt;}
.y9c{bottom:330.474667pt;}
.y6d{bottom:332.277333pt;}
.y12c{bottom:333.958667pt;}
.y102{bottom:334.080000pt;}
.y17a{bottom:344.005467pt;}
.y19d{bottom:344.895867pt;}
.y163{bottom:345.286133pt;}
.y9b{bottom:345.808000pt;}
.y23{bottom:347.029067pt;}
.y6c{bottom:347.610667pt;}
.y101{bottom:349.413333pt;}
.y179{bottom:359.338800pt;}
.y19c{bottom:360.229200pt;}
.y162{bottom:360.619467pt;}
.y9a{bottom:361.141333pt;}
.y12b{bottom:362.822667pt;}
.y6b{bottom:362.944000pt;}
.y100{bottom:364.746667pt;}
.y22{bottom:373.520933pt;}
.y178{bottom:374.672133pt;}
.y161{bottom:375.952800pt;}
.y99{bottom:376.474667pt;}
.y12a{bottom:378.156000pt;}
.y6a{bottom:378.277333pt;}
.y143{bottom:380.080000pt;}
.y36{bottom:385.157600pt;}
.y19b{bottom:389.093200pt;}
.y21{bottom:389.520933pt;}
.y177{bottom:390.005467pt;}
.y160{bottom:391.286133pt;}
.y98{bottom:391.808000pt;}
.y35{bottom:393.157600pt;}
.y129{bottom:393.489333pt;}
.y69{bottom:393.610667pt;}
.y142{bottom:395.413333pt;}
.y34{bottom:401.157600pt;}
.y19a{bottom:404.426533pt;}
.y176{bottom:405.338800pt;}
.y20{bottom:405.520933pt;}
.y15f{bottom:406.619467pt;}
.y97{bottom:407.141333pt;}
.y128{bottom:408.822667pt;}
.y68{bottom:408.944000pt;}
.y141{bottom:410.746667pt;}
.y199{bottom:419.759867pt;}
.y175{bottom:420.672133pt;}
.y1f{bottom:421.520933pt;}
.y15e{bottom:421.952800pt;}
.y96{bottom:422.474667pt;}
.y67{bottom:424.277333pt;}
.y140{bottom:426.080000pt;}
.y198{bottom:435.093200pt;}
.y174{bottom:436.005467pt;}
.y127{bottom:436.353333pt;}
.y1e{bottom:437.520933pt;}
.y95{bottom:437.808000pt;}
.y66{bottom:439.610667pt;}
.y13f{bottom:441.413333pt;}
.y15d{bottom:450.816800pt;}
.y173{bottom:451.338800pt;}
.y126{bottom:452.086667pt;}
.y94{bottom:453.141333pt;}
.y1d{bottom:453.520933pt;}
.y65{bottom:454.944000pt;}
.y13e{bottom:456.746667pt;}
.y197{bottom:463.957200pt;}
.yd8{bottom:466.672133pt;}
.y125{bottom:467.819867pt;}
.y93{bottom:468.474667pt;}
.y1c{bottom:469.520933pt;}
.y64{bottom:470.277333pt;}
.y13d{bottom:472.080000pt;}
.y196{bottom:479.290533pt;}
.y15c{bottom:479.680933pt;}
.yd7{bottom:482.005467pt;}
.y124{bottom:483.553067pt;}
.y92{bottom:483.808000pt;}
.y1b{bottom:485.520933pt;}
.y63{bottom:485.610667pt;}
.y33{bottom:487.383600pt;}
.y195{bottom:494.623867pt;}
.y15b{bottom:495.014267pt;}
.y32{bottom:496.983600pt;}
.yd6{bottom:497.338800pt;}
.y91{bottom:499.141333pt;}
.y123{bottom:499.286400pt;}
.y62{bottom:500.944000pt;}
.y1a{bottom:501.520933pt;}
.y31{bottom:506.583600pt;}
.y194{bottom:509.957200pt;}
.y15a{bottom:510.347600pt;}
.yc7{bottom:512.672133pt;}
.y90{bottom:514.474667pt;}
.y122{bottom:515.019600pt;}
.y61{bottom:516.277333pt;}
.y19{bottom:517.520933pt;}
.y159{bottom:525.680933pt;}
.y30{bottom:525.783600pt;}
.yc6{bottom:528.005467pt;}
.y8f{bottom:529.808000pt;}
.y121{bottom:530.752800pt;}
.y60{bottom:531.610667pt;}
.y18{bottom:533.520933pt;}
.y2f{bottom:535.383600pt;}
.y193{bottom:538.821333pt;}
.y158{bottom:541.014267pt;}
.yc5{bottom:543.338800pt;}
.y2e{bottom:544.983600pt;}
.y8e{bottom:545.141333pt;}
.y5f{bottom:546.944000pt;}
.y17{bottom:549.520933pt;}
.y192{bottom:554.154667pt;}
.y157{bottom:556.347600pt;}
.yc4{bottom:558.672133pt;}
.y8d{bottom:560.474667pt;}
.y120{bottom:562.016667pt;}
.y5e{bottom:562.277333pt;}
.y2d{bottom:564.183600pt;}
.y16{bottom:565.520933pt;}
.y191{bottom:569.488000pt;}
.y156{bottom:571.680933pt;}
.yc3{bottom:574.005467pt;}
.y8c{bottom:575.808000pt;}
.y11f{bottom:577.350000pt;}
.y5d{bottom:577.610667pt;}
.y2c{bottom:580.183600pt;}
.y15{bottom:581.520933pt;}
.y190{bottom:584.821333pt;}
.y155{bottom:587.014267pt;}
.yc2{bottom:589.338800pt;}
.y8b{bottom:591.141333pt;}
.yff{bottom:592.944000pt;}
.y14{bottom:597.520933pt;}
.y2b{bottom:598.850267pt;}
.y154{bottom:602.347600pt;}
.yc1{bottom:604.672133pt;}
.y11e{bottom:606.214133pt;}
.y5c{bottom:606.474667pt;}
.yfe{bottom:608.277333pt;}
.y13{bottom:613.520933pt;}
.y18f{bottom:613.685333pt;}
.y153{bottom:617.680933pt;}
.yc0{bottom:620.005467pt;}
.y11d{bottom:621.547467pt;}
.y5b{bottom:621.808000pt;}
.yfd{bottom:623.610667pt;}
.y18e{bottom:629.018667pt;}
.y12{bottom:629.520933pt;}
.y152{bottom:633.014267pt;}
.ybf{bottom:635.338800pt;}
.y11c{bottom:636.880800pt;}
.y5a{bottom:637.141333pt;}
.yef{bottom:637.141467pt;}
.yfc{bottom:638.944000pt;}
.y11{bottom:645.520933pt;}
.y151{bottom:648.347600pt;}
.ybe{bottom:650.672133pt;}
.y11b{bottom:652.214133pt;}
.y59{bottom:652.474667pt;}
.yee{bottom:652.474800pt;}
.yfb{bottom:654.277333pt;}
.y18d{bottom:657.882667pt;}
.y10{bottom:661.520933pt;}
.y150{bottom:663.680933pt;}
.ybd{bottom:666.005467pt;}
.y58{bottom:667.808000pt;}
.yed{bottom:667.808133pt;}
.yfa{bottom:669.610667pt;}
.y18c{bottom:673.216000pt;}
.yf{bottom:677.520933pt;}
.y14f{bottom:679.014267pt;}
.y11a{bottom:679.744800pt;}
.ybc{bottom:681.338800pt;}
.y57{bottom:683.141333pt;}
.yec{bottom:683.141467pt;}
.yf9{bottom:684.944000pt;}
.y18b{bottom:688.549333pt;}
.y119{bottom:695.478000pt;}
.ybb{bottom:696.672133pt;}
.y56{bottom:698.474667pt;}
.yeb{bottom:698.474800pt;}
.yf8{bottom:700.277333pt;}
.ye{bottom:702.164533pt;}
.y14e{bottom:707.878267pt;}
.y118{bottom:711.211200pt;}
.yba{bottom:712.005467pt;}
.y55{bottom:713.808000pt;}
.yea{bottom:713.808133pt;}
.yf7{bottom:715.610667pt;}
.y18a{bottom:717.413333pt;}
.y14d{bottom:723.211600pt;}
.y117{bottom:726.944533pt;}
.y8a{bottom:727.338667pt;}
.yb9{bottom:727.338800pt;}
.y54{bottom:729.141333pt;}
.ye9{bottom:729.141467pt;}
.yf6{bottom:730.944000pt;}
.y189{bottom:732.746667pt;}
.y14c{bottom:738.544933pt;}
.y89{bottom:742.672000pt;}
.yb8{bottom:742.672133pt;}
.y116{bottom:742.677733pt;}
.yd{bottom:742.845333pt;}
.y53{bottom:744.474667pt;}
.ye8{bottom:744.474800pt;}
.yf5{bottom:746.277333pt;}
.y188{bottom:748.080000pt;}
.y14b{bottom:753.878267pt;}
.yc{bottom:755.645200pt;}
.y88{bottom:758.005333pt;}
.yb7{bottom:758.005467pt;}
.y115{bottom:758.410933pt;}
.y52{bottom:759.808000pt;}
.ye7{bottom:759.808133pt;}
.yf4{bottom:761.610667pt;}
.y187{bottom:763.413333pt;}
.y87{bottom:773.338667pt;}
.yb6{bottom:773.338800pt;}
.y114{bottom:774.144267pt;}
.y51{bottom:775.141333pt;}
.ye6{bottom:775.141467pt;}
.yf3{bottom:776.944000pt;}
.y14a{bottom:781.409067pt;}
.yb{bottom:784.509600pt;}
.y86{bottom:788.672000pt;}
.yb5{bottom:788.672133pt;}
.y113{bottom:789.877467pt;}
.y50{bottom:790.474667pt;}
.ye5{bottom:790.474800pt;}
.yf2{bottom:792.277333pt;}
.y149{bottom:799.942267pt;}
.y85{bottom:804.005333pt;}
.yb4{bottom:804.005467pt;}
.y4f{bottom:805.808000pt;}
.ye4{bottom:805.808133pt;}
.ya{bottom:806.857333pt;}
.y13c{bottom:807.610667pt;}
.y148{bottom:818.475467pt;}
.y84{bottom:819.338667pt;}
.yb3{bottom:819.338800pt;}
.y4e{bottom:821.141333pt;}
.yf1{bottom:821.141467pt;}
.y13b{bottom:822.944000pt;}
.y8{bottom:833.344800pt;}
.y83{bottom:834.672000pt;}
.yb2{bottom:834.672133pt;}
.y4d{bottom:836.474667pt;}
.y112{bottom:836.474800pt;}
.y147{bottom:837.008667pt;}
.y13a{bottom:838.277333pt;}
.y82{bottom:850.005333pt;}
.yb1{bottom:850.005467pt;}
.y4c{bottom:851.808000pt;}
.y186{bottom:851.808133pt;}
.y139{bottom:853.610667pt;}
.y146{bottom:855.541867pt;}
.y81{bottom:865.338667pt;}
.yb0{bottom:865.338800pt;}
.y4b{bottom:867.141333pt;}
.y185{bottom:867.141467pt;}
.y7{bottom:868.544800pt;}
.y145{bottom:874.075067pt;}
.y80{bottom:880.672000pt;}
.yaf{bottom:880.672133pt;}
.y4a{bottom:882.474667pt;}
.y138{bottom:882.474800pt;}
.y144{bottom:892.608267pt;}
.y7f{bottom:896.005333pt;}
.yae{bottom:896.005467pt;}
.y49{bottom:897.808000pt;}
.y9{bottom:905.356667pt;}
.y7e{bottom:911.338667pt;}
.yad{bottom:911.338800pt;}
.y48{bottom:913.141333pt;}
.y7d{bottom:926.672000pt;}
.yac{bottom:926.672133pt;}
.y47{bottom:928.474667pt;}
.y7c{bottom:942.005333pt;}
.yab{bottom:942.005467pt;}
.y46{bottom:957.338667pt;}
.yaa{bottom:957.338800pt;}
.y4{bottom:970.952800pt;}
.y3{bottom:988.968667pt;}
.y2{bottom:996.968667pt;}
.y1{bottom:1004.968667pt;}
.y41{bottom:1007.968267pt;}
.y40{bottom:1021.522267pt;}
.y6{bottom:1031.660667pt;}
.y3f{bottom:1041.185333pt;}
.y3e{bottom:1053.403600pt;}
.y5{bottom:1066.053067pt;}
.hf{height:17.561880pt;}
.h9{height:19.968000pt;}
.h16{height:20.266667pt;}
.h1c{height:20.309333pt;}
.h14{height:20.373333pt;}
.he{height:23.853516pt;}
.h15{height:24.906667pt;}
.h3{height:25.120000pt;}
.h1f{height:25.216000pt;}
.h10{height:25.333333pt;}
.h2{height:25.466667pt;}
.h13{height:30.144000pt;}
.h12{height:30.400000pt;}
.h1a{height:30.560000pt;}
.h17{height:30.729167pt;}
.hb{height:32.597333pt;}
.h7{height:33.621333pt;}
.h1b{height:34.869333pt;}
.h19{height:35.168000pt;}
.h4{height:35.653333pt;}
.h18{height:36.138667pt;}
.ha{height:39.850667pt;}
.h24{height:40.192000pt;}
.h23{height:40.746667pt;}
.hd{height:45.216000pt;}
.h11{height:46.093750pt;}
.h21{height:48.544000pt;}
.h20{height:49.813333pt;}
.h1e{height:50.240000pt;}
.h1d{height:50.666667pt;}
.hc{height:50.933333pt;}
.h8{height:56.789333pt;}
.h22{height:66.944000pt;}
.h5{height:81.280000pt;}
.h6{height:84.505208pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:48.000000pt;}
.x21{left:51.666667pt;}
.xf{left:58.386267pt;}
.x13{left:60.081200pt;}
.x12{left:70.380800pt;}
.xe{left:76.713733pt;}
.x11{left:82.985733pt;}
.xc{left:86.371333pt;}
.xb{left:88.965067pt;}
.x14{left:92.128800pt;}
.x1c{left:97.133867pt;}
.x10{left:116.793333pt;}
.x1a{left:159.228267pt;}
.xd{left:163.848667pt;}
.x19{left:177.684800pt;}
.x1{left:207.874000pt;}
.x6{left:216.188933pt;}
.x5{left:217.207333pt;}
.x3{left:243.086667pt;}
.x17{left:250.299600pt;}
.x4{left:257.549067pt;}
.x15{left:264.850400pt;}
.xa{left:284.926800pt;}
.x16{left:301.203733pt;}
.x18{left:368.452933pt;}
.x1e{left:404.850400pt;}
.x1f{left:453.984267pt;}
.x9{left:559.684400pt;}
.x2{left:635.350267pt;}
.x7{left:695.529733pt;}
.x8{left:708.786000pt;}
.x20{left:717.821067pt;}
.x1b{left:718.741067pt;}
}




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