
    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_d65ac4d9da61a945b6adc544.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_71f7f374e51c69fdbb597de9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959961;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_944144f9f93af510ce67ae7d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_71334c1f2b3a7deba2ee1a76.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_d225c606cefa6ed864cbe5cc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.995000;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_8c90722a8059ad80b860911b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.954000;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_555a9d3d4d9049066be75747.woff')format("woff");}.ff7{font-family:ff7;line-height:0.918000;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_d74a3a85442d5882f398b3fc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.444000;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_ee6f124ee1c1ab60002d0143.woff')format("woff");}.ff9{font-family:ff9;line-height:0.856934;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_d4466ddc860778d166528cc0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.909000;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_ce4db24422dec1516dff0395.woff')format("woff");}.ffb{font-family:ffb;line-height:0.431000;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_e93a0bed83ff31841eb8910a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.948000;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_7de35fa78cb7a851b222cbd0.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_956b9b1ddb69b01a8192b1a4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.431000;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_d72ef38124adf839d947c509.woff')format("woff");}.fff{font-family:fff;line-height:0.308000;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_f2741d4800695f1a537f8343.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_74070063e1102c1dbd2b5458.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_830d4030ba192a7933a9a7fe.woff')format("woff");}.ff12{font-family:ff12;line-height:0.315000;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_0d3e744fd3da4e338567e044.woff')format("woff");}.ff13{font-family:ff13;line-height:0.497000;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_3baea8e137537626c7cb0e1d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.680000;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_f5a025c7f21604f6c2401de8.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_986bb09ce263384581d173c4.woff')format("woff");}.ff16{font-family:ff16;line-height:0.431000;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_577958fead7c5effc073d5e1.woff')format("woff");}.ff17{font-family:ff17;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-28.554000px;}
