
    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_dea2fd1f1c9d1729ec345ee0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.923340;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_8f2fa734bc3e969c9dca281a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941895;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_8bfb01a6f393f945348a05d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_eb1d973885b0313729679a5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.055664;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_77422c141ee4e6a089f6af41.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_680b362f2209650d4b9b6b92.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_49e649c54afecfa25b3c48e4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_a214aefb1984050bc80620e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.950195;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_451e965730c31101888e2e45.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.982422;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_4013584072e3d72020da410c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_3bd1509f36282e9793601e51.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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_e2b3db06b7f921fcd23bfa30.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.863281;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_0f20baadbbb1437843866419.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943359;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_3f263a083c212c43976403b0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.941895;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_7de78084ddfc5d89cf73809d.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_6d34ab29ce0e58d4fcb82c42.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.993164;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_7751c2b4c82389552c35e663.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.835938;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_a4fd12a7bd432ebdbac45283.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.871094;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2519a65c275015652330fb12.woff2')format("woff");}.ff14{font-family:ff14;line-height:2.230469;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_269f644446725990266cd678.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.844238;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_d55cdec22e0283505f328c65.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.931641;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_89aee05cd23159c71d250aa4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.982910;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_9727e712d56fa9ab78dd81ac.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.402354;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_aa4c971a4121e6b6512a904d.woff2')format("woff");}.ff19{font-family:ff19;line-height:2.955078;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_d24bb70656cb56550a57332c.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.002930;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_7e50f5f202c228987c0843a1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_304955f3f60802e747e717ee.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.675781;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_0cbdec481a463181d3af0645.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.363000;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;}
