
    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_2048a8c30c95a5558ba05f01.woff')format("woff");}.ff1{font-family:ff1;line-height:1.192383;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_146bcf43a39349878de0e3c5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.048340;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_dd39bd559906efb69d27b259.woff')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_0721e4207b1ed8ac6d813a19.woff')format("woff");}.ff4{font-family:ff4;line-height:1.349000;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_6d6f19da67adc926f79af3c9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_e87c6cedd78a8241b786f55d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.190918;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_be93d5effa96cbbf93ad6008.woff')format("woff");}.ff7{font-family:ff7;line-height:1.192383;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_6ef1f576dca07c51ac4e0bbe.woff')format("woff");}.ff8{font-family:ff8;line-height:0.858000;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_142ab8ebf73166687106e139.woff')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_773c2f035515fc193e49db2a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.384000;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_9fc6f252569db45c97dd96b5.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4cc8bddbf3703ed5789240d5.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_46d26a37c3a4eb5187bac072.woff')format("woff");}.ffd{font-family:ffd;line-height:0.530000;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_cbf0555a43a9f5adaf728028.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_be6b8640d254c127e987f15f.woff')format("woff");}.fff{font-family:fff;line-height:1.328000;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_131758b077b19194cb58ecbe.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_742bf0acaa3c16e808f7cb64.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_e4f32cb578fe140ca1793e14.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ae1309bc13372a7bcb595bdc.woff')format("woff");}.ff13{font-family:ff13;line-height:0.524000;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_5a8de7a7a1f70c36a2c85bc1.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_50499c5f9d16cdf17c9f168a.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_8ff1ec41463d9edf604b64ee.woff')format("woff");}.ff16{font-family:ff16;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_701ed70fc6ab9e6c14c214d5.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_e4f32cb578fe140ca1793e14.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_951dfac760eece45855cb88b.woff')format("woff");}.ff19{font-family:ff19;line-height:2.399000;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_ae1309bc13372a7bcb595bdc.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.524000;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_8be047109c915c0d0d559b80.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.530000;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_742bf0acaa3c16e808f7cb64.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_e2674e8e764a290995dd425a.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_1346cabba18350224ddbeeda.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_e4f32cb578fe140ca1793e14.woff')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_8ff1ec41463d9edf604b64ee.woff')format("woff");}.ff20{font-family:ff20;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_bb7e2a797a20d1e68a6b51b7.woff')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_c465c0bb3eab1dee21f4dbd6.woff')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_09f9bc55b262134357a63400.woff')format("woff");}.ff23{font-family:ff23;line-height:0.773000;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_a5d0c70491acd84fd6564eda.woff')format("woff");}.ff24{font-family:ff24;line-height:0.524000;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_8be047109c915c0d0d559b80.woff')format("woff");}.ff25{font-family:ff25;line-height:0.530000;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_eb5ccf0500fa8f1a4351a162.woff')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_4cc8bddbf3703ed5789240d5.woff')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_46d26a37c3a4eb5187bac072.woff')format("woff");}.ff28{font-family:ff28;line-height:0.530000;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:ff29;src:url('chunks/assets/font_000d724d85c0cd4b14d57602.woff')format("woff");}.ff29{font-family:ff29;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_9a54e98b24ff6242efd5ef8f.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_0bcd718e7d9ab4bc73f6117e.woff')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_ae1309bc13372a7bcb595bdc.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.524000;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:ff2d;src:url('chunks/assets/font_8ff1ec41463d9edf604b64ee.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_b42ff36d543bd24a3fae4f4b.woff')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_987d12807bdf9e1481404938.woff')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_8be047109c915c0d0d559b80.woff')format("woff");}.ff30{font-family:ff30;line-height:0.530000;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:ff31;src:url('chunks/assets/font_f9647fcf6205a268e9a15b65.woff')format("woff");}.ff31{font-family:ff31;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_ae1309bc13372a7bcb595bdc.woff')format("woff");}.ff32{font-family:ff32;line-height:0.524000;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:ff33;src:url('chunks/assets/font_4195269646a1faddd1036e37.woff')format("woff");}.ff33{font-family:ff33;line-height:2.399000;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:ff34;src:url('chunks/assets/font_d24c0dca678c8044210a01b5.woff')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_48807badb46bf3836fc36b0d.woff')format("woff");}.ff35{font-family:ff35;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_779b8229ce3c86bdb9d5c6e2.woff')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_987d12807bdf9e1481404938.woff')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_c3b9bb1c99575f3b3ff90cf0.woff')format("woff");}.ff38{font-family:ff38;line-height:2.399000;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:ff39;src:url('chunks/assets/font_ae1309bc13372a7bcb595bdc.woff')format("woff");}.ff39{font-family:ff39;line-height:0.524000;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:ff3a;src:url('chunks/assets/font_974c957d099680727e5aea5e.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.998000;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:ff3b;src:url('chunks/assets/font_e4f32cb578fe140ca1793e14.woff')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_48807badb46bf3836fc36b0d.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_7d14c40ed42d18900f44d2d0.woff')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_987d12807bdf9e1481404938.woff')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_606af3543ee035893efd9e55.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.998000;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:ff40;src:url('chunks/assets/font_8d85e775eb85e091f141c303.woff')format("woff");}.ff40{font-family:ff40;line-height:2.399000;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:ff41;src:url('chunks/assets/font_a5d0c70491acd84fd6564eda.woff')format("woff");}.ff41{font-family:ff41;line-height:0.524000;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:ff42;src:url('chunks/assets/font_48807badb46bf3836fc36b0d.woff')format("woff");}.ff42{font-family:ff42;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_deb23e4445b2747789bc945e.woff')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_987d12807bdf9e1481404938.woff')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_c90fec514c59e030bbfb5b6b.woff')format("woff");}.ff45{font-family:ff45;line-height:0.998000;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:ff46;src:url('chunks/assets/font_8d85e775eb85e091f141c303.woff')format("woff");}.ff46{font-family:ff46;line-height:2.399000;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:ff47;src:url('chunks/assets/font_a5d0c70491acd84fd6564eda.woff')format("woff");}.ff47{font-family:ff47;line-height:0.524000;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:ff48;src:url('chunks/assets/font_870f64cc6db1bd1d606aecc5.woff')format("woff");}.ff48{font-family:ff48;line-height:0.910156;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:ff49;src:url('chunks/assets/font_fc1a3b7771717afd8fda3fb6.woff')format("woff");}.ff49{font-family:ff49;line-height:1.392000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-46.925903px;}
