
    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_d8564c00d090bb7ac7b0c277.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_d94bf8195a946ae45e93501f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_e97c82ff19b2e2ee5fd03a97.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948242;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_23cf56e1c54035e24305485a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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_f8fa22c88f790f13a34d899a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_fd53c185e335a6e9ce4d6230.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_9e919a3fcf9f3aedf9369d70.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_6f1dc78a0bb34f77a6c71116.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_29474dce8c850997bdeb8e2e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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_c19bba168986406577c97cd2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.051000;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_17f22ffe3f8868ba432f6755.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.014000;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_ec270340270e9b8ef9947e7e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.032000;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_c4393b7591ca114a1640374d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.027500;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_c57482bb2e748687502a2341.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.976074;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_28d22281fbcb89e6abe04894.woff2')format("woff");}.fff{font-family:fff;line-height:0.966309;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_054084613bb5fca27c24767e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976074;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_d7a56450067d841688266659.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.751953;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_f199723b504bb364401d92ec.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.972168;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_625614583fb2d2a74b1a3667.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.983398;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_6543a171714da889cc257a56.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.099609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v11{vertical-align:-62.820000px;}
.va{vertical-align:-60.960000px;}
.vd{vertical-align:-28.800000px;}
.v2{vertical-align:-17.280000px;}
.v10{vertical-align:-13.800000px;}
.v8{vertical-align:-11.940000px;}
.v12{vertical-align:-4.032000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.160000px;}
.v1{vertical-align:3.744000px;}
.ve{vertical-align:5.616000px;}
.v13{vertical-align:9.792000px;}
.vb{vertical-align:28.800000px;}
.vc{vertical-align:30.960000px;}
.v7{vertical-align:32.400000px;}
.vf{vertical-align:37.152000px;}
.v6{vertical-align:43.200000px;}
.v4{vertical-align:64.800000px;}
.v3{vertical-align:198.720000px;}
.ls5c{letter-spacing:-0.828000px;}
.ls6f{letter-spacing:-0.391800px;}
.ls48{letter-spacing:-0.368400px;}
.ls1a{letter-spacing:-0.367800px;}
.ls2d{letter-spacing:-0.331200px;}
.ls49{letter-spacing:-0.324000px;}
.ls2c{letter-spacing:-0.306600px;}
.ls59{letter-spacing:-0.304200px;}
.ls12{letter-spacing:-0.288000px;}
.ls4e{letter-spacing:-0.264000px;}
.ls16{letter-spacing:-0.247800px;}
.ls25{letter-spacing:-0.223800px;}
.ls17{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.178800px;}
.ls50{letter-spacing:-0.174600px;}
.ls14{letter-spacing:-0.162600px;}
.ls4{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.098400px;}
.ls4a{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.064200px;}
.ls41{letter-spacing:-0.054000px;}
.ls5d{letter-spacing:-0.053280px;}
.ls4b{letter-spacing:-0.036000px;}
.ls1d{letter-spacing:-0.034560px;}
.ls8{letter-spacing:-0.028080px;}
.ls1{letter-spacing:-0.018720px;}
.ls43{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.018720px;}
.ls46{letter-spacing:0.023040px;}
.ls18{letter-spacing:0.036000px;}
.ls27{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.051840px;}
.ls5e{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.109200px;}
.ls19{letter-spacing:0.136200px;}
.ls28{letter-spacing:0.144000px;}
.ls47{letter-spacing:0.161280px;}
.ls15{letter-spacing:0.175800px;}
.ls5a{letter-spacing:0.175968px;}
.ls11{letter-spacing:0.216000px;}
.lse{letter-spacing:0.231000px;}
.lsf{letter-spacing:0.252000px;}
.ls35{letter-spacing:0.259200px;}
.ls23{letter-spacing:0.259920px;}
.ls44{letter-spacing:0.280200px;}
.ls29{letter-spacing:0.305400px;}
.ls7{letter-spacing:0.341400px;}
.ls42{letter-spacing:0.342000px;}
.ls40{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.361200px;}
.ls21{letter-spacing:0.396000px;}
.ls64{letter-spacing:0.403200px;}
.ls24{letter-spacing:0.439920px;}
.ls2b{letter-spacing:1.133280px;}
.ls1c{letter-spacing:1.350720px;}
.ls10{letter-spacing:3.816000px;}
.ls5b{letter-spacing:7.866720px;}
.ls2{letter-spacing:23.002560px;}
.ls55{letter-spacing:57.364416px;}
.ls54{letter-spacing:57.456000px;}
.ls5{letter-spacing:62.409600px;}
.ls6{letter-spacing:62.460000px;}
.ls58{letter-spacing:73.195776px;}
.ls57{letter-spacing:73.287360px;}
.ls53{letter-spacing:88.568064px;}
.ls52{letter-spacing:88.633440px;}
.ls2a{letter-spacing:93.276000px;}
.ls4d{letter-spacing:97.393824px;}
.ls4c{letter-spacing:97.459200px;}
.ls22{letter-spacing:97.509600px;}
.ls20{letter-spacing:97.560000px;}
.ls56{letter-spacing:97.603200px;}
.lsa{letter-spacing:109.389600px;}
.ls9{letter-spacing:109.440000px;}
.lsb{letter-spacing:110.109600px;}
.lsc{letter-spacing:110.160000px;}
.ls45{letter-spacing:119.916000px;}
.ls30{letter-spacing:249.437280px;}
.ls33{letter-spacing:249.520800px;}
.ls62{letter-spacing:292.757280px;}
.ls60{letter-spacing:292.840800px;}
.ls2f{letter-spacing:292.937280px;}
.ls32{letter-spacing:293.020800px;}
.ls6a{letter-spacing:320.500800px;}
.ls3b{letter-spacing:320.920800px;}
.ls63{letter-spacing:329.215680px;}
.ls6b{letter-spacing:329.335680px;}
.ls34{letter-spacing:330.259488px;}
.ls3c{letter-spacing:330.835680px;}
.ls51{letter-spacing:435.831360px;}
.ls6c{letter-spacing:870.189360px;}
.ls65{letter-spacing:870.489360px;}
.ls36{letter-spacing:872.049360px;}
.ls68{letter-spacing:872.081520px;}
.ls3d{letter-spacing:872.119776px;}
.ls5f{letter-spacing:872.261520px;}
.ls69{letter-spacing:872.808720px;}
.ls61{letter-spacing:872.988720px;}
.ls2e{letter-spacing:873.941520px;}
.ls39{letter-spacing:874.121520px;}
.ls31{letter-spacing:874.668720px;}
.ls6d{letter-spacing:874.697280px;}
.ls67{letter-spacing:874.736160px;}
.ls3a{letter-spacing:874.848720px;}
.ls66{letter-spacing:874.877280px;}
.ls6e{letter-spacing:875.276160px;}
.ls38{letter-spacing:876.416160px;}
.ls37{letter-spacing:876.557280px;}
.ls3f{letter-spacing:876.596160px;}
.ls3e{letter-spacing:876.737280px;}
.ls4f{letter-spacing:3752.072640px;}
.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;}
}
.ws2{word-spacing:-84.240000px;}
.ws7e{word-spacing:-76.032000px;}
.wsa{word-spacing:-73.498752px;}
.ws82{word-spacing:-60.088032px;}
.ws0{word-spacing:-60.048000px;}
.wsc{word-spacing:-53.442720px;}
.ws2c{word-spacing:-53.378520px;}
.ws9f{word-spacing:-46.285512px;}
.ws80{word-spacing:-42.375168px;}
.ws81{word-spacing:-42.324480px;}
.ws2d{word-spacing:-41.904000px;}
.ws2e{word-spacing:-41.760000px;}
.ws7b{word-spacing:-38.016000px;}
.ws7d{word-spacing:-36.936000px;}
.ws1a{word-spacing:-30.240000px;}
.ws14{word-spacing:-30.064032px;}
.ws12{word-spacing:-30.024000px;}
.ws25{word-spacing:-29.736000px;}
.ws79{word-spacing:-27.174240px;}
.ws8a{word-spacing:-26.943840px;}
.ws48{word-spacing:-26.658720px;}
.ws40{word-spacing:-26.621280px;}
.ws93{word-spacing:-26.619840px;}
.ws54{word-spacing:-25.547040px;}
.ws53{word-spacing:-24.920640px;}
.ws4{word-spacing:-23.458752px;}
.ws3{word-spacing:-23.418720px;}
.ws5{word-spacing:-23.390640px;}
.ws7f{word-spacing:-23.316480px;}
.ws7{word-spacing:-22.002960px;}
.ws9{word-spacing:-21.905304px;}
.ws8{word-spacing:-21.641760px;}
.ws41{word-spacing:-20.016000px;}
.ws43{word-spacing:-18.414720px;}
.ws30{word-spacing:-17.654112px;}
.ws32{word-spacing:-17.614080px;}
.ws90{word-spacing:-17.530992px;}
.ws5d{word-spacing:-17.496000px;}
.ws87{word-spacing:-16.973280px;}
.ws86{word-spacing:-16.666560px;}
.ws36{word-spacing:-16.613280px;}
.ws85{word-spacing:-16.560000px;}
.ws24{word-spacing:-16.506480px;}
.ws83{word-spacing:-16.306680px;}
.ws6{word-spacing:-16.272000px;}
.ws5e{word-spacing:-16.096320px;}
.ws84{word-spacing:-15.785280px;}
.wse{word-spacing:-15.264000px;}
.ws27{word-spacing:-15.188232px;}
.ws26{word-spacing:-15.052032px;}
.wsd{word-spacing:-15.012000px;}
.ws6c{word-spacing:-13.860864px;}
.ws6a{word-spacing:-13.824000px;}
.ws5a{word-spacing:-13.122000px;}
.ws69{word-spacing:-12.349440px;}
.ws2f{word-spacing:-11.430480px;}
.ws7c{word-spacing:-4.364064px;}
.ws4f{word-spacing:-2.289600px;}
.ws89{word-spacing:-1.745280px;}
.ws9b{word-spacing:-1.440000px;}
.ws6b{word-spacing:-1.260000px;}
.ws4b{word-spacing:-1.218240px;}
.wsf{word-spacing:-0.893376px;}
.ws11{word-spacing:-0.792000px;}
.ws31{word-spacing:-0.771840px;}
.ws88{word-spacing:-0.745920px;}
.ws1b{word-spacing:-0.622080px;}
.ws10{word-spacing:-0.600000px;}
.ws4a{word-spacing:-0.537120px;}
.ws51{word-spacing:-0.398880px;}
.ws56{word-spacing:-0.360000px;}
.ws47{word-spacing:-0.342240px;}
.ws3d{word-spacing:-0.271680px;}
.ws35{word-spacing:-0.252000px;}
.ws18{word-spacing:-0.204000px;}
.ws52{word-spacing:-0.184320px;}
.ws1d{word-spacing:-0.180000px;}
.ws3c{word-spacing:-0.084000px;}
.ws37{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws3a{word-spacing:0.048000px;}
.ws19{word-spacing:0.108000px;}
.ws45{word-spacing:0.110160px;}
.ws3e{word-spacing:0.166320px;}
.ws49{word-spacing:0.188400px;}
.ws20{word-spacing:0.216000px;}
.ws16{word-spacing:0.252000px;}
.ws13{word-spacing:0.264000px;}
.ws15{word-spacing:0.324000px;}
.ws42{word-spacing:0.432000px;}
.ws3f{word-spacing:0.682560px;}
.ws23{word-spacing:0.696000px;}
.ws1f{word-spacing:0.768000px;}
.ws39{word-spacing:0.775272px;}
.ws1c{word-spacing:0.847368px;}
.ws22{word-spacing:0.864000px;}
.ws46{word-spacing:0.942480px;}
.ws7a{word-spacing:0.960000px;}
.ws1e{word-spacing:1.008000px;}
.ws17{word-spacing:1.044000px;}
.ws38{word-spacing:1.159056px;}
.ws3b{word-spacing:1.260000px;}
.ws77{word-spacing:1.512000px;}
.ws50{word-spacing:1.542240px;}
.ws44{word-spacing:1.572000px;}
.ws4e{word-spacing:1.741248px;}
.ws4d{word-spacing:1.902960px;}
.ws4c{word-spacing:2.309520px;}
.ws21{word-spacing:2.880000px;}
.ws8b{word-spacing:90.348000px;}
.ws55{word-spacing:90.960000px;}
.ws8c{word-spacing:115.428000px;}
.ws58{word-spacing:115.848000px;}
.ws57{word-spacing:121.422000px;}
.ws8d{word-spacing:133.032000px;}
.ws59{word-spacing:133.512000px;}
.ws8f{word-spacing:135.720000px;}
.ws5c{word-spacing:136.320000px;}
.ws5b{word-spacing:174.816000px;}
.ws8e{word-spacing:174.936000px;}
.ws9a{word-spacing:209.195760px;}
.ws67{word-spacing:209.915760px;}
.ws70{word-spacing:217.731360px;}
.ws6e{word-spacing:237.171360px;}
.ws68{word-spacing:238.232640px;}
.ws99{word-spacing:241.561680px;}
.ws66{word-spacing:242.461680px;}
.ws98{word-spacing:243.755760px;}
.ws65{word-spacing:244.175760px;}
.ws95{word-spacing:250.550976px;}
.ws92{word-spacing:250.671360px;}
.ws60{word-spacing:251.690976px;}
.ws62{word-spacing:251.811360px;}
.ws94{word-spacing:271.955424px;}
.ws91{word-spacing:272.072640px;}
.ws5f{word-spacing:272.375424px;}
.ws61{word-spacing:272.492640px;}
.ws96{word-spacing:295.650240px;}
.ws71{word-spacing:296.031360px;}
.ws9d{word-spacing:296.151360px;}
.ws9c{word-spacing:296.214240px;}
.ws6d{word-spacing:296.754240px;}
.ws63{word-spacing:297.054240px;}
.ws9e{word-spacing:335.736000px;}
.ws72{word-spacing:336.336000px;}
.wsb{word-spacing:377.326800px;}
.ws74{word-spacing:643.500000px;}
.ws73{word-spacing:643.620000px;}
.ws75{word-spacing:643.680000px;}
.ws2a{word-spacing:675.498480px;}
.ws33{word-spacing:676.073280px;}
.ws29{word-spacing:676.097280px;}
.ws28{word-spacing:676.121280px;}
.ws2b{word-spacing:676.217280px;}
.ws34{word-spacing:676.277280px;}
.ws76{word-spacing:706.298712px;}
.ws78{word-spacing:706.358712px;}
.ws97{word-spacing:1177.374000px;}
.ws64{word-spacing:1178.838000px;}
.ws6f{word-spacing:1198.998000px;}
._11{margin-left:-66.239520px;}
._37{margin-left:-20.736000px;}
._34{margin-left:-15.368880px;}
._f{margin-left:-10.957680px;}
._19{margin-left:-9.396000px;}
._d{margin-left:-7.992000px;}
._8{margin-left:-6.318000px;}
._b{margin-left:-5.108400px;}
._4{margin-left:-3.812400px;}
._5{margin-left:-2.685840px;}
._0{margin-left:-1.296000px;}
._2{width:1.436400px;}
._7{width:3.092640px;}
._13{width:4.637952px;}
._39{width:6.727680px;}
._3a{width:7.806960px;}
._12{width:12.696288px;}
._20{width:16.128000px;}
._17{width:18.123600px;}
._18{width:20.350320px;}
._a{width:21.806160px;}
._1a{width:26.613360px;}
._3{width:27.696480px;}
._15{width:28.944000px;}
._c{width:31.980000px;}
._e{width:33.750000px;}
._35{width:36.731040px;}
._14{width:47.854320px;}
._10{width:50.416320px;}
._1{width:52.116000px;}
._36{width:86.328000px;}
._38{width:110.436960px;}
._3b{width:112.374720px;}
._1b{width:113.514720px;}
._6{width:143.310960px;}
._9{width:144.747360px;}
._25{width:156.048000px;}
._24{width:158.310000px;}
._23{width:171.330000px;}
._21{width:183.624000px;}
._3e{width:187.422000px;}
._22{width:188.982000px;}
._29{width:223.508880px;}
._3f{width:224.717280px;}
._41{width:242.789040px;}
._2f{width:244.851120px;}
._3c{width:261.096000px;}
._1c{width:263.232000px;}
._2d{width:264.244320px;}
._1d{width:271.656000px;}
._30{width:273.531120px;}
._28{width:282.037200px;}
._2b{width:283.864320px;}
._2c{width:293.020800px;}
._2e{width:301.912800px;}
._33{width:318.340800px;}
._43{width:319.360800px;}
._26{width:320.837280px;}
._40{width:348.913440px;}
._2a{width:350.353440px;}
._31{width:369.280800px;}
._3d{width:374.052000px;}
._1e{width:375.732000px;}
._32{width:376.791120px;}
._42{width:377.811120px;}
._27{width:388.817280px;}
._16{width:631.755840px;}
._1f{width:660.360000px;}
.fc16{color:rgb(137,94,0);}
.fc15{color:rgb(202,0,93);}
.fc13{color:rgb(255,182,18);}
.fc12{color:rgb(1,123,198);}
.fc10{color:rgb(56,135,13);}
.fcf{color:rgb(89,89,89);}
.fce{color:rgb(57,135,12);}
.fc14{color:rgb(142,201,231);}
.fc11{color:rgb(3,78,162);}
.fc0{color:rgb(5,56,31);}
.fcd{color:rgb(38,38,38);}
.fc1{color:rgb(112,207,77);}
.fc8{color:rgb(126,175,63);}
.fc7{color:rgb(217,233,195);}
.fc3{color:rgb(78,168,45);}
.fc4{color:rgb(255,255,255);}
.fc9{color:rgb(6,29,30);}
.fc6{color:rgb(166,166,166);}
.fca{color:rgb(102,102,102);}
.fcc{color:rgb(0,0,0);}
.fc17{color:rgb(66,66,66);}
.fc2{color:rgb(183,214,143);}
.fc5{color:transparent;}
.fcb{color:rgb(63,165,53);}
.fs1a{font-size:41.760000px;}
.fs19{font-size:41.904000px;}
.fs11{font-size:48.240000px;}
.fs26{font-size:48.384000px;}
.fse{font-size:54.000000px;}
.fsd{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs36{font-size:59.904000px;}
.fs9{font-size:63.360000px;}
.fsa{font-size:63.504000px;}
.fs1c{font-size:66.240000px;}
.fs2d{font-size:66.384000px;}
.fsc{font-size:72.000000px;}
.fsf{font-size:72.144000px;}
.fs18{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fsb{font-size:84.384000px;}
.fs28{font-size:90.000000px;}
.fs29{font-size:90.144000px;}
.fs2{font-size:95.760000px;}
.fs12{font-size:95.904000px;}
.fs21{font-size:98.640000px;}
.fs25{font-size:98.784000px;}
.fs5{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs34{font-size:110.880000px;}
.fs20{font-size:112.320000px;}
.fs24{font-size:113.040000px;}
.fs35{font-size:113.760000px;}
.fs27{font-size:113.904000px;}
.fs2e{font-size:115.200000px;}
.fs2f{font-size:115.344000px;}
.fs1e{font-size:120.240000px;}
.fs1f{font-size:120.384000px;}
.fs2c{font-size:126.000000px;}
.fs31{font-size:134.640000px;}
.fs32{font-size:134.784000px;}
.fs2b{font-size:144.000000px;}
.fs2a{font-size:144.144000px;}
.fs14{font-size:149.760000px;}
.fs15{font-size:149.904000px;}
.fs1b{font-size:167.760000px;}
.fs1d{font-size:167.904000px;}
.fs23{font-size:169.200000px;}
.fs10{font-size:174.240000px;}
.fs4{font-size:192.240000px;}
.fs30{font-size:192.384000px;}
.fs0{font-size:216.000000px;}
.fs1{font-size:216.144000px;}
.fs8{font-size:239.760000px;}
.fs33{font-size:255.024000px;}
.fs22{font-size:256.464000px;}
.fs16{font-size:257.760000px;}
.fs17{font-size:257.904000px;}
.fs13{font-size:264.384000px;}
.y9a{bottom:-209.550000px;}
.y99{bottom:-190.620000px;}
.y98{bottom:-171.720000px;}
.y0{bottom:0.000000px;}
.y148{bottom:3.420000px;}
.y168{bottom:5.220000px;}
.y97{bottom:5.904000px;}
.ya6{bottom:8.928000px;}
.y72{bottom:10.296000px;}
.y11a{bottom:10.656000px;}
.y139{bottom:11.232000px;}
.y1c4{bottom:13.176000px;}
.y188{bottom:13.392000px;}
.y7f{bottom:18.432000px;}
.y96{bottom:18.684000px;}
.y9d{bottom:20.016000px;}
.y68{bottom:20.808000px;}
.y158{bottom:23.760000px;}
.y137{bottom:27.180000px;}
.y1c{bottom:30.996000px;}
.y1c0{bottom:31.032000px;}
.y1c3{bottom:31.176000px;}
.y8{bottom:31.932000px;}
.y170{bottom:32.220000px;}
.y9c{bottom:32.616000px;}
.y92{bottom:33.300000px;}
.y134{bottom:36.468000px;}
.yf3{bottom:39.060000px;}
.y133{bottom:39.204000px;}
.y118{bottom:45.612000px;}
.y136{bottom:46.980000px;}
.yd6{bottom:50.220000px;}
.y52{bottom:58.644000px;}
.y11d{bottom:60.660000px;}
.y1bf{bottom:66.564000px;}
.y12b{bottom:67.320000px;}
.y173{bottom:74.484000px;}
.yf2{bottom:74.808000px;}
.y86{bottom:78.696000px;}
.y1b{bottom:79.956000px;}
.y11c{bottom:80.316000px;}
.y14b{bottom:81.612000px;}
.y51{bottom:87.444000px;}
.y18a{bottom:88.524000px;}
.y10a{bottom:98.028000px;}
.y1a{bottom:98.856000px;}
.y11b{bottom:100.116000px;}
.yc9{bottom:100.800000px;}
.y15b{bottom:102.024000px;}
.y145{bottom:108.180000px;}
.y172{bottom:110.484000px;}
.y85{bottom:111.096000px;}
.y2e{bottom:111.312000px;}
.yb3{bottom:113.724000px;}
.y149{bottom:114.192000px;}
.y13e{bottom:114.225000px;}
.y159{bottom:114.264000px;}
.y146{bottom:114.270000px;}
.y169{bottom:114.300000px;}
.y143{bottom:114.330000px;}
.y161{bottom:114.375000px;}
.y12a{bottom:115.956000px;}
.y14a{bottom:117.612000px;}
.y19{bottom:117.756000px;}
.yb2{bottom:121.284000px;}
.yf1{bottom:121.716000px;}
.y3e{bottom:122.688000px;}
.y164{bottom:124.020000px;}
.y199{bottom:124.164000px;}
.y155{bottom:128.520000px;}
.y13f{bottom:129.420000px;}
.y1bb{bottom:132.480000px;}
.yc8{bottom:133.740000px;}
.y2d{bottom:133.992000px;}
.ycf{bottom:134.100000px;}
.y8f{bottom:134.640000px;}
.y18{bottom:136.656000px;}
.y109{bottom:136.908000px;}
.yb6{bottom:137.484000px;}
.y15a{bottom:138.024000px;}
.yed{bottom:138.456000px;}
.yb1{bottom:140.184000px;}
.y84{bottom:143.496000px;}
.y171{bottom:146.484000px;}
.y1ba{bottom:148.680000px;}
.yc0{bottom:149.868000px;}
.y16c{bottom:151.020000px;}
.y189{bottom:151.095000px;}
.y3d{bottom:151.485000px;}
.y1b4{bottom:153.000000px;}
.yec{bottom:154.650000px;}
.y1be{bottom:154.830000px;}
.y103{bottom:155.130000px;}
.y7b{bottom:155.550000px;}
.y198{bottom:156.570000px;}
.ye6{bottom:158.970000px;}
.yf0{bottom:161.925000px;}
.y8e{bottom:162.720000px;}
.y129{bottom:164.550000px;}
.y1b9{bottom:164.880000px;}
.y1b6{bottom:165.420000px;}
.y167{bottom:166.320000px;}
.yce{bottom:166.680000px;}
.y142{bottom:168.480000px;}
.yeb{bottom:170.850000px;}
.ye8{bottom:171.390000px;}
.y2c{bottom:171.615000px;}
.y14f{bottom:172.260000px;}
.y1b3{bottom:173.010000px;}
.y108{bottom:175.830000px;}
.ye5{bottom:178.950000px;}
.y13{bottom:179.430000px;}
.y1b8{bottom:181.110000px;}
.ybf{bottom:185.910000px;}
.yea{bottom:187.050000px;}
.y102{bottom:187.530000px;}
.y7a{bottom:187.950000px;}
.y8d{bottom:190.620000px;}
.y35{bottom:192.675000px;}
.y16f{bottom:193.290000px;}
.y1bd{bottom:195.990000px;}
.y1b7{bottom:197.310000px;}
.y38{bottom:199.005000px;}
.ycd{bottom:200.340000px;}
.yef{bottom:202.110000px;}
.y166{bottom:202.350000px;}
.ye9{bottom:203.250000px;}
.y7{bottom:203.430000px;}
.y71{bottom:205.530000px;}
.y157{bottom:206.850000px;}
.y2b{bottom:209.415000px;}
.y12{bottom:210.930000px;}
.y93{bottom:211.140000px;}
.y151{bottom:211.320000px;}
.y128{bottom:213.150000px;}
.y34{bottom:214.305000px;}
.yc7{bottom:215.310000px;}
.y6c{bottom:215.490000px;}
.y8c{bottom:218.520000px;}
.y37{bottom:220.605000px;}
.ybe{bottom:221.910000px;}
.y141{bottom:222.195000px;}
.y150{bottom:222.225000px;}
.y15f{bottom:222.270000px;}
.y154{bottom:222.330000px;}
.y147{bottom:222.450000px;}
.y16e{bottom:229.320000px;}
.y33{bottom:235.905000px;}
.y1bc{bottom:237.090000px;}
.y165{bottom:238.350000px;}
.y15d{bottom:239.760000px;}
.yf5{bottom:240.660000px;}
.y197{bottom:240.840000px;}
.y36{bottom:242.250000px;}
.yee{bottom:242.310000px;}
.y156{bottom:242.850000px;}
.y6{bottom:244.290000px;}
.y5d{bottom:244.365000px;}
.y19f{bottom:244.830000px;}
.yc6{bottom:246.270000px;}
.y8b{bottom:246.450000px;}
.y2a{bottom:247.065000px;}
.y127{bottom:255.270000px;}
.y32{bottom:257.505000px;}
.ybd{bottom:257.910000px;}
.y140{bottom:258.225000px;}
.y15e{bottom:258.270000px;}
.y153{bottom:258.330000px;}
.y3b{bottom:262.110000px;}
.y79{bottom:263.595000px;}
.y16d{bottom:265.320000px;}
.y5c{bottom:265.965000px;}
.y1b5{bottom:269.205000px;}
.y196{bottom:273.240000px;}
.y13d{bottom:273.420000px;}
.ye7{bottom:273.525000px;}
.y8a{bottom:274.530000px;}
.y160{bottom:278.820000px;}
.y31{bottom:279.105000px;}
.y191{bottom:281.520000px;}
.y144{bottom:282.810000px;}
.y1a4{bottom:283.320000px;}
.y29{bottom:283.965000px;}
.y187{bottom:284.940000px;}
.y5{bottom:285.150000px;}
.yd7{bottom:286.920000px;}
.y5b{bottom:287.565000px;}
.y126{bottom:287.715000px;}
.y101{bottom:289.695000px;}
.y11{bottom:290.340000px;}
.y3a{bottom:290.910000px;}
.ybc{bottom:293.910000px;}
.y17e{bottom:294.585000px;}
.y78{bottom:295.995000px;}
.y30{bottom:300.705000px;}
.y1a3{bottom:303.660000px;}
.yd5{bottom:304.560000px;}
.y5a{bottom:309.165000px;}
.y19d{bottom:310.470000px;}
.y1b2{bottom:314.355000px;}
.y14e{bottom:316.260000px;}
.ye4{bottom:318.315000px;}
.y28{bottom:319.245000px;}
.y39{bottom:319.710000px;}
.y163{bottom:321.150000px;}
.y10{bottom:321.840000px;}
.y2f{bottom:322.305000px;}
.y50{bottom:323.175000px;}
.y152{bottom:325.650000px;}
.y77{bottom:328.395000px;}
.y19c{bottom:328.470000px;}
.y59{bottom:330.765000px;}
.y186{bottom:332.280000px;}
.y4{bottom:332.970000px;}
.yfd{bottom:334.050000px;}
.y16{bottom:336.315000px;}
.ybb{bottom:337.470000px;}
.y66{bottom:343.800000px;}
.y19b{bottom:346.470000px;}
.y17d{bottom:351.465000px;}
.y4f{bottom:351.975000px;}
.y58{bottom:352.365000px;}
.y27{bottom:356.865000px;}
.y162{bottom:357.195000px;}
.y6b{bottom:360.210000px;}
.y76{bottom:360.795000px;}
.y1b1{bottom:363.495000px;}
.y19a{bottom:364.470000px;}
.yfc{bottom:366.450000px;}
.ye3{bottom:366.630000px;}
.y15{bottom:371.955000px;}
.y65{bottom:372.600000px;}
.y195{bottom:372.675000px;}
.y125{bottom:373.065000px;}
.yba{bottom:373.500000px;}
.y57{bottom:373.965000px;}
.y107{bottom:376.815000px;}
.y70{bottom:377.535000px;}
.yd2{bottom:379.590000px;}
.y185{bottom:379.620000px;}
.y4e{bottom:380.775000px;}
.y190{bottom:382.320000px;}
.y67{bottom:382.755000px;}
.y15c{bottom:383.760000px;}
.y83{bottom:384.630000px;}
.y26{bottom:385.305000px;}
.yb5{bottom:387.900000px;}
.yb0{bottom:389.130000px;}
.y17c{bottom:390.390000px;}
.y3{bottom:391.290000px;}
.y75{bottom:393.195000px;}
.yf{bottom:394.920000px;}
.y56{bottom:395.565000px;}
.y1b0{bottom:395.610000px;}
.ycc{bottom:397.230000px;}
.ye2{bottom:397.830000px;}
.y117{bottom:398.775000px;}
.yfb{bottom:398.850000px;}
.y89{bottom:404.535000px;}
.y25{bottom:407.490000px;}
.y4d{bottom:409.575000px;}
.y131{bottom:410.430000px;}
.y1ac{bottom:410.910000px;}
.yb4{bottom:411.660000px;}
.yaf{bottom:412.890000px;}
.y45{bottom:413.670000px;}
.yae{bottom:416.880000px;}
.y82{bottom:417.030000px;}
.y55{bottom:417.210000px;}
.y192{bottom:417.780000px;}
.y100{bottom:421.050000px;}
.y124{bottom:421.665000px;}
.ye{bottom:426.450000px;}
.y6f{bottom:427.215000px;}
.y1af{bottom:427.680000px;}
.y178{bottom:427.830000px;}
.y4a{bottom:427.935000px;}
.y184{bottom:428.220000px;}
.y17{bottom:428.505000px;}
.ycb{bottom:428.910000px;}
.ye1{bottom:429.015000px;}
.y14{bottom:430.275000px;}
.y24{bottom:431.250000px;}
.y116{bottom:431.715000px;}
.y18f{bottom:433.290000px;}
.y1aa{bottom:433.875000px;}
.y106{bottom:435.135000px;}
.y44{bottom:435.270000px;}
.ydd{bottom:436.710000px;}
.y88{bottom:436.965000px;}
.yad{bottom:437.580000px;}
.y54{bottom:438.810000px;}
.y17b{bottom:447.270000px;}
.y130{bottom:449.310000px;}
.y81{bottom:449.460000px;}
.y49{bottom:449.535000px;}
.y2{bottom:449.640000px;}
.y9b{bottom:450.825000px;}
.yb9{bottom:452.880000px;}
.y1a9{bottom:453.885000px;}
.ydc{bottom:456.690000px;}
.y43{bottom:456.870000px;}
.yd3{bottom:457.275000px;}
.y74{bottom:458.025000px;}
.y1ae{bottom:460.365000px;}
.y53{bottom:460.410000px;}
.y23{bottom:461.490000px;}
.yca{bottom:461.850000px;}
.ye0{bottom:462.390000px;}
.yfa{bottom:463.680000px;}
.y115{bottom:464.655000px;}
.yff{bottom:465.150000px;}
.y87{bottom:469.365000px;}
.y123{bottom:470.265000px;}
.y48{bottom:471.135000px;}
.y42{bottom:478.470000px;}
.y177{bottom:481.650000px;}
.y80{bottom:481.860000px;}
.ya3{bottom:483.120000px;}
.y105{bottom:483.660000px;}
.y183{bottom:485.130000px;}
.yb8{bottom:488.880000px;}
.y47{bottom:492.765000px;}
.y194{bottom:493.230000px;}
.yfe{bottom:494.310000px;}
.yf9{bottom:496.080000px;}
.y114{bottom:497.775000px;}
.y22{bottom:498.390000px;}
.yc5{bottom:499.320000px;}
.y41{bottom:500.070000px;}
.y1ad{bottom:501.915000px;}
.yaa{bottom:502.230000px;}
.y64{bottom:503.850000px;}
.ydf{bottom:504.075000px;}
.y17a{bottom:504.150000px;}
.ya2{bottom:504.180000px;}
.y6a{bottom:504.900000px;}
.y19e{bottom:505.080000px;}
.y16b{bottom:505.470000px;}
.y12f{bottom:506.190000px;}
.y1{bottom:507.960000px;}
.yd{bottom:513.390000px;}
.y46{bottom:514.365000px;}
.y104{bottom:516.060000px;}
.y122{bottom:518.910000px;}
.y40{bottom:521.670000px;}
.ya1{bottom:525.270000px;}
.y21{bottom:525.390000px;}
.y113{bottom:530.745000px;}
.y63{bottom:532.695000px;}
.y18e{bottom:533.550000px;}
.ya9{bottom:534.630000px;}
.yb7{bottom:535.170000px;}
.y1ab{bottom:536.040000px;}
.y176{bottom:537.270000px;}
.yde{bottom:537.660000px;}
.y3f{bottom:543.315000px;}
.yf8{bottom:543.420000px;}
.y13c{bottom:544.395000px;}
.yc{bottom:544.890000px;}
.y12e{bottom:545.115000px;}
.y20{bottom:552.930000px;}
.y60{bottom:561.210000px;}
.y16a{bottom:562.395000px;}
.y112{bottom:563.685000px;}
.y5e{bottom:563.835000px;}
.y1a2{bottom:565.815000px;}
.yd4{bottom:566.715000px;}
.ya8{bottom:567.030000px;}
.ya0{bottom:567.210000px;}
.y62{bottom:567.255000px;}
.y121{bottom:567.510000px;}
.y1f{bottom:575.640000px;}
.yf7{bottom:575.820000px;}
.y7e{bottom:579.750000px;}
.y175{bottom:582.660000px;}
.y1a8{bottom:588.135000px;}
.y10d{bottom:588.450000px;}
.ydb{bottom:589.425000px;}
.y5f{bottom:590.010000px;}
.y6e{bottom:595.335000px;}
.y61{bottom:596.085000px;}
.y1a7{bottom:596.235000px;}
.y111{bottom:596.805000px;}
.yda{bottom:597.525000px;}
.y13b{bottom:601.275000px;}
.y12d{bottom:601.995000px;}
.y182{bottom:605.265000px;}
.y1a1{bottom:608.550000px;}
.y9f{bottom:609.150000px;}
.yd1{bottom:609.990000px;}
.y193{bottom:612.645000px;}
.y1e{bottom:613.440000px;}
.y120{bottom:616.110000px;}
.y180{bottom:620.205000px;}
.yb{bottom:624.495000px;}
.y10b{bottom:630.870000px;}
.y7d{bottom:631.590000px;}
.y18d{bottom:634.395000px;}
.y4c{bottom:637.305000px;}
.y135{bottom:638.715000px;}
.y10f{bottom:639.975000px;}
.y69{bottom:645.915000px;}
.y174{bottom:646.020000px;}
.y1d{bottom:648.000000px;}
.y95{bottom:649.830000px;}
.y132{bottom:654.810000px;}
.ya{bottom:655.995000px;}
.y181{bottom:657.105000px;}
.y9e{bottom:662.865000px;}
.y1a0{bottom:663.480000px;}
.ya5{bottom:663.660000px;}
.y11f{bottom:664.710000px;}
.y6d{bottom:664.995000px;}
.y1a6{bottom:665.895000px;}
.y17f{bottom:666.285000px;}
.yd9{bottom:666.360000px;}
.yd0{bottom:666.540000px;}
.y4b{bottom:669.705000px;}
.y12c{bottom:670.680000px;}
.y90{bottom:671.115000px;}
.y73{bottom:672.330000px;}
.yc4{bottom:672.450000px;}
.y14d{bottom:675.030000px;}
.y1a5{bottom:677.415000px;}
.y10e{bottom:677.775000px;}
.yd8{bottom:677.880000px;}
.y7c{bottom:683.430000px;}
.y18c{bottom:685.335000px;}
.y110{bottom:693.360000px;}
.yac{bottom:695.625000px;}
.yc2{bottom:696.165000px;}
.ya4{bottom:696.240000px;}
.yc3{bottom:699.810000px;}
.y119{bottom:699.945000px;}
.ya7{bottom:700.305000px;}
.y3c{bottom:700.665000px;}
.y94{bottom:701.715000px;}
.y9{bottom:701.745000px;}
.yf6{bottom:702.210000px;}
.y1c2{bottom:702.825000px;}
.y11e{bottom:713.340000px;}
.y13a{bottom:721.650000px;}
.yab{bottom:722.985000px;}
.y14c{bottom:726.870000px;}
.yc1{bottom:727.665000px;}
.y18b{bottom:735.765000px;}
.y10c{bottom:737.385000px;}
.y91{bottom:739.950000px;}
.y1c1{bottom:742.320000px;}
.y179{bottom:742.680000px;}
.yf4{bottom:743.940000px;}
.y138{bottom:762.660000px;}
.h27{height:30.810234px;}
.h26{height:30.916477px;}
.h40{height:41.775840px;}
.h44{height:43.935840px;}
.h4a{height:44.079840px;}
.h47{height:44.115840px;}
.h4{height:44.936719px;}
.h43{height:45.495000px;}
.h62{height:45.695391px;}
.h45{height:46.764000px;}
.h46{height:46.888704px;}
.h4b{height:47.535840px;}
.h12{height:48.410156px;}
.h59{height:48.448125px;}
.h11{height:48.539250px;}
.hc{height:48.680719px;}
.h5c{height:50.650312px;}
.h5d{height:50.760422px;}
.h7e{height:51.677227px;}
.h7f{height:51.801750px;}
.h2b{height:53.121094px;}
.h2a{height:53.573906px;}
.h72{height:55.054688px;}
.h3f{height:55.807200px;}
.ha{height:56.801250px;}
.hb{height:56.930344px;}
.h3c{height:60.660000px;}
.h7b{height:60.781320px;}
.h7{height:62.151680px;}
.hd{height:63.344531px;}
.h13{height:63.452813px;}
.h10{height:64.546875px;}
.h7d{height:67.640160px;}
.h28{height:69.710625px;}
.h42{height:70.340160px;}
.h49{height:71.095680px;}
.h48{height:71.215680px;}
.h14{height:71.613281px;}
.h15{height:71.756508px;}
.h30{height:72.007031px;}
.h25{height:72.470625px;}
.h5b{height:73.222734px;}
.hf{height:75.519844px;}
.he{height:75.648938px;}
.h3d{height:77.895000px;}
.h22{height:79.681641px;}
.h23{height:79.787883px;}
.h4e{height:80.812687px;}
.h6{height:81.210938px;}
.h8{height:81.319219px;}
.h39{height:82.188288px;}
.h5a{height:82.582031px;}
.h5e{height:82.692141px;}
.h34{height:82.928160px;}
.h32{height:83.052864px;}
.h4d{height:83.263594px;}
.h35{height:85.422240px;}
.h3{height:85.847344px;}
.h64{height:87.802313px;}
.h53{height:91.354219px;}
.h61{height:91.941328px;}
.h67{height:92.051438px;}
.h79{height:93.416400px;}
.h75{height:93.528000px;}
.h7c{height:94.648320px;}
.h41{height:94.768128px;}
.h1a{height:96.820312px;}
.h24{height:96.949406px;}
.h76{height:97.269120px;}
.h7a{height:97.892640px;}
.h16{height:98.051133px;}
.h19{height:98.198578px;}
.h3b{height:100.980000px;}
.h31{height:107.419922px;}
.h2e{height:107.793281px;}
.h2f{height:107.922375px;}
.h52{height:110.109375px;}
.h51{height:110.219484px;}
.h3e{height:110.295000px;}
.h18{height:110.583984px;}
.h33{height:111.716719px;}
.h3a{height:112.432852px;}
.h1c{height:112.612500px;}
.h1d{height:112.720781px;}
.h38{height:115.744570px;}
.h55{height:119.594180px;}
.h58{height:119.737406px;}
.h56{height:125.323242px;}
.h29{height:126.147656px;}
.h2d{height:126.255938px;}
.h5f{height:129.093750px;}
.h60{height:129.222844px;}
.h17{height:131.020313px;}
.h74{height:134.994375px;}
.h73{height:135.110250px;}
.h78{height:141.337800px;}
.h70{height:143.226562px;}
.h71{height:143.369789px;}
.h5{height:144.555469px;}
.h63{height:146.996016px;}
.h65{height:147.106125px;}
.h2c{height:150.647344px;}
.h1{height:162.421875px;}
.h2{height:162.530156px;}
.h4f{height:165.164062px;}
.h50{height:165.274172px;}
.h6f{height:166.858945px;}
.h4c{height:167.002172px;}
.h37{height:168.291211px;}
.h20{height:172.340156px;}
.h9{height:180.288281px;}
.h1e{height:193.823437px;}
.h1f{height:193.931719px;}
.h1b{height:198.804375px;}
.h57{height:214.839844px;}
.h77{height:214.857720px;}
.h54{height:214.983070px;}
.h66{height:252.180000px;}
.h36{height:255.086508px;}
.h69{height:363.600000px;}
.h21{height:371.060156px;}
.h6b{height:383.940000px;}
.h6a{height:488.700000px;}
.h6e{height:500.400000px;}
.h68{height:504.180000px;}
.h6c{height:592.200000px;}
.h6d{height:619.200000px;}
.h0{height:810.000000px;}
.w2{width:414.180000px;}
.w3{width:593.280000px;}
.w4{width:593.460000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3a{left:11.490000px;}
.x2d{left:12.996000px;}
.x5f{left:19.619979px;}
.xa3{left:28.403979px;}
.x8b{left:41.291979px;}
.xab{left:43.019979px;}
.xad{left:44.171979px;}
.x91{left:49.391979px;}
.xa6{left:51.659979px;}
.xa7{left:52.991979px;}
.xa4{left:54.683979px;}
.xbe{left:57.959979px;}
.xb6{left:59.543979px;}
.x90{left:61.271979px;}
.x71{left:64.331979px;}
.xa9{left:67.535979px;}
.x11{left:70.451979px;}
.x14{left:72.467979px;}
.x96{left:78.659979px;}
.x4{left:81.683979px;}
.xb5{left:85.823979px;}
.xb4{left:88.559979px;}
.xa8{left:90.431979px;}
.x8{left:96.299979px;}
.x6c{left:97.667979px;}
.x9{left:99.899979px;}
.x2c{left:102.275979px;}
.x8a{left:104.255979px;}
.xb{left:106.091979px;}
.x99{left:107.315979px;}
.xc{left:111.311979px;}
.x63{left:115.955979px;}
.x1{left:117.647979px;}
.x23{left:123.407979px;}
.x2{left:126.647979px;}
.x2b{left:130.895979px;}
.xbd{left:135.179979px;}
.x4d{left:138.599979px;}
.x44{left:144.431979px;}
.x6d{left:146.807979px;}
.x4e{left:148.679979px;}
.x50{left:151.484979px;}
.xb8{left:153.794979px;}
.x3e{left:156.449979px;}
.x25{left:158.324979px;}
.xd{left:160.094979px;}
.x89{left:164.804979px;}
.x24{left:166.244979px;}
.x30{left:169.229979px;}
.x67{left:176.429979px;}
.x5{left:180.689979px;}
.x51{left:185.144979px;}
.xe{left:187.094979px;}
.x2e{left:188.534979px;}
.x1e{left:195.554979px;}
.x1f{left:198.569979px;}
.x86{left:201.989979px;}
.x62{left:203.294979px;}
.xb1{left:208.620000px;}
.x82{left:210.239979px;}
.x5d{left:212.609979px;}
.x81{left:217.694979px;}
.x6{left:226.079979px;}
.x7{left:228.524979px;}
.x97{left:234.719979px;}
.x95{left:237.059979px;}
.x64{left:240.089979px;}
.x68{left:248.759979px;}
.x7d{left:254.084979px;}
.x98{left:256.574979px;}
.x5e{left:262.979979px;}
.x4f{left:278.999979px;}
.x2f{left:292.035000px;}
.x61{left:293.474979px;}
.x27{left:302.324979px;}
.xb3{left:304.379979px;}
.x7e{left:308.084979px;}
.x60{left:309.524979px;}
.xb9{left:311.759979px;}
.xaa{left:313.124979px;}
.xac{left:319.889979px;}
.x66{left:322.049979px;}
.x3c{left:323.460000px;}
.x7f{left:341.924979px;}
.x6e{left:358.349979px;}
.x43{left:377.354979px;}
.x8d{left:394.379979px;}
.x6f{left:419.549979px;}
.x70{left:422.069979px;}
.x5c{left:444.059979px;}
.x16{left:452.369979px;}
.xb0{left:456.509979px;}
.x18{left:457.949979px;}
.x17{left:462.269979px;}
.x72{left:466.739979px;}
.x9c{left:469.649979px;}
.x80{left:476.024979px;}
.x4a{left:485.204979px;}
.x15{left:496.109979px;}
.x22{left:503.744979px;}
.x2a{left:504.824979px;}
.x26{left:506.129979px;}
.x65{left:510.119979px;}
.x3f{left:512.564979px;}
.x32{left:521.744979px;}
.x34{left:523.184979px;}
.x83{left:527.759979px;}
.x4b{left:529.124979px;}
.x31{left:530.564979px;}
.x28{left:531.689979px;}
.x5b{left:532.904979px;}
.x87{left:537.014979px;}
.x88{left:538.304979px;}
.x33{left:551.984979px;}
.x35{left:555.404979px;}
.xa5{left:566.429979px;}
.x9b{left:583.994979px;}
.x45{left:586.364979px;}
.x52{left:590.189979px;}
.x54{left:591.989979px;}
.x53{left:597.389979px;}
.x21{left:598.889979px;}
.x40{left:605.084979px;}
.x36{left:620.924979px;}
.x12{left:628.124979px;}
.x1d{left:637.844979px;}
.x9a{left:641.954979px;}
.xf{left:647.279979px;}
.x4c{left:660.929979px;}
.x13{left:661.964979px;}
.x10{left:680.939979px;}
.xa1{left:683.129979px;}
.xbb{left:720.869979px;}
.x8e{left:721.949979px;}
.x73{left:739.154979px;}
.x6a{left:778.754979px;}
.x69{left:782.174979px;}
.x79{left:783.794979px;}
.x9e{left:785.054979px;}
.x9f{left:786.599979px;}
.x7a{left:793.334979px;}
.xb2{left:801.900000px;}
.xaf{left:804.060000px;}
.xae{left:810.360000px;}
.x75{left:831.854979px;}
.x74{left:841.574979px;}
.x84{left:880.664979px;}
.x85{left:881.849979px;}
.x39{left:898.740000px;}
.x47{left:915.509979px;}
.x38{left:918.509979px;}
.x41{left:929.669979px;}
.x37{left:937.949979px;}
.x48{left:956.189979px;}
.x58{left:964.619979px;}
.x46{left:968.249979px;}
.xa0{left:975.569979px;}
.x6b{left:982.544979px;}
.x92{left:986.549979px;}
.x3b{left:991.769979px;}
.x55{left:993.959979px;}
.x56{left:997.559979px;}
.x59{left:999.179979px;}
.x5a{left:1005.119979px;}
.x57{left:1019.519979px;}
.x3d{left:1031.729979px;}
.x9d{left:1040.609979px;}
.x42{left:1043.609979px;}
.x1c{left:1067.684979px;}
.x19{left:1068.689979px;}
.x8f{left:1070.279979px;}
.xba{left:1074.314979px;}
.x8c{left:1075.469979px;}
.xbc{left:1080.254979px;}
.x49{left:1082.234979px;}
.x76{left:1098.329979px;}
.x1a{left:1102.529979px;}
.x7b{left:1113.269979px;}
.xb7{left:1129.574979px;}
.x93{left:1150.304979px;}
.xa{left:1180.799979px;}
.x78{left:1184.759979px;}
.x7c{left:1198.979979px;}
.x77{left:1204.379979px;}
.x94{left:1256.189979px;}
.xa2{left:1345.139979px;}
.x20{left:1346.324979px;}
.x29{left:1356.479979px;}
.x3{left:1360.619979px;}
.x1b{left:1384.274979px;}
@media print{
.v11{vertical-align:-55.840000pt;}
.va{vertical-align:-54.186667pt;}
.vd{vertical-align:-25.600000pt;}
.v2{vertical-align:-15.360000pt;}
.v10{vertical-align:-12.266667pt;}
.v8{vertical-align:-10.613333pt;}
.v12{vertical-align:-3.584000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.920000pt;}
.v1{vertical-align:3.328000pt;}
.ve{vertical-align:4.992000pt;}
.v13{vertical-align:8.704000pt;}
.vb{vertical-align:25.600000pt;}
.vc{vertical-align:27.520000pt;}
.v7{vertical-align:28.800000pt;}
.vf{vertical-align:33.024000pt;}
.v6{vertical-align:38.400000pt;}
.v4{vertical-align:57.600000pt;}
.v3{vertical-align:176.640000pt;}
.ls5c{letter-spacing:-0.736000pt;}
.ls6f{letter-spacing:-0.348267pt;}
.ls48{letter-spacing:-0.327467pt;}
.ls1a{letter-spacing:-0.326933pt;}
.ls2d{letter-spacing:-0.294400pt;}
.ls49{letter-spacing:-0.288000pt;}
.ls2c{letter-spacing:-0.272533pt;}
.ls59{letter-spacing:-0.270400pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls4e{letter-spacing:-0.234667pt;}
.ls16{letter-spacing:-0.220267pt;}
.ls25{letter-spacing:-0.198933pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.158933pt;}
.ls50{letter-spacing:-0.155200pt;}
.ls14{letter-spacing:-0.144533pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.087467pt;}
.ls4a{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.057067pt;}
.ls41{letter-spacing:-0.048000pt;}
.ls5d{letter-spacing:-0.047360pt;}
.ls4b{letter-spacing:-0.032000pt;}
.ls1d{letter-spacing:-0.030720pt;}
.ls8{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:-0.016640pt;}
.ls43{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.016640pt;}
.ls46{letter-spacing:0.020480pt;}
.ls18{letter-spacing:0.032000pt;}
.ls27{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.046080pt;}
.ls5e{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.097067pt;}
.ls19{letter-spacing:0.121067pt;}
.ls28{letter-spacing:0.128000pt;}
.ls47{letter-spacing:0.143360pt;}
.ls15{letter-spacing:0.156267pt;}
.ls5a{letter-spacing:0.156416pt;}
.ls11{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.205333pt;}
.lsf{letter-spacing:0.224000pt;}
.ls35{letter-spacing:0.230400pt;}
.ls23{letter-spacing:0.231040pt;}
.ls44{letter-spacing:0.249067pt;}
.ls29{letter-spacing:0.271467pt;}
.ls7{letter-spacing:0.303467pt;}
.ls42{letter-spacing:0.304000pt;}
.ls40{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.321067pt;}
.ls21{letter-spacing:0.352000pt;}
.ls64{letter-spacing:0.358400pt;}
.ls24{letter-spacing:0.391040pt;}
.ls2b{letter-spacing:1.007360pt;}
.ls1c{letter-spacing:1.200640pt;}
.ls10{letter-spacing:3.392000pt;}
.ls5b{letter-spacing:6.992640pt;}
.ls2{letter-spacing:20.446720pt;}
.ls55{letter-spacing:50.990592pt;}
.ls54{letter-spacing:51.072000pt;}
.ls5{letter-spacing:55.475200pt;}
.ls6{letter-spacing:55.520000pt;}
.ls58{letter-spacing:65.062912pt;}
.ls57{letter-spacing:65.144320pt;}
.ls53{letter-spacing:78.727168pt;}
.ls52{letter-spacing:78.785280pt;}
.ls2a{letter-spacing:82.912000pt;}
.ls4d{letter-spacing:86.572288pt;}
.ls4c{letter-spacing:86.630400pt;}
.ls22{letter-spacing:86.675200pt;}
.ls20{letter-spacing:86.720000pt;}
.ls56{letter-spacing:86.758400pt;}
.lsa{letter-spacing:97.235200pt;}
.ls9{letter-spacing:97.280000pt;}
.lsb{letter-spacing:97.875200pt;}
.lsc{letter-spacing:97.920000pt;}
.ls45{letter-spacing:106.592000pt;}
.ls30{letter-spacing:221.722027pt;}
.ls33{letter-spacing:221.796267pt;}
.ls62{letter-spacing:260.228693pt;}
.ls60{letter-spacing:260.302933pt;}
.ls2f{letter-spacing:260.388693pt;}
.ls32{letter-spacing:260.462933pt;}
.ls6a{letter-spacing:284.889600pt;}
.ls3b{letter-spacing:285.262933pt;}
.ls63{letter-spacing:292.636160pt;}
.ls6b{letter-spacing:292.742827pt;}
.ls34{letter-spacing:293.563989pt;}
.ls3c{letter-spacing:294.076160pt;}
.ls51{letter-spacing:387.405653pt;}
.ls6c{letter-spacing:773.501653pt;}
.ls65{letter-spacing:773.768320pt;}
.ls36{letter-spacing:775.154987pt;}
.ls68{letter-spacing:775.183573pt;}
.ls3d{letter-spacing:775.217579pt;}
.ls5f{letter-spacing:775.343573pt;}
.ls69{letter-spacing:775.829973pt;}
.ls61{letter-spacing:775.989973pt;}
.ls2e{letter-spacing:776.836907pt;}
.ls39{letter-spacing:776.996907pt;}
.ls31{letter-spacing:777.483307pt;}
.ls6d{letter-spacing:777.508693pt;}
.ls67{letter-spacing:777.543253pt;}
.ls3a{letter-spacing:777.643307pt;}
.ls66{letter-spacing:777.668693pt;}
.ls6e{letter-spacing:778.023253pt;}
.ls38{letter-spacing:779.036587pt;}
.ls37{letter-spacing:779.162027pt;}
.ls3f{letter-spacing:779.196587pt;}
.ls3e{letter-spacing:779.322027pt;}
.ls4f{letter-spacing:3335.175680pt;}
.ws2{word-spacing:-74.880000pt;}
.ws7e{word-spacing:-67.584000pt;}
.wsa{word-spacing:-65.332224pt;}
.ws82{word-spacing:-53.411584pt;}
.ws0{word-spacing:-53.376000pt;}
.wsc{word-spacing:-47.504640pt;}
.ws2c{word-spacing:-47.447573pt;}
.ws9f{word-spacing:-41.142677pt;}
.ws80{word-spacing:-37.666816pt;}
.ws81{word-spacing:-37.621760pt;}
.ws2d{word-spacing:-37.248000pt;}
.ws2e{word-spacing:-37.120000pt;}
.ws7b{word-spacing:-33.792000pt;}
.ws7d{word-spacing:-32.832000pt;}
.ws1a{word-spacing:-26.880000pt;}
.ws14{word-spacing:-26.723584pt;}
.ws12{word-spacing:-26.688000pt;}
.ws25{word-spacing:-26.432000pt;}
.ws79{word-spacing:-24.154880pt;}
.ws8a{word-spacing:-23.950080pt;}
.ws48{word-spacing:-23.696640pt;}
.ws40{word-spacing:-23.663360pt;}
.ws93{word-spacing:-23.662080pt;}
.ws54{word-spacing:-22.708480pt;}
.ws53{word-spacing:-22.151680pt;}
.ws4{word-spacing:-20.852224pt;}
.ws3{word-spacing:-20.816640pt;}
.ws5{word-spacing:-20.791680pt;}
.ws7f{word-spacing:-20.725760pt;}
.ws7{word-spacing:-19.558187pt;}
.ws9{word-spacing:-19.471381pt;}
.ws8{word-spacing:-19.237120pt;}
.ws41{word-spacing:-17.792000pt;}
.ws43{word-spacing:-16.368640pt;}
.ws30{word-spacing:-15.692544pt;}
.ws32{word-spacing:-15.656960pt;}
.ws90{word-spacing:-15.583104pt;}
.ws5d{word-spacing:-15.552000pt;}
.ws87{word-spacing:-15.087360pt;}
.ws86{word-spacing:-14.814720pt;}
.ws36{word-spacing:-14.767360pt;}
.ws85{word-spacing:-14.720000pt;}
.ws24{word-spacing:-14.672427pt;}
.ws83{word-spacing:-14.494827pt;}
.ws6{word-spacing:-14.464000pt;}
.ws5e{word-spacing:-14.307840pt;}
.ws84{word-spacing:-14.031360pt;}
.wse{word-spacing:-13.568000pt;}
.ws27{word-spacing:-13.500651pt;}
.ws26{word-spacing:-13.379584pt;}
.wsd{word-spacing:-13.344000pt;}
.ws6c{word-spacing:-12.320768pt;}
.ws6a{word-spacing:-12.288000pt;}
.ws5a{word-spacing:-11.664000pt;}
.ws69{word-spacing:-10.977280pt;}
.ws2f{word-spacing:-10.160427pt;}
.ws7c{word-spacing:-3.879168pt;}
.ws4f{word-spacing:-2.035200pt;}
.ws89{word-spacing:-1.551360pt;}
.ws9b{word-spacing:-1.280000pt;}
.ws6b{word-spacing:-1.120000pt;}
.ws4b{word-spacing:-1.082880pt;}
.wsf{word-spacing:-0.794112pt;}
.ws11{word-spacing:-0.704000pt;}
.ws31{word-spacing:-0.686080pt;}
.ws88{word-spacing:-0.663040pt;}
.ws1b{word-spacing:-0.552960pt;}
.ws10{word-spacing:-0.533333pt;}
.ws4a{word-spacing:-0.477440pt;}
.ws51{word-spacing:-0.354560pt;}
.ws56{word-spacing:-0.320000pt;}
.ws47{word-spacing:-0.304213pt;}
.ws3d{word-spacing:-0.241493pt;}
.ws35{word-spacing:-0.224000pt;}
.ws18{word-spacing:-0.181333pt;}
.ws52{word-spacing:-0.163840pt;}
.ws1d{word-spacing:-0.160000pt;}
.ws3c{word-spacing:-0.074667pt;}
.ws37{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.042667pt;}
.ws19{word-spacing:0.096000pt;}
.ws45{word-spacing:0.097920pt;}
.ws3e{word-spacing:0.147840pt;}
.ws49{word-spacing:0.167467pt;}
.ws20{word-spacing:0.192000pt;}
.ws16{word-spacing:0.224000pt;}
.ws13{word-spacing:0.234667pt;}
.ws15{word-spacing:0.288000pt;}
.ws42{word-spacing:0.384000pt;}
.ws3f{word-spacing:0.606720pt;}
.ws23{word-spacing:0.618667pt;}
.ws1f{word-spacing:0.682667pt;}
.ws39{word-spacing:0.689131pt;}
.ws1c{word-spacing:0.753216pt;}
.ws22{word-spacing:0.768000pt;}
.ws46{word-spacing:0.837760pt;}
.ws7a{word-spacing:0.853333pt;}
.ws1e{word-spacing:0.896000pt;}
.ws17{word-spacing:0.928000pt;}
.ws38{word-spacing:1.030272pt;}
.ws3b{word-spacing:1.120000pt;}
.ws77{word-spacing:1.344000pt;}
.ws50{word-spacing:1.370880pt;}
.ws44{word-spacing:1.397333pt;}
.ws4e{word-spacing:1.547776pt;}
.ws4d{word-spacing:1.691520pt;}
.ws4c{word-spacing:2.052907pt;}
.ws21{word-spacing:2.560000pt;}
.ws8b{word-spacing:80.309333pt;}
.ws55{word-spacing:80.853333pt;}
.ws8c{word-spacing:102.602667pt;}
.ws58{word-spacing:102.976000pt;}
.ws57{word-spacing:107.930667pt;}
.ws8d{word-spacing:118.250667pt;}
.ws59{word-spacing:118.677333pt;}
.ws8f{word-spacing:120.640000pt;}
.ws5c{word-spacing:121.173333pt;}
.ws5b{word-spacing:155.392000pt;}
.ws8e{word-spacing:155.498667pt;}
.ws9a{word-spacing:185.951787pt;}
.ws67{word-spacing:186.591787pt;}
.ws70{word-spacing:193.538987pt;}
.ws6e{word-spacing:210.818987pt;}
.ws68{word-spacing:211.762347pt;}
.ws99{word-spacing:214.721493pt;}
.ws66{word-spacing:215.521493pt;}
.ws98{word-spacing:216.671787pt;}
.ws65{word-spacing:217.045120pt;}
.ws95{word-spacing:222.711979pt;}
.ws92{word-spacing:222.818987pt;}
.ws60{word-spacing:223.725312pt;}
.ws62{word-spacing:223.832320pt;}
.ws94{word-spacing:241.738155pt;}
.ws91{word-spacing:241.842347pt;}
.ws5f{word-spacing:242.111488pt;}
.ws61{word-spacing:242.215680pt;}
.ws96{word-spacing:262.800213pt;}
.ws71{word-spacing:263.138987pt;}
.ws9d{word-spacing:263.245653pt;}
.ws9c{word-spacing:263.301547pt;}
.ws6d{word-spacing:263.781547pt;}
.ws63{word-spacing:264.048213pt;}
.ws9e{word-spacing:298.432000pt;}
.ws72{word-spacing:298.965333pt;}
.wsb{word-spacing:335.401600pt;}
.ws74{word-spacing:572.000000pt;}
.ws73{word-spacing:572.106667pt;}
.ws75{word-spacing:572.160000pt;}
.ws2a{word-spacing:600.443093pt;}
.ws33{word-spacing:600.954027pt;}
.ws29{word-spacing:600.975360pt;}
.ws28{word-spacing:600.996693pt;}
.ws2b{word-spacing:601.082027pt;}
.ws34{word-spacing:601.135360pt;}
.ws76{word-spacing:627.821077pt;}
.ws78{word-spacing:627.874411pt;}
.ws97{word-spacing:1046.554667pt;}
.ws64{word-spacing:1047.856000pt;}
.ws6f{word-spacing:1065.776000pt;}
._11{margin-left:-58.879573pt;}
._37{margin-left:-18.432000pt;}
._34{margin-left:-13.661227pt;}
._f{margin-left:-9.740160pt;}
._19{margin-left:-8.352000pt;}
._d{margin-left:-7.104000pt;}
._8{margin-left:-5.616000pt;}
._b{margin-left:-4.540800pt;}
._4{margin-left:-3.388800pt;}
._5{margin-left:-2.387413pt;}
._0{margin-left:-1.152000pt;}
._2{width:1.276800pt;}
._7{width:2.749013pt;}
._13{width:4.122624pt;}
._39{width:5.980160pt;}
._3a{width:6.939520pt;}
._12{width:11.285589pt;}
._20{width:14.336000pt;}
._17{width:16.109867pt;}
._18{width:18.089173pt;}
._a{width:19.383253pt;}
._1a{width:23.656320pt;}
._3{width:24.619093pt;}
._15{width:25.728000pt;}
._c{width:28.426667pt;}
._e{width:30.000000pt;}
._35{width:32.649813pt;}
._14{width:42.537173pt;}
._10{width:44.814507pt;}
._1{width:46.325333pt;}
._36{width:76.736000pt;}
._38{width:98.166187pt;}
._3b{width:99.888640pt;}
._1b{width:100.901973pt;}
._6{width:127.387520pt;}
._9{width:128.664320pt;}
._25{width:138.709333pt;}
._24{width:140.720000pt;}
._23{width:152.293333pt;}
._21{width:163.221333pt;}
._3e{width:166.597333pt;}
._22{width:167.984000pt;}
._29{width:198.674560pt;}
._3f{width:199.748693pt;}
._41{width:215.812480pt;}
._2f{width:217.645440pt;}
._3c{width:232.085333pt;}
._1c{width:233.984000pt;}
._2d{width:234.883840pt;}
._1d{width:241.472000pt;}
._30{width:243.138773pt;}
._28{width:250.699733pt;}
._2b{width:252.323840pt;}
._2c{width:260.462933pt;}
._2e{width:268.366933pt;}
._33{width:282.969600pt;}
._43{width:283.876267pt;}
._26{width:285.188693pt;}
._40{width:310.145280pt;}
._2a{width:311.425280pt;}
._31{width:328.249600pt;}
._3d{width:332.490667pt;}
._1e{width:333.984000pt;}
._32{width:334.925440pt;}
._42{width:335.832107pt;}
._27{width:345.615360pt;}
._16{width:561.560747pt;}
._1f{width:586.986667pt;}
.fs1a{font-size:37.120000pt;}
.fs19{font-size:37.248000pt;}
.fs11{font-size:42.880000pt;}
.fs26{font-size:43.008000pt;}
.fse{font-size:48.000000pt;}
.fsd{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs36{font-size:53.248000pt;}
.fs9{font-size:56.320000pt;}
.fsa{font-size:56.448000pt;}
.fs1c{font-size:58.880000pt;}
.fs2d{font-size:59.008000pt;}
.fsc{font-size:64.000000pt;}
.fsf{font-size:64.128000pt;}
.fs18{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fsb{font-size:75.008000pt;}
.fs28{font-size:80.000000pt;}
.fs29{font-size:80.128000pt;}
.fs2{font-size:85.120000pt;}
.fs12{font-size:85.248000pt;}
.fs21{font-size:87.680000pt;}
.fs25{font-size:87.808000pt;}
.fs5{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs34{font-size:98.560000pt;}
.fs20{font-size:99.840000pt;}
.fs24{font-size:100.480000pt;}
.fs35{font-size:101.120000pt;}
.fs27{font-size:101.248000pt;}
.fs2e{font-size:102.400000pt;}
.fs2f{font-size:102.528000pt;}
.fs1e{font-size:106.880000pt;}
.fs1f{font-size:107.008000pt;}
.fs2c{font-size:112.000000pt;}
.fs31{font-size:119.680000pt;}
.fs32{font-size:119.808000pt;}
.fs2b{font-size:128.000000pt;}
.fs2a{font-size:128.128000pt;}
.fs14{font-size:133.120000pt;}
.fs15{font-size:133.248000pt;}
.fs1b{font-size:149.120000pt;}
.fs1d{font-size:149.248000pt;}
.fs23{font-size:150.400000pt;}
.fs10{font-size:154.880000pt;}
.fs4{font-size:170.880000pt;}
.fs30{font-size:171.008000pt;}
.fs0{font-size:192.000000pt;}
.fs1{font-size:192.128000pt;}
.fs8{font-size:213.120000pt;}
.fs33{font-size:226.688000pt;}
.fs22{font-size:227.968000pt;}
.fs16{font-size:229.120000pt;}
.fs17{font-size:229.248000pt;}
.fs13{font-size:235.008000pt;}
.y9a{bottom:-186.266667pt;}
.y99{bottom:-169.440000pt;}
.y98{bottom:-152.640000pt;}
.y0{bottom:0.000000pt;}
.y148{bottom:3.040000pt;}
.y168{bottom:4.640000pt;}
.y97{bottom:5.248000pt;}
.ya6{bottom:7.936000pt;}
.y72{bottom:9.152000pt;}
.y11a{bottom:9.472000pt;}
.y139{bottom:9.984000pt;}
.y1c4{bottom:11.712000pt;}
.y188{bottom:11.904000pt;}
.y7f{bottom:16.384000pt;}
.y96{bottom:16.608000pt;}
.y9d{bottom:17.792000pt;}
.y68{bottom:18.496000pt;}
.y158{bottom:21.120000pt;}
.y137{bottom:24.160000pt;}
.y1c{bottom:27.552000pt;}
.y1c0{bottom:27.584000pt;}
.y1c3{bottom:27.712000pt;}
.y8{bottom:28.384000pt;}
.y170{bottom:28.640000pt;}
.y9c{bottom:28.992000pt;}
.y92{bottom:29.600000pt;}
.y134{bottom:32.416000pt;}
.yf3{bottom:34.720000pt;}
.y133{bottom:34.848000pt;}
.y118{bottom:40.544000pt;}
.y136{bottom:41.760000pt;}
.yd6{bottom:44.640000pt;}
.y52{bottom:52.128000pt;}
.y11d{bottom:53.920000pt;}
.y1bf{bottom:59.168000pt;}
.y12b{bottom:59.840000pt;}
.y173{bottom:66.208000pt;}
.yf2{bottom:66.496000pt;}
.y86{bottom:69.952000pt;}
.y1b{bottom:71.072000pt;}
.y11c{bottom:71.392000pt;}
.y14b{bottom:72.544000pt;}
.y51{bottom:77.728000pt;}
.y18a{bottom:78.688000pt;}
.y10a{bottom:87.136000pt;}
.y1a{bottom:87.872000pt;}
.y11b{bottom:88.992000pt;}
.yc9{bottom:89.600000pt;}
.y15b{bottom:90.688000pt;}
.y145{bottom:96.160000pt;}
.y172{bottom:98.208000pt;}
.y85{bottom:98.752000pt;}
.y2e{bottom:98.944000pt;}
.yb3{bottom:101.088000pt;}
.y149{bottom:101.504000pt;}
.y13e{bottom:101.533333pt;}
.y159{bottom:101.568000pt;}
.y146{bottom:101.573333pt;}
.y169{bottom:101.600000pt;}
.y143{bottom:101.626667pt;}
.y161{bottom:101.666667pt;}
.y12a{bottom:103.072000pt;}
.y14a{bottom:104.544000pt;}
.y19{bottom:104.672000pt;}
.yb2{bottom:107.808000pt;}
.yf1{bottom:108.192000pt;}
.y3e{bottom:109.056000pt;}
.y164{bottom:110.240000pt;}
.y199{bottom:110.368000pt;}
.y155{bottom:114.240000pt;}
.y13f{bottom:115.040000pt;}
.y1bb{bottom:117.760000pt;}
.yc8{bottom:118.880000pt;}
.y2d{bottom:119.104000pt;}
.ycf{bottom:119.200000pt;}
.y8f{bottom:119.680000pt;}
.y18{bottom:121.472000pt;}
.y109{bottom:121.696000pt;}
.yb6{bottom:122.208000pt;}
.y15a{bottom:122.688000pt;}
.yed{bottom:123.072000pt;}
.yb1{bottom:124.608000pt;}
.y84{bottom:127.552000pt;}
.y171{bottom:130.208000pt;}
.y1ba{bottom:132.160000pt;}
.yc0{bottom:133.216000pt;}
.y16c{bottom:134.240000pt;}
.y189{bottom:134.306667pt;}
.y3d{bottom:134.653333pt;}
.y1b4{bottom:136.000000pt;}
.yec{bottom:137.466667pt;}
.y1be{bottom:137.626667pt;}
.y103{bottom:137.893333pt;}
.y7b{bottom:138.266667pt;}
.y198{bottom:139.173333pt;}
.ye6{bottom:141.306667pt;}
.yf0{bottom:143.933333pt;}
.y8e{bottom:144.640000pt;}
.y129{bottom:146.266667pt;}
.y1b9{bottom:146.560000pt;}
.y1b6{bottom:147.040000pt;}
.y167{bottom:147.840000pt;}
.yce{bottom:148.160000pt;}
.y142{bottom:149.760000pt;}
.yeb{bottom:151.866667pt;}
.ye8{bottom:152.346667pt;}
.y2c{bottom:152.546667pt;}
.y14f{bottom:153.120000pt;}
.y1b3{bottom:153.786667pt;}
.y108{bottom:156.293333pt;}
.ye5{bottom:159.066667pt;}
.y13{bottom:159.493333pt;}
.y1b8{bottom:160.986667pt;}
.ybf{bottom:165.253333pt;}
.yea{bottom:166.266667pt;}
.y102{bottom:166.693333pt;}
.y7a{bottom:167.066667pt;}
.y8d{bottom:169.440000pt;}
.y35{bottom:171.266667pt;}
.y16f{bottom:171.813333pt;}
.y1bd{bottom:174.213333pt;}
.y1b7{bottom:175.386667pt;}
.y38{bottom:176.893333pt;}
.ycd{bottom:178.080000pt;}
.yef{bottom:179.653333pt;}
.y166{bottom:179.866667pt;}
.ye9{bottom:180.666667pt;}
.y7{bottom:180.826667pt;}
.y71{bottom:182.693333pt;}
.y157{bottom:183.866667pt;}
.y2b{bottom:186.146667pt;}
.y12{bottom:187.493333pt;}
.y93{bottom:187.680000pt;}
.y151{bottom:187.840000pt;}
.y128{bottom:189.466667pt;}
.y34{bottom:190.493333pt;}
.yc7{bottom:191.386667pt;}
.y6c{bottom:191.546667pt;}
.y8c{bottom:194.240000pt;}
.y37{bottom:196.093333pt;}
.ybe{bottom:197.253333pt;}
.y141{bottom:197.506667pt;}
.y150{bottom:197.533333pt;}
.y15f{bottom:197.573333pt;}
.y154{bottom:197.626667pt;}
.y147{bottom:197.733333pt;}
.y16e{bottom:203.840000pt;}
.y33{bottom:209.693333pt;}
.y1bc{bottom:210.746667pt;}
.y165{bottom:211.866667pt;}
.y15d{bottom:213.120000pt;}
.yf5{bottom:213.920000pt;}
.y197{bottom:214.080000pt;}
.y36{bottom:215.333333pt;}
.yee{bottom:215.386667pt;}
.y156{bottom:215.866667pt;}
.y6{bottom:217.146667pt;}
.y5d{bottom:217.213333pt;}
.y19f{bottom:217.626667pt;}
.yc6{bottom:218.906667pt;}
.y8b{bottom:219.066667pt;}
.y2a{bottom:219.613333pt;}
.y127{bottom:226.906667pt;}
.y32{bottom:228.893333pt;}
.ybd{bottom:229.253333pt;}
.y140{bottom:229.533333pt;}
.y15e{bottom:229.573333pt;}
.y153{bottom:229.626667pt;}
.y3b{bottom:232.986667pt;}
.y79{bottom:234.306667pt;}
.y16d{bottom:235.840000pt;}
.y5c{bottom:236.413333pt;}
.y1b5{bottom:239.293333pt;}
.y196{bottom:242.880000pt;}
.y13d{bottom:243.040000pt;}
.ye7{bottom:243.133333pt;}
.y8a{bottom:244.026667pt;}
.y160{bottom:247.840000pt;}
.y31{bottom:248.093333pt;}
.y191{bottom:250.240000pt;}
.y144{bottom:251.386667pt;}
.y1a4{bottom:251.840000pt;}
.y29{bottom:252.413333pt;}
.y187{bottom:253.280000pt;}
.y5{bottom:253.466667pt;}
.yd7{bottom:255.040000pt;}
.y5b{bottom:255.613333pt;}
.y126{bottom:255.746667pt;}
.y101{bottom:257.506667pt;}
.y11{bottom:258.080000pt;}
.y3a{bottom:258.586667pt;}
.ybc{bottom:261.253333pt;}
.y17e{bottom:261.853333pt;}
.y78{bottom:263.106667pt;}
.y30{bottom:267.293333pt;}
.y1a3{bottom:269.920000pt;}
.yd5{bottom:270.720000pt;}
.y5a{bottom:274.813333pt;}
.y19d{bottom:275.973333pt;}
.y1b2{bottom:279.426667pt;}
.y14e{bottom:281.120000pt;}
.ye4{bottom:282.946667pt;}
.y28{bottom:283.773333pt;}
.y39{bottom:284.186667pt;}
.y163{bottom:285.466667pt;}
.y10{bottom:286.080000pt;}
.y2f{bottom:286.493333pt;}
.y50{bottom:287.266667pt;}
.y152{bottom:289.466667pt;}
.y77{bottom:291.906667pt;}
.y19c{bottom:291.973333pt;}
.y59{bottom:294.013333pt;}
.y186{bottom:295.360000pt;}
.y4{bottom:295.973333pt;}
.yfd{bottom:296.933333pt;}
.y16{bottom:298.946667pt;}
.ybb{bottom:299.973333pt;}
.y66{bottom:305.600000pt;}
.y19b{bottom:307.973333pt;}
.y17d{bottom:312.413333pt;}
.y4f{bottom:312.866667pt;}
.y58{bottom:313.213333pt;}
.y27{bottom:317.213333pt;}
.y162{bottom:317.506667pt;}
.y6b{bottom:320.186667pt;}
.y76{bottom:320.706667pt;}
.y1b1{bottom:323.106667pt;}
.y19a{bottom:323.973333pt;}
.yfc{bottom:325.733333pt;}
.ye3{bottom:325.893333pt;}
.y15{bottom:330.626667pt;}
.y65{bottom:331.200000pt;}
.y195{bottom:331.266667pt;}
.y125{bottom:331.613333pt;}
.yba{bottom:332.000000pt;}
.y57{bottom:332.413333pt;}
.y107{bottom:334.946667pt;}
.y70{bottom:335.586667pt;}
.yd2{bottom:337.413333pt;}
.y185{bottom:337.440000pt;}
.y4e{bottom:338.466667pt;}
.y190{bottom:339.840000pt;}
.y67{bottom:340.226667pt;}
.y15c{bottom:341.120000pt;}
.y83{bottom:341.893333pt;}
.y26{bottom:342.493333pt;}
.yb5{bottom:344.800000pt;}
.yb0{bottom:345.893333pt;}
.y17c{bottom:347.013333pt;}
.y3{bottom:347.813333pt;}
.y75{bottom:349.506667pt;}
.yf{bottom:351.040000pt;}
.y56{bottom:351.613333pt;}
.y1b0{bottom:351.653333pt;}
.ycc{bottom:353.093333pt;}
.ye2{bottom:353.626667pt;}
.y117{bottom:354.466667pt;}
.yfb{bottom:354.533333pt;}
.y89{bottom:359.586667pt;}
.y25{bottom:362.213333pt;}
.y4d{bottom:364.066667pt;}
.y131{bottom:364.826667pt;}
.y1ac{bottom:365.253333pt;}
.yb4{bottom:365.920000pt;}
.yaf{bottom:367.013333pt;}
.y45{bottom:367.706667pt;}
.yae{bottom:370.560000pt;}
.y82{bottom:370.693333pt;}
.y55{bottom:370.853333pt;}
.y192{bottom:371.360000pt;}
.y100{bottom:374.266667pt;}
.y124{bottom:374.813333pt;}
.ye{bottom:379.066667pt;}
.y6f{bottom:379.746667pt;}
.y1af{bottom:380.160000pt;}
.y178{bottom:380.293333pt;}
.y4a{bottom:380.386667pt;}
.y184{bottom:380.640000pt;}
.y17{bottom:380.893333pt;}
.ycb{bottom:381.253333pt;}
.ye1{bottom:381.346667pt;}
.y14{bottom:382.466667pt;}
.y24{bottom:383.333333pt;}
.y116{bottom:383.746667pt;}
.y18f{bottom:385.146667pt;}
.y1aa{bottom:385.666667pt;}
.y106{bottom:386.786667pt;}
.y44{bottom:386.906667pt;}
.ydd{bottom:388.186667pt;}
.y88{bottom:388.413333pt;}
.yad{bottom:388.960000pt;}
.y54{bottom:390.053333pt;}
.y17b{bottom:397.573333pt;}
.y130{bottom:399.386667pt;}
.y81{bottom:399.520000pt;}
.y49{bottom:399.586667pt;}
.y2{bottom:399.680000pt;}
.y9b{bottom:400.733333pt;}
.yb9{bottom:402.560000pt;}
.y1a9{bottom:403.453333pt;}
.ydc{bottom:405.946667pt;}
.y43{bottom:406.106667pt;}
.yd3{bottom:406.466667pt;}
.y74{bottom:407.133333pt;}
.y1ae{bottom:409.213333pt;}
.y53{bottom:409.253333pt;}
.y23{bottom:410.213333pt;}
.yca{bottom:410.533333pt;}
.ye0{bottom:411.013333pt;}
.yfa{bottom:412.160000pt;}
.y115{bottom:413.026667pt;}
.yff{bottom:413.466667pt;}
.y87{bottom:417.213333pt;}
.y123{bottom:418.013333pt;}
.y48{bottom:418.786667pt;}
.y42{bottom:425.306667pt;}
.y177{bottom:428.133333pt;}
.y80{bottom:428.320000pt;}
.ya3{bottom:429.440000pt;}
.y105{bottom:429.920000pt;}
.y183{bottom:431.226667pt;}
.yb8{bottom:434.560000pt;}
.y47{bottom:438.013333pt;}
.y194{bottom:438.426667pt;}
.yfe{bottom:439.386667pt;}
.yf9{bottom:440.960000pt;}
.y114{bottom:442.466667pt;}
.y22{bottom:443.013333pt;}
.yc5{bottom:443.840000pt;}
.y41{bottom:444.506667pt;}
.y1ad{bottom:446.146667pt;}
.yaa{bottom:446.426667pt;}
.y64{bottom:447.866667pt;}
.ydf{bottom:448.066667pt;}
.y17a{bottom:448.133333pt;}
.ya2{bottom:448.160000pt;}
.y6a{bottom:448.800000pt;}
.y19e{bottom:448.960000pt;}
.y16b{bottom:449.306667pt;}
.y12f{bottom:449.946667pt;}
.y1{bottom:451.520000pt;}
.yd{bottom:456.346667pt;}
.y46{bottom:457.213333pt;}
.y104{bottom:458.720000pt;}
.y122{bottom:461.253333pt;}
.y40{bottom:463.706667pt;}
.ya1{bottom:466.906667pt;}
.y21{bottom:467.013333pt;}
.y113{bottom:471.773333pt;}
.y63{bottom:473.506667pt;}
.y18e{bottom:474.266667pt;}
.ya9{bottom:475.226667pt;}
.yb7{bottom:475.706667pt;}
.y1ab{bottom:476.480000pt;}
.y176{bottom:477.573333pt;}
.yde{bottom:477.920000pt;}
.y3f{bottom:482.946667pt;}
.yf8{bottom:483.040000pt;}
.y13c{bottom:483.906667pt;}
.yc{bottom:484.346667pt;}
.y12e{bottom:484.546667pt;}
.y20{bottom:491.493333pt;}
.y60{bottom:498.853333pt;}
.y16a{bottom:499.906667pt;}
.y112{bottom:501.053333pt;}
.y5e{bottom:501.186667pt;}
.y1a2{bottom:502.946667pt;}
.yd4{bottom:503.746667pt;}
.ya8{bottom:504.026667pt;}
.ya0{bottom:504.186667pt;}
.y62{bottom:504.226667pt;}
.y121{bottom:504.453333pt;}
.y1f{bottom:511.680000pt;}
.yf7{bottom:511.840000pt;}
.y7e{bottom:515.333333pt;}
.y175{bottom:517.920000pt;}
.y1a8{bottom:522.786667pt;}
.y10d{bottom:523.066667pt;}
.ydb{bottom:523.933333pt;}
.y5f{bottom:524.453333pt;}
.y6e{bottom:529.186667pt;}
.y61{bottom:529.853333pt;}
.y1a7{bottom:529.986667pt;}
.y111{bottom:530.493333pt;}
.yda{bottom:531.133333pt;}
.y13b{bottom:534.466667pt;}
.y12d{bottom:535.106667pt;}
.y182{bottom:538.013333pt;}
.y1a1{bottom:540.933333pt;}
.y9f{bottom:541.466667pt;}
.yd1{bottom:542.213333pt;}
.y193{bottom:544.573333pt;}
.y1e{bottom:545.280000pt;}
.y120{bottom:547.653333pt;}
.y180{bottom:551.293333pt;}
.yb{bottom:555.106667pt;}
.y10b{bottom:560.773333pt;}
.y7d{bottom:561.413333pt;}
.y18d{bottom:563.906667pt;}
.y4c{bottom:566.493333pt;}
.y135{bottom:567.746667pt;}
.y10f{bottom:568.866667pt;}
.y69{bottom:574.146667pt;}
.y174{bottom:574.240000pt;}
.y1d{bottom:576.000000pt;}
.y95{bottom:577.626667pt;}
.y132{bottom:582.053333pt;}
.ya{bottom:583.106667pt;}
.y181{bottom:584.093333pt;}
.y9e{bottom:589.213333pt;}
.y1a0{bottom:589.760000pt;}
.ya5{bottom:589.920000pt;}
.y11f{bottom:590.853333pt;}
.y6d{bottom:591.106667pt;}
.y1a6{bottom:591.906667pt;}
.y17f{bottom:592.253333pt;}
.yd9{bottom:592.320000pt;}
.yd0{bottom:592.480000pt;}
.y4b{bottom:595.293333pt;}
.y12c{bottom:596.160000pt;}
.y90{bottom:596.546667pt;}
.y73{bottom:597.626667pt;}
.yc4{bottom:597.733333pt;}
.y14d{bottom:600.026667pt;}
.y1a5{bottom:602.146667pt;}
.y10e{bottom:602.466667pt;}
.yd8{bottom:602.560000pt;}
.y7c{bottom:607.493333pt;}
.y18c{bottom:609.186667pt;}
.y110{bottom:616.320000pt;}
.yac{bottom:618.333333pt;}
.yc2{bottom:618.813333pt;}
.ya4{bottom:618.880000pt;}
.yc3{bottom:622.053333pt;}
.y119{bottom:622.173333pt;}
.ya7{bottom:622.493333pt;}
.y3c{bottom:622.813333pt;}
.y94{bottom:623.746667pt;}
.y9{bottom:623.773333pt;}
.yf6{bottom:624.186667pt;}
.y1c2{bottom:624.733333pt;}
.y11e{bottom:634.080000pt;}
.y13a{bottom:641.466667pt;}
.yab{bottom:642.653333pt;}
.y14c{bottom:646.106667pt;}
.yc1{bottom:646.813333pt;}
.y18b{bottom:654.013333pt;}
.y10c{bottom:655.453333pt;}
.y91{bottom:657.733333pt;}
.y1c1{bottom:659.840000pt;}
.y179{bottom:660.160000pt;}
.yf4{bottom:661.280000pt;}
.y138{bottom:677.920000pt;}
.h27{height:27.386875pt;}
.h26{height:27.481312pt;}
.h40{height:37.134080pt;}
.h44{height:39.054080pt;}
.h4a{height:39.182080pt;}
.h47{height:39.214080pt;}
.h4{height:39.943750pt;}
.h43{height:40.440000pt;}
.h62{height:40.618125pt;}
.h45{height:41.568000pt;}
.h46{height:41.678848pt;}
.h4b{height:42.254080pt;}
.h12{height:43.031250pt;}
.h59{height:43.065000pt;}
.h11{height:43.146000pt;}
.hc{height:43.271750pt;}
.h5c{height:45.022500pt;}
.h5d{height:45.120375pt;}
.h7e{height:45.935313pt;}
.h7f{height:46.046000pt;}
.h2b{height:47.218750pt;}
.h2a{height:47.621250pt;}
.h72{height:48.937500pt;}
.h3f{height:49.606400pt;}
.ha{height:50.490000pt;}
.hb{height:50.604750pt;}
.h3c{height:53.920000pt;}
.h7b{height:54.027840pt;}
.h7{height:55.245937pt;}
.hd{height:56.306250pt;}
.h13{height:56.402500pt;}
.h10{height:57.375000pt;}
.h7d{height:60.124587pt;}
.h28{height:61.965000pt;}
.h42{height:62.524587pt;}
.h49{height:63.196160pt;}
.h48{height:63.302827pt;}
.h14{height:63.656250pt;}
.h15{height:63.783562pt;}
.h30{height:64.006250pt;}
.h25{height:64.418333pt;}
.h5b{height:65.086875pt;}
.hf{height:67.128750pt;}
.he{height:67.243500pt;}
.h3d{height:69.240000pt;}
.h22{height:70.828125pt;}
.h23{height:70.922562pt;}
.h4e{height:71.833500pt;}
.h6{height:72.187500pt;}
.h8{height:72.283750pt;}
.h39{height:73.056256pt;}
.h5a{height:73.406250pt;}
.h5e{height:73.504125pt;}
.h34{height:73.713920pt;}
.h32{height:73.824768pt;}
.h4d{height:74.012083pt;}
.h35{height:75.930880pt;}
.h3{height:76.308750pt;}
.h64{height:78.046500pt;}
.h53{height:81.203750pt;}
.h61{height:81.725625pt;}
.h67{height:81.823500pt;}
.h79{height:83.036800pt;}
.h75{height:83.136000pt;}
.h7c{height:84.131840pt;}
.h41{height:84.238336pt;}
.h1a{height:86.062500pt;}
.h24{height:86.177250pt;}
.h76{height:86.461440pt;}
.h7a{height:87.015680pt;}
.h16{height:87.156562pt;}
.h19{height:87.287625pt;}
.h3b{height:89.760000pt;}
.h31{height:95.484375pt;}
.h2e{height:95.816250pt;}
.h2f{height:95.931000pt;}
.h52{height:97.875000pt;}
.h51{height:97.972875pt;}
.h3e{height:98.040000pt;}
.h18{height:98.296875pt;}
.h33{height:99.303750pt;}
.h3a{height:99.940313pt;}
.h1c{height:100.100000pt;}
.h1d{height:100.196250pt;}
.h38{height:102.884062pt;}
.h55{height:106.305937pt;}
.h58{height:106.433250pt;}
.h56{height:111.398438pt;}
.h29{height:112.131250pt;}
.h2d{height:112.227500pt;}
.h5f{height:114.750000pt;}
.h60{height:114.864750pt;}
.h17{height:116.462500pt;}
.h74{height:119.995000pt;}
.h73{height:120.098000pt;}
.h78{height:125.633600pt;}
.h70{height:127.312500pt;}
.h71{height:127.439813pt;}
.h5{height:128.493750pt;}
.h63{height:130.663125pt;}
.h65{height:130.761000pt;}
.h2c{height:133.908750pt;}
.h1{height:144.375000pt;}
.h2{height:144.471250pt;}
.h4f{height:146.812500pt;}
.h50{height:146.910375pt;}
.h6f{height:148.319063pt;}
.h4c{height:148.446375pt;}
.h37{height:149.592187pt;}
.h20{height:153.191250pt;}
.h9{height:160.256250pt;}
.h1e{height:172.287500pt;}
.h1f{height:172.383750pt;}
.h1b{height:176.715000pt;}
.h57{height:190.968750pt;}
.h77{height:190.984640pt;}
.h54{height:191.096063pt;}
.h66{height:224.160000pt;}
.h36{height:226.743562pt;}
.h69{height:323.200000pt;}
.h21{height:329.831250pt;}
.h6b{height:341.280000pt;}
.h6a{height:434.400000pt;}
.h6e{height:444.800000pt;}
.h68{height:448.160000pt;}
.h6c{height:526.400000pt;}
.h6d{height:550.400000pt;}
.h0{height:720.000000pt;}
.w2{width:368.160000pt;}
.w3{width:527.360000pt;}
.w4{width:527.520000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:10.213333pt;}
.x2d{left:11.552000pt;}
.x5f{left:17.439981pt;}
.xa3{left:25.247981pt;}
.x8b{left:36.703981pt;}
.xab{left:38.239981pt;}
.xad{left:39.263981pt;}
.x91{left:43.903981pt;}
.xa6{left:45.919981pt;}
.xa7{left:47.103981pt;}
.xa4{left:48.607981pt;}
.xbe{left:51.519981pt;}
.xb6{left:52.927981pt;}
.x90{left:54.463981pt;}
.x71{left:57.183981pt;}
.xa9{left:60.031981pt;}
.x11{left:62.623981pt;}
.x14{left:64.415981pt;}
.x96{left:69.919981pt;}
.x4{left:72.607981pt;}
.xb5{left:76.287981pt;}
.xb4{left:78.719981pt;}
.xa8{left:80.383981pt;}
.x8{left:85.599981pt;}
.x6c{left:86.815981pt;}
.x9{left:88.799981pt;}
.x2c{left:90.911981pt;}
.x8a{left:92.671981pt;}
.xb{left:94.303981pt;}
.x99{left:95.391981pt;}
.xc{left:98.943981pt;}
.x63{left:103.071981pt;}
.x1{left:104.575981pt;}
.x23{left:109.695981pt;}
.x2{left:112.575981pt;}
.x2b{left:116.351981pt;}
.xbd{left:120.159981pt;}
.x4d{left:123.199981pt;}
.x44{left:128.383981pt;}
.x6d{left:130.495981pt;}
.x4e{left:132.159981pt;}
.x50{left:134.653314pt;}
.xb8{left:136.706648pt;}
.x3e{left:139.066648pt;}
.x25{left:140.733314pt;}
.xd{left:142.306648pt;}
.x89{left:146.493314pt;}
.x24{left:147.773314pt;}
.x30{left:150.426648pt;}
.x67{left:156.826648pt;}
.x5{left:160.613314pt;}
.x51{left:164.573314pt;}
.xe{left:166.306648pt;}
.x2e{left:167.586648pt;}
.x1e{left:173.826648pt;}
.x1f{left:176.506648pt;}
.x86{left:179.546648pt;}
.x62{left:180.706648pt;}
.xb1{left:185.440000pt;}
.x82{left:186.879981pt;}
.x5d{left:188.986648pt;}
.x81{left:193.506648pt;}
.x6{left:200.959981pt;}
.x7{left:203.133314pt;}
.x97{left:208.639981pt;}
.x95{left:210.719981pt;}
.x64{left:213.413314pt;}
.x68{left:221.119981pt;}
.x7d{left:225.853314pt;}
.x98{left:228.066648pt;}
.x5e{left:233.759981pt;}
.x4f{left:247.999981pt;}
.x2f{left:259.586667pt;}
.x61{left:260.866648pt;}
.x27{left:268.733314pt;}
.xb3{left:270.559981pt;}
.x7e{left:273.853314pt;}
.x60{left:275.133314pt;}
.xb9{left:277.119981pt;}
.xaa{left:278.333314pt;}
.xac{left:284.346648pt;}
.x66{left:286.266648pt;}
.x3c{left:287.520000pt;}
.x7f{left:303.933314pt;}
.x6e{left:318.533314pt;}
.x43{left:335.426648pt;}
.x8d{left:350.559981pt;}
.x6f{left:372.933314pt;}
.x70{left:375.173314pt;}
.x5c{left:394.719981pt;}
.x16{left:402.106648pt;}
.xb0{left:405.786648pt;}
.x18{left:407.066648pt;}
.x17{left:410.906648pt;}
.x72{left:414.879981pt;}
.x9c{left:417.466648pt;}
.x80{left:423.133314pt;}
.x4a{left:431.293314pt;}
.x15{left:440.986648pt;}
.x22{left:447.773314pt;}
.x2a{left:448.733314pt;}
.x26{left:449.893314pt;}
.x65{left:453.439981pt;}
.x3f{left:455.613314pt;}
.x32{left:463.773314pt;}
.x34{left:465.053314pt;}
.x83{left:469.119981pt;}
.x4b{left:470.333314pt;}
.x31{left:471.613314pt;}
.x28{left:472.613314pt;}
.x5b{left:473.693314pt;}
.x87{left:477.346648pt;}
.x88{left:478.493314pt;}
.x33{left:490.653314pt;}
.x35{left:493.693314pt;}
.xa5{left:503.493314pt;}
.x9b{left:519.106648pt;}
.x45{left:521.213314pt;}
.x52{left:524.613314pt;}
.x54{left:526.213314pt;}
.x53{left:531.013314pt;}
.x21{left:532.346648pt;}
.x40{left:537.853314pt;}
.x36{left:551.933314pt;}
.x12{left:558.333314pt;}
.x1d{left:566.973314pt;}
.x9a{left:570.626648pt;}
.xf{left:575.359981pt;}
.x4c{left:587.493314pt;}
.x13{left:588.413314pt;}
.x10{left:605.279981pt;}
.xa1{left:607.226648pt;}
.xbb{left:640.773314pt;}
.x8e{left:641.733314pt;}
.x73{left:657.026648pt;}
.x6a{left:692.226648pt;}
.x69{left:695.266648pt;}
.x79{left:696.706648pt;}
.x9e{left:697.826648pt;}
.x9f{left:699.199981pt;}
.x7a{left:705.186648pt;}
.xb2{left:712.800000pt;}
.xaf{left:714.720000pt;}
.xae{left:720.320000pt;}
.x75{left:739.426648pt;}
.x74{left:748.066648pt;}
.x84{left:782.813314pt;}
.x85{left:783.866648pt;}
.x39{left:798.880000pt;}
.x47{left:813.786648pt;}
.x38{left:816.453314pt;}
.x41{left:826.373314pt;}
.x37{left:833.733314pt;}
.x48{left:849.946648pt;}
.x58{left:857.439981pt;}
.x46{left:860.666648pt;}
.xa0{left:867.173314pt;}
.x6b{left:873.373314pt;}
.x92{left:876.933314pt;}
.x3b{left:881.573314pt;}
.x55{left:883.519981pt;}
.x56{left:886.719981pt;}
.x59{left:888.159981pt;}
.x5a{left:893.439981pt;}
.x57{left:906.239981pt;}
.x3d{left:917.093314pt;}
.x9d{left:924.986648pt;}
.x42{left:927.653314pt;}
.x1c{left:949.053314pt;}
.x19{left:949.946648pt;}
.x8f{left:951.359981pt;}
.xba{left:954.946648pt;}
.x8c{left:955.973314pt;}
.xbc{left:960.226648pt;}
.x49{left:961.986648pt;}
.x76{left:976.293314pt;}
.x1a{left:980.026648pt;}
.x7b{left:989.573314pt;}
.xb7{left:1004.066648pt;}
.x93{left:1022.493314pt;}
.xa{left:1049.599981pt;}
.x78{left:1053.119981pt;}
.x7c{left:1065.759981pt;}
.x77{left:1070.559981pt;}
.x94{left:1116.613314pt;}
.xa2{left:1195.679981pt;}
.x20{left:1196.733314pt;}
.x29{left:1205.759981pt;}
.x3{left:1209.439981pt;}
.x1b{left:1230.466648pt;}
}




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