
    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_05800928bdcd83b20e158e01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_953a454e22450942818e596a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_d2ab9493bbbc5f4f2d393f97.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.965000;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_94706b0c375762f014648cfe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_5b7db173f57d7ffec04666cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.965000;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_3903fffdd517f6abbd3536c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.965000;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_273a4d53c126aee4377ad418.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.188000;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_b3921204ae7a05ebf0b8cc01.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970000;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_3626b6ecf9587d4deeb518f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.049000;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_65a51293c17805c06d888876.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.927000;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_467a5a81c4dbff3e86732199.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690000;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_4e15c7c1a312bcde82537ebe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692000;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_e635e474f8d853961216d56f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.120000;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_e28e014dfc31bbd85a58651c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6efadaf6a9d35991c60f0bb4.woff2')format("woff");}.fff{font-family:fff;line-height:0.579000;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_025fab29cfd511111727f23f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.406000;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_0c097d4afd6420dc3dcfc989.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.335000;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_51c38f3afaed293be663155e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.740000;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;}
.m4{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.268004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268004,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268016,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268020,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.042870px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.043039px;}
.ls5{letter-spacing:0.047821px;}
.lsf{letter-spacing:0.095642px;}
.ls20{letter-spacing:0.096844px;}
.ls4{letter-spacing:0.107596px;}
.ls2{letter-spacing:0.149198px;}
.ls19{letter-spacing:0.167374px;}
.lsd{letter-spacing:0.176938px;}
.ls6{letter-spacing:0.179340px;}
.ls16{letter-spacing:0.229542px;}
.ls23{letter-spacing:0.249624px;}
.ls1{letter-spacing:0.250161px;}
.ls7{letter-spacing:0.254663px;}
.ls25{letter-spacing:0.260141px;}
.ls3{letter-spacing:0.314182px;}
.ls12{letter-spacing:10.458496px;}
.ls9{letter-spacing:11.263202px;}
.ls1a{letter-spacing:11.422444px;}
.ls1d{letter-spacing:12.160931px;}
.ls1c{letter-spacing:12.333087px;}
.ls11{letter-spacing:12.839992px;}
.ls17{letter-spacing:13.519053px;}
.ls1b{letter-spacing:14.142484px;}
.ls1f{letter-spacing:14.202896px;}
.ls8{letter-spacing:14.258688px;}
.ls1e{letter-spacing:14.375053px;}
.ls24{letter-spacing:14.482489px;}
.ls22{letter-spacing:15.895767px;}
.lsc{letter-spacing:17.602984px;}
.ls10{letter-spacing:18.621575px;}
.ls18{letter-spacing:18.965888px;}
.ls15{letter-spacing:19.305418px;}
.lsb{letter-spacing:19.343926px;}
.lsa{letter-spacing:19.348111px;}
.ls14{letter-spacing:19.586867px;}
.lse{letter-spacing:21.003071px;}
.ls13{letter-spacing:23.326921px;}
.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;}
}
.ws17{word-spacing:-19.385769px;}
.ws0{word-spacing:-18.984000px;}
.ws13{word-spacing:-5.527434px;}
.ws2e{word-spacing:-0.047821px;}
.ws1d{word-spacing:-0.043039px;}
.wse{word-spacing:-0.038256px;}
.ws34{word-spacing:-0.035868px;}
.ws1{word-spacing:0.000000px;}
.ws1b7{word-spacing:8.993986px;}
.ws1af{word-spacing:9.055195px;}
.ws74{word-spacing:9.157760px;}
.wsc4{word-spacing:9.186453px;}
.ws1cc{word-spacing:9.200568px;}
.ws75{word-spacing:9.205581px;}
.ws5c{word-spacing:9.262966px;}
.ws1bd{word-spacing:9.361243px;}
.ws1cd{word-spacing:9.368894px;}
.ws119{word-spacing:9.459033px;}
.ws1bb{word-spacing:9.468360px;}
.wsf9{word-spacing:9.482944px;}
.ws16f{word-spacing:9.559458px;}
.ws1bc{word-spacing:9.579302px;}
.ws160{word-spacing:9.621625px;}
.wsff{word-spacing:9.702921px;}
.ws161{word-spacing:9.707704px;}
.wsfe{word-spacing:9.712486px;}
.ws16c{word-spacing:9.765089px;}
.wsa3{word-spacing:9.789000px;}
.ws11a{word-spacing:9.803346px;}
.wsbe{word-spacing:9.827257px;}
.ws1aa{word-spacing:9.896827px;}
.wsa2{word-spacing:9.985067px;}
.wsbf{word-spacing:9.989849px;}
.wsf8{word-spacing:10.047234px;}
.ws80{word-spacing:10.056798px;}
.ws26{word-spacing:10.071032px;}
.ws1c8{word-spacing:10.088107px;}
.ws7f{word-spacing:10.095055px;}
.ws157{word-spacing:10.128530px;}
.ws27{word-spacing:10.131286px;}
.ws14e{word-spacing:10.162005px;}
.ws78{word-spacing:10.214608px;}
.ws1bf{word-spacing:10.229654px;}
.ws81{word-spacing:10.238519px;}
.ws1c4{word-spacing:10.271736px;}
.ws136{word-spacing:10.329379px;}
.ws9a{word-spacing:10.343726px;}
.ws156{word-spacing:10.362854px;}
.ws14d{word-spacing:10.367636px;}
.ws1a{word-spacing:10.393822px;}
.ws25{word-spacing:10.419645px;}
.ws7a{word-spacing:10.491971px;}
.wsc3{word-spacing:10.501536px;}
.ws7b{word-spacing:10.544575px;}
.wse9{word-spacing:10.578049px;}
.ws17a{word-spacing:10.668910px;}
.ws177{word-spacing:10.740642px;}
.wsde{word-spacing:10.783681px;}
.ws15a{word-spacing:10.798027px;}
.ws107{word-spacing:10.841066px;}
.ws12c{word-spacing:10.884105px;}
.ws6d{word-spacing:10.912798px;}
.ws159{word-spacing:10.984530px;}
.ws72{word-spacing:10.998876px;}
.ws151{word-spacing:11.070608px;}
.ws58{word-spacing:11.116870px;}
.ws85{word-spacing:11.166250px;}
.ws150{word-spacing:11.175814px;}
.ws106{word-spacing:11.180597px;}
.ws198{word-spacing:11.266392px;}
.ws67{word-spacing:11.304932px;}
.ws1b1{word-spacing:11.316125px;}
.ws112{word-spacing:11.357887px;}
.ws1c6{word-spacing:11.419416px;}
.ws6c{word-spacing:11.434049px;}
.wsc5{word-spacing:11.443613px;}
.ws113{word-spacing:11.448268px;}
.ws13a{word-spacing:11.524909px;}
.ws1c5{word-spacing:11.599219px;}
.wsb0{word-spacing:11.603207px;}
.ws11c{word-spacing:11.639680px;}
.ws6e{word-spacing:11.649244px;}
.ws2b{word-spacing:11.650549px;}
.ws1b{word-spacing:11.663461px;}
.ws1b0{word-spacing:11.671906px;}
.ws20{word-spacing:11.680676px;}
.wsa0{word-spacing:11.716194px;}
.ws11e{word-spacing:11.730540px;}
.ws1b2{word-spacing:11.744592px;}
.ws1c1{word-spacing:11.752243px;}
.ws9f{word-spacing:11.764015px;}
.ws6f{word-spacing:11.797490px;}
.ws124{word-spacing:11.840529px;}
.ws123{word-spacing:11.854875px;}
.ws11d{word-spacing:11.878786px;}
.ws4e{word-spacing:11.907479px;}
.ws4d{word-spacing:11.950518px;}
.ws18e{word-spacing:11.979211px;}
.ws18d{word-spacing:12.003121px;}
.ws70{word-spacing:12.031814px;}
.ws2c{word-spacing:12.037896px;}
.ws9d{word-spacing:12.046160px;}
.ws9c{word-spacing:12.055725px;}
.ws17c{word-spacing:12.070071px;}
.ws64{word-spacing:12.079635px;}
.ws8e{word-spacing:12.089199px;}
.wsca{word-spacing:12.103546px;}
.wsef{word-spacing:12.117892px;}
.ws9b{word-spacing:12.122674px;}
.ws17b{word-spacing:12.170495px;}
.ws138{word-spacing:12.247009px;}
.ws152{word-spacing:12.285266px;}
.ws77{word-spacing:12.356998px;}
.ws97{word-spacing:12.409601px;}
.ws108{word-spacing:12.414384px;}
.wsd{word-spacing:12.440851px;}
.ws1b8{word-spacing:12.479107px;}
.ws1a2{word-spacing:12.490584px;}
.ws109{word-spacing:12.533937px;}
.ws1cf{word-spacing:12.536491px;}
.ws1ce{word-spacing:12.547968px;}
.ws1ac{word-spacing:12.555619px;}
.ws99{word-spacing:12.557847px;}
.ws1c9{word-spacing:12.567096px;}
.ws1a5{word-spacing:12.582398px;}
.ws1a8{word-spacing:12.593875px;}
.wsf{word-spacing:12.601526px;}
.ws19a{word-spacing:12.620654px;}
.ws1b9{word-spacing:12.624480px;}
.wsbc{word-spacing:12.632131px;}
.wsc{word-spacing:12.635957px;}
.ws19e{word-spacing:12.639782px;}
.ws1b3{word-spacing:12.647434px;}
.ws19f{word-spacing:12.651259px;}
.ws1c3{word-spacing:12.658910px;}
.ws1ba{word-spacing:12.670387px;}
.ws1ab{word-spacing:12.674213px;}
.ws1a1{word-spacing:12.681864px;}
.wsa{word-spacing:12.685690px;}
.ws1d1{word-spacing:12.700992px;}
.ws175{word-spacing:12.701311px;}
.ws176{word-spacing:12.710875px;}
.ws98{word-spacing:12.715657px;}
.ws1a0{word-spacing:12.716294px;}
.ws1a4{word-spacing:12.720120px;}
.wsb{word-spacing:12.723946px;}
.ws9{word-spacing:12.731597px;}
.ws11{word-spacing:12.739248px;}
.ws1a9{word-spacing:12.746899px;}
.ws16b{word-spacing:12.749132px;}
.ws19b{word-spacing:12.762202px;}
.ws12{word-spacing:12.777504px;}
.ws1a7{word-spacing:12.781330px;}
.ws199{word-spacing:12.788981px;}
.ws1d0{word-spacing:12.796632px;}
.ws163{word-spacing:12.801735px;}
.ws1b5{word-spacing:12.823411px;}
.ws1b6{word-spacing:12.827237px;}
.ws1c7{word-spacing:12.834888px;}
.wsec{word-spacing:12.839992px;}
.ws1b4{word-spacing:12.861667px;}
.ws76{word-spacing:12.863903px;}
.ws1c2{word-spacing:12.869318px;}
.ws174{word-spacing:12.873467px;}
.ws1ae{word-spacing:12.884621px;}
.ws19c{word-spacing:12.892272px;}
.ws1cb{word-spacing:12.896098px;}
.ws1a3{word-spacing:12.903749px;}
.ws16{word-spacing:12.911400px;}
.ws29{word-spacing:12.915884px;}
.ws10{word-spacing:12.942005px;}
.ws19d{word-spacing:12.957307px;}
.ws14{word-spacing:12.976435px;}
.ws1ca{word-spacing:12.991738px;}
.ws1ad{word-spacing:13.041470px;}
.ws15{word-spacing:13.045296px;}
.wseb{word-spacing:13.045623px;}
.ws121{word-spacing:13.074316px;}
.ws21{word-spacing:13.075127px;}
.ws28{word-spacing:13.096646px;}
.ws35{word-spacing:13.112573px;}
.wsda{word-spacing:13.117355px;}
.ws1c0{word-spacing:13.121808px;}
.wsd9{word-spacing:13.122137px;}
.ws86{word-spacing:13.155612px;}
.ws1a6{word-spacing:13.198320px;}
.ws33{word-spacing:13.222562px;}
.wsd5{word-spacing:13.270383px;}
.ws22{word-spacing:13.333358px;}
.wsfa{word-spacing:13.346897px;}
.ws122{word-spacing:13.375590px;}
.wsd4{word-spacing:13.399500px;}
.wsd6{word-spacing:13.456886px;}
.ws6b{word-spacing:13.461668px;}
.ws1c{word-spacing:13.462474px;}
.wsed{word-spacing:13.499925px;}
.ws15f{word-spacing:13.619478px;}
.ws2a{word-spacing:13.656148px;}
.ws1e{word-spacing:13.677667px;}
.ws18b{word-spacing:13.686427px;}
.ws15b{word-spacing:13.734249px;}
.ws16a{word-spacing:13.767723px;}
.wsdd{word-spacing:13.786852px;}
.ws195{word-spacing:13.820327px;}
.ws131{word-spacing:13.849020px;}
.wsb9{word-spacing:13.853802px;}
.wsb6{word-spacing:13.868148px;}
.ws14f{word-spacing:13.882494px;}
.ws12d{word-spacing:13.896841px;}
.ws4f{word-spacing:13.901623px;}
.wsb4{word-spacing:13.911187px;}
.ws7c{word-spacing:13.920751px;}
.ws17f{word-spacing:13.930316px;}
.ws132{word-spacing:13.939880px;}
.ws54{word-spacing:13.944662px;}
.wsba{word-spacing:13.959008px;}
.ws168{word-spacing:13.963790px;}
.wsb7{word-spacing:13.978137px;}
.ws184{word-spacing:13.987701px;}
.wsb2{word-spacing:14.011612px;}
.wsfc{word-spacing:14.021176px;}
.ws8d{word-spacing:14.040304px;}
.ws183{word-spacing:14.049869px;}
.wsb8{word-spacing:14.054651px;}
.ws50{word-spacing:14.065014px;}
.ws139{word-spacing:14.078561px;}
.wsb3{word-spacing:14.102472px;}
.ws104{word-spacing:14.121600px;}
.wsb5{word-spacing:14.126382px;}
.wsfd{word-spacing:14.131165px;}
.wsb1{word-spacing:14.145511px;}
.ws188{word-spacing:14.159857px;}
.ws166{word-spacing:14.169422px;}
.ws51{word-spacing:14.172611px;}
.ws2d{word-spacing:14.176915px;}
.wse3{word-spacing:14.178986px;}
.wsbd{word-spacing:14.193332px;}
.ws5a{word-spacing:14.207042px;}
.ws114{word-spacing:14.224257px;}
.ws48{word-spacing:14.245935px;}
.ws10d{word-spacing:14.250080px;}
.ws15c{word-spacing:14.250718px;}
.ws125{word-spacing:14.255500px;}
.ws14a{word-spacing:14.265064px;}
.wscb{word-spacing:14.298539px;}
.ws197{word-spacing:14.322449px;}
.ws10c{word-spacing:14.336158px;}
.wsd8{word-spacing:14.355924px;}
.ws167{word-spacing:14.370271px;}
.ws57{word-spacing:14.383500px;}
.ws135{word-spacing:14.384617px;}
.ws172{word-spacing:14.408528px;}
.ws10e{word-spacing:14.409323px;}
.ws118{word-spacing:14.422235px;}
.ws52{word-spacing:14.448058px;}
.ws115{word-spacing:14.456666px;}
.ws105{word-spacing:14.461131px;}
.wsce{word-spacing:14.465913px;}
.ws47{word-spacing:14.470695px;}
.ws182{word-spacing:14.473881px;}
.wsd7{word-spacing:14.475477px;}
.wsee{word-spacing:14.494606px;}
.ws53{word-spacing:14.516920px;}
.ws59{word-spacing:14.529831px;}
.ws133{word-spacing:14.561555px;}
.wscf{word-spacing:14.585466px;}
.wsbb{word-spacing:14.609377px;}
.ws181{word-spacing:14.615909px;}
.ws41{word-spacing:14.714583px;}
.ws149{word-spacing:14.752840px;}
.ws155{word-spacing:14.819790px;}
.ws178{word-spacing:14.963253px;}
.wse2{word-spacing:15.011075px;}
.ws23{word-spacing:15.076422px;}
.ws153{word-spacing:15.101935px;}
.wsaa{word-spacing:15.102245px;}
.ws45{word-spacing:15.130628px;}
.ws14c{word-spacing:15.144974px;}
.wse4{word-spacing:15.164103px;}
.ws110{word-spacing:15.175410px;}
.ws14b{word-spacing:15.202359px;}
.wse1{word-spacing:15.259745px;}
.ws56{word-spacing:15.355387px;}
.ws187{word-spacing:15.403209px;}
.ws111{word-spacing:15.416427px;}
.ws1f{word-spacing:15.442250px;}
.ws189{word-spacing:15.451030px;}
.ws17d{word-spacing:15.460594px;}
.ws39{word-spacing:15.489287px;}
.wsf1{word-spacing:15.503633px;}
.ws186{word-spacing:15.513197px;}
.ws180{word-spacing:15.532326px;}
.wsf0{word-spacing:15.537108px;}
.ws196{word-spacing:15.551454px;}
.ws194{word-spacing:15.561018px;}
.ws90{word-spacing:15.589711px;}
.ws7d{word-spacing:15.604058px;}
.ws43{word-spacing:15.632750px;}
.ws10f{word-spacing:15.635923px;}
.ws5b{word-spacing:15.637532px;}
.ws92{word-spacing:15.690136px;}
.ws15d{word-spacing:15.694918px;}
.ws173{word-spacing:15.747521px;}
.ws44{word-spacing:15.790560px;}
.ws19{word-spacing:15.838205px;}
.wsa1{word-spacing:15.843164px;}
.ws91{word-spacing:15.876638px;}
.wscd{word-spacing:15.890985px;}
.wsdf{word-spacing:15.943588px;}
.ws82{word-spacing:16.072705px;}
.ws117{word-spacing:16.096436px;}
.ws6a{word-spacing:16.177912px;}
.ws12e{word-spacing:16.182694px;}
.ws116{word-spacing:16.195425px;}
.wsea{word-spacing:16.201823px;}
.ws164{word-spacing:16.211387px;}
.ws171{word-spacing:16.254426px;}
.ws5d{word-spacing:16.354850px;}
.ws128{word-spacing:16.397889px;}
.wsa5{word-spacing:16.496695px;}
.ws84{word-spacing:16.522225px;}
.ws147{word-spacing:16.574828px;}
.wsa4{word-spacing:16.655938px;}
.ws7e{word-spacing:16.699163px;}
.ws88{word-spacing:16.746984px;}
.ws62{word-spacing:16.809152px;}
.ws63{word-spacing:16.847409px;}
.ws18f{word-spacing:16.856973px;}
.ws3c{word-spacing:16.909576px;}
.ws142{word-spacing:16.938269px;}
.ws146{word-spacing:17.024347px;}
.wsa6{word-spacing:17.038982px;}
.ws137{word-spacing:17.139118px;}
.ws49{word-spacing:17.206068px;}
.wsa9{word-spacing:17.249871px;}
.ws71{word-spacing:17.296928px;}
.wsf3{word-spacing:17.306492px;}
.ws120{word-spacing:17.311274px;}
.ws12b{word-spacing:17.383006px;}
.ws11f{word-spacing:17.387788px;}
.ws103{word-spacing:17.545598px;}
.ws13f{word-spacing:17.617330px;}
.wsc9{word-spacing:17.646023px;}
.ws158{word-spacing:17.712972px;}
.ws94{word-spacing:17.717755px;}
.ws4a{word-spacing:17.722537px;}
.ws144{word-spacing:17.736883px;}
.ws11b{word-spacing:17.789486px;}
.ws100{word-spacing:17.885129px;}
.ws61{word-spacing:17.952078px;}
.ws169{word-spacing:17.961643px;}
.ws93{word-spacing:17.966425px;}
.ws185{word-spacing:18.023810px;}
.ws12a{word-spacing:18.028592px;}
.ws96{word-spacing:18.100324px;}
.ws102{word-spacing:18.138581px;}
.ws95{word-spacing:18.157710px;}
.ws143{word-spacing:18.215095px;}
.ws101{word-spacing:18.258134px;}
.ws179{word-spacing:18.325084px;}
.wsae{word-spacing:18.334444px;}
.ws18a{word-spacing:18.358559px;}
.ws127{word-spacing:18.497240px;}
.ws24{word-spacing:18.497990px;}
.ws165{word-spacing:18.635922px;}
.ws3f{word-spacing:18.640704px;}
.wsf5{word-spacing:18.731564px;}
.wsf7{word-spacing:18.750693px;}
.ws32{word-spacing:18.760257px;}
.wsc6{word-spacing:18.765039px;}
.ws17e{word-spacing:18.808078px;}
.ws140{word-spacing:18.841553px;}
.wsf4{word-spacing:18.889374px;}
.wsc7{word-spacing:18.903720px;}
.ws2f{word-spacing:18.927631px;}
.wsc8{word-spacing:18.941977px;}
.ws31{word-spacing:18.985016px;}
.wsdc{word-spacing:19.008927px;}
.ws18c{word-spacing:19.157173px;}
.ws8f{word-spacing:19.209776px;}
.wsdb{word-spacing:19.233687px;}
.wsad{word-spacing:19.276989px;}
.wsf6{word-spacing:19.281508px;}
.ws87{word-spacing:19.324547px;}
.ws8b{word-spacing:19.348458px;}
.ws2{word-spacing:19.355826px;}
.wsac{word-spacing:19.444839px;}
.ws129{word-spacing:19.644949px;}
.ws190{word-spacing:19.745373px;}
.ws5e{word-spacing:19.898401px;}
.ws13e{word-spacing:20.108815px;}
.wsa7{word-spacing:20.266877px;}
.ws36{word-spacing:20.443563px;}
.ws3e{word-spacing:20.481820px;}
.ws162{word-spacing:20.577462px;}
.ws79{word-spacing:20.682669px;}
.ws37{word-spacing:20.744837px;}
.ws18{word-spacing:20.800555px;}
.ws148{word-spacing:20.835697px;}
.ws30{word-spacing:20.869172px;}
.ws65{word-spacing:20.883518px;}
.ws8{word-spacing:20.903454px;}
.ws6{word-spacing:20.928799px;}
.ws7{word-spacing:21.036516px;}
.ws8a{word-spacing:21.055674px;}
.wscc{word-spacing:21.132188px;}
.ws89{word-spacing:21.189574px;}
.ws154{word-spacing:21.285216px;}
.ws16e{word-spacing:21.390423px;}
.wse8{word-spacing:21.443026px;}
.ws10b{word-spacing:21.484869px;}
.ws5{word-spacing:21.505402px;}
.ws10a{word-spacing:21.644112px;}
.ws16d{word-spacing:21.887763px;}
.ws134{word-spacing:22.093394px;}
.ws13d{word-spacing:22.184255px;}
.ws191{word-spacing:22.222512px;}
.ws13c{word-spacing:22.232076px;}
.ws9e{word-spacing:22.308590px;}
.ws8c{word-spacing:22.461618px;}
.wsd0{word-spacing:22.490310px;}
.wsd1{word-spacing:22.581171px;}
.ws3b{word-spacing:22.614645px;}
.ws3a{word-spacing:22.738981px;}
.wse0{word-spacing:22.892008px;}
.wsd3{word-spacing:22.901573px;}
.ws40{word-spacing:22.973304px;}
.wsd2{word-spacing:23.021126px;}
.wsab{word-spacing:23.081601px;}
.ws5f{word-spacing:23.375003px;}
.ws68{word-spacing:23.422824px;}
.ws69{word-spacing:23.427606px;}
.ws38{word-spacing:23.638019px;}
.wsfb{word-spacing:23.910600px;}
.ws1be{word-spacing:24.189269px;}
.ws83{word-spacing:24.374466px;}
.ws46{word-spacing:24.441415px;}
.ws126{word-spacing:24.455762px;}
.ws145{word-spacing:24.613572px;}
.wsc1{word-spacing:25.316543px;}
.wsc2{word-spacing:25.321325px;}
.ws3d{word-spacing:25.388275px;}
.ws12f{word-spacing:25.555649px;}
.ws130{word-spacing:25.689549px;}
.ws141{word-spacing:25.919090px;}
.ws60{word-spacing:25.947783px;}
.wse7{word-spacing:26.052990px;}
.wse5{word-spacing:26.072118px;}
.wse6{word-spacing:26.425995px;}
.ws4{word-spacing:26.791404px;}
.wsc0{word-spacing:26.913771px;}
.ws3{word-spacing:27.025425px;}
.ws42{word-spacing:27.066799px;}
.ws55{word-spacing:27.925885px;}
.ws170{word-spacing:28.190597px;}
.ws13b{word-spacing:28.898351px;}
.ws4b{word-spacing:29.438731px;}
.wsf2{word-spacing:29.931289px;}
.ws192{word-spacing:31.112473px;}
.ws193{word-spacing:31.265501px;}
.ws4c{word-spacing:31.667199px;}
.ws15e{word-spacing:35.215532px;}
.wsaf{word-spacing:35.511149px;}
.wsa8{word-spacing:39.948429px;}
.ws66{word-spacing:41.121450px;}
.ws73{word-spacing:43.278186px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._5{width:1.166808px;}
._0{width:5.587200px;}
._11{width:8.736933px;}
._7{width:10.586256px;}
._6{width:11.672068px;}
._9{width:12.821199px;}
._4{width:13.967266px;}
._b{width:15.683266px;}
._8{width:16.686065px;}
._d{width:18.205531px;}
._a{width:19.595475px;}
._c{width:21.553015px;}
._13{width:23.489773px;}
._12{width:25.431314px;}
._e{width:26.497727px;}
._f{width:27.755424px;}
._1e{width:29.964764px;}
._15{width:35.263353px;}
._1f{width:36.736246px;}
._10{width:42.202209px;}
._18{width:48.562429px;}
._19{width:110.729989px;}
._16{width:120.820262px;}
._17{width:123.211322px;}
._1b{width:124.263388px;}
._14{width:127.233085px;}
._1a{width:140.718663px;}
._1c{width:156.117090px;}
._1d{width:2057.686949px;}
.fc2{color:rgb(50,126,177);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:26.761800px;}
.fse{font-size:30.109200px;}
.fsd{font-size:35.868000px;}
.fs9{font-size:38.256000px;}
.fsa{font-size:41.842800px;}
.fs7{font-size:42.237600px;}
.fsb{font-size:43.038600px;}
.fs6{font-size:44.327400px;}
.fsc{font-size:47.821200px;}
.fs3{font-size:57.384600px;}
.fs5{font-size:63.363000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:80.697000px;}
.fsf{font-size:83.685600px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.ycd{bottom:47.105968px;}
.y1df{bottom:47.115076px;}
.y72{bottom:76.875444px;}
.y17e{bottom:78.406940px;}
.y14a{bottom:78.407622px;}
.y10d{bottom:78.491172px;}
.y71{bottom:91.162108px;}
.y10c{bottom:92.777835px;}
.y149{bottom:94.139602px;}
.y13{bottom:99.795000px;}
.y70{bottom:105.533772px;}
.y10b{bottom:107.149500px;}
.y148{bottom:109.786698px;}
.y17d{bottom:109.787211px;}
.y17{bottom:113.670000px;}
.y6f{bottom:119.905437px;}
.y147{bottom:125.518677px;}
.y6e{bottom:134.192100px;}
.y16{bottom:135.750000px;}
.y146{bottom:141.165774px;}
.y17c{bottom:141.422130px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y145{bottom:156.897753px;}
.y17b{bottom:157.069227px;}
.y15{bottom:157.830000px;}
.y6a{bottom:159.703950px;}
.y69{bottom:164.466150px;}
.y144{bottom:172.544850px;}
.y142{bottom:172.545171px;}
.y68{bottom:174.075585px;}
.y143{bottom:177.902400px;}
.y141{bottom:188.277150px;}
.y13f{bottom:188.278576px;}
.y67{bottom:188.447250px;}
.y17a{bottom:188.448303px;}
.y140{bottom:193.549650px;}
.y13e{bottom:203.925672px;}
.y13d{bottom:219.657652px;}
.y179{bottom:220.083222px;}
.y56{bottom:226.460274px;}
.y13c{bottom:235.304748px;}
.y178{bottom:235.815202px;}
.y55{bottom:242.107371px;}
.y13b{bottom:251.036727px;}
.y177{bottom:251.462298px;}
.y66{bottom:257.076591px;}
.y54{bottom:257.839350px;}
.y52{bottom:257.839824px;}
.y53{bottom:263.111850px;}
.y13a{bottom:266.683824px;}
.y176{bottom:267.194277px;}
.y65{bottom:272.723688px;}
.y51{bottom:273.486921px;}
.y139{bottom:282.415803px;}
.ybe{bottom:282.840609px;}
.y175{bottom:282.841374px;}
.y64{bottom:288.455667px;}
.y50{bottom:289.218900px;}
.y4e{bottom:289.219527px;}
.y4f{bottom:294.491250px;}
.ybd{bottom:297.212273px;}
.y138{bottom:298.062900px;}
.y136{bottom:298.063374px;}
.y174{bottom:298.573353px;}
.y137{bottom:303.420450px;}
.y63{bottom:304.102764px;}
.y4d{bottom:304.866624px;}
.ybc{bottom:311.583938px;}
.y135{bottom:313.795353px;}
.y173{bottom:314.220450px;}
.y171{bottom:314.220771px;}
.y172{bottom:319.577850px;}
.y62{bottom:319.834743px;}
.y4c{bottom:320.598603px;}
.ybb{bottom:325.870601px;}
.y106{bottom:327.486753px;}
.y134{bottom:329.442450px;}
.y132{bottom:329.443719px;}
.y170{bottom:329.952750px;}
.ye6{bottom:331.063642px;}
.y133{bottom:334.800000px;}
.y61{bottom:335.566722px;}
.y4b{bottom:336.245700px;}
.y49{bottom:336.245871px;}
.yba{bottom:340.242265px;}
.y4a{bottom:341.603100px;}
.y105{bottom:343.133850px;}
.y103{bottom:343.148060px;}
.ya{bottom:344.680500px;}
.y131{bottom:345.175698px;}
.y16e{bottom:345.605190px;}
.ye5{bottom:346.710739px;}
.y104{bottom:348.491250px;}
.y16f{bottom:350.957400px;}
.y60{bottom:351.213819px;}
.y48{bottom:351.977850px;}
.y46{bottom:351.978003px;}
.yb9{bottom:354.613930px;}
.y47{bottom:357.250350px;}
.y102{bottom:358.880039px;}
.y130{bottom:360.822795px;}
.y16d{bottom:361.337170px;}
.ye4{bottom:362.442718px;}
.y5f{bottom:366.945798px;}
.y45{bottom:367.625100px;}
.y43{bottom:367.626048px;}
.yb8{bottom:368.985594px;}
.y44{bottom:372.982650px;}
.y101{bottom:374.527136px;}
.y12f{bottom:376.554774px;}
.y16c{bottom:376.984266px;}
.y5e{bottom:382.592895px;}
.yb7{bottom:383.272258px;}
.y42{bottom:383.358027px;}
.yd{bottom:386.490000px;}
.y100{bottom:390.259115px;}
.y12e{bottom:392.201871px;}
.y16b{bottom:392.716246px;}
.ye3{bottom:393.821794px;}
.y9{bottom:395.689500px;}
.yb6{bottom:397.643922px;}
.y5d{bottom:398.324874px;}
.y41{bottom:399.005124px;}
.yff{bottom:405.906211px;}
.y12d{bottom:407.933850px;}
.y16a{bottom:408.363342px;}
.ye2{bottom:409.468891px;}
.y1a3{bottom:411.251864px;}
.yb5{bottom:412.015587px;}
.y5c{bottom:413.971971px;}
.y1dd{bottom:419.504718px;}
.yfe{bottom:421.638191px;}
.y1a2{bottom:423.157132px;}
.y12b{bottom:423.587448px;}
.y169{bottom:424.095322px;}
.ye1{bottom:425.200870px;}
.yb4{bottom:426.302250px;}
.y12c{bottom:428.938500px;}
.y5b{bottom:429.703950px;}
.y59{bottom:429.705156px;}
.y40{bottom:430.384200px;}
.y1dc{bottom:431.409985px;}
.yb{bottom:434.850000px;}
.y5a{bottom:434.976300px;}
.y1a1{bottom:435.147518px;}
.yfd{bottom:437.285287px;}
.y12a{bottom:439.319427px;}
.y168{bottom:439.742418px;}
.ye0{bottom:440.847967px;}
.y1db{bottom:443.400372px;}
.y58{bottom:445.352253px;}
.y8{bottom:446.698500px;}
.y1a0{bottom:447.137905px;}
.yfc{bottom:453.017267px;}
.y129{bottom:454.966524px;}
.y1da{bottom:455.305639px;}
.y167{bottom:455.474397px;}
.ydf{bottom:456.579946px;}
.y19f{bottom:459.043172px;}
.y57{bottom:461.084232px;}
.y1d9{bottom:467.296026px;}
.yfb{bottom:468.664363px;}
.y128{bottom:470.698503px;}
.y19e{bottom:471.033559px;}
.y166{bottom:471.121494px;}
.yb3{bottom:471.631860px;}
.yde{bottom:472.227043px;}
.y89{bottom:472.394922px;}
.y1d8{bottom:479.286413px;}
.y19d{bottom:482.938826px;}
.yfa{bottom:484.396343px;}
.y127{bottom:486.345600px;}
.y165{bottom:486.853473px;}
.yb2{bottom:487.363839px;}
.ydd{bottom:487.959022px;}
.y88{bottom:488.042019px;}
.y10{bottom:488.055000px;}
.y1d7{bottom:491.191680px;}
.y19c{bottom:494.929213px;}
.y7{bottom:497.707500px;}
.yf9{bottom:500.043439px;}
.y126{bottom:502.077579px;}
.y164{bottom:502.500570px;}
.yb1{bottom:503.010936px;}
.y1d6{bottom:503.182067px;}
.ydc{bottom:503.606119px;}
.y3f{bottom:503.687689px;}
.y87{bottom:503.773998px;}
.y19b{bottom:506.919600px;}
.y1d5{bottom:515.087334px;}
.yf8{bottom:515.775418px;}
.y125{bottom:517.724676px;}
.y3e{bottom:518.059353px;}
.y163{bottom:518.232549px;}
.yb0{bottom:518.742915px;}
.ydb{bottom:519.338098px;}
.y86{bottom:519.421095px;}
.y1d4{bottom:527.077721px;}
.yf7{bottom:531.507398px;}
.y3d{bottom:532.346016px;}
.y124{bottom:533.456655px;}
.yaf{bottom:534.390012px;}
.y19a{bottom:534.395401px;}
.yda{bottom:534.985195px;}
.y85{bottom:535.153074px;}
.y11{bottom:538.230000px;}
.y1d3{bottom:538.982988px;}
.y3c{bottom:546.717681px;}
.yf6{bottom:547.154494px;}
.y6{bottom:548.716500px;}
.y123{bottom:549.188634px;}
.y162{bottom:549.611625px;}
.yae{bottom:550.121991px;}
.yd9{bottom:550.717174px;}
.y84{bottom:550.800171px;}
.y1d2{bottom:550.973375px;}
.y3b{bottom:561.089345px;}
.yf5{bottom:562.886474px;}
.y1d1{bottom:562.963762px;}
.y122{bottom:564.835731px;}
.yad{bottom:565.769088px;}
.y199{bottom:565.774477px;}
.yd8{bottom:566.364270px;}
.y83{bottom:566.532150px;}
.y81{bottom:566.535319px;}
.y82{bottom:571.804650px;}
.y1d0{bottom:574.869029px;}
.y3a{bottom:575.376009px;}
.yf4{bottom:578.533570px;}
.y121{bottom:580.567710px;}
.y161{bottom:581.246545px;}
.yac{bottom:581.501067px;}
.y198{bottom:581.506456px;}
.yd7{bottom:582.096250px;}
.y80{bottom:582.182415px;}
.y1cf{bottom:586.859416px;}
.y18{bottom:589.605000px;}
.y39{bottom:589.747673px;}
.yf3{bottom:594.265550px;}
.y120{bottom:596.214807px;}
.y160{bottom:596.893641px;}
.yab{bottom:597.148164px;}
.yd6{bottom:597.743346px;}
.y7f{bottom:597.914395px;}
.y1ce{bottom:598.764683px;}
.y5{bottom:599.725500px;}
.y38{bottom:604.119338px;}
.yf2{bottom:609.912646px;}
.y1cd{bottom:610.755070px;}
.y11f{bottom:611.946786px;}
.y15f{bottom:612.625620px;}
.yaa{bottom:612.880143px;}
.y197{bottom:612.885532px;}
.yd5{bottom:613.475326px;}
.y7e{bottom:613.561491px;}
.y37{bottom:618.491002px;}
.y1cc{bottom:622.745456px;}
.yf1{bottom:625.644625px;}
.y11e{bottom:627.593883px;}
.y15e{bottom:628.272717px;}
.ya9{bottom:628.527240px;}
.yd4{bottom:629.122422px;}
.y7d{bottom:629.293470px;}
.ye{bottom:631.920000px;}
.y36{bottom:632.777665px;}
.y1cb{bottom:634.650724px;}
.yf0{bottom:641.291722px;}
.y11d{bottom:643.325862px;}
.y15d{bottom:644.004696px;}
.ya8{bottom:644.259219px;}
.y196{bottom:644.264608px;}
.yd3{bottom:644.854402px;}
.y7c{bottom:644.940567px;}
.y1ca{bottom:646.641110px;}
.y35{bottom:647.149330px;}
.y2f{bottom:656.080148px;}
.yef{bottom:657.023701px;}
.y1c9{bottom:658.546378px;}
.y11c{bottom:658.972959px;}
.y15c{bottom:659.651793px;}
.ya7{bottom:659.906316px;}
.y195{bottom:659.911705px;}
.yd2{bottom:660.501498px;}
.y7b{bottom:660.672546px;}
.y34{bottom:661.520994px;}
.y2e{bottom:668.920775px;}
.y1c8{bottom:670.536764px;}
.yee{bottom:672.670798px;}
.y11b{bottom:674.704938px;}
.y15b{bottom:675.383772px;}
.ya6{bottom:675.638295px;}
.y194{bottom:675.643684px;}
.y33{bottom:675.807658px;}
.yd1{bottom:676.233477px;}
.y7a{bottom:676.319643px;}
.y2d{bottom:681.846521px;}
.y1c7{bottom:682.442032px;}
.yed{bottom:688.402777px;}
.y32{bottom:690.179322px;}
.y11a{bottom:690.352035px;}
.y15a{bottom:691.030869px;}
.ya5{bottom:691.285391px;}
.y193{bottom:691.290781px;}
.yd0{bottom:691.880574px;}
.y79{bottom:692.051622px;}
.y1c6{bottom:694.432418px;}
.y2c{bottom:694.687147px;}
.yec{bottom:704.049874px;}
.y31{bottom:704.550987px;}
.y119{bottom:706.084014px;}
.y1c5{bottom:706.422805px;}
.y159{bottom:706.762848px;}
.ya4{bottom:707.017371px;}
.y192{bottom:707.022760px;}
.y2b{bottom:707.527774px;}
.ycf{bottom:707.612553px;}
.y78{bottom:707.698719px;}
.y1c4{bottom:718.328072px;}
.y30{bottom:718.837650px;}
.yeb{bottom:719.781853px;}
.y2a{bottom:720.368400px;}
.y158{bottom:722.409945px;}
.ya3{bottom:722.749350px;}
.ya1{bottom:722.758033px;}
.yce{bottom:723.259650px;}
.y77{bottom:723.430698px;}
.ya2{bottom:728.021850px;}
.y1c3{bottom:730.318459px;}
.yea{bottom:735.428950px;}
.y118{bottom:737.463090px;}
.y157{bottom:738.141924px;}
.y191{bottom:738.401836px;}
.ya0{bottom:738.405129px;}
.y76{bottom:739.077795px;}
.y1c2{bottom:742.223726px;}
.y29{bottom:748.176150px;}
.y156{bottom:753.789021px;}
.y9f{bottom:754.137109px;}
.y1c1{bottom:754.214113px;}
.y75{bottom:754.809774px;}
.y10a{bottom:756.935158px;}
.y1c0{bottom:766.214942px;}
.ye9{bottom:766.808026px;}
.y155{bottom:769.521000px;}
.y153{bottom:769.521474px;}
.y117{bottom:769.522422px;}
.y190{bottom:769.780912px;}
.y9e{bottom:769.784205px;}
.y109{bottom:771.306822px;}
.y154{bottom:774.793500px;}
.y1bf{bottom:778.120210px;}
.y4{bottom:778.225500px;}
.y152{bottom:785.168571px;}
.y116{bottom:785.169519px;}
.y18f{bottom:785.512891px;}
.y9d{bottom:785.516185px;}
.y108{bottom:785.678487px;}
.y74{bottom:786.188850px;}
.y1be{bottom:790.110596px;}
.y28{bottom:797.669100px;}
.ye8{bottom:798.187102px;}
.y107{bottom:799.965150px;}
.y151{bottom:800.900550px;}
.y115{bottom:800.901498px;}
.y14f{bottom:800.905854px;}
.y18e{bottom:801.159988px;}
.y9c{bottom:801.163281px;}
.y27{bottom:801.836100px;}
.y1bd{bottom:802.015864px;}
.y150{bottom:806.173050px;}
.y26{bottom:810.510150px;}
.ye7{bottom:813.919081px;}
.y1bc{bottom:814.006250px;}
.y25{bottom:814.762050px;}
.y12{bottom:815.670000px;}
.y114{bottom:816.633477px;}
.y14e{bottom:816.637833px;}
.y18d{bottom:816.891967px;}
.y9b{bottom:816.895260px;}
.y24{bottom:823.350900px;}
.y1bb{bottom:825.911518px;}
.y23{bottom:827.603100px;}
.y113{bottom:832.280574px;}
.y14d{bottom:832.284930px;}
.y18c{bottom:832.539063px;}
.y9a{bottom:832.542357px;}
.y22{bottom:836.191950px;}
.y1ba{bottom:837.901904px;}
.y21{bottom:840.444000px;}
.y110{bottom:847.502071px;}
.y112{bottom:848.012553px;}
.y14c{bottom:848.016909px;}
.y99{bottom:848.274336px;}
.y20{bottom:849.032850px;}
.y1b9{bottom:849.892291px;}
.y1f{bottom:853.284900px;}
.y1b8{bottom:861.797558px;}
.y10f{bottom:861.873735px;}
.y1e{bottom:861.873750px;}
.y111{bottom:863.659650px;}
.y14b{bottom:863.664006px;}
.y18b{bottom:863.918139px;}
.y98{bottom:863.921433px;}
.y1d{bottom:866.125800px;}
.y1b7{bottom:873.787945px;}
.y10e{bottom:876.245400px;}
.ycb{bottom:879.224865px;}
.y97{bottom:879.653412px;}
.y1b6{bottom:885.693212px;}
.y1b{bottom:886.535250px;}
.y1c{bottom:893.593500px;}
.yca{bottom:894.956845px;}
.y18a{bottom:895.297215px;}
.y180{bottom:897.335187px;}
.y1b5{bottom:897.683599px;}
.y3{bottom:905.716500px;}
.y1b4{bottom:909.673986px;}
.yc9{bottom:910.603941px;}
.y189{bottom:911.029195px;}
.y96{bottom:911.032488px;}
.y17f{bottom:911.621850px;}
.y1b3{bottom:921.579253px;}
.y1a{bottom:924.037500px;}
.yc8{bottom:926.335920px;}
.y95{bottom:926.679585px;}
.y1b2{bottom:933.569640px;}
.yc7{bottom:941.983017px;}
.y188{bottom:942.408270px;}
.y94{bottom:942.411564px;}
.y1b1{bottom:945.474907px;}
.y19{bottom:956.862750px;}
.y1b0{bottom:957.465294px;}
.yc6{bottom:957.714996px;}
.y93{bottom:958.058661px;}
.y2{bottom:964.228500px;}
.y1af{bottom:969.370561px;}
.yc5{bottom:973.362093px;}
.y187{bottom:973.787346px;}
.y92{bottom:973.790640px;}
.y1ae{bottom:981.360948px;}
.yc4{bottom:989.094072px;}
.y186{bottom:989.434443px;}
.y91{bottom:989.437737px;}
.y1{bottom:989.716500px;}
.y1ad{bottom:993.351335px;}
.y6d{bottom:1003.549350px;}
.yc3{bottom:1004.741169px;}
.y90{bottom:1005.169716px;}
.y1ac{bottom:1005.256602px;}
.y1ab{bottom:1017.246989px;}
.yc2{bottom:1020.473148px;}
.y185{bottom:1020.813519px;}
.y8f{bottom:1020.816813px;}
.y1aa{bottom:1029.152256px;}
.yc1{bottom:1036.120245px;}
.y8e{bottom:1036.548792px;}
.y1a9{bottom:1041.142643px;}
.y6c{bottom:1044.028050px;}
.yc0{bottom:1051.852224px;}
.y184{bottom:1052.192595px;}
.y8d{bottom:1052.195888px;}
.y1a8{bottom:1053.133030px;}
.y1a7{bottom:1065.038297px;}
.y183{bottom:1067.924574px;}
.y8c{bottom:1067.927868px;}
.y1a6{bottom:1077.028684px;}
.ybf{bottom:1083.231300px;}
.y182{bottom:1083.571671px;}
.y8b{bottom:1083.574964px;}
.y6b{bottom:1086.547800px;}
.y1a5{bottom:1088.933951px;}
.y181{bottom:1099.303650px;}
.y8a{bottom:1099.306944px;}
.y1a4{bottom:1100.924338px;}
.y73{bottom:1127.536800px;}
.ycc{bottom:1128.642300px;}
.y1de{bottom:1128.651408px;}
.h10{height:19.696685px;}
.h18{height:22.160371px;}
.h17{height:26.398848px;}
.h11{height:28.156416px;}
.h1c{height:28.741733px;}
.h12{height:28.745558px;}
.h13{height:30.796301px;}
.hf{height:31.086874px;}
.h14{height:31.676410px;}
.h1b{height:31.848564px;}
.he{height:32.624966px;}
.h4{height:33.000000px;}
.h1a{height:34.766012px;}
.h16{height:35.196403px;}
.h15{height:35.387688px;}
.hb{height:42.235066px;}
.hd{height:46.635168px;}
.h3{height:58.406250px;}
.hc{height:59.392992px;}
.h19{height:61.592602px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.ha{height:1190.250000px;}
.h9{height:1190.551500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:56.381100px;}
.x44{left:57.741036px;}
.x2a{left:61.398450px;}
.x26{left:62.674050px;}
.x37{left:63.949500px;}
.x42{left:72.113400px;}
.x2b{left:74.324810px;}
.x54{left:75.514844px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x49{left:130.025100px;}
.x3b{left:137.593650px;}
.x4b{left:138.954300px;}
.xb{left:152.900700px;}
.x3c{left:155.366850px;}
.x4a{left:156.897600px;}
.xc{left:158.853450px;}
.xd{left:163.275600px;}
.xe{left:169.823550px;}
.x5{left:174.105000px;}
.xf{left:179.603100px;}
.x10{left:183.940050px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x4c{left:230.031450px;}
.x47{left:241.171650px;}
.x48{left:256.053450px;}
.x4d{left:258.519600px;}
.x39{left:281.905500px;}
.x27{left:282.926734px;}
.x30{left:284.201550px;}
.x2c{left:291.089700px;}
.x2d{left:301.039350px;}
.x28{left:303.336310px;}
.x31{left:310.478700px;}
.x3a{left:315.240900px;}
.x32{left:321.193650px;}
.x11{left:326.636100px;}
.x12{left:332.078700px;}
.x13{left:336.415650px;}
.x14{left:342.198300px;}
.x38{left:344.324250px;}
.x29{left:347.982018px;}
.x2e{left:355.294350px;}
.x2f{left:371.196750px;}
.x33{left:401.385750px;}
.x34{left:422.475450px;}
.x15{left:423.751050px;}
.x16{left:429.193650px;}
.x17{left:433.530600px;}
.x18{left:437.357400px;}
.x43{left:438.720172px;}
.x35{left:459.893148px;}
.x3e{left:461.171469px;}
.x56{left:464.995355px;}
.x3d{left:477.839548px;}
.x55{left:478.942536px;}
.x19{left:504.878700px;}
.x1a{left:510.831300px;}
.x45{left:512.022000px;}
.x1b{left:515.168400px;}
.x36{left:516.444000px;}
.x1c{left:521.886450px;}
.x57{left:523.156218px;}
.x46{left:526.733700px;}
.x52{left:544.251750px;}
.x53{left:557.688000px;}
.x41{left:582.179400px;}
.x4e{left:611.177850px;}
.x1d{left:618.661200px;}
.x1e{left:624.613950px;}
.x1f{left:629.036100px;}
.x50{left:633.202950px;}
.x20{left:634.478550px;}
.x4f{left:636.434550px;}
.x21{left:638.815500px;}
.x22{left:645.533700px;}
.x23{left:649.870650px;}
.x24{left:656.503800px;}
.x25{left:660.925800px;}
.x3f{left:681.675450px;}
.x40{left:697.152600px;}
.x51{left:826.412400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.815885pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.038257pt;}
.ls5{letter-spacing:0.042508pt;}
.lsf{letter-spacing:0.085015pt;}
.ls20{letter-spacing:0.086083pt;}
.ls4{letter-spacing:0.095641pt;}
.ls2{letter-spacing:0.132621pt;}
.ls19{letter-spacing:0.148777pt;}
.lsd{letter-spacing:0.157279pt;}
.ls6{letter-spacing:0.159413pt;}
.ls16{letter-spacing:0.204037pt;}
.ls23{letter-spacing:0.221888pt;}
.ls1{letter-spacing:0.222365pt;}
.ls7{letter-spacing:0.226367pt;}
.ls25{letter-spacing:0.231236pt;}
.ls3{letter-spacing:0.279273pt;}
.ls12{letter-spacing:9.296441pt;}
.ls9{letter-spacing:10.011735pt;}
.ls1a{letter-spacing:10.153284pt;}
.ls1d{letter-spacing:10.809717pt;}
.ls1c{letter-spacing:10.962744pt;}
.ls11{letter-spacing:11.413326pt;}
.ls17{letter-spacing:12.016936pt;}
.ls1b{letter-spacing:12.571097pt;}
.ls1f{letter-spacing:12.624797pt;}
.ls8{letter-spacing:12.674389pt;}
.ls1e{letter-spacing:12.777825pt;}
.ls24{letter-spacing:12.873323pt;}
.ls22{letter-spacing:14.129571pt;}
.lsc{letter-spacing:15.647097pt;}
.ls10{letter-spacing:16.552511pt;}
.ls18{letter-spacing:16.858567pt;}
.ls15{letter-spacing:17.160372pt;}
.lsb{letter-spacing:17.194601pt;}
.lsa{letter-spacing:17.198321pt;}
.ls14{letter-spacing:17.410548pt;}
.lse{letter-spacing:18.669396pt;}
.ls13{letter-spacing:20.735041pt;}
.ws17{word-spacing:-17.231795pt;}
.ws0{word-spacing:-16.874667pt;}
.ws13{word-spacing:-4.913275pt;}
.ws2e{word-spacing:-0.042508pt;}
.ws1d{word-spacing:-0.038257pt;}
.wse{word-spacing:-0.034005pt;}
.ws34{word-spacing:-0.031883pt;}
.ws1{word-spacing:0.000000pt;}
.ws1b7{word-spacing:7.994654pt;}
.ws1af{word-spacing:8.049062pt;}
.ws74{word-spacing:8.140231pt;}
.wsc4{word-spacing:8.165736pt;}
.ws1cc{word-spacing:8.178283pt;}
.ws75{word-spacing:8.182739pt;}
.ws5c{word-spacing:8.233748pt;}
.ws1bd{word-spacing:8.321105pt;}
.ws1cd{word-spacing:8.327906pt;}
.ws119{word-spacing:8.408030pt;}
.ws1bb{word-spacing:8.416320pt;}
.wsf9{word-spacing:8.429284pt;}
.ws16f{word-spacing:8.497296pt;}
.ws1bc{word-spacing:8.514935pt;}
.ws160{word-spacing:8.552556pt;}
.wsff{word-spacing:8.624819pt;}
.ws161{word-spacing:8.629070pt;}
.wsfe{word-spacing:8.633321pt;}
.ws16c{word-spacing:8.680079pt;}
.wsa3{word-spacing:8.701333pt;}
.ws11a{word-spacing:8.714085pt;}
.wsbe{word-spacing:8.735339pt;}
.ws1aa{word-spacing:8.797180pt;}
.wsa2{word-spacing:8.875615pt;}
.wsbf{word-spacing:8.879865pt;}
.wsf8{word-spacing:8.930875pt;}
.ws80{word-spacing:8.939376pt;}
.ws26{word-spacing:8.952029pt;}
.ws1c8{word-spacing:8.967206pt;}
.ws7f{word-spacing:8.973383pt;}
.ws157{word-spacing:9.003138pt;}
.ws27{word-spacing:9.005588pt;}
.ws14e{word-spacing:9.032893pt;}
.ws78{word-spacing:9.079652pt;}
.ws1bf{word-spacing:9.093026pt;}
.ws81{word-spacing:9.100906pt;}
.ws1c4{word-spacing:9.130432pt;}
.ws136{word-spacing:9.181670pt;}
.ws9a{word-spacing:9.194423pt;}
.ws156{word-spacing:9.211426pt;}
.ws14d{word-spacing:9.215677pt;}
.ws1a{word-spacing:9.238953pt;}
.ws25{word-spacing:9.261907pt;}
.ws7a{word-spacing:9.326197pt;}
.wsc3{word-spacing:9.334698pt;}
.ws7b{word-spacing:9.372955pt;}
.wse9{word-spacing:9.402711pt;}
.ws17a{word-spacing:9.483475pt;}
.ws177{word-spacing:9.547237pt;}
.wsde{word-spacing:9.585494pt;}
.ws15a{word-spacing:9.598246pt;}
.ws107{word-spacing:9.636503pt;}
.ws12c{word-spacing:9.674760pt;}
.ws6d{word-spacing:9.700265pt;}
.ws159{word-spacing:9.764026pt;}
.ws72{word-spacing:9.776779pt;}
.ws151{word-spacing:9.840540pt;}
.ws58{word-spacing:9.881663pt;}
.ws85{word-spacing:9.925556pt;}
.ws150{word-spacing:9.934057pt;}
.ws106{word-spacing:9.938308pt;}
.ws198{word-spacing:10.014571pt;}
.ws67{word-spacing:10.048828pt;}
.ws1b1{word-spacing:10.058778pt;}
.ws112{word-spacing:10.095899pt;}
.ws1c6{word-spacing:10.150592pt;}
.ws6c{word-spacing:10.163599pt;}
.wsc5{word-spacing:10.172101pt;}
.ws113{word-spacing:10.176238pt;}
.ws13a{word-spacing:10.244364pt;}
.ws1c5{word-spacing:10.310417pt;}
.wsb0{word-spacing:10.313961pt;}
.ws11c{word-spacing:10.346382pt;}
.ws6e{word-spacing:10.354884pt;}
.ws2b{word-spacing:10.356044pt;}
.ws1b{word-spacing:10.367521pt;}
.ws1b0{word-spacing:10.375027pt;}
.ws20{word-spacing:10.382823pt;}
.wsa0{word-spacing:10.414395pt;}
.ws11e{word-spacing:10.427147pt;}
.ws1b2{word-spacing:10.439637pt;}
.ws1c1{word-spacing:10.446438pt;}
.ws9f{word-spacing:10.456902pt;}
.ws6f{word-spacing:10.486658pt;}
.ws124{word-spacing:10.524915pt;}
.ws123{word-spacing:10.537667pt;}
.ws11d{word-spacing:10.558921pt;}
.ws4e{word-spacing:10.584426pt;}
.ws4d{word-spacing:10.622683pt;}
.ws18e{word-spacing:10.648187pt;}
.ws18d{word-spacing:10.669441pt;}
.ws70{word-spacing:10.694946pt;}
.ws2c{word-spacing:10.700352pt;}
.ws9d{word-spacing:10.707698pt;}
.ws9c{word-spacing:10.716200pt;}
.ws17c{word-spacing:10.728952pt;}
.ws64{word-spacing:10.737453pt;}
.ws8e{word-spacing:10.745955pt;}
.wsca{word-spacing:10.758707pt;}
.wsef{word-spacing:10.771460pt;}
.ws9b{word-spacing:10.775710pt;}
.ws17b{word-spacing:10.818218pt;}
.ws138{word-spacing:10.886231pt;}
.ws152{word-spacing:10.920237pt;}
.ws77{word-spacing:10.983998pt;}
.ws97{word-spacing:11.030757pt;}
.ws108{word-spacing:11.035008pt;}
.wsd{word-spacing:11.058534pt;}
.ws1b8{word-spacing:11.092540pt;}
.ws1a2{word-spacing:11.102741pt;}
.ws109{word-spacing:11.141277pt;}
.ws1cf{word-spacing:11.143548pt;}
.ws1ce{word-spacing:11.153749pt;}
.ws1ac{word-spacing:11.160550pt;}
.ws99{word-spacing:11.162531pt;}
.ws1c9{word-spacing:11.170752pt;}
.ws1a5{word-spacing:11.184354pt;}
.ws1a8{word-spacing:11.194556pt;}
.wsf{word-spacing:11.201357pt;}
.ws19a{word-spacing:11.218359pt;}
.ws1b9{word-spacing:11.221760pt;}
.wsbc{word-spacing:11.228561pt;}
.wsc{word-spacing:11.231962pt;}
.ws19e{word-spacing:11.235362pt;}
.ws1b3{word-spacing:11.242163pt;}
.ws19f{word-spacing:11.245564pt;}
.ws1c3{word-spacing:11.252365pt;}
.ws1ba{word-spacing:11.262566pt;}
.ws1ab{word-spacing:11.265967pt;}
.ws1a1{word-spacing:11.272768pt;}
.wsa{word-spacing:11.276169pt;}
.ws1d1{word-spacing:11.289771pt;}
.ws175{word-spacing:11.290054pt;}
.ws176{word-spacing:11.298556pt;}
.ws98{word-spacing:11.302806pt;}
.ws1a0{word-spacing:11.303373pt;}
.ws1a4{word-spacing:11.306773pt;}
.wsb{word-spacing:11.310174pt;}
.ws9{word-spacing:11.316975pt;}
.ws11{word-spacing:11.323776pt;}
.ws1a9{word-spacing:11.330577pt;}
.ws16b{word-spacing:11.332562pt;}
.ws19b{word-spacing:11.344179pt;}
.ws12{word-spacing:11.357781pt;}
.ws1a7{word-spacing:11.361182pt;}
.ws199{word-spacing:11.367983pt;}
.ws1d0{word-spacing:11.374784pt;}
.ws163{word-spacing:11.379320pt;}
.ws1b5{word-spacing:11.398588pt;}
.ws1b6{word-spacing:11.401988pt;}
.ws1c7{word-spacing:11.408789pt;}
.wsec{word-spacing:11.413326pt;}
.ws1b4{word-spacing:11.432593pt;}
.ws76{word-spacing:11.434580pt;}
.ws1c2{word-spacing:11.439394pt;}
.ws174{word-spacing:11.443082pt;}
.ws1ae{word-spacing:11.452996pt;}
.ws19c{word-spacing:11.459797pt;}
.ws1cb{word-spacing:11.463198pt;}
.ws1a3{word-spacing:11.469999pt;}
.ws16{word-spacing:11.476800pt;}
.ws29{word-spacing:11.480786pt;}
.ws10{word-spacing:11.504004pt;}
.ws19d{word-spacing:11.517606pt;}
.ws14{word-spacing:11.534609pt;}
.ws1ca{word-spacing:11.548211pt;}
.ws1ad{word-spacing:11.592418pt;}
.ws15{word-spacing:11.595819pt;}
.wseb{word-spacing:11.596110pt;}
.ws121{word-spacing:11.621614pt;}
.ws21{word-spacing:11.622335pt;}
.ws28{word-spacing:11.641463pt;}
.ws35{word-spacing:11.655620pt;}
.wsda{word-spacing:11.659871pt;}
.ws1c0{word-spacing:11.663829pt;}
.wsd9{word-spacing:11.664122pt;}
.ws86{word-spacing:11.693877pt;}
.ws1a6{word-spacing:11.731840pt;}
.ws33{word-spacing:11.753388pt;}
.wsd5{word-spacing:11.795896pt;}
.ws22{word-spacing:11.851874pt;}
.wsfa{word-spacing:11.863908pt;}
.ws122{word-spacing:11.889413pt;}
.wsd4{word-spacing:11.910667pt;}
.wsd6{word-spacing:11.961676pt;}
.ws6b{word-spacing:11.965927pt;}
.ws1c{word-spacing:11.966644pt;}
.wsed{word-spacing:11.999933pt;}
.ws15f{word-spacing:12.106202pt;}
.ws2a{word-spacing:12.138798pt;}
.ws1e{word-spacing:12.157926pt;}
.ws18b{word-spacing:12.165713pt;}
.ws15b{word-spacing:12.208221pt;}
.ws16a{word-spacing:12.237976pt;}
.wsdd{word-spacing:12.254980pt;}
.ws195{word-spacing:12.284735pt;}
.ws131{word-spacing:12.310240pt;}
.wsb9{word-spacing:12.314490pt;}
.wsb6{word-spacing:12.327243pt;}
.ws14f{word-spacing:12.339995pt;}
.ws12d{word-spacing:12.352747pt;}
.ws4f{word-spacing:12.356998pt;}
.wsb4{word-spacing:12.365500pt;}
.ws7c{word-spacing:12.374001pt;}
.ws17f{word-spacing:12.382503pt;}
.ws132{word-spacing:12.391004pt;}
.ws54{word-spacing:12.395255pt;}
.wsba{word-spacing:12.408007pt;}
.ws168{word-spacing:12.412258pt;}
.wsb7{word-spacing:12.425010pt;}
.ws184{word-spacing:12.433512pt;}
.wsb2{word-spacing:12.454766pt;}
.wsfc{word-spacing:12.463267pt;}
.ws8d{word-spacing:12.480271pt;}
.ws183{word-spacing:12.488772pt;}
.wsb8{word-spacing:12.493023pt;}
.ws50{word-spacing:12.502235pt;}
.ws139{word-spacing:12.514277pt;}
.wsb3{word-spacing:12.535531pt;}
.ws104{word-spacing:12.552534pt;}
.wsb5{word-spacing:12.556784pt;}
.wsfd{word-spacing:12.561035pt;}
.wsb1{word-spacing:12.573788pt;}
.ws188{word-spacing:12.586540pt;}
.ws166{word-spacing:12.595041pt;}
.ws51{word-spacing:12.597876pt;}
.ws2d{word-spacing:12.601702pt;}
.wse3{word-spacing:12.603543pt;}
.wsbd{word-spacing:12.616295pt;}
.ws5a{word-spacing:12.628482pt;}
.ws114{word-spacing:12.643784pt;}
.ws48{word-spacing:12.663054pt;}
.ws10d{word-spacing:12.666738pt;}
.ws15c{word-spacing:12.667305pt;}
.ws125{word-spacing:12.671555pt;}
.ws14a{word-spacing:12.680057pt;}
.wscb{word-spacing:12.709812pt;}
.ws197{word-spacing:12.731066pt;}
.ws10c{word-spacing:12.743251pt;}
.wsd8{word-spacing:12.760822pt;}
.ws167{word-spacing:12.773574pt;}
.ws57{word-spacing:12.785333pt;}
.ws135{word-spacing:12.786326pt;}
.ws172{word-spacing:12.807580pt;}
.ws10e{word-spacing:12.808287pt;}
.ws118{word-spacing:12.819764pt;}
.ws52{word-spacing:12.842718pt;}
.ws115{word-spacing:12.850370pt;}
.ws105{word-spacing:12.854339pt;}
.wsce{word-spacing:12.858589pt;}
.ws47{word-spacing:12.862840pt;}
.ws182{word-spacing:12.865672pt;}
.wsd7{word-spacing:12.867091pt;}
.wsee{word-spacing:12.884094pt;}
.ws53{word-spacing:12.903929pt;}
.ws59{word-spacing:12.915406pt;}
.ws133{word-spacing:12.943605pt;}
.wscf{word-spacing:12.964859pt;}
.wsbb{word-spacing:12.986113pt;}
.ws181{word-spacing:12.991919pt;}
.ws41{word-spacing:13.079630pt;}
.ws149{word-spacing:13.113636pt;}
.ws155{word-spacing:13.173147pt;}
.ws178{word-spacing:13.300670pt;}
.wse2{word-spacing:13.343177pt;}
.ws23{word-spacing:13.401264pt;}
.ws153{word-spacing:13.423942pt;}
.wsaa{word-spacing:13.424218pt;}
.ws45{word-spacing:13.449447pt;}
.ws14c{word-spacing:13.462199pt;}
.wse4{word-spacing:13.479202pt;}
.ws110{word-spacing:13.489254pt;}
.ws14b{word-spacing:13.513208pt;}
.wse1{word-spacing:13.564218pt;}
.ws56{word-spacing:13.649233pt;}
.ws187{word-spacing:13.691741pt;}
.ws111{word-spacing:13.703490pt;}
.ws1f{word-spacing:13.726444pt;}
.ws189{word-spacing:13.734249pt;}
.ws17d{word-spacing:13.742750pt;}
.ws39{word-spacing:13.768255pt;}
.wsf1{word-spacing:13.781007pt;}
.ws186{word-spacing:13.789509pt;}
.ws180{word-spacing:13.806512pt;}
.wsf0{word-spacing:13.810763pt;}
.ws196{word-spacing:13.823515pt;}
.ws194{word-spacing:13.832016pt;}
.ws90{word-spacing:13.857521pt;}
.ws7d{word-spacing:13.870273pt;}
.ws43{word-spacing:13.895778pt;}
.ws10f{word-spacing:13.898599pt;}
.ws5b{word-spacing:13.900029pt;}
.ws92{word-spacing:13.946787pt;}
.ws15d{word-spacing:13.951038pt;}
.ws173{word-spacing:13.997797pt;}
.ws44{word-spacing:14.036054pt;}
.ws19{word-spacing:14.078404pt;}
.wsa1{word-spacing:14.082812pt;}
.ws91{word-spacing:14.112567pt;}
.wscd{word-spacing:14.125320pt;}
.wsdf{word-spacing:14.172078pt;}
.ws82{word-spacing:14.286849pt;}
.ws117{word-spacing:14.307943pt;}
.ws6a{word-spacing:14.380366pt;}
.ws12e{word-spacing:14.384617pt;}
.ws116{word-spacing:14.395933pt;}
.wsea{word-spacing:14.401620pt;}
.ws164{word-spacing:14.410122pt;}
.ws171{word-spacing:14.448379pt;}
.ws5d{word-spacing:14.537645pt;}
.ws128{word-spacing:14.575902pt;}
.wsa5{word-spacing:14.663729pt;}
.ws84{word-spacing:14.686422pt;}
.ws147{word-spacing:14.733180pt;}
.wsa4{word-spacing:14.805278pt;}
.ws7e{word-spacing:14.843700pt;}
.ws88{word-spacing:14.886208pt;}
.ws62{word-spacing:14.941468pt;}
.ws63{word-spacing:14.975474pt;}
.ws18f{word-spacing:14.983976pt;}
.ws3c{word-spacing:15.030735pt;}
.ws142{word-spacing:15.056239pt;}
.ws146{word-spacing:15.132753pt;}
.wsa6{word-spacing:15.145762pt;}
.ws137{word-spacing:15.234772pt;}
.ws49{word-spacing:15.294282pt;}
.wsa9{word-spacing:15.333219pt;}
.ws71{word-spacing:15.375047pt;}
.wsf3{word-spacing:15.383549pt;}
.ws120{word-spacing:15.387799pt;}
.ws12b{word-spacing:15.451561pt;}
.ws11f{word-spacing:15.455812pt;}
.ws103{word-spacing:15.596087pt;}
.ws13f{word-spacing:15.659849pt;}
.wsc9{word-spacing:15.685354pt;}
.ws158{word-spacing:15.744864pt;}
.ws94{word-spacing:15.749115pt;}
.ws4a{word-spacing:15.753366pt;}
.ws144{word-spacing:15.766118pt;}
.ws11b{word-spacing:15.812877pt;}
.ws100{word-spacing:15.897892pt;}
.ws61{word-spacing:15.957403pt;}
.ws169{word-spacing:15.965905pt;}
.ws93{word-spacing:15.970155pt;}
.ws185{word-spacing:16.021165pt;}
.ws12a{word-spacing:16.025415pt;}
.ws96{word-spacing:16.089177pt;}
.ws102{word-spacing:16.123183pt;}
.ws95{word-spacing:16.140186pt;}
.ws143{word-spacing:16.191196pt;}
.ws101{word-spacing:16.229453pt;}
.ws179{word-spacing:16.288963pt;}
.wsae{word-spacing:16.297283pt;}
.ws18a{word-spacing:16.318719pt;}
.ws127{word-spacing:16.441991pt;}
.ws24{word-spacing:16.442658pt;}
.ws165{word-spacing:16.565264pt;}
.ws3f{word-spacing:16.569514pt;}
.wsf5{word-spacing:16.650279pt;}
.wsf7{word-spacing:16.667282pt;}
.ws32{word-spacing:16.675784pt;}
.wsc6{word-spacing:16.680035pt;}
.ws17e{word-spacing:16.718292pt;}
.ws140{word-spacing:16.748047pt;}
.wsf4{word-spacing:16.790555pt;}
.wsc7{word-spacing:16.803307pt;}
.ws2f{word-spacing:16.824561pt;}
.wsc8{word-spacing:16.837313pt;}
.ws31{word-spacing:16.875570pt;}
.wsdc{word-spacing:16.896824pt;}
.ws18c{word-spacing:17.028598pt;}
.ws8f{word-spacing:17.075356pt;}
.wsdb{word-spacing:17.096610pt;}
.wsad{word-spacing:17.135101pt;}
.wsf6{word-spacing:17.139118pt;}
.ws87{word-spacing:17.177375pt;}
.ws8b{word-spacing:17.198629pt;}
.ws2{word-spacing:17.205178pt;}
.wsac{word-spacing:17.284302pt;}
.ws129{word-spacing:17.462177pt;}
.ws190{word-spacing:17.551443pt;}
.ws5e{word-spacing:17.687468pt;}
.ws13e{word-spacing:17.874502pt;}
.wsa7{word-spacing:18.015002pt;}
.ws36{word-spacing:18.172056pt;}
.ws3e{word-spacing:18.206062pt;}
.ws162{word-spacing:18.291078pt;}
.ws79{word-spacing:18.384595pt;}
.ws37{word-spacing:18.439855pt;}
.ws18{word-spacing:18.489383pt;}
.ws148{word-spacing:18.520619pt;}
.ws30{word-spacing:18.550375pt;}
.ws65{word-spacing:18.563127pt;}
.ws8{word-spacing:18.580848pt;}
.ws6{word-spacing:18.603377pt;}
.ws7{word-spacing:18.699125pt;}
.ws8a{word-spacing:18.716155pt;}
.wscc{word-spacing:18.784167pt;}
.ws89{word-spacing:18.835177pt;}
.ws154{word-spacing:18.920192pt;}
.ws16e{word-spacing:19.013709pt;}
.wse8{word-spacing:19.060468pt;}
.ws10b{word-spacing:19.097661pt;}
.ws5{word-spacing:19.115913pt;}
.ws10a{word-spacing:19.239211pt;}
.ws16d{word-spacing:19.455790pt;}
.ws134{word-spacing:19.638573pt;}
.ws13d{word-spacing:19.719337pt;}
.ws191{word-spacing:19.753344pt;}
.ws13c{word-spacing:19.761845pt;}
.ws9e{word-spacing:19.829858pt;}
.ws8c{word-spacing:19.965882pt;}
.wsd0{word-spacing:19.991387pt;}
.wsd1{word-spacing:20.072152pt;}
.ws3b{word-spacing:20.101907pt;}
.ws3a{word-spacing:20.212427pt;}
.wse0{word-spacing:20.348452pt;}
.wsd3{word-spacing:20.356953pt;}
.ws40{word-spacing:20.420715pt;}
.wsd2{word-spacing:20.463223pt;}
.wsab{word-spacing:20.516979pt;}
.ws5f{word-spacing:20.777780pt;}
.ws68{word-spacing:20.820288pt;}
.ws69{word-spacing:20.824539pt;}
.ws38{word-spacing:21.011573pt;}
.wsfb{word-spacing:21.253867pt;}
.ws1be{word-spacing:21.501572pt;}
.ws83{word-spacing:21.666192pt;}
.ws46{word-spacing:21.725703pt;}
.ws126{word-spacing:21.738455pt;}
.ws145{word-spacing:21.878730pt;}
.wsc1{word-spacing:22.503594pt;}
.wsc2{word-spacing:22.507845pt;}
.ws3d{word-spacing:22.567356pt;}
.ws12f{word-spacing:22.716133pt;}
.ws130{word-spacing:22.835154pt;}
.ws141{word-spacing:23.039191pt;}
.ws60{word-spacing:23.064696pt;}
.wse7{word-spacing:23.158213pt;}
.wse5{word-spacing:23.175216pt;}
.wse6{word-spacing:23.489773pt;}
.ws4{word-spacing:23.814581pt;}
.wsc0{word-spacing:23.923352pt;}
.ws3{word-spacing:24.022600pt;}
.ws42{word-spacing:24.059377pt;}
.ws55{word-spacing:24.823009pt;}
.ws170{word-spacing:25.058309pt;}
.ws13b{word-spacing:25.687423pt;}
.ws4b{word-spacing:26.167761pt;}
.wsf2{word-spacing:26.605590pt;}
.ws192{word-spacing:27.655531pt;}
.ws193{word-spacing:27.791556pt;}
.ws4c{word-spacing:28.148621pt;}
.ws15e{word-spacing:31.302695pt;}
.wsaf{word-spacing:31.565466pt;}
.wsa8{word-spacing:35.509714pt;}
.ws66{word-spacing:36.552400pt;}
.ws73{word-spacing:38.469499pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._5{width:1.037163pt;}
._0{width:4.966400pt;}
._11{width:7.766163pt;}
._7{width:9.410005pt;}
._6{width:10.375172pt;}
._9{width:11.396621pt;}
._4{width:12.415347pt;}
._b{width:13.940681pt;}
._8{width:14.832058pt;}
._d{width:16.182694pt;}
._a{width:17.418200pt;}
._c{width:19.158235pt;}
._13{width:20.879799pt;}
._12{width:22.605613pt;}
._e{width:23.553535pt;}
._f{width:24.671488pt;}
._1e{width:26.635346pt;}
._15{width:31.345203pt;}
._1f{width:32.654441pt;}
._10{width:37.513075pt;}
._18{width:43.166603pt;}
._19{width:98.426657pt;}
._16{width:107.395788pt;}
._17{width:109.521175pt;}
._1b{width:110.456345pt;}
._14{width:113.096075pt;}
._1a{width:125.083256pt;}
._1c{width:138.770746pt;}
._1d{width:1829.055066pt;}
.fs8{font-size:23.788267pt;}
.fse{font-size:26.763733pt;}
.fsd{font-size:31.882667pt;}
.fs9{font-size:34.005333pt;}
.fsa{font-size:37.193600pt;}
.fs7{font-size:37.544533pt;}
.fsb{font-size:38.256533pt;}
.fs6{font-size:39.402133pt;}
.fsc{font-size:42.507733pt;}
.fs3{font-size:51.008533pt;}
.fs5{font-size:56.322667pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:71.730667pt;}
.fsf{font-size:74.387200pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.ycd{bottom:41.871971pt;}
.y1df{bottom:41.880067pt;}
.y72{bottom:68.333728pt;}
.y17e{bottom:69.695057pt;}
.y14a{bottom:69.695664pt;}
.y10d{bottom:69.769931pt;}
.y71{bottom:81.032985pt;}
.y10c{bottom:82.469187pt;}
.y149{bottom:83.679646pt;}
.y13{bottom:88.706667pt;}
.y70{bottom:93.807798pt;}
.y10b{bottom:95.244000pt;}
.y148{bottom:97.588176pt;}
.y17d{bottom:97.588632pt;}
.y17{bottom:101.040000pt;}
.y6f{bottom:106.582610pt;}
.y147{bottom:111.572158pt;}
.y6e{bottom:119.281867pt;}
.y16{bottom:120.666667pt;}
.y146{bottom:125.480688pt;}
.y17c{bottom:125.708560pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y145{bottom:139.464670pt;}
.y17b{bottom:139.617091pt;}
.y15{bottom:140.293333pt;}
.y6a{bottom:141.959067pt;}
.y69{bottom:146.192133pt;}
.y144{bottom:153.373200pt;}
.y142{bottom:153.373485pt;}
.y68{bottom:154.733854pt;}
.y143{bottom:158.135467pt;}
.y141{bottom:167.357467pt;}
.y13f{bottom:167.358734pt;}
.y67{bottom:167.508667pt;}
.y17a{bottom:167.509603pt;}
.y140{bottom:172.044133pt;}
.y13e{bottom:181.267264pt;}
.y13d{bottom:195.251246pt;}
.y179{bottom:195.629531pt;}
.y56{bottom:201.298021pt;}
.y13c{bottom:209.159776pt;}
.y178{bottom:209.613512pt;}
.y55{bottom:215.206552pt;}
.y13b{bottom:223.143758pt;}
.y177{bottom:223.522043pt;}
.y66{bottom:228.512525pt;}
.y54{bottom:229.190533pt;}
.y52{bottom:229.190955pt;}
.y53{bottom:233.877200pt;}
.y13a{bottom:237.052288pt;}
.y176{bottom:237.506024pt;}
.y65{bottom:242.421056pt;}
.y51{bottom:243.099485pt;}
.y139{bottom:251.036270pt;}
.ybe{bottom:251.413874pt;}
.y175{bottom:251.414555pt;}
.y64{bottom:256.405037pt;}
.y50{bottom:257.083467pt;}
.y4e{bottom:257.084024pt;}
.y4f{bottom:261.770000pt;}
.ybd{bottom:264.188687pt;}
.y138{bottom:264.944800pt;}
.y136{bottom:264.945221pt;}
.y174{bottom:265.398536pt;}
.y137{bottom:269.707067pt;}
.y63{bottom:270.313568pt;}
.y4d{bottom:270.992555pt;}
.ybc{bottom:276.963500pt;}
.y135{bottom:278.929203pt;}
.y173{bottom:279.307067pt;}
.y171{bottom:279.307352pt;}
.y172{bottom:284.069200pt;}
.y62{bottom:284.297549pt;}
.y4c{bottom:284.976536pt;}
.ybb{bottom:289.662756pt;}
.y106{bottom:291.099336pt;}
.y134{bottom:292.837733pt;}
.y132{bottom:292.838861pt;}
.y170{bottom:293.291333pt;}
.ye6{bottom:294.278793pt;}
.y133{bottom:297.600000pt;}
.y61{bottom:298.281531pt;}
.y4b{bottom:298.885067pt;}
.y49{bottom:298.885218pt;}
.yba{bottom:302.437569pt;}
.y4a{bottom:303.647200pt;}
.y105{bottom:305.007867pt;}
.y103{bottom:305.020497pt;}
.ya{bottom:306.382667pt;}
.y131{bottom:306.822843pt;}
.y16e{bottom:307.204614pt;}
.ye5{bottom:308.187324pt;}
.y104{bottom:309.770000pt;}
.y16f{bottom:311.962133pt;}
.y60{bottom:312.190061pt;}
.y48{bottom:312.869200pt;}
.y46{bottom:312.869336pt;}
.yb9{bottom:315.212382pt;}
.y47{bottom:317.555867pt;}
.y102{bottom:319.004479pt;}
.y130{bottom:320.731373pt;}
.y16d{bottom:321.188595pt;}
.ye4{bottom:322.171305pt;}
.y5f{bottom:326.174043pt;}
.y45{bottom:326.777867pt;}
.y43{bottom:326.778709pt;}
.yb8{bottom:327.987195pt;}
.y44{bottom:331.540133pt;}
.y101{bottom:332.913009pt;}
.y12f{bottom:334.715355pt;}
.y16c{bottom:335.097126pt;}
.y5e{bottom:340.082573pt;}
.yb7{bottom:340.686451pt;}
.y42{bottom:340.762691pt;}
.yd{bottom:343.546667pt;}
.y100{bottom:346.896991pt;}
.y12e{bottom:348.623885pt;}
.y16b{bottom:349.081107pt;}
.ye3{bottom:350.063817pt;}
.y9{bottom:351.724000pt;}
.yb6{bottom:353.461264pt;}
.y5d{bottom:354.066555pt;}
.y41{bottom:354.671221pt;}
.yff{bottom:360.805521pt;}
.y12d{bottom:362.607867pt;}
.y16a{bottom:362.989638pt;}
.ye2{bottom:363.972347pt;}
.y1a3{bottom:365.557213pt;}
.yb5{bottom:366.236077pt;}
.y5c{bottom:367.975085pt;}
.y1dd{bottom:372.893083pt;}
.yfe{bottom:374.789503pt;}
.y1a2{bottom:376.139673pt;}
.y12b{bottom:376.522176pt;}
.y169{bottom:376.973619pt;}
.ye1{bottom:377.956329pt;}
.yb4{bottom:378.935333pt;}
.y12c{bottom:381.278667pt;}
.y5b{bottom:381.959067pt;}
.y59{bottom:381.960139pt;}
.y40{bottom:382.563733pt;}
.y1dc{bottom:383.475542pt;}
.yb{bottom:386.533333pt;}
.y5a{bottom:386.645600pt;}
.y1a1{bottom:386.797794pt;}
.yfd{bottom:388.698033pt;}
.y12a{bottom:390.506158pt;}
.y168{bottom:390.882150pt;}
.ye0{bottom:391.864859pt;}
.y1db{bottom:394.133664pt;}
.y58{bottom:395.868669pt;}
.y8{bottom:397.065333pt;}
.y1a0{bottom:397.455916pt;}
.yfc{bottom:402.682015pt;}
.y129{bottom:404.414688pt;}
.y1da{bottom:404.716124pt;}
.y167{bottom:404.866131pt;}
.ydf{bottom:405.848841pt;}
.y19f{bottom:408.038375pt;}
.y57{bottom:409.852651pt;}
.y1d9{bottom:415.374245pt;}
.yfb{bottom:416.590545pt;}
.y128{bottom:418.398670pt;}
.y19e{bottom:418.696497pt;}
.y166{bottom:418.774661pt;}
.yb3{bottom:419.228320pt;}
.yde{bottom:419.757371pt;}
.y89{bottom:419.906598pt;}
.y1d8{bottom:426.032367pt;}
.y19d{bottom:429.278957pt;}
.yfa{bottom:430.574527pt;}
.y127{bottom:432.307200pt;}
.y165{bottom:432.758643pt;}
.yb2{bottom:433.212302pt;}
.ydd{bottom:433.741353pt;}
.y88{bottom:433.815128pt;}
.y10{bottom:433.826667pt;}
.y1d7{bottom:436.614827pt;}
.y19c{bottom:439.937078pt;}
.y7{bottom:442.406667pt;}
.yf9{bottom:444.483057pt;}
.y126{bottom:446.291181pt;}
.y164{bottom:446.667173pt;}
.yb1{bottom:447.120832pt;}
.y1d6{bottom:447.272948pt;}
.ydc{bottom:447.649883pt;}
.y3f{bottom:447.722390pt;}
.y87{bottom:447.799109pt;}
.y19b{bottom:450.595200pt;}
.y1d5{bottom:457.855408pt;}
.yf8{bottom:458.467039pt;}
.y125{bottom:460.199712pt;}
.y3e{bottom:460.497203pt;}
.y163{bottom:460.651155pt;}
.yb0{bottom:461.104814pt;}
.ydb{bottom:461.633865pt;}
.y86{bottom:461.707640pt;}
.y1d4{bottom:468.513530pt;}
.yf7{bottom:472.451020pt;}
.y3d{bottom:473.196459pt;}
.y124{bottom:474.183693pt;}
.yaf{bottom:475.013344pt;}
.y19a{bottom:475.018134pt;}
.yda{bottom:475.542395pt;}
.y85{bottom:475.691621pt;}
.y11{bottom:478.426667pt;}
.y1d3{bottom:479.095989pt;}
.y3c{bottom:485.971272pt;}
.yf6{bottom:486.359551pt;}
.y6{bottom:487.748000pt;}
.y123{bottom:488.167675pt;}
.y162{bottom:488.543667pt;}
.yae{bottom:488.997325pt;}
.yd9{bottom:489.526377pt;}
.y84{bottom:489.600152pt;}
.y1d2{bottom:489.754111pt;}
.y3b{bottom:498.746085pt;}
.yf5{bottom:500.343532pt;}
.y1d1{bottom:500.412233pt;}
.y122{bottom:502.076205pt;}
.yad{bottom:502.905856pt;}
.y199{bottom:502.910646pt;}
.yd8{bottom:503.434907pt;}
.y83{bottom:503.584133pt;}
.y81{bottom:503.586950pt;}
.y82{bottom:508.270800pt;}
.y1d0{bottom:510.994692pt;}
.y3a{bottom:511.445341pt;}
.yf4{bottom:514.252063pt;}
.y121{bottom:516.060187pt;}
.y161{bottom:516.663595pt;}
.yac{bottom:516.889837pt;}
.y198{bottom:516.894628pt;}
.yd7{bottom:517.418889pt;}
.y80{bottom:517.495480pt;}
.y1cf{bottom:521.652814pt;}
.y18{bottom:524.093333pt;}
.y39{bottom:524.220154pt;}
.yf3{bottom:528.236044pt;}
.y120{bottom:529.968717pt;}
.y160{bottom:530.572125pt;}
.yab{bottom:530.798368pt;}
.yd6{bottom:531.327419pt;}
.y7f{bottom:531.479462pt;}
.y1ce{bottom:532.235274pt;}
.y5{bottom:533.089333pt;}
.y38{bottom:536.994967pt;}
.yf2{bottom:542.144574pt;}
.y1cd{bottom:542.893395pt;}
.y11f{bottom:543.952699pt;}
.y15f{bottom:544.556107pt;}
.yaa{bottom:544.782349pt;}
.y197{bottom:544.787140pt;}
.yd5{bottom:545.311401pt;}
.y7e{bottom:545.387992pt;}
.y37{bottom:549.769780pt;}
.y1cc{bottom:553.551517pt;}
.yf1{bottom:556.128556pt;}
.y11e{bottom:557.861229pt;}
.y15e{bottom:558.464637pt;}
.ya9{bottom:558.690880pt;}
.yd4{bottom:559.219931pt;}
.y7d{bottom:559.371974pt;}
.ye{bottom:561.706667pt;}
.y36{bottom:562.469036pt;}
.y1cb{bottom:564.133977pt;}
.yf0{bottom:570.037086pt;}
.y11d{bottom:571.845211pt;}
.y15d{bottom:572.448619pt;}
.ya8{bottom:572.674861pt;}
.y196{bottom:572.679652pt;}
.yd3{bottom:573.203912pt;}
.y7c{bottom:573.280504pt;}
.y1ca{bottom:574.792098pt;}
.y35{bottom:575.243849pt;}
.y2f{bottom:583.182354pt;}
.yef{bottom:584.021068pt;}
.y1c9{bottom:585.374558pt;}
.y11c{bottom:585.753741pt;}
.y15c{bottom:586.357149pt;}
.ya7{bottom:586.583392pt;}
.y195{bottom:586.588182pt;}
.yd2{bottom:587.112443pt;}
.y7b{bottom:587.264486pt;}
.y34{bottom:588.018662pt;}
.y2e{bottom:594.596244pt;}
.y1c8{bottom:596.032679pt;}
.yee{bottom:597.929598pt;}
.y11b{bottom:599.737723pt;}
.y15b{bottom:600.341131pt;}
.ya6{bottom:600.567373pt;}
.y194{bottom:600.572163pt;}
.y33{bottom:600.717918pt;}
.yd1{bottom:601.096424pt;}
.y7a{bottom:601.173016pt;}
.y2d{bottom:606.085796pt;}
.y1c7{bottom:606.615139pt;}
.yed{bottom:611.913580pt;}
.y32{bottom:613.492731pt;}
.y11a{bottom:613.646253pt;}
.y15a{bottom:614.249661pt;}
.ya5{bottom:614.475904pt;}
.y193{bottom:614.480694pt;}
.yd0{bottom:615.004955pt;}
.y79{bottom:615.156998pt;}
.y1c6{bottom:617.273261pt;}
.y2c{bottom:617.499686pt;}
.yec{bottom:625.822110pt;}
.y31{bottom:626.267544pt;}
.y119{bottom:627.630235pt;}
.y1c5{bottom:627.931382pt;}
.y159{bottom:628.233643pt;}
.ya4{bottom:628.459885pt;}
.y192{bottom:628.464675pt;}
.y2b{bottom:628.913577pt;}
.ycf{bottom:628.988936pt;}
.y78{bottom:629.065528pt;}
.y1c4{bottom:638.513842pt;}
.y30{bottom:638.966800pt;}
.yeb{bottom:639.806092pt;}
.y2a{bottom:640.327467pt;}
.y158{bottom:642.142173pt;}
.ya3{bottom:642.443867pt;}
.ya1{bottom:642.451585pt;}
.yce{bottom:642.897467pt;}
.y77{bottom:643.049509pt;}
.ya2{bottom:647.130533pt;}
.y1c3{bottom:649.171964pt;}
.yea{bottom:653.714622pt;}
.y118{bottom:655.522746pt;}
.y157{bottom:656.126155pt;}
.y191{bottom:656.357187pt;}
.ya0{bottom:656.360115pt;}
.y76{bottom:656.958040pt;}
.y1c2{bottom:659.754423pt;}
.y29{bottom:665.045467pt;}
.y156{bottom:670.034685pt;}
.y9f{bottom:670.344097pt;}
.y1c1{bottom:670.412545pt;}
.y75{bottom:670.942021pt;}
.y10a{bottom:672.831251pt;}
.y1c0{bottom:681.079949pt;}
.ye9{bottom:681.607134pt;}
.y155{bottom:684.018667pt;}
.y153{bottom:684.019088pt;}
.y117{bottom:684.019931pt;}
.y190{bottom:684.249699pt;}
.y9e{bottom:684.252627pt;}
.y109{bottom:685.606064pt;}
.y154{bottom:688.705333pt;}
.y1bf{bottom:691.662409pt;}
.y4{bottom:691.756000pt;}
.y152{bottom:697.927618pt;}
.y116{bottom:697.928461pt;}
.y18f{bottom:698.233681pt;}
.y9d{bottom:698.236609pt;}
.y108{bottom:698.380877pt;}
.y74{bottom:698.834533pt;}
.y1be{bottom:702.320530pt;}
.y28{bottom:709.039200pt;}
.ye8{bottom:709.499646pt;}
.y107{bottom:711.080133pt;}
.y151{bottom:711.911600pt;}
.y115{bottom:711.912443pt;}
.y14f{bottom:711.916314pt;}
.y18e{bottom:712.142211pt;}
.y9c{bottom:712.145139pt;}
.y27{bottom:712.743200pt;}
.y1bd{bottom:712.902990pt;}
.y150{bottom:716.598267pt;}
.y26{bottom:720.453467pt;}
.ye7{bottom:723.483628pt;}
.y1bc{bottom:723.561111pt;}
.y25{bottom:724.232933pt;}
.y12{bottom:725.040000pt;}
.y114{bottom:725.896424pt;}
.y14e{bottom:725.900296pt;}
.y18d{bottom:726.126193pt;}
.y9b{bottom:726.129120pt;}
.y24{bottom:731.867467pt;}
.y1bb{bottom:734.143571pt;}
.y23{bottom:735.647200pt;}
.y113{bottom:739.804955pt;}
.y14d{bottom:739.808826pt;}
.y18c{bottom:740.034723pt;}
.y9a{bottom:740.037651pt;}
.y22{bottom:743.281733pt;}
.y1ba{bottom:744.801693pt;}
.y21{bottom:747.061333pt;}
.y110{bottom:753.335174pt;}
.y112{bottom:753.788936pt;}
.y14c{bottom:753.792808pt;}
.y99{bottom:754.021632pt;}
.y20{bottom:754.695867pt;}
.y1b9{bottom:755.459814pt;}
.y1f{bottom:758.475467pt;}
.y1b8{bottom:766.042274pt;}
.y10f{bottom:766.109987pt;}
.y1e{bottom:766.110000pt;}
.y111{bottom:767.697467pt;}
.y14b{bottom:767.701338pt;}
.y18b{bottom:767.927235pt;}
.y98{bottom:767.930163pt;}
.y1d{bottom:769.889600pt;}
.y1b7{bottom:776.700396pt;}
.y10e{bottom:778.884800pt;}
.ycb{bottom:781.533214pt;}
.y97{bottom:781.914144pt;}
.y1b6{bottom:787.282855pt;}
.y1b{bottom:788.031333pt;}
.y1c{bottom:794.305333pt;}
.yca{bottom:795.517195pt;}
.y18a{bottom:795.819747pt;}
.y180{bottom:797.631277pt;}
.y1b5{bottom:797.940977pt;}
.y3{bottom:805.081333pt;}
.y1b4{bottom:808.599099pt;}
.yc9{bottom:809.425725pt;}
.y189{bottom:809.803728pt;}
.y96{bottom:809.806656pt;}
.y17f{bottom:810.330533pt;}
.y1b3{bottom:819.181558pt;}
.y1a{bottom:821.366667pt;}
.yc8{bottom:823.409707pt;}
.y95{bottom:823.715187pt;}
.y1b2{bottom:829.839680pt;}
.yc7{bottom:837.318237pt;}
.y188{bottom:837.696240pt;}
.y94{bottom:837.699168pt;}
.y1b1{bottom:840.422140pt;}
.y19{bottom:850.544667pt;}
.y1b0{bottom:851.080261pt;}
.yc6{bottom:851.302219pt;}
.y93{bottom:851.607698pt;}
.y2{bottom:857.092000pt;}
.y1af{bottom:861.662721pt;}
.yc5{bottom:865.210749pt;}
.y187{bottom:865.588752pt;}
.y92{bottom:865.591680pt;}
.y1ae{bottom:872.320843pt;}
.yc4{bottom:879.194731pt;}
.y186{bottom:879.497283pt;}
.y91{bottom:879.500210pt;}
.y1{bottom:879.748000pt;}
.y1ad{bottom:882.978964pt;}
.y6d{bottom:892.043867pt;}
.yc3{bottom:893.103261pt;}
.y90{bottom:893.484192pt;}
.y1ac{bottom:893.561424pt;}
.y1ab{bottom:904.219546pt;}
.yc2{bottom:907.087243pt;}
.y185{bottom:907.389795pt;}
.y8f{bottom:907.392722pt;}
.y1aa{bottom:914.802005pt;}
.yc1{bottom:920.995773pt;}
.y8e{bottom:921.376704pt;}
.y1a9{bottom:925.460127pt;}
.y6c{bottom:928.024933pt;}
.yc0{bottom:934.979755pt;}
.y184{bottom:935.282307pt;}
.y8d{bottom:935.285234pt;}
.y1a8{bottom:936.118249pt;}
.y1a7{bottom:946.700708pt;}
.y183{bottom:949.266288pt;}
.y8c{bottom:949.269216pt;}
.y1a6{bottom:957.358830pt;}
.ybf{bottom:962.872267pt;}
.y182{bottom:963.174818pt;}
.y8b{bottom:963.177746pt;}
.y6b{bottom:965.820267pt;}
.y1a5{bottom:967.941290pt;}
.y181{bottom:977.158800pt;}
.y8a{bottom:977.161728pt;}
.y1a4{bottom:978.599411pt;}
.y73{bottom:1002.254933pt;}
.ycc{bottom:1003.237600pt;}
.y1de{bottom:1003.245696pt;}
.h10{height:17.508164pt;}
.h18{height:19.698108pt;}
.h17{height:23.465643pt;}
.h11{height:25.027925pt;}
.h1c{height:25.548207pt;}
.h12{height:25.551607pt;}
.h13{height:27.374490pt;}
.hf{height:27.632777pt;}
.h14{height:28.156809pt;}
.h1b{height:28.309835pt;}
.he{height:28.999970pt;}
.h4{height:29.333333pt;}
.h1a{height:30.903122pt;}
.h16{height:31.285692pt;}
.h15{height:31.455723pt;}
.hb{height:37.542281pt;}
.hd{height:41.453483pt;}
.h3{height:51.916667pt;}
.hc{height:52.793771pt;}
.h19{height:54.748979pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.ha{height:1058.000000pt;}
.h9{height:1058.268000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:50.116533pt;}
.x44{left:51.325365pt;}
.x2a{left:54.576400pt;}
.x26{left:55.710267pt;}
.x37{left:56.844000pt;}
.x42{left:64.100800pt;}
.x2b{left:66.066498pt;}
.x54{left:67.124306pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x49{left:115.577867pt;}
.x3b{left:122.305467pt;}
.x4b{left:123.514933pt;}
.xb{left:135.911733pt;}
.x3c{left:138.103867pt;}
.x4a{left:139.464533pt;}
.xc{left:141.203067pt;}
.xd{left:145.133867pt;}
.xe{left:150.954267pt;}
.x5{left:154.760000pt;}
.xf{left:159.647200pt;}
.x10{left:163.502267pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x4c{left:204.472400pt;}
.x47{left:214.374800pt;}
.x48{left:227.603067pt;}
.x4d{left:229.795200pt;}
.x39{left:250.582667pt;}
.x27{left:251.490430pt;}
.x30{left:252.623600pt;}
.x2c{left:258.746400pt;}
.x2d{left:267.590533pt;}
.x28{left:269.632275pt;}
.x31{left:275.981067pt;}
.x3a{left:280.214133pt;}
.x32{left:285.505467pt;}
.x11{left:290.343200pt;}
.x12{left:295.181067pt;}
.x13{left:299.036133pt;}
.x14{left:304.176267pt;}
.x38{left:306.066000pt;}
.x29{left:309.317349pt;}
.x2e{left:315.817200pt;}
.x2f{left:329.952667pt;}
.x33{left:356.787333pt;}
.x34{left:375.533733pt;}
.x15{left:376.667600pt;}
.x16{left:381.505467pt;}
.x17{left:385.360533pt;}
.x18{left:388.762133pt;}
.x43{left:389.973486pt;}
.x35{left:408.793909pt;}
.x3e{left:409.930194pt;}
.x56{left:413.329204pt;}
.x3d{left:424.746265pt;}
.x55{left:425.726699pt;}
.x19{left:448.781067pt;}
.x1a{left:454.072267pt;}
.x45{left:455.130667pt;}
.x1b{left:457.927467pt;}
.x36{left:459.061333pt;}
.x1c{left:463.899067pt;}
.x57{left:465.027749pt;}
.x46{left:468.207733pt;}
.x52{left:483.779333pt;}
.x53{left:495.722667pt;}
.x41{left:517.492800pt;}
.x4e{left:543.269200pt;}
.x1d{left:549.921067pt;}
.x1e{left:555.212400pt;}
.x1f{left:559.143200pt;}
.x50{left:562.847067pt;}
.x20{left:563.980933pt;}
.x4f{left:565.719600pt;}
.x21{left:567.836000pt;}
.x22{left:573.807733pt;}
.x23{left:577.662800pt;}
.x24{left:583.558933pt;}
.x25{left:587.489600pt;}
.x3f{left:605.933733pt;}
.x40{left:619.691200pt;}
.x51{left:734.588800pt;}
}




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