.ve{vertical-align:-30.066009px;}
.v2{vertical-align:-18.630066px;}
.v4{vertical-align:-17.594971px;}
.v17{vertical-align:-14.489868px;}
.v12{vertical-align:-7.457977px;}
.v6{vertical-align:-5.976011px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.491512px;}
.v11{vertical-align:9.420044px;}
.v10{vertical-align:15.396057px;}
.v5{vertical-align:17.594971px;}
.v3{vertical-align:18.629883px;}
.v1{vertical-align:20.700073px;}
.vf{vertical-align:22.840445px;}
.v13{vertical-align:25.572144px;}
.v9{vertical-align:32.171443px;}
.va{vertical-align:34.807565px;}
.v8{vertical-align:37.421997px;}
.v16{vertical-align:38.550293px;}
.v14{vertical-align:42.340576px;}
.vd{vertical-align:48.144016px;}
.vb{vertical-align:58.007996px;}
.v15{vertical-align:82.788208px;}
.ls5a{letter-spacing:-4.860000px;}
.ls61{letter-spacing:-3.285000px;}
.lsd{letter-spacing:-1.998000px;}
.ls53{letter-spacing:-1.395000px;}
.ls58{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-1.026000px;}
.ls57{letter-spacing:-0.855000px;}
.ls24{letter-spacing:-0.831600px;}
.ls19{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.604800px;}
.ls55{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.491400px;}
.ls3e{letter-spacing:-0.486000px;}
.ls60{letter-spacing:-0.450000px;}
.ls59{letter-spacing:-0.323400px;}
.ls62{letter-spacing:-0.315000px;}
.ls54{letter-spacing:-0.225000px;}
.ls56{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.108000px;}
.lsb{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000003px;}
.lsf{letter-spacing:0.000006px;}
.ls5{letter-spacing:0.000008px;}
.ls8{letter-spacing:0.000009px;}
.ls4{letter-spacing:0.000012px;}
.ls15{letter-spacing:0.000035px;}
.ls10{letter-spacing:0.000044px;}
.ls11{letter-spacing:0.000051px;}
.ls6{letter-spacing:0.000070px;}
.ls1a{letter-spacing:0.000076px;}
.ls3c{letter-spacing:0.000082px;}
.ls5b{letter-spacing:0.000086px;}
.ls16{letter-spacing:0.000088px;}
.ls3{letter-spacing:0.000104px;}
.ls33{letter-spacing:0.000113px;}
.ls48{letter-spacing:0.000210px;}
.ls41{letter-spacing:0.000244px;}
.ls7{letter-spacing:0.000287px;}
.ls36{letter-spacing:0.005863px;}
.ls3b{letter-spacing:0.009235px;}
.ls23{letter-spacing:0.010643px;}
.ls9{letter-spacing:0.011429px;}
.ls28{letter-spacing:0.012426px;}
.ls2{letter-spacing:0.013068px;}
.ls0{letter-spacing:0.014438px;}
.ls1{letter-spacing:0.014987px;}
.ls29{letter-spacing:0.018469px;}
.ls2a{letter-spacing:0.018833px;}
.ls20{letter-spacing:0.026358px;}
.ls4a{letter-spacing:0.027044px;}
.ls2b{letter-spacing:0.035092px;}
.ls1c{letter-spacing:0.270000px;}
.ls17{letter-spacing:0.698360px;}
.ls4d{letter-spacing:0.983730px;}
.ls50{letter-spacing:1.764126px;}
.ls5c{letter-spacing:1.883877px;}
.ls5e{letter-spacing:1.885342px;}
.ls13{letter-spacing:2.199092px;}
.ls1b{letter-spacing:2.596889px;}
.ls3d{letter-spacing:2.797517px;}
.ls4c{letter-spacing:2.870357px;}
.ls21{letter-spacing:2.992124px;}
.lsa{letter-spacing:3.000000px;}
.ls43{letter-spacing:3.004232px;}
.ls42{letter-spacing:3.004415px;}
.ls35{letter-spacing:3.010275px;}
.ls44{letter-spacing:3.010824px;}
.ls5f{letter-spacing:3.551968px;}
.ls51{letter-spacing:3.735073px;}
.ls12{letter-spacing:4.399196px;}
.ls5d{letter-spacing:4.969937px;}
.ls4e{letter-spacing:5.872280px;}
.ls3a{letter-spacing:7.156357px;}
.ls38{letter-spacing:7.189944px;}
.ls2c{letter-spacing:9.178951px;}
.ls27{letter-spacing:9.199526px;}
.ls4f{letter-spacing:10.426479px;}
.ls2f{letter-spacing:11.136269px;}
.ls32{letter-spacing:12.050842px;}
.ls22{letter-spacing:12.266035px;}
.ls1f{letter-spacing:12.319834px;}
.ls1d{letter-spacing:13.449600px;}
.ls1e{letter-spacing:15.280149px;}
.ls26{letter-spacing:15.332544px;}
.ls4b{letter-spacing:15.345391px;}
.ls47{letter-spacing:15.351251px;}
.ls2e{letter-spacing:15.386342px;}
.ls31{letter-spacing:16.408512px;}
.ls49{letter-spacing:18.183859px;}
.ls37{letter-spacing:18.258775px;}
.ls39{letter-spacing:22.541530px;}
.ls3f{letter-spacing:27.598579px;}
.ls2d{letter-spacing:31.687258px;}
.ls40{letter-spacing:33.193613px;}
.ls46{letter-spacing:36.367718px;}
.ls45{letter-spacing:100.438657px;}
.ls52{letter-spacing:110.522534px;}
.ls34{letter-spacing:610.581569px;}
.ls30{letter-spacing:719.752162px;}
.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;}
}
.wsae{word-spacing:-27.652378px;}
.wsac{word-spacing:-27.598579px;}
.ws87{word-spacing:-15.386342px;}
.wsa1{word-spacing:-15.332544px;}
.ws4{word-spacing:-15.000000px;}
.wsc6{word-spacing:-13.596000px;}
.ws75{word-spacing:-13.500000px;}
.ws52{word-spacing:-12.366000px;}
.ws1{word-spacing:-12.258000px;}
.ws112{word-spacing:-11.718000px;}
.ws2{word-spacing:-10.260000px;}
.wsc9{word-spacing:-10.215000px;}
.wsc8{word-spacing:-10.080000px;}
.wsf4{word-spacing:-9.990000px;}
.wsf3{word-spacing:-9.855000px;}
.wsc7{word-spacing:-9.765000px;}
.wsf2{word-spacing:-9.450000px;}
.wsca{word-spacing:-9.360000px;}
.ws8a{word-spacing:-9.253325px;}
.wscc{word-spacing:-9.225000px;}
.wsa0{word-spacing:-9.199526px;}
.ws62{word-spacing:-8.656200px;}
.ws0{word-spacing:-8.580600px;}
.ws86{word-spacing:-8.164800px;}
.ws53{word-spacing:-8.051400px;}
.ws85{word-spacing:-7.824600px;}
.ws3{word-spacing:-7.140000px;}
.ws10e{word-spacing:-7.020000px;}
.wsfe{word-spacing:-6.930000px;}
.wscd{word-spacing:-6.115200px;}
.ws110{word-spacing:-5.994000px;}
.ws5b{word-spacing:-5.508000px;}
.ws3b{word-spacing:-4.860000px;}
.ws4c{word-spacing:-4.752000px;}
.ws57{word-spacing:-4.158000px;}
.ws42{word-spacing:-3.855600px;}
.ws61{word-spacing:-3.618000px;}
.wsab{word-spacing:-3.456000px;}
.wsf0{word-spacing:-2.998800px;}
.ws95{word-spacing:-2.970000px;}
.ws7c{word-spacing:-2.916000px;}
.ws39{word-spacing:-2.862000px;}
.ws9b{word-spacing:-2.851315px;}
.ws67{word-spacing:-2.754000px;}
.wsef{word-spacing:-2.704800px;}
.ws82{word-spacing:-2.538000px;}
.wsa8{word-spacing:-2.322000px;}
.ws37{word-spacing:-2.268000px;}
.wsc0{word-spacing:-2.214000px;}
.ws63{word-spacing:-2.160000px;}
.ws34{word-spacing:-1.998000px;}
.ws36{word-spacing:-1.944000px;}
.wse3{word-spacing:-1.935000px;}
.ws71{word-spacing:-1.890000px;}
.ws10f{word-spacing:-1.836000px;}
.wsd6{word-spacing:-1.800000px;}
.ws64{word-spacing:-1.728000px;}
.ws48{word-spacing:-1.674000px;}
.ws1f{word-spacing:-1.620000px;}
.wsbd{word-spacing:-1.566000px;}
.ws100{word-spacing:-1.530000px;}
.ws17{word-spacing:-1.512000px;}
.ws40{word-spacing:-1.458000px;}
.ws3e{word-spacing:-1.404000px;}
.ws4f{word-spacing:-1.350000px;}
.wsd9{word-spacing:-1.305000px;}
.wse0{word-spacing:-1.260000px;}
.wsdf{word-spacing:-1.215000px;}
.ws4e{word-spacing:-1.188000px;}
.ws97{word-spacing:-1.134000px;}
.ws1d{word-spacing:-1.080000px;}
.ws56{word-spacing:-0.972000px;}
.ws104{word-spacing:-0.900000px;}
.ws30{word-spacing:-0.864000px;}
.wsbe{word-spacing:-0.756000px;}
.wse1{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.540000px;}
.wsd{word-spacing:-0.486000px;}
.ws54{word-spacing:-0.432000px;}
.ws60{word-spacing:-0.378000px;}
.ws1e{word-spacing:-0.270000px;}
.wsfd{word-spacing:-0.225000px;}
.ws13{word-spacing:-0.216000px;}
.wsf1{word-spacing:-0.210000px;}
.wse2{word-spacing:-0.180000px;}
.ws6b{word-spacing:-0.162000px;}
.wsf8{word-spacing:-0.135000px;}
.ws49{word-spacing:-0.108000px;}
.ws108{word-spacing:-0.090000px;}
.ws1b{word-spacing:-0.054000px;}
.ws88{word-spacing:-0.053798px;}
.wscb{word-spacing:-0.045000px;}
.wsd0{word-spacing:-0.042000px;}
.ws9a{word-spacing:-0.035866px;}
.ws5{word-spacing:0.000000px;}
.ws70{word-spacing:0.054000px;}
.ws1a{word-spacing:0.108000px;}
.wsc3{word-spacing:0.162000px;}
.wsda{word-spacing:0.180000px;}
.wsf9{word-spacing:0.225000px;}
.ws68{word-spacing:0.270000px;}
.ws8{word-spacing:0.378000px;}
.ws96{word-spacing:0.432000px;}
.ws6e{word-spacing:0.486000px;}
.wsd7{word-spacing:0.495000px;}
.ws80{word-spacing:0.540000px;}
.ws109{word-spacing:0.585000px;}
.ws73{word-spacing:0.648000px;}
.ws14{word-spacing:0.702000px;}
.ws6a{word-spacing:0.810000px;}
.ws2a{word-spacing:0.864000px;}
.ws32{word-spacing:0.918000px;}
.wsa3{word-spacing:0.972000px;}
.wsd8{word-spacing:0.990000px;}
.ws4b{word-spacing:1.026000px;}
.ws69{word-spacing:1.080000px;}
.ws90{word-spacing:1.134000px;}
.wsed{word-spacing:1.170000px;}
.ws78{word-spacing:1.188000px;}
.ws4a{word-spacing:1.296000px;}
.ws44{word-spacing:1.350000px;}
.wsd3{word-spacing:1.395000px;}
.ws46{word-spacing:1.404000px;}
.ws107{word-spacing:1.440000px;}
.ws43{word-spacing:1.458000px;}
.ws8f{word-spacing:1.512000px;}
.ws26{word-spacing:1.566000px;}
.ws105{word-spacing:1.575000px;}
.ws20{word-spacing:1.620000px;}
.ws3d{word-spacing:1.674000px;}
.wsc5{word-spacing:1.728000px;}
.wsea{word-spacing:1.755000px;}
.ws79{word-spacing:1.782000px;}
.wseb{word-spacing:1.800000px;}
.ws8c{word-spacing:1.836000px;}
.wsfb{word-spacing:1.845000px;}
.ws2f{word-spacing:1.890000px;}
.wse7{word-spacing:1.935000px;}
.ws115{word-spacing:1.944000px;}
.ws4d{word-spacing:1.998000px;}
.wsfc{word-spacing:2.025000px;}
.ws81{word-spacing:2.052000px;}
.ws2d{word-spacing:2.106000px;}
.ws10c{word-spacing:2.205000px;}
.ws5c{word-spacing:2.214000px;}
.ws7d{word-spacing:2.268000px;}
.ws29{word-spacing:2.322000px;}
.wse9{word-spacing:2.385000px;}
.ws83{word-spacing:2.430000px;}
.ws19{word-spacing:2.499000px;}
.ws6f{word-spacing:2.538000px;}
.wse8{word-spacing:2.565000px;}
.ws3c{word-spacing:2.592000px;}
.ws31{word-spacing:2.700000px;}
.ws106{word-spacing:2.745000px;}
.ws58{word-spacing:2.754000px;}
.ws77{word-spacing:2.862000px;}
.wsd2{word-spacing:2.880000px;}
.ws5d{word-spacing:2.916000px;}
.ws118{word-spacing:2.970000px;}
.ws50{word-spacing:3.024000px;}
.ws7a{word-spacing:3.078000px;}
.ws113{word-spacing:3.132000px;}
.wsaa{word-spacing:3.186000px;}
.ws7b{word-spacing:3.240000px;}
.ws2e{word-spacing:3.294000px;}
.wsb6{word-spacing:3.348000px;}
.wsdc{word-spacing:3.420000px;}
.ws117{word-spacing:3.456000px;}
.ws9{word-spacing:3.510000px;}
.ws101{word-spacing:3.555000px;}
.ws10d{word-spacing:3.600000px;}
.ws47{word-spacing:3.672000px;}
.wsfa{word-spacing:3.690000px;}
.ws72{word-spacing:3.726000px;}
.wsd5{word-spacing:3.735000px;}
.ws7e{word-spacing:3.780000px;}
.ws3a{word-spacing:3.834000px;}
.wsdb{word-spacing:3.870000px;}
.ws94{word-spacing:3.888000px;}
.wsbc{word-spacing:3.942000px;}
.ws76{word-spacing:3.996000px;}
.ws41{word-spacing:4.050000px;}
.ws23{word-spacing:4.104000px;}
.wsf5{word-spacing:4.185000px;}
.wse6{word-spacing:4.230000px;}
.ws116{word-spacing:4.266000px;}
.wsc{word-spacing:4.320000px;}
.ws11{word-spacing:4.374000px;}
.ws35{word-spacing:4.428000px;}
.ws65{word-spacing:4.482000px;}
.wsf{word-spacing:4.536000px;}
.ws2c{word-spacing:4.644000px;}
.ws28{word-spacing:4.860000px;}
.ws16{word-spacing:4.914000px;}
.ws10a{word-spacing:4.950000px;}
.ws10b{word-spacing:4.995000px;}
.ws6{word-spacing:5.130000px;}
.ws66{word-spacing:5.184000px;}
.ws3f{word-spacing:5.238000px;}
.ws114{word-spacing:5.346000px;}
.ws12{word-spacing:5.400000px;}
.ws5f{word-spacing:5.454000px;}
.wsec{word-spacing:5.490000px;}
.ws1c{word-spacing:5.508000px;}
.wsc4{word-spacing:5.562000px;}
.ws55{word-spacing:5.778000px;}
.ws5e{word-spacing:5.832000px;}
.wsdd{word-spacing:5.895000px;}
.wsa5{word-spacing:5.940000px;}
.ws27{word-spacing:6.102000px;}
.ws84{word-spacing:6.156000px;}
.ws102{word-spacing:6.210000px;}
.ws38{word-spacing:6.264000px;}
.ws33{word-spacing:6.318000px;}
.ws24{word-spacing:6.426000px;}
.ws45{word-spacing:6.642000px;}
.wsa{word-spacing:6.696000px;}
.wsf7{word-spacing:6.750000px;}
.wsf6{word-spacing:6.840000px;}
.wsbb{word-spacing:6.858000px;}
.ws103{word-spacing:6.930000px;}
.ws92{word-spacing:6.966000px;}
.ws8d{word-spacing:7.074000px;}
.wsb4{word-spacing:7.128000px;}
.wsb5{word-spacing:7.182000px;}
.wse{word-spacing:7.236000px;}
.ws111{word-spacing:7.290000px;}
.wsbf{word-spacing:7.344000px;}
.ws5a{word-spacing:7.884000px;}
.ws59{word-spacing:8.046000px;}
.ws98{word-spacing:8.208000px;}
.wsba{word-spacing:8.262000px;}
.wse4{word-spacing:8.325000px;}
.wsd1{word-spacing:8.370000px;}
.ws8e{word-spacing:8.424000px;}
.ws91{word-spacing:8.586000px;}
.ws6d{word-spacing:8.856000px;}
.ws10{word-spacing:9.018000px;}
.ws93{word-spacing:9.126000px;}
.ws7{word-spacing:9.288000px;}
.wsff{word-spacing:9.360000px;}
.ws9c{word-spacing:9.360922px;}
.ws25{word-spacing:9.450000px;}
.ws18{word-spacing:9.537000px;}
.wsd4{word-spacing:9.540000px;}
.ws51{word-spacing:10.044000px;}
.wsc1{word-spacing:10.422000px;}
.wsde{word-spacing:10.440000px;}
.ws2b{word-spacing:10.476000px;}
.ws7f{word-spacing:10.530000px;}
.wsb8{word-spacing:10.692000px;}
.wsb{word-spacing:10.854000px;}
.ws22{word-spacing:11.016000px;}
.ws6c{word-spacing:11.556000px;}
.ws89{word-spacing:12.170986px;}
.ws8b{word-spacing:12.188929px;}
.ws9e{word-spacing:12.196097px;}
.ws9d{word-spacing:12.212237px;}
.wsee{word-spacing:12.870000px;}
.wse5{word-spacing:13.410000px;}
.ws74{word-spacing:15.262607px;}
.ws21{word-spacing:17.766000px;}
.wsc2{word-spacing:18.684000px;}
.wsb0{word-spacing:22.433933px;}
.wsb2{word-spacing:25.472049px;}
.wsb1{word-spacing:25.472232px;}
.wscf{word-spacing:32.990391px;}
.wsaf{word-spacing:33.032218px;}
.ws9f{word-spacing:47.900571px;}
.wsce{word-spacing:91.202978px;}
.wsb9{word-spacing:381.995994px;}
.wsb7{word-spacing:421.686000px;}
.wsb3{word-spacing:452.250000px;}
.wsad{word-spacing:630.395988px;}
.wsa6{word-spacing:692.496000px;}
.wsa9{word-spacing:711.288000px;}
.ws99{word-spacing:723.599979px;}
.wsa2{word-spacing:825.011993px;}
.wsa7{word-spacing:877.878000px;}
.wsa4{word-spacing:970.379963px;}
._1a{margin-left:-23.625000px;}
._17{margin-left:-20.655000px;}
._23{margin-left:-19.575000px;}
._19{margin-left:-18.540000px;}
._15{margin-left:-16.660808px;}
._13{margin-left:-15.278746px;}
._b{margin-left:-13.664644px;}
._12{margin-left:-12.114318px;}
._d{margin-left:-10.547046px;}
._11{margin-left:-9.110114px;}
._f{margin-left:-7.536797px;}
._a{margin-left:-5.693817px;}
._1{margin-left:-4.133150px;}
._2{margin-left:-2.822050px;}
._0{margin-left:-1.740659px;}
._4{width:1.135859px;}
._6{width:2.524500px;}
._5{width:4.544100px;}
._10{width:5.580045px;}
._7{width:6.662351px;}
._8{width:8.644499px;}
._e{width:9.908868px;}
._1b{width:11.189644px;}
._c{width:13.365000px;}
._16{width:14.490000px;}
._18{width:15.635114px;}
._3{width:17.795438px;}
._14{width:22.531006px;}
._1c{width:43.120922px;}
._1d{width:51.769672px;}
._20{width:56.243489px;}
._1f{width:84.748166px;}
._21{width:101.324978px;}
._1e{width:262.696831px;}
._22{width:2234.850735px;}
._9{width:2265.612088px;}
.fc4{color:transparent;}
.fc3{color:rgb(205,23,25);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(217,228,235);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:29.400000px;}
.fsd{font-size:29.887799px;}
.fs5{font-size:35.699999px;}
.fsb{font-size:35.865600px;}
.fs4{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsa{font-size:53.798400px;}
.fs3{font-size:54.000000px;}
.fsc{font-size:59.775599px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs0{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.yc5{bottom:1.794067px;}
.y137{bottom:1.794891px;}
.y147{bottom:2.915703px;}
.y109{bottom:3.660753px;}
.y167{bottom:3.661652px;}
.y17c{bottom:3.661926px;}
.y11a{bottom:3.662018px;}
.y12a{bottom:3.662247px;}
.y10f{bottom:5.902679px;}
.y157{bottom:9.049713px;}
.yc4{bottom:10.759552px;}
.y136{bottom:10.760422px;}
.y155{bottom:10.828674px;}
.y112{bottom:12.363190px;}
.y125{bottom:12.783783px;}
.y16d{bottom:16.743515px;}
.y182{bottom:16.743744px;}
.y111{bottom:17.634155px;}
.y16c{bottom:21.226685px;}
.y181{bottom:21.226913px;}
.y128{bottom:21.600769px;}
.y13e{bottom:23.200058px;}
.y12b{bottom:27.195786px;}
.y2f{bottom:27.634050px;}
.y30{bottom:27.643049px;}
.y149{bottom:28.252201px;}
.y14a{bottom:29.966709px;}
.y153{bottom:40.647217px;}
.y165{bottom:58.846710px;}
.y17a{bottom:58.846939px;}
.y162{bottom:58.965179px;}
.y177{bottom:58.965408px;}
.y1eb{bottom:63.316800px;}
.y169{bottom:66.058685px;}
.y17e{bottom:66.058914px;}
.y76{bottom:67.980148px;}
.y1ab{bottom:72.207750px;}
.y2d{bottom:72.430200px;}
.y1a5{bottom:74.854952px;}
.y1ea{bottom:75.916798px;}
.yb7{bottom:76.407600px;}
.y92{bottom:78.524998px;}
.y107{bottom:79.952248px;}
.y108{bottom:79.952997px;}
.y75{bottom:82.980148px;}
.y2c{bottom:83.031452px;}
.y10a{bottom:83.296949px;}
.y1aa{bottom:87.207750px;}
.y1e9{bottom:88.516800px;}
.y1a4{bottom:89.854952px;}
.yb6{bottom:91.407600px;}
.y91{bottom:93.524998px;}
.y74{bottom:97.980148px;}
.y2b{bottom:98.031452px;}
.y14f{bottom:98.809353px;}
.y1e8{bottom:101.116950px;}
.y1a9{bottom:102.207745px;}
.y1a3{bottom:104.854946px;}
.yb5{bottom:106.407600px;}
.y106{bottom:109.598099px;}
.y23c{bottom:112.815903px;}
.y73{bottom:112.980148px;}
.y1e7{bottom:113.716805px;}
.y14e{bottom:113.809353px;}
.y1a8{bottom:117.207745px;}
.y2a{bottom:117.430195px;}
.y1a2{bottom:119.854946px;}
.yb4{bottom:121.407600px;}
.y105{bottom:124.598099px;}
.y1e6{bottom:126.316795px;}
.y23b{bottom:127.815903px;}
.y72{bottom:127.980148px;}
.y1a7{bottom:132.207745px;}
.y1a1{bottom:134.854946px;}
.yb3{bottom:136.407600px;}
.y1e5{bottom:138.916798px;}
.y104{bottom:139.598099px;}
.y23a{bottom:142.815903px;}
.y71{bottom:142.980148px;}
.y1a6{bottom:147.207745px;}
.y1a0{bottom:149.854946px;}
.y1e4{bottom:151.516800px;}
.y103{bottom:154.598099px;}
.y239{bottom:157.815903px;}
.y70{bottom:157.980148px;}
.y14d{bottom:158.809353px;}
.y1e3{bottom:164.116950px;}
.y29{bottom:166.329150px;}
.yb2{bottom:166.407600px;}
.y102{bottom:169.598099px;}
.y238{bottom:172.815903px;}
.y6f{bottom:172.980148px;}
.y1e2{bottom:176.716805px;}
.y28{bottom:181.329150px;}
.yb1{bottom:181.407600px;}
.y19f{bottom:182.854946px;}
.y101{bottom:184.598099px;}
.y146{bottom:186.563999px;}
.y145{bottom:186.565200px;}
.y237{bottom:187.815903px;}
.y6e{bottom:187.980148px;}
.y1e1{bottom:189.316795px;}
.y27{bottom:196.329140px;}
.yb0{bottom:196.407600px;}
.y19e{bottom:197.854958px;}
.y148{bottom:198.601204px;}
.y100{bottom:199.598099px;}
.y14c{bottom:200.372543px;}
.y1e0{bottom:201.916809px;}
.y236{bottom:202.815903px;}
.y6d{bottom:202.980148px;}
.y1ad{bottom:205.069061px;}
.y14b{bottom:209.164192px;}
.y26{bottom:211.329140px;}
.yaf{bottom:211.407600px;}
.y19d{bottom:212.854958px;}
.y1df{bottom:214.516800px;}
.yff{bottom:214.598099px;}
.y6c{bottom:217.980148px;}
.y1ac{bottom:220.069061px;}
.y25{bottom:226.329140px;}
.yae{bottom:226.407600px;}
.y1de{bottom:227.116950px;}
.y19c{bottom:227.854958px;}
.yfe{bottom:229.598099px;}
.y6b{bottom:232.980148px;}
.y235{bottom:235.815903px;}
.y144{bottom:237.136208px;}
.y1dd{bottom:239.716805px;}
.y24{bottom:241.329140px;}
.yad{bottom:241.407600px;}
.y19b{bottom:242.854958px;}
.yfd{bottom:244.598099px;}
.y6a{bottom:247.980148px;}
.y234{bottom:250.815903px;}
.y143{bottom:252.136208px;}
.y1dc{bottom:252.316795px;}
.y23{bottom:256.329140px;}
.yac{bottom:256.407600px;}
.y19a{bottom:257.854958px;}
.yfc{bottom:259.598099px;}
.y69{bottom:262.980148px;}
.y1db{bottom:264.916809px;}
.y233{bottom:265.815903px;}
.y142{bottom:267.136208px;}
.y22{bottom:271.329140px;}
.yab{bottom:271.407600px;}
.y199{bottom:272.854958px;}
.yfb{bottom:274.598099px;}
.y1da{bottom:277.516800px;}
.y68{bottom:277.980148px;}
.y232{bottom:280.815903px;}
.y141{bottom:282.136208px;}
.y21{bottom:286.329140px;}
.yaa{bottom:286.407600px;}
.y198{bottom:287.854958px;}
.yfa{bottom:289.598099px;}
.y1d9{bottom:290.116950px;}
.y67{bottom:292.980148px;}
.y231{bottom:295.815903px;}
.y20{bottom:301.329140px;}
.ya9{bottom:301.407600px;}
.y1d8{bottom:302.716805px;}
.y197{bottom:302.854958px;}
.yf9{bottom:304.598099px;}
.y66{bottom:307.980148px;}
.y230{bottom:310.815903px;}
.y1d7{bottom:315.316795px;}
.y1f{bottom:316.329140px;}
.ya8{bottom:316.407600px;}
.y196{bottom:317.854958px;}
.yf8{bottom:319.598099px;}
.y65{bottom:322.980148px;}
.y22f{bottom:325.815903px;}
.y140{bottom:327.136208px;}
.y1d6{bottom:327.916809px;}
.y1e{bottom:331.329140px;}
.ya7{bottom:331.407440px;}
.y195{bottom:332.855095px;}
.yf7{bottom:334.598099px;}
.y64{bottom:337.980148px;}
.y1d5{bottom:340.516800px;}
.y1d{bottom:346.329140px;}
.ya6{bottom:346.407440px;}
.y194{bottom:347.855095px;}
.yf6{bottom:349.598099px;}
.y63{bottom:352.980148px;}
.y1d4{bottom:353.116791px;}
.y13c{bottom:354.892044px;}
.y13d{bottom:354.892502px;}
.y22e{bottom:358.815903px;}
.y13f{bottom:360.272552px;}
.y1c{bottom:361.329140px;}
.ya5{bottom:361.407440px;}
.y193{bottom:362.855095px;}
.yf5{bottom:364.598099px;}
.y1d3{bottom:365.716805px;}
.y62{bottom:367.980148px;}
.y22d{bottom:371.415894px;}
.y1b{bottom:376.329140px;}
.ya4{bottom:376.407440px;}
.y192{bottom:377.855095px;}
.y1d2{bottom:378.316795px;}
.yf4{bottom:379.598099px;}
.y61{bottom:382.980148px;}
.y22c{bottom:384.015884px;}
.y1d1{bottom:390.916809px;}
.y1a{bottom:391.329163px;}
.ya3{bottom:391.407440px;}
.y191{bottom:392.855118px;}
.yf3{bottom:394.598099px;}
.y22b{bottom:396.615921px;}
.y60{bottom:397.980148px;}
.y1d0{bottom:403.516800px;}
.y19{bottom:406.329163px;}
.ya2{bottom:406.407440px;}
.y13b{bottom:407.592911px;}
.y190{bottom:407.855118px;}
.y22a{bottom:409.215912px;}
.yf2{bottom:409.598099px;}
.y5f{bottom:412.980148px;}
.y1cf{bottom:416.116791px;}
.y18{bottom:421.329163px;}
.ya1{bottom:421.407440px;}
.y229{bottom:421.815903px;}
.y13a{bottom:422.592911px;}
.y18f{bottom:422.855118px;}
.yf1{bottom:424.598099px;}
.y5e{bottom:427.980148px;}
.y1ce{bottom:428.716782px;}
.y228{bottom:434.415894px;}
.y17{bottom:436.329163px;}
.ya0{bottom:436.407440px;}
.y18e{bottom:437.855118px;}
.yf0{bottom:439.598099px;}
.y1cd{bottom:441.316818px;}
.y5d{bottom:442.980148px;}
.y227{bottom:447.015884px;}
.y16{bottom:451.329163px;}
.y9f{bottom:451.407440px;}
.y18d{bottom:452.855118px;}
.y1cc{bottom:453.916809px;}
.yef{bottom:454.598099px;}
.y5c{bottom:457.980148px;}
.y226{bottom:459.615921px;}
.y9e{bottom:466.407440px;}
.y1cb{bottom:466.516800px;}
.y139{bottom:467.592911px;}
.y18c{bottom:467.855118px;}
.yee{bottom:469.598099px;}
.y225{bottom:472.215912px;}
.y5b{bottom:472.980148px;}
.y1ca{bottom:479.116791px;}
.y9d{bottom:481.407440px;}
.y18b{bottom:482.855118px;}
.y15{bottom:484.329163px;}
.yed{bottom:484.598099px;}
.y224{bottom:484.815903px;}
.y5a{bottom:487.980148px;}
.y1c9{bottom:491.716782px;}
.y135{bottom:495.347992px;}
.y134{bottom:495.348907px;}
.y9c{bottom:496.407440px;}
.y223{bottom:497.415894px;}
.y18a{bottom:497.855118px;}
.yec{bottom:499.598099px;}
.ye2{bottom:500.325897px;}
.y138{bottom:502.248596px;}
.y59{bottom:502.980148px;}
.y1c8{bottom:504.316818px;}
.y222{bottom:510.015884px;}
.y9b{bottom:511.407440px;}
.y189{bottom:512.855118px;}
.y14{bottom:513.585022px;}
.yeb{bottom:514.598099px;}
.y1c7{bottom:516.916809px;}
.y58{bottom:517.980148px;}
.y221{bottom:522.615921px;}
.y9a{bottom:526.407440px;}
.y188{bottom:527.855118px;}
.y1c6{bottom:529.516800px;}
.yea{bottom:529.598099px;}
.y13{bottom:530.085022px;}
.y133{bottom:532.104767px;}
.y57{bottom:532.980148px;}
.y220{bottom:535.215912px;}
.y99{bottom:541.407440px;}
.y1c5{bottom:542.116791px;}
.y187{bottom:542.855118px;}
.ye9{bottom:544.598099px;}
.y12{bottom:546.585022px;}
.y132{bottom:547.104767px;}
.y21f{bottom:547.815903px;}
.y56{bottom:547.980148px;}
.ye1{bottom:550.369492px;}
.y1c4{bottom:554.716782px;}
.y98{bottom:556.407440px;}
.y186{bottom:557.855118px;}
.ye8{bottom:559.598099px;}
.y21e{bottom:560.415894px;}
.y131{bottom:562.104767px;}
.y55{bottom:562.980148px;}
.y11{bottom:563.085022px;}
.ye0{bottom:565.369492px;}
.y1c3{bottom:567.316818px;}
.y97{bottom:571.407440px;}
.y21d{bottom:573.015884px;}
.ye7{bottom:574.598099px;}
.y130{bottom:577.104767px;}
.y54{bottom:577.980148px;}
.y10{bottom:579.585022px;}
.y1c2{bottom:579.916809px;}
.ydf{bottom:580.369492px;}
.y21c{bottom:585.615921px;}
.y96{bottom:586.407440px;}
.ye6{bottom:589.598099px;}
.y12f{bottom:592.104767px;}
.y1c1{bottom:592.516800px;}
.y93{bottom:592.846069px;}
.y53{bottom:592.980148px;}
.yde{bottom:595.369492px;}
.yf{bottom:596.085022px;}
.y21b{bottom:598.215912px;}
.y257{bottom:601.187256px;}
.y95{bottom:601.407440px;}
.y185{bottom:602.855118px;}
.ye5{bottom:604.598099px;}
.y1c0{bottom:605.116791px;}
.y52{bottom:607.980148px;}
.ydd{bottom:610.369492px;}
.y21a{bottom:610.815903px;}
.ye{bottom:612.585022px;}
.y94{bottom:616.407440px;}
.y1bf{bottom:617.716782px;}
.ye4{bottom:619.598099px;}
.y51{bottom:622.980148px;}
.y219{bottom:623.415894px;}
.ydc{bottom:625.369492px;}
.y1ae{bottom:628.309799px;}
.yd{bottom:629.085022px;}
.y1be{bottom:630.316818px;}
.y176{bottom:630.610519px;}
.y174{bottom:630.610931px;}
.y256{bottom:632.387238px;}
.ye3{bottom:634.598099px;}
.y90{bottom:634.980148px;}
.y218{bottom:636.015884px;}
.y12e{bottom:637.104767px;}
.y50{bottom:637.980148px;}
.ydb{bottom:640.369492px;}
.y1bd{bottom:642.916809px;}
.y17b{bottom:643.393290px;}
.y17d{bottom:643.393936px;}
.yc{bottom:645.585022px;}
.y255{bottom:647.387238px;}
.y217{bottom:648.615921px;}
.y8f{bottom:649.980148px;}
.y4f{bottom:652.980148px;}
.y184{bottom:653.634153px;}
.yda{bottom:655.369492px;}
.y1bc{bottom:655.516800px;}
.y216{bottom:661.215912px;}
.y183{bottom:661.924942px;}
.yb{bottom:662.085022px;}
.y254{bottom:662.387238px;}
.y124{bottom:664.859985px;}
.y123{bottom:664.860580px;}
.y8e{bottom:664.980148px;}
.y4e{bottom:667.980148px;}
.y1bb{bottom:668.116791px;}
.yd9{bottom:670.369492px;}
.y179{bottom:671.637450px;}
.y215{bottom:673.815903px;}
.yba{bottom:674.579407px;}
.y253{bottom:677.387238px;}
.y126{bottom:677.643768px;}
.y12d{bottom:677.797943px;}
.y127{bottom:678.417755px;}
.ya{bottom:678.585022px;}
.y180{bottom:678.735794px;}
.y8d{bottom:679.980148px;}
.y1ba{bottom:680.716782px;}
.y175{bottom:680.758942px;}
.y4d{bottom:682.980148px;}
.y17f{bottom:683.218964px;}
.yd8{bottom:685.369492px;}
.y12c{bottom:686.342239px;}
.y214{bottom:686.415894px;}
.y129{bottom:686.460754px;}
.y1af{bottom:687.659271px;}
.y178{bottom:688.081970px;}
.yb9{bottom:689.579407px;}
.y252{bottom:692.387238px;}
.y10c{bottom:692.459381px;}
.y1b9{bottom:693.316818px;}
.y8c{bottom:694.980148px;}
.y9{bottom:695.085022px;}
.y4c{bottom:697.980148px;}
.y213{bottom:699.015884px;}
.yd7{bottom:700.369492px;}
.yb8{bottom:704.579407px;}
.y1b8{bottom:705.916809px;}
.y251{bottom:707.387238px;}
.y10b{bottom:707.459381px;}
.y8{bottom:711.585022px;}
.y212{bottom:711.615921px;}
.y4b{bottom:712.980148px;}
.y122{bottom:713.691605px;}
.yd6{bottom:715.369492px;}
.y173{bottom:715.561798px;}
.y1b7{bottom:718.516800px;}
.y250{bottom:722.387238px;}
.y211{bottom:724.215912px;}
.y8b{bottom:724.980148px;}
.y4a{bottom:727.980148px;}
.y7{bottom:728.085022px;}
.y121{bottom:728.691605px;}
.yd5{bottom:730.369492px;}
.y172{bottom:730.561798px;}
.y1b6{bottom:731.116791px;}
.y210{bottom:736.815903px;}
.y24f{bottom:737.387238px;}
.y8a{bottom:739.980148px;}
.y49{bottom:742.980148px;}
.y120{bottom:743.691605px;}
.yd4{bottom:745.369492px;}
.y171{bottom:745.561798px;}
.y20f{bottom:749.415894px;}
.y24e{bottom:752.387238px;}
.y89{bottom:754.980148px;}
.y6{bottom:757.978821px;}
.y48{bottom:757.980148px;}
.y11f{bottom:758.691605px;}
.yd3{bottom:760.369492px;}
.y20e{bottom:762.015884px;}
.y24d{bottom:767.387238px;}
.y88{bottom:769.980194px;}
.y47{bottom:772.980194px;}
.y11e{bottom:773.691559px;}
.y20d{bottom:774.615875px;}
.yd2{bottom:775.369537px;}
.y5{bottom:775.978821px;}
.y1b5{bottom:782.093262px;}
.y87{bottom:784.980194px;}
.y20c{bottom:787.215912px;}
.y46{bottom:787.980194px;}
.y11d{bottom:788.691559px;}
.yd1{bottom:790.369537px;}
.y170{bottom:790.561798px;}
.y24c{bottom:791.387421px;}
.y20b{bottom:799.815857px;}
.y86{bottom:799.980194px;}
.y45{bottom:802.980194px;}
.yd0{bottom:805.369537px;}
.y24b{bottom:806.387421px;}
.y4{bottom:808.945679px;}
.y20a{bottom:812.415894px;}
.y1b4{bottom:813.593262px;}
.y85{bottom:814.980194px;}
.y44{bottom:817.980194px;}
.y161{bottom:818.317474px;}
.y15f{bottom:818.317841px;}
.ycf{bottom:820.369537px;}
.y209{bottom:825.015930px;}
.y1b3{bottom:828.593262px;}
.y24a{bottom:828.955811px;}
.y84{bottom:829.980194px;}
.y166{bottom:831.100017px;}
.y168{bottom:831.100616px;}
.y43{bottom:832.980194px;}
.y11c{bottom:833.691559px;}
.yce{bottom:835.369537px;}
.y208{bottom:837.615875px;}
.y16f{bottom:841.340879px;}
.y1b2{bottom:843.593262px;}
.y83{bottom:844.980194px;}
.y42{bottom:847.980194px;}
.y16e{bottom:849.631622px;}
.y207{bottom:850.215912px;}
.ycd{bottom:850.369537px;}
.y249{bottom:851.524384px;}
.y3{bottom:853.945679px;}
.y164{bottom:859.344177px;}
.y82{bottom:859.980194px;}
.y119{bottom:861.446960px;}
.y118{bottom:861.447418px;}
.y206{bottom:862.815857px;}
.y41{bottom:862.980194px;}
.y11b{bottom:864.792297px;}
.ycc{bottom:865.369537px;}
.y16b{bottom:866.442520px;}
.y248{bottom:866.524384px;}
.y160{bottom:868.465668px;}
.y16a{bottom:870.925690px;}
.y81{bottom:874.980194px;}
.y205{bottom:875.415894px;}
.y163{bottom:875.788605px;}
.y1b1{bottom:876.593262px;}
.y40{bottom:877.980194px;}
.ycb{bottom:880.369537px;}
.y204{bottom:888.015930px;}
.y117{bottom:891.093475px;}
.y1b0{bottom:891.593262px;}
.y3f{bottom:892.980194px;}
.yca{bottom:895.369537px;}
.y2{bottom:898.945679px;}
.y247{bottom:899.524384px;}
.y203{bottom:900.615875px;}
.y15e{bottom:903.268616px;}
.y80{bottom:904.980194px;}
.y116{bottom:906.093475px;}
.y3e{bottom:907.980194px;}
.yc9{bottom:910.369537px;}
.y202{bottom:913.215912px;}
.y246{bottom:914.524384px;}
.y15d{bottom:918.268616px;}
.y7f{bottom:919.980194px;}
.y115{bottom:921.093475px;}
.y3d{bottom:922.980194px;}
.yc8{bottom:925.369537px;}
.y201{bottom:925.815857px;}
.y15c{bottom:933.268616px;}
.y7e{bottom:934.980194px;}
.y3c{bottom:937.980194px;}
.y200{bottom:938.415894px;}
.yc7{bottom:940.369537px;}
.y1{bottom:943.945679px;}
.y245{bottom:947.524384px;}
.y15b{bottom:948.268616px;}
.y1f3{bottom:949.454407px;}
.y7d{bottom:949.980194px;}
.y1ff{bottom:951.015930px;}
.y2e{bottom:952.050934px;}
.y3b{bottom:952.980194px;}
.y15a{bottom:963.268616px;}
.y1fe{bottom:963.615875px;}
.y7c{bottom:964.980194px;}
.y1f2{bottom:965.954407px;}
.y114{bottom:966.093475px;}
.y3a{bottom:967.980194px;}
.yc3{bottom:968.794464px;}
.y1fd{bottom:976.215912px;}
.y159{bottom:978.268616px;}
.yc2{bottom:979.444519px;}
.yc6{bottom:979.554016px;}
.y7b{bottom:979.980194px;}
.y244{bottom:980.524384px;}
.y1f1{bottom:982.454407px;}
.y39{bottom:982.980194px;}
.y1fc{bottom:988.815857px;}
.y10e{bottom:993.848968px;}
.y10d{bottom:993.849335px;}
.y7a{bottom:994.980194px;}
.y243{bottom:995.524384px;}
.yc1{bottom:997.669464px;}
.y38{bottom:997.980194px;}
.y113{bottom:999.436523px;}
.y110{bottom:999.751648px;}
.y1fb{bottom:1001.415894px;}
.y79{bottom:1009.980194px;}
.y242{bottom:1010.524384px;}
.yc0{bottom:1012.669464px;}
.y37{bottom:1012.980194px;}
.y1fa{bottom:1014.015930px;}
.y1f0{bottom:1015.081055px;}
.y158{bottom:1023.268616px;}
.y78{bottom:1024.980194px;}
.y241{bottom:1025.524384px;}
.y1f9{bottom:1026.615875px;}
.ybf{bottom:1027.669464px;}
.y36{bottom:1027.980194px;}
.y1ef{bottom:1032.664032px;}
.y1f8{bottom:1039.215912px;}
.y240{bottom:1040.524384px;}
.ybe{bottom:1042.669464px;}
.y35{bottom:1042.980194px;}
.y1ee{bottom:1050.537872px;}
.y150{bottom:1051.024475px;}
.y1f7{bottom:1051.815857px;}
.y23f{bottom:1055.524384px;}
.ybd{bottom:1057.669464px;}
.y34{bottom:1057.980194px;}
.y156{bottom:1060.074188px;}
.y152{bottom:1061.853149px;}
.y1f6{bottom:1064.415894px;}
.y1ed{bottom:1068.532654px;}
.y23e{bottom:1070.524384px;}
.y151{bottom:1070.974640px;}
.ybc{bottom:1072.669464px;}
.y33{bottom:1072.980194px;}
.y1f5{bottom:1077.015930px;}
.y154{bottom:1079.791626px;}
.y23d{bottom:1085.524384px;}
.y1ec{bottom:1086.198120px;}
.ybb{bottom:1087.669464px;}
.y32{bottom:1087.980194px;}
.y1f4{bottom:1089.615875px;}
.y31{bottom:1140.708343px;}
.y77{bottom:1140.800079px;}
.h21{height:2.391024px;}
.h2e{height:10.282791px;}
.h1f{height:14.190000px;}
.h20{height:18.675000px;}
.h30{height:19.905274px;}
.h1b{height:21.298500px;}
.h28{height:21.300000px;}
.h1d{height:25.249382px;}
.hd{height:25.798827px;}
.h25{height:27.544781px;}
.ha{height:30.939697px;}
.h22{height:33.376499px;}
.h10{height:34.523438px;}
.h2d{height:35.116499px;}
.h41{height:35.411133px;}
.hc{height:36.681152px;}
.h2a{height:37.245000px;}
.h1e{height:37.927872px;}
.h1c{height:40.348800px;}
.h31{height:40.645440px;}
.h11{height:43.154297px;}
.h46{height:43.566468px;}
.h47{height:43.566834px;}
.h6{height:43.690430px;}
.h44{height:44.505000px;}
.h45{height:44.595835px;}
.h42{height:45.090000px;}
.hf{height:45.679688px;}
.h43{height:46.080000px;}
.h33{height:46.770000px;}
.hb{height:48.534668px;}
.h17{height:48.544922px;}
.h16{height:53.399414px;}
.h7{height:53.406000px;}
.h18{height:54.108000px;}
.h5{height:54.681335px;}
.h19{height:55.296000px;}
.h12{height:56.013350px;}
.h3e{height:56.013620px;}
.h8{height:56.014083px;}
.h3f{height:56.014170px;}
.h13{height:56.014174px;}
.h15{height:56.014197px;}
.h14{height:56.014220px;}
.h1a{height:56.014222px;}
.h9{height:56.014266px;}
.h27{height:56.505483px;}
.h4{height:57.128906px;}
.h23{height:62.671379px;}
.h40{height:62.841797px;}
.h36{height:69.495003px;}
.h24{height:70.099315px;}
.h26{height:72.735437px;}
.h32{height:75.156365px;}
.h38{height:75.642947px;}
.h3b{height:75.643135px;}
.h37{height:76.824115px;}
.h2f{height:82.897393px;}
.h34{height:84.690712px;}
.h3c{height:85.179049px;}
.h39{height:85.179232px;}
.h3d{height:85.302067px;}
.h3a{height:85.302617px;}
.h2b{height:91.372827px;}
.h35{height:95.746576px;}
.h29{height:98.356796px;}
.he{height:102.832031px;}
.h3{height:126.216797px;}
.h2c{height:131.041408px;}
.h2{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w5{width:97.830002px;}
.w2{width:118.169998px;}
.w7{width:144.089996px;}
.w4{width:170.504997px;}
.w3{width:221.219994px;}
.w8{width:227.384995px;}
.w6{width:236.759995px;}
.w9{width:267.831000px;}
.wa{width:356.879997px;}
.wb{width:372.165000px;}
.wc{width:379.065010px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:3.467697px;}
.x2f{left:28.497025px;}
.x16{left:36.814636px;}
.xb{left:37.895690px;}
.x26{left:50.280121px;}
.xd{left:51.559181px;}
.x23{left:60.142639px;}
.x4{left:61.653448px;}
.x18{left:66.588135px;}
.x32{left:69.064636px;}
.x25{left:71.502136px;}
.x4e{left:78.067520px;}
.x4b{left:82.323029px;}
.x10{left:100.507210px;}
.x1a{left:104.967133px;}
.x7{left:108.378445px;}
.x28{left:112.632156px;}
.x42{left:131.325027px;}
.x34{left:137.155655px;}
.x3{left:140.352448px;}
.x1c{left:142.048645px;}
.x35{left:147.874649px;}
.x37{left:168.802643px;}
.x44{left:179.604172px;}
.x2a{left:187.975662px;}
.x2c{left:192.111145px;}
.x3b{left:215.848618px;}
.x39{left:222.019638px;}
.x1{left:233.858253px;}
.x51{left:236.804993px;}
.x5c{left:238.569443px;}
.x58{left:243.705139px;}
.x2{left:251.858253px;}
.x5b{left:252.992249px;}
.x47{left:260.608658px;}
.x8{left:289.815010px;}
.xa{left:318.311691px;}
.x54{left:331.333511px;}
.xc{left:333.086700px;}
.x4a{left:334.783493px;}
.x4d{left:336.583553px;}
.x5{left:338.775604px;}
.x3f{left:342.425995px;}
.xe{left:346.750191px;}
.x3d{left:352.113144px;}
.x53{left:360.769661px;}
.x49{left:364.219505px;}
.xf{left:380.923210px;}
.x31{left:386.950516px;}
.x3e{left:397.527145px;}
.x20{left:402.486008px;}
.x11{left:407.984711px;}
.x12{left:410.255997px;}
.x21{left:412.174667px;}
.x55{left:416.313171px;}
.x4c{left:419.763016px;}
.x41{left:424.195633px;}
.x22{left:434.565170px;}
.x14{left:435.613495px;}
.x40{left:437.071655px;}
.x15{left:447.132156px;}
.x2e{left:448.820984px;}
.x56{left:451.662140px;}
.x4f{left:455.111984px;}
.x24{left:468.004669px;}
.x1e{left:471.951004px;}
.x17{left:477.804153px;}
.x27{left:485.460159px;}
.x43{left:487.574982px;}
.x33{left:503.668671px;}
.x57{left:515.149658px;}
.x50{left:518.599503px;}
.x19{left:526.006668px;}
.x45{left:535.335022px;}
.x29{left:537.388641px;}
.x36{left:543.529633px;}
.x38{left:568.518127px;}
.x1f{left:569.781143px;}
.x1b{left:571.236145px;}
.x59{left:575.038650px;}
.x6{left:585.853363px;}
.x46{left:587.676132px;}
.x52{left:588.710999px;}
.x30{left:592.910980px;}
.x1d{left:606.118652px;}
.x3a{left:608.970154px;}
.x2b{left:615.142639px;}
.x48{left:616.858658px;}
.x5a{left:621.033142px;}
.x13{left:631.476013px;}
.x2d{left:639.246140px;}
.x3c{left:654.781631px;}
@media print{
.v7{vertical-align:-41.711914pt;}
.ve{vertical-align:-26.725341pt;}
.v2{vertical-align:-16.560059pt;}
.v4{vertical-align:-15.639974pt;}
.v17{vertical-align:-12.879882pt;}
.v12{vertical-align:-6.629313pt;}
.v6{vertical-align:-5.312010pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.325789pt;}
.v11{vertical-align:8.373372pt;}
.v10{vertical-align:13.685384pt;}
.v5{vertical-align:15.639974pt;}
.v3{vertical-align:16.559896pt;}
.v1{vertical-align:18.400065pt;}
.vf{vertical-align:20.302618pt;}
.v13{vertical-align:22.730794pt;}
.v9{vertical-align:28.596838pt;}
.va{vertical-align:30.940058pt;}
.v8{vertical-align:33.263997pt;}
.v16{vertical-align:34.266927pt;}
.v14{vertical-align:37.636068pt;}
.vd{vertical-align:42.794681pt;}
.vb{vertical-align:51.562663pt;}
.v15{vertical-align:73.589518pt;}
.ls5a{letter-spacing:-4.320000pt;}
.ls61{letter-spacing:-2.920000pt;}
.lsd{letter-spacing:-1.776000pt;}
.ls53{letter-spacing:-1.240000pt;}
.ls58{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.912000pt;}
.ls57{letter-spacing:-0.760000pt;}
.ls24{letter-spacing:-0.739200pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.537600pt;}
.ls55{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.436800pt;}
.ls3e{letter-spacing:-0.432000pt;}
.ls60{letter-spacing:-0.400000pt;}
.ls59{letter-spacing:-0.287467pt;}
.ls62{letter-spacing:-0.280000pt;}
.ls54{letter-spacing:-0.200000pt;}
.ls56{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000003pt;}
.lsf{letter-spacing:0.000005pt;}
.ls5{letter-spacing:0.000007pt;}
.ls8{letter-spacing:0.000008pt;}
.ls4{letter-spacing:0.000011pt;}
.ls15{letter-spacing:0.000031pt;}
.ls10{letter-spacing:0.000039pt;}
.ls11{letter-spacing:0.000046pt;}
.ls6{letter-spacing:0.000062pt;}
.ls1a{letter-spacing:0.000068pt;}
.ls3c{letter-spacing:0.000073pt;}
.ls5b{letter-spacing:0.000077pt;}
.ls16{letter-spacing:0.000078pt;}
.ls3{letter-spacing:0.000092pt;}
.ls33{letter-spacing:0.000100pt;}
.ls48{letter-spacing:0.000187pt;}
.ls41{letter-spacing:0.000217pt;}
.ls7{letter-spacing:0.000255pt;}
.ls36{letter-spacing:0.005212pt;}
.ls3b{letter-spacing:0.008209pt;}
.ls23{letter-spacing:0.009461pt;}
.ls9{letter-spacing:0.010159pt;}
.ls28{letter-spacing:0.011045pt;}
.ls2{letter-spacing:0.011616pt;}
.ls0{letter-spacing:0.012834pt;}
.ls1{letter-spacing:0.013322pt;}
.ls29{letter-spacing:0.016417pt;}
.ls2a{letter-spacing:0.016740pt;}
.ls20{letter-spacing:0.023429pt;}
.ls4a{letter-spacing:0.024039pt;}
.ls2b{letter-spacing:0.031193pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls17{letter-spacing:0.620764pt;}
.ls4d{letter-spacing:0.874427pt;}
.ls50{letter-spacing:1.568112pt;}
.ls5c{letter-spacing:1.674557pt;}
.ls5e{letter-spacing:1.675859pt;}
.ls13{letter-spacing:1.954749pt;}
.ls1b{letter-spacing:2.308346pt;}
.ls3d{letter-spacing:2.486682pt;}
.ls4c{letter-spacing:2.551428pt;}
.ls21{letter-spacing:2.659666pt;}
.lsa{letter-spacing:2.666667pt;}
.ls43{letter-spacing:2.670429pt;}
.ls42{letter-spacing:2.670591pt;}
.ls35{letter-spacing:2.675800pt;}
.ls44{letter-spacing:2.676288pt;}
.ls5f{letter-spacing:3.157305pt;}
.ls51{letter-spacing:3.320065pt;}
.ls12{letter-spacing:3.910396pt;}
.ls5d{letter-spacing:4.417721pt;}
.ls4e{letter-spacing:5.219805pt;}
.ls3a{letter-spacing:6.361207pt;}
.ls38{letter-spacing:6.391062pt;}
.ls2c{letter-spacing:8.159068pt;}
.ls27{letter-spacing:8.177357pt;}
.ls4f{letter-spacing:9.267982pt;}
.ls2f{letter-spacing:9.898906pt;}
.ls32{letter-spacing:10.711859pt;}
.ls22{letter-spacing:10.903142pt;}
.ls1f{letter-spacing:10.950963pt;}
.ls1d{letter-spacing:11.955200pt;}
.ls1e{letter-spacing:13.582355pt;}
.ls26{letter-spacing:13.628928pt;}
.ls4b{letter-spacing:13.640348pt;}
.ls47{letter-spacing:13.645556pt;}
.ls2e{letter-spacing:13.676749pt;}
.ls31{letter-spacing:14.585344pt;}
.ls49{letter-spacing:16.163430pt;}
.ls37{letter-spacing:16.230022pt;}
.ls39{letter-spacing:20.036915pt;}
.ls3f{letter-spacing:24.532070pt;}
.ls2d{letter-spacing:28.166451pt;}
.ls40{letter-spacing:29.505434pt;}
.ls46{letter-spacing:32.326861pt;}
.ls45{letter-spacing:89.278807pt;}
.ls52{letter-spacing:98.242253pt;}
.ls34{letter-spacing:542.739173pt;}
.ls30{letter-spacing:639.779700pt;}
.wsae{word-spacing:-24.579891pt;}
.wsac{word-spacing:-24.532070pt;}
.ws87{word-spacing:-13.676749pt;}
.wsa1{word-spacing:-13.628928pt;}
.ws4{word-spacing:-13.333333pt;}
.wsc6{word-spacing:-12.085333pt;}
.ws75{word-spacing:-12.000000pt;}
.ws52{word-spacing:-10.992000pt;}
.ws1{word-spacing:-10.896000pt;}
.ws112{word-spacing:-10.416000pt;}
.ws2{word-spacing:-9.120000pt;}
.wsc9{word-spacing:-9.080000pt;}
.wsc8{word-spacing:-8.960000pt;}
.wsf4{word-spacing:-8.880000pt;}
.wsf3{word-spacing:-8.760000pt;}
.wsc7{word-spacing:-8.680000pt;}
.wsf2{word-spacing:-8.400000pt;}
.wsca{word-spacing:-8.320000pt;}
.ws8a{word-spacing:-8.225178pt;}
.wscc{word-spacing:-8.200000pt;}
.wsa0{word-spacing:-8.177357pt;}
.ws62{word-spacing:-7.694400pt;}
.ws0{word-spacing:-7.627200pt;}
.ws86{word-spacing:-7.257600pt;}
.ws53{word-spacing:-7.156800pt;}
.ws85{word-spacing:-6.955200pt;}
.ws3{word-spacing:-6.346666pt;}
.ws10e{word-spacing:-6.240000pt;}
.wsfe{word-spacing:-6.160000pt;}
.wscd{word-spacing:-5.435733pt;}
.ws110{word-spacing:-5.328000pt;}
.ws5b{word-spacing:-4.896000pt;}
.ws3b{word-spacing:-4.320000pt;}
.ws4c{word-spacing:-4.224000pt;}
.ws57{word-spacing:-3.696000pt;}
.ws42{word-spacing:-3.427200pt;}
.ws61{word-spacing:-3.216000pt;}
.wsab{word-spacing:-3.072000pt;}
.wsf0{word-spacing:-2.665600pt;}
.ws95{word-spacing:-2.640000pt;}
.ws7c{word-spacing:-2.592000pt;}
.ws39{word-spacing:-2.544000pt;}
.ws9b{word-spacing:-2.534502pt;}
.ws67{word-spacing:-2.448000pt;}
.wsef{word-spacing:-2.404267pt;}
.ws82{word-spacing:-2.256000pt;}
.wsa8{word-spacing:-2.064000pt;}
.ws37{word-spacing:-2.016000pt;}
.wsc0{word-spacing:-1.968000pt;}
.ws63{word-spacing:-1.920000pt;}
.ws34{word-spacing:-1.776000pt;}
.ws36{word-spacing:-1.728000pt;}
.wse3{word-spacing:-1.720000pt;}
.ws71{word-spacing:-1.680000pt;}
.ws10f{word-spacing:-1.632000pt;}
.wsd6{word-spacing:-1.600000pt;}
.ws64{word-spacing:-1.536000pt;}
.ws48{word-spacing:-1.488000pt;}
.ws1f{word-spacing:-1.440000pt;}
.wsbd{word-spacing:-1.392000pt;}
.ws100{word-spacing:-1.360000pt;}
.ws17{word-spacing:-1.344000pt;}
.ws40{word-spacing:-1.296000pt;}
.ws3e{word-spacing:-1.248000pt;}
.ws4f{word-spacing:-1.200000pt;}
.wsd9{word-spacing:-1.160000pt;}
.wse0{word-spacing:-1.120000pt;}
.wsdf{word-spacing:-1.080000pt;}
.ws4e{word-spacing:-1.056000pt;}
.ws97{word-spacing:-1.008000pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws56{word-spacing:-0.864000pt;}
.ws104{word-spacing:-0.800000pt;}
.ws30{word-spacing:-0.768000pt;}
.wsbe{word-spacing:-0.672000pt;}
.wse1{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.480000pt;}
.wsd{word-spacing:-0.432000pt;}
.ws54{word-spacing:-0.384000pt;}
.ws60{word-spacing:-0.336000pt;}
.ws1e{word-spacing:-0.240000pt;}
.wsfd{word-spacing:-0.200000pt;}
.ws13{word-spacing:-0.192000pt;}
.wsf1{word-spacing:-0.186667pt;}
.wse2{word-spacing:-0.160000pt;}
.ws6b{word-spacing:-0.144000pt;}
.wsf8{word-spacing:-0.120000pt;}
.ws49{word-spacing:-0.096000pt;}
.ws108{word-spacing:-0.080000pt;}
.ws1b{word-spacing:-0.048000pt;}
.ws88{word-spacing:-0.047821pt;}
.wscb{word-spacing:-0.040000pt;}
.wsd0{word-spacing:-0.037333pt;}
.ws9a{word-spacing:-0.031881pt;}
.ws5{word-spacing:0.000000pt;}
.ws70{word-spacing:0.048000pt;}
.ws1a{word-spacing:0.096000pt;}
.wsc3{word-spacing:0.144000pt;}
.wsda{word-spacing:0.160000pt;}
.wsf9{word-spacing:0.200000pt;}
.ws68{word-spacing:0.240000pt;}
.ws8{word-spacing:0.336000pt;}
.ws96{word-spacing:0.384000pt;}
.ws6e{word-spacing:0.432000pt;}
.wsd7{word-spacing:0.440000pt;}
.ws80{word-spacing:0.480000pt;}
.ws109{word-spacing:0.520000pt;}
.ws73{word-spacing:0.576000pt;}
.ws14{word-spacing:0.624000pt;}
.ws6a{word-spacing:0.720000pt;}
.ws2a{word-spacing:0.768000pt;}
.ws32{word-spacing:0.816000pt;}
.wsa3{word-spacing:0.864000pt;}
.wsd8{word-spacing:0.880000pt;}
.ws4b{word-spacing:0.912000pt;}
.ws69{word-spacing:0.960000pt;}
.ws90{word-spacing:1.008000pt;}
.wsed{word-spacing:1.040000pt;}
.ws78{word-spacing:1.056000pt;}
.ws4a{word-spacing:1.152000pt;}
.ws44{word-spacing:1.200000pt;}
.wsd3{word-spacing:1.240000pt;}
.ws46{word-spacing:1.248000pt;}
.ws107{word-spacing:1.280000pt;}
.ws43{word-spacing:1.296000pt;}
.ws8f{word-spacing:1.344000pt;}
.ws26{word-spacing:1.392000pt;}
.ws105{word-spacing:1.400000pt;}
.ws20{word-spacing:1.440000pt;}
.ws3d{word-spacing:1.488000pt;}
.wsc5{word-spacing:1.536000pt;}
.wsea{word-spacing:1.560000pt;}
.ws79{word-spacing:1.584000pt;}
.wseb{word-spacing:1.600000pt;}
.ws8c{word-spacing:1.632000pt;}
.wsfb{word-spacing:1.640000pt;}
.ws2f{word-spacing:1.680000pt;}
.wse7{word-spacing:1.720000pt;}
.ws115{word-spacing:1.728000pt;}
.ws4d{word-spacing:1.776000pt;}
.wsfc{word-spacing:1.800000pt;}
.ws81{word-spacing:1.824000pt;}
.ws2d{word-spacing:1.872000pt;}
.ws10c{word-spacing:1.960000pt;}
.ws5c{word-spacing:1.968000pt;}
.ws7d{word-spacing:2.016000pt;}
.ws29{word-spacing:2.064000pt;}
.wse9{word-spacing:2.120000pt;}
.ws83{word-spacing:2.160000pt;}
.ws19{word-spacing:2.221333pt;}
.ws6f{word-spacing:2.256000pt;}
.wse8{word-spacing:2.280000pt;}
.ws3c{word-spacing:2.304000pt;}
.ws31{word-spacing:2.400000pt;}
.ws106{word-spacing:2.440000pt;}
.ws58{word-spacing:2.448000pt;}
.ws77{word-spacing:2.544000pt;}
.wsd2{word-spacing:2.560000pt;}
.ws5d{word-spacing:2.592000pt;}
.ws118{word-spacing:2.640000pt;}
.ws50{word-spacing:2.688000pt;}
.ws7a{word-spacing:2.736000pt;}
.ws113{word-spacing:2.784000pt;}
.wsaa{word-spacing:2.832000pt;}
.ws7b{word-spacing:2.880000pt;}
.ws2e{word-spacing:2.928000pt;}
.wsb6{word-spacing:2.976000pt;}
.wsdc{word-spacing:3.040000pt;}
.ws117{word-spacing:3.072000pt;}
.ws9{word-spacing:3.120000pt;}
.ws101{word-spacing:3.160000pt;}
.ws10d{word-spacing:3.200000pt;}
.ws47{word-spacing:3.264000pt;}
.wsfa{word-spacing:3.280000pt;}
.ws72{word-spacing:3.312000pt;}
.wsd5{word-spacing:3.320000pt;}
.ws7e{word-spacing:3.360000pt;}
.ws3a{word-spacing:3.408000pt;}
.wsdb{word-spacing:3.440000pt;}
.ws94{word-spacing:3.456000pt;}
.wsbc{word-spacing:3.504000pt;}
.ws76{word-spacing:3.552000pt;}
.ws41{word-spacing:3.600000pt;}
.ws23{word-spacing:3.648000pt;}
.wsf5{word-spacing:3.720000pt;}
.wse6{word-spacing:3.760000pt;}
.ws116{word-spacing:3.792000pt;}
.wsc{word-spacing:3.840000pt;}
.ws11{word-spacing:3.888000pt;}
.ws35{word-spacing:3.936000pt;}
.ws65{word-spacing:3.984000pt;}
.wsf{word-spacing:4.032000pt;}
.ws2c{word-spacing:4.128000pt;}
.ws28{word-spacing:4.320000pt;}
.ws16{word-spacing:4.368000pt;}
.ws10a{word-spacing:4.400000pt;}
.ws10b{word-spacing:4.440000pt;}
.ws6{word-spacing:4.560000pt;}
.ws66{word-spacing:4.608000pt;}
.ws3f{word-spacing:4.656000pt;}
.ws114{word-spacing:4.752000pt;}
.ws12{word-spacing:4.800000pt;}
.ws5f{word-spacing:4.848000pt;}
.wsec{word-spacing:4.880000pt;}
.ws1c{word-spacing:4.896000pt;}
.wsc4{word-spacing:4.944000pt;}
.ws55{word-spacing:5.136000pt;}
.ws5e{word-spacing:5.184000pt;}
.wsdd{word-spacing:5.240000pt;}
.wsa5{word-spacing:5.280000pt;}
.ws27{word-spacing:5.424000pt;}
.ws84{word-spacing:5.472000pt;}
.ws102{word-spacing:5.520000pt;}
.ws38{word-spacing:5.568000pt;}
.ws33{word-spacing:5.616000pt;}
.ws24{word-spacing:5.712000pt;}
.ws45{word-spacing:5.904000pt;}
.wsa{word-spacing:5.952000pt;}
.wsf7{word-spacing:6.000000pt;}
.wsf6{word-spacing:6.080000pt;}
.wsbb{word-spacing:6.096000pt;}
.ws103{word-spacing:6.160000pt;}
.ws92{word-spacing:6.192000pt;}
.ws8d{word-spacing:6.288000pt;}
.wsb4{word-spacing:6.336000pt;}
.wsb5{word-spacing:6.384000pt;}
.wse{word-spacing:6.432000pt;}
.ws111{word-spacing:6.480000pt;}
.wsbf{word-spacing:6.528000pt;}
.ws5a{word-spacing:7.008000pt;}
.ws59{word-spacing:7.152000pt;}
.ws98{word-spacing:7.296000pt;}
.wsba{word-spacing:7.344000pt;}
.wse4{word-spacing:7.400000pt;}
.wsd1{word-spacing:7.440000pt;}
.ws8e{word-spacing:7.488000pt;}
.ws91{word-spacing:7.632000pt;}
.ws6d{word-spacing:7.872000pt;}
.ws10{word-spacing:8.016000pt;}
.ws93{word-spacing:8.112000pt;}
.ws7{word-spacing:8.256000pt;}
.wsff{word-spacing:8.320000pt;}
.ws9c{word-spacing:8.320819pt;}
.ws25{word-spacing:8.400000pt;}
.ws18{word-spacing:8.477333pt;}
.wsd4{word-spacing:8.480000pt;}
.ws51{word-spacing:8.928000pt;}
.wsc1{word-spacing:9.264000pt;}
.wsde{word-spacing:9.280000pt;}
.ws2b{word-spacing:9.312000pt;}
.ws7f{word-spacing:9.360000pt;}
.wsb8{word-spacing:9.504000pt;}
.wsb{word-spacing:9.648000pt;}
.ws22{word-spacing:9.792000pt;}
.ws6c{word-spacing:10.272000pt;}
.ws89{word-spacing:10.818655pt;}
.ws8b{word-spacing:10.834603pt;}
.ws9e{word-spacing:10.840975pt;}
.ws9d{word-spacing:10.855322pt;}
.wsee{word-spacing:11.440000pt;}
.wse5{word-spacing:11.920000pt;}
.ws74{word-spacing:13.566762pt;}
.ws21{word-spacing:15.792000pt;}
.wsc2{word-spacing:16.608000pt;}
.wsb0{word-spacing:19.941274pt;}
.wsb2{word-spacing:22.641821pt;}
.wsb1{word-spacing:22.641984pt;}
.wscf{word-spacing:29.324792pt;}
.wsaf{word-spacing:29.361971pt;}
.ws9f{word-spacing:42.578286pt;}
.wsce{word-spacing:81.069314pt;}
.wsb9{word-spacing:339.551994pt;}
.wsb7{word-spacing:374.832000pt;}
.wsb3{word-spacing:402.000000pt;}
.wsad{word-spacing:560.351990pt;}
.wsa6{word-spacing:615.552000pt;}
.wsa9{word-spacing:632.256000pt;}
.ws99{word-spacing:643.199982pt;}
.wsa2{word-spacing:733.343994pt;}
.wsa7{word-spacing:780.336000pt;}
.wsa4{word-spacing:862.559967pt;}
._1a{margin-left:-21.000000pt;}
._17{margin-left:-18.360000pt;}
._23{margin-left:-17.400000pt;}
._19{margin-left:-16.480000pt;}
._15{margin-left:-14.809607pt;}
._13{margin-left:-13.581107pt;}
._b{margin-left:-12.146351pt;}
._12{margin-left:-10.768282pt;}
._d{margin-left:-9.375152pt;}
._11{margin-left:-8.097879pt;}
._f{margin-left:-6.699375pt;}
._a{margin-left:-5.061170pt;}
._1{margin-left:-3.673911pt;}
._2{margin-left:-2.508489pt;}
._0{margin-left:-1.547252pt;}
._4{width:1.009652pt;}
._6{width:2.244000pt;}
._5{width:4.039200pt;}
._10{width:4.960040pt;}
._7{width:5.922089pt;}
._8{width:7.683999pt;}
._e{width:8.807883pt;}
._1b{width:9.946351pt;}
._c{width:11.880000pt;}
._16{width:12.880000pt;}
._18{width:13.897879pt;}
._3{width:15.818167pt;}
._14{width:20.027561pt;}
._1c{width:38.329709pt;}
._1d{width:46.017486pt;}
._20{width:49.994213pt;}
._1f{width:75.331703pt;}
._21{width:90.066647pt;}
._1e{width:233.508294pt;}
._22{width:1986.533987pt;}
._9{width:2013.877412pt;}
.fsf{font-size:26.133333pt;}
.fsd{font-size:26.566933pt;}
.fs5{font-size:31.733332pt;}
.fsb{font-size:31.880533pt;}
.fs4{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsa{font-size:47.820800pt;}
.fs3{font-size:48.000000pt;}
.fsc{font-size:53.133865pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs0{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:1.594727pt;}
.y137{bottom:1.595459pt;}
.y147{bottom:2.591736pt;}
.y109{bottom:3.254002pt;}
.y167{bottom:3.254801pt;}
.y17c{bottom:3.255046pt;}
.y11a{bottom:3.255127pt;}
.y12a{bottom:3.255330pt;}
.y10f{bottom:5.246826pt;}
.y157{bottom:8.044189pt;}
.yc4{bottom:9.564046pt;}
.y136{bottom:9.564819pt;}
.y155{bottom:9.625488pt;}
.y112{bottom:10.989502pt;}
.y125{bottom:11.363363pt;}
.y16d{bottom:14.883124pt;}
.y182{bottom:14.883328pt;}
.y111{bottom:15.674805pt;}
.y16c{bottom:18.868164pt;}
.y181{bottom:18.868368pt;}
.y128{bottom:19.200684pt;}
.y13e{bottom:20.622274pt;}
.y12b{bottom:24.174032pt;}
.y2f{bottom:24.563600pt;}
.y30{bottom:24.571599pt;}
.y149{bottom:25.113067pt;}
.y14a{bottom:26.637075pt;}
.y153{bottom:36.130859pt;}
.y165{bottom:52.308187pt;}
.y17a{bottom:52.308390pt;}
.y162{bottom:52.413493pt;}
.y177{bottom:52.413696pt;}
.y1eb{bottom:56.281600pt;}
.y169{bottom:58.718831pt;}
.y17e{bottom:58.719035pt;}
.y76{bottom:60.426799pt;}
.y1ab{bottom:64.184667pt;}
.y2d{bottom:64.382400pt;}
.y1a5{bottom:66.537735pt;}
.y1ea{bottom:67.481598pt;}
.yb7{bottom:67.917867pt;}
.y92{bottom:69.799998pt;}
.y107{bottom:71.068665pt;}
.y108{bottom:71.069331pt;}
.y75{bottom:73.760132pt;}
.y2c{bottom:73.805735pt;}
.y10a{bottom:74.041733pt;}
.y1aa{bottom:77.518000pt;}
.y1e9{bottom:78.681600pt;}
.y1a4{bottom:79.871068pt;}
.yb6{bottom:81.251200pt;}
.y91{bottom:83.133331pt;}
.y74{bottom:87.093465pt;}
.y2b{bottom:87.139069pt;}
.y14f{bottom:87.830536pt;}
.y1e8{bottom:89.881733pt;}
.y1a9{bottom:90.851329pt;}
.y1a3{bottom:93.204397pt;}
.yb5{bottom:94.584533pt;}
.y106{bottom:97.420532pt;}
.y23c{bottom:100.280802pt;}
.y73{bottom:100.426799pt;}
.y1e7{bottom:101.081604pt;}
.y14e{bottom:101.163869pt;}
.y1a8{bottom:104.184662pt;}
.y2a{bottom:104.382395pt;}
.y1a2{bottom:106.537730pt;}
.yb4{bottom:107.917867pt;}
.y105{bottom:110.753866pt;}
.y1e6{bottom:112.281596pt;}
.y23b{bottom:113.614136pt;}
.y72{bottom:113.760132pt;}
.y1a7{bottom:117.517995pt;}
.y1a1{bottom:119.871063pt;}
.yb3{bottom:121.251200pt;}
.y1e5{bottom:123.481598pt;}
.y104{bottom:124.087199pt;}
.y23a{bottom:126.947469pt;}
.y71{bottom:127.093465pt;}
.y1a6{bottom:130.851329pt;}
.y1a0{bottom:133.204397pt;}
.y1e4{bottom:134.681600pt;}
.y103{bottom:137.420532pt;}
.y239{bottom:140.280802pt;}
.y70{bottom:140.426799pt;}
.y14d{bottom:141.163869pt;}
.y1e3{bottom:145.881733pt;}
.y29{bottom:147.848133pt;}
.yb2{bottom:147.917867pt;}
.y102{bottom:150.753866pt;}
.y238{bottom:153.614136pt;}
.y6f{bottom:153.760132pt;}
.y1e2{bottom:157.081604pt;}
.y28{bottom:161.181467pt;}
.yb1{bottom:161.251200pt;}
.y19f{bottom:162.537730pt;}
.y101{bottom:164.087199pt;}
.y146{bottom:165.834666pt;}
.y145{bottom:165.835733pt;}
.y237{bottom:166.947469pt;}
.y6e{bottom:167.093465pt;}
.y1e1{bottom:168.281596pt;}
.y27{bottom:174.514791pt;}
.yb0{bottom:174.584533pt;}
.y19e{bottom:175.871073pt;}
.y148{bottom:176.534403pt;}
.y100{bottom:177.420532pt;}
.y14c{bottom:178.108927pt;}
.y1e0{bottom:179.481608pt;}
.y236{bottom:180.280802pt;}
.y6d{bottom:180.426799pt;}
.y1ad{bottom:182.283610pt;}
.y14b{bottom:185.923726pt;}
.y26{bottom:187.848124pt;}
.yaf{bottom:187.917867pt;}
.y19d{bottom:189.204407pt;}
.y1df{bottom:190.681600pt;}
.yff{bottom:190.753866pt;}
.y6c{bottom:193.760132pt;}
.y1ac{bottom:195.616943pt;}
.y25{bottom:201.181458pt;}
.yae{bottom:201.251200pt;}
.y1de{bottom:201.881733pt;}
.y19c{bottom:202.537740pt;}
.yfe{bottom:204.087199pt;}
.y6b{bottom:207.093465pt;}
.y235{bottom:209.614136pt;}
.y144{bottom:210.787740pt;}
.y1dd{bottom:213.081604pt;}
.y24{bottom:214.514791pt;}
.yad{bottom:214.584533pt;}
.y19b{bottom:215.871073pt;}
.yfd{bottom:217.420532pt;}
.y6a{bottom:220.426799pt;}
.y234{bottom:222.947469pt;}
.y143{bottom:224.121073pt;}
.y1dc{bottom:224.281596pt;}
.y23{bottom:227.848124pt;}
.yac{bottom:227.917867pt;}
.y19a{bottom:229.204407pt;}
.yfc{bottom:230.753866pt;}
.y69{bottom:233.760132pt;}
.y1db{bottom:235.481608pt;}
.y233{bottom:236.280802pt;}
.y142{bottom:237.454407pt;}
.y22{bottom:241.181458pt;}
.yab{bottom:241.251200pt;}
.y199{bottom:242.537740pt;}
.yfb{bottom:244.087199pt;}
.y1da{bottom:246.681600pt;}
.y68{bottom:247.093465pt;}
.y232{bottom:249.614136pt;}
.y141{bottom:250.787740pt;}
.y21{bottom:254.514791pt;}
.yaa{bottom:254.584533pt;}
.y198{bottom:255.871073pt;}
.yfa{bottom:257.420532pt;}
.y1d9{bottom:257.881733pt;}
.y67{bottom:260.426799pt;}
.y231{bottom:262.947469pt;}
.y20{bottom:267.848124pt;}
.ya9{bottom:267.917867pt;}
.y1d8{bottom:269.081604pt;}
.y197{bottom:269.204407pt;}
.yf9{bottom:270.753866pt;}
.y66{bottom:273.760132pt;}
.y230{bottom:276.280802pt;}
.y1d7{bottom:280.281596pt;}
.y1f{bottom:281.181458pt;}
.ya8{bottom:281.251200pt;}
.y196{bottom:282.537740pt;}
.yf8{bottom:284.087199pt;}
.y65{bottom:287.093465pt;}
.y22f{bottom:289.614136pt;}
.y140{bottom:290.787740pt;}
.y1d6{bottom:291.481608pt;}
.y1e{bottom:294.514791pt;}
.ya7{bottom:294.584391pt;}
.y195{bottom:295.871195pt;}
.yf7{bottom:297.420532pt;}
.y64{bottom:300.426799pt;}
.y1d5{bottom:302.681600pt;}
.y1d{bottom:307.848124pt;}
.ya6{bottom:307.917725pt;}
.y194{bottom:309.204529pt;}
.yf6{bottom:310.753866pt;}
.y63{bottom:313.760132pt;}
.y1d4{bottom:313.881592pt;}
.y13c{bottom:315.459595pt;}
.y13d{bottom:315.460002pt;}
.y22e{bottom:318.947469pt;}
.y13f{bottom:320.242269pt;}
.y1c{bottom:321.181458pt;}
.ya5{bottom:321.251058pt;}
.y193{bottom:322.537862pt;}
.yf5{bottom:324.087199pt;}
.y1d3{bottom:325.081604pt;}
.y62{bottom:327.093465pt;}
.y22d{bottom:330.147461pt;}
.y1b{bottom:334.514791pt;}
.ya4{bottom:334.584391pt;}
.y192{bottom:335.871195pt;}
.y1d2{bottom:336.281596pt;}
.yf4{bottom:337.420532pt;}
.y61{bottom:340.426799pt;}
.y22c{bottom:341.347453pt;}
.y1d1{bottom:347.481608pt;}
.y1a{bottom:347.848145pt;}
.ya3{bottom:347.917725pt;}
.y191{bottom:349.204549pt;}
.yf3{bottom:350.753866pt;}
.y22b{bottom:352.547485pt;}
.y60{bottom:353.760132pt;}
.y1d0{bottom:358.681600pt;}
.y19{bottom:361.181478pt;}
.ya2{bottom:361.251058pt;}
.y13b{bottom:362.304810pt;}
.y190{bottom:362.537882pt;}
.y22a{bottom:363.747477pt;}
.yf2{bottom:364.087199pt;}
.y5f{bottom:367.093465pt;}
.y1cf{bottom:369.881592pt;}
.y18{bottom:374.514811pt;}
.ya1{bottom:374.584391pt;}
.y229{bottom:374.947469pt;}
.y13a{bottom:375.638143pt;}
.y18f{bottom:375.871216pt;}
.yf1{bottom:377.420532pt;}
.y5e{bottom:380.426799pt;}
.y1ce{bottom:381.081584pt;}
.y228{bottom:386.147461pt;}
.y17{bottom:387.848145pt;}
.ya0{bottom:387.917725pt;}
.y18e{bottom:389.204549pt;}
.yf0{bottom:390.753866pt;}
.y1cd{bottom:392.281616pt;}
.y5d{bottom:393.760132pt;}
.y227{bottom:397.347453pt;}
.y16{bottom:401.181478pt;}
.y9f{bottom:401.251058pt;}
.y18d{bottom:402.537882pt;}
.y1cc{bottom:403.481608pt;}
.yef{bottom:404.087199pt;}
.y5c{bottom:407.093465pt;}
.y226{bottom:408.547485pt;}
.y9e{bottom:414.584391pt;}
.y1cb{bottom:414.681600pt;}
.y139{bottom:415.638143pt;}
.y18c{bottom:415.871216pt;}
.yee{bottom:417.420532pt;}
.y225{bottom:419.747477pt;}
.y5b{bottom:420.426799pt;}
.y1ca{bottom:425.881592pt;}
.y9d{bottom:427.917725pt;}
.y18b{bottom:429.204549pt;}
.y15{bottom:430.514811pt;}
.yed{bottom:430.753866pt;}
.y224{bottom:430.947469pt;}
.y5a{bottom:433.760132pt;}
.y1c9{bottom:437.081584pt;}
.y135{bottom:440.309326pt;}
.y134{bottom:440.310140pt;}
.y9c{bottom:441.251058pt;}
.y223{bottom:442.147461pt;}
.y18a{bottom:442.537882pt;}
.yec{bottom:444.087199pt;}
.ye2{bottom:444.734131pt;}
.y138{bottom:446.443197pt;}
.y59{bottom:447.093465pt;}
.y1c8{bottom:448.281616pt;}
.y222{bottom:453.347453pt;}
.y9b{bottom:454.584391pt;}
.y189{bottom:455.871216pt;}
.y14{bottom:456.520020pt;}
.yeb{bottom:457.420532pt;}
.y1c7{bottom:459.481608pt;}
.y58{bottom:460.426799pt;}
.y221{bottom:464.547485pt;}
.y9a{bottom:467.917725pt;}
.y188{bottom:469.204549pt;}
.y1c6{bottom:470.681600pt;}
.yea{bottom:470.753866pt;}
.y13{bottom:471.186686pt;}
.y133{bottom:472.982015pt;}
.y57{bottom:473.760132pt;}
.y220{bottom:475.747477pt;}
.y99{bottom:481.251058pt;}
.y1c5{bottom:481.881592pt;}
.y187{bottom:482.537882pt;}
.ye9{bottom:484.087199pt;}
.y12{bottom:485.853353pt;}
.y132{bottom:486.315348pt;}
.y21f{bottom:486.947469pt;}
.y56{bottom:487.093465pt;}
.ye1{bottom:489.217326pt;}
.y1c4{bottom:493.081584pt;}
.y98{bottom:494.584391pt;}
.y186{bottom:495.871216pt;}
.ye8{bottom:497.420532pt;}
.y21e{bottom:498.147461pt;}
.y131{bottom:499.648682pt;}
.y55{bottom:500.426799pt;}
.y11{bottom:500.520020pt;}
.ye0{bottom:502.550659pt;}
.y1c3{bottom:504.281616pt;}
.y97{bottom:507.917725pt;}
.y21d{bottom:509.347453pt;}
.ye7{bottom:510.753866pt;}
.y130{bottom:512.982015pt;}
.y54{bottom:513.760132pt;}
.y10{bottom:515.186686pt;}
.y1c2{bottom:515.481608pt;}
.ydf{bottom:515.883993pt;}
.y21c{bottom:520.547485pt;}
.y96{bottom:521.251058pt;}
.ye6{bottom:524.087199pt;}
.y12f{bottom:526.315348pt;}
.y1c1{bottom:526.681600pt;}
.y93{bottom:526.974284pt;}
.y53{bottom:527.093465pt;}
.yde{bottom:529.217326pt;}
.yf{bottom:529.853353pt;}
.y21b{bottom:531.747477pt;}
.y257{bottom:534.388672pt;}
.y95{bottom:534.584391pt;}
.y185{bottom:535.871216pt;}
.ye5{bottom:537.420532pt;}
.y1c0{bottom:537.881592pt;}
.y52{bottom:540.426799pt;}
.ydd{bottom:542.550659pt;}
.y21a{bottom:542.947469pt;}
.ye{bottom:544.520020pt;}
.y94{bottom:547.917725pt;}
.y1bf{bottom:549.081584pt;}
.ye4{bottom:550.753866pt;}
.y51{bottom:553.760132pt;}
.y219{bottom:554.147461pt;}
.ydc{bottom:555.883993pt;}
.y1ae{bottom:558.497599pt;}
.yd{bottom:559.186686pt;}
.y1be{bottom:560.281616pt;}
.y176{bottom:560.542684pt;}
.y174{bottom:560.543050pt;}
.y256{bottom:562.121989pt;}
.ye3{bottom:564.087199pt;}
.y90{bottom:564.426799pt;}
.y218{bottom:565.347453pt;}
.y12e{bottom:566.315348pt;}
.y50{bottom:567.093465pt;}
.ydb{bottom:569.217326pt;}
.y1bd{bottom:571.481608pt;}
.y17b{bottom:571.905147pt;}
.y17d{bottom:571.905721pt;}
.yc{bottom:573.853353pt;}
.y255{bottom:575.455322pt;}
.y217{bottom:576.547485pt;}
.y8f{bottom:577.760132pt;}
.y4f{bottom:580.426799pt;}
.y184{bottom:581.008136pt;}
.yda{bottom:582.550659pt;}
.y1bc{bottom:582.681600pt;}
.y216{bottom:587.747477pt;}
.y183{bottom:588.377726pt;}
.yb{bottom:588.520020pt;}
.y254{bottom:588.788656pt;}
.y124{bottom:590.986654pt;}
.y123{bottom:590.987183pt;}
.y8e{bottom:591.093465pt;}
.y4e{bottom:593.760132pt;}
.y1bb{bottom:593.881592pt;}
.yd9{bottom:595.883993pt;}
.y179{bottom:597.011067pt;}
.y215{bottom:598.947469pt;}
.yba{bottom:599.626139pt;}
.y253{bottom:602.121989pt;}
.y126{bottom:602.350016pt;}
.y12d{bottom:602.487061pt;}
.y127{bottom:603.038005pt;}
.ya{bottom:603.186686pt;}
.y180{bottom:603.320706pt;}
.y8d{bottom:604.426799pt;}
.y1ba{bottom:605.081584pt;}
.y175{bottom:605.119059pt;}
.y4d{bottom:607.093465pt;}
.y17f{bottom:607.305745pt;}
.yd8{bottom:609.217326pt;}
.y12c{bottom:610.081991pt;}
.y214{bottom:610.147461pt;}
.y129{bottom:610.187337pt;}
.y1af{bottom:611.252686pt;}
.y178{bottom:611.628418pt;}
.yb9{bottom:612.959473pt;}
.y252{bottom:615.455322pt;}
.y10c{bottom:615.519450pt;}
.y1b9{bottom:616.281616pt;}
.y8c{bottom:617.760132pt;}
.y9{bottom:617.853353pt;}
.y4c{bottom:620.426799pt;}
.y213{bottom:621.347453pt;}
.yd7{bottom:622.550659pt;}
.yb8{bottom:626.292806pt;}
.y1b8{bottom:627.481608pt;}
.y251{bottom:628.788656pt;}
.y10b{bottom:628.852783pt;}
.y8{bottom:632.520020pt;}
.y212{bottom:632.547485pt;}
.y4b{bottom:633.760132pt;}
.y122{bottom:634.392537pt;}
.yd6{bottom:635.883993pt;}
.y173{bottom:636.054932pt;}
.y1b7{bottom:638.681600pt;}
.y250{bottom:642.121989pt;}
.y211{bottom:643.747477pt;}
.y8b{bottom:644.426799pt;}
.y4a{bottom:647.093465pt;}
.y7{bottom:647.186686pt;}
.y121{bottom:647.725871pt;}
.yd5{bottom:649.217326pt;}
.y172{bottom:649.388265pt;}
.y1b6{bottom:649.881592pt;}
.y210{bottom:654.947469pt;}
.y24f{bottom:655.455322pt;}
.y8a{bottom:657.760132pt;}
.y49{bottom:660.426799pt;}
.y120{bottom:661.059204pt;}
.yd4{bottom:662.550659pt;}
.y171{bottom:662.721598pt;}
.y20f{bottom:666.147461pt;}
.y24e{bottom:668.788656pt;}
.y89{bottom:671.093465pt;}
.y6{bottom:673.758952pt;}
.y48{bottom:673.760132pt;}
.y11f{bottom:674.392537pt;}
.yd3{bottom:675.883993pt;}
.y20e{bottom:677.347453pt;}
.y24d{bottom:682.121989pt;}
.y88{bottom:684.426839pt;}
.y47{bottom:687.093506pt;}
.y11e{bottom:687.725830pt;}
.y20d{bottom:688.547445pt;}
.yd2{bottom:689.217367pt;}
.y5{bottom:689.758952pt;}
.y1b5{bottom:695.194010pt;}
.y87{bottom:697.760173pt;}
.y20c{bottom:699.747477pt;}
.y46{bottom:700.426839pt;}
.y11d{bottom:701.059163pt;}
.yd1{bottom:702.550700pt;}
.y170{bottom:702.721598pt;}
.y24c{bottom:703.455485pt;}
.y20b{bottom:710.947428pt;}
.y86{bottom:711.093506pt;}
.y45{bottom:713.760173pt;}
.yd0{bottom:715.884033pt;}
.y24b{bottom:716.788818pt;}
.y4{bottom:719.062826pt;}
.y20a{bottom:722.147461pt;}
.y1b4{bottom:723.194010pt;}
.y85{bottom:724.426839pt;}
.y44{bottom:727.093506pt;}
.y161{bottom:727.393311pt;}
.y15f{bottom:727.393636pt;}
.ycf{bottom:729.217367pt;}
.y209{bottom:733.347493pt;}
.y1b3{bottom:736.527344pt;}
.y24a{bottom:736.849609pt;}
.y84{bottom:737.760173pt;}
.y166{bottom:738.755571pt;}
.y168{bottom:738.756104pt;}
.y43{bottom:740.426839pt;}
.y11c{bottom:741.059163pt;}
.yce{bottom:742.550700pt;}
.y208{bottom:744.547445pt;}
.y16f{bottom:747.858559pt;}
.y1b2{bottom:749.860677pt;}
.y83{bottom:751.093506pt;}
.y42{bottom:753.760173pt;}
.y16e{bottom:755.228109pt;}
.y207{bottom:755.747477pt;}
.ycd{bottom:755.884033pt;}
.y249{bottom:756.910563pt;}
.y3{bottom:759.062826pt;}
.y164{bottom:763.861491pt;}
.y82{bottom:764.426839pt;}
.y119{bottom:765.730632pt;}
.y118{bottom:765.731038pt;}
.y206{bottom:766.947428pt;}
.y41{bottom:767.093506pt;}
.y11b{bottom:768.704264pt;}
.ycc{bottom:769.217367pt;}
.y16b{bottom:770.171129pt;}
.y248{bottom:770.243896pt;}
.y160{bottom:771.969482pt;}
.y16a{bottom:774.156169pt;}
.y81{bottom:777.760173pt;}
.y205{bottom:778.147461pt;}
.y163{bottom:778.478760pt;}
.y1b1{bottom:779.194010pt;}
.y40{bottom:780.426839pt;}
.ycb{bottom:782.550700pt;}
.y204{bottom:789.347493pt;}
.y117{bottom:792.083089pt;}
.y1b0{bottom:792.527344pt;}
.y3f{bottom:793.760173pt;}
.yca{bottom:795.884033pt;}
.y2{bottom:799.062826pt;}
.y247{bottom:799.577230pt;}
.y203{bottom:800.547445pt;}
.y15e{bottom:802.905436pt;}
.y80{bottom:804.426839pt;}
.y116{bottom:805.416423pt;}
.y3e{bottom:807.093506pt;}
.yc9{bottom:809.217367pt;}
.y202{bottom:811.747477pt;}
.y246{bottom:812.910563pt;}
.y15d{bottom:816.238770pt;}
.y7f{bottom:817.760173pt;}
.y115{bottom:818.749756pt;}
.y3d{bottom:820.426839pt;}
.yc8{bottom:822.550700pt;}
.y201{bottom:822.947428pt;}
.y15c{bottom:829.572103pt;}
.y7e{bottom:831.093506pt;}
.y3c{bottom:833.760173pt;}
.y200{bottom:834.147461pt;}
.yc7{bottom:835.884033pt;}
.y1{bottom:839.062826pt;}
.y245{bottom:842.243896pt;}
.y15b{bottom:842.905436pt;}
.y1f3{bottom:843.959473pt;}
.y7d{bottom:844.426839pt;}
.y1ff{bottom:845.347493pt;}
.y2e{bottom:846.267497pt;}
.y3b{bottom:847.093506pt;}
.y15a{bottom:856.238770pt;}
.y1fe{bottom:856.547445pt;}
.y7c{bottom:857.760173pt;}
.y1f2{bottom:858.626139pt;}
.y114{bottom:858.749756pt;}
.y3a{bottom:860.426839pt;}
.yc3{bottom:861.150635pt;}
.y1fd{bottom:867.747477pt;}
.y159{bottom:869.572103pt;}
.yc2{bottom:870.617350pt;}
.yc6{bottom:870.714681pt;}
.y7b{bottom:871.093506pt;}
.y244{bottom:871.577230pt;}
.y1f1{bottom:873.292806pt;}
.y39{bottom:873.760173pt;}
.y1fc{bottom:878.947428pt;}
.y10e{bottom:883.421305pt;}
.y10d{bottom:883.421631pt;}
.y7a{bottom:884.426839pt;}
.y243{bottom:884.910563pt;}
.yc1{bottom:886.817301pt;}
.y38{bottom:887.093506pt;}
.y113{bottom:888.388021pt;}
.y110{bottom:888.668132pt;}
.y1fb{bottom:890.147461pt;}
.y79{bottom:897.760173pt;}
.y242{bottom:898.243896pt;}
.yc0{bottom:900.150635pt;}
.y37{bottom:900.426839pt;}
.y1fa{bottom:901.347493pt;}
.y1f0{bottom:902.294271pt;}
.y158{bottom:909.572103pt;}
.y78{bottom:911.093506pt;}
.y241{bottom:911.577230pt;}
.y1f9{bottom:912.547445pt;}
.ybf{bottom:913.483968pt;}
.y36{bottom:913.760173pt;}
.y1ef{bottom:917.923584pt;}
.y1f8{bottom:923.747477pt;}
.y240{bottom:924.910563pt;}
.ybe{bottom:926.817301pt;}
.y35{bottom:927.093506pt;}
.y1ee{bottom:933.811442pt;}
.y150{bottom:934.243978pt;}
.y1f7{bottom:934.947428pt;}
.y23f{bottom:938.243896pt;}
.ybd{bottom:940.150635pt;}
.y34{bottom:940.426839pt;}
.y156{bottom:942.288167pt;}
.y152{bottom:943.869466pt;}
.y1f6{bottom:946.147461pt;}
.y1ed{bottom:949.806803pt;}
.y23e{bottom:951.577230pt;}
.y151{bottom:951.977458pt;}
.ybc{bottom:953.483968pt;}
.y33{bottom:953.760173pt;}
.y1f5{bottom:957.347493pt;}
.y154{bottom:959.814779pt;}
.y23d{bottom:964.910563pt;}
.y1ec{bottom:965.509440pt;}
.ybb{bottom:966.817301pt;}
.y32{bottom:967.093506pt;}
.y1f4{bottom:968.547445pt;}
.y31{bottom:1013.962972pt;}
.y77{bottom:1014.044515pt;}
.h21{height:2.125355pt;}
.h2e{height:9.140259pt;}
.h1f{height:12.613333pt;}
.h20{height:16.600000pt;}
.h30{height:17.693577pt;}
.h1b{height:18.932000pt;}
.h28{height:18.933333pt;}
.h1d{height:22.443895pt;}
.hd{height:22.932291pt;}
.h25{height:24.484250pt;}
.ha{height:27.501953pt;}
.h22{height:29.667999pt;}
.h10{height:30.687500pt;}
.h2d{height:31.214666pt;}
.h41{height:31.476562pt;}
.hc{height:32.605469pt;}
.h2a{height:33.106667pt;}
.h1e{height:33.713664pt;}
.h1c{height:35.865600pt;}
.h31{height:36.129280pt;}
.h11{height:38.359375pt;}
.h46{height:38.725749pt;}
.h47{height:38.726075pt;}
.h6{height:38.835938pt;}
.h44{height:39.560000pt;}
.h45{height:39.640742pt;}
.h42{height:40.080000pt;}
.hf{height:40.604167pt;}
.h43{height:40.960000pt;}
.h33{height:41.573333pt;}
.hb{height:43.141927pt;}
.h17{height:43.151042pt;}
.h16{height:47.466146pt;}
.h7{height:47.472000pt;}
.h18{height:48.096000pt;}
.h5{height:48.605632pt;}
.h19{height:49.152000pt;}
.h12{height:49.789645pt;}
.h3e{height:49.789885pt;}
.h8{height:49.790296pt;}
.h3f{height:49.790373pt;}
.h13{height:49.790377pt;}
.h15{height:49.790398pt;}
.h14{height:49.790418pt;}
.h1a{height:49.790419pt;}
.h9{height:49.790459pt;}
.h27{height:50.227096pt;}
.h4{height:50.781250pt;}
.h23{height:55.707893pt;}
.h40{height:55.859375pt;}
.h36{height:61.773336pt;}
.h24{height:62.310502pt;}
.h26{height:64.653722pt;}
.h32{height:66.805658pt;}
.h38{height:67.238175pt;}
.h3b{height:67.238342pt;}
.h37{height:68.288102pt;}
.h2f{height:73.686571pt;}
.h34{height:75.280633pt;}
.h3c{height:75.714710pt;}
.h39{height:75.714873pt;}
.h3d{height:75.824060pt;}
.h3a{height:75.824548pt;}
.h2b{height:81.220291pt;}
.h35{height:85.108068pt;}
.h29{height:87.428263pt;}
.he{height:91.406250pt;}
.h3{height:112.192708pt;}
.h2c{height:116.481252pt;}
.h2{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w5{width:86.960002pt;}
.w2{width:105.039998pt;}
.w7{width:128.079997pt;}
.w4{width:151.559998pt;}
.w3{width:196.639994pt;}
.w8{width:202.119995pt;}
.w6{width:210.453328pt;}
.w9{width:238.072000pt;}
.wa{width:317.226664pt;}
.wb{width:330.813333pt;}
.wc{width:336.946676pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:3.082397pt;}
.x2f{left:25.330688pt;}
.x16{left:32.724121pt;}
.xb{left:33.685058pt;}
.x26{left:44.693441pt;}
.xd{left:45.830383pt;}
.x23{left:53.460124pt;}
.x4{left:54.803065pt;}
.x18{left:59.189453pt;}
.x32{left:61.390788pt;}
.x25{left:63.557454pt;}
.x4e{left:69.393351pt;}
.x4b{left:73.176025pt;}
.x10{left:89.339742pt;}
.x1a{left:93.304118pt;}
.x7{left:96.336395pt;}
.x28{left:100.117472pt;}
.x42{left:116.733358pt;}
.x34{left:121.916138pt;}
.x3{left:124.757731pt;}
.x1c{left:126.265462pt;}
.x35{left:131.444132pt;}
.x37{left:150.046794pt;}
.x44{left:159.648153pt;}
.x2a{left:167.089478pt;}
.x2c{left:170.765462pt;}
.x3b{left:191.865438pt;}
.x39{left:197.350789pt;}
.x1{left:207.874003pt;}
.x51{left:210.493327pt;}
.x5c{left:212.061727pt;}
.x58{left:216.626790pt;}
.x2{left:223.874003pt;}
.x5b{left:224.881999pt;}
.x47{left:231.652140pt;}
.x8{left:257.613342pt;}
.xa{left:282.943726pt;}
.x54{left:294.518677pt;}
.xc{left:296.077067pt;}
.x4a{left:297.585327pt;}
.x4d{left:299.185380pt;}
.x5{left:301.133870pt;}
.x3f{left:304.378662pt;}
.xe{left:308.222392pt;}
.x3d{left:312.989461pt;}
.x53{left:320.684143pt;}
.x49{left:323.750671pt;}
.xf{left:338.598409pt;}
.x31{left:343.956014pt;}
.x3e{left:353.357463pt;}
.x20{left:357.765340pt;}
.x11{left:362.653076pt;}
.x12{left:364.671997pt;}
.x21{left:366.377482pt;}
.x55{left:370.056152pt;}
.x4c{left:373.122681pt;}
.x41{left:377.062785pt;}
.x22{left:386.280151pt;}
.x14{left:387.211995pt;}
.x40{left:388.508138pt;}
.x15{left:397.450806pt;}
.x2e{left:398.951986pt;}
.x56{left:401.477458pt;}
.x4f{left:404.543986pt;}
.x24{left:416.004150pt;}
.x1e{left:419.512004pt;}
.x17{left:424.714803pt;}
.x27{left:431.520142pt;}
.x43{left:433.399984pt;}
.x33{left:447.705485pt;}
.x57{left:457.910807pt;}
.x50{left:460.977336pt;}
.x19{left:467.561483pt;}
.x45{left:475.853353pt;}
.x29{left:477.678792pt;}
.x36{left:483.137451pt;}
.x38{left:505.349447pt;}
.x1f{left:506.472127pt;}
.x1b{left:507.765462pt;}
.x59{left:511.145467pt;}
.x6{left:520.758545pt;}
.x46{left:522.378784pt;}
.x52{left:523.298665pt;}
.x30{left:527.031982pt;}
.x1d{left:538.772135pt;}
.x3a{left:541.306803pt;}
.x2b{left:546.793457pt;}
.x48{left:548.318807pt;}
.x5a{left:552.029460pt;}
.x13{left:561.312012pt;}
.x2d{left:568.218791pt;}
.x3c{left:582.028117pt;}
}




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