
    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_17d51aff3e76d774f42f738b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_bad962f6c2cd668f40eb58a1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_4fbfdcb2f542580fd9206846.woff')format("woff");}.ff3{font-family:ff3;line-height:1.364258;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_fd9287524e68d670c91ac3e9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_25287a1ca820b5d94ee4fdfe.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_423b8872c1cb413df067dc82.woff')format("woff");}.ff6{font-family:ff6;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_61228bfb0ee3d59248db5cda.woff')format("woff");}.ff7{font-family:ff7;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_76262d9a7fa2f807aac0701a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_21b05f5fe5f13e6bff07d110.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ff6ce483238be66aa836aa7f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_ddd6197c8cbb161d959a8c12.woff')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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_ed7868b3c544ea9270c61ada.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fbec92d4028f5cf1b4937dd5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.899000;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_c2f26d1f9b74cb04a02b0081.woff')format("woff");}.ffe{font-family:ffe;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6d5c5475b2c90ec58c706bde.woff')format("woff");}.fff{font-family:fff;line-height:0.040000;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_09df4beb34f6327a621b6333.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_aa1627ee1d469e8fc88a3348.woff')format("woff");}.ff11{font-family:ff11;line-height:0.429000;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_fd22c966fe95ad397ce8ca4a.woff')format("woff");}.ff12{font-family:ff12;line-height:0.923000;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_2e89dfa066201b360fe0a293.woff')format("woff");}.ff13{font-family:ff13;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-79.620000px;}
.v4{vertical-align:-68.862000px;}
.v10{vertical-align:-67.668000px;}
.v3{vertical-align:-58.104000px;}
.vb{vertical-align:-51.378000px;}
.vf{vertical-align:-48.084000px;}
.v11{vertical-align:-41.634000px;}
.v2{vertical-align:-21.690000px;}
.v6{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v1a{vertical-align:1.212000px;}
.v9{vertical-align:10.758000px;}
.ve{vertical-align:13.980000px;}
.v8{vertical-align:20.718000px;}
.v1{vertical-align:23.754000px;}
.v12{vertical-align:26.034000px;}
.va{vertical-align:48.528000px;}
.v17{vertical-align:49.614000px;}
.v14{vertical-align:52.602000px;}
.v5{vertical-align:58.104000px;}
.v7{vertical-align:64.830000px;}
.v19{vertical-align:90.864000px;}
.v18{vertical-align:101.622000px;}
.vc{vertical-align:104.358000px;}
.v15{vertical-align:122.664000px;}
.v16{vertical-align:150.756000px;}
.v13{vertical-align:175.266000px;}
.ls2b{letter-spacing:-32.652000px;}
.ls2d{letter-spacing:-8.604000px;}
.ls2c{letter-spacing:-5.022000px;}
.ls2e{letter-spacing:-4.782000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000036px;}
.ls5{letter-spacing:0.000600px;}
.ls4{letter-spacing:0.001290px;}
.ls6{letter-spacing:0.001350px;}
.ls7{letter-spacing:0.001459px;}
.ls8{letter-spacing:0.001500px;}
.lse{letter-spacing:0.001542px;}
.ls3{letter-spacing:0.001570px;}
.ls38{letter-spacing:0.001680px;}
.ls9{letter-spacing:0.001710px;}
.lsb{letter-spacing:0.001890px;}
.lsd{letter-spacing:0.004650px;}
.ls1f{letter-spacing:0.006000px;}
.ls5c{letter-spacing:0.006720px;}
.ls31{letter-spacing:0.007680px;}
.ls58{letter-spacing:0.012720px;}
.ls43{letter-spacing:0.017190px;}
.ls57{letter-spacing:0.019410px;}
.ls12{letter-spacing:0.021660px;}
.ls5e{letter-spacing:0.026790px;}
.ls1a{letter-spacing:0.027660px;}
.ls1b{letter-spacing:0.030120px;}
.ls62{letter-spacing:0.032790px;}
.ls5d{letter-spacing:0.036120px;}
.ls13{letter-spacing:0.041310px;}
.ls50{letter-spacing:0.045570px;}
.ls27{letter-spacing:0.054600px;}
.ls24{letter-spacing:0.060600px;}
.ls17{letter-spacing:0.066330px;}
.ls4a{letter-spacing:0.084720px;}
.ls20{letter-spacing:0.090720px;}
.ls23{letter-spacing:0.102120px;}
.ls26{letter-spacing:0.104790px;}
.ls4c{letter-spacing:0.108720px;}
.ls6e{letter-spacing:0.114720px;}
.ls19{letter-spacing:0.120720px;}
.ls29{letter-spacing:0.134580px;}
.ls56{letter-spacing:0.139530px;}
.ls25{letter-spacing:0.142872px;}
.ls28{letter-spacing:0.178662px;}
.ls55{letter-spacing:0.573150px;}
.ls76{letter-spacing:0.645570px;}
.ls75{letter-spacing:0.932418px;}
.ls30{letter-spacing:2.581710px;}
.ls51{letter-spacing:2.606790px;}
.lsc{letter-spacing:2.861162px;}
.ls0{letter-spacing:2.984736px;}
.ls4b{letter-spacing:2.996700px;}
.ls6f{letter-spacing:2.997840px;}
.ls15{letter-spacing:2.999580px;}
.ls70{letter-spacing:3.003840px;}
.ls14{letter-spacing:3.005580px;}
.ls7a{letter-spacing:3.246601px;}
.lsa{letter-spacing:3.296580px;}
.ls59{letter-spacing:4.148790px;}
.ls52{letter-spacing:4.539840px;}
.ls63{letter-spacing:5.828700px;}
.ls5f{letter-spacing:5.834700px;}
.ls41{letter-spacing:7.187190px;}
.ls3b{letter-spacing:7.233630px;}
.ls34{letter-spacing:7.275630px;}
.ls46{letter-spacing:9.965580px;}
.ls42{letter-spacing:10.799580px;}
.ls6b{letter-spacing:11.958720px;}
.ls64{letter-spacing:11.964720px;}
.ls68{letter-spacing:12.053790px;}
.ls2{letter-spacing:13.295100px;}
.ls33{letter-spacing:14.491710px;}
.ls3a{letter-spacing:14.558430px;}
.ls22{letter-spacing:15.923790px;}
.ls5a{letter-spacing:15.948720px;}
.ls60{letter-spacing:15.967410px;}
.ls61{letter-spacing:15.979470px;}
.ls5b{letter-spacing:15.995790px;}
.ls7c{letter-spacing:17.869788px;}
.ls7f{letter-spacing:18.133788px;}
.ls79{letter-spacing:18.193788px;}
.ls7b{letter-spacing:18.259788px;}
.ls4d{letter-spacing:18.576600px;}
.ls80{letter-spacing:18.593375px;}
.ls78{letter-spacing:18.655788px;}
.ls21{letter-spacing:18.941580px;}
.ls48{letter-spacing:19.253640px;}
.ls7e{letter-spacing:19.441788px;}
.ls81{letter-spacing:19.577306px;}
.ls4e{letter-spacing:19.621260px;}
.ls1e{letter-spacing:19.933470px;}
.ls2f{letter-spacing:19.941630px;}
.ls36{letter-spacing:19.942650px;}
.ls53{letter-spacing:19.977570px;}
.ls54{letter-spacing:20.011470px;}
.ls1d{letter-spacing:20.015160px;}
.ls66{letter-spacing:20.155530px;}
.ls7d{letter-spacing:20.419788px;}
.ls49{letter-spacing:20.974500px;}
.ls4f{letter-spacing:22.164330px;}
.ls37{letter-spacing:22.598430px;}
.ls3f{letter-spacing:22.919640px;}
.ls3e{letter-spacing:23.957040px;}
.ls45{letter-spacing:23.960010px;}
.ls40{letter-spacing:24.032010px;}
.ls3d{letter-spacing:24.533940px;}
.ls44{letter-spacing:24.640500px;}
.ls72{letter-spacing:24.750600px;}
.ls74{letter-spacing:25.092660px;}
.ls77{letter-spacing:25.591788px;}
.ls18{letter-spacing:26.663580px;}
.ls1c{letter-spacing:26.697660px;}
.ls71{letter-spacing:26.826600px;}
.ls6d{letter-spacing:26.898600px;}
.ls6a{letter-spacing:29.976330px;}
.ls73{letter-spacing:32.710500px;}
.ls16{letter-spacing:35.655660px;}
.ls39{letter-spacing:48.169470px;}
.ls67{letter-spacing:59.826330px;}
.ls32{letter-spacing:75.079470px;}
.ls69{letter-spacing:93.684330px;}
.ls10{letter-spacing:387.420233px;}
.ls11{letter-spacing:517.741848px;}
.ls47{letter-spacing:625.627440px;}
.ls2a{letter-spacing:629.215440px;}
.ls65{letter-spacing:671.977440px;}
.ls6c{letter-spacing:876.481440px;}
.ls3c{letter-spacing:1043.599440px;}
.ls35{letter-spacing:1057.657440px;}
.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;}
}
.ws66{word-spacing:-45.620280px;}
.ws74{word-spacing:-33.713315px;}
.ws77{word-spacing:-33.712670px;}
.ws71{word-spacing:-33.641298px;}
.ws68{word-spacing:-31.679736px;}
.wsf3{word-spacing:-23.929128px;}
.ws65{word-spacing:-19.940940px;}
.ws106{word-spacing:-18.196212px;}
.ws103{word-spacing:-17.803237px;}
.wse2{word-spacing:-16.618284px;}
.ws1{word-spacing:-14.955288px;}
.wsf7{word-spacing:-14.556636px;}
.ws8{word-spacing:-13.293960px;}
.wsd1{word-spacing:-7.961958px;}
.ws9d{word-spacing:-7.602072px;}
.wsae{word-spacing:-7.600020px;}
.wsaf{word-spacing:-7.528020px;}
.ws9b{word-spacing:-7.458646px;}
.wsad{word-spacing:-7.456860px;}
.ws116{word-spacing:-7.265394px;}
.ws81{word-spacing:-4.374000px;}
.wsca{word-spacing:-4.303728px;}
.ws80{word-spacing:-4.302000px;}
.wsd6{word-spacing:-4.232357px;}
.ws43{word-spacing:-4.231711px;}
.ws120{word-spacing:-4.189776px;}
.ws11f{word-spacing:-4.189187px;}
.ws13{word-spacing:-4.160340px;}
.wscd{word-spacing:-3.945509px;}
.ws122{word-spacing:-3.730813px;}
.ws9e{word-spacing:-3.730175px;}
.ws57{word-spacing:-3.729530px;}
.wsa0{word-spacing:-3.658158px;}
.ws9f{word-spacing:-3.656580px;}
.ws7d{word-spacing:-3.586572px;}
.ws19{word-spacing:-3.299939px;}
.ws131{word-spacing:-3.272438px;}
.ws130{word-spacing:-3.271332px;}
.ws105{word-spacing:-3.206984px;}
.ws94{word-spacing:-3.084533px;}
.wsd9{word-spacing:-2.941145px;}
.wscb{word-spacing:-2.940571px;}
.ws4c{word-spacing:-2.725740px;}
.ws50{word-spacing:-2.510909px;}
.wse5{word-spacing:-2.510335px;}
.ws12{word-spacing:-2.438963px;}
.ws12c{word-spacing:-2.421602px;}
.wsdb{word-spacing:-2.152115px;}
.wsc8{word-spacing:-2.080170px;}
.ws118{word-spacing:-1.963227px;}
.ws1c{word-spacing:-1.936710px;}
.ws46{word-spacing:-1.864765px;}
.ws89{word-spacing:-1.722000px;}
.wse{word-spacing:-1.721950px;}
.ws1f{word-spacing:-1.721377px;}
.wscc{word-spacing:-1.506545px;}
.wsa8{word-spacing:-1.505971px;}
.wsa7{word-spacing:-1.435174px;}
.wsd3{word-spacing:-1.434528px;}
.ws17{word-spacing:-1.431887px;}
.ws3c{word-spacing:-1.291140px;}
.ws56{word-spacing:-1.147752px;}
.ws62{word-spacing:-1.075735px;}
.wsc1{word-spacing:-1.004363px;}
.wsed{word-spacing:-1.004148px;}
.ws114{word-spacing:-0.981614px;}
.wsd7{word-spacing:-0.932347px;}
.ws112{word-spacing:-0.719994px;}
.wsee{word-spacing:-0.717300px;}
.ws11{word-spacing:-0.645570px;}
.wsd5{word-spacing:-0.502756px;}
.ws29{word-spacing:-0.502110px;}
.ws137{word-spacing:-0.459029px;}
.wsd4{word-spacing:-0.430739px;}
.wsff{word-spacing:-0.392986px;}
.wsfe{word-spacing:-0.392397px;}
.ws5a{word-spacing:-0.358148px;}
.ws11a{word-spacing:-0.262209px;}
.ws119{word-spacing:-0.261620px;}
.ws12a{word-spacing:-0.196231px;}
.ws79{word-spacing:-0.071945px;}
.wsf8{word-spacing:-0.065454px;}
.wsa9{word-spacing:-0.059778px;}
.ws15{word-spacing:-0.000574px;}
.ws26{word-spacing:-0.000383px;}
.ws2{word-spacing:-0.000269px;}
.ws9{word-spacing:-0.000060px;}
.ws5{word-spacing:0.000000px;}
.ws16{word-spacing:0.000072px;}
.ws40{word-spacing:0.000086px;}
.ws4{word-spacing:0.000207px;}
.ws27{word-spacing:0.000239px;}
.ws0{word-spacing:0.000323px;}
.ws92{word-spacing:0.000420px;}
.wsa{word-spacing:0.000538px;}
.ws128{word-spacing:0.000589px;}
.ws37{word-spacing:0.000646px;}
.ws9a{word-spacing:0.003420px;}
.wsab{word-spacing:0.006270px;}
.ws107{word-spacing:0.065389px;}
.wsfd{word-spacing:0.196166px;}
.ws10c{word-spacing:0.260965px;}
.ws10b{word-spacing:0.262209px;}
.ws1e{word-spacing:0.286848px;}
.ws78{word-spacing:0.287422px;}
.ws76{word-spacing:0.289517px;}
.ws11e{word-spacing:0.327008px;}
.ws138{word-spacing:0.393476px;}
.wsac{word-spacing:0.429806px;}
.wsfb{word-spacing:0.458374px;}
.ws4f{word-spacing:0.501680px;}
.wsc{word-spacing:0.502253px;}
.ws3b{word-spacing:0.645068px;}
.ws91{word-spacing:0.645642px;}
.ws95{word-spacing:0.717085px;}
.wsbc{word-spacing:0.860473px;}
.ws3e{word-spacing:0.861047px;}
.ws22{word-spacing:0.932490px;}
.ws10d{word-spacing:0.981614px;}
.ws48{word-spacing:1.003861px;}
.ws1a{word-spacing:1.004435px;}
.ws2c{word-spacing:1.075878px;}
.ws14{word-spacing:1.147823px;}
.ws12d{word-spacing:1.177779px;}
.ws12e{word-spacing:1.243822px;}
.ws117{word-spacing:1.283880px;}
.ws3a{word-spacing:1.290638px;}
.ws1d{word-spacing:1.291283px;}
.ws12f{word-spacing:1.308622px;}
.ws139{word-spacing:1.374599px;}
.ws28{word-spacing:1.434672px;}
.ws2e{word-spacing:1.506689px;}
.wscf{word-spacing:1.578060px;}
.ws100{word-spacing:1.649880px;}
.ws121{word-spacing:1.652304px;}
.ws11c{word-spacing:1.701608px;}
.wsba{word-spacing:1.721448px;}
.wsfc{word-spacing:1.832385px;}
.ws2a{word-spacing:1.864837px;}
.ws108{word-spacing:1.898362px;}
.ws49{word-spacing:1.936280px;}
.ws60{word-spacing:1.936853px;}
.wsc7{word-spacing:2.008225px;}
.ws47{word-spacing:2.008870px;}
.ws10a{word-spacing:2.028616px;}
.ws63{word-spacing:2.080242px;}
.ws109{word-spacing:2.094593px;}
.ws2d{word-spacing:2.151685px;}
.ws11b{word-spacing:2.159982px;}
.wsde{word-spacing:2.295073px;}
.wsc9{word-spacing:2.367090px;}
.ws127{word-spacing:2.487579px;}
.ws45{word-spacing:2.510478px;}
.ws115{word-spacing:2.552379px;}
.ws20{word-spacing:2.653867px;}
.ws13b{word-spacing:2.683810px;}
.wsb2{word-spacing:2.725238px;}
.ws4e{word-spacing:2.725883px;}
.wsec{word-spacing:2.726457px;}
.ws23{word-spacing:2.797255px;}
.ws3d{word-spacing:2.797829px;}
.ws6c{word-spacing:2.869272px;}
.wsb8{word-spacing:2.940643px;}
.ws97{word-spacing:2.941289px;}
.ws133{word-spacing:2.945365px;}
.ws8e{word-spacing:3.048000px;}
.ws4a{word-spacing:3.084031px;}
.ws32{word-spacing:3.156048px;}
.ws3f{word-spacing:3.299437px;}
.ws61{word-spacing:3.370880px;}
.wsfa{word-spacing:3.403804px;}
.ws53{word-spacing:3.442825px;}
.ws42{word-spacing:3.514842px;}
.ws10e{word-spacing:3.534581px;}
.ws3{word-spacing:3.550482px;}
.wsea{word-spacing:3.658230px;}
.ws75{word-spacing:3.658876px;}
.ws86{word-spacing:3.660000px;}
.ws87{word-spacing:3.672000px;}
.ws36{word-spacing:3.729673px;}
.wsdd{word-spacing:3.730247px;}
.ws13a{word-spacing:3.730813px;}
.ws8a{word-spacing:3.744000px;}
.wsaa{word-spacing:3.801690px;}
.wsdc{word-spacing:3.873635px;}
.ws102{word-spacing:3.927567px;}
.ws55{word-spacing:3.945078px;}
.ws99{word-spacing:4.016450px;}
.ws98{word-spacing:4.017023px;}
.wsc3{word-spacing:4.088467px;}
.wsf4{word-spacing:4.123798px;}
.ws33{word-spacing:4.159838px;}
.ws41{word-spacing:4.375243px;}
.ws54{word-spacing:4.447260px;}
.ws4b{word-spacing:4.590648px;}
.wsb6{word-spacing:4.662091px;}
.ws35{word-spacing:4.662665px;}
.ws12b{word-spacing:4.713015px;}
.ws6b{word-spacing:4.734037px;}
.ws31{word-spacing:4.877425px;}
.ws5d{word-spacing:4.878070px;}
.wsef{word-spacing:4.948868px;}
.wse0{word-spacing:4.949442px;}
.wsbd{word-spacing:5.092830px;}
.wsbe{word-spacing:5.096567px;}
.ws125{word-spacing:5.106001px;}
.wsd{word-spacing:5.164273px;}
.wsf0{word-spacing:5.308235px;}
.ws69{word-spacing:5.363311px;}
.ws67{word-spacing:5.366369px;}
.wsc4{word-spacing:5.451623px;}
.ws64{word-spacing:5.523067px;}
.ws136{word-spacing:5.563786px;}
.ws2b{word-spacing:5.595083px;}
.ws135{word-spacing:5.628586px;}
.ws134{word-spacing:5.629175px;}
.wsc2{word-spacing:5.666455px;}
.ws8c{word-spacing:5.670000px;}
.ws18{word-spacing:5.680844px;}
.ws8d{word-spacing:5.736000px;}
.ws8b{word-spacing:5.742000px;}
.wsf1{word-spacing:5.809843px;}
.wsb4{word-spacing:5.881860px;}
.wsa4{word-spacing:5.953231px;}
.ws34{word-spacing:6.025248px;}
.wsb9{word-spacing:6.096691px;}
.wsce{word-spacing:6.168637px;}
.wse4{word-spacing:6.240080px;}
.ws59{word-spacing:6.240653px;}
.ws44{word-spacing:6.312025px;}
.ws58{word-spacing:6.384042px;}
.wse1{word-spacing:6.455485px;}
.wsc5{word-spacing:6.527430px;}
.ws7e{word-spacing:6.672000px;}
.ws7b{word-spacing:6.729420px;}
.ws7a{word-spacing:6.742261px;}
.ws7c{word-spacing:6.742835px;}
.ws85{word-spacing:6.744000px;}
.wsb1{word-spacing:6.814278px;}
.wse7{word-spacing:6.957667px;}
.ws8f{word-spacing:6.984000px;}
.ws104{word-spacing:7.069228px;}
.ws24{word-spacing:7.101055px;}
.ws25{word-spacing:7.173072px;}
.wsf6{word-spacing:7.330783px;}
.ws124{word-spacing:7.395582px;}
.ws123{word-spacing:7.396826px;}
.ws84{word-spacing:7.458000px;}
.ws5b{word-spacing:7.459848px;}
.ws21{word-spacing:7.531865px;}
.ws88{word-spacing:7.602000px;}
.wse9{word-spacing:7.603237px;}
.ws101{word-spacing:7.657791px;}
.ws111{word-spacing:7.723768px;}
.wsb7{word-spacing:7.746625px;}
.ws5c{word-spacing:7.818642px;}
.wse8{word-spacing:7.890085px;}
.wsa6{word-spacing:7.961456px;}
.wsa5{word-spacing:7.962030px;}
.wsf{word-spacing:8.033473px;}
.ws1b{word-spacing:8.034047px;}
.ws2f{word-spacing:8.105490px;}
.ws6f{word-spacing:8.177435px;}
.wsc6{word-spacing:8.248878px;}
.ws132{word-spacing:8.312985px;}
.wsb0{word-spacing:8.537017px;}
.wsb5{word-spacing:8.679043px;}
.ws10f{word-spacing:8.705382px;}
.ws110{word-spacing:8.705971px;}
.wsf2{word-spacing:8.751060px;}
.ws96{word-spacing:9.037837px;}
.ws10{word-spacing:9.109853px;}
.ws6d{word-spacing:9.181225px;}
.ws52{word-spacing:9.253242px;}
.ws126{word-spacing:9.490175px;}
.wsbb{word-spacing:9.540090px;}
.wse6{word-spacing:9.754850px;}
.wseb{word-spacing:9.898238px;}
.wsa1{word-spacing:10.040508px;}
.wsa2{word-spacing:10.042272px;}
.wsa3{word-spacing:10.042846px;}
.wsbf{word-spacing:10.047210px;}
.ws4d{word-spacing:10.400420px;}
.ws6e{word-spacing:10.401065px;}
.wsb3{word-spacing:10.615825px;}
.wsda{word-spacing:10.902673px;}
.ws39{word-spacing:11.046061px;}
.ws6a{word-spacing:11.046635px;}
.ws51{word-spacing:11.118078px;}
.ws113{word-spacing:11.193027px;}
.wsf9{word-spacing:11.388603px;}
.wsf5{word-spacing:11.585423px;}
.wsdf{word-spacing:11.620260px;}
.wsd0{word-spacing:11.799960px;}
.ws30{word-spacing:11.835665px;}
.ws5e{word-spacing:11.978480px;}
.ws129{word-spacing:12.763203px;}
.wsd2{word-spacing:13.198248px;}
.wsc0{word-spacing:14.205977px;}
.ws38{word-spacing:14.776237px;}
.wse3{word-spacing:14.848253px;}
.ws11d{word-spacing:15.577790px;}
.ws72{word-spacing:15.637283px;}
.ws5f{word-spacing:16.558446px;}
.ws82{word-spacing:16.806000px;}
.ws83{word-spacing:17.502000px;}
.ws73{word-spacing:19.582218px;}
.wsd8{word-spacing:19.882021px;}
.ws93{word-spacing:22.927500px;}
.ws90{word-spacing:22.948009px;}
.wsb{word-spacing:25.749240px;}
.ws70{word-spacing:31.991437px;}
.ws9c{word-spacing:38.088702px;}
.ws7f{word-spacing:39.606000px;}
.ws6{word-spacing:58.139568px;}
.ws7{word-spacing:58.162405px;}
._39{margin-left:-12.206695px;}
._1c{margin-left:-9.500882px;}
._5{margin-left:-8.263200px;}
._c{margin-left:-7.208911px;}
._1e{margin-left:-6.180302px;}
._4{margin-left:-5.164810px;}
._9{margin-left:-3.335473px;}
._0{margin-left:-1.614579px;}
._2{width:1.390493px;}
._7{width:3.150778px;}
._1d{width:5.154330px;}
._14{width:6.325894px;}
._3a{width:7.985384px;}
._30{width:9.755423px;}
._36{width:12.122370px;}
._3{width:15.494378px;}
._1{width:17.699960px;}
._10{width:19.230457px;}
._8{width:20.563811px;}
._24{width:23.033523px;}
._b{width:24.283716px;}
._f{width:25.357209px;}
._2e{width:26.410894px;}
._a{width:27.415387px;}
._11{width:28.660625px;}
._15{width:29.712157px;}
._d{width:31.345795px;}
._18{width:33.329069px;}
._17{width:34.360931px;}
._6{width:35.532070px;}
._2f{width:36.712827px;}
._16{width:39.451787px;}
._35{width:40.966512px;}
._33{width:42.917273px;}
._12{width:45.550719px;}
._13{width:46.693255px;}
._e{width:48.632384px;}
._2b{width:51.108566px;}
._34{width:52.936668px;}
._31{width:54.084013px;}
._32{width:55.745259px;}
._19{width:57.099465px;}
._1a{width:58.138178px;}
._37{width:59.150129px;}
._2c{width:60.593924px;}
._38{width:65.454000px;}
._1b{width:68.071770px;}
._2d{width:71.427913px;}
._1f{width:201.901761px;}
._2a{width:345.622406px;}
._28{width:395.498636px;}
._27{width:408.489172px;}
._23{width:414.714486px;}
._29{width:424.411450px;}
._22{width:436.641576px;}
._25{width:453.006000px;}
._26{width:498.430152px;}
._20{width:519.961837px;}
._21{width:534.757122px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.844000px;}
.fs3{font-size:47.820000px;}
.fs9{font-size:52.362000px;}
.fs0{font-size:53.796000px;}
.fs5{font-size:59.778000px;}
.fs2{font-size:65.454000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:71.730000px;}
.fs7{font-size:86.076000px;}
.fs1{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:5.362500px;}
.y29{bottom:33.960082px;}
.y28{bottom:85.318500px;}
.y59{bottom:87.007500px;}
.yc9{bottom:92.259000px;}
.y18b{bottom:97.917000px;}
.ye9{bottom:98.979000px;}
.y119{bottom:100.131000px;}
.y9b{bottom:100.894500px;}
.y27{bottom:106.240500px;}
.y58{bottom:107.929500px;}
.yf8{bottom:109.419000px;}
.y15c{bottom:110.619000px;}
.yc8{bottom:113.179500px;}
.y134{bottom:115.576500px;}
.y18a{bottom:118.240500px;}
.ye8{bottom:119.901000px;}
.y118{bottom:121.051500px;}
.y26{bottom:127.162500px;}
.y57{bottom:128.850000px;}
.yf7{bottom:130.341000px;}
.y15b{bottom:130.942500px;}
.y75{bottom:132.156000px;}
.yc7{bottom:134.101500px;}
.y9a{bottom:135.724500px;}
.yb2{bottom:136.128000px;}
.y133{bottom:136.498500px;}
.y117{bottom:141.973500px;}
.y189{bottom:145.288500px;}
.y25{bottom:148.084500px;}
.y56{bottom:149.772000px;}
.y74{bottom:150.088500px;}
.yf6{bottom:151.261500px;}
.y15a{bottom:151.266000px;}
.yc6{bottom:155.023500px;}
.y99{bottom:156.646500px;}
.yb1{bottom:157.050000px;}
.ye7{bottom:157.261500px;}
.y132{bottom:157.420500px;}
.y116{bottom:162.895500px;}
.y188{bottom:165.612000px;}
.y73{bottom:168.022500px;}
.y55{bottom:170.694000px;}
.y159{bottom:171.591000px;}
.yf5{bottom:172.183500px;}
.yc5{bottom:175.944000px;}
.y98{bottom:177.568500px;}
.y24{bottom:177.972000px;}
.y131{bottom:178.341000px;}
.y115{bottom:183.817500px;}
.y72{bottom:185.955000px;}
.y54{bottom:191.614500px;}
.y187{bottom:192.661500px;}
.yf4{bottom:193.105500px;}
.yc4{bottom:196.866000px;}
.y158{bottom:198.639000px;}
.y23{bottom:198.894000px;}
.ye6{bottom:202.093500px;}
.y114{bottom:204.738000px;}
.y97{bottom:207.456000px;}
.y53{bottom:212.536500px;}
.y186{bottom:212.985000px;}
.y130{bottom:215.701500px;}
.y157{bottom:218.962500px;}
.y22{bottom:219.814500px;}
.ye5{bottom:223.014000px;}
.y113{bottom:225.660000px;}
.y96{bottom:228.378000px;}
.yf3{bottom:230.464500px;}
.y185{bottom:233.308500px;}
.y52{bottom:233.458500px;}
.yc3{bottom:234.226500px;}
.y156{bottom:239.286000px;}
.y21{bottom:240.736500px;}
.ye4{bottom:243.936000px;}
.y95{bottom:249.300000px;}
.yb0{bottom:249.703500px;}
.y112{bottom:255.547500px;}
.y184{bottom:260.358000px;}
.y20{bottom:261.658500px;}
.y51{bottom:263.346000px;}
.y155{bottom:266.335500px;}
.ye3{bottom:266.352000px;}
.y12f{bottom:266.511000px;}
.y94{bottom:270.220500px;}
.y111{bottom:276.469500px;}
.yaf{bottom:278.881500px;}
.yc2{bottom:279.058500px;}
.y183{bottom:280.681500px;}
.y1f{bottom:282.579000px;}
.y50{bottom:284.268000px;}
.yad{bottom:285.066000px;}
.yf2{bottom:285.652500px;}
.y154{bottom:286.659000px;}
.ye2{bottom:287.274000px;}
.y12e{bottom:287.433000px;}
.y110{bottom:297.391500px;}
.yc1{bottom:299.979000px;}
.y182{bottom:301.005000px;}
.y1e{bottom:303.501000px;}
.yae{bottom:304.971000px;}
.y4f{bottom:305.188500px;}
.y93{bottom:305.668500px;}
.y153{bottom:306.982500px;}
.y12d{bottom:308.353500px;}
.ye1{bottom:309.690000px;}
.y92{bottom:312.063000px;}
.y10f{bottom:318.312000px;}
.yac{bottom:320.430000px;}
.yc0{bottom:320.901000px;}
.y1d{bottom:324.423000px;}
.y4e{bottom:326.110500px;}
.y152{bottom:327.306000px;}
.y181{bottom:328.053000px;}
.y12c{bottom:329.275500px;}
.ye0{bottom:330.610500px;}
.y10e{bottom:339.234000px;}
.yab{bottom:341.350500px;}
.ybf{bottom:341.823000px;}
.y1c{bottom:345.343500px;}
.y4d{bottom:347.032500px;}
.y151{bottom:347.629500px;}
.y180{bottom:348.378000px;}
.y91{bottom:349.423500px;}
.y12b{bottom:350.197500px;}
.ydf{bottom:351.532500px;}
.yaa{bottom:362.272500px;}
.ybe{bottom:362.743500px;}
.y1b{bottom:366.265500px;}
.y4c{bottom:367.954500px;}
.y10d{bottom:369.121500px;}
.y12a{bottom:371.119500px;}
.yde{bottom:372.454500px;}
.y150{bottom:374.679000px;}
.y17f{bottom:375.426000px;}
.ya9{bottom:383.194500px;}
.y1a{bottom:387.187500px;}
.y4b{bottom:388.875000px;}
.y10c{bottom:390.043500px;}
.y129{bottom:392.040000px;}
.y90{bottom:394.255500px;}
.y14f{bottom:395.002500px;}
.y17e{bottom:395.749500px;}
.ybd{bottom:398.908500px;}
.ydd{bottom:402.342000px;}
.ya8{bottom:404.115000px;}
.y4a{bottom:409.797000px;}
.y10b{bottom:410.965500px;}
.ybc{bottom:411.312000px;}
.y128{bottom:412.962000px;}
.y8f{bottom:415.177500px;}
.y14e{bottom:415.326000px;}
.y17d{bottom:416.073000px;}
.y19{bottom:424.546500px;}
.y71{bottom:424.741500px;}
.y10a{bottom:431.886000px;}
.y127{bottom:433.884000px;}
.ya7{bottom:434.004000px;}
.y8e{bottom:436.098000px;}
.ydc{bottom:439.702500px;}
.y14d{bottom:442.375500px;}
.y17c{bottom:443.122500px;}
.y49{bottom:447.157500px;}
.y109{bottom:452.808000px;}
.y126{bottom:454.804500px;}
.ya6{bottom:454.924500px;}
.y8d{bottom:457.020000px;}
.y14c{bottom:462.699000px;}
.y17b{bottom:463.446000px;}
.y70{bottom:469.573500px;}
.ybb{bottom:470.340000px;}
.y18{bottom:475.356000px;}
.y125{bottom:475.726500px;}
.ya5{bottom:475.846500px;}
.y8c{bottom:477.942000px;}
.y108{bottom:482.695500px;}
.y14b{bottom:483.022500px;}
.y17a{bottom:483.769500px;}
.ydb{bottom:484.534500px;}
.y6f{bottom:490.494000px;}
.y48{bottom:497.967000px;}
.y8b{bottom:498.864000px;}
.yb9{bottom:500.527500px;}
.yba{bottom:501.274500px;}
.y107{bottom:503.617500px;}
.y179{bottom:504.093000px;}
.yda{bottom:505.455000px;}
.y124{bottom:505.614000px;}
.ya4{bottom:508.663500px;}
.y14a{bottom:510.070500px;}
.y6e{bottom:511.416000px;}
.y17{bottom:513.961500px;}
.y47{bottom:518.887500px;}
.y8a{bottom:519.784500px;}
.ya3{bottom:520.965000px;}
.y178{bottom:524.416500px;}
.y106{bottom:524.539500px;}
.yd9{bottom:526.377000px;}
.y123{bottom:526.536000px;}
.y149{bottom:530.395500px;}
.y6d{bottom:532.338000px;}
.y16{bottom:534.882000px;}
.y46{bottom:539.809500px;}
.y89{bottom:540.706500px;}
.yb8{bottom:544.344000px;}
.y105{bottom:545.461500px;}
.yd8{bottom:547.299000px;}
.y122{bottom:547.458000px;}
.y148{bottom:550.719000px;}
.y177{bottom:551.466000px;}
.y6c{bottom:553.258500px;}
.y15{bottom:555.804000px;}
.ya2{bottom:560.137500px;}
.y45{bottom:560.731500px;}
.y88{bottom:561.628500px;}
.y104{bottom:567.876000px;}
.y121{bottom:568.378500px;}
.y147{bottom:571.042500px;}
.yf1{bottom:571.236000px;}
.y176{bottom:571.789500px;}
.y6b{bottom:574.180500px;}
.yb7{bottom:576.444000px;}
.y14{bottom:576.726000px;}
.yd7{bottom:577.186500px;}
.ya1{bottom:581.059500px;}
.y44{bottom:581.652000px;}
.y103{bottom:588.798000px;}
.y120{bottom:589.300500px;}
.y146{bottom:591.366000px;}
.y175{bottom:592.113000px;}
.yf0{bottom:592.158000px;}
.y13{bottom:597.646500px;}
.yd6{bottom:598.108500px;}
.y87{bottom:598.987500px;}
.y43{bottom:602.574000px;}
.ya0{bottom:605.026500px;}
.yb6{bottom:606.331500px;}
.y102{bottom:609.720000px;}
.y11f{bottom:610.222500px;}
.y6a{bottom:611.541000px;}
.y174{bottom:612.436500px;}
.yef{bottom:613.080000px;}
.y9f{bottom:617.326500px;}
.y145{bottom:618.415500px;}
.y12{bottom:618.568500px;}
.yd5{bottom:619.029000px;}
.yb5{bottom:627.253500px;}
.y42{bottom:632.461500px;}
.yee{bottom:634.000500px;}
.y144{bottom:638.739000px;}
.y173{bottom:639.486000px;}
.y11{bottom:639.490500px;}
.y101{bottom:639.607500px;}
.yd4{bottom:639.951000px;}
.y11e{bottom:647.581500px;}
.yb4{bottom:648.174000px;}
.y41{bottom:653.383500px;}
.yed{bottom:654.922500px;}
.y86{bottom:655.741500px;}
.y9e{bottom:656.652000px;}
.y143{bottom:659.062500px;}
.y172{bottom:659.809500px;}
.y10{bottom:660.411000px;}
.yd3{bottom:660.873000px;}
.y69{bottom:662.350500px;}
.y100{bottom:669.495000px;}
.y40{bottom:674.305500px;}
.yec{bottom:675.844500px;}
.y85{bottom:676.663500px;}
.y9d{bottom:677.574000px;}
.y142{bottom:679.386000px;}
.y171{bottom:680.133000px;}
.yf{bottom:681.333000px;}
.yd2{bottom:681.793500px;}
.y68{bottom:683.271000px;}
.yff{bottom:690.417000px;}
.y3f{bottom:695.226000px;}
.y84{bottom:697.585500px;}
.yb3{bottom:699.880500px;}
.ye{bottom:702.255000px;}
.y67{bottom:704.193000px;}
.y170{bottom:707.182500px;}
.y141{bottom:708.676500px;}
.yfe{bottom:711.339000px;}
.y11d{bottom:712.441500px;}
.y3e{bottom:716.148000px;}
.y83{bottom:718.506000px;}
.yd1{bottom:719.154000px;}
.yd{bottom:723.177000px;}
.y66{bottom:725.115000px;}
.y9c{bottom:726.580500px;}
.y16f{bottom:727.506000px;}
.yeb{bottom:727.551000px;}
.y11c{bottom:730.375500px;}
.yfd{bottom:732.261000px;}
.y82{bottom:739.428000px;}
.yea{bottom:745.483500px;}
.y3d{bottom:746.035500px;}
.y16e{bottom:747.829500px;}
.y11b{bottom:748.308000px;}
.yfc{bottom:753.181500px;}
.y140{bottom:759.486000px;}
.y81{bottom:760.350000px;}
.yd0{bottom:763.986000px;}
.y11a{bottom:766.240500px;}
.y3c{bottom:766.957500px;}
.y16d{bottom:768.153000px;}
.yc{bottom:770.622000px;}
.yfb{bottom:774.103500px;}
.y65{bottom:775.924500px;}
.y13f{bottom:780.408000px;}
.y80{bottom:781.270500px;}
.ycf{bottom:784.908000px;}
.y3b{bottom:787.879500px;}
.y16c{bottom:795.202500px;}
.y64{bottom:796.845000px;}
.y13e{bottom:801.328500px;}
.y7f{bottom:802.192500px;}
.yb{bottom:802.819500px;}
.yce{bottom:805.828500px;}
.y3a{bottom:808.801500px;}
.yfa{bottom:811.464000px;}
.y16b{bottom:815.526000px;}
.y63{bottom:817.767000px;}
.y13d{bottom:822.250500px;}
.ycd{bottom:826.750500px;}
.ya{bottom:829.593000px;}
.y39{bottom:829.722000px;}
.y16a{bottom:835.849500px;}
.y7e{bottom:836.145000px;}
.y62{bottom:838.689000px;}
.y13c{bottom:843.172500px;}
.y38{bottom:850.644000px;}
.y169{bottom:856.173000px;}
.y61{bottom:859.609500px;}
.yf9{bottom:863.169000px;}
.y13b{bottom:864.093000px;}
.ycc{bottom:864.111000px;}
.y9{bottom:868.627500px;}
.y7d{bottom:870.370500px;}
.y37{bottom:871.566000px;}
.y60{bottom:880.531500px;}
.y168{bottom:883.221000px;}
.y13a{bottom:885.015000px;}
.y8{bottom:888.951000px;}
.y7c{bottom:891.291000px;}
.y36{bottom:892.486500px;}
.y5f{bottom:901.453500px;}
.y167{bottom:903.546000px;}
.y35{bottom:913.408500px;}
.ycb{bottom:915.816000px;}
.y7b{bottom:921.180000px;}
.y5e{bottom:922.375500px;}
.y166{bottom:923.869500px;}
.yca{bottom:933.750000px;}
.y34{bottom:934.330500px;}
.y7{bottom:935.143500px;}
.y7a{bottom:942.699000px;}
.y5d{bottom:943.296000px;}
.y165{bottom:944.193000px;}
.y79{bottom:957.822000px;}
.y33{bottom:964.218000px;}
.y164{bottom:964.516500px;}
.y6{bottom:968.019000px;}
.y139{bottom:973.185000px;}
.y32{bottom:985.140000px;}
.y163{bottom:991.566000px;}
.y78{bottom:994.105500px;}
.y31{bottom:1006.060500px;}
.y138{bottom:1010.544000px;}
.y162{bottom:1011.889500px;}
.y77{bottom:1015.027500px;}
.y30{bottom:1026.982500px;}
.y161{bottom:1032.213000px;}
.y76{bottom:1035.949500px;}
.y5{bottom:1039.438500px;}
.y2f{bottom:1047.904500px;}
.y160{bottom:1052.536500px;}
.y5c{bottom:1056.870000px;}
.y137{bottom:1061.353500px;}
.y4{bottom:1064.718000px;}
.y2e{bottom:1068.825000px;}
.y15f{bottom:1072.860000px;}
.y5b{bottom:1077.792000px;}
.y136{bottom:1082.275500px;}
.y2d{bottom:1089.747000px;}
.y3{bottom:1089.997500px;}
.y5a{bottom:1098.714000px;}
.y15e{bottom:1099.909500px;}
.y135{bottom:1103.197500px;}
.y2{bottom:1115.277000px;}
.y2c{bottom:1119.634500px;}
.y15d{bottom:1120.233000px;}
.y1{bottom:1140.556500px;}
.y2b{bottom:1193.604000px;}
.hf{height:2.869200px;}
.ha{height:22.522500px;}
.h6{height:31.048248px;}
.hc{height:35.865000px;}
.h2{height:39.916632px;}
.he{height:44.295498px;}
.h7{height:44.355276px;}
.h1b{height:44.833500px;}
.h11{height:48.501414px;}
.h12{height:48.566868px;}
.h13{height:49.090500px;}
.h22{height:49.778868px;}
.hd{height:53.151930px;}
.h8{height:53.223660px;}
.h10{height:53.797500px;}
.h5{height:59.230440px;}
.h4{height:59.236440px;}
.h14{height:60.973200px;}
.h21{height:61.516440px;}
.h20{height:61.899000px;}
.h9{height:63.782316px;}
.h15{height:67.699200px;}
.hb{height:68.610352px;}
.h3{height:76.537890px;}
.h16{height:99.097650px;}
.h18{height:102.319500px;}
.h17{height:102.423660px;}
.h19{height:102.429660px;}
.h1f{height:105.805500px;}
.h1a{height:107.227200px;}
.h1d{height:153.625200px;}
.h1e{height:175.147200px;}
.h1c{height:178.135200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:18.348000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:105.840000px;}
.xc{left:110.095500px;}
.x16{left:113.397000px;}
.x14{left:115.404000px;}
.xe{left:119.233500px;}
.x2a{left:121.684500px;}
.x2{left:127.762500px;}
.x28{left:129.873000px;}
.x27{left:132.291000px;}
.x9{left:138.567000px;}
.xd{left:147.580500px;}
.x2c{left:149.497500px;}
.x7{left:170.743500px;}
.x11{left:174.522000px;}
.x12{left:178.320000px;}
.x1f{left:190.815000px;}
.x29{left:243.229500px;}
.x4{left:247.107000px;}
.xb{left:250.872000px;}
.x6{left:253.599000px;}
.x10{left:262.876500px;}
.x15{left:285.049500px;}
.x20{left:295.747500px;}
.x21{left:310.330500px;}
.x8{left:311.499000px;}
.xf{left:342.306000px;}
.x13{left:346.745700px;}
.x2d{left:348.046500px;}
.x3{left:354.217500px;}
.x5{left:362.991000px;}
.x19{left:388.654500px;}
.x17{left:392.173500px;}
.x1b{left:398.383500px;}
.x2b{left:402.589500px;}
.x1c{left:411.790500px;}
.x25{left:422.235000px;}
.x22{left:423.540000px;}
.x26{left:431.094000px;}
.xa{left:437.279984px;}
.x18{left:460.975500px;}
.x1a{left:462.051000px;}
.x23{left:482.158500px;}
.x24{left:558.726000px;}
.x1d{left:571.134000px;}
.x1e{left:584.331000px;}
@media print{
.vd{vertical-align:-70.773333pt;}
.v4{vertical-align:-61.210667pt;}
.v10{vertical-align:-60.149333pt;}
.v3{vertical-align:-51.648000pt;}
.vb{vertical-align:-45.669333pt;}
.vf{vertical-align:-42.741333pt;}
.v11{vertical-align:-37.008000pt;}
.v2{vertical-align:-19.280000pt;}
.v6{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v1a{vertical-align:1.077333pt;}
.v9{vertical-align:9.562667pt;}
.ve{vertical-align:12.426667pt;}
.v8{vertical-align:18.416000pt;}
.v1{vertical-align:21.114667pt;}
.v12{vertical-align:23.141333pt;}
.va{vertical-align:43.136000pt;}
.v17{vertical-align:44.101333pt;}
.v14{vertical-align:46.757333pt;}
.v5{vertical-align:51.648000pt;}
.v7{vertical-align:57.626667pt;}
.v19{vertical-align:80.768000pt;}
.v18{vertical-align:90.330667pt;}
.vc{vertical-align:92.762667pt;}
.v15{vertical-align:109.034667pt;}
.v16{vertical-align:134.005333pt;}
.v13{vertical-align:155.792000pt;}
.ls2b{letter-spacing:-29.024000pt;}
.ls2d{letter-spacing:-7.648000pt;}
.ls2c{letter-spacing:-4.464000pt;}
.ls2e{letter-spacing:-4.250667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000032pt;}
.ls5{letter-spacing:0.000533pt;}
.ls4{letter-spacing:0.001147pt;}
.ls6{letter-spacing:0.001200pt;}
.ls7{letter-spacing:0.001297pt;}
.ls8{letter-spacing:0.001333pt;}
.lse{letter-spacing:0.001371pt;}
.ls3{letter-spacing:0.001396pt;}
.ls38{letter-spacing:0.001493pt;}
.ls9{letter-spacing:0.001520pt;}
.lsb{letter-spacing:0.001680pt;}
.lsd{letter-spacing:0.004133pt;}
.ls1f{letter-spacing:0.005333pt;}
.ls5c{letter-spacing:0.005973pt;}
.ls31{letter-spacing:0.006827pt;}
.ls58{letter-spacing:0.011307pt;}
.ls43{letter-spacing:0.015280pt;}
.ls57{letter-spacing:0.017253pt;}
.ls12{letter-spacing:0.019253pt;}
.ls5e{letter-spacing:0.023813pt;}
.ls1a{letter-spacing:0.024587pt;}
.ls1b{letter-spacing:0.026773pt;}
.ls62{letter-spacing:0.029147pt;}
.ls5d{letter-spacing:0.032107pt;}
.ls13{letter-spacing:0.036720pt;}
.ls50{letter-spacing:0.040507pt;}
.ls27{letter-spacing:0.048533pt;}
.ls24{letter-spacing:0.053867pt;}
.ls17{letter-spacing:0.058960pt;}
.ls4a{letter-spacing:0.075307pt;}
.ls20{letter-spacing:0.080640pt;}
.ls23{letter-spacing:0.090773pt;}
.ls26{letter-spacing:0.093147pt;}
.ls4c{letter-spacing:0.096640pt;}
.ls6e{letter-spacing:0.101973pt;}
.ls19{letter-spacing:0.107307pt;}
.ls29{letter-spacing:0.119627pt;}
.ls56{letter-spacing:0.124027pt;}
.ls25{letter-spacing:0.126997pt;}
.ls28{letter-spacing:0.158810pt;}
.ls55{letter-spacing:0.509467pt;}
.ls76{letter-spacing:0.573840pt;}
.ls75{letter-spacing:0.828816pt;}
.ls30{letter-spacing:2.294853pt;}
.ls51{letter-spacing:2.317147pt;}
.lsc{letter-spacing:2.543255pt;}
.ls0{letter-spacing:2.653099pt;}
.ls4b{letter-spacing:2.663733pt;}
.ls6f{letter-spacing:2.664747pt;}
.ls15{letter-spacing:2.666293pt;}
.ls70{letter-spacing:2.670080pt;}
.ls14{letter-spacing:2.671627pt;}
.ls7a{letter-spacing:2.885868pt;}
.lsa{letter-spacing:2.930293pt;}
.ls59{letter-spacing:3.687813pt;}
.ls52{letter-spacing:4.035413pt;}
.ls63{letter-spacing:5.181067pt;}
.ls5f{letter-spacing:5.186400pt;}
.ls41{letter-spacing:6.388613pt;}
.ls3b{letter-spacing:6.429893pt;}
.ls34{letter-spacing:6.467227pt;}
.ls46{letter-spacing:8.858293pt;}
.ls42{letter-spacing:9.599627pt;}
.ls6b{letter-spacing:10.629973pt;}
.ls64{letter-spacing:10.635307pt;}
.ls68{letter-spacing:10.714480pt;}
.ls2{letter-spacing:11.817867pt;}
.ls33{letter-spacing:12.881520pt;}
.ls3a{letter-spacing:12.940827pt;}
.ls22{letter-spacing:14.154480pt;}
.ls5a{letter-spacing:14.176640pt;}
.ls60{letter-spacing:14.193253pt;}
.ls61{letter-spacing:14.203973pt;}
.ls5b{letter-spacing:14.218480pt;}
.ls7c{letter-spacing:15.884256pt;}
.ls7f{letter-spacing:16.118923pt;}
.ls79{letter-spacing:16.172256pt;}
.ls7b{letter-spacing:16.230923pt;}
.ls4d{letter-spacing:16.512533pt;}
.ls80{letter-spacing:16.527444pt;}
.ls78{letter-spacing:16.582923pt;}
.ls21{letter-spacing:16.836960pt;}
.ls48{letter-spacing:17.114347pt;}
.ls7e{letter-spacing:17.281589pt;}
.ls81{letter-spacing:17.402049pt;}
.ls4e{letter-spacing:17.441120pt;}
.ls1e{letter-spacing:17.718640pt;}
.ls2f{letter-spacing:17.725893pt;}
.ls36{letter-spacing:17.726800pt;}
.ls53{letter-spacing:17.757840pt;}
.ls54{letter-spacing:17.787973pt;}
.ls1d{letter-spacing:17.791253pt;}
.ls66{letter-spacing:17.916027pt;}
.ls7d{letter-spacing:18.150923pt;}
.ls49{letter-spacing:18.644000pt;}
.ls4f{letter-spacing:19.701627pt;}
.ls37{letter-spacing:20.087493pt;}
.ls3f{letter-spacing:20.373013pt;}
.ls3e{letter-spacing:21.295147pt;}
.ls45{letter-spacing:21.297787pt;}
.ls40{letter-spacing:21.361787pt;}
.ls3d{letter-spacing:21.807947pt;}
.ls44{letter-spacing:21.902667pt;}
.ls72{letter-spacing:22.000533pt;}
.ls74{letter-spacing:22.304587pt;}
.ls77{letter-spacing:22.748256pt;}
.ls18{letter-spacing:23.700960pt;}
.ls1c{letter-spacing:23.731253pt;}
.ls71{letter-spacing:23.845867pt;}
.ls6d{letter-spacing:23.909867pt;}
.ls6a{letter-spacing:26.645627pt;}
.ls73{letter-spacing:29.076000pt;}
.ls16{letter-spacing:31.693920pt;}
.ls39{letter-spacing:42.817307pt;}
.ls67{letter-spacing:53.178960pt;}
.ls32{letter-spacing:66.737307pt;}
.ls69{letter-spacing:83.274960pt;}
.ls10{letter-spacing:344.373541pt;}
.ls11{letter-spacing:460.214976pt;}
.ls47{letter-spacing:556.113280pt;}
.ls2a{letter-spacing:559.302613pt;}
.ls65{letter-spacing:597.313280pt;}
.ls6c{letter-spacing:779.094613pt;}
.ls3c{letter-spacing:927.643947pt;}
.ls35{letter-spacing:940.139947pt;}
.ws66{word-spacing:-40.551360pt;}
.ws74{word-spacing:-29.967391pt;}
.ws77{word-spacing:-29.966817pt;}
.ws71{word-spacing:-29.903376pt;}
.ws68{word-spacing:-28.159765pt;}
.wsf3{word-spacing:-21.270336pt;}
.ws65{word-spacing:-17.725280pt;}
.ws106{word-spacing:-16.174411pt;}
.ws103{word-spacing:-15.825100pt;}
.wse2{word-spacing:-14.771808pt;}
.ws1{word-spacing:-13.293589pt;}
.wsf7{word-spacing:-12.939232pt;}
.ws8{word-spacing:-11.816853pt;}
.wsd1{word-spacing:-7.077296pt;}
.ws9d{word-spacing:-6.757397pt;}
.wsae{word-spacing:-6.755573pt;}
.wsaf{word-spacing:-6.691573pt;}
.ws9b{word-spacing:-6.629907pt;}
.wsad{word-spacing:-6.628320pt;}
.ws116{word-spacing:-6.458128pt;}
.ws81{word-spacing:-3.888000pt;}
.wsca{word-spacing:-3.825536pt;}
.ws80{word-spacing:-3.824000pt;}
.wsd6{word-spacing:-3.762095pt;}
.ws43{word-spacing:-3.761521pt;}
.ws120{word-spacing:-3.724245pt;}
.ws11f{word-spacing:-3.723722pt;}
.ws13{word-spacing:-3.698080pt;}
.wscd{word-spacing:-3.507119pt;}
.ws122{word-spacing:-3.316278pt;}
.ws9e{word-spacing:-3.315711pt;}
.ws57{word-spacing:-3.315137pt;}
.wsa0{word-spacing:-3.251696pt;}
.ws9f{word-spacing:-3.250293pt;}
.ws7d{word-spacing:-3.188064pt;}
.ws19{word-spacing:-2.933279pt;}
.ws131{word-spacing:-2.908834pt;}
.ws130{word-spacing:-2.907851pt;}
.ws105{word-spacing:-2.850653pt;}
.ws94{word-spacing:-2.741808pt;}
.wsd9{word-spacing:-2.614351pt;}
.wscb{word-spacing:-2.613841pt;}
.ws4c{word-spacing:-2.422880pt;}
.ws50{word-spacing:-2.231919pt;}
.wse5{word-spacing:-2.231409pt;}
.ws12{word-spacing:-2.167968pt;}
.ws12c{word-spacing:-2.152535pt;}
.wsdb{word-spacing:-1.912991pt;}
.wsc8{word-spacing:-1.849040pt;}
.ws118{word-spacing:-1.745091pt;}
.ws1c{word-spacing:-1.721520pt;}
.ws46{word-spacing:-1.657569pt;}
.ws89{word-spacing:-1.530667pt;}
.wse{word-spacing:-1.530623pt;}
.ws1f{word-spacing:-1.530112pt;}
.wscc{word-spacing:-1.339151pt;}
.wsa8{word-spacing:-1.338641pt;}
.wsa7{word-spacing:-1.275710pt;}
.wsd3{word-spacing:-1.275136pt;}
.ws17{word-spacing:-1.272788pt;}
.ws3c{word-spacing:-1.147680pt;}
.ws56{word-spacing:-1.020224pt;}
.ws62{word-spacing:-0.956209pt;}
.wsc1{word-spacing:-0.892768pt;}
.wsed{word-spacing:-0.892576pt;}
.ws114{word-spacing:-0.872545pt;}
.wsd7{word-spacing:-0.828752pt;}
.ws112{word-spacing:-0.639995pt;}
.wsee{word-spacing:-0.637600pt;}
.ws11{word-spacing:-0.573840pt;}
.wsd5{word-spacing:-0.446894pt;}
.ws29{word-spacing:-0.446320pt;}
.ws137{word-spacing:-0.408026pt;}
.wsd4{word-spacing:-0.382879pt;}
.wsff{word-spacing:-0.349321pt;}
.wsfe{word-spacing:-0.348797pt;}
.ws5a{word-spacing:-0.318354pt;}
.ws11a{word-spacing:-0.233074pt;}
.ws119{word-spacing:-0.232551pt;}
.ws12a{word-spacing:-0.174428pt;}
.ws79{word-spacing:-0.063951pt;}
.wsf8{word-spacing:-0.058181pt;}
.wsa9{word-spacing:-0.053136pt;}
.ws15{word-spacing:-0.000510pt;}
.ws26{word-spacing:-0.000340pt;}
.ws2{word-spacing:-0.000239pt;}
.ws9{word-spacing:-0.000053pt;}
.ws5{word-spacing:0.000000pt;}
.ws16{word-spacing:0.000064pt;}
.ws40{word-spacing:0.000077pt;}
.ws4{word-spacing:0.000184pt;}
.ws27{word-spacing:0.000213pt;}
.ws0{word-spacing:0.000287pt;}
.ws92{word-spacing:0.000373pt;}
.wsa{word-spacing:0.000478pt;}
.ws128{word-spacing:0.000524pt;}
.ws37{word-spacing:0.000574pt;}
.ws9a{word-spacing:0.003040pt;}
.wsab{word-spacing:0.005573pt;}
.ws107{word-spacing:0.058123pt;}
.wsfd{word-spacing:0.174369pt;}
.ws10c{word-spacing:0.231969pt;}
.ws10b{word-spacing:0.233074pt;}
.ws1e{word-spacing:0.254976pt;}
.ws78{word-spacing:0.255486pt;}
.ws76{word-spacing:0.257348pt;}
.ws11e{word-spacing:0.290674pt;}
.ws138{word-spacing:0.349756pt;}
.wsac{word-spacing:0.382050pt;}
.wsfb{word-spacing:0.407444pt;}
.ws4f{word-spacing:0.445937pt;}
.wsc{word-spacing:0.446448pt;}
.ws3b{word-spacing:0.573394pt;}
.ws91{word-spacing:0.573904pt;}
.ws95{word-spacing:0.637409pt;}
.wsbc{word-spacing:0.764865pt;}
.ws3e{word-spacing:0.765375pt;}
.ws22{word-spacing:0.828880pt;}
.ws10d{word-spacing:0.872545pt;}
.ws48{word-spacing:0.892321pt;}
.ws1a{word-spacing:0.892831pt;}
.ws2c{word-spacing:0.956336pt;}
.ws14{word-spacing:1.020288pt;}
.ws12d{word-spacing:1.046915pt;}
.ws12e{word-spacing:1.105620pt;}
.ws117{word-spacing:1.141227pt;}
.ws3a{word-spacing:1.147234pt;}
.ws1d{word-spacing:1.147808pt;}
.ws12f{word-spacing:1.163219pt;}
.ws139{word-spacing:1.221866pt;}
.ws28{word-spacing:1.275264pt;}
.ws2e{word-spacing:1.339279pt;}
.wscf{word-spacing:1.402720pt;}
.ws100{word-spacing:1.466560pt;}
.ws121{word-spacing:1.468715pt;}
.ws11c{word-spacing:1.512540pt;}
.wsba{word-spacing:1.530176pt;}
.wsfc{word-spacing:1.628786pt;}
.ws2a{word-spacing:1.657632pt;}
.ws108{word-spacing:1.687433pt;}
.ws49{word-spacing:1.721137pt;}
.ws60{word-spacing:1.721648pt;}
.wsc7{word-spacing:1.785089pt;}
.ws47{word-spacing:1.785663pt;}
.ws10a{word-spacing:1.803214pt;}
.ws63{word-spacing:1.849104pt;}
.ws109{word-spacing:1.861861pt;}
.ws2d{word-spacing:1.912609pt;}
.ws11b{word-spacing:1.919984pt;}
.wsde{word-spacing:2.040065pt;}
.wsc9{word-spacing:2.104080pt;}
.ws127{word-spacing:2.211182pt;}
.ws45{word-spacing:2.231536pt;}
.ws115{word-spacing:2.268781pt;}
.ws20{word-spacing:2.358992pt;}
.ws13b{word-spacing:2.385609pt;}
.wsb2{word-spacing:2.422434pt;}
.ws4e{word-spacing:2.423008pt;}
.wsec{word-spacing:2.423518pt;}
.ws23{word-spacing:2.486449pt;}
.ws3d{word-spacing:2.486959pt;}
.ws6c{word-spacing:2.550464pt;}
.wsb8{word-spacing:2.613905pt;}
.ws97{word-spacing:2.614479pt;}
.ws133{word-spacing:2.618102pt;}
.ws8e{word-spacing:2.709333pt;}
.ws4a{word-spacing:2.741361pt;}
.ws32{word-spacing:2.805376pt;}
.ws3f{word-spacing:2.932832pt;}
.ws61{word-spacing:2.996337pt;}
.wsfa{word-spacing:3.025604pt;}
.ws53{word-spacing:3.060289pt;}
.ws42{word-spacing:3.124304pt;}
.ws10e{word-spacing:3.141850pt;}
.ws3{word-spacing:3.155984pt;}
.wsea{word-spacing:3.251760pt;}
.ws75{word-spacing:3.252334pt;}
.ws86{word-spacing:3.253333pt;}
.ws87{word-spacing:3.264000pt;}
.ws36{word-spacing:3.315265pt;}
.wsdd{word-spacing:3.315775pt;}
.ws13a{word-spacing:3.316278pt;}
.ws8a{word-spacing:3.328000pt;}
.wsaa{word-spacing:3.379280pt;}
.wsdc{word-spacing:3.443231pt;}
.ws102{word-spacing:3.491171pt;}
.ws55{word-spacing:3.506736pt;}
.ws99{word-spacing:3.570177pt;}
.ws98{word-spacing:3.570688pt;}
.wsc3{word-spacing:3.634192pt;}
.wsf4{word-spacing:3.665599pt;}
.ws33{word-spacing:3.697634pt;}
.ws41{word-spacing:3.889105pt;}
.ws54{word-spacing:3.953120pt;}
.ws4b{word-spacing:4.080576pt;}
.wsb6{word-spacing:4.144081pt;}
.ws35{word-spacing:4.144591pt;}
.ws12b{word-spacing:4.189347pt;}
.ws6b{word-spacing:4.208032pt;}
.ws31{word-spacing:4.335489pt;}
.ws5d{word-spacing:4.336063pt;}
.wsef{word-spacing:4.398994pt;}
.wse0{word-spacing:4.399504pt;}
.wsbd{word-spacing:4.526960pt;}
.wsbe{word-spacing:4.530282pt;}
.ws125{word-spacing:4.538668pt;}
.wsd{word-spacing:4.590465pt;}
.wsf0{word-spacing:4.718431pt;}
.ws69{word-spacing:4.767388pt;}
.ws67{word-spacing:4.770106pt;}
.wsc4{word-spacing:4.845888pt;}
.ws64{word-spacing:4.909392pt;}
.ws136{word-spacing:4.945588pt;}
.ws2b{word-spacing:4.973408pt;}
.ws135{word-spacing:5.003187pt;}
.ws134{word-spacing:5.003711pt;}
.wsc2{word-spacing:5.036849pt;}
.ws8c{word-spacing:5.040000pt;}
.ws18{word-spacing:5.049639pt;}
.ws8d{word-spacing:5.098667pt;}
.ws8b{word-spacing:5.104000pt;}
.wsf1{word-spacing:5.164305pt;}
.wsb4{word-spacing:5.228320pt;}
.wsa4{word-spacing:5.291761pt;}
.ws34{word-spacing:5.355776pt;}
.wsb9{word-spacing:5.419281pt;}
.wsce{word-spacing:5.483232pt;}
.wse4{word-spacing:5.546737pt;}
.ws59{word-spacing:5.547248pt;}
.ws44{word-spacing:5.610689pt;}
.ws58{word-spacing:5.674704pt;}
.wse1{word-spacing:5.738209pt;}
.wsc5{word-spacing:5.802160pt;}
.ws7e{word-spacing:5.930667pt;}
.ws7b{word-spacing:5.981707pt;}
.ws7a{word-spacing:5.993121pt;}
.ws7c{word-spacing:5.993631pt;}
.ws85{word-spacing:5.994667pt;}
.wsb1{word-spacing:6.057136pt;}
.wse7{word-spacing:6.184592pt;}
.ws8f{word-spacing:6.208000pt;}
.ws104{word-spacing:6.283759pt;}
.ws24{word-spacing:6.312049pt;}
.ws25{word-spacing:6.376064pt;}
.wsf6{word-spacing:6.516251pt;}
.ws124{word-spacing:6.573851pt;}
.ws123{word-spacing:6.574956pt;}
.ws84{word-spacing:6.629333pt;}
.ws5b{word-spacing:6.630976pt;}
.ws21{word-spacing:6.694991pt;}
.ws88{word-spacing:6.757333pt;}
.wse9{word-spacing:6.758432pt;}
.ws101{word-spacing:6.806925pt;}
.ws111{word-spacing:6.865572pt;}
.wsb7{word-spacing:6.885889pt;}
.ws5c{word-spacing:6.949904pt;}
.wse8{word-spacing:7.013409pt;}
.wsa6{word-spacing:7.076850pt;}
.wsa5{word-spacing:7.077360pt;}
.wsf{word-spacing:7.140865pt;}
.ws1b{word-spacing:7.141375pt;}
.ws2f{word-spacing:7.204880pt;}
.ws6f{word-spacing:7.268831pt;}
.wsc6{word-spacing:7.332336pt;}
.ws132{word-spacing:7.389320pt;}
.wsb0{word-spacing:7.588459pt;}
.wsb5{word-spacing:7.714705pt;}
.ws10f{word-spacing:7.738117pt;}
.ws110{word-spacing:7.738641pt;}
.wsf2{word-spacing:7.778720pt;}
.ws96{word-spacing:8.033632pt;}
.ws10{word-spacing:8.097648pt;}
.ws6d{word-spacing:8.161089pt;}
.ws52{word-spacing:8.225104pt;}
.ws126{word-spacing:8.435712pt;}
.wsbb{word-spacing:8.480080pt;}
.wse6{word-spacing:8.670977pt;}
.wseb{word-spacing:8.798434pt;}
.wsa1{word-spacing:8.924896pt;}
.wsa2{word-spacing:8.926464pt;}
.wsa3{word-spacing:8.926974pt;}
.wsbf{word-spacing:8.930853pt;}
.ws4d{word-spacing:9.244817pt;}
.ws6e{word-spacing:9.245391pt;}
.wsb3{word-spacing:9.436289pt;}
.wsda{word-spacing:9.691265pt;}
.ws39{word-spacing:9.818721pt;}
.ws6a{word-spacing:9.819231pt;}
.ws51{word-spacing:9.882736pt;}
.ws113{word-spacing:9.949357pt;}
.wsf9{word-spacing:10.123203pt;}
.wsf5{word-spacing:10.298154pt;}
.wsdf{word-spacing:10.329120pt;}
.wsd0{word-spacing:10.488853pt;}
.ws30{word-spacing:10.520591pt;}
.ws5e{word-spacing:10.647537pt;}
.ws129{word-spacing:11.345069pt;}
.wsd2{word-spacing:11.731776pt;}
.wsc0{word-spacing:12.627535pt;}
.ws38{word-spacing:13.134432pt;}
.wse3{word-spacing:13.198448pt;}
.ws11d{word-spacing:13.846925pt;}
.ws72{word-spacing:13.899808pt;}
.ws5f{word-spacing:14.718619pt;}
.ws82{word-spacing:14.938667pt;}
.ws83{word-spacing:15.557333pt;}
.ws73{word-spacing:17.406416pt;}
.wsd8{word-spacing:17.672908pt;}
.ws93{word-spacing:20.380000pt;}
.ws90{word-spacing:20.398230pt;}
.wsb{word-spacing:22.888213pt;}
.ws70{word-spacing:28.436832pt;}
.ws9c{word-spacing:33.856624pt;}
.ws7f{word-spacing:35.205333pt;}
.ws6{word-spacing:51.679616pt;}
.ws7{word-spacing:51.699916pt;}
._39{margin-left:-10.850396pt;}
._1c{margin-left:-8.445228pt;}
._5{margin-left:-7.345067pt;}
._c{margin-left:-6.407921pt;}
._1e{margin-left:-5.493602pt;}
._4{margin-left:-4.590942pt;}
._9{margin-left:-2.964865pt;}
._0{margin-left:-1.435182pt;}
._2{width:1.235993pt;}
._7{width:2.800692pt;}
._1d{width:4.581627pt;}
._14{width:5.623017pt;}
._3a{width:7.098119pt;}
._30{width:8.671488pt;}
._36{width:10.775440pt;}
._3{width:13.772780pt;}
._1{width:15.733298pt;}
._10{width:17.093739pt;}
._8{width:18.278943pt;}
._24{width:20.474242pt;}
._b{width:21.585525pt;}
._f{width:22.539742pt;}
._2e{width:23.476350pt;}
._a{width:24.369233pt;}
._11{width:25.476111pt;}
._15{width:26.410806pt;}
._d{width:27.862929pt;}
._18{width:29.625839pt;}
._17{width:30.543049pt;}
._6{width:31.584062pt;}
._2f{width:32.633624pt;}
._16{width:35.068255pt;}
._35{width:36.414677pt;}
._33{width:38.148687pt;}
._12{width:40.489528pt;}
._13{width:41.505116pt;}
._e{width:43.228786pt;}
._2b{width:45.429837pt;}
._34{width:47.054816pt;}
._31{width:48.074679pt;}
._32{width:49.551341pt;}
._19{width:50.755080pt;}
._1a{width:51.678380pt;}
._37{width:52.577893pt;}
._2c{width:53.861266pt;}
._38{width:58.181333pt;}
._1b{width:60.508240pt;}
._2d{width:63.491478pt;}
._1f{width:179.468232pt;}
._2a{width:307.219917pt;}
._28{width:351.554343pt;}
._27{width:363.101487pt;}
._23{width:368.635099pt;}
._29{width:377.254623pt;}
._22{width:388.125845pt;}
._25{width:402.672000pt;}
._26{width:443.049024pt;}
._20{width:462.188300pt;}
._21{width:475.339664pt;}
.fs4{font-size:37.194667pt;}
.fs3{font-size:42.506667pt;}
.fs9{font-size:46.544000pt;}
.fs0{font-size:47.818667pt;}
.fs5{font-size:53.136000pt;}
.fs2{font-size:58.181333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:63.760000pt;}
.fs7{font-size:76.512000pt;}
.fs1{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:4.766667pt;}
.y29{bottom:30.186740pt;}
.y28{bottom:75.838667pt;}
.y59{bottom:77.340000pt;}
.yc9{bottom:82.008000pt;}
.y18b{bottom:87.037333pt;}
.ye9{bottom:87.981333pt;}
.y119{bottom:89.005333pt;}
.y9b{bottom:89.684000pt;}
.y27{bottom:94.436000pt;}
.y58{bottom:95.937333pt;}
.yf8{bottom:97.261333pt;}
.y15c{bottom:98.328000pt;}
.yc8{bottom:100.604000pt;}
.y134{bottom:102.734667pt;}
.y18a{bottom:105.102667pt;}
.ye8{bottom:106.578667pt;}
.y118{bottom:107.601333pt;}
.y26{bottom:113.033333pt;}
.y57{bottom:114.533333pt;}
.yf7{bottom:115.858667pt;}
.y15b{bottom:116.393333pt;}
.y75{bottom:117.472000pt;}
.yc7{bottom:119.201333pt;}
.y9a{bottom:120.644000pt;}
.yb2{bottom:121.002667pt;}
.y133{bottom:121.332000pt;}
.y117{bottom:126.198667pt;}
.y189{bottom:129.145333pt;}
.y25{bottom:131.630667pt;}
.y56{bottom:133.130667pt;}
.y74{bottom:133.412000pt;}
.yf6{bottom:134.454667pt;}
.y15a{bottom:134.458667pt;}
.yc6{bottom:137.798667pt;}
.y99{bottom:139.241333pt;}
.yb1{bottom:139.600000pt;}
.ye7{bottom:139.788000pt;}
.y132{bottom:139.929333pt;}
.y116{bottom:144.796000pt;}
.y188{bottom:147.210667pt;}
.y73{bottom:149.353333pt;}
.y55{bottom:151.728000pt;}
.y159{bottom:152.525333pt;}
.yf5{bottom:153.052000pt;}
.yc5{bottom:156.394667pt;}
.y98{bottom:157.838667pt;}
.y24{bottom:158.197333pt;}
.y131{bottom:158.525333pt;}
.y115{bottom:163.393333pt;}
.y72{bottom:165.293333pt;}
.y54{bottom:170.324000pt;}
.y187{bottom:171.254667pt;}
.yf4{bottom:171.649333pt;}
.yc4{bottom:174.992000pt;}
.y158{bottom:176.568000pt;}
.y23{bottom:176.794667pt;}
.ye6{bottom:179.638667pt;}
.y114{bottom:181.989333pt;}
.y97{bottom:184.405333pt;}
.y53{bottom:188.921333pt;}
.y186{bottom:189.320000pt;}
.y130{bottom:191.734667pt;}
.y157{bottom:194.633333pt;}
.y22{bottom:195.390667pt;}
.ye5{bottom:198.234667pt;}
.y113{bottom:200.586667pt;}
.y96{bottom:203.002667pt;}
.yf3{bottom:204.857333pt;}
.y185{bottom:207.385333pt;}
.y52{bottom:207.518667pt;}
.yc3{bottom:208.201333pt;}
.y156{bottom:212.698667pt;}
.y21{bottom:213.988000pt;}
.ye4{bottom:216.832000pt;}
.y95{bottom:221.600000pt;}
.yb0{bottom:221.958667pt;}
.y112{bottom:227.153333pt;}
.y184{bottom:231.429333pt;}
.y20{bottom:232.585333pt;}
.y51{bottom:234.085333pt;}
.y155{bottom:236.742667pt;}
.ye3{bottom:236.757333pt;}
.y12f{bottom:236.898667pt;}
.y94{bottom:240.196000pt;}
.y111{bottom:245.750667pt;}
.yaf{bottom:247.894667pt;}
.yc2{bottom:248.052000pt;}
.y183{bottom:249.494667pt;}
.y1f{bottom:251.181333pt;}
.y50{bottom:252.682667pt;}
.yad{bottom:253.392000pt;}
.yf2{bottom:253.913333pt;}
.y154{bottom:254.808000pt;}
.ye2{bottom:255.354667pt;}
.y12e{bottom:255.496000pt;}
.y110{bottom:264.348000pt;}
.yc1{bottom:266.648000pt;}
.y182{bottom:267.560000pt;}
.y1e{bottom:269.778667pt;}
.yae{bottom:271.085333pt;}
.y4f{bottom:271.278667pt;}
.y93{bottom:271.705333pt;}
.y153{bottom:272.873333pt;}
.y12d{bottom:274.092000pt;}
.ye1{bottom:275.280000pt;}
.y92{bottom:277.389333pt;}
.y10f{bottom:282.944000pt;}
.yac{bottom:284.826667pt;}
.yc0{bottom:285.245333pt;}
.y1d{bottom:288.376000pt;}
.y4e{bottom:289.876000pt;}
.y152{bottom:290.938667pt;}
.y181{bottom:291.602667pt;}
.y12c{bottom:292.689333pt;}
.ye0{bottom:293.876000pt;}
.y10e{bottom:301.541333pt;}
.yab{bottom:303.422667pt;}
.ybf{bottom:303.842667pt;}
.y1c{bottom:306.972000pt;}
.y4d{bottom:308.473333pt;}
.y151{bottom:309.004000pt;}
.y180{bottom:309.669333pt;}
.y91{bottom:310.598667pt;}
.y12b{bottom:311.286667pt;}
.ydf{bottom:312.473333pt;}
.yaa{bottom:322.020000pt;}
.ybe{bottom:322.438667pt;}
.y1b{bottom:325.569333pt;}
.y4c{bottom:327.070667pt;}
.y10d{bottom:328.108000pt;}
.y12a{bottom:329.884000pt;}
.yde{bottom:331.070667pt;}
.y150{bottom:333.048000pt;}
.y17f{bottom:333.712000pt;}
.ya9{bottom:340.617333pt;}
.y1a{bottom:344.166667pt;}
.y4b{bottom:345.666667pt;}
.y10c{bottom:346.705333pt;}
.y129{bottom:348.480000pt;}
.y90{bottom:350.449333pt;}
.y14f{bottom:351.113333pt;}
.y17e{bottom:351.777333pt;}
.ybd{bottom:354.585333pt;}
.ydd{bottom:357.637333pt;}
.ya8{bottom:359.213333pt;}
.y4a{bottom:364.264000pt;}
.y10b{bottom:365.302667pt;}
.ybc{bottom:365.610667pt;}
.y128{bottom:367.077333pt;}
.y8f{bottom:369.046667pt;}
.y14e{bottom:369.178667pt;}
.y17d{bottom:369.842667pt;}
.y19{bottom:377.374667pt;}
.y71{bottom:377.548000pt;}
.y10a{bottom:383.898667pt;}
.y127{bottom:385.674667pt;}
.ya7{bottom:385.781333pt;}
.y8e{bottom:387.642667pt;}
.ydc{bottom:390.846667pt;}
.y14d{bottom:393.222667pt;}
.y17c{bottom:393.886667pt;}
.y49{bottom:397.473333pt;}
.y109{bottom:402.496000pt;}
.y126{bottom:404.270667pt;}
.ya6{bottom:404.377333pt;}
.y8d{bottom:406.240000pt;}
.y14c{bottom:411.288000pt;}
.y17b{bottom:411.952000pt;}
.y70{bottom:417.398667pt;}
.ybb{bottom:418.080000pt;}
.y18{bottom:422.538667pt;}
.y125{bottom:422.868000pt;}
.ya5{bottom:422.974667pt;}
.y8c{bottom:424.837333pt;}
.y108{bottom:429.062667pt;}
.y14b{bottom:429.353333pt;}
.y17a{bottom:430.017333pt;}
.ydb{bottom:430.697333pt;}
.y6f{bottom:435.994667pt;}
.y48{bottom:442.637333pt;}
.y8b{bottom:443.434667pt;}
.yb9{bottom:444.913333pt;}
.yba{bottom:445.577333pt;}
.y107{bottom:447.660000pt;}
.y179{bottom:448.082667pt;}
.yda{bottom:449.293333pt;}
.y124{bottom:449.434667pt;}
.ya4{bottom:452.145333pt;}
.y14a{bottom:453.396000pt;}
.y6e{bottom:454.592000pt;}
.y17{bottom:456.854667pt;}
.y47{bottom:461.233333pt;}
.y8a{bottom:462.030667pt;}
.ya3{bottom:463.080000pt;}
.y178{bottom:466.148000pt;}
.y106{bottom:466.257333pt;}
.yd9{bottom:467.890667pt;}
.y123{bottom:468.032000pt;}
.y149{bottom:471.462667pt;}
.y6d{bottom:473.189333pt;}
.y16{bottom:475.450667pt;}
.y46{bottom:479.830667pt;}
.y89{bottom:480.628000pt;}
.yb8{bottom:483.861333pt;}
.y105{bottom:484.854667pt;}
.yd8{bottom:486.488000pt;}
.y122{bottom:486.629333pt;}
.y148{bottom:489.528000pt;}
.y177{bottom:490.192000pt;}
.y6c{bottom:491.785333pt;}
.y15{bottom:494.048000pt;}
.ya2{bottom:497.900000pt;}
.y45{bottom:498.428000pt;}
.y88{bottom:499.225333pt;}
.y104{bottom:504.778667pt;}
.y121{bottom:505.225333pt;}
.y147{bottom:507.593333pt;}
.yf1{bottom:507.765333pt;}
.y176{bottom:508.257333pt;}
.y6b{bottom:510.382667pt;}
.yb7{bottom:512.394667pt;}
.y14{bottom:512.645333pt;}
.yd7{bottom:513.054667pt;}
.ya1{bottom:516.497333pt;}
.y44{bottom:517.024000pt;}
.y103{bottom:523.376000pt;}
.y120{bottom:523.822667pt;}
.y146{bottom:525.658667pt;}
.y175{bottom:526.322667pt;}
.yf0{bottom:526.362667pt;}
.y13{bottom:531.241333pt;}
.yd6{bottom:531.652000pt;}
.y87{bottom:532.433333pt;}
.y43{bottom:535.621333pt;}
.ya0{bottom:537.801333pt;}
.yb6{bottom:538.961333pt;}
.y102{bottom:541.973333pt;}
.y11f{bottom:542.420000pt;}
.y6a{bottom:543.592000pt;}
.y174{bottom:544.388000pt;}
.yef{bottom:544.960000pt;}
.y9f{bottom:548.734667pt;}
.y145{bottom:549.702667pt;}
.y12{bottom:549.838667pt;}
.yd5{bottom:550.248000pt;}
.yb5{bottom:557.558667pt;}
.y42{bottom:562.188000pt;}
.yee{bottom:563.556000pt;}
.y144{bottom:567.768000pt;}
.y173{bottom:568.432000pt;}
.y11{bottom:568.436000pt;}
.y101{bottom:568.540000pt;}
.yd4{bottom:568.845333pt;}
.y11e{bottom:575.628000pt;}
.yb4{bottom:576.154667pt;}
.y41{bottom:580.785333pt;}
.yed{bottom:582.153333pt;}
.y86{bottom:582.881333pt;}
.y9e{bottom:583.690667pt;}
.y143{bottom:585.833333pt;}
.y172{bottom:586.497333pt;}
.y10{bottom:587.032000pt;}
.yd3{bottom:587.442667pt;}
.y69{bottom:588.756000pt;}
.y100{bottom:595.106667pt;}
.y40{bottom:599.382667pt;}
.yec{bottom:600.750667pt;}
.y85{bottom:601.478667pt;}
.y9d{bottom:602.288000pt;}
.y142{bottom:603.898667pt;}
.y171{bottom:604.562667pt;}
.yf{bottom:605.629333pt;}
.yd2{bottom:606.038667pt;}
.y68{bottom:607.352000pt;}
.yff{bottom:613.704000pt;}
.y3f{bottom:617.978667pt;}
.y84{bottom:620.076000pt;}
.yb3{bottom:622.116000pt;}
.ye{bottom:624.226667pt;}
.y67{bottom:625.949333pt;}
.y170{bottom:628.606667pt;}
.y141{bottom:629.934667pt;}
.yfe{bottom:632.301333pt;}
.y11d{bottom:633.281333pt;}
.y3e{bottom:636.576000pt;}
.y83{bottom:638.672000pt;}
.yd1{bottom:639.248000pt;}
.yd{bottom:642.824000pt;}
.y66{bottom:644.546667pt;}
.y9c{bottom:645.849333pt;}
.y16f{bottom:646.672000pt;}
.yeb{bottom:646.712000pt;}
.y11c{bottom:649.222667pt;}
.yfd{bottom:650.898667pt;}
.y82{bottom:657.269333pt;}
.yea{bottom:662.652000pt;}
.y3d{bottom:663.142667pt;}
.y16e{bottom:664.737333pt;}
.y11b{bottom:665.162667pt;}
.yfc{bottom:669.494667pt;}
.y140{bottom:675.098667pt;}
.y81{bottom:675.866667pt;}
.yd0{bottom:679.098667pt;}
.y11a{bottom:681.102667pt;}
.y3c{bottom:681.740000pt;}
.y16d{bottom:682.802667pt;}
.yc{bottom:684.997333pt;}
.yfb{bottom:688.092000pt;}
.y65{bottom:689.710667pt;}
.y13f{bottom:693.696000pt;}
.y80{bottom:694.462667pt;}
.ycf{bottom:697.696000pt;}
.y3b{bottom:700.337333pt;}
.y16c{bottom:706.846667pt;}
.y64{bottom:708.306667pt;}
.y13e{bottom:712.292000pt;}
.y7f{bottom:713.060000pt;}
.yb{bottom:713.617333pt;}
.yce{bottom:716.292000pt;}
.y3a{bottom:718.934667pt;}
.yfa{bottom:721.301333pt;}
.y16b{bottom:724.912000pt;}
.y63{bottom:726.904000pt;}
.y13d{bottom:730.889333pt;}
.ycd{bottom:734.889333pt;}
.ya{bottom:737.416000pt;}
.y39{bottom:737.530667pt;}
.y16a{bottom:742.977333pt;}
.y7e{bottom:743.240000pt;}
.y62{bottom:745.501333pt;}
.y13c{bottom:749.486667pt;}
.y38{bottom:756.128000pt;}
.y169{bottom:761.042667pt;}
.y61{bottom:764.097333pt;}
.yf9{bottom:767.261333pt;}
.y13b{bottom:768.082667pt;}
.ycc{bottom:768.098667pt;}
.y9{bottom:772.113333pt;}
.y7d{bottom:773.662667pt;}
.y37{bottom:774.725333pt;}
.y60{bottom:782.694667pt;}
.y168{bottom:785.085333pt;}
.y13a{bottom:786.680000pt;}
.y8{bottom:790.178667pt;}
.y7c{bottom:792.258667pt;}
.y36{bottom:793.321333pt;}
.y5f{bottom:801.292000pt;}
.y167{bottom:803.152000pt;}
.y35{bottom:811.918667pt;}
.ycb{bottom:814.058667pt;}
.y7b{bottom:818.826667pt;}
.y5e{bottom:819.889333pt;}
.y166{bottom:821.217333pt;}
.yca{bottom:830.000000pt;}
.y34{bottom:830.516000pt;}
.y7{bottom:831.238667pt;}
.y7a{bottom:837.954667pt;}
.y5d{bottom:838.485333pt;}
.y165{bottom:839.282667pt;}
.y79{bottom:851.397333pt;}
.y33{bottom:857.082667pt;}
.y164{bottom:857.348000pt;}
.y6{bottom:860.461333pt;}
.y139{bottom:865.053333pt;}
.y32{bottom:875.680000pt;}
.y163{bottom:881.392000pt;}
.y78{bottom:883.649333pt;}
.y31{bottom:894.276000pt;}
.y138{bottom:898.261333pt;}
.y162{bottom:899.457333pt;}
.y77{bottom:902.246667pt;}
.y30{bottom:912.873333pt;}
.y161{bottom:917.522667pt;}
.y76{bottom:920.844000pt;}
.y5{bottom:923.945333pt;}
.y2f{bottom:931.470667pt;}
.y160{bottom:935.588000pt;}
.y5c{bottom:939.440000pt;}
.y137{bottom:943.425333pt;}
.y4{bottom:946.416000pt;}
.y2e{bottom:950.066667pt;}
.y15f{bottom:953.653333pt;}
.y5b{bottom:958.037333pt;}
.y136{bottom:962.022667pt;}
.y2d{bottom:968.664000pt;}
.y3{bottom:968.886667pt;}
.y5a{bottom:976.634667pt;}
.y15e{bottom:977.697333pt;}
.y135{bottom:980.620000pt;}
.y2{bottom:991.357333pt;}
.y2c{bottom:995.230667pt;}
.y15d{bottom:995.762667pt;}
.y1{bottom:1013.828000pt;}
.y2b{bottom:1060.981333pt;}
.hf{height:2.550400pt;}
.ha{height:20.020000pt;}
.h6{height:27.598443pt;}
.hc{height:31.880000pt;}
.h2{height:35.481451pt;}
.he{height:39.373776pt;}
.h7{height:39.426912pt;}
.h1b{height:39.852000pt;}
.h11{height:43.112368pt;}
.h12{height:43.170549pt;}
.h13{height:43.636000pt;}
.h22{height:44.247883pt;}
.hd{height:47.246160pt;}
.h8{height:47.309920pt;}
.h10{height:47.820000pt;}
.h5{height:52.649280pt;}
.h4{height:52.654613pt;}
.h14{height:54.198400pt;}
.h21{height:54.681280pt;}
.h20{height:55.021333pt;}
.h9{height:56.695392pt;}
.h15{height:60.177067pt;}
.hb{height:60.986979pt;}
.h3{height:68.033680pt;}
.h16{height:88.086800pt;}
.h18{height:90.950667pt;}
.h17{height:91.043253pt;}
.h19{height:91.048587pt;}
.h1f{height:94.049333pt;}
.h1a{height:95.313067pt;}
.h1d{height:136.555733pt;}
.h1e{height:155.686400pt;}
.h1c{height:158.342400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:16.309333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.080000pt;}
.xc{left:97.862667pt;}
.x16{left:100.797333pt;}
.x14{left:102.581333pt;}
.xe{left:105.985333pt;}
.x2a{left:108.164000pt;}
.x2{left:113.566667pt;}
.x28{left:115.442667pt;}
.x27{left:117.592000pt;}
.x9{left:123.170667pt;}
.xd{left:131.182667pt;}
.x2c{left:132.886667pt;}
.x7{left:151.772000pt;}
.x11{left:155.130667pt;}
.x12{left:158.506667pt;}
.x1f{left:169.613333pt;}
.x29{left:216.204000pt;}
.x4{left:219.650667pt;}
.xb{left:222.997333pt;}
.x6{left:225.421333pt;}
.x10{left:233.668000pt;}
.x15{left:253.377333pt;}
.x20{left:262.886667pt;}
.x21{left:275.849333pt;}
.x8{left:276.888000pt;}
.xf{left:304.272000pt;}
.x13{left:308.218400pt;}
.x2d{left:309.374667pt;}
.x3{left:314.860000pt;}
.x5{left:322.658667pt;}
.x19{left:345.470667pt;}
.x17{left:348.598667pt;}
.x1b{left:354.118667pt;}
.x2b{left:357.857333pt;}
.x1c{left:366.036000pt;}
.x25{left:375.320000pt;}
.x22{left:376.480000pt;}
.x26{left:383.194667pt;}
.xa{left:388.693319pt;}
.x18{left:409.756000pt;}
.x1a{left:410.712000pt;}
.x23{left:428.585333pt;}
.x24{left:496.645333pt;}
.x1d{left:507.674667pt;}
.x1e{left:519.405333pt;}
}




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