.mf{transform:matrix(0.189057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189057,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.189064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189064,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.189294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189294,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189530,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.190267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190267,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.190737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190737,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.233380,0.000000,-0.077785,0.237591,0,0);-ms-transform:matrix(0.233380,0.000000,-0.077785,0.237591,0,0);-webkit-transform:matrix(0.233380,0.000000,-0.077785,0.237591,0,0);}
.m12{transform:matrix(0.239187,0.000000,-0.079721,0.236948,0,0);-ms-transform:matrix(0.239187,0.000000,-0.079721,0.236948,0,0);-webkit-transform:matrix(0.239187,0.000000,-0.079721,0.236948,0,0);}
.me{transform:matrix(0.239965,0.000000,-0.079980,0.236861,0,0);-ms-transform:matrix(0.239965,0.000000,-0.079980,0.236861,0,0);-webkit-transform:matrix(0.239965,0.000000,-0.079980,0.236861,0,0);}
.m4{transform:matrix(0.240367,0.000000,-0.080114,0.236816,0,0);-ms-transform:matrix(0.240367,0.000000,-0.080114,0.236816,0,0);-webkit-transform:matrix(0.240367,0.000000,-0.080114,0.236816,0,0);}
.m14{transform:matrix(0.240367,0.000000,-0.080114,0.236816,0,0);-ms-transform:matrix(0.240367,0.000000,-0.080114,0.236816,0,0);-webkit-transform:matrix(0.240367,0.000000,-0.080114,0.236816,0,0);}
.m1{transform:matrix(0.245569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245569,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248077,0.000000,-0.082684,0.235931,0,0);-ms-transform:matrix(0.248077,0.000000,-0.082684,0.235931,0,0);-webkit-transform:matrix(0.248077,0.000000,-0.082684,0.235931,0,0);}
.m1c{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251519,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251834,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252149,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252362,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253130,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253276,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253748,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253749,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253754,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-31.847401px;}
.v9{vertical-align:-24.480000px;}
.v8{vertical-align:-22.320000px;}
.v1{vertical-align:-13.680000px;}
.v15{vertical-align:-12.000000px;}
.v16{vertical-align:-10.800000px;}
.va{vertical-align:-9.600000px;}
.v14{vertical-align:-5.039998px;}
.v6{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v2a{vertical-align:1.140000px;}
.v4{vertical-align:2.160000px;}
.vd{vertical-align:9.600000px;}
.v2{vertical-align:13.680000px;}
.v10{vertical-align:15.600000px;}
.v1f{vertical-align:20.400000px;}
.v17{vertical-align:22.800000px;}
.v5{vertical-align:24.480000px;}
.ve{vertical-align:27.600000px;}
.vc{vertical-align:28.800000px;}
.v28{vertical-align:30.000000px;}
.vb{vertical-align:33.720000px;}
.v2b{vertical-align:34.800000px;}
.v12{vertical-align:36.000000px;}
.v7{vertical-align:38.160000px;}
.v13{vertical-align:39.600000px;}
.v19{vertical-align:42.000000px;}
.v11{vertical-align:43.200000px;}
.v18{vertical-align:44.400000px;}
.v21{vertical-align:45.600000px;}
.v20{vertical-align:46.800000px;}
.vf{vertical-align:57.600000px;}
.v25{vertical-align:58.800000px;}
.v1a{vertical-align:61.200000px;}
.v1d{vertical-align:62.340000px;}
.v2d{vertical-align:67.260000px;}
.v23{vertical-align:68.520000px;}
.v22{vertical-align:72.000000px;}
.v2c{vertical-align:74.400000px;}
.v29{vertical-align:78.000000px;}
.v1e{vertical-align:80.400000px;}
.v1c{vertical-align:81.600000px;}
.v1b{vertical-align:82.800000px;}
.v27{vertical-align:84.000000px;}
.v26{vertical-align:85.200000px;}
.v24{vertical-align:154.920000px;}
.ls31{letter-spacing:-0.720000px;}
.ls73{letter-spacing:-0.564000px;}
.ls66{letter-spacing:-0.492000px;}
.ls68{letter-spacing:-0.468000px;}
.ls64{letter-spacing:-0.414000px;}
.ls65{letter-spacing:-0.318000px;}
.lsd{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.048960px;}
.ls10{letter-spacing:-0.043200px;}
.lsa{letter-spacing:0.000000px;}
.ls93{letter-spacing:0.003420px;}
.ls14{letter-spacing:0.020160px;}
.ls26{letter-spacing:0.023040px;}
.ls94{letter-spacing:0.036240px;}
.ls32{letter-spacing:0.059760px;}
.ls86{letter-spacing:0.060000px;}
.lse{letter-spacing:0.060600px;}
.ls67{letter-spacing:0.102000px;}
.lsf{letter-spacing:0.132600px;}
.ls63{letter-spacing:0.138000px;}
.ls25{letter-spacing:0.148800px;}
.ls2e{letter-spacing:0.149760px;}
.ls56{letter-spacing:0.150000px;}
.ls88{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.210000px;}
.ls85{letter-spacing:0.222000px;}
.ls1a{letter-spacing:0.229134px;}
.ls19{letter-spacing:0.233400px;}
.lsb{letter-spacing:0.256200px;}
.ls58{letter-spacing:0.270000px;}
.ls78{letter-spacing:0.288000px;}
.ls5b{letter-spacing:0.330000px;}
.ls62{letter-spacing:0.378000px;}
.ls13{letter-spacing:0.467103px;}
.ls1d{letter-spacing:0.468254px;}
.ls16{letter-spacing:0.468271px;}
.ls84{letter-spacing:0.606000px;}
.ls6b{letter-spacing:0.634500px;}
.ls12{letter-spacing:0.771633px;}
.ls1c{letter-spacing:0.773535px;}
.ls72{letter-spacing:0.870000px;}
.ls35{letter-spacing:0.924000px;}
.ls7a{letter-spacing:0.930000px;}
.ls42{letter-spacing:0.996000px;}
.ls82{letter-spacing:1.008000px;}
.ls48{letter-spacing:1.044000px;}
.ls37{letter-spacing:1.104000px;}
.ls3c{letter-spacing:1.116000px;}
.ls61{letter-spacing:1.410000px;}
.ls3d{letter-spacing:1.638000px;}
.ls8c{letter-spacing:1.722000px;}
.ls6e{letter-spacing:2.004000px;}
.ls4d{letter-spacing:2.208000px;}
.ls6d{letter-spacing:2.352000px;}
.ls44{letter-spacing:2.364000px;}
.ls3b{letter-spacing:2.778000px;}
.ls3a{letter-spacing:2.838000px;}
.ls41{letter-spacing:2.898000px;}
.ls40{letter-spacing:3.018000px;}
.ls20{letter-spacing:3.029040px;}
.ls6c{letter-spacing:3.204000px;}
.ls23{letter-spacing:3.254400px;}
.ls4b{letter-spacing:3.408000px;}
.ls49{letter-spacing:3.468000px;}
.ls2{letter-spacing:3.974400px;}
.ls4f{letter-spacing:4.020000px;}
.ls4c{letter-spacing:4.080000px;}
.ls52{letter-spacing:4.140000px;}
.ls55{letter-spacing:4.260000px;}
.ls59{letter-spacing:5.280000px;}
.ls77{letter-spacing:10.146000px;}
.ls7e{letter-spacing:10.206000px;}
.ls81{letter-spacing:10.386000px;}
.ls71{letter-spacing:10.860000px;}
.ls89{letter-spacing:10.980000px;}
.ls75{letter-spacing:11.406000px;}
.ls87{letter-spacing:12.060000px;}
.ls47{letter-spacing:12.438000px;}
.ls0{letter-spacing:12.545280px;}
.ls54{letter-spacing:13.008000px;}
.ls2b{letter-spacing:14.598720px;}
.ls4e{letter-spacing:14.610000px;}
.ls3e{letter-spacing:15.252000px;}
.ls69{letter-spacing:15.936266px;}
.ls1f{letter-spacing:16.145280px;}
.ls33{letter-spacing:16.452000px;}
.ls29{letter-spacing:17.585280px;}
.ls57{letter-spacing:17.652000px;}
.ls2c{letter-spacing:17.870400px;}
.ls3f{letter-spacing:17.898000px;}
.ls70{letter-spacing:18.060000px;}
.ls22{letter-spacing:18.198720px;}
.ls53{letter-spacing:18.210000px;}
.ls7c{letter-spacing:18.240000px;}
.ls9{letter-spacing:18.374400px;}
.ls30{letter-spacing:18.378720px;}
.ls2f{letter-spacing:18.494400px;}
.ls76{letter-spacing:18.726000px;}
.ls74{letter-spacing:18.786000px;}
.ls6a{letter-spacing:18.817904px;}
.ls34{letter-spacing:18.852000px;}
.ls27{letter-spacing:19.025280px;}
.ls80{letter-spacing:19.038000px;}
.ls79{letter-spacing:19.098000px;}
.ls8a{letter-spacing:19.158000px;}
.ls8f{letter-spacing:19.218000px;}
.ls91{letter-spacing:19.278000px;}
.ls38{letter-spacing:19.410000px;}
.ls7b{letter-spacing:20.208000px;}
.ls7f{letter-spacing:20.388000px;}
.ls24{letter-spacing:21.029040px;}
.ls7d{letter-spacing:21.204000px;}
.ls6f{letter-spacing:21.408000px;}
.ls21{letter-spacing:21.974400px;}
.ls4a{letter-spacing:22.080000px;}
.ls8d{letter-spacing:22.128000px;}
.ls5e{letter-spacing:22.140000px;}
.ls51{letter-spacing:22.260000px;}
.ls8b{letter-spacing:22.404000px;}
.ls45{letter-spacing:22.452000px;}
.ls28{letter-spacing:22.625280px;}
.ls1{letter-spacing:22.694400px;}
.ls1e{letter-spacing:22.874400px;}
.ls2d{letter-spacing:23.189760px;}
.ls50{letter-spacing:23.460000px;}
.ls5a{letter-spacing:29.652000px;}
.ls2a{letter-spacing:30.545280px;}
.ls90{letter-spacing:36.240000px;}
.ls83{letter-spacing:36.606000px;}
.ls5d{letter-spacing:38.052000px;}
.ls4{letter-spacing:38.465280px;}
.ls92{letter-spacing:39.219751px;}
.ls6{letter-spacing:39.905280px;}
.ls3{letter-spacing:41.345280px;}
.ls5c{letter-spacing:41.652000px;}
.ls5{letter-spacing:44.945280px;}
.ls5f{letter-spacing:45.252000px;}
.ls7{letter-spacing:52.865280px;}
.ls95{letter-spacing:59.392128px;}
.ls60{letter-spacing:64.452000px;}
.ls46{letter-spacing:68.298000px;}
.ls8{letter-spacing:77.542844px;}
.ls8e{letter-spacing:79.836000px;}
.ls43{letter-spacing:113.796000px;}
.ls39{letter-spacing:135.498000px;}
.ls11{letter-spacing:184.660605px;}
.ls18{letter-spacing:260.110413px;}
.ls17{letter-spacing:266.368176px;}
.ls1b{letter-spacing:283.960755px;}
.ls15{letter-spacing:340.693870px;}
.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;}
}
.ws1{word-spacing:-66.240000px;}
.ws29{word-spacing:-52.361280px;}
.ws2{word-spacing:-51.816960px;}
.ws4{word-spacing:-51.641280px;}
.ws1e{word-spacing:-48.240000px;}
.ws4b{word-spacing:-42.422033px;}
.ws6b{word-spacing:-33.517467px;}
.ws4d{word-spacing:-32.622414px;}
.ws3{word-spacing:-31.530960px;}
.ws4c{word-spacing:-30.894351px;}
.ws2a{word-spacing:-30.810960px;}
.ws6c{word-spacing:-16.560013px;}
.ws0{word-spacing:-15.226440px;}
.ws48{word-spacing:-15.186000px;}
.ws8{word-spacing:-15.102840px;}
.ws42{word-spacing:-15.066000px;}
.ws3f{word-spacing:-15.054000px;}
.ws7{word-spacing:-15.030840px;}
.ws14{word-spacing:-14.990400px;}
.ws6a{word-spacing:-14.970252px;}
.ws9{word-spacing:-14.927040px;}
.ws5{word-spacing:-14.921280px;}
.ws53{word-spacing:-14.808000px;}
.ws6{word-spacing:-14.754240px;}
.ws43{word-spacing:-14.598000px;}
.ws2b{word-spacing:-14.572800px;}
.ws4a{word-spacing:-14.570485px;}
.ws44{word-spacing:-14.520000px;}
.ws40{word-spacing:-14.502000px;}
.ws47{word-spacing:-14.448000px;}
.ws46{word-spacing:-14.028000px;}
.ws4e{word-spacing:-13.956000px;}
.ws5a{word-spacing:-11.568000px;}
.ws3a{word-spacing:-10.612800px;}
.ws41{word-spacing:-10.560000px;}
.ws2d{word-spacing:-0.694080px;}
.ws2c{word-spacing:-0.149760px;}
.ws2f{word-spacing:-0.066240px;}
.ws28{word-spacing:0.000000px;}
.ws39{word-spacing:0.025920px;}
.ws2e{word-spacing:3.625920px;}
.ws38{word-spacing:6.816240px;}
.ws33{word-spacing:9.399120px;}
.ws32{word-spacing:9.519120px;}
.ws3e{word-spacing:9.719280px;}
.ws3d{word-spacing:9.808560px;}
.ws37{word-spacing:10.029600px;}
.ws34{word-spacing:10.118880px;}
.ws30{word-spacing:10.119120px;}
.ws31{word-spacing:10.207440px;}
.ws3b{word-spacing:10.439280px;}
.ws35{word-spacing:17.208000px;}
.ws45{word-spacing:17.550000px;}
.ws36{word-spacing:17.928000px;}
.ws3c{word-spacing:18.048000px;}
.ws49{word-spacing:18.750000px;}
.ws59{word-spacing:22.470000px;}
.ws23{word-spacing:23.436716px;}
.ws1f{word-spacing:30.377508px;}
.ws12{word-spacing:30.835775px;}
.ws26{word-spacing:30.911801px;}
.ws18{word-spacing:30.912903px;}
.ws10{word-spacing:31.643623px;}
.ws24{word-spacing:31.721641px;}
.ws13{word-spacing:33.200200px;}
.ws27{word-spacing:33.282056px;}
.ws19{word-spacing:33.283242px;}
.ws11{word-spacing:36.424953px;}
.ws25{word-spacing:36.514760px;}
.wsf{word-spacing:42.213500px;}
.ws1d{word-spacing:46.325204px;}
.ws69{word-spacing:51.138000px;}
.ws63{word-spacing:52.218000px;}
.ws5e{word-spacing:52.278000px;}
.ws52{word-spacing:52.308000px;}
.ws66{word-spacing:52.470000px;}
.ws58{word-spacing:52.542000px;}
.ws64{word-spacing:53.244000px;}
.ws5f{word-spacing:53.424000px;}
.ws50{word-spacing:53.436000px;}
.ws56{word-spacing:53.448000px;}
.ws5d{word-spacing:53.628000px;}
.wsb{word-spacing:55.302426px;}
.ws15{word-spacing:62.086738px;}
.ws5b{word-spacing:71.184000px;}
.ws67{word-spacing:71.316000px;}
.ws68{word-spacing:71.364000px;}
.ws5c{word-spacing:77.418000px;}
.ws62{word-spacing:77.424000px;}
.ws60{word-spacing:78.504000px;}
.ws17{word-spacing:78.876198px;}
.ws65{word-spacing:89.448000px;}
.ws61{word-spacing:101.538000px;}
.ws4f{word-spacing:108.444000px;}
.ws1b{word-spacing:114.996200px;}
.ws55{word-spacing:125.568000px;}
.ws51{word-spacing:126.444000px;}
.ws54{word-spacing:126.816000px;}
.ws21{word-spacing:144.180758px;}
.ws1c{word-spacing:144.967667px;}
.ws16{word-spacing:146.477597px;}
.wsc{word-spacing:153.763858px;}
.ws1a{word-spacing:158.232095px;}
.ws57{word-spacing:162.768000px;}
.wse{word-spacing:208.252415px;}
.wsd{word-spacing:221.209702px;}
.wsa{word-spacing:236.249080px;}
.ws22{word-spacing:237.041065px;}
.ws20{word-spacing:265.196126px;}
._31{margin-left:-9.126000px;}
._32{margin-left:-7.926000px;}
._27{margin-left:-4.698246px;}
._1{margin-left:-3.229200px;}
._18{margin-left:-2.114160px;}
._0{margin-left:-1.059840px;}
._4{width:1.027926px;}
._13{width:2.192909px;}
._23{width:3.904548px;}
._25{width:5.250222px;}
._24{width:6.633132px;}
._33{width:7.914234px;}
._34{width:9.902160px;}
._f{width:11.600880px;}
._12{width:13.242000px;}
._29{width:15.230880px;}
._26{width:16.635120px;}
._2{width:18.198720px;}
._2a{width:19.245534px;}
._2c{width:20.855485px;}
._16{width:22.331760px;}
._17{width:23.341440px;}
._35{width:26.462394px;}
._37{width:32.371049px;}
._28{width:33.670560px;}
._2b{width:61.470480px;}
._2e{width:68.180160px;}
._21{width:80.109709px;}
._2d{width:86.662074px;}
._2f{width:104.828160px;}
._c{width:116.224181px;}
._1b{width:158.095038px;}
._5{width:165.221993px;}
._9{width:193.957089px;}
._22{width:206.339038px;}
._d{width:207.366964px;}
._20{width:213.397464px;}
._11{width:214.493918px;}
._e{width:221.689401px;}
._8{width:240.723794px;}
._1e{width:264.343447px;}
._15{width:265.569197px;}
._1d{width:268.839256px;}
._14{width:270.938016px;}
._1a{width:280.692361px;}
._6{width:288.847241px;}
._1c{width:303.369796px;}
._a{width:333.322178px;}
._1f{width:339.959495px;}
._19{width:341.899858px;}
._3{width:345.542989px;}
._b{width:348.077340px;}
._7{width:352.789650px;}
._10{width:360.075911px;}
._30{width:849.414000px;}
._38{width:1219.086735px;}
._36{width:1229.429852px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:39.599242px;}
.fs18{font-size:39.600000px;}
.fs6{font-size:39.616266px;}
.fs1c{font-size:41.760033px;}
.fs8{font-size:41.978687px;}
.fs1a{font-size:46.951901px;}
.fs17{font-size:48.000000px;}
.fs1{font-size:48.240000px;}
.fs19{font-size:64.471174px;}
.fs16{font-size:66.000000px;}
.fs0{font-size:66.240000px;}
.fs1b{font-size:66.240053px;}
.fs7{font-size:68.417398px;}
.fs4{font-size:68.528408px;}
.fsd{font-size:69.912272px;}
.fsb{font-size:70.053640px;}
.fs15{font-size:70.084642px;}
.fs10{font-size:70.087140px;}
.fs13{font-size:70.226358px;}
.fs3{font-size:72.250454px;}
.fs11{font-size:72.303076px;}
.fse{font-size:72.329760px;}
.fs5{font-size:72.343581px;}
.fs9{font-size:72.497306px;}
.fsc{font-size:91.629901px;}
.fsa{font-size:91.771269px;}
.fs14{font-size:91.855817px;}
.fsf{font-size:91.859091px;}
.fs12{font-size:91.997533px;}
.y0{bottom:0.000000px;}
.y104{bottom:3.870000px;}
.yfb{bottom:3.885000px;}
.y16{bottom:4.121614px;}
.y10e{bottom:4.170000px;}
.yb3{bottom:4.470000px;}
.yab{bottom:4.485000px;}
.ybd{bottom:4.515000px;}
.y5{bottom:4.646241px;}
.yf{bottom:4.682843px;}
.ybf{bottom:4.770000px;}
.yad{bottom:4.785000px;}
.y17{bottom:8.595376px;}
.y6{bottom:9.109768px;}
.y1a{bottom:9.125734px;}
.y10{bottom:9.146222px;}
.y3d{bottom:9.148233px;}
.y1c{bottom:9.162254px;}
.y3f{bottom:9.184844px;}
.y2a{bottom:9.185171px;}
.y1b{bottom:10.439865px;}
.y3e{bottom:10.465605px;}
.y1d{bottom:10.476385px;}
.y40{bottom:10.502215px;}
.y2b{bottom:10.502589px;}
.y15{bottom:16.557226px;}
.y10b{bottom:23.385000px;}
.y101{bottom:24.270000px;}
.yfc{bottom:24.285000px;}
.yf9{bottom:24.330000px;}
.y102{bottom:24.570000px;}
.yaa{bottom:24.585000px;}
.yfa{bottom:24.630000px;}
.y109{bottom:43.785000px;}
.y10a{bottom:44.085000px;}
.y66{bottom:124.236000px;}
.y86{bottom:127.237500px;}
.y42{bottom:127.860000px;}
.y41{bottom:136.836000px;}
.y85{bottom:149.437500px;}
.ycf{bottom:159.045000px;}
.y65{bottom:162.390000px;}
.y14f{bottom:166.261633px;}
.y11b{bottom:168.330000px;}
.y84{bottom:172.245000px;}
.y3c{bottom:173.760000px;}
.y3b{bottom:184.170000px;}
.y64{bottom:185.610000px;}
.y14e{bottom:189.301651px;}
.yce{bottom:192.630000px;}
.y83{bottom:194.745000px;}
.y11a{bottom:202.245000px;}
.ycc{bottom:203.445000px;}
.ycd{bottom:206.445000px;}
.y3a{bottom:211.530000px;}
.y82{bottom:217.275000px;}
.y119{bottom:221.775000px;}
.y118{bottom:222.675000px;}
.y14d{bottom:222.961678px;}
.yf6{bottom:223.575000px;}
.y63{bottom:223.590000px;}
.y39{bottom:234.750000px;}
.y81{bottom:239.475000px;}
.ycb{bottom:244.575000px;}
.yc9{bottom:255.075000px;}
.y38{bottom:257.970000px;}
.yca{bottom:258.075000px;}
.yf5{bottom:261.675000px;}
.y62{bottom:261.750000px;}
.y80{bottom:262.275000px;}
.y117{bottom:276.975000px;}
.y37{bottom:281.010000px;}
.y61{bottom:285.150000px;}
.y14c{bottom:289.201731px;}
.yc8{bottom:294.975000px;}
.y7f{bottom:298.275000px;}
.y36{bottom:299.760000px;}
.yf4{bottom:299.775000px;}
.yc6{bottom:305.775000px;}
.y7e{bottom:307.575000px;}
.y35{bottom:308.730000px;}
.yc7{bottom:308.775000px;}
.y116{bottom:311.175000px;}
.y114{bottom:312.075000px;}
.y14b{bottom:312.421750px;}
.yf3{bottom:316.290000px;}
.y113{bottom:322.575000px;}
.y60{bottom:323.130000px;}
.y115{bottom:325.575000px;}
.y34{bottom:329.685000px;}
.y14a{bottom:335.461768px;}
.yf2{bottom:337.290000px;}
.y33{bottom:340.050000px;}
.yc5{bottom:350.775000px;}
.y7d{bottom:352.875000px;}
.yf1{bottom:357.990000px;}
.y149{bottom:358.681787px;}
.y5f{bottom:361.335000px;}
.y32{bottom:363.135000px;}
.y112{bottom:367.920000px;}
.y31{bottom:372.135000px;}
.yf0{bottom:379.035000px;}
.y148{bottom:382.801806px;}
.yc4{bottom:388.920000px;}
.y7c{bottom:390.420000px;}
.y2f{bottom:393.060000px;}
.y5d{bottom:399.675000px;}
.yef{bottom:400.035000px;}
.y30{bottom:403.455000px;}
.y5e{bottom:405.795000px;}
.y147{bottom:405.841825px;}
.y111{bottom:406.005000px;}
.yc2{bottom:413.820000px;}
.yc3{bottom:416.820000px;}
.y5c{bottom:423.255000px;}
.y2e{bottom:426.510000px;}
.y7b{bottom:427.620000px;}
.y146{bottom:429.061843px;}
.y110{bottom:429.120000px;}
.y2d{bottom:435.495000px;}
.yc1{bottom:437.820000px;}
.yee{bottom:443.220000px;}
.y29{bottom:456.360000px;}
.y5b{bottom:461.235000px;}
.y7a{bottom:464.820000px;}
.y2c{bottom:466.815000px;}
.y10f{bottom:467.505000px;}
.y145{bottom:468.121874px;}
.ya8{bottom:475.679810px;}
.yc0{bottom:475.905000px;}
.yed{bottom:481.620000px;}
.y10d{bottom:483.735000px;}
.y28{bottom:489.885000px;}
.y144{bottom:491.341893px;}
.ybe{bottom:492.135000px;}
.yec{bottom:497.835000px;}
.ya7{bottom:498.359801px;}
.y27{bottom:498.855000px;}
.y5a{bottom:499.395000px;}
.y79{bottom:502.005000px;}
.ybc{bottom:513.135000px;}
.yeb{bottom:518.865000px;}
.y26{bottom:519.735000px;}
.y10c{bottom:524.565000px;}
.y143{bottom:525.001920px;}
.y25{bottom:530.175000px;}
.ybb{bottom:534.165000px;}
.ya6{bottom:535.439786px;}
.y59{bottom:537.555000px;}
.y78{bottom:539.550000px;}
.yea{bottom:539.565000px;}
.yba{bottom:554.865000px;}
.y24{bottom:557.715000px;}
.ya5{bottom:557.939777px;}
.ye9{bottom:560.565000px;}
.y57{bottom:560.775000px;}
.y108{bottom:565.365000px;}
.y58{bottom:566.895000px;}
.yb9{bottom:575.865000px;}
.y77{bottom:577.350000px;}
.ya4{bottom:578.459769px;}
.y23{bottom:580.755000px;}
.ye8{bottom:581.565000px;}
.ya3{bottom:581.699767px;}
.y56{bottom:599.145000px;}
.y22{bottom:604.005000px;}
.ya2{bottom:604.199758px;}
.y161{bottom:612.481990px;}
.y76{bottom:614.550000px;}
.y130{bottom:618.150000px;}
.y55{bottom:622.545000px;}
.y75{bottom:623.550000px;}
.ye7{bottom:625.050000px;}
.y107{bottom:625.365000px;}
.y21{bottom:627.225000px;}
.y160{bottom:635.702009px;}
.yb8{bottom:639.450000px;}
.ya1{bottom:641.099744px;}
.y20{bottom:650.265000px;}
.y142{bottom:651.002021px;}
.y12f{bottom:652.350000px;}
.yb7{bottom:655.965000px;}
.y54{bottom:660.525000px;}
.y12e{bottom:662.850000px;}
.ye6{bottom:663.150000px;}
.y106{bottom:668.880000px;}
.y1f{bottom:668.985000px;}
.y74{bottom:669.780000px;}
.y15f{bottom:673.862039px;}
.y141{bottom:674.042039px;}
.yb6{bottom:676.710000px;}
.y1e{bottom:677.985000px;}
.y9f{bottom:681.419727px;}
.y9d{bottom:682.139727px;}
.y9c{bottom:685.559726px;}
.y9e{bottom:686.819725px;}
.ya0{bottom:691.499723px;}
.ye5{bottom:697.095000px;}
.y140{bottom:697.262058px;}
.yb5{bottom:697.710000px;}
.y53{bottom:698.685000px;}
.y19{bottom:698.835000px;}
.y12d{bottom:703.380000px;}
.y105{bottom:706.995000px;}
.y73{bottom:707.280000px;}
.y18{bottom:709.305000px;}
.y15e{bottom:712.022070px;}
.ye4{bottom:716.280000px;}
.ye2{bottom:717.195000px;}
.yb4{bottom:718.410000px;}
.ye3{bottom:720.195000px;}
.y13f{bottom:720.482076px;}
.y12c{bottom:722.595000px;}
.y12b{bottom:723.495000px;}
.y103{bottom:723.510000px;}
.y14{bottom:732.360000px;}
.y15d{bottom:735.062088px;}
.y52{bottom:736.845000px;}
.y9a{bottom:739.019704px;}
.yb2{bottom:739.410000px;}
.y98{bottom:739.559704px;}
.y13{bottom:741.345000px;}
.y13e{bottom:742.082094px;}
.y97{bottom:742.979703px;}
.y99{bottom:743.339703px;}
.y13d{bottom:743.522095px;}
.y72{bottom:744.495000px;}
.y9b{bottom:748.919700px;}
.y100{bottom:764.310000px;}
.ye1{bottom:767.280000px;}
.y12{bottom:767.625000px;}
.y12a{bottom:772.995000px;}
.y15c{bottom:774.122119px;}
.y51{bottom:775.005000px;}
.y71{bottom:782.295000px;}
.y129{bottom:783.795000px;}
.y13c{bottom:785.282128px;}
.ye0{bottom:786.795000px;}
.yde{bottom:787.695000px;}
.ydf{bottom:790.695000px;}
.y11{bottom:790.845000px;}
.y96{bottom:791.759683px;}
.y15b{bottom:797.342138px;}
.yb1{bottom:802.995000px;}
.yff{bottom:804.810000px;}
.ye{bottom:809.535000px;}
.y50{bottom:813.165000px;}
.yd{bottom:818.565000px;}
.yb0{bottom:819.540000px;}
.y15a{bottom:820.382156px;}
.y70{bottom:820.425000px;}
.y128{bottom:828.825000px;}
.y95{bottom:828.839668px;}
.y13b{bottom:834.782168px;}
.ydd{bottom:838.125000px;}
.yaf{bottom:840.240000px;}
.yc{bottom:843.990000px;}
.yfe{bottom:848.325000px;}
.y4f{bottom:851.370000px;}
.y127{bottom:851.925000px;}
.y6f{bottom:856.425000px;}
.ydc{bottom:857.625000px;}
.y13a{bottom:857.822186px;}
.yda{bottom:858.525000px;}
.yae{bottom:861.240000px;}
.ydb{bottom:861.525000px;}
.y159{bottom:863.762191px;}
.y6e{bottom:864.825000px;}
.y94{bottom:865.919654px;}
.yb{bottom:867.210000px;}
.yac{bottom:881.940000px;}
.y126{bottom:886.125000px;}
.yfd{bottom:886.425000px;}
.y4e{bottom:889.530000px;}
.ya{bottom:890.430000px;}
.y139{bottom:895.982217px;}
.y124{bottom:897.525000px;}
.y125{bottom:900.525000px;}
.ya9{bottom:902.940000px;}
.y93{bottom:903.179639px;}
.y6d{bottom:904.725000px;}
.yd9{bottom:912.825000px;}
.y6c{bottom:913.125000px;}
.y9{bottom:913.470000px;}
.y138{bottom:919.202235px;}
.y4d{bottom:927.690000px;}
.y49{bottom:928.410000px;}
.y158{bottom:930.002244px;}
.y8{bottom:936.690000px;}
.y123{bottom:938.325000px;}
.y122{bottom:938.625000px;}
.y137{bottom:942.422254px;}
.y91{bottom:943.139623px;}
.yf8{bottom:943.740000px;}
.y8f{bottom:943.859622px;}
.yd8{bottom:947.025000px;}
.y8e{bottom:947.279621px;}
.y90{bottom:948.539621px;}
.y121{bottom:949.125000px;}
.y157{bottom:953.042262px;}
.y92{bottom:953.219619px;}
.y6b{bottom:956.025000px;}
.yd6{bottom:957.525000px;}
.y7{bottom:959.910000px;}
.yd7{bottom:960.525000px;}
.y6a{bottom:964.455000px;}
.y136{bottom:965.462272px;}
.y4b{bottom:966.030000px;}
.y48{bottom:966.570000px;}
.y4c{bottom:972.150000px;}
.y156{bottom:977.162282px;}
.y4{bottom:978.585000px;}
.yf7{bottom:984.585000px;}
.y3{bottom:987.630000px;}
.y4a{bottom:989.610000px;}
.y47{bottom:989.790000px;}
.y120{bottom:994.170000px;}
.yd5{bottom:998.070000px;}
.y135{bottom:999.122299px;}
.y155{bottom:1000.382300px;}
.y8c{bottom:1000.919600px;}
.y8a{bottom:1001.639599px;}
.y69{bottom:1004.670000px;}
.y89{bottom:1004.879598px;}
.y8b{bottom:1005.239598px;}
.yd3{bottom:1008.570000px;}
.y8d{bottom:1010.819596px;}
.yd4{bottom:1011.570000px;}
.y46{bottom:1013.010000px;}
.y154{bottom:1023.422319px;}
.y2{bottom:1027.950000px;}
.y68{bottom:1028.070000px;}
.y11f{bottom:1028.370000px;}
.y45{bottom:1036.230000px;}
.y134{bottom:1041.602333px;}
.y153{bottom:1047.542338px;}
.y11e{bottom:1047.870000px;}
.yd2{bottom:1048.455000px;}
.y11c{bottom:1049.370000px;}
.y11d{bottom:1052.370000px;}
.y88{bottom:1053.659579px;}
.y44{bottom:1054.860000px;}
.yd0{bottom:1059.255000px;}
.yd1{bottom:1062.255000px;}
.y43{bottom:1063.950000px;}
.y133{bottom:1064.822352px;}
.y1{bottom:1066.110000px;}
.y67{bottom:1066.170000px;}
.y152{bottom:1070.762357px;}
.y87{bottom:1090.739564px;}
.y151{bottom:1094.702376px;}
.y132{bottom:1102.982382px;}
.y150{bottom:1117.922394px;}
.y131{bottom:1141.142413px;}
.h50{height:20.070000px;}
.h3e{height:20.085000px;}
.h42{height:20.107500px;}
.h41{height:20.122500px;}
.h40{height:20.370000px;}
.h3d{height:20.385000px;}
.h53{height:20.422500px;}
.h3{height:26.999886px;}
.hb{height:27.495177px;}
.hd{height:27.900440px;}
.hf{height:29.147311px;}
.h12{height:30.224732px;}
.h1c{height:30.299252px;}
.h18{height:30.300332px;}
.h67{height:34.439793px;}
.h4{height:38.845155px;}
.h7{height:38.864491px;}
.he{height:38.881198px;}
.h54{height:39.870000px;}
.h52{height:39.885000px;}
.h51{height:39.922500px;}
.h3f{height:40.170000px;}
.h3c{height:40.185000px;}
.h22{height:40.655391px;}
.h3a{height:44.670213px;}
.h11{height:47.504658px;}
.hc{height:47.581737px;}
.h5{height:50.166087px;}
.h1b{height:50.202624px;}
.h17{height:50.221152px;}
.ha{height:50.230748px;}
.h10{height:50.337485px;}
.h26{height:50.402344px;}
.h6{height:50.585625px;}
.h3b{height:53.109375px;}
.h36{height:53.169831px;}
.h23{height:53.302500px;}
.h24{height:54.430664px;}
.h1{height:54.628594px;}
.h66{height:54.628637px;}
.h21{height:55.825312px;}
.h55{height:59.385000px;}
.h15{height:63.621933px;}
.h13{height:63.720090px;}
.h1f{height:63.778795px;}
.h19{height:63.781068px;}
.h1d{height:63.877193px;}
.h9{height:67.223424px;}
.h39{height:67.241175px;}
.h37{height:67.241420px;}
.h8{height:67.256885px;}
.h25{height:67.837600px;}
.h2{height:68.084282px;}
.h16{height:68.580935px;}
.h14{height:68.719610px;}
.h20{height:68.750022px;}
.h1a{height:68.752473px;}
.h1e{height:68.889040px;}
.h28{height:84.122344px;}
.h31{height:86.966953px;}
.h2d{height:87.026953px;}
.h34{height:87.056953px;}
.h30{height:87.086953px;}
.h38{height:92.331032px;}
.h2b{height:99.946875px;}
.h27{height:100.006875px;}
.h29{height:107.176172px;}
.h43{height:116.370117px;}
.h2a{height:118.226953px;}
.h2c{height:119.146875px;}
.h2f{height:120.626953px;}
.h33{height:121.826953px;}
.h32{height:124.226953px;}
.h2e{height:127.826953px;}
.h57{height:136.770117px;}
.h48{height:139.110117px;}
.h44{height:139.170117px;}
.h46{height:140.370117px;}
.h4a{height:140.550117px;}
.h60{height:151.170117px;}
.h56{height:152.370117px;}
.h64{height:152.490117px;}
.h47{height:159.570117px;}
.h61{height:160.710117px;}
.h45{height:160.770117px;}
.h49{height:160.830117px;}
.h58{height:163.170117px;}
.h5c{height:175.170117px;}
.h4b{height:177.570117px;}
.h4e{height:178.710117px;}
.h59{height:189.570117px;}
.h62{height:190.770117px;}
.h5e{height:193.170117px;}
.h5f{height:194.370117px;}
.h65{height:194.490117px;}
.h4f{height:197.970117px;}
.h4c{height:199.170117px;}
.h4d{height:199.230117px;}
.h5b{height:199.290117px;}
.h5d{height:201.570117px;}
.h63{height:271.230117px;}
.h5a{height:271.290117px;}
.h0{height:1188.000000px;}
.h35{height:1263.000000px;}
.w1{width:17.999835px;}
.w3{width:53.099984px;}
.w4{width:58.875922px;}
.w6{width:59.700318px;}
.w5{width:59.774838px;}
.wb{width:74.722500px;}
.wd{width:84.570000px;}
.we{width:102.907500px;}
.w11{width:115.222500px;}
.wf{width:120.622500px;}
.w14{width:120.922500px;}
.w10{width:127.522500px;}
.w7{width:153.006649px;}
.w16{width:168.015000px;}
.w15{width:168.045000px;}
.w17{width:174.960000px;}
.w8{width:185.617834px;}
.w13{width:218.145000px;}
.w12{width:235.545000px;}
.w9{width:273.223327px;}
.w2{width:279.005651px;}
.wc{width:494.820000px;}
.wa{width:892.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:1.862032px;}
.x1c{left:2.967503px;}
.xb{left:4.418401px;}
.x8d{left:7.500000px;}
.x9b{left:8.700000px;}
.x9a{left:9.900000px;}
.x3{left:10.965750px;}
.xa{left:12.186068px;}
.x14{left:13.897205px;}
.x13{left:15.745006px;}
.x8c{left:20.085000px;}
.xe{left:21.700273px;}
.x8b{left:24.300000px;}
.x15{left:27.083442px;}
.x18{left:28.512747px;}
.x1b{left:30.064162px;}
.x7f{left:33.000000px;}
.x9{left:35.738190px;}
.x8a{left:37.800000px;}
.x95{left:39.000000px;}
.x87{left:40.230000px;}
.x92{left:43.500000px;}
.x96{left:47.685000px;}
.x88{left:49.245000px;}
.x99{left:51.600000px;}
.x94{left:53.130000px;}
.x93{left:57.930000px;}
.x90{left:62.730000px;}
.x2a{left:65.026580px;}
.x91{left:66.330000px;}
.x8f{left:70.830000px;}
.x37{left:96.028884px;}
.x2b{left:99.791747px;}
.x35{left:101.229999px;}
.x29{left:104.964435px;}
.xd{left:108.499868px;}
.x25{left:110.217718px;}
.x8{left:113.700982px;}
.x23{left:115.410644px;}
.x36{left:122.858369px;}
.x4b{left:124.199950px;}
.x1{left:127.656000px;}
.x24{left:136.998741px;}
.x67{left:144.899370px;}
.x28{left:148.065000px;}
.xa6{left:154.620168px;}
.x43{left:159.510000px;}
.x7e{left:164.430000px;}
.x68{left:165.599406px;}
.x44{left:170.130000px;}
.xa7{left:181.620639px;}
.x45{left:191.550000px;}
.xc{left:201.108772px;}
.x2e{left:206.850000px;}
.x6{left:208.650000px;}
.x80{left:219.975000px;}
.x7d{left:228.075000px;}
.x81{left:229.575000px;}
.xae{left:233.819043px;}
.x42{left:235.650000px;}
.x82{left:237.075000px;}
.xa1{left:240.675000px;}
.x47{left:247.875000px;}
.x4a{left:258.375000px;}
.x7{left:260.190000px;}
.x49{left:262.575000px;}
.x22{left:269.190000px;}
.x48{left:273.375000px;}
.x9e{left:276.075000px;}
.xa2{left:277.875000px;}
.x83{left:281.475000px;}
.x84{left:283.275000px;}
.x9c{left:284.775000px;}
.xa3{left:288.405000px;}
.x85{left:290.220000px;}
.x72{left:303.479640px;}
.x3f{left:308.640000px;}
.x73{left:310.499876px;}
.x69{left:315.899874px;}
.x58{left:320.760215px;}
.x31{left:326.265000px;}
.x59{left:327.779869px;}
.x5a{left:338.399865px;}
.x8e{left:344.220000px;}
.x74{left:346.139862px;}
.x6a{left:351.539859px;}
.x4c{left:353.879172px;}
.x6b{left:357.839857px;}
.x40{left:361.695000px;}
.x5b{left:363.419855px;}
.x5c{left:369.719852px;}
.x4d{left:371.339851px;}
.x86{left:375.420000px;}
.x32{left:385.095000px;}
.x5d{left:391.319843px;}
.x4e{left:396.539841px;}
.x33{left:399.840000px;}
.x20{left:401.340000px;}
.x4f{left:402.839839px;}
.x9f{left:412.950000px;}
.x79{left:417.779833px;}
.x17{left:420.765000px;}
.x26{left:422.175000px;}
.x3b{left:424.365000px;}
.x5e{left:426.959829px;}
.x7a{left:429.839828px;}
.xa4{left:432.150000px;}
.x50{left:435.239826px;}
.x6c{left:437.939825px;}
.x6d{left:439.199824px;}
.x5f{left:441.539823px;}
.x60{left:442.799822px;}
.x2c{left:445.935000px;}
.xa5{left:447.450000px;}
.x7b{left:455.939818px;}
.x34{left:459.615000px;}
.x21{left:461.055000px;}
.x6e{left:462.959815px;}
.x61{left:466.379813px;}
.x51{left:467.639813px;}
.x2{left:474.015000px;}
.x52{left:475.919809px;}
.x19{left:479.595000px;}
.x3c{left:483.195000px;}
.x62{left:490.499804px;}
.x5{left:492.015000px;}
.x27{left:496.695000px;}
.x1a{left:498.165000px;}
.x53{left:499.499800px;}
.x3d{left:501.915000px;}
.x63{left:506.879797px;}
.x6f{left:507.959796px;}
.x75{left:510.119796px;}
.x76{left:511.379795px;}
.x2d{left:514.365000px;}
.x97{left:519.780000px;}
.x54{left:524.699790px;}
.x7c{left:528.479789px;}
.x55{left:532.259787px;}
.x38{left:533.445000px;}
.x77{left:535.139786px;}
.xf{left:539.205000px;}
.x56{left:540.539783px;}
.x12{left:543.690000px;}
.x1e{left:546.015000px;}
.x9d{left:549.195000px;}
.x64{left:556.019778px;}
.x1d{left:557.925000px;}
.x57{left:560.699776px;}
.x3e{left:561.705000px;}
.x1f{left:564.045000px;}
.x65{left:572.399771px;}
.x41{left:579.525000px;}
.x39{left:583.815000px;}
.x70{left:585.359765px;}
.x10{left:589.590000px;}
.xa0{left:590.595000px;}
.x66{left:593.639763px;}
.x16{left:596.805000px;}
.x89{left:600.780000px;}
.x3a{left:601.845000px;}
.x71{left:605.519758px;}
.x11{left:607.605000px;}
.x78{left:610.919756px;}
.x2f{left:645.240000px;}
.xad{left:648.900008px;}
.xac{left:653.400459px;}
.x30{left:663.225000px;}
.xa9{left:677.160542px;}
.x98{left:688.425000px;}
.xaa{left:710.820569px;}
.xab{left:716.040573px;}
.xa8{left:728.280583px;}
.x46{left:738.690000px;}
@media print{
.v3{vertical-align:-28.308801pt;}
.v9{vertical-align:-21.760000pt;}
.v8{vertical-align:-19.840000pt;}
.v1{vertical-align:-12.160000pt;}
.v15{vertical-align:-10.666667pt;}
.v16{vertical-align:-9.600000pt;}
.va{vertical-align:-8.533333pt;}
.v14{vertical-align:-4.479998pt;}
.v6{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v2a{vertical-align:1.013333pt;}
.v4{vertical-align:1.920000pt;}
.vd{vertical-align:8.533333pt;}
.v2{vertical-align:12.160000pt;}
.v10{vertical-align:13.866667pt;}
.v1f{vertical-align:18.133333pt;}
.v17{vertical-align:20.266667pt;}
.v5{vertical-align:21.760000pt;}
.ve{vertical-align:24.533333pt;}
.vc{vertical-align:25.600000pt;}
.v28{vertical-align:26.666667pt;}
.vb{vertical-align:29.973333pt;}
.v2b{vertical-align:30.933333pt;}
.v12{vertical-align:32.000000pt;}
.v7{vertical-align:33.920000pt;}
.v13{vertical-align:35.200000pt;}
.v19{vertical-align:37.333333pt;}
.v11{vertical-align:38.400000pt;}
.v18{vertical-align:39.466667pt;}
.v21{vertical-align:40.533333pt;}
.v20{vertical-align:41.600000pt;}
.vf{vertical-align:51.200000pt;}
.v25{vertical-align:52.266667pt;}
.v1a{vertical-align:54.400000pt;}
.v1d{vertical-align:55.413333pt;}
.v2d{vertical-align:59.786667pt;}
.v23{vertical-align:60.906667pt;}
.v22{vertical-align:64.000000pt;}
.v2c{vertical-align:66.133333pt;}
.v29{vertical-align:69.333333pt;}
.v1e{vertical-align:71.466667pt;}
.v1c{vertical-align:72.533333pt;}
.v1b{vertical-align:73.600000pt;}
.v27{vertical-align:74.666667pt;}
.v26{vertical-align:75.733333pt;}
.v24{vertical-align:137.706667pt;}
.ls31{letter-spacing:-0.640000pt;}
.ls73{letter-spacing:-0.501333pt;}
.ls66{letter-spacing:-0.437333pt;}
.ls68{letter-spacing:-0.416000pt;}
.ls64{letter-spacing:-0.368000pt;}
.ls65{letter-spacing:-0.282667pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.043520pt;}
.ls10{letter-spacing:-0.038400pt;}
.lsa{letter-spacing:0.000000pt;}
.ls93{letter-spacing:0.003040pt;}
.ls14{letter-spacing:0.017920pt;}
.ls26{letter-spacing:0.020480pt;}
.ls94{letter-spacing:0.032213pt;}
.ls32{letter-spacing:0.053120pt;}
.ls86{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.053867pt;}
.ls67{letter-spacing:0.090667pt;}
.lsf{letter-spacing:0.117867pt;}
.ls63{letter-spacing:0.122667pt;}
.ls25{letter-spacing:0.132267pt;}
.ls2e{letter-spacing:0.133120pt;}
.ls56{letter-spacing:0.133333pt;}
.ls88{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.186667pt;}
.ls85{letter-spacing:0.197333pt;}
.ls1a{letter-spacing:0.203674pt;}
.ls19{letter-spacing:0.207467pt;}
.lsb{letter-spacing:0.227733pt;}
.ls58{letter-spacing:0.240000pt;}
.ls78{letter-spacing:0.256000pt;}
.ls5b{letter-spacing:0.293333pt;}
.ls62{letter-spacing:0.336000pt;}
.ls13{letter-spacing:0.415202pt;}
.ls1d{letter-spacing:0.416226pt;}
.ls16{letter-spacing:0.416241pt;}
.ls84{letter-spacing:0.538667pt;}
.ls6b{letter-spacing:0.564000pt;}
.ls12{letter-spacing:0.685896pt;}
.ls1c{letter-spacing:0.687587pt;}
.ls72{letter-spacing:0.773333pt;}
.ls35{letter-spacing:0.821333pt;}
.ls7a{letter-spacing:0.826667pt;}
.ls42{letter-spacing:0.885333pt;}
.ls82{letter-spacing:0.896000pt;}
.ls48{letter-spacing:0.928000pt;}
.ls37{letter-spacing:0.981333pt;}
.ls3c{letter-spacing:0.992000pt;}
.ls61{letter-spacing:1.253333pt;}
.ls3d{letter-spacing:1.456000pt;}
.ls8c{letter-spacing:1.530667pt;}
.ls6e{letter-spacing:1.781333pt;}
.ls4d{letter-spacing:1.962667pt;}
.ls6d{letter-spacing:2.090667pt;}
.ls44{letter-spacing:2.101333pt;}
.ls3b{letter-spacing:2.469333pt;}
.ls3a{letter-spacing:2.522667pt;}
.ls41{letter-spacing:2.576000pt;}
.ls40{letter-spacing:2.682667pt;}
.ls20{letter-spacing:2.692480pt;}
.ls6c{letter-spacing:2.848000pt;}
.ls23{letter-spacing:2.892800pt;}
.ls4b{letter-spacing:3.029333pt;}
.ls49{letter-spacing:3.082667pt;}
.ls2{letter-spacing:3.532800pt;}
.ls4f{letter-spacing:3.573333pt;}
.ls4c{letter-spacing:3.626667pt;}
.ls52{letter-spacing:3.680000pt;}
.ls55{letter-spacing:3.786667pt;}
.ls59{letter-spacing:4.693333pt;}
.ls77{letter-spacing:9.018667pt;}
.ls7e{letter-spacing:9.072000pt;}
.ls81{letter-spacing:9.232000pt;}
.ls71{letter-spacing:9.653333pt;}
.ls89{letter-spacing:9.760000pt;}
.ls75{letter-spacing:10.138667pt;}
.ls87{letter-spacing:10.720000pt;}
.ls47{letter-spacing:11.056000pt;}
.ls0{letter-spacing:11.151360pt;}
.ls54{letter-spacing:11.562667pt;}
.ls2b{letter-spacing:12.976640pt;}
.ls4e{letter-spacing:12.986667pt;}
.ls3e{letter-spacing:13.557333pt;}
.ls69{letter-spacing:14.165570pt;}
.ls1f{letter-spacing:14.351360pt;}
.ls33{letter-spacing:14.624000pt;}
.ls29{letter-spacing:15.631360pt;}
.ls57{letter-spacing:15.690667pt;}
.ls2c{letter-spacing:15.884800pt;}
.ls3f{letter-spacing:15.909333pt;}
.ls70{letter-spacing:16.053333pt;}
.ls22{letter-spacing:16.176640pt;}
.ls53{letter-spacing:16.186667pt;}
.ls7c{letter-spacing:16.213333pt;}
.ls9{letter-spacing:16.332800pt;}
.ls30{letter-spacing:16.336640pt;}
.ls2f{letter-spacing:16.439467pt;}
.ls76{letter-spacing:16.645333pt;}
.ls74{letter-spacing:16.698667pt;}
.ls6a{letter-spacing:16.727026pt;}
.ls34{letter-spacing:16.757333pt;}
.ls27{letter-spacing:16.911360pt;}
.ls80{letter-spacing:16.922667pt;}
.ls79{letter-spacing:16.976000pt;}
.ls8a{letter-spacing:17.029333pt;}
.ls8f{letter-spacing:17.082667pt;}
.ls91{letter-spacing:17.136000pt;}
.ls38{letter-spacing:17.253333pt;}
.ls7b{letter-spacing:17.962667pt;}
.ls7f{letter-spacing:18.122667pt;}
.ls24{letter-spacing:18.692480pt;}
.ls7d{letter-spacing:18.848000pt;}
.ls6f{letter-spacing:19.029333pt;}
.ls21{letter-spacing:19.532800pt;}
.ls4a{letter-spacing:19.626667pt;}
.ls8d{letter-spacing:19.669333pt;}
.ls5e{letter-spacing:19.680000pt;}
.ls51{letter-spacing:19.786667pt;}
.ls8b{letter-spacing:19.914667pt;}
.ls45{letter-spacing:19.957333pt;}
.ls28{letter-spacing:20.111360pt;}
.ls1{letter-spacing:20.172800pt;}
.ls1e{letter-spacing:20.332800pt;}
.ls2d{letter-spacing:20.613120pt;}
.ls50{letter-spacing:20.853333pt;}
.ls5a{letter-spacing:26.357333pt;}
.ls2a{letter-spacing:27.151360pt;}
.ls90{letter-spacing:32.213333pt;}
.ls83{letter-spacing:32.538667pt;}
.ls5d{letter-spacing:33.824000pt;}
.ls4{letter-spacing:34.191360pt;}
.ls92{letter-spacing:34.862001pt;}
.ls6{letter-spacing:35.471360pt;}
.ls3{letter-spacing:36.751360pt;}
.ls5c{letter-spacing:37.024000pt;}
.ls5{letter-spacing:39.951360pt;}
.ls5f{letter-spacing:40.224000pt;}
.ls7{letter-spacing:46.991360pt;}
.ls95{letter-spacing:52.793002pt;}
.ls60{letter-spacing:57.290667pt;}
.ls46{letter-spacing:60.709333pt;}
.ls8{letter-spacing:68.926973pt;}
.ls8e{letter-spacing:70.965333pt;}
.ls43{letter-spacing:101.152000pt;}
.ls39{letter-spacing:120.442667pt;}
.ls11{letter-spacing:164.142760pt;}
.ls18{letter-spacing:231.209256pt;}
.ls17{letter-spacing:236.771712pt;}
.ls1b{letter-spacing:252.409560pt;}
.ls15{letter-spacing:302.838996pt;}
.ws1{word-spacing:-58.880000pt;}
.ws29{word-spacing:-46.543360pt;}
.ws2{word-spacing:-46.059520pt;}
.ws4{word-spacing:-45.903360pt;}
.ws1e{word-spacing:-42.880000pt;}
.ws4b{word-spacing:-37.708473pt;}
.ws6b{word-spacing:-29.793304pt;}
.ws4d{word-spacing:-28.997701pt;}
.ws3{word-spacing:-28.027520pt;}
.ws4c{word-spacing:-27.461645pt;}
.ws2a{word-spacing:-27.387520pt;}
.ws6c{word-spacing:-14.720012pt;}
.ws0{word-spacing:-13.534613pt;}
.ws48{word-spacing:-13.498667pt;}
.ws8{word-spacing:-13.424747pt;}
.ws42{word-spacing:-13.392000pt;}
.ws3f{word-spacing:-13.381333pt;}
.ws7{word-spacing:-13.360747pt;}
.ws14{word-spacing:-13.324800pt;}
.ws6a{word-spacing:-13.306891pt;}
.ws9{word-spacing:-13.268480pt;}
.ws5{word-spacing:-13.263360pt;}
.ws53{word-spacing:-13.162667pt;}
.ws6{word-spacing:-13.114880pt;}
.ws43{word-spacing:-12.976000pt;}
.ws2b{word-spacing:-12.953600pt;}
.ws4a{word-spacing:-12.951543pt;}
.ws44{word-spacing:-12.906667pt;}
.ws40{word-spacing:-12.890667pt;}
.ws47{word-spacing:-12.842667pt;}
.ws46{word-spacing:-12.469333pt;}
.ws4e{word-spacing:-12.405333pt;}
.ws5a{word-spacing:-10.282667pt;}
.ws3a{word-spacing:-9.433600pt;}
.ws41{word-spacing:-9.386667pt;}
.ws2d{word-spacing:-0.616960pt;}
.ws2c{word-spacing:-0.133120pt;}
.ws2f{word-spacing:-0.058880pt;}
.ws28{word-spacing:0.000000pt;}
.ws39{word-spacing:0.023040pt;}
.ws2e{word-spacing:3.223040pt;}
.ws38{word-spacing:6.058880pt;}
.ws33{word-spacing:8.354773pt;}
.ws32{word-spacing:8.461440pt;}
.ws3e{word-spacing:8.639360pt;}
.ws3d{word-spacing:8.718720pt;}
.ws37{word-spacing:8.915200pt;}
.ws34{word-spacing:8.994560pt;}
.ws30{word-spacing:8.994773pt;}
.ws31{word-spacing:9.073280pt;}
.ws3b{word-spacing:9.279360pt;}
.ws35{word-spacing:15.296000pt;}
.ws45{word-spacing:15.600000pt;}
.ws36{word-spacing:15.936000pt;}
.ws3c{word-spacing:16.042667pt;}
.ws49{word-spacing:16.666667pt;}
.ws59{word-spacing:19.973333pt;}
.ws23{word-spacing:20.832636pt;}
.ws1f{word-spacing:27.002229pt;}
.ws12{word-spacing:27.409578pt;}
.ws26{word-spacing:27.477157pt;}
.ws18{word-spacing:27.478136pt;}
.ws10{word-spacing:28.127665pt;}
.ws24{word-spacing:28.197014pt;}
.ws13{word-spacing:29.511289pt;}
.ws27{word-spacing:29.584050pt;}
.ws19{word-spacing:29.585104pt;}
.ws11{word-spacing:32.377736pt;}
.ws25{word-spacing:32.457564pt;}
.wsf{word-spacing:37.523111pt;}
.ws1d{word-spacing:41.177959pt;}
.ws69{word-spacing:45.456000pt;}
.ws63{word-spacing:46.416000pt;}
.ws5e{word-spacing:46.469333pt;}
.ws52{word-spacing:46.496000pt;}
.ws66{word-spacing:46.640000pt;}
.ws58{word-spacing:46.704000pt;}
.ws64{word-spacing:47.328000pt;}
.ws5f{word-spacing:47.488000pt;}
.ws50{word-spacing:47.498667pt;}
.ws56{word-spacing:47.509333pt;}
.ws5d{word-spacing:47.669333pt;}
.wsb{word-spacing:49.157712pt;}
.ws15{word-spacing:55.188212pt;}
.ws5b{word-spacing:63.274667pt;}
.ws67{word-spacing:63.392000pt;}
.ws68{word-spacing:63.434667pt;}
.ws5c{word-spacing:68.816000pt;}
.ws62{word-spacing:68.821333pt;}
.ws60{word-spacing:69.781333pt;}
.ws17{word-spacing:70.112176pt;}
.ws65{word-spacing:79.509333pt;}
.ws61{word-spacing:90.256000pt;}
.ws4f{word-spacing:96.394667pt;}
.ws1b{word-spacing:102.218844pt;}
.ws55{word-spacing:111.616000pt;}
.ws51{word-spacing:112.394667pt;}
.ws54{word-spacing:112.725333pt;}
.ws21{word-spacing:128.160674pt;}
.ws1c{word-spacing:128.860148pt;}
.ws16{word-spacing:130.202309pt;}
.wsc{word-spacing:136.678985pt;}
.ws1a{word-spacing:140.650751pt;}
.ws57{word-spacing:144.682667pt;}
.wse{word-spacing:185.113258pt;}
.wsd{word-spacing:196.630847pt;}
.wsa{word-spacing:209.999182pt;}
.ws22{word-spacing:210.703169pt;}
.ws20{word-spacing:235.729890pt;}
._31{margin-left:-8.112000pt;}
._32{margin-left:-7.045333pt;}
._27{margin-left:-4.176219pt;}
._1{margin-left:-2.870400pt;}
._18{margin-left:-1.879253pt;}
._0{margin-left:-0.942080pt;}
._4{width:0.913712pt;}
._13{width:1.949253pt;}
._23{width:3.470709pt;}
._25{width:4.666864pt;}
._24{width:5.896118pt;}
._33{width:7.034875pt;}
._34{width:8.801920pt;}
._f{width:10.311893pt;}
._12{width:11.770667pt;}
._29{width:13.538560pt;}
._26{width:14.786773pt;}
._2{width:16.176640pt;}
._2a{width:17.107141pt;}
._2c{width:18.538209pt;}
._16{width:19.850453pt;}
._17{width:20.747947pt;}
._35{width:23.522128pt;}
._37{width:28.774266pt;}
._28{width:29.929387pt;}
._2b{width:54.640427pt;}
._2e{width:60.604587pt;}
._21{width:71.208631pt;}
._2d{width:77.032955pt;}
._2f{width:93.180587pt;}
._c{width:103.310383pt;}
._1b{width:140.528923pt;}
._5{width:146.863993pt;}
._9{width:172.406301pt;}
._22{width:183.412478pt;}
._d{width:184.326190pt;}
._20{width:189.686634pt;}
._11{width:190.661261pt;}
._e{width:197.057245pt;}
._8{width:213.976706pt;}
._1e{width:234.971953pt;}
._15{width:236.061509pt;}
._1d{width:238.968228pt;}
._14{width:240.833792pt;}
._1a{width:249.504321pt;}
._6{width:256.753103pt;}
._1c{width:269.662040pt;}
._a{width:296.286381pt;}
._1f{width:302.186218pt;}
._19{width:303.910985pt;}
._3{width:307.149323pt;}
._b{width:309.402080pt;}
._7{width:313.590800pt;}
._10{width:320.067476pt;}
._30{width:755.034667pt;}
._38{width:1083.632654pt;}
._36{width:1092.826535pt;}
.fs2{font-size:35.199327pt;}
.fs18{font-size:35.200000pt;}
.fs6{font-size:35.214458pt;}
.fs1c{font-size:37.120030pt;}
.fs8{font-size:37.314388pt;}
.fs1a{font-size:41.735023pt;}
.fs17{font-size:42.666667pt;}
.fs1{font-size:42.880000pt;}
.fs19{font-size:57.307710pt;}
.fs16{font-size:58.666667pt;}
.fs0{font-size:58.880000pt;}
.fs1b{font-size:58.880047pt;}
.fs7{font-size:60.815465pt;}
.fs4{font-size:60.914141pt;}
.fsd{font-size:62.144242pt;}
.fsb{font-size:62.269902pt;}
.fs15{font-size:62.297459pt;}
.fs10{font-size:62.299680pt;}
.fs13{font-size:62.423429pt;}
.fs3{font-size:64.222626pt;}
.fs11{font-size:64.269401pt;}
.fse{font-size:64.293120pt;}
.fs5{font-size:64.305405pt;}
.fs9{font-size:64.442050pt;}
.fsc{font-size:81.448801pt;}
.fsa{font-size:81.574461pt;}
.fs14{font-size:81.649615pt;}
.fsf{font-size:81.652525pt;}
.fs12{font-size:81.775585pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:3.440000pt;}
.yfb{bottom:3.453333pt;}
.y16{bottom:3.663657pt;}
.y10e{bottom:3.706667pt;}
.yb3{bottom:3.973333pt;}
.yab{bottom:3.986667pt;}
.ybd{bottom:4.013333pt;}
.y5{bottom:4.129992pt;}
.yf{bottom:4.162528pt;}
.ybf{bottom:4.240000pt;}
.yad{bottom:4.253333pt;}
.y17{bottom:7.640334pt;}
.y6{bottom:8.097572pt;}
.y1a{bottom:8.111763pt;}
.y10{bottom:8.129975pt;}
.y3d{bottom:8.131763pt;}
.y1c{bottom:8.144226pt;}
.y3f{bottom:8.164305pt;}
.y2a{bottom:8.164596pt;}
.y1b{bottom:9.279880pt;}
.y3e{bottom:9.302760pt;}
.y1d{bottom:9.312343pt;}
.y40{bottom:9.335302pt;}
.y2b{bottom:9.335635pt;}
.y15{bottom:14.717535pt;}
.y10b{bottom:20.786667pt;}
.y101{bottom:21.573333pt;}
.yfc{bottom:21.586667pt;}
.yf9{bottom:21.626667pt;}
.y102{bottom:21.840000pt;}
.yaa{bottom:21.853333pt;}
.yfa{bottom:21.893333pt;}
.y109{bottom:38.920000pt;}
.y10a{bottom:39.186667pt;}
.y66{bottom:110.432000pt;}
.y86{bottom:113.100000pt;}
.y42{bottom:113.653333pt;}
.y41{bottom:121.632000pt;}
.y85{bottom:132.833333pt;}
.ycf{bottom:141.373333pt;}
.y65{bottom:144.346667pt;}
.y14f{bottom:147.788118pt;}
.y11b{bottom:149.626667pt;}
.y84{bottom:153.106667pt;}
.y3c{bottom:154.453333pt;}
.y3b{bottom:163.706667pt;}
.y64{bottom:164.986667pt;}
.y14e{bottom:168.268135pt;}
.yce{bottom:171.226667pt;}
.y83{bottom:173.106667pt;}
.y11a{bottom:179.773333pt;}
.ycc{bottom:180.840000pt;}
.ycd{bottom:183.506667pt;}
.y3a{bottom:188.026667pt;}
.y82{bottom:193.133333pt;}
.y119{bottom:197.133333pt;}
.y118{bottom:197.933333pt;}
.y14d{bottom:198.188159pt;}
.yf6{bottom:198.733333pt;}
.y63{bottom:198.746667pt;}
.y39{bottom:208.666667pt;}
.y81{bottom:212.866667pt;}
.ycb{bottom:217.400000pt;}
.yc9{bottom:226.733333pt;}
.y38{bottom:229.306667pt;}
.yca{bottom:229.400000pt;}
.yf5{bottom:232.600000pt;}
.y62{bottom:232.666667pt;}
.y80{bottom:233.133333pt;}
.y117{bottom:246.200000pt;}
.y37{bottom:249.786667pt;}
.y61{bottom:253.466667pt;}
.y14c{bottom:257.068206pt;}
.yc8{bottom:262.200000pt;}
.y7f{bottom:265.133333pt;}
.y36{bottom:266.453333pt;}
.yf4{bottom:266.466667pt;}
.yc6{bottom:271.800000pt;}
.y7e{bottom:273.400000pt;}
.y35{bottom:274.426667pt;}
.yc7{bottom:274.466667pt;}
.y116{bottom:276.600000pt;}
.y114{bottom:277.400000pt;}
.y14b{bottom:277.708222pt;}
.yf3{bottom:281.146667pt;}
.y113{bottom:286.733333pt;}
.y60{bottom:287.226667pt;}
.y115{bottom:289.400000pt;}
.y34{bottom:293.053333pt;}
.y14a{bottom:298.188239pt;}
.yf2{bottom:299.813333pt;}
.y33{bottom:302.266667pt;}
.yc5{bottom:311.800000pt;}
.y7d{bottom:313.666667pt;}
.yf1{bottom:318.213333pt;}
.y149{bottom:318.828255pt;}
.y5f{bottom:321.186667pt;}
.y32{bottom:322.786667pt;}
.y112{bottom:327.040000pt;}
.y31{bottom:330.786667pt;}
.yf0{bottom:336.920000pt;}
.y148{bottom:340.268272pt;}
.yc4{bottom:345.706667pt;}
.y7c{bottom:347.040000pt;}
.y2f{bottom:349.386667pt;}
.y5d{bottom:355.266667pt;}
.yef{bottom:355.586667pt;}
.y30{bottom:358.626667pt;}
.y5e{bottom:360.706667pt;}
.y147{bottom:360.748289pt;}
.y111{bottom:360.893333pt;}
.yc2{bottom:367.840000pt;}
.yc3{bottom:370.506667pt;}
.y5c{bottom:376.226667pt;}
.y2e{bottom:379.120000pt;}
.y7b{bottom:380.106667pt;}
.y146{bottom:381.388305pt;}
.y110{bottom:381.440000pt;}
.y2d{bottom:387.106667pt;}
.yc1{bottom:389.173333pt;}
.yee{bottom:393.973333pt;}
.y29{bottom:405.653333pt;}
.y5b{bottom:409.986667pt;}
.y7a{bottom:413.173333pt;}
.y2c{bottom:414.946667pt;}
.y10f{bottom:415.560000pt;}
.y145{bottom:416.108333pt;}
.ya8{bottom:422.826498pt;}
.yc0{bottom:423.026667pt;}
.yed{bottom:428.106667pt;}
.y10d{bottom:429.986667pt;}
.y28{bottom:435.453333pt;}
.y144{bottom:436.748349pt;}
.ybe{bottom:437.453333pt;}
.yec{bottom:442.520000pt;}
.ya7{bottom:442.986489pt;}
.y27{bottom:443.426667pt;}
.y5a{bottom:443.906667pt;}
.y79{bottom:446.226667pt;}
.ybc{bottom:456.120000pt;}
.yeb{bottom:461.213333pt;}
.y26{bottom:461.986667pt;}
.y10c{bottom:466.280000pt;}
.y143{bottom:466.668373pt;}
.y25{bottom:471.266667pt;}
.ybb{bottom:474.813333pt;}
.ya6{bottom:475.946476pt;}
.y59{bottom:477.826667pt;}
.y78{bottom:479.600000pt;}
.yea{bottom:479.613333pt;}
.yba{bottom:493.213333pt;}
.y24{bottom:495.746667pt;}
.ya5{bottom:495.946468pt;}
.ye9{bottom:498.280000pt;}
.y57{bottom:498.466667pt;}
.y108{bottom:502.546667pt;}
.y58{bottom:503.906667pt;}
.yb9{bottom:511.880000pt;}
.y77{bottom:513.200000pt;}
.ya4{bottom:514.186461pt;}
.y23{bottom:516.226667pt;}
.ye8{bottom:516.946667pt;}
.ya3{bottom:517.066460pt;}
.y56{bottom:532.573333pt;}
.y22{bottom:536.893333pt;}
.ya2{bottom:537.066452pt;}
.y161{bottom:544.428436pt;}
.y76{bottom:546.266667pt;}
.y130{bottom:549.466667pt;}
.y55{bottom:553.373333pt;}
.y75{bottom:554.266667pt;}
.ye7{bottom:555.600000pt;}
.y107{bottom:555.880000pt;}
.y21{bottom:557.533333pt;}
.y160{bottom:565.068452pt;}
.yb8{bottom:568.400000pt;}
.ya1{bottom:569.866439pt;}
.y20{bottom:578.013333pt;}
.y142{bottom:578.668463pt;}
.y12f{bottom:579.866667pt;}
.yb7{bottom:583.080000pt;}
.y54{bottom:587.133333pt;}
.y12e{bottom:589.200000pt;}
.ye6{bottom:589.466667pt;}
.y106{bottom:594.560000pt;}
.y1f{bottom:594.653333pt;}
.y74{bottom:595.360000pt;}
.y15f{bottom:598.988479pt;}
.y141{bottom:599.148479pt;}
.yb6{bottom:601.520000pt;}
.y1e{bottom:602.653333pt;}
.y9f{bottom:605.706424pt;}
.y9d{bottom:606.346424pt;}
.y9c{bottom:609.386423pt;}
.y9e{bottom:610.506422pt;}
.ya0{bottom:614.666421pt;}
.ye5{bottom:619.640000pt;}
.y140{bottom:619.788496pt;}
.yb5{bottom:620.186667pt;}
.y53{bottom:621.053333pt;}
.y19{bottom:621.186667pt;}
.y12d{bottom:625.226667pt;}
.y105{bottom:628.440000pt;}
.y73{bottom:628.693333pt;}
.y18{bottom:630.493333pt;}
.y15e{bottom:632.908506pt;}
.ye4{bottom:636.693333pt;}
.ye2{bottom:637.506667pt;}
.yb4{bottom:638.586667pt;}
.ye3{bottom:640.173333pt;}
.y13f{bottom:640.428512pt;}
.y12c{bottom:642.306667pt;}
.y12b{bottom:643.106667pt;}
.y103{bottom:643.120000pt;}
.y14{bottom:650.986667pt;}
.y15d{bottom:653.388523pt;}
.y52{bottom:654.973333pt;}
.y9a{bottom:656.906404pt;}
.yb2{bottom:657.253333pt;}
.y98{bottom:657.386404pt;}
.y13{bottom:658.973333pt;}
.y13e{bottom:659.628528pt;}
.y97{bottom:660.426402pt;}
.y99{bottom:660.746402pt;}
.y13d{bottom:660.908529pt;}
.y72{bottom:661.773333pt;}
.y9b{bottom:665.706400pt;}
.y100{bottom:679.386667pt;}
.ye1{bottom:682.026667pt;}
.y12{bottom:682.333333pt;}
.y12a{bottom:687.106667pt;}
.y15c{bottom:688.108550pt;}
.y51{bottom:688.893333pt;}
.y71{bottom:695.373333pt;}
.y129{bottom:696.706667pt;}
.y13c{bottom:698.028558pt;}
.ye0{bottom:699.373333pt;}
.yde{bottom:700.173333pt;}
.ydf{bottom:702.840000pt;}
.y11{bottom:702.973333pt;}
.y96{bottom:703.786385pt;}
.y15b{bottom:708.748567pt;}
.yb1{bottom:713.773333pt;}
.yff{bottom:715.386667pt;}
.ye{bottom:719.586667pt;}
.y50{bottom:722.813333pt;}
.yd{bottom:727.613333pt;}
.yb0{bottom:728.480000pt;}
.y15a{bottom:729.228583pt;}
.y70{bottom:729.266667pt;}
.y128{bottom:736.733333pt;}
.y95{bottom:736.746372pt;}
.y13b{bottom:742.028594pt;}
.ydd{bottom:745.000000pt;}
.yaf{bottom:746.880000pt;}
.yc{bottom:750.213333pt;}
.yfe{bottom:754.066667pt;}
.y4f{bottom:756.773333pt;}
.y127{bottom:757.266667pt;}
.y6f{bottom:761.266667pt;}
.ydc{bottom:762.333333pt;}
.y13a{bottom:762.508610pt;}
.yda{bottom:763.133333pt;}
.yae{bottom:765.546667pt;}
.ydb{bottom:765.800000pt;}
.y159{bottom:767.788614pt;}
.y6e{bottom:768.733333pt;}
.y94{bottom:769.706359pt;}
.yb{bottom:770.853333pt;}
.yac{bottom:783.946667pt;}
.y126{bottom:787.666667pt;}
.yfd{bottom:787.933333pt;}
.y4e{bottom:790.693333pt;}
.ya{bottom:791.493333pt;}
.y139{bottom:796.428637pt;}
.y124{bottom:797.800000pt;}
.y125{bottom:800.466667pt;}
.ya9{bottom:802.613333pt;}
.y93{bottom:802.826346pt;}
.y6d{bottom:804.200000pt;}
.yd9{bottom:811.400000pt;}
.y6c{bottom:811.666667pt;}
.y9{bottom:811.973333pt;}
.y138{bottom:817.068654pt;}
.y4d{bottom:824.613333pt;}
.y49{bottom:825.253333pt;}
.y158{bottom:826.668661pt;}
.y8{bottom:832.613333pt;}
.y123{bottom:834.066667pt;}
.y122{bottom:834.333333pt;}
.y137{bottom:837.708670pt;}
.y91{bottom:838.346331pt;}
.yf8{bottom:838.880000pt;}
.y8f{bottom:838.986331pt;}
.yd8{bottom:841.800000pt;}
.y8e{bottom:842.026330pt;}
.y90{bottom:843.146329pt;}
.y121{bottom:843.666667pt;}
.y157{bottom:847.148678pt;}
.y92{bottom:847.306328pt;}
.y6b{bottom:849.800000pt;}
.yd6{bottom:851.133333pt;}
.y7{bottom:853.253333pt;}
.yd7{bottom:853.800000pt;}
.y6a{bottom:857.293333pt;}
.y136{bottom:858.188687pt;}
.y4b{bottom:858.693333pt;}
.y48{bottom:859.173333pt;}
.y4c{bottom:864.133333pt;}
.y156{bottom:868.588695pt;}
.y4{bottom:869.853333pt;}
.yf7{bottom:875.186667pt;}
.y3{bottom:877.893333pt;}
.y4a{bottom:879.653333pt;}
.y47{bottom:879.813333pt;}
.y120{bottom:883.706667pt;}
.yd5{bottom:887.173333pt;}
.y135{bottom:888.108710pt;}
.y155{bottom:889.228711pt;}
.y8c{bottom:889.706311pt;}
.y8a{bottom:890.346311pt;}
.y69{bottom:893.040000pt;}
.y89{bottom:893.226309pt;}
.y8b{bottom:893.546309pt;}
.yd3{bottom:896.506667pt;}
.y8d{bottom:898.506307pt;}
.yd4{bottom:899.173333pt;}
.y46{bottom:900.453333pt;}
.y154{bottom:909.708728pt;}
.y2{bottom:913.733333pt;}
.y68{bottom:913.840000pt;}
.y11f{bottom:914.106667pt;}
.y45{bottom:921.093333pt;}
.y134{bottom:925.868741pt;}
.y153{bottom:931.148745pt;}
.y11e{bottom:931.440000pt;}
.yd2{bottom:931.960000pt;}
.y11c{bottom:932.773333pt;}
.y11d{bottom:935.440000pt;}
.y88{bottom:936.586292pt;}
.y44{bottom:937.653333pt;}
.yd0{bottom:941.560000pt;}
.yd1{bottom:944.226667pt;}
.y43{bottom:945.733333pt;}
.y133{bottom:946.508757pt;}
.y1{bottom:947.653333pt;}
.y67{bottom:947.706667pt;}
.y152{bottom:951.788761pt;}
.y87{bottom:969.546279pt;}
.y151{bottom:973.068778pt;}
.y132{bottom:980.428784pt;}
.y150{bottom:993.708795pt;}
.y131{bottom:1014.348811pt;}
.h50{height:17.840000pt;}
.h3e{height:17.853333pt;}
.h42{height:17.873333pt;}
.h41{height:17.886667pt;}
.h40{height:18.106667pt;}
.h3d{height:18.120000pt;}
.h53{height:18.153333pt;}
.h3{height:23.999899pt;}
.hb{height:24.440157pt;}
.hd{height:24.800391pt;}
.hf{height:25.908721pt;}
.h12{height:26.866428pt;}
.h1c{height:26.932668pt;}
.h18{height:26.933628pt;}
.h67{height:30.613149pt;}
.h4{height:34.529027pt;}
.h7{height:34.546214pt;}
.he{height:34.561065pt;}
.h54{height:35.440000pt;}
.h52{height:35.453333pt;}
.h51{height:35.486667pt;}
.h3f{height:35.706667pt;}
.h3c{height:35.720000pt;}
.h22{height:36.138125pt;}
.h3a{height:39.706856pt;}
.h11{height:42.226363pt;}
.hc{height:42.294877pt;}
.h5{height:44.592077pt;}
.h1b{height:44.624555pt;}
.h17{height:44.641024pt;}
.ha{height:44.649554pt;}
.h10{height:44.744431pt;}
.h26{height:44.802083pt;}
.h6{height:44.965000pt;}
.h3b{height:47.208333pt;}
.h36{height:47.262072pt;}
.h23{height:47.380000pt;}
.h24{height:48.382812pt;}
.h1{height:48.558750pt;}
.h66{height:48.558789pt;}
.h21{height:49.622500pt;}
.h55{height:52.786667pt;}
.h15{height:56.552830pt;}
.h13{height:56.640080pt;}
.h1f{height:56.692262pt;}
.h19{height:56.694283pt;}
.h1d{height:56.779727pt;}
.h9{height:59.754155pt;}
.h39{height:59.769933pt;}
.h37{height:59.770151pt;}
.h8{height:59.783898pt;}
.h25{height:60.300089pt;}
.h2{height:60.519362pt;}
.h16{height:60.960831pt;}
.h14{height:61.084098pt;}
.h20{height:61.111131pt;}
.h1a{height:61.113309pt;}
.h1e{height:61.234702pt;}
.h28{height:74.775417pt;}
.h31{height:77.303958pt;}
.h2d{height:77.357292pt;}
.h34{height:77.383958pt;}
.h30{height:77.410625pt;}
.h38{height:82.072029pt;}
.h2b{height:88.841667pt;}
.h27{height:88.895000pt;}
.h29{height:95.267708pt;}
.h43{height:103.440104pt;}
.h2a{height:105.090625pt;}
.h2c{height:105.908333pt;}
.h2f{height:107.223958pt;}
.h33{height:108.290625pt;}
.h32{height:110.423958pt;}
.h2e{height:113.623958pt;}
.h57{height:121.573437pt;}
.h48{height:123.653438pt;}
.h44{height:123.706771pt;}
.h46{height:124.773438pt;}
.h4a{height:124.933438pt;}
.h60{height:134.373437pt;}
.h56{height:135.440104pt;}
.h64{height:135.546771pt;}
.h47{height:141.840104pt;}
.h61{height:142.853438pt;}
.h45{height:142.906771pt;}
.h49{height:142.960104pt;}
.h58{height:145.040104pt;}
.h5c{height:155.706771pt;}
.h4b{height:157.840104pt;}
.h4e{height:158.853438pt;}
.h59{height:168.506771pt;}
.h62{height:169.573437pt;}
.h5e{height:171.706771pt;}
.h5f{height:172.773438pt;}
.h65{height:172.880104pt;}
.h4f{height:175.973438pt;}
.h4c{height:177.040104pt;}
.h4d{height:177.093437pt;}
.h5b{height:177.146771pt;}
.h5d{height:179.173437pt;}
.h63{height:241.093438pt;}
.h5a{height:241.146771pt;}
.h0{height:1056.000000pt;}
.h35{height:1122.666667pt;}
.w1{width:15.999854pt;}
.w3{width:47.199985pt;}
.w4{width:52.334153pt;}
.w6{width:53.066949pt;}
.w5{width:53.133189pt;}
.wb{width:66.420000pt;}
.wd{width:75.173333pt;}
.we{width:91.473333pt;}
.w11{width:102.420000pt;}
.wf{width:107.220000pt;}
.w14{width:107.486667pt;}
.w10{width:113.353333pt;}
.w7{width:136.005910pt;}
.w16{width:149.346667pt;}
.w15{width:149.373333pt;}
.w17{width:155.520000pt;}
.w8{width:164.993630pt;}
.w13{width:193.906667pt;}
.w12{width:209.373333pt;}
.w9{width:242.865180pt;}
.w2{width:248.005024pt;}
.wc{width:439.840000pt;}
.wa{width:793.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:1.655139pt;}
.x1c{left:2.637780pt;}
.xb{left:3.927467pt;}
.x8d{left:6.666667pt;}
.x9b{left:7.733333pt;}
.x9a{left:8.800000pt;}
.x3{left:9.747333pt;}
.xa{left:10.832060pt;}
.x14{left:12.353071pt;}
.x13{left:13.995561pt;}
.x8c{left:17.853333pt;}
.xe{left:19.289132pt;}
.x8b{left:21.600000pt;}
.x15{left:24.074171pt;}
.x18{left:25.344664pt;}
.x1b{left:26.723700pt;}
.x7f{left:29.333333pt;}
.x9{left:31.767280pt;}
.x8a{left:33.600000pt;}
.x95{left:34.666667pt;}
.x87{left:35.760000pt;}
.x92{left:38.666667pt;}
.x96{left:42.386667pt;}
.x88{left:43.773333pt;}
.x99{left:45.866667pt;}
.x94{left:47.226667pt;}
.x93{left:51.493333pt;}
.x90{left:55.760000pt;}
.x2a{left:57.801405pt;}
.x91{left:58.960000pt;}
.x8f{left:62.960000pt;}
.x37{left:85.359008pt;}
.x2b{left:88.703775pt;}
.x35{left:89.982222pt;}
.x29{left:93.301720pt;}
.xd{left:96.444327pt;}
.x25{left:97.971305pt;}
.x8{left:101.067540pt;}
.x23{left:102.587239pt;}
.x36{left:109.207439pt;}
.x4b{left:110.399956pt;}
.x1{left:113.472000pt;}
.x24{left:121.776659pt;}
.x67{left:128.799440pt;}
.x28{left:131.613333pt;}
.xa6{left:137.440149pt;}
.x43{left:141.786667pt;}
.x7e{left:146.160000pt;}
.x68{left:147.199472pt;}
.x44{left:151.226667pt;}
.xa7{left:161.440568pt;}
.x45{left:170.266667pt;}
.xc{left:178.763353pt;}
.x2e{left:183.866667pt;}
.x6{left:185.466667pt;}
.x80{left:195.533333pt;}
.x7d{left:202.733333pt;}
.x81{left:204.066667pt;}
.xae{left:207.839149pt;}
.x42{left:209.466667pt;}
.x82{left:210.733333pt;}
.xa1{left:213.933333pt;}
.x47{left:220.333333pt;}
.x4a{left:229.666667pt;}
.x7{left:231.280000pt;}
.x49{left:233.400000pt;}
.x22{left:239.280000pt;}
.x48{left:243.000000pt;}
.x9e{left:245.400000pt;}
.xa2{left:247.000000pt;}
.x83{left:250.200000pt;}
.x84{left:251.800000pt;}
.x9c{left:253.133333pt;}
.xa3{left:256.360000pt;}
.x85{left:257.973333pt;}
.x72{left:269.759680pt;}
.x3f{left:274.346667pt;}
.x73{left:275.999890pt;}
.x69{left:280.799888pt;}
.x58{left:285.120191pt;}
.x31{left:290.013333pt;}
.x59{left:291.359883pt;}
.x5a{left:300.799880pt;}
.x8e{left:305.973333pt;}
.x74{left:307.679877pt;}
.x6a{left:312.479875pt;}
.x4c{left:314.559264pt;}
.x6b{left:318.079873pt;}
.x40{left:321.506667pt;}
.x5b{left:323.039871pt;}
.x5c{left:328.639869pt;}
.x4d{left:330.079868pt;}
.x86{left:333.706667pt;}
.x32{left:342.306667pt;}
.x5d{left:347.839861pt;}
.x4e{left:352.479859pt;}
.x33{left:355.413333pt;}
.x20{left:356.746667pt;}
.x4f{left:358.079857pt;}
.x9f{left:367.066667pt;}
.x79{left:371.359851pt;}
.x17{left:374.013333pt;}
.x26{left:375.266667pt;}
.x3b{left:377.213333pt;}
.x5e{left:379.519848pt;}
.x7a{left:382.079847pt;}
.xa4{left:384.133333pt;}
.x50{left:386.879845pt;}
.x6c{left:389.279844pt;}
.x6d{left:390.399843pt;}
.x5f{left:392.479843pt;}
.x60{left:393.599842pt;}
.x2c{left:396.386667pt;}
.xa5{left:397.733333pt;}
.x7b{left:405.279838pt;}
.x34{left:408.546667pt;}
.x21{left:409.826667pt;}
.x6e{left:411.519835pt;}
.x61{left:414.559834pt;}
.x51{left:415.679834pt;}
.x2{left:421.346667pt;}
.x52{left:423.039830pt;}
.x19{left:426.306667pt;}
.x3c{left:429.506667pt;}
.x62{left:435.999826pt;}
.x5{left:437.346667pt;}
.x27{left:441.506667pt;}
.x1a{left:442.813333pt;}
.x53{left:443.999822pt;}
.x3d{left:446.146667pt;}
.x63{left:450.559820pt;}
.x6f{left:451.519819pt;}
.x75{left:453.439819pt;}
.x76{left:454.559818pt;}
.x2d{left:457.213333pt;}
.x97{left:462.026667pt;}
.x54{left:466.399813pt;}
.x7c{left:469.759812pt;}
.x55{left:473.119811pt;}
.x38{left:474.173333pt;}
.x77{left:475.679810pt;}
.xf{left:479.293333pt;}
.x56{left:480.479807pt;}
.x12{left:483.280000pt;}
.x1e{left:485.346667pt;}
.x9d{left:488.173333pt;}
.x64{left:494.239802pt;}
.x1d{left:495.933333pt;}
.x57{left:498.399801pt;}
.x3e{left:499.293333pt;}
.x1f{left:501.373333pt;}
.x65{left:508.799796pt;}
.x41{left:515.133333pt;}
.x39{left:518.946667pt;}
.x70{left:520.319791pt;}
.x10{left:524.080000pt;}
.xa0{left:524.973333pt;}
.x66{left:527.679789pt;}
.x16{left:530.493333pt;}
.x89{left:534.026667pt;}
.x3a{left:534.973333pt;}
.x71{left:538.239785pt;}
.x11{left:540.093333pt;}
.x78{left:543.039783pt;}
.x2f{left:573.546667pt;}
.xad{left:576.800007pt;}
.xac{left:580.800408pt;}
.x30{left:589.533333pt;}
.xa9{left:601.920482pt;}
.x98{left:611.933333pt;}
.xaa{left:631.840505pt;}
.xab{left:636.480509pt;}
.xa8{left:647.360518pt;}
.x46{left:656.613333pt;}
}




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