.v2{vertical-align:-20.922000px;}
.v3{vertical-align:-13.446000px;}
.v5{vertical-align:-9.000000px;}
.v8{vertical-align:-6.522000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:12.090000px;}
.vf{vertical-align:14.832000px;}
.v7{vertical-align:16.620000px;}
.v13{vertical-align:20.664000px;}
.v6{vertical-align:21.774000px;}
.v9{vertical-align:22.938000px;}
.vc{vertical-align:24.768000px;}
.v1{vertical-align:26.898000px;}
.vd{vertical-align:30.162000px;}
.vb{vertical-align:35.028000px;}
.ve{vertical-align:38.394000px;}
.v10{vertical-align:39.606000px;}
.v12{vertical-align:47.424000px;}
.v11{vertical-align:56.424000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000150px;}
.ls1c{letter-spacing:0.000167px;}
.lsd{letter-spacing:0.000200px;}
.ls38{letter-spacing:0.000233px;}
.ls53{letter-spacing:0.000266px;}
.ls1{letter-spacing:0.000300px;}
.ls31{letter-spacing:0.000310px;}
.ls66{letter-spacing:0.000334px;}
.ls21{letter-spacing:0.000346px;}
.ls3{letter-spacing:0.000367px;}
.ls45{letter-spacing:0.000375px;}
.ls3d{letter-spacing:0.000384px;}
.ls2c{letter-spacing:0.000433px;}
.ls4c{letter-spacing:0.000467px;}
.ls59{letter-spacing:0.000500px;}
.ls39{letter-spacing:0.000578px;}
.ls4{letter-spacing:0.000600px;}
.ls64{letter-spacing:0.001548px;}
.ls28{letter-spacing:0.001753px;}
.ls47{letter-spacing:0.002185px;}
.ls62{letter-spacing:0.002462px;}
.ls29{letter-spacing:0.002628px;}
.ls3c{letter-spacing:0.002718px;}
.ls4b{letter-spacing:0.002736px;}
.ls35{letter-spacing:0.003171px;}
.ls20{letter-spacing:0.003948px;}
.ls30{letter-spacing:0.006267px;}
.ls68{letter-spacing:0.006417px;}
.ls56{letter-spacing:0.006500px;}
.ls10{letter-spacing:0.222384px;}
.ls3b{letter-spacing:1.182400px;}
.ls2d{letter-spacing:1.188400px;}
.ls2e{letter-spacing:1.242367px;}
.ls32{letter-spacing:1.320400px;}
.ls60{letter-spacing:1.620300px;}
.ls2f{letter-spacing:1.836367px;}
.ls40{letter-spacing:2.274267px;}
.ls69{letter-spacing:2.984736px;}
.ls46{letter-spacing:2.988000px;}
.ls3a{letter-spacing:2.989800px;}
.ls63{letter-spacing:3.485704px;}
.ls11{letter-spacing:3.742632px;}
.ls16{letter-spacing:3.816296px;}
.ls1f{letter-spacing:6.660167px;}
.ls48{letter-spacing:9.242880px;}
.ls37{letter-spacing:9.248880px;}
.ls36{letter-spacing:9.252300px;}
.ls3e{letter-spacing:9.654000px;}
.ls42{letter-spacing:9.660000px;}
.ls23{letter-spacing:9.996346px;}
.ls26{letter-spacing:9.996467px;}
.ls3f{letter-spacing:10.002300px;}
.ls24{letter-spacing:10.002467px;}
.ls2b{letter-spacing:11.082167px;}
.ls57{letter-spacing:11.430150px;}
.ls25{letter-spacing:12.276267px;}
.ls2a{letter-spacing:12.326880px;}
.ls34{letter-spacing:12.332880px;}
.ls4a{letter-spacing:12.666150px;}
.ls6a{letter-spacing:12.930150px;}
.ls22{letter-spacing:13.218267px;}
.ls4f{letter-spacing:13.326467px;}
.ls1d{letter-spacing:13.332167px;}
.ls5a{letter-spacing:13.332334px;}
.ls1e{letter-spacing:13.332346px;}
.ls1b{letter-spacing:13.332467px;}
.ls7{letter-spacing:13.446300px;}
.ls6e{letter-spacing:13.500300px;}
.ls58{letter-spacing:14.406150px;}
.ls5f{letter-spacing:14.622300px;}
.ls52{letter-spacing:14.994150px;}
.lsc{letter-spacing:15.000150px;}
.ls19{letter-spacing:15.000300px;}
.ls6d{letter-spacing:15.000600px;}
.ls5e{letter-spacing:15.006500px;}
.ls33{letter-spacing:15.319800px;}
.ls6b{letter-spacing:15.504150px;}
.ls6c{letter-spacing:15.510150px;}
.ls4e{letter-spacing:15.990300px;}
.ls1a{letter-spacing:16.320000px;}
.ls5d{letter-spacing:16.326000px;}
.ls61{letter-spacing:16.489800px;}
.lsf{letter-spacing:16.878150px;}
.ls27{letter-spacing:17.136300px;}
.ls15{letter-spacing:17.340150px;}
.lsb{letter-spacing:17.460150px;}
.ls5c{letter-spacing:18.000150px;}
.ls6{letter-spacing:18.342266px;}
.ls5{letter-spacing:18.348600px;}
.ls4d{letter-spacing:18.402000px;}
.ls54{letter-spacing:19.506000px;}
.ls44{letter-spacing:20.358300px;}
.ls50{letter-spacing:21.030000px;}
.ls12{letter-spacing:21.592632px;}
.ls14{letter-spacing:21.876150px;}
.ls18{letter-spacing:22.428300px;}
.ls13{letter-spacing:23.208150px;}
.ls55{letter-spacing:23.886000px;}
.ls5b{letter-spacing:23.934000px;}
.lse{letter-spacing:24.654150px;}
.ls51{letter-spacing:24.990000px;}
.ls49{letter-spacing:25.230150px;}
.ls17{letter-spacing:26.208300px;}
.ls8{letter-spacing:26.898266px;}
.ls9{letter-spacing:26.898300px;}
.lsa{letter-spacing:29.889442px;}
.ls41{letter-spacing:368.922000px;}
.ls43{letter-spacing:449.268167px;}
.ls65{letter-spacing:547.977031px;}
.ls67{letter-spacing:560.677800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-65.999400px;}
.ws6{word-spacing:-41.999400px;}
.ws9c{word-spacing:-36.719633px;}
.wsa5{word-spacing:-33.047633px;}
.ws7{word-spacing:-32.111599px;}
.ws2b{word-spacing:-29.999700px;}
.wse{word-spacing:-26.999700px;}
.wsa{word-spacing:-23.999700px;}
.wsac{word-spacing:-21.779782px;}
.wsaf{word-spacing:-21.119789px;}
.ws4c{word-spacing:-21.078000px;}
.ws5{word-spacing:-20.999700px;}
.ws7f{word-spacing:-20.039800px;}
.wsd3{word-spacing:-20.003100px;}
.ws121{word-spacing:-20.002800px;}
.ws65{word-spacing:-19.997400px;}
.ws64{word-spacing:-19.979800px;}
.ws66{word-spacing:-19.739803px;}
.ws6a{word-spacing:-19.679803px;}
.ws146{word-spacing:-19.602788px;}
.ws13e{word-spacing:-19.601782px;}
.ws97{word-spacing:-19.559804px;}
.ws142{word-spacing:-19.551966px;}
.ws13f{word-spacing:-19.551922px;}
.ws147{word-spacing:-19.550533px;}
.ws143{word-spacing:-19.550133px;}
.ws13b{word-spacing:-19.547783px;}
.ws73{word-spacing:-19.439806px;}
.ws107{word-spacing:-19.379806px;}
.ws70{word-spacing:-19.319807px;}
.ws75{word-spacing:-19.199808px;}
.ws135{word-spacing:-19.139809px;}
.ws6e{word-spacing:-19.087993px;}
.ws6f{word-spacing:-19.079809px;}
.ws110{word-spacing:-18.970200px;}
.ws11d{word-spacing:-18.959810px;}
.wsdc{word-spacing:-18.779812px;}
.wsd6{word-spacing:-18.659813px;}
.wsd7{word-spacing:-18.599814px;}
.ws93{word-spacing:-18.539815px;}
.ws34{word-spacing:-18.479815px;}
.wsc6{word-spacing:-18.179818px;}
.wsbe{word-spacing:-18.119819px;}
.ws3b{word-spacing:-17.999820px;}
.ws3c{word-spacing:-17.939821px;}
.ws4b{word-spacing:-17.926234px;}
.ws28{word-spacing:-17.819822px;}
.ws86{word-spacing:-17.699823px;}
.ws100{word-spacing:-17.639824px;}
.wscd{word-spacing:-17.579824px;}
.ws13a{word-spacing:-17.459825px;}
.ws101{word-spacing:-17.399826px;}
.ws12{word-spacing:-17.375783px;}
.wsc0{word-spacing:-17.339827px;}
.wsb8{word-spacing:-17.279827px;}
.ws77{word-spacing:-17.219828px;}
.wsf4{word-spacing:-17.159828px;}
.ws125{word-spacing:-17.099829px;}
.ws82{word-spacing:-16.979830px;}
.ws126{word-spacing:-16.859831px;}
.ws8b{word-spacing:-16.739833px;}
.ws131{word-spacing:-16.619834px;}
.wsdb{word-spacing:-16.559834px;}
.ws88{word-spacing:-16.499835px;}
.ws2e{word-spacing:-16.439836px;}
.ws87{word-spacing:-16.379836px;}
.ws32{word-spacing:-16.319837px;}
.wsfd{word-spacing:-16.259837px;}
.ws11c{word-spacing:-16.199838px;}
.ws1f{word-spacing:-16.139839px;}
.ws5d{word-spacing:-16.091821px;}
.ws76{word-spacing:-16.079839px;}
.wsab{word-spacing:-16.037822px;}
.ws7e{word-spacing:-16.019840px;}
.ws137{word-spacing:-15.959840px;}
.wsdd{word-spacing:-15.899841px;}
.ws2f{word-spacing:-15.839842px;}
.ws10{word-spacing:-15.719843px;}
.wsa6{word-spacing:-15.659843px;}
.ws95{word-spacing:-15.599844px;}
.wsc9{word-spacing:-15.539845px;}
.wsc8{word-spacing:-15.479845px;}
.ws6b{word-spacing:-15.419846px;}
.ws104{word-spacing:-15.359846px;}
.ws5e{word-spacing:-15.299847px;}
.wsef{word-spacing:-15.239848px;}
.wsee{word-spacing:-15.179848px;}
.wsd8{word-spacing:-15.119849px;}
.ws3a{word-spacing:-15.059849px;}
.wsf{word-spacing:-14.999850px;}
.ws19{word-spacing:-14.999550px;}
.ws5b{word-spacing:-14.998834px;}
.ws5a{word-spacing:-14.997767px;}
.ws72{word-spacing:-14.939851px;}
.ws16{word-spacing:-14.927813px;}
.ws68{word-spacing:-14.879851px;}
.ws15{word-spacing:-14.879814px;}
.ws67{word-spacing:-14.819852px;}
.ws74{word-spacing:-14.759852px;}
.ws8{word-spacing:-14.717866px;}
.ws128{word-spacing:-14.699853px;}
.ws9{word-spacing:-14.651867px;}
.ws3d{word-spacing:-14.639854px;}
.ws3e{word-spacing:-14.579854px;}
.ws133{word-spacing:-14.519855px;}
.wsae{word-spacing:-14.399856px;}
.ws46{word-spacing:-14.339857px;}
.wsd5{word-spacing:-14.279857px;}
.wsbd{word-spacing:-14.255842px;}
.ws1c{word-spacing:-14.219858px;}
.wsc7{word-spacing:-14.099859px;}
.wsd9{word-spacing:-14.039860px;}
.ws145{word-spacing:-14.039844px;}
.ws23{word-spacing:-13.979860px;}
.ws71{word-spacing:-13.919861px;}
.wse4{word-spacing:-13.859861px;}
.wsea{word-spacing:-13.799862px;}
.ws140{word-spacing:-13.769847px;}
.ws4f{word-spacing:-13.739863px;}
.ws22{word-spacing:-13.679863px;}
.ws7b{word-spacing:-13.661848px;}
.ws1d{word-spacing:-13.619864px;}
.ws31{word-spacing:-13.559864px;}
.ws7d{word-spacing:-13.553849px;}
.wsa1{word-spacing:-13.505183px;}
.ws144{word-spacing:-13.505100px;}
.wsd{word-spacing:-13.503900px;}
.wsd0{word-spacing:-13.502885px;}
.wsa9{word-spacing:-13.499865px;}
.wsc{word-spacing:-13.499850px;}
.wsba{word-spacing:-13.499183px;}
.ws13c{word-spacing:-13.499100px;}
.ws141{word-spacing:-13.498800px;}
.ws9f{word-spacing:-13.498583px;}
.ws13d{word-spacing:-13.498500px;}
.ws4a{word-spacing:-13.439866px;}
.wsb5{word-spacing:-13.379866px;}
.ws17{word-spacing:-13.343833px;}
.ws5c{word-spacing:-13.319867px;}
.ws69{word-spacing:-13.259867px;}
.ws45{word-spacing:-13.199868px;}
.ws30{word-spacing:-13.139869px;}
.wsa7{word-spacing:-13.079869px;}
.wsb0{word-spacing:-12.959870px;}
.ws2d{word-spacing:-12.899871px;}
.ws78{word-spacing:-12.868133px;}
.ws63{word-spacing:-12.839872px;}
.ws35{word-spacing:-12.779872px;}
.ws98{word-spacing:-12.719873px;}
.ws48{word-spacing:-12.659873px;}
.wsb9{word-spacing:-12.599874px;}
.ws21{word-spacing:-12.539875px;}
.ws18{word-spacing:-12.515821px;}
.wsf8{word-spacing:-12.479875px;}
.ws29{word-spacing:-12.419876px;}
.ws40{word-spacing:-12.239878px;}
.ws3f{word-spacing:-12.179878px;}
.ws129{word-spacing:-12.166306px;}
.ws12b{word-spacing:-12.119879px;}
.ws89{word-spacing:-12.059879px;}
.ws11{word-spacing:-12.047849px;}
.ws20{word-spacing:-11.999880px;}
.ws13{word-spacing:-11.999850px;}
.wsca{word-spacing:-11.962633px;}
.ws11e{word-spacing:-11.950534px;}
.wscb{word-spacing:-11.939881px;}
.wsbf{word-spacing:-11.759882px;}
.wsc1{word-spacing:-11.699883px;}
.wsc2{word-spacing:-11.639884px;}
.ws102{word-spacing:-11.519885px;}
.ws62{word-spacing:-11.459885px;}
.wsb4{word-spacing:-11.424000px;}
.ws123{word-spacing:-11.423160px;}
.wscc{word-spacing:-11.418000px;}
.ws8d{word-spacing:-11.399886px;}
.ws8e{word-spacing:-11.369550px;}
.wse9{word-spacing:-11.339887px;}
.ws9b{word-spacing:-11.099889px;}
.ws130{word-spacing:-11.039890px;}
.ws2a{word-spacing:-10.979890px;}
.ws122{word-spacing:-10.920000px;}
.ws5f{word-spacing:-10.859891px;}
.ws7a{word-spacing:-10.847864px;}
.ws8c{word-spacing:-10.703866px;}
.ws51{word-spacing:-10.679893px;}
.wsce{word-spacing:-10.619894px;}
.wsc3{word-spacing:-10.559894px;}
.wsda{word-spacing:-10.499895px;}
.wsfc{word-spacing:-10.379896px;}
.ws60{word-spacing:-10.259897px;}
.ws134{word-spacing:-10.199898px;}
.ws8a{word-spacing:-10.139899px;}
.wsaa{word-spacing:-9.959900px;}
.wsb7{word-spacing:-9.899901px;}
.wsd1{word-spacing:-9.856300px;}
.wsb6{word-spacing:-9.839902px;}
.wsa4{word-spacing:-9.816600px;}
.wsbb{word-spacing:-9.810600px;}
.wsc4{word-spacing:-9.779902px;}
.wsf3{word-spacing:-9.719903px;}
.wsb2{word-spacing:-9.659903px;}
.wsf2{word-spacing:-9.479905px;}
.ws4{word-spacing:-9.365866px;}
.ws132{word-spacing:-9.359906px;}
.ws2{word-spacing:-9.338343px;}
.ws1{word-spacing:-9.323867px;}
.ws3{word-spacing:-9.323033px;}
.wsec{word-spacing:-9.299907px;}
.ws25{word-spacing:-9.239908px;}
.wsfb{word-spacing:-9.179908px;}
.ws1e{word-spacing:-9.119909px;}
.ws27{word-spacing:-9.059909px;}
.ws9a{word-spacing:-8.999910px;}
.ws103{word-spacing:-8.939911px;}
.ws108{word-spacing:-8.879911px;}
.wsed{word-spacing:-8.819912px;}
.ws11a{word-spacing:-8.759912px;}
.ws49{word-spacing:-8.579914px;}
.ws42{word-spacing:-8.459915px;}
.ws11b{word-spacing:-8.339917px;}
.wsf0{word-spacing:-8.219918px;}
.ws47{word-spacing:-8.159918px;}
.ws83{word-spacing:-8.099919px;}
.ws52{word-spacing:-8.039920px;}
.ws85{word-spacing:-7.859921px;}
.ws96{word-spacing:-7.804133px;}
.ws26{word-spacing:-7.799922px;}
.ws61{word-spacing:-7.739923px;}
.wsf7{word-spacing:-7.679923px;}
.ws57{word-spacing:-7.619924px;}
.ws56{word-spacing:-7.559924px;}
.wsf9{word-spacing:-7.379926px;}
.ws106{word-spacing:-7.319927px;}
.ws12f{word-spacing:-7.259927px;}
.wse8{word-spacing:-7.019930px;}
.wseb{word-spacing:-6.959930px;}
.ws44{word-spacing:-6.839932px;}
.ws43{word-spacing:-6.779932px;}
.ws38{word-spacing:-6.659933px;}
.ws39{word-spacing:-6.599934px;}
.wscf{word-spacing:-6.539935px;}
.ws105{word-spacing:-6.479935px;}
.ws99{word-spacing:-6.359936px;}
.wse6{word-spacing:-6.299937px;}
.ws4e{word-spacing:-6.015264px;}
.ws24{word-spacing:-5.999940px;}
.wse7{word-spacing:-5.759942px;}
.ws84{word-spacing:-5.699943px;}
.ws37{word-spacing:-5.639944px;}
.ws91{word-spacing:-5.519945px;}
.ws90{word-spacing:-5.459945px;}
.ws2c{word-spacing:-5.339947px;}
.wse5{word-spacing:-5.279947px;}
.ws119{word-spacing:-5.219948px;}
.wsc5{word-spacing:-5.039950px;}
.ws139{word-spacing:-4.979950px;}
.ws50{word-spacing:-4.799952px;}
.wsfa{word-spacing:-4.759896px;}
.ws6d{word-spacing:-4.759368px;}
.wse0{word-spacing:-4.759212px;}
.ws6c{word-spacing:-4.758000px;}
.ws92{word-spacing:-4.757316px;}
.wsb3{word-spacing:-4.756632px;}
.wsad{word-spacing:-4.755948px;}
.ws120{word-spacing:-4.755264px;}
.wsd4{word-spacing:-4.753896px;}
.ws94{word-spacing:-4.753368px;}
.ws9d{word-spacing:-4.752684px;}
.ws12a{word-spacing:-4.752000px;}
.ws12d{word-spacing:-4.499955px;}
.ws8f{word-spacing:-4.319957px;}
.ws81{word-spacing:-4.199958px;}
.wsa8{word-spacing:-4.019960px;}
.ws11f{word-spacing:-3.959960px;}
.ws53{word-spacing:-3.839962px;}
.ws14{word-spacing:-3.791953px;}
.ws80{word-spacing:-3.779962px;}
.wsb1{word-spacing:-3.659963px;}
.wsa3{word-spacing:-3.649169px;}
.ws7c{word-spacing:-3.648031px;}
.wsa0{word-spacing:-3.647984px;}
.wsa2{word-spacing:-3.644906px;}
.ws36{word-spacing:-3.599964px;}
.ws79{word-spacing:-3.239968px;}
.ws12c{word-spacing:-3.059969px;}
.ws124{word-spacing:-2.999970px;}
.ws1b{word-spacing:-2.939971px;}
.ws138{word-spacing:-2.759972px;}
.ws41{word-spacing:-2.699973px;}
.ws116{word-spacing:-2.482706px;}
.ws10d{word-spacing:-2.480906px;}
.ws10b{word-spacing:-2.477984px;}
.wsf5{word-spacing:-2.339977px;}
.wse2{word-spacing:-2.039980px;}
.wse1{word-spacing:-2.039233px;}
.wsf1{word-spacing:-1.679983px;}
.wsde{word-spacing:-1.259987px;}
.wsf6{word-spacing:-0.899991px;}
.ws12e{word-spacing:-0.599994px;}
.ws127{word-spacing:-0.303264px;}
.ws1a{word-spacing:-0.059999px;}
.ws9e{word-spacing:-0.053999px;}
.ws4d{word-spacing:-0.041999px;}
.wsbc{word-spacing:-0.035999px;}
.ws0{word-spacing:0.000000px;}
.ws58{word-spacing:0.479995px;}
.ws55{word-spacing:0.959990px;}
.ws54{word-spacing:1.559984px;}
.wse3{word-spacing:1.679983px;}
.ws59{word-spacing:1.799982px;}
.wsfe{word-spacing:2.284104px;}
.ws33{word-spacing:3.779962px;}
.ws136{word-spacing:3.959960px;}
.wsdf{word-spacing:6.119939px;}
.wsff{word-spacing:6.964104px;}
.wsd2{word-spacing:13.957368px;}
.ws10e{word-spacing:332.011799px;}
.ws118{word-spacing:332.016600px;}
.ws111{word-spacing:343.923094px;}
.ws113{word-spacing:354.429094px;}
.ws112{word-spacing:362.431350px;}
.ws109{word-spacing:372.907234px;}
.ws10a{word-spacing:389.431050px;}
.ws117{word-spacing:414.001199px;}
.ws114{word-spacing:475.003862px;}
.ws115{word-spacing:515.539956px;}
.ws10c{word-spacing:522.737400px;}
.ws10f{word-spacing:524.215909px;}
._f{margin-left:-9.395896px;}
._5{margin-left:-7.862929px;}
._16{margin-left:-6.263899px;}
._4{margin-left:-5.081954px;}
._7{margin-left:-3.995956px;}
._3{margin-left:-2.939932px;}
._0{margin-left:-1.848000px;}
._6{width:1.289680px;}
._12{width:2.988684px;}
._17{width:5.354699px;}
._13{width:6.654700px;}
._18{width:10.077955px;}
._15{width:11.759882px;}
._14{width:12.899871px;}
._19{width:14.096918px;}
._1{width:15.539778px;}
._11{width:17.057720px;}
._d{width:19.895838px;}
._e{width:23.650736px;}
._10{width:26.945701px;}
._c{width:30.635731px;}
._8{width:42.383460px;}
._a{width:66.023057px;}
._1a{width:430.249366px;}
._1b{width:446.052766px;}
._9{width:564.613627px;}
._2{width:1568.903501px;}
._b{width:2160.927866px;}
.fc5{color:rgb(167,208,57);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:29.999400px;}
.fse{font-size:35.999400px;}
.fsb{font-size:37.799400px;}
.fs11{font-size:37.940400px;}
.fs6{font-size:41.999400px;}
.fs5{font-size:42.000000px;}
.fs10{font-size:42.156000px;}
.fsa{font-size:47.999400px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:49.072383px;}
.fsc{font-size:53.999400px;}
.fs0{font-size:54.000000px;}
.fsd{font-size:59.999400px;}
.fs9{font-size:65.999400px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:83.998800px;}
.fs1{font-size:96.000000px;}
.fs8{font-size:143.998200px;}
.y0{bottom:0.000000px;}
.y19{bottom:2.851350px;}
.y17{bottom:64.920000px;}
.yae{bottom:70.414500px;}
.y48{bottom:71.610000px;}
.y47{bottom:102.991500px;}
.y46{bottom:117.241500px;}
.y122{bottom:118.234500px;}
.y130{bottom:118.344000px;}
.yad{bottom:120.924000px;}
.yf6{bottom:120.991500px;}
.y7e{bottom:121.720500px;}
.y45{bottom:131.491500px;}
.y121{bottom:131.964000px;}
.y120{bottom:136.234500px;}
.y12f{bottom:136.344000px;}
.ycb{bottom:138.856500px;}
.yac{bottom:138.924000px;}
.yf5{bottom:138.991500px;}
.y7d{bottom:139.720500px;}
.y44{bottom:145.741500px;}
.y193{bottom:149.491500px;}
.y11f{bottom:154.234500px;}
.y12e{bottom:154.344000px;}
.y167{bottom:156.790500px;}
.yca{bottom:156.856500px;}
.yab{bottom:156.924000px;}
.yf4{bottom:156.991500px;}
.y7c{bottom:157.720500px;}
.y11e{bottom:168.079500px;}
.y11d{bottom:172.234500px;}
.y12d{bottom:172.344000px;}
.y166{bottom:174.790500px;}
.yc9{bottom:174.856500px;}
.yaa{bottom:174.924000px;}
.yf3{bottom:174.991500px;}
.y7b{bottom:175.720500px;}
.y20c{bottom:182.713500px;}
.y1d0{bottom:183.091500px;}
.y11c{bottom:190.234500px;}
.y12c{bottom:190.344000px;}
.y165{bottom:192.790500px;}
.yc8{bottom:192.856500px;}
.ya9{bottom:192.924000px;}
.yf2{bottom:192.991500px;}
.y7a{bottom:193.720500px;}
.y192{bottom:195.073500px;}
.y20b{bottom:197.713500px;}
.y1cf{bottom:201.091500px;}
.y43{bottom:207.874500px;}
.y11b{bottom:208.234500px;}
.y12b{bottom:208.344000px;}
.y164{bottom:210.790500px;}
.yc7{bottom:210.856500px;}
.ya8{bottom:210.924000px;}
.yf1{bottom:210.991500px;}
.y79{bottom:211.720500px;}
.y20a{bottom:212.713500px;}
.y191{bottom:213.073500px;}
.y42{bottom:217.342500px;}
.y1ce{bottom:219.091500px;}
.y163{bottom:224.856000px;}
.y11a{bottom:226.234500px;}
.y12a{bottom:226.344000px;}
.y209{bottom:227.713500px;}
.y162{bottom:228.790500px;}
.yc6{bottom:228.856500px;}
.ya7{bottom:228.924000px;}
.yf0{bottom:228.991500px;}
.y78{bottom:229.720500px;}
.y41{bottom:230.458500px;}
.y190{bottom:231.073500px;}
.y1cd{bottom:237.091500px;}
.y208{bottom:242.713500px;}
.y161{bottom:242.856000px;}
.y119{bottom:244.234500px;}
.y129{bottom:244.344000px;}
.y160{bottom:246.790500px;}
.yc5{bottom:246.856500px;}
.ya6{bottom:246.924000px;}
.yef{bottom:246.991500px;}
.y77{bottom:247.720500px;}
.y18f{bottom:249.073500px;}
.y1cc{bottom:255.091500px;}
.y1a2{bottom:257.491500px;}
.y207{bottom:257.713500px;}
.y118{bottom:262.234500px;}
.y128{bottom:262.344000px;}
.y15f{bottom:264.790500px;}
.yc4{bottom:264.856500px;}
.ya5{bottom:264.924000px;}
.yee{bottom:264.991500px;}
.y76{bottom:265.720500px;}
.y18e{bottom:267.073500px;}
.y206{bottom:272.713500px;}
.y1cb{bottom:273.091500px;}
.y40{bottom:275.808000px;}
.y117{bottom:280.234500px;}
.y127{bottom:280.344000px;}
.y15e{bottom:282.790500px;}
.yc3{bottom:282.856500px;}
.ya4{bottom:282.924000px;}
.yed{bottom:282.991500px;}
.y75{bottom:283.720500px;}
.y18d{bottom:285.073500px;}
.y205{bottom:287.713500px;}
.y1ca{bottom:291.091500px;}
.y3f{bottom:293.808000px;}
.y116{bottom:298.234500px;}
.y126{bottom:298.344000px;}
.y15d{bottom:300.790500px;}
.yc2{bottom:300.856500px;}
.ya3{bottom:300.924000px;}
.yec{bottom:300.991500px;}
.y74{bottom:301.720500px;}
.y204{bottom:302.713500px;}
.y18c{bottom:303.073500px;}
.y1a1{bottom:307.707000px;}
.y1c9{bottom:309.091500px;}
.y3e{bottom:311.808000px;}
.y15c{bottom:314.635500px;}
.y125{bottom:316.344000px;}
.y203{bottom:317.713500px;}
.y15b{bottom:318.790500px;}
.yc1{bottom:318.856500px;}
.ya2{bottom:318.924000px;}
.yeb{bottom:318.991500px;}
.y73{bottom:319.720500px;}
.y18b{bottom:321.073500px;}
.y1a0{bottom:325.707000px;}
.y115{bottom:326.734500px;}
.y1c8{bottom:327.091500px;}
.y3d{bottom:329.808000px;}
.y202{bottom:332.713500px;}
.y124{bottom:334.344000px;}
.y15a{bottom:336.790500px;}
.yc0{bottom:336.856500px;}
.ya1{bottom:336.924000px;}
.y100{bottom:336.991500px;}
.y72{bottom:337.720500px;}
.y18a{bottom:339.073500px;}
.y19f{bottom:343.707000px;}
.y1c7{bottom:345.091500px;}
.y201{bottom:347.713500px;}
.y3c{bottom:347.808000px;}
.yea{bottom:348.627000px;}
.y123{bottom:352.344000px;}
.y159{bottom:354.790500px;}
.ybf{bottom:354.856500px;}
.ya0{bottom:354.924000px;}
.yff{bottom:354.991500px;}
.y71{bottom:355.720500px;}
.y189{bottom:357.073500px;}
.y19e{bottom:361.707000px;}
.y200{bottom:362.713500px;}
.y1c6{bottom:363.091500px;}
.y3b{bottom:365.808000px;}
.y114{bottom:370.344000px;}
.y158{bottom:372.790500px;}
.ybe{bottom:372.856500px;}
.y9f{bottom:372.924000px;}
.yfe{bottom:372.991500px;}
.y70{bottom:373.720500px;}
.ye9{bottom:374.671500px;}
.y188{bottom:375.073500px;}
.y19d{bottom:375.552000px;}
.y1ff{bottom:377.713500px;}
.y19c{bottom:379.707000px;}
.y1c5{bottom:381.091500px;}
.y3a{bottom:383.808000px;}
.y113{bottom:388.344000px;}
.y157{bottom:390.790500px;}
.ybd{bottom:390.856500px;}
.y9e{bottom:390.924000px;}
.y6f{bottom:391.720500px;}
.y1fe{bottom:392.713500px;}
.y187{bottom:393.073500px;}
.y19b{bottom:397.707000px;}
.y1c4{bottom:399.091500px;}
.yfd{bottom:401.491500px;}
.y39{bottom:401.808000px;}
.ye8{bottom:404.307000px;}
.y112{bottom:406.344000px;}
.y1fd{bottom:407.713500px;}
.y156{bottom:408.790500px;}
.ybc{bottom:408.856500px;}
.y6e{bottom:409.720500px;}
.y186{bottom:411.073500px;}
.y19a{bottom:415.707000px;}
.y1c3{bottom:417.091500px;}
.y38{bottom:419.808000px;}
.ye7{bottom:422.307000px;}
.y1fc{bottom:422.713500px;}
.y111{bottom:424.344000px;}
.y9d{bottom:425.512500px;}
.y155{bottom:426.790500px;}
.ybb{bottom:426.856500px;}
.y6d{bottom:427.720500px;}
.y185{bottom:429.073500px;}
.y199{bottom:429.552000px;}
.y198{bottom:433.707000px;}
.y1c2{bottom:435.091500px;}
.y1fb{bottom:437.713500px;}
.y37{bottom:437.808000px;}
.ye6{bottom:440.307000px;}
.y110{bottom:442.344000px;}
.y154{bottom:444.790500px;}
.yba{bottom:444.856500px;}
.y6c{bottom:445.720500px;}
.y184{bottom:447.073500px;}
.yfc{bottom:451.858500px;}
.yd2{bottom:452.280000px;}
.y1fa{bottom:452.713500px;}
.y36{bottom:455.808000px;}
.y9c{bottom:460.099500px;}
.y10f{bottom:460.344000px;}
.y153{bottom:462.790500px;}
.yb9{bottom:462.856500px;}
.y6b{bottom:463.720500px;}
.y183{bottom:465.073500px;}
.yfb{bottom:466.858500px;}
.yd1{bottom:467.280000px;}
.y1f9{bottom:467.713500px;}
.ye5{bottom:468.805500px;}
.y1c1{bottom:469.591500px;}
.y35{bottom:473.808000px;}
.y9b{bottom:478.099500px;}
.y10e{bottom:478.344000px;}
.y197{bottom:479.667000px;}
.y152{bottom:480.790500px;}
.yb8{bottom:480.856500px;}
.y6a{bottom:481.720500px;}
.yfa{bottom:481.858500px;}
.yd0{bottom:482.280000px;}
.y1f8{bottom:482.713500px;}
.y182{bottom:483.073500px;}
.y196{bottom:484.099500px;}
.y34{bottom:491.808000px;}
.y10d{bottom:492.189000px;}
.y195{bottom:493.533000px;}
.y9a{bottom:496.099500px;}
.y10c{bottom:496.344000px;}
.yf9{bottom:496.858500px;}
.y194{bottom:497.241000px;}
.ycf{bottom:497.280000px;}
.y1f7{bottom:497.713500px;}
.y151{bottom:498.790500px;}
.yb7{bottom:498.856500px;}
.y69{bottom:499.720500px;}
.y181{bottom:501.073500px;}
.ye4{bottom:509.625000px;}
.y33{bottom:509.808000px;}
.y10b{bottom:510.189000px;}
.yce{bottom:512.280000px;}
.y1f6{bottom:512.713500px;}
.yf8{bottom:514.059000px;}
.y99{bottom:514.099500px;}
.y10a{bottom:514.344000px;}
.y150{bottom:516.790500px;}
.yb6{bottom:516.856500px;}
.y68{bottom:517.720500px;}
.y180{bottom:519.073500px;}
.y1c0{bottom:521.902500px;}
.ycd{bottom:527.280000px;}
.ye3{bottom:527.625000px;}
.y1f5{bottom:527.713500px;}
.y32{bottom:527.808000px;}
.yf7{bottom:529.057500px;}
.y98{bottom:532.099500px;}
.y109{bottom:532.344000px;}
.y14f{bottom:534.790500px;}
.yb5{bottom:534.856500px;}
.y67{bottom:535.720500px;}
.y1bf{bottom:539.902500px;}
.ycc{bottom:542.280000px;}
.y1f4{bottom:542.713500px;}
.ye2{bottom:545.625000px;}
.y31{bottom:545.808000px;}
.y97{bottom:550.099500px;}
.y108{bottom:550.344000px;}
.y14e{bottom:552.790500px;}
.yb4{bottom:552.856500px;}
.y17f{bottom:553.573500px;}
.y66{bottom:553.720500px;}
.y1f3{bottom:557.713500px;}
.y1be{bottom:557.902500px;}
.ye1{bottom:563.625000px;}
.y30{bottom:563.875500px;}
.y96{bottom:568.099500px;}
.y107{bottom:568.344000px;}
.y14d{bottom:570.790500px;}
.y65{bottom:571.720500px;}
.y1f2{bottom:572.713500px;}
.y1bd{bottom:575.902500px;}
.ye0{bottom:581.625000px;}
.y95{bottom:586.099500px;}
.y106{bottom:586.344000px;}
.y1f1{bottom:587.713500px;}
.y14c{bottom:588.790500px;}
.y64{bottom:589.720500px;}
.y1bc{bottom:593.902500px;}
.ydf{bottom:599.625000px;}
.y1f0{bottom:602.713500px;}
.y94{bottom:604.099500px;}
.y105{bottom:604.344000px;}
.y2f{bottom:605.263500px;}
.y14b{bottom:606.790500px;}
.y17e{bottom:607.273500px;}
.y63{bottom:607.720500px;}
.y1bb{bottom:611.902500px;}
.yb3{bottom:616.863000px;}
.yde{bottom:617.625000px;}
.y1ef{bottom:617.713500px;}
.y2e{bottom:621.763500px;}
.y93{bottom:622.099500px;}
.y104{bottom:622.344000px;}
.y17d{bottom:623.773500px;}
.y14a{bottom:624.790500px;}
.y62{bottom:625.720500px;}
.y1ba{bottom:629.902500px;}
.yb2{bottom:631.863000px;}
.y1ee{bottom:632.713500px;}
.ydd{bottom:635.625000px;}
.y2d{bottom:638.263500px;}
.y92{bottom:640.099500px;}
.y17c{bottom:640.273500px;}
.y103{bottom:640.344000px;}
.y149{bottom:642.790500px;}
.y61{bottom:643.720500px;}
.yb1{bottom:646.863000px;}
.y1ed{bottom:647.713500px;}
.y1b9{bottom:647.902500px;}
.ydc{bottom:653.625000px;}
.y17b{bottom:656.773500px;}
.y16c{bottom:656.938500px;}
.y91{bottom:658.099500px;}
.y148{bottom:660.790500px;}
.y60{bottom:661.720500px;}
.yb0{bottom:661.863000px;}
.y1ec{bottom:662.713500px;}
.y1b8{bottom:665.902500px;}
.y17a{bottom:670.381500px;}
.ydb{bottom:671.625000px;}
.y16b{bottom:671.938500px;}
.y179{bottom:673.405500px;}
.y2c{bottom:674.190000px;}
.y90{bottom:676.099500px;}
.yaf{bottom:676.863000px;}
.y1eb{bottom:677.713500px;}
.y147{bottom:678.790500px;}
.y5f{bottom:679.720500px;}
.y1b7{bottom:683.902500px;}
.y16a{bottom:686.937000px;}
.y102{bottom:688.152000px;}
.yda{bottom:689.625000px;}
.y178{bottom:689.905500px;}
.y1ea{bottom:692.713500px;}
.y146{bottom:696.790500px;}
.y5e{bottom:697.720500px;}
.y1b6{bottom:701.902500px;}
.y169{bottom:701.937000px;}
.y101{bottom:703.152000px;}
.y8f{bottom:704.599500px;}
.y177{bottom:706.405500px;}
.y176{bottom:706.546500px;}
.yd9{bottom:707.625000px;}
.y1e9{bottom:707.713500px;}
.y2b{bottom:712.506000px;}
.y145{bottom:714.790500px;}
.y5d{bottom:715.720500px;}
.y168{bottom:716.937000px;}
.y1b5{bottom:719.902500px;}
.y1e8{bottom:722.713500px;}
.y175{bottom:722.905500px;}
.y2a{bottom:729.006000px;}
.y144{bottom:732.790500px;}
.y5c{bottom:733.720500px;}
.y1e7{bottom:737.713500px;}
.y1b4{bottom:737.902500px;}
.y174{bottom:739.405500px;}
.y8e{bottom:740.587500px;}
.y29{bottom:745.506000px;}
.y143{bottom:750.790500px;}
.y5b{bottom:751.720500px;}
.y1e6{bottom:752.713500px;}
.yd8{bottom:754.816500px;}
.y1b3{bottom:755.902500px;}
.y173{bottom:755.905500px;}
.y28{bottom:762.006000px;}
.y1e5{bottom:767.713500px;}
.y142{bottom:768.790500px;}
.y5a{bottom:769.720500px;}
.yd7{bottom:769.816500px;}
.y172{bottom:772.404000px;}
.y27{bottom:778.506000px;}
.y1e4{bottom:782.713500px;}
.yd6{bottom:784.816500px;}
.y8d{bottom:786.220500px;}
.y141{bottom:786.790500px;}
.y59{bottom:787.720500px;}
.y171{bottom:788.904000px;}
.y26{bottom:789.775500px;}
.y1b2{bottom:790.401000px;}
.yd5{bottom:796.794000px;}
.y1e3{bottom:797.713500px;}
.yd4{bottom:799.816500px;}
.y8c{bottom:804.220500px;}
.y140{bottom:804.790500px;}
.y58{bottom:805.720500px;}
.y25{bottom:811.506000px;}
.y1e2{bottom:812.713500px;}
.y170{bottom:816.463500px;}
.yd3{bottom:817.017000px;}
.y8b{bottom:822.220500px;}
.y13f{bottom:822.790500px;}
.y57{bottom:823.720500px;}
.y1e1{bottom:827.713500px;}
.y24{bottom:828.006000px;}
.y8a{bottom:840.220500px;}
.y13e{bottom:840.790500px;}
.y56{bottom:841.720500px;}
.y1b1{bottom:842.712000px;}
.y1e0{bottom:842.713500px;}
.y16f{bottom:842.928000px;}
.y23{bottom:844.506000px;}
.y16{bottom:850.260000px;}
.y1df{bottom:857.712000px;}
.y89{bottom:858.220500px;}
.y13d{bottom:858.790500px;}
.y55{bottom:859.720500px;}
.y1b0{bottom:860.712000px;}
.y15{bottom:862.260000px;}
.y22{bottom:870.000000px;}
.y1de{bottom:872.712000px;}
.y14{bottom:874.260000px;}
.y88{bottom:876.220500px;}
.y13c{bottom:876.790500px;}
.y54{bottom:877.720500px;}
.y16e{bottom:878.326500px;}
.y1af{bottom:878.712000px;}
.y13{bottom:886.260000px;}
.y1dd{bottom:887.712000px;}
.y21{bottom:889.500000px;}
.y16d{bottom:893.326500px;}
.y87{bottom:894.220500px;}
.y13b{bottom:894.790500px;}
.y53{bottom:895.720500px;}
.y1ae{bottom:896.712000px;}
.y12{bottom:898.260000px;}
.y1dc{bottom:902.712000px;}
.y20{bottom:909.000000px;}
.y86{bottom:912.220500px;}
.y13a{bottom:912.790500px;}
.y52{bottom:913.720500px;}
.y1ad{bottom:914.712000px;}
.y1db{bottom:917.712000px;}
.y11{bottom:921.510000px;}
.y1f{bottom:928.500000px;}
.y85{bottom:930.220500px;}
.y139{bottom:930.790500px;}
.y51{bottom:931.720500px;}
.y5{bottom:931.950000px;}
.y1ac{bottom:932.712000px;}
.y10{bottom:933.510000px;}
.yf{bottom:945.510000px;}
.y1da{bottom:947.712000px;}
.y84{bottom:948.220500px;}
.y50{bottom:949.720500px;}
.y1ab{bottom:950.712000px;}
.ye{bottom:957.510000px;}
.y4{bottom:961.050000px;}
.y1d9{bottom:962.712000px;}
.y138{bottom:965.289000px;}
.y83{bottom:966.220500px;}
.y4f{bottom:967.720500px;}
.y1aa{bottom:968.712000px;}
.yd{bottom:969.510000px;}
.y1d8{bottom:977.712000px;}
.yc{bottom:981.510000px;}
.y82{bottom:984.220500px;}
.y4e{bottom:985.720500px;}
.y1e{bottom:986.158500px;}
.y1a9{bottom:986.712000px;}
.y1d7{bottom:992.712000px;}
.y3{bottom:1001.430000px;}
.y81{bottom:1002.220500px;}
.y4d{bottom:1003.720500px;}
.y1a8{bottom:1004.712000px;}
.yb{bottom:1004.760000px;}
.y1d6{bottom:1007.712000px;}
.ya{bottom:1016.760000px;}
.y80{bottom:1020.220500px;}
.y137{bottom:1021.212000px;}
.y1a7{bottom:1022.712000px;}
.y9{bottom:1028.760000px;}
.y1d{bottom:1031.158500px;}
.y7f{bottom:1034.065500px;}
.y1d5{bottom:1037.712000px;}
.y4c{bottom:1038.220500px;}
.y136{bottom:1039.212000px;}
.y2{bottom:1039.965000px;}
.y1a6{bottom:1040.712000px;}
.y8{bottom:1040.760000px;}
.y1d4{bottom:1052.712000px;}
.y7{bottom:1052.760000px;}
.y211{bottom:1054.212000px;}
.y135{bottom:1057.212000px;}
.y1a5{bottom:1058.712000px;}
.y1d3{bottom:1067.712000px;}
.y210{bottom:1069.212000px;}
.y134{bottom:1075.212000px;}
.y1a4{bottom:1076.712000px;}
.y6{bottom:1078.260000px;}
.y1{bottom:1081.485000px;}
.y1d2{bottom:1082.712000px;}
.y20f{bottom:1084.212000px;}
.y133{bottom:1093.212000px;}
.y1c{bottom:1094.166000px;}
.y1a3{bottom:1094.712000px;}
.y4b{bottom:1096.540500px;}
.y1d1{bottom:1097.712000px;}
.y20e{bottom:1099.212000px;}
.y132{bottom:1111.212000px;}
.y20d{bottom:1114.212000px;}
.y4a{bottom:1126.495500px;}
.y131{bottom:1129.212000px;}
.y1b{bottom:1144.129500px;}
.y18{bottom:1162.728000px;}
.y1a{bottom:1165.866000px;}
.y49{bottom:1174.210500px;}
.h9{height:13.148430px;}
.h14{height:13.949721px;}
.h13{height:25.199580px;}
.hf{height:26.459580px;}
.h28{height:29.509200px;}
.ha{height:30.156000px;}
.hb{height:32.549535px;}
.h15{height:33.599580px;}
.h3{height:36.000000px;}
.h25{height:36.719592px;}
.h4{height:36.804287px;}
.h10{height:37.799580px;}
.h20{height:37.805580px;}
.h19{height:39.743558px;}
.h11{height:39.797558px;}
.h1a{height:40.499550px;}
.h12{height:41.999580px;}
.h7{height:43.804688px;}
.h16{height:44.219558px;}
.h17{height:44.999550px;}
.h29{height:47.138200px;}
.h1b{height:49.496280px;}
.h26{height:49.895580px;}
.h5{height:50.062500px;}
.h1f{height:51.283200px;}
.h1{height:56.320312px;}
.h18{height:58.619580px;}
.h1d{height:59.671200px;}
.h1e{height:59.677200px;}
.he{height:60.497580px;}
.h24{height:60.737550px;}
.h1c{height:61.586280px;}
.h22{height:61.619550px;}
.hc{height:61.907116px;}
.h21{height:67.903200px;}
.h23{height:68.365200px;}
.h2{height:72.000000px;}
.h6{height:75.093750px;}
.h27{height:101.423550px;}
.hd{height:106.126673px;}
.h8{height:1262.835000px;}
.h0{height:1263.000000px;}
.w3{width:259.831500px;}
.w0{width:892.500000px;}
.w1{width:892.920000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:58.500000px;}
.xa{left:71.731500px;}
.x2c{left:72.735000px;}
.x14{left:80.401500px;}
.xe{left:89.664000px;}
.xb{left:94.613550px;}
.x17{left:112.285500px;}
.x2d{left:116.226000px;}
.xd{left:155.812500px;}
.x15{left:179.038500px;}
.x16{left:189.913500px;}
.x1d{left:192.121500px;}
.x18{left:210.612000px;}
.x9{left:213.105000px;}
.x2{left:217.050000px;}
.x3{left:239.700000px;}
.x1e{left:257.344500px;}
.x4{left:273.030000px;}
.x1a{left:284.223000px;}
.x20{left:300.003000px;}
.x21{left:306.847500px;}
.x5{left:339.690000px;}
.x1b{left:407.172000px;}
.x1c{left:410.680500px;}
.x19{left:417.120000px;}
.x13{left:446.524500px;}
.x1f{left:451.665000px;}
.xf{left:458.409000px;}
.x2b{left:459.414000px;}
.x29{left:466.164000px;}
.x11{left:476.341500px;}
.x12{left:496.300500px;}
.x2a{left:502.905000px;}
.x10{left:505.482000px;}
.x22{left:509.139000px;}
.x23{left:516.549000px;}
.x6{left:605.490000px;}
.x28{left:613.710000px;}
.x8{left:627.990000px;}
.x7{left:634.410000px;}
.x24{left:652.591500px;}
.x27{left:709.263000px;}
.x25{left:745.209000px;}
.xc{left:757.131000px;}
.x26{left:809.665500px;}
@media print{
.v4{vertical-align:-25.381333pt;}
.v2{vertical-align:-18.597333pt;}
.v3{vertical-align:-11.952000pt;}
.v5{vertical-align:-8.000000pt;}
.v8{vertical-align:-5.797333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:10.746667pt;}
.vf{vertical-align:13.184000pt;}
.v7{vertical-align:14.773333pt;}
.v13{vertical-align:18.368000pt;}
.v6{vertical-align:19.354667pt;}
.v9{vertical-align:20.389333pt;}
.vc{vertical-align:22.016000pt;}
.v1{vertical-align:23.909333pt;}
.vd{vertical-align:26.810667pt;}
.vb{vertical-align:31.136000pt;}
.ve{vertical-align:34.128000pt;}
.v10{vertical-align:35.205333pt;}
.v12{vertical-align:42.154667pt;}
.v11{vertical-align:50.154667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000133pt;}
.ls1c{letter-spacing:0.000148pt;}
.lsd{letter-spacing:0.000178pt;}
.ls38{letter-spacing:0.000207pt;}
.ls53{letter-spacing:0.000237pt;}
.ls1{letter-spacing:0.000267pt;}
.ls31{letter-spacing:0.000276pt;}
.ls66{letter-spacing:0.000297pt;}
.ls21{letter-spacing:0.000307pt;}
.ls3{letter-spacing:0.000327pt;}
.ls45{letter-spacing:0.000333pt;}
.ls3d{letter-spacing:0.000341pt;}
.ls2c{letter-spacing:0.000385pt;}
.ls4c{letter-spacing:0.000415pt;}
.ls59{letter-spacing:0.000444pt;}
.ls39{letter-spacing:0.000514pt;}
.ls4{letter-spacing:0.000533pt;}
.ls64{letter-spacing:0.001376pt;}
.ls28{letter-spacing:0.001558pt;}
.ls47{letter-spacing:0.001943pt;}
.ls62{letter-spacing:0.002189pt;}
.ls29{letter-spacing:0.002336pt;}
.ls3c{letter-spacing:0.002416pt;}
.ls4b{letter-spacing:0.002432pt;}
.ls35{letter-spacing:0.002819pt;}
.ls20{letter-spacing:0.003509pt;}
.ls30{letter-spacing:0.005570pt;}
.ls68{letter-spacing:0.005704pt;}
.ls56{letter-spacing:0.005778pt;}
.ls10{letter-spacing:0.197675pt;}
.ls3b{letter-spacing:1.051022pt;}
.ls2d{letter-spacing:1.056356pt;}
.ls2e{letter-spacing:1.104326pt;}
.ls32{letter-spacing:1.173689pt;}
.ls60{letter-spacing:1.440267pt;}
.ls2f{letter-spacing:1.632326pt;}
.ls40{letter-spacing:2.021570pt;}
.ls69{letter-spacing:2.653099pt;}
.ls46{letter-spacing:2.656000pt;}
.ls3a{letter-spacing:2.657600pt;}
.ls63{letter-spacing:3.098404pt;}
.ls11{letter-spacing:3.326784pt;}
.ls16{letter-spacing:3.392263pt;}
.ls1f{letter-spacing:5.920148pt;}
.ls48{letter-spacing:8.215893pt;}
.ls37{letter-spacing:8.221226pt;}
.ls36{letter-spacing:8.224267pt;}
.ls3e{letter-spacing:8.581333pt;}
.ls42{letter-spacing:8.586667pt;}
.ls23{letter-spacing:8.885641pt;}
.ls26{letter-spacing:8.885748pt;}
.ls3f{letter-spacing:8.890933pt;}
.ls24{letter-spacing:8.891081pt;}
.ls2b{letter-spacing:9.850815pt;}
.ls57{letter-spacing:10.160133pt;}
.ls25{letter-spacing:10.912237pt;}
.ls2a{letter-spacing:10.957226pt;}
.ls34{letter-spacing:10.962560pt;}
.ls4a{letter-spacing:11.258800pt;}
.ls6a{letter-spacing:11.493467pt;}
.ls22{letter-spacing:11.749570pt;}
.ls4f{letter-spacing:11.845748pt;}
.ls1d{letter-spacing:11.850815pt;}
.ls5a{letter-spacing:11.850963pt;}
.ls1e{letter-spacing:11.850974pt;}
.ls1b{letter-spacing:11.851081pt;}
.ls7{letter-spacing:11.952267pt;}
.ls6e{letter-spacing:12.000267pt;}
.ls58{letter-spacing:12.805467pt;}
.ls5f{letter-spacing:12.997600pt;}
.ls52{letter-spacing:13.328133pt;}
.lsc{letter-spacing:13.333467pt;}
.ls19{letter-spacing:13.333600pt;}
.ls6d{letter-spacing:13.333867pt;}
.ls5e{letter-spacing:13.339111pt;}
.ls33{letter-spacing:13.617600pt;}
.ls6b{letter-spacing:13.781467pt;}
.ls6c{letter-spacing:13.786800pt;}
.ls4e{letter-spacing:14.213600pt;}
.ls1a{letter-spacing:14.506667pt;}
.ls5d{letter-spacing:14.512000pt;}
.ls61{letter-spacing:14.657600pt;}
.lsf{letter-spacing:15.002800pt;}
.ls27{letter-spacing:15.232267pt;}
.ls15{letter-spacing:15.413467pt;}
.lsb{letter-spacing:15.520133pt;}
.ls5c{letter-spacing:16.000133pt;}
.ls6{letter-spacing:16.304237pt;}
.ls5{letter-spacing:16.309867pt;}
.ls4d{letter-spacing:16.357333pt;}
.ls54{letter-spacing:17.338667pt;}
.ls44{letter-spacing:18.096267pt;}
.ls50{letter-spacing:18.693333pt;}
.ls12{letter-spacing:19.193451pt;}
.ls14{letter-spacing:19.445467pt;}
.ls18{letter-spacing:19.936267pt;}
.ls13{letter-spacing:20.629467pt;}
.ls55{letter-spacing:21.232000pt;}
.ls5b{letter-spacing:21.274667pt;}
.lse{letter-spacing:21.914800pt;}
.ls51{letter-spacing:22.213333pt;}
.ls49{letter-spacing:22.426800pt;}
.ls17{letter-spacing:23.296267pt;}
.ls8{letter-spacing:23.909570pt;}
.ls9{letter-spacing:23.909600pt;}
.lsa{letter-spacing:26.568393pt;}
.ls41{letter-spacing:327.930667pt;}
.ls43{letter-spacing:399.349481pt;}
.ls65{letter-spacing:487.090694pt;}
.ls67{letter-spacing:498.380267pt;}
.wsb{word-spacing:-58.666133pt;}
.ws6{word-spacing:-37.332800pt;}
.ws9c{word-spacing:-32.639674pt;}
.wsa5{word-spacing:-29.375674pt;}
.ws7{word-spacing:-28.543643pt;}
.ws2b{word-spacing:-26.666400pt;}
.wse{word-spacing:-23.999733pt;}
.wsa{word-spacing:-21.333067pt;}
.wsac{word-spacing:-19.359806pt;}
.wsaf{word-spacing:-18.773146pt;}
.ws4c{word-spacing:-18.736000pt;}
.ws5{word-spacing:-18.666400pt;}
.ws7f{word-spacing:-17.813155pt;}
.wsd3{word-spacing:-17.780533pt;}
.ws121{word-spacing:-17.780267pt;}
.ws65{word-spacing:-17.775467pt;}
.ws64{word-spacing:-17.759822pt;}
.ws66{word-spacing:-17.546491pt;}
.ws6a{word-spacing:-17.493158pt;}
.ws146{word-spacing:-17.424701pt;}
.ws13e{word-spacing:-17.423806pt;}
.ws97{word-spacing:-17.386493pt;}
.ws142{word-spacing:-17.379525pt;}
.ws13f{word-spacing:-17.379486pt;}
.ws147{word-spacing:-17.378251pt;}
.ws143{word-spacing:-17.377896pt;}
.ws13b{word-spacing:-17.375807pt;}
.ws73{word-spacing:-17.279827pt;}
.ws107{word-spacing:-17.226494pt;}
.ws70{word-spacing:-17.173162pt;}
.ws75{word-spacing:-17.066496pt;}
.ws135{word-spacing:-17.013163pt;}
.ws6e{word-spacing:-16.967105pt;}
.ws6f{word-spacing:-16.959830pt;}
.ws110{word-spacing:-16.862400pt;}
.ws11d{word-spacing:-16.853165pt;}
.wsdc{word-spacing:-16.693166pt;}
.wsd6{word-spacing:-16.586501pt;}
.wsd7{word-spacing:-16.533168pt;}
.ws93{word-spacing:-16.479835pt;}
.ws34{word-spacing:-16.426502pt;}
.wsc6{word-spacing:-16.159838pt;}
.wsbe{word-spacing:-16.106506pt;}
.ws3b{word-spacing:-15.999840pt;}
.ws3c{word-spacing:-15.946507pt;}
.ws4b{word-spacing:-15.934430pt;}
.ws28{word-spacing:-15.839842pt;}
.ws86{word-spacing:-15.733176pt;}
.ws100{word-spacing:-15.679843pt;}
.wscd{word-spacing:-15.626510pt;}
.ws13a{word-spacing:-15.519845pt;}
.ws101{word-spacing:-15.466512pt;}
.ws12{word-spacing:-15.445140pt;}
.wsc0{word-spacing:-15.413179pt;}
.wsb8{word-spacing:-15.359846pt;}
.ws77{word-spacing:-15.306514pt;}
.wsf4{word-spacing:-15.253181pt;}
.ws125{word-spacing:-15.199848pt;}
.ws82{word-spacing:-15.093182pt;}
.ws126{word-spacing:-14.986517pt;}
.ws8b{word-spacing:-14.879851pt;}
.ws131{word-spacing:-14.773186pt;}
.wsdb{word-spacing:-14.719853pt;}
.ws88{word-spacing:-14.666520pt;}
.ws2e{word-spacing:-14.613187pt;}
.ws87{word-spacing:-14.559854pt;}
.ws32{word-spacing:-14.506522pt;}
.wsfd{word-spacing:-14.453189pt;}
.ws11c{word-spacing:-14.399856pt;}
.ws1f{word-spacing:-14.346523pt;}
.ws5d{word-spacing:-14.303841pt;}
.ws76{word-spacing:-14.293190pt;}
.wsab{word-spacing:-14.255842pt;}
.ws7e{word-spacing:-14.239858pt;}
.ws137{word-spacing:-14.186525pt;}
.wsdd{word-spacing:-14.133192pt;}
.ws2f{word-spacing:-14.079859pt;}
.ws10{word-spacing:-13.973194pt;}
.wsa6{word-spacing:-13.919861pt;}
.ws95{word-spacing:-13.866528pt;}
.wsc9{word-spacing:-13.813195pt;}
.wsc8{word-spacing:-13.759862pt;}
.ws6b{word-spacing:-13.706530pt;}
.ws104{word-spacing:-13.653197pt;}
.ws5e{word-spacing:-13.599864pt;}
.wsef{word-spacing:-13.546531pt;}
.wsee{word-spacing:-13.493198pt;}
.wsd8{word-spacing:-13.439866pt;}
.ws3a{word-spacing:-13.386533pt;}
.wsf{word-spacing:-13.333200pt;}
.ws19{word-spacing:-13.332933pt;}
.ws5b{word-spacing:-13.332297pt;}
.ws5a{word-spacing:-13.331348pt;}
.ws72{word-spacing:-13.279867pt;}
.ws16{word-spacing:-13.269167pt;}
.ws68{word-spacing:-13.226534pt;}
.ws15{word-spacing:-13.226501pt;}
.ws67{word-spacing:-13.173202pt;}
.ws74{word-spacing:-13.119869pt;}
.ws8{word-spacing:-13.082548pt;}
.ws128{word-spacing:-13.066536pt;}
.ws9{word-spacing:-13.023882pt;}
.ws3d{word-spacing:-13.013203pt;}
.ws3e{word-spacing:-12.959870pt;}
.ws133{word-spacing:-12.906538pt;}
.wsae{word-spacing:-12.799872pt;}
.ws46{word-spacing:-12.746539pt;}
.wsd5{word-spacing:-12.693206pt;}
.wsbd{word-spacing:-12.671859pt;}
.ws1c{word-spacing:-12.639874pt;}
.wsc7{word-spacing:-12.533208pt;}
.wsd9{word-spacing:-12.479875pt;}
.ws145{word-spacing:-12.479861pt;}
.ws23{word-spacing:-12.426542pt;}
.ws71{word-spacing:-12.373210pt;}
.wse4{word-spacing:-12.319877pt;}
.wsea{word-spacing:-12.266544pt;}
.ws140{word-spacing:-12.239864pt;}
.ws4f{word-spacing:-12.213211pt;}
.ws22{word-spacing:-12.159878pt;}
.ws7b{word-spacing:-12.143865pt;}
.ws1d{word-spacing:-12.106546pt;}
.ws31{word-spacing:-12.053213pt;}
.ws7d{word-spacing:-12.047866pt;}
.wsa1{word-spacing:-12.004607pt;}
.ws144{word-spacing:-12.004533pt;}
.wsd{word-spacing:-12.003467pt;}
.wsd0{word-spacing:-12.002564pt;}
.wsa9{word-spacing:-11.999880pt;}
.wsc{word-spacing:-11.999867pt;}
.wsba{word-spacing:-11.999274pt;}
.ws13c{word-spacing:-11.999200pt;}
.ws141{word-spacing:-11.998933pt;}
.ws9f{word-spacing:-11.998741pt;}
.ws13d{word-spacing:-11.998667pt;}
.ws4a{word-spacing:-11.946547pt;}
.wsb5{word-spacing:-11.893214pt;}
.ws17{word-spacing:-11.861185pt;}
.ws5c{word-spacing:-11.839882pt;}
.ws69{word-spacing:-11.786549pt;}
.ws45{word-spacing:-11.733216pt;}
.ws30{word-spacing:-11.679883pt;}
.wsa7{word-spacing:-11.626550pt;}
.wsb0{word-spacing:-11.519885pt;}
.ws2d{word-spacing:-11.466552pt;}
.ws78{word-spacing:-11.438341pt;}
.ws63{word-spacing:-11.413219pt;}
.ws35{word-spacing:-11.359886pt;}
.ws98{word-spacing:-11.306554pt;}
.ws48{word-spacing:-11.253221pt;}
.wsb9{word-spacing:-11.199888pt;}
.ws21{word-spacing:-11.146555pt;}
.ws18{word-spacing:-11.125174pt;}
.wsf8{word-spacing:-11.093222pt;}
.ws29{word-spacing:-11.039890pt;}
.ws40{word-spacing:-10.879891pt;}
.ws3f{word-spacing:-10.826558pt;}
.ws129{word-spacing:-10.814494pt;}
.ws12b{word-spacing:-10.773226pt;}
.ws89{word-spacing:-10.719893pt;}
.ws11{word-spacing:-10.709199pt;}
.ws20{word-spacing:-10.666560pt;}
.ws13{word-spacing:-10.666533pt;}
.wsca{word-spacing:-10.633452pt;}
.ws11e{word-spacing:-10.622697pt;}
.wscb{word-spacing:-10.613227pt;}
.wsbf{word-spacing:-10.453229pt;}
.wsc1{word-spacing:-10.399896pt;}
.wsc2{word-spacing:-10.346563pt;}
.ws102{word-spacing:-10.239898pt;}
.ws62{word-spacing:-10.186565pt;}
.wsb4{word-spacing:-10.154667pt;}
.ws123{word-spacing:-10.153920pt;}
.wscc{word-spacing:-10.149333pt;}
.ws8d{word-spacing:-10.133232pt;}
.ws8e{word-spacing:-10.106267pt;}
.wse9{word-spacing:-10.079899pt;}
.ws9b{word-spacing:-9.866568pt;}
.ws130{word-spacing:-9.813235pt;}
.ws2a{word-spacing:-9.759902pt;}
.ws122{word-spacing:-9.706667pt;}
.ws5f{word-spacing:-9.653237pt;}
.ws7a{word-spacing:-9.642546pt;}
.ws8c{word-spacing:-9.514548pt;}
.ws51{word-spacing:-9.493238pt;}
.wsce{word-spacing:-9.439906pt;}
.wsc3{word-spacing:-9.386573pt;}
.wsda{word-spacing:-9.333240pt;}
.wsfc{word-spacing:-9.226574pt;}
.ws60{word-spacing:-9.119909pt;}
.ws134{word-spacing:-9.066576pt;}
.ws8a{word-spacing:-9.013243pt;}
.wsaa{word-spacing:-8.853245pt;}
.wsb7{word-spacing:-8.799912pt;}
.wsd1{word-spacing:-8.761156pt;}
.wsb6{word-spacing:-8.746579pt;}
.wsa4{word-spacing:-8.725867pt;}
.wsbb{word-spacing:-8.720533pt;}
.wsc4{word-spacing:-8.693246pt;}
.wsf3{word-spacing:-8.639914pt;}
.wsb2{word-spacing:-8.586581pt;}
.wsf2{word-spacing:-8.426582pt;}
.ws4{word-spacing:-8.325214pt;}
.ws132{word-spacing:-8.319917pt;}
.ws2{word-spacing:-8.300749pt;}
.ws1{word-spacing:-8.287882pt;}
.ws3{word-spacing:-8.287140pt;}
.wsec{word-spacing:-8.266584pt;}
.ws25{word-spacing:-8.213251pt;}
.wsfb{word-spacing:-8.159918pt;}
.ws1e{word-spacing:-8.106586pt;}
.ws27{word-spacing:-8.053253pt;}
.ws9a{word-spacing:-7.999920pt;}
.ws103{word-spacing:-7.946587pt;}
.ws108{word-spacing:-7.893254pt;}
.wsed{word-spacing:-7.839922pt;}
.ws11a{word-spacing:-7.786589pt;}
.ws49{word-spacing:-7.626590pt;}
.ws42{word-spacing:-7.519925pt;}
.ws11b{word-spacing:-7.413259pt;}
.wsf0{word-spacing:-7.306594pt;}
.ws47{word-spacing:-7.253261pt;}
.ws83{word-spacing:-7.199928pt;}
.ws52{word-spacing:-7.146595pt;}
.ws85{word-spacing:-6.986597pt;}
.ws96{word-spacing:-6.937007pt;}
.ws26{word-spacing:-6.933264pt;}
.ws61{word-spacing:-6.879931pt;}
.wsf7{word-spacing:-6.826598pt;}
.ws57{word-spacing:-6.773266pt;}
.ws56{word-spacing:-6.719933pt;}
.wsf9{word-spacing:-6.559934pt;}
.ws106{word-spacing:-6.506602pt;}
.ws12f{word-spacing:-6.453269pt;}
.wse8{word-spacing:-6.239938pt;}
.wseb{word-spacing:-6.186605pt;}
.ws44{word-spacing:-6.079939pt;}
.ws43{word-spacing:-6.026606pt;}
.ws38{word-spacing:-5.919941pt;}
.ws39{word-spacing:-5.866608pt;}
.wscf{word-spacing:-5.813275pt;}
.ws105{word-spacing:-5.759942pt;}
.ws99{word-spacing:-5.653277pt;}
.wse6{word-spacing:-5.599944pt;}
.ws4e{word-spacing:-5.346901pt;}
.ws24{word-spacing:-5.333280pt;}
.wse7{word-spacing:-5.119949pt;}
.ws84{word-spacing:-5.066616pt;}
.ws37{word-spacing:-5.013283pt;}
.ws91{word-spacing:-4.906618pt;}
.ws90{word-spacing:-4.853285pt;}
.ws2c{word-spacing:-4.746619pt;}
.wse5{word-spacing:-4.693286pt;}
.ws119{word-spacing:-4.639954pt;}
.wsc5{word-spacing:-4.479955pt;}
.ws139{word-spacing:-4.426622pt;}
.ws50{word-spacing:-4.266624pt;}
.wsfa{word-spacing:-4.231019pt;}
.ws6d{word-spacing:-4.230549pt;}
.wse0{word-spacing:-4.230411pt;}
.ws6c{word-spacing:-4.229333pt;}
.ws92{word-spacing:-4.228725pt;}
.wsb3{word-spacing:-4.228117pt;}
.wsad{word-spacing:-4.227509pt;}
.ws120{word-spacing:-4.226901pt;}
.wsd4{word-spacing:-4.225685pt;}
.ws94{word-spacing:-4.225216pt;}
.ws9d{word-spacing:-4.224608pt;}
.ws12a{word-spacing:-4.224000pt;}
.ws12d{word-spacing:-3.999960pt;}
.ws8f{word-spacing:-3.839962pt;}
.ws81{word-spacing:-3.733296pt;}
.wsa8{word-spacing:-3.573298pt;}
.ws11f{word-spacing:-3.519965pt;}
.ws53{word-spacing:-3.413299pt;}
.ws14{word-spacing:-3.370625pt;}
.ws80{word-spacing:-3.359966pt;}
.wsb1{word-spacing:-3.253301pt;}
.wsa3{word-spacing:-3.243706pt;}
.ws7c{word-spacing:-3.242694pt;}
.wsa0{word-spacing:-3.242653pt;}
.wsa2{word-spacing:-3.239917pt;}
.ws36{word-spacing:-3.199968pt;}
.ws79{word-spacing:-2.879971pt;}
.ws12c{word-spacing:-2.719973pt;}
.ws124{word-spacing:-2.666640pt;}
.ws1b{word-spacing:-2.613307pt;}
.ws138{word-spacing:-2.453309pt;}
.ws41{word-spacing:-2.399976pt;}
.ws116{word-spacing:-2.206850pt;}
.ws10d{word-spacing:-2.205250pt;}
.ws10b{word-spacing:-2.202653pt;}
.wsf5{word-spacing:-2.079979pt;}
.wse2{word-spacing:-1.813315pt;}
.wse1{word-spacing:-1.812652pt;}
.wsf1{word-spacing:-1.493318pt;}
.wsde{word-spacing:-1.119989pt;}
.wsf6{word-spacing:-0.799992pt;}
.ws12e{word-spacing:-0.533328pt;}
.ws127{word-spacing:-0.269568pt;}
.ws1a{word-spacing:-0.053333pt;}
.ws9e{word-spacing:-0.047999pt;}
.ws4d{word-spacing:-0.037333pt;}
.wsbc{word-spacing:-0.031999pt;}
.ws0{word-spacing:0.000000pt;}
.ws58{word-spacing:0.426662pt;}
.ws55{word-spacing:0.853325pt;}
.ws54{word-spacing:1.386653pt;}
.wse3{word-spacing:1.493318pt;}
.ws59{word-spacing:1.599984pt;}
.wsfe{word-spacing:2.030315pt;}
.ws33{word-spacing:3.359966pt;}
.ws136{word-spacing:3.519965pt;}
.wsdf{word-spacing:5.439946pt;}
.wsff{word-spacing:6.190315pt;}
.wsd2{word-spacing:12.406549pt;}
.ws10e{word-spacing:295.121599pt;}
.ws118{word-spacing:295.125867pt;}
.ws111{word-spacing:305.709417pt;}
.ws113{word-spacing:315.048083pt;}
.ws112{word-spacing:322.161200pt;}
.ws109{word-spacing:331.473097pt;}
.ws10a{word-spacing:346.160933pt;}
.ws117{word-spacing:368.001066pt;}
.ws114{word-spacing:422.225655pt;}
.ws115{word-spacing:458.257739pt;}
.ws10c{word-spacing:464.655467pt;}
.ws10f{word-spacing:465.969697pt;}
._f{margin-left:-8.351907pt;}
._5{margin-left:-6.989270pt;}
._16{margin-left:-5.567910pt;}
._4{margin-left:-4.517292pt;}
._7{margin-left:-3.551961pt;}
._3{margin-left:-2.613273pt;}
._0{margin-left:-1.642667pt;}
._6{width:1.146382pt;}
._12{width:2.656608pt;}
._17{width:4.759732pt;}
._13{width:5.915289pt;}
._18{width:8.958182pt;}
._15{width:10.453229pt;}
._14{width:11.466552pt;}
._19{width:12.530594pt;}
._1{width:13.813136pt;}
._11{width:15.162418pt;}
._d{width:17.685189pt;}
._e{width:21.022876pt;}
._10{width:23.951734pt;}
._c{width:27.231761pt;}
._8{width:37.674187pt;}
._a{width:58.687162pt;}
._1a{width:382.443881pt;}
._1b{width:396.491348pt;}
._9{width:501.878779pt;}
._2{width:1394.580890pt;}
._b{width:1920.824770pt;}
.fsf{font-size:26.666133pt;}
.fse{font-size:31.999467pt;}
.fsb{font-size:33.599467pt;}
.fs11{font-size:33.724800pt;}
.fs6{font-size:37.332800pt;}
.fs5{font-size:37.333333pt;}
.fs10{font-size:37.472000pt;}
.fsa{font-size:42.666133pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:43.619896pt;}
.fsc{font-size:47.999467pt;}
.fs0{font-size:48.000000pt;}
.fsd{font-size:53.332800pt;}
.fs9{font-size:58.666133pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.665600pt;}
.fs1{font-size:85.333333pt;}
.fs8{font-size:127.998400pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:2.534533pt;}
.y17{bottom:57.706667pt;}
.yae{bottom:62.590667pt;}
.y48{bottom:63.653333pt;}
.y47{bottom:91.548000pt;}
.y46{bottom:104.214667pt;}
.y122{bottom:105.097333pt;}
.y130{bottom:105.194667pt;}
.yad{bottom:107.488000pt;}
.yf6{bottom:107.548000pt;}
.y7e{bottom:108.196000pt;}
.y45{bottom:116.881333pt;}
.y121{bottom:117.301333pt;}
.y120{bottom:121.097333pt;}
.y12f{bottom:121.194667pt;}
.ycb{bottom:123.428000pt;}
.yac{bottom:123.488000pt;}
.yf5{bottom:123.548000pt;}
.y7d{bottom:124.196000pt;}
.y44{bottom:129.548000pt;}
.y193{bottom:132.881333pt;}
.y11f{bottom:137.097333pt;}
.y12e{bottom:137.194667pt;}
.y167{bottom:139.369333pt;}
.yca{bottom:139.428000pt;}
.yab{bottom:139.488000pt;}
.yf4{bottom:139.548000pt;}
.y7c{bottom:140.196000pt;}
.y11e{bottom:149.404000pt;}
.y11d{bottom:153.097333pt;}
.y12d{bottom:153.194667pt;}
.y166{bottom:155.369333pt;}
.yc9{bottom:155.428000pt;}
.yaa{bottom:155.488000pt;}
.yf3{bottom:155.548000pt;}
.y7b{bottom:156.196000pt;}
.y20c{bottom:162.412000pt;}
.y1d0{bottom:162.748000pt;}
.y11c{bottom:169.097333pt;}
.y12c{bottom:169.194667pt;}
.y165{bottom:171.369333pt;}
.yc8{bottom:171.428000pt;}
.ya9{bottom:171.488000pt;}
.yf2{bottom:171.548000pt;}
.y7a{bottom:172.196000pt;}
.y192{bottom:173.398667pt;}
.y20b{bottom:175.745333pt;}
.y1cf{bottom:178.748000pt;}
.y43{bottom:184.777333pt;}
.y11b{bottom:185.097333pt;}
.y12b{bottom:185.194667pt;}
.y164{bottom:187.369333pt;}
.yc7{bottom:187.428000pt;}
.ya8{bottom:187.488000pt;}
.yf1{bottom:187.548000pt;}
.y79{bottom:188.196000pt;}
.y20a{bottom:189.078667pt;}
.y191{bottom:189.398667pt;}
.y42{bottom:193.193333pt;}
.y1ce{bottom:194.748000pt;}
.y163{bottom:199.872000pt;}
.y11a{bottom:201.097333pt;}
.y12a{bottom:201.194667pt;}
.y209{bottom:202.412000pt;}
.y162{bottom:203.369333pt;}
.yc6{bottom:203.428000pt;}
.ya7{bottom:203.488000pt;}
.yf0{bottom:203.548000pt;}
.y78{bottom:204.196000pt;}
.y41{bottom:204.852000pt;}
.y190{bottom:205.398667pt;}
.y1cd{bottom:210.748000pt;}
.y208{bottom:215.745333pt;}
.y161{bottom:215.872000pt;}
.y119{bottom:217.097333pt;}
.y129{bottom:217.194667pt;}
.y160{bottom:219.369333pt;}
.yc5{bottom:219.428000pt;}
.ya6{bottom:219.488000pt;}
.yef{bottom:219.548000pt;}
.y77{bottom:220.196000pt;}
.y18f{bottom:221.398667pt;}
.y1cc{bottom:226.748000pt;}
.y1a2{bottom:228.881333pt;}
.y207{bottom:229.078667pt;}
.y118{bottom:233.097333pt;}
.y128{bottom:233.194667pt;}
.y15f{bottom:235.369333pt;}
.yc4{bottom:235.428000pt;}
.ya5{bottom:235.488000pt;}
.yee{bottom:235.548000pt;}
.y76{bottom:236.196000pt;}
.y18e{bottom:237.398667pt;}
.y206{bottom:242.412000pt;}
.y1cb{bottom:242.748000pt;}
.y40{bottom:245.162667pt;}
.y117{bottom:249.097333pt;}
.y127{bottom:249.194667pt;}
.y15e{bottom:251.369333pt;}
.yc3{bottom:251.428000pt;}
.ya4{bottom:251.488000pt;}
.yed{bottom:251.548000pt;}
.y75{bottom:252.196000pt;}
.y18d{bottom:253.398667pt;}
.y205{bottom:255.745333pt;}
.y1ca{bottom:258.748000pt;}
.y3f{bottom:261.162667pt;}
.y116{bottom:265.097333pt;}
.y126{bottom:265.194667pt;}
.y15d{bottom:267.369333pt;}
.yc2{bottom:267.428000pt;}
.ya3{bottom:267.488000pt;}
.yec{bottom:267.548000pt;}
.y74{bottom:268.196000pt;}
.y204{bottom:269.078667pt;}
.y18c{bottom:269.398667pt;}
.y1a1{bottom:273.517333pt;}
.y1c9{bottom:274.748000pt;}
.y3e{bottom:277.162667pt;}
.y15c{bottom:279.676000pt;}
.y125{bottom:281.194667pt;}
.y203{bottom:282.412000pt;}
.y15b{bottom:283.369333pt;}
.yc1{bottom:283.428000pt;}
.ya2{bottom:283.488000pt;}
.yeb{bottom:283.548000pt;}
.y73{bottom:284.196000pt;}
.y18b{bottom:285.398667pt;}
.y1a0{bottom:289.517333pt;}
.y115{bottom:290.430667pt;}
.y1c8{bottom:290.748000pt;}
.y3d{bottom:293.162667pt;}
.y202{bottom:295.745333pt;}
.y124{bottom:297.194667pt;}
.y15a{bottom:299.369333pt;}
.yc0{bottom:299.428000pt;}
.ya1{bottom:299.488000pt;}
.y100{bottom:299.548000pt;}
.y72{bottom:300.196000pt;}
.y18a{bottom:301.398667pt;}
.y19f{bottom:305.517333pt;}
.y1c7{bottom:306.748000pt;}
.y201{bottom:309.078667pt;}
.y3c{bottom:309.162667pt;}
.yea{bottom:309.890667pt;}
.y123{bottom:313.194667pt;}
.y159{bottom:315.369333pt;}
.ybf{bottom:315.428000pt;}
.ya0{bottom:315.488000pt;}
.yff{bottom:315.548000pt;}
.y71{bottom:316.196000pt;}
.y189{bottom:317.398667pt;}
.y19e{bottom:321.517333pt;}
.y200{bottom:322.412000pt;}
.y1c6{bottom:322.748000pt;}
.y3b{bottom:325.162667pt;}
.y114{bottom:329.194667pt;}
.y158{bottom:331.369333pt;}
.ybe{bottom:331.428000pt;}
.y9f{bottom:331.488000pt;}
.yfe{bottom:331.548000pt;}
.y70{bottom:332.196000pt;}
.ye9{bottom:333.041333pt;}
.y188{bottom:333.398667pt;}
.y19d{bottom:333.824000pt;}
.y1ff{bottom:335.745333pt;}
.y19c{bottom:337.517333pt;}
.y1c5{bottom:338.748000pt;}
.y3a{bottom:341.162667pt;}
.y113{bottom:345.194667pt;}
.y157{bottom:347.369333pt;}
.ybd{bottom:347.428000pt;}
.y9e{bottom:347.488000pt;}
.y6f{bottom:348.196000pt;}
.y1fe{bottom:349.078667pt;}
.y187{bottom:349.398667pt;}
.y19b{bottom:353.517333pt;}
.y1c4{bottom:354.748000pt;}
.yfd{bottom:356.881333pt;}
.y39{bottom:357.162667pt;}
.ye8{bottom:359.384000pt;}
.y112{bottom:361.194667pt;}
.y1fd{bottom:362.412000pt;}
.y156{bottom:363.369333pt;}
.ybc{bottom:363.428000pt;}
.y6e{bottom:364.196000pt;}
.y186{bottom:365.398667pt;}
.y19a{bottom:369.517333pt;}
.y1c3{bottom:370.748000pt;}
.y38{bottom:373.162667pt;}
.ye7{bottom:375.384000pt;}
.y1fc{bottom:375.745333pt;}
.y111{bottom:377.194667pt;}
.y9d{bottom:378.233333pt;}
.y155{bottom:379.369333pt;}
.ybb{bottom:379.428000pt;}
.y6d{bottom:380.196000pt;}
.y185{bottom:381.398667pt;}
.y199{bottom:381.824000pt;}
.y198{bottom:385.517333pt;}
.y1c2{bottom:386.748000pt;}
.y1fb{bottom:389.078667pt;}
.y37{bottom:389.162667pt;}
.ye6{bottom:391.384000pt;}
.y110{bottom:393.194667pt;}
.y154{bottom:395.369333pt;}
.yba{bottom:395.428000pt;}
.y6c{bottom:396.196000pt;}
.y184{bottom:397.398667pt;}
.yfc{bottom:401.652000pt;}
.yd2{bottom:402.026667pt;}
.y1fa{bottom:402.412000pt;}
.y36{bottom:405.162667pt;}
.y9c{bottom:408.977333pt;}
.y10f{bottom:409.194667pt;}
.y153{bottom:411.369333pt;}
.yb9{bottom:411.428000pt;}
.y6b{bottom:412.196000pt;}
.y183{bottom:413.398667pt;}
.yfb{bottom:414.985333pt;}
.yd1{bottom:415.360000pt;}
.y1f9{bottom:415.745333pt;}
.ye5{bottom:416.716000pt;}
.y1c1{bottom:417.414667pt;}
.y35{bottom:421.162667pt;}
.y9b{bottom:424.977333pt;}
.y10e{bottom:425.194667pt;}
.y197{bottom:426.370667pt;}
.y152{bottom:427.369333pt;}
.yb8{bottom:427.428000pt;}
.y6a{bottom:428.196000pt;}
.yfa{bottom:428.318667pt;}
.yd0{bottom:428.693333pt;}
.y1f8{bottom:429.078667pt;}
.y182{bottom:429.398667pt;}
.y196{bottom:430.310667pt;}
.y34{bottom:437.162667pt;}
.y10d{bottom:437.501333pt;}
.y195{bottom:438.696000pt;}
.y9a{bottom:440.977333pt;}
.y10c{bottom:441.194667pt;}
.yf9{bottom:441.652000pt;}
.y194{bottom:441.992000pt;}
.ycf{bottom:442.026667pt;}
.y1f7{bottom:442.412000pt;}
.y151{bottom:443.369333pt;}
.yb7{bottom:443.428000pt;}
.y69{bottom:444.196000pt;}
.y181{bottom:445.398667pt;}
.ye4{bottom:453.000000pt;}
.y33{bottom:453.162667pt;}
.y10b{bottom:453.501333pt;}
.yce{bottom:455.360000pt;}
.y1f6{bottom:455.745333pt;}
.yf8{bottom:456.941333pt;}
.y99{bottom:456.977333pt;}
.y10a{bottom:457.194667pt;}
.y150{bottom:459.369333pt;}
.yb6{bottom:459.428000pt;}
.y68{bottom:460.196000pt;}
.y180{bottom:461.398667pt;}
.y1c0{bottom:463.913333pt;}
.ycd{bottom:468.693333pt;}
.ye3{bottom:469.000000pt;}
.y1f5{bottom:469.078667pt;}
.y32{bottom:469.162667pt;}
.yf7{bottom:470.273333pt;}
.y98{bottom:472.977333pt;}
.y109{bottom:473.194667pt;}
.y14f{bottom:475.369333pt;}
.yb5{bottom:475.428000pt;}
.y67{bottom:476.196000pt;}
.y1bf{bottom:479.913333pt;}
.ycc{bottom:482.026667pt;}
.y1f4{bottom:482.412000pt;}
.ye2{bottom:485.000000pt;}
.y31{bottom:485.162667pt;}
.y97{bottom:488.977333pt;}
.y108{bottom:489.194667pt;}
.y14e{bottom:491.369333pt;}
.yb4{bottom:491.428000pt;}
.y17f{bottom:492.065333pt;}
.y66{bottom:492.196000pt;}
.y1f3{bottom:495.745333pt;}
.y1be{bottom:495.913333pt;}
.ye1{bottom:501.000000pt;}
.y30{bottom:501.222667pt;}
.y96{bottom:504.977333pt;}
.y107{bottom:505.194667pt;}
.y14d{bottom:507.369333pt;}
.y65{bottom:508.196000pt;}
.y1f2{bottom:509.078667pt;}
.y1bd{bottom:511.913333pt;}
.ye0{bottom:517.000000pt;}
.y95{bottom:520.977333pt;}
.y106{bottom:521.194667pt;}
.y1f1{bottom:522.412000pt;}
.y14c{bottom:523.369333pt;}
.y64{bottom:524.196000pt;}
.y1bc{bottom:527.913333pt;}
.ydf{bottom:533.000000pt;}
.y1f0{bottom:535.745333pt;}
.y94{bottom:536.977333pt;}
.y105{bottom:537.194667pt;}
.y2f{bottom:538.012000pt;}
.y14b{bottom:539.369333pt;}
.y17e{bottom:539.798667pt;}
.y63{bottom:540.196000pt;}
.y1bb{bottom:543.913333pt;}
.yb3{bottom:548.322667pt;}
.yde{bottom:549.000000pt;}
.y1ef{bottom:549.078667pt;}
.y2e{bottom:552.678667pt;}
.y93{bottom:552.977333pt;}
.y104{bottom:553.194667pt;}
.y17d{bottom:554.465333pt;}
.y14a{bottom:555.369333pt;}
.y62{bottom:556.196000pt;}
.y1ba{bottom:559.913333pt;}
.yb2{bottom:561.656000pt;}
.y1ee{bottom:562.412000pt;}
.ydd{bottom:565.000000pt;}
.y2d{bottom:567.345333pt;}
.y92{bottom:568.977333pt;}
.y17c{bottom:569.132000pt;}
.y103{bottom:569.194667pt;}
.y149{bottom:571.369333pt;}
.y61{bottom:572.196000pt;}
.yb1{bottom:574.989333pt;}
.y1ed{bottom:575.745333pt;}
.y1b9{bottom:575.913333pt;}
.ydc{bottom:581.000000pt;}
.y17b{bottom:583.798667pt;}
.y16c{bottom:583.945333pt;}
.y91{bottom:584.977333pt;}
.y148{bottom:587.369333pt;}
.y60{bottom:588.196000pt;}
.yb0{bottom:588.322667pt;}
.y1ec{bottom:589.078667pt;}
.y1b8{bottom:591.913333pt;}
.y17a{bottom:595.894667pt;}
.ydb{bottom:597.000000pt;}
.y16b{bottom:597.278667pt;}
.y179{bottom:598.582667pt;}
.y2c{bottom:599.280000pt;}
.y90{bottom:600.977333pt;}
.yaf{bottom:601.656000pt;}
.y1eb{bottom:602.412000pt;}
.y147{bottom:603.369333pt;}
.y5f{bottom:604.196000pt;}
.y1b7{bottom:607.913333pt;}
.y16a{bottom:610.610667pt;}
.y102{bottom:611.690667pt;}
.yda{bottom:613.000000pt;}
.y178{bottom:613.249333pt;}
.y1ea{bottom:615.745333pt;}
.y146{bottom:619.369333pt;}
.y5e{bottom:620.196000pt;}
.y1b6{bottom:623.913333pt;}
.y169{bottom:623.944000pt;}
.y101{bottom:625.024000pt;}
.y8f{bottom:626.310667pt;}
.y177{bottom:627.916000pt;}
.y176{bottom:628.041333pt;}
.yd9{bottom:629.000000pt;}
.y1e9{bottom:629.078667pt;}
.y2b{bottom:633.338667pt;}
.y145{bottom:635.369333pt;}
.y5d{bottom:636.196000pt;}
.y168{bottom:637.277333pt;}
.y1b5{bottom:639.913333pt;}
.y1e8{bottom:642.412000pt;}
.y175{bottom:642.582667pt;}
.y2a{bottom:648.005333pt;}
.y144{bottom:651.369333pt;}
.y5c{bottom:652.196000pt;}
.y1e7{bottom:655.745333pt;}
.y1b4{bottom:655.913333pt;}
.y174{bottom:657.249333pt;}
.y8e{bottom:658.300000pt;}
.y29{bottom:662.672000pt;}
.y143{bottom:667.369333pt;}
.y5b{bottom:668.196000pt;}
.y1e6{bottom:669.078667pt;}
.yd8{bottom:670.948000pt;}
.y1b3{bottom:671.913333pt;}
.y173{bottom:671.916000pt;}
.y28{bottom:677.338667pt;}
.y1e5{bottom:682.412000pt;}
.y142{bottom:683.369333pt;}
.y5a{bottom:684.196000pt;}
.yd7{bottom:684.281333pt;}
.y172{bottom:686.581333pt;}
.y27{bottom:692.005333pt;}
.y1e4{bottom:695.745333pt;}
.yd6{bottom:697.614667pt;}
.y8d{bottom:698.862667pt;}
.y141{bottom:699.369333pt;}
.y59{bottom:700.196000pt;}
.y171{bottom:701.248000pt;}
.y26{bottom:702.022667pt;}
.y1b2{bottom:702.578667pt;}
.yd5{bottom:708.261333pt;}
.y1e3{bottom:709.078667pt;}
.yd4{bottom:710.948000pt;}
.y8c{bottom:714.862667pt;}
.y140{bottom:715.369333pt;}
.y58{bottom:716.196000pt;}
.y25{bottom:721.338667pt;}
.y1e2{bottom:722.412000pt;}
.y170{bottom:725.745333pt;}
.yd3{bottom:726.237333pt;}
.y8b{bottom:730.862667pt;}
.y13f{bottom:731.369333pt;}
.y57{bottom:732.196000pt;}
.y1e1{bottom:735.745333pt;}
.y24{bottom:736.005333pt;}
.y8a{bottom:746.862667pt;}
.y13e{bottom:747.369333pt;}
.y56{bottom:748.196000pt;}
.y1b1{bottom:749.077333pt;}
.y1e0{bottom:749.078667pt;}
.y16f{bottom:749.269333pt;}
.y23{bottom:750.672000pt;}
.y16{bottom:755.786667pt;}
.y1df{bottom:762.410667pt;}
.y89{bottom:762.862667pt;}
.y13d{bottom:763.369333pt;}
.y55{bottom:764.196000pt;}
.y1b0{bottom:765.077333pt;}
.y15{bottom:766.453333pt;}
.y22{bottom:773.333333pt;}
.y1de{bottom:775.744000pt;}
.y14{bottom:777.120000pt;}
.y88{bottom:778.862667pt;}
.y13c{bottom:779.369333pt;}
.y54{bottom:780.196000pt;}
.y16e{bottom:780.734667pt;}
.y1af{bottom:781.077333pt;}
.y13{bottom:787.786667pt;}
.y1dd{bottom:789.077333pt;}
.y21{bottom:790.666667pt;}
.y16d{bottom:794.068000pt;}
.y87{bottom:794.862667pt;}
.y13b{bottom:795.369333pt;}
.y53{bottom:796.196000pt;}
.y1ae{bottom:797.077333pt;}
.y12{bottom:798.453333pt;}
.y1dc{bottom:802.410667pt;}
.y20{bottom:808.000000pt;}
.y86{bottom:810.862667pt;}
.y13a{bottom:811.369333pt;}
.y52{bottom:812.196000pt;}
.y1ad{bottom:813.077333pt;}
.y1db{bottom:815.744000pt;}
.y11{bottom:819.120000pt;}
.y1f{bottom:825.333333pt;}
.y85{bottom:826.862667pt;}
.y139{bottom:827.369333pt;}
.y51{bottom:828.196000pt;}
.y5{bottom:828.400000pt;}
.y1ac{bottom:829.077333pt;}
.y10{bottom:829.786667pt;}
.yf{bottom:840.453333pt;}
.y1da{bottom:842.410667pt;}
.y84{bottom:842.862667pt;}
.y50{bottom:844.196000pt;}
.y1ab{bottom:845.077333pt;}
.ye{bottom:851.120000pt;}
.y4{bottom:854.266667pt;}
.y1d9{bottom:855.744000pt;}
.y138{bottom:858.034667pt;}
.y83{bottom:858.862667pt;}
.y4f{bottom:860.196000pt;}
.y1aa{bottom:861.077333pt;}
.yd{bottom:861.786667pt;}
.y1d8{bottom:869.077333pt;}
.yc{bottom:872.453333pt;}
.y82{bottom:874.862667pt;}
.y4e{bottom:876.196000pt;}
.y1e{bottom:876.585333pt;}
.y1a9{bottom:877.077333pt;}
.y1d7{bottom:882.410667pt;}
.y3{bottom:890.160000pt;}
.y81{bottom:890.862667pt;}
.y4d{bottom:892.196000pt;}
.y1a8{bottom:893.077333pt;}
.yb{bottom:893.120000pt;}
.y1d6{bottom:895.744000pt;}
.ya{bottom:903.786667pt;}
.y80{bottom:906.862667pt;}
.y137{bottom:907.744000pt;}
.y1a7{bottom:909.077333pt;}
.y9{bottom:914.453333pt;}
.y1d{bottom:916.585333pt;}
.y7f{bottom:919.169333pt;}
.y1d5{bottom:922.410667pt;}
.y4c{bottom:922.862667pt;}
.y136{bottom:923.744000pt;}
.y2{bottom:924.413333pt;}
.y1a6{bottom:925.077333pt;}
.y8{bottom:925.120000pt;}
.y1d4{bottom:935.744000pt;}
.y7{bottom:935.786667pt;}
.y211{bottom:937.077333pt;}
.y135{bottom:939.744000pt;}
.y1a5{bottom:941.077333pt;}
.y1d3{bottom:949.077333pt;}
.y210{bottom:950.410667pt;}
.y134{bottom:955.744000pt;}
.y1a4{bottom:957.077333pt;}
.y6{bottom:958.453333pt;}
.y1{bottom:961.320000pt;}
.y1d2{bottom:962.410667pt;}
.y20f{bottom:963.744000pt;}
.y133{bottom:971.744000pt;}
.y1c{bottom:972.592000pt;}
.y1a3{bottom:973.077333pt;}
.y4b{bottom:974.702667pt;}
.y1d1{bottom:975.744000pt;}
.y20e{bottom:977.077333pt;}
.y132{bottom:987.744000pt;}
.y20d{bottom:990.410667pt;}
.y4a{bottom:1001.329333pt;}
.y131{bottom:1003.744000pt;}
.y1b{bottom:1017.004000pt;}
.y18{bottom:1033.536000pt;}
.y1a{bottom:1036.325333pt;}
.y49{bottom:1043.742667pt;}
.h9{height:11.687493pt;}
.h14{height:12.399752pt;}
.h13{height:22.399627pt;}
.hf{height:23.519627pt;}
.h28{height:26.230400pt;}
.ha{height:26.805333pt;}
.hb{height:28.932920pt;}
.h15{height:29.866293pt;}
.h3{height:32.000000pt;}
.h25{height:32.639637pt;}
.h4{height:32.714922pt;}
.h10{height:33.599627pt;}
.h20{height:33.604960pt;}
.h19{height:35.327607pt;}
.h11{height:35.375607pt;}
.h1a{height:35.999600pt;}
.h12{height:37.332960pt;}
.h7{height:38.937500pt;}
.h16{height:39.306274pt;}
.h17{height:39.999600pt;}
.h29{height:41.900623pt;}
.h1b{height:43.996693pt;}
.h26{height:44.351627pt;}
.h5{height:44.500000pt;}
.h1f{height:45.585067pt;}
.h1{height:50.062500pt;}
.h18{height:52.106293pt;}
.h1d{height:53.041067pt;}
.h1e{height:53.046400pt;}
.he{height:53.775627pt;}
.h24{height:53.988933pt;}
.h1c{height:54.743360pt;}
.h22{height:54.772933pt;}
.hc{height:55.028547pt;}
.h21{height:60.358400pt;}
.h23{height:60.769067pt;}
.h2{height:64.000000pt;}
.h6{height:66.750000pt;}
.h27{height:90.154267pt;}
.hd{height:94.334821pt;}
.h8{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w3{width:230.961333pt;}
.w0{width:793.333333pt;}
.w1{width:793.706667pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:52.000000pt;}
.xa{left:63.761333pt;}
.x2c{left:64.653333pt;}
.x14{left:71.468000pt;}
.xe{left:79.701333pt;}
.xb{left:84.100933pt;}
.x17{left:99.809333pt;}
.x2d{left:103.312000pt;}
.xd{left:138.500000pt;}
.x15{left:159.145333pt;}
.x16{left:168.812000pt;}
.x1d{left:170.774667pt;}
.x18{left:187.210667pt;}
.x9{left:189.426667pt;}
.x2{left:192.933333pt;}
.x3{left:213.066667pt;}
.x1e{left:228.750667pt;}
.x4{left:242.693333pt;}
.x1a{left:252.642667pt;}
.x20{left:266.669333pt;}
.x21{left:272.753333pt;}
.x5{left:301.946667pt;}
.x1b{left:361.930667pt;}
.x1c{left:365.049333pt;}
.x19{left:370.773333pt;}
.x13{left:396.910667pt;}
.x1f{left:401.480000pt;}
.xf{left:407.474667pt;}
.x2b{left:408.368000pt;}
.x29{left:414.368000pt;}
.x11{left:423.414667pt;}
.x12{left:441.156000pt;}
.x2a{left:447.026667pt;}
.x10{left:449.317333pt;}
.x22{left:452.568000pt;}
.x23{left:459.154667pt;}
.x6{left:538.213333pt;}
.x28{left:545.520000pt;}
.x8{left:558.213333pt;}
.x7{left:563.920000pt;}
.x24{left:580.081333pt;}
.x27{left:630.456000pt;}
.x25{left:662.408000pt;}
.xc{left:673.005333pt;}
.x26{left:719.702667pt;}
}




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