
    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_cb70822596b9d621d1d19d1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_303918afdde925e3d346154c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109000;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_e57a787811de781cc678d76c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937000;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_d714c1dd73393a1dd8c133ba.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.668000;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_0a8e13981d905462f329f8ab.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8c35804b9eecda2a9e624fe8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.587000;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_8c57133c165fa19b4e7e7e08.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.801000;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_48a7522340760646b3955b3b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.737000;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_df43d4665a17980d904b8204.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_62d062b4992d884f2f42e6ad.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.714046;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);}
.v3{vertical-align:-33.006000px;}
.v4{vertical-align:-16.320000px;}
.v7{vertical-align:-8.424000px;}
.v9{vertical-align:-6.744000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:16.314000px;}
.v5{vertical-align:18.360000px;}
.v6{vertical-align:20.400000px;}
.v1{vertical-align:27.024000px;}
.v2{vertical-align:33.006000px;}
.ls0{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.000030px;}
.ls2{letter-spacing:0.000188px;}
.ls1{letter-spacing:0.000298px;}
.ls61{letter-spacing:0.000976px;}
.ls5f{letter-spacing:0.001464px;}
.ls6b{letter-spacing:0.002371px;}
.lsa{letter-spacing:0.004800px;}
.ls38{letter-spacing:2.984734px;}
.ls2c{letter-spacing:2.985157px;}
.ls3{letter-spacing:2.985773px;}
.ls3c{letter-spacing:2.989800px;}
.ls11{letter-spacing:2.991119px;}
.ls3e{letter-spacing:2.991157px;}
.ls42{letter-spacing:5.394044px;}
.ls9{letter-spacing:6.063017px;}
.ls6a{letter-spacing:6.737990px;}
.ls31{letter-spacing:6.743990px;}
.ls12{letter-spacing:8.367504px;}
.ls5{letter-spacing:9.620734px;}
.ls4{letter-spacing:9.621596px;}
.ls6{letter-spacing:9.621754px;}
.ls58{letter-spacing:12.487908px;}
.ls29{letter-spacing:12.731750px;}
.ls43{letter-spacing:13.052268px;}
.ls10{letter-spacing:14.051088px;}
.ls34{letter-spacing:15.019487px;}
.ls4c{letter-spacing:15.608268px;}
.ls21{letter-spacing:15.864955px;}
.ls3f{letter-spacing:16.312555px;}
.ls37{letter-spacing:16.551226px;}
.ls27{letter-spacing:16.561222px;}
.ls44{letter-spacing:16.577510px;}
.ls1c{letter-spacing:16.579062px;}
.ls6c{letter-spacing:16.581157px;}
.ls32{letter-spacing:16.591012px;}
.ls60{letter-spacing:16.609464px;}
.ls18{letter-spacing:16.610956px;}
.ls4a{letter-spacing:16.845157px;}
.ls35{letter-spacing:17.361157px;}
.ls41{letter-spacing:17.601157px;}
.ls6d{letter-spacing:17.679157px;}
.ls5a{letter-spacing:17.840268px;}
.ls57{letter-spacing:17.880044px;}
.ls14{letter-spacing:17.953757px;}
.ls40{letter-spacing:18.003157px;}
.ls16{letter-spacing:18.003491px;}
.ls2b{letter-spacing:18.717157px;}
.ls26{letter-spacing:18.723157px;}
.ls1b{letter-spacing:18.998159px;}
.ls23{letter-spacing:19.047892px;}
.ls4e{letter-spacing:19.256268px;}
.lse{letter-spacing:19.353017px;}
.ls2a{letter-spacing:19.521157px;}
.ls3b{letter-spacing:19.567289px;}
.lsc{letter-spacing:19.721088px;}
.ls4f{letter-spacing:19.809157px;}
.ls1f{letter-spacing:19.843627px;}
.ls1d{letter-spacing:19.992827px;}
.lsf{letter-spacing:20.115017px;}
.ls20{letter-spacing:20.529157px;}
.ls1a{letter-spacing:20.788561px;}
.ls17{letter-spacing:20.937761px;}
.ls25{letter-spacing:20.987495px;}
.ls24{letter-spacing:21.045157px;}
.ls71{letter-spacing:21.083990px;}
.ls47{letter-spacing:21.086962px;}
.ls33{letter-spacing:21.117157px;}
.ls46{letter-spacing:21.136695px;}
.ls30{letter-spacing:21.417157px;}
.ls51{letter-spacing:21.543157px;}
.ls7{letter-spacing:21.876450px;}
.ls4b{letter-spacing:22.349990px;}
.ls45{letter-spacing:22.427990px;}
.ls1e{letter-spacing:22.809157px;}
.ls2e{letter-spacing:22.927097px;}
.lsd{letter-spacing:23.067017px;}
.ls8{letter-spacing:23.163300px;}
.ls2d{letter-spacing:23.623365px;}
.ls6e{letter-spacing:23.913300px;}
.ls28{letter-spacing:23.971499px;}
.ls69{letter-spacing:24.033157px;}
.ls59{letter-spacing:24.581990px;}
.ls64{letter-spacing:24.641990px;}
.ls52{letter-spacing:25.295990px;}
.ls19{letter-spacing:25.562968px;}
.ls3d{letter-spacing:25.623157px;}
.ls56{letter-spacing:25.769990px;}
.lsb{letter-spacing:25.785017px;}
.ls53{letter-spacing:25.863157px;}
.ls4d{letter-spacing:25.997990px;}
.ls22{letter-spacing:26.905769px;}
.ls68{letter-spacing:27.080268px;}
.ls13{letter-spacing:27.403103px;}
.ls49{letter-spacing:28.181990px;}
.ls2f{letter-spacing:28.248571px;}
.ls6f{letter-spacing:28.605157px;}
.ls5e{letter-spacing:28.664268px;}
.ls48{letter-spacing:30.311990px;}
.ls36{letter-spacing:30.861157px;}
.ls50{letter-spacing:31.313990px;}
.ls70{letter-spacing:31.691990px;}
.ls55{letter-spacing:31.784268px;}
.ls67{letter-spacing:33.827990px;}
.ls66{letter-spacing:35.066268px;}
.ls5d{letter-spacing:35.411990px;}
.ls54{letter-spacing:38.525990px;}
.ls65{letter-spacing:41.807990px;}
.ls15{letter-spacing:45.232618px;}
.ls63{letter-spacing:45.716268px;}
.ls5c{letter-spacing:47.492268px;}
.ls62{letter-spacing:52.463990px;}
.ls5b{letter-spacing:54.239990px;}
.ls39{letter-spacing:115.212745px;}
.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;}
}
.ws6{word-spacing:-67.391293px;}
.ws3{word-spacing:-67.307369px;}
.ws8{word-spacing:-57.274825px;}
.ws44{word-spacing:-49.733400px;}
.ws7{word-spacing:-49.290358px;}
.ws22{word-spacing:-44.760000px;}
.ws9{word-spacing:-43.516800px;}
.wsdb{word-spacing:-43.226308px;}
.ws5{word-spacing:-43.088671px;}
.ws47{word-spacing:-39.786600px;}
.ws4b{word-spacing:-38.046051px;}
.ws129{word-spacing:-37.946584px;}
.ws7f{word-spacing:-37.896851px;}
.wscb{word-spacing:-37.797384px;}
.ws65{word-spacing:-37.697917px;}
.wsa4{word-spacing:-37.648184px;}
.ws4d{word-spacing:-37.498984px;}
.wsf0{word-spacing:-37.399517px;}
.ws11b{word-spacing:-37.349783px;}
.ws2c{word-spacing:-37.250317px;}
.ws9c{word-spacing:-37.200583px;}
.ws37{word-spacing:-37.150850px;}
.ws109{word-spacing:-37.101116px;}
.ws7d{word-spacing:-37.051383px;}
.ws7c{word-spacing:-37.001650px;}
.ws81{word-spacing:-36.752983px;}
.wsf1{word-spacing:-36.703249px;}
.wsd9{word-spacing:-36.603782px;}
.ws98{word-spacing:-36.554049px;}
.wsc8{word-spacing:-36.504316px;}
.wsdc{word-spacing:-36.404849px;}
.ws21{word-spacing:-36.389880px;}
.ws77{word-spacing:-36.355115px;}
.ws110{word-spacing:-36.255649px;}
.ws117{word-spacing:-36.156182px;}
.ws6f{word-spacing:-36.106448px;}
.ws54{word-spacing:-36.056715px;}
.wsf8{word-spacing:-35.907515px;}
.wsf9{word-spacing:-35.857781px;}
.ws79{word-spacing:-35.808048px;}
.ws105{word-spacing:-35.758315px;}
.wsa9{word-spacing:-35.708581px;}
.ws2f{word-spacing:-35.609114px;}
.ws53{word-spacing:-35.559381px;}
.ws10b{word-spacing:-35.467657px;}
.ws25{word-spacing:-35.459914px;}
.wse0{word-spacing:-35.410181px;}
.wsc4{word-spacing:-35.360447px;}
.wsde{word-spacing:-35.260981px;}
.wsdf{word-spacing:-35.111780px;}
.ws6b{word-spacing:-35.062047px;}
.ws9d{word-spacing:-35.012314px;}
.ws124{word-spacing:-34.962580px;}
.ws7e{word-spacing:-34.863113px;}
.ws10a{word-spacing:-34.813200px;}
.wsb8{word-spacing:-34.763647px;}
.wsa7{word-spacing:-34.713913px;}
.wsd7{word-spacing:-34.614446px;}
.ws93{word-spacing:-34.564713px;}
.ws121{word-spacing:-34.514980px;}
.ws66{word-spacing:-34.415513px;}
.ws82{word-spacing:-34.365779px;}
.ws97{word-spacing:-34.316046px;}
.wsce{word-spacing:-34.216579px;}
.ws76{word-spacing:-34.166846px;}
.wsf7{word-spacing:-34.117112px;}
.wsf5{word-spacing:-34.067379px;}
.ws2b{word-spacing:-34.017646px;}
.ws35{word-spacing:-33.967912px;}
.ws116{word-spacing:-33.918179px;}
.ws27{word-spacing:-33.868445px;}
.ws57{word-spacing:-33.818712px;}
.wsb6{word-spacing:-33.669512px;}
.ws38{word-spacing:-33.619778px;}
.ws86{word-spacing:-33.520312px;}
.wse3{word-spacing:-33.470578px;}
.wsd2{word-spacing:-33.420845px;}
.ws4a{word-spacing:-33.371111px;}
.ws3b{word-spacing:-33.271645px;}
.ws26{word-spacing:-33.221911px;}
.ws126{word-spacing:-33.179982px;}
.ws3e{word-spacing:-33.172178px;}
.ws6a{word-spacing:-33.122444px;}
.ws108{word-spacing:-33.113106px;}
.wsa3{word-spacing:-33.072711px;}
.ws122{word-spacing:-33.022978px;}
.wsc3{word-spacing:-32.973244px;}
.ws59{word-spacing:-32.923511px;}
.wseb{word-spacing:-32.824044px;}
.ws24{word-spacing:-32.724577px;}
.ws6d{word-spacing:-32.674844px;}
.ws63{word-spacing:-32.625110px;}
.wsa5{word-spacing:-32.575377px;}
.ws72{word-spacing:-32.525644px;}
.ws85{word-spacing:-32.475910px;}
.wsaa{word-spacing:-32.376443px;}
.ws104{word-spacing:-32.276977px;}
.ws5f{word-spacing:-32.227243px;}
.ws55{word-spacing:-32.177510px;}
.wsef{word-spacing:-32.127776px;}
.wse7{word-spacing:-32.078043px;}
.ws5a{word-spacing:-32.028310px;}
.ws10e{word-spacing:-31.978576px;}
.ws18{word-spacing:-31.958640px;}
.ws89{word-spacing:-31.928843px;}
.wsed{word-spacing:-31.879109px;}
.ws10d{word-spacing:-31.829376px;}
.ws2d{word-spacing:-31.779643px;}
.ws36{word-spacing:-31.729909px;}
.ws69{word-spacing:-31.680176px;}
.ws12{word-spacing:-31.645320px;}
.wsb3{word-spacing:-31.630442px;}
.ws62{word-spacing:-31.530976px;}
.ws1a{word-spacing:-31.478400px;}
.ws1b{word-spacing:-31.466280px;}
.wsa0{word-spacing:-31.381775px;}
.ws11{word-spacing:-31.376760px;}
.ws88{word-spacing:-31.332042px;}
.ws8c{word-spacing:-31.282309px;}
.wsbf{word-spacing:-31.232575px;}
.ws101{word-spacing:-31.188841px;}
.wsd1{word-spacing:-31.182842px;}
.ws16{word-spacing:-31.152960px;}
.wsd8{word-spacing:-31.083375px;}
.wsbc{word-spacing:-31.033642px;}
.ws113{word-spacing:-30.983908px;}
.wsbb{word-spacing:-30.934175px;}
.wse2{word-spacing:-30.884441px;}
.wsa8{word-spacing:-30.834708px;}
.ws46{word-spacing:-30.735241px;}
.ws60{word-spacing:-30.685508px;}
.ws61{word-spacing:-30.635774px;}
.ws112{word-spacing:-30.586041px;}
.wsd0{word-spacing:-30.486574px;}
.ws75{word-spacing:-30.436841px;}
.ws2a{word-spacing:-30.387107px;}
.wsbe{word-spacing:-30.337374px;}
.wsfc{word-spacing:-30.287641px;}
.wsa2{word-spacing:-30.188174px;}
.ws111{word-spacing:-30.138440px;}
.wsfe{word-spacing:-30.088707px;}
.ws39{word-spacing:-29.989240px;}
.ws50{word-spacing:-29.939507px;}
.ws4f{word-spacing:-29.889773px;}
.wsd{word-spacing:-29.839950px;}
.ws8d{word-spacing:-29.790307px;}
.ws4c{word-spacing:-29.740573px;}
.wsf{word-spacing:-29.675880px;}
.ws11a{word-spacing:-29.641106px;}
.ws11e{word-spacing:-29.591373px;}
.ws41{word-spacing:-29.541640px;}
.wsb4{word-spacing:-29.491906px;}
.ws1e{word-spacing:-29.452080px;}
.ws5b{word-spacing:-29.442173px;}
.wsbd{word-spacing:-29.392439px;}
.wsa6{word-spacing:-29.292973px;}
.ws68{word-spacing:-29.243239px;}
.ws90{word-spacing:-29.143772px;}
.ws31{word-spacing:-29.094039px;}
.ws56{word-spacing:-29.044306px;}
.ws43{word-spacing:-28.994572px;}
.ws125{word-spacing:-28.944839px;}
.wsff{word-spacing:-28.895105px;}
.ws67{word-spacing:-28.845372px;}
.ws3c{word-spacing:-28.795639px;}
.ws2e{word-spacing:-28.745905px;}
.ws1d{word-spacing:-28.735920px;}
.ws6e{word-spacing:-28.696172px;}
.ws1c{word-spacing:-28.601640px;}
.ws52{word-spacing:-28.596705px;}
.wsb9{word-spacing:-28.497238px;}
.ws14{word-spacing:-28.467360px;}
.wsea{word-spacing:-28.447505px;}
.ws8b{word-spacing:-28.397771px;}
.ws78{word-spacing:-28.348038px;}
.wsba{word-spacing:-28.298305px;}
.wsc1{word-spacing:-28.248571px;}
.ws20{word-spacing:-28.198800px;}
.ws100{word-spacing:-28.149104px;}
.ws106{word-spacing:-28.099371px;}
.ws107{word-spacing:-28.049638px;}
.wsfd{word-spacing:-27.999904px;}
.ws42{word-spacing:-27.800971px;}
.ws19{word-spacing:-27.751200px;}
.ws8e{word-spacing:-27.701504px;}
.ws10c{word-spacing:-27.690010px;}
.ws5e{word-spacing:-27.651770px;}
.ws94{word-spacing:-27.602037px;}
.ws13e{word-spacing:-27.532327px;}
.ws114{word-spacing:-27.502570px;}
.ws115{word-spacing:-27.452837px;}
.ws1f{word-spacing:-27.437880px;}
.wsae{word-spacing:-27.403103px;}
.wsc{word-spacing:-27.373181px;}
.ws91{word-spacing:-27.353370px;}
.ws3d{word-spacing:-27.204170px;}
.ws80{word-spacing:-27.154436px;}
.wsca{word-spacing:-27.104703px;}
.wsc9{word-spacing:-27.104035px;}
.ws13a{word-spacing:-27.094675px;}
.wsec{word-spacing:-27.054970px;}
.ws74{word-spacing:-27.005236px;}
.wsad{word-spacing:-26.955503px;}
.ws58{word-spacing:-26.905769px;}
.ws138{word-spacing:-26.895742px;}
.ws102{word-spacing:-26.864761px;}
.wsb5{word-spacing:-26.856036px;}
.ws10{word-spacing:-26.856000px;}
.ws51{word-spacing:-26.806303px;}
.ws14d{word-spacing:-26.776382px;}
.wsd6{word-spacing:-26.756569px;}
.wsee{word-spacing:-26.706836px;}
.wsd3{word-spacing:-26.607369px;}
.ws92{word-spacing:-26.557636px;}
.ws9a{word-spacing:-26.507902px;}
.wsb1{word-spacing:-26.408435px;}
.wsd5{word-spacing:-26.358702px;}
.ws9e{word-spacing:-26.308969px;}
.ws73{word-spacing:-26.259235px;}
.ws99{word-spacing:-26.209502px;}
.wsf6{word-spacing:-26.159768px;}
.ws13f{word-spacing:-26.139796px;}
.ws3a{word-spacing:-26.110035px;}
.ws14f{word-spacing:-26.100010px;}
.wsf2{word-spacing:-26.060302px;}
.ws30{word-spacing:-25.960835px;}
.ws95{word-spacing:-25.911101px;}
.ws153{word-spacing:-25.901077px;}
.ws96{word-spacing:-25.861368px;}
.wsdd{word-spacing:-25.811635px;}
.ws7a{word-spacing:-25.761901px;}
.ws17{word-spacing:-25.737000px;}
.ws5c{word-spacing:-25.712168px;}
.ws103{word-spacing:-25.662434px;}
.ws9b{word-spacing:-25.612701px;}
.ws10f{word-spacing:-25.562968px;}
.wse4{word-spacing:-25.513234px;}
.ws14a{word-spacing:-25.423637px;}
.wsf4{word-spacing:-25.364034px;}
.ws49{word-spacing:-25.314301px;}
.wsd4{word-spacing:-25.264567px;}
.wsfa{word-spacing:-25.165100px;}
.ws64{word-spacing:-24.916433px;}
.ws148{word-spacing:-24.906412px;}
.wsfb{word-spacing:-24.866700px;}
.ws15{word-spacing:-24.841800px;}
.wsb2{word-spacing:-24.816967px;}
.ws123{word-spacing:-24.803309px;}
.wsa1{word-spacing:-24.767233px;}
.wsa{word-spacing:-24.747265px;}
.ws127{word-spacing:-24.717500px;}
.wse5{word-spacing:-24.667766px;}
.ws143{word-spacing:-24.667692px;}
.ws14c{word-spacing:-24.627905px;}
.ws146{word-spacing:-24.588119px;}
.ws128{word-spacing:-24.568300px;}
.wsf3{word-spacing:-24.518566px;}
.ws71{word-spacing:-24.468833px;}
.ws131{word-spacing:-24.468759px;}
.ws70{word-spacing:-24.419099px;}
.ws152{word-spacing:-24.389186px;}
.ws119{word-spacing:-24.220166px;}
.ws40{word-spacing:-24.170432px;}
.ws11d{word-spacing:-24.120699px;}
.wsb7{word-spacing:-23.921765px;}
.ws137{word-spacing:-23.752600px;}
.ws14e{word-spacing:-23.712814px;}
.ws15b{word-spacing:-23.633240px;}
.wscf{word-spacing:-23.623365px;}
.ws13c{word-spacing:-23.553667px;}
.wse8{word-spacing:-23.523898px;}
.ws130{word-spacing:-23.434307px;}
.wsda{word-spacing:-23.374698px;}
.wsb0{word-spacing:-23.324965px;}
.ws84{word-spacing:-23.275231px;}
.ws34{word-spacing:-23.235374px;}
.wse{word-spacing:-23.219250px;}
.ws1{word-spacing:-23.195588px;}
.wsc2{word-spacing:-23.126031px;}
.ws83{word-spacing:-23.076298px;}
.ws12e{word-spacing:-23.036441px;}
.ws7b{word-spacing:-23.026564px;}
.ws158{word-spacing:-22.837508px;}
.ws5d{word-spacing:-22.827631px;}
.ws136{word-spacing:-22.797722px;}
.wsc0{word-spacing:-22.777897px;}
.ws120{word-spacing:-22.678430px;}
.ws159{word-spacing:-22.559002px;}
.ws28{word-spacing:-22.380030px;}
.ws29{word-spacing:-22.330297px;}
.ws15c{word-spacing:-22.200923px;}
.ws6c{word-spacing:-22.131363px;}
.ws4e{word-spacing:-22.081630px;}
.ws3f{word-spacing:-21.982163px;}
.ws141{word-spacing:-21.922417px;}
.ws13{word-spacing:-21.887640px;}
.wsc6{word-spacing:-21.882696px;}
.wsc5{word-spacing:-21.832963px;}
.ws8f{word-spacing:-21.733496px;}
.wsaf{word-spacing:-21.634029px;}
.wse6{word-spacing:-21.534562px;}
.ws32{word-spacing:-21.444977px;}
.ws8a{word-spacing:-21.435095px;}
.ws45{word-spacing:-21.385362px;}
.wscd{word-spacing:-21.335629px;}
.ws11f{word-spacing:-21.186428px;}
.wse9{word-spacing:-21.086962px;}
.ws12c{word-spacing:-21.086898px;}
.ws12d{word-spacing:-21.047111px;}
.ws118{word-spacing:-20.888028px;}
.wse1{word-spacing:-20.738828px;}
.ws142{word-spacing:-20.649245px;}
.ws9f{word-spacing:-20.241494px;}
.ws87{word-spacing:-20.191760px;}
.ws11c{word-spacing:-20.092294px;}
.ws149{word-spacing:-20.092233px;}
.ws144{word-spacing:-20.012660px;}
.ws12b{word-spacing:-19.853513px;}
.ws33{word-spacing:-18.460982px;}
.ws147{word-spacing:-18.182476px;}
.ws151{word-spacing:-17.824397px;}
.ws139{word-spacing:-17.307171px;}
.ws15a{word-spacing:-16.869518px;}
.ws134{word-spacing:-15.994213px;}
.ws154{word-spacing:-15.636134px;}
.ws12f{word-spacing:-15.079121px;}
.ws12a{word-spacing:-15.069220px;}
.ws135{word-spacing:-14.959762px;}
.ws132{word-spacing:-13.766164px;}
.ws140{word-spacing:-13.447871px;}
.ws13b{word-spacing:-13.089791px;}
.ws150{word-spacing:-12.453206px;}
.ws13d{word-spacing:-11.577901px;}
.ws156{word-spacing:-11.100461px;}
.ws14b{word-spacing:-10.861742px;}
.ws145{word-spacing:-10.821955px;}
.ws133{word-spacing:-10.782169px;}
.ws155{word-spacing:-10.623022px;}
.ws157{word-spacing:-5.967990px;}
.wscc{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:16.498107px;}
.wsac{word-spacing:16.511489px;}
.ws2{word-spacing:16.545928px;}
.wsab{word-spacing:16.551226px;}
.wsb{word-spacing:21.876450px;}
.ws23{word-spacing:24.816967px;}
.wsc7{word-spacing:166.626281px;}
.ws48{word-spacing:874.441634px;}
._5{margin-left:-23.163300px;}
._3{margin-left:-21.764550px;}
._1{margin-left:-2.984123px;}
._6{width:2.998920px;}
._0{width:10.955032px;}
._2{width:16.511439px;}
._4{width:24.866625px;}
._7{width:33.138465px;}
._9{width:115.168378px;}
._e{width:174.026588px;}
._f{width:185.485129px;}
._a{width:206.426710px;}
._b{width:240.907863px;}
._c{width:348.928482px;}
._d{width:489.852619px;}
._10{width:522.915284px;}
._8{width:914.083056px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:27.850200px;}
.fs11{font-size:31.331400px;}
.fs16{font-size:34.813200px;}
.fs18{font-size:39.332400px;}
.fs5{font-size:39.786600px;}
.fs4{font-size:42.000000px;}
.fs15{font-size:42.082200px;}
.fsa{font-size:43.516800px;}
.fs1b{font-size:44.186400px;}
.fsf{font-size:44.760000px;}
.fs19{font-size:44.951400px;}
.fsb{font-size:46.127400px;}
.fs12{font-size:47.342400px;}
.fs6{font-size:47.820600px;}
.fs14{font-size:49.165800px;}
.fs13{font-size:49.733400px;}
.fs10{font-size:50.570400px;}
.fsc{font-size:52.115400px;}
.fs1a{font-size:55.233000px;}
.fse{font-size:55.950000px;}
.fs17{font-size:56.189400px;}
.fs8{font-size:59.679600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:65.896200px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.924400px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.yb6{bottom:77.062500px;}
.y129{bottom:77.064000px;}
.y74{bottom:89.914500px;}
.yf8{bottom:92.301000px;}
.y1bb{bottom:92.637000px;}
.y128{bottom:92.670000px;}
.y155{bottom:92.719500px;}
.yb5{bottom:92.769000px;}
.y186{bottom:92.905500px;}
.y160{bottom:92.971500px;}
.y1d0{bottom:92.980500px;}
.y1a2{bottom:92.983500px;}
.y1c9{bottom:93.105000px;}
.y16a{bottom:93.268500px;}
.y1a7{bottom:93.397500px;}
.y1b3{bottom:93.438000px;}
.y1bf{bottom:95.751000px;}
.y4{bottom:97.125005px;}
.y1ff{bottom:102.601500px;}
.y73{bottom:102.766500px;}
.yf7{bottom:107.538000px;}
.y1ba{bottom:108.210000px;}
.y127{bottom:108.277500px;}
.y154{bottom:108.375000px;}
.yb4{bottom:108.477000px;}
.y185{bottom:108.748500px;}
.y15f{bottom:108.880500px;}
.y1cf{bottom:108.897000px;}
.y1a1{bottom:108.904500px;}
.y1c8{bottom:109.147500px;}
.y169{bottom:109.474500px;}
.y1a6{bottom:109.732500px;}
.y1b2{bottom:109.812000px;}
.y1be{bottom:114.439500px;}
.y1fe{bottom:115.453500px;}
.y238{bottom:116.800500px;}
.yf6{bottom:122.776500px;}
.y1b9{bottom:123.783000px;}
.y126{bottom:123.883500px;}
.y153{bottom:124.030500px;}
.yb3{bottom:124.183500px;}
.y184{bottom:124.591500px;}
.y1ce{bottom:124.813500px;}
.y1a0{bottom:124.827000px;}
.y1c7{bottom:125.190000px;}
.y168{bottom:125.680500px;}
.y1a5{bottom:126.066000px;}
.y1b1{bottom:126.186000px;}
.y1fd{bottom:128.140500px;}
.y237{bottom:129.652500px;}
.y60{bottom:130.413000px;}
.y1bd{bottom:133.128000px;}
.yf5{bottom:138.013500px;}
.y21{bottom:139.264499px;}
.y1b8{bottom:139.357500px;}
.y125{bottom:139.491000px;}
.y152{bottom:139.687500px;}
.yb2{bottom:139.890000px;}
.y183{bottom:140.434500px;}
.y1cd{bottom:140.731500px;}
.y19f{bottom:140.748000px;}
.y1c6{bottom:141.232500px;}
.y15e{bottom:141.787500px;}
.y167{bottom:141.886500px;}
.y236{bottom:142.504500px;}
.y1b0{bottom:142.560000px;}
.y5f{bottom:144.207000px;}
.y72{bottom:146.160000px;}
.y1bc{bottom:151.815000px;}
.yf4{bottom:153.252000px;}
.y1b7{bottom:154.930500px;}
.y124{bottom:155.097000px;}
.y151{bottom:155.343000px;}
.yb1{bottom:155.596500px;}
.y182{bottom:156.276000px;}
.y1fc{bottom:156.517500px;}
.y235{bottom:156.537000px;}
.y1cc{bottom:156.648000px;}
.y19e{bottom:156.669000px;}
.y5e{bottom:157.057500px;}
.y1c5{bottom:157.275000px;}
.y166{bottom:158.092500px;}
.y1af{bottom:158.934000px;}
.y1a4{bottom:159.948000px;}
.y71{bottom:161.907000px;}
.yf3{bottom:168.490500px;}
.y234{bottom:169.389000px;}
.y1b6{bottom:170.503500px;}
.y123{bottom:170.704500px;}
.y150{bottom:170.998500px;}
.yb0{bottom:171.303000px;}
.y181{bottom:172.119000px;}
.y1cb{bottom:172.564500px;}
.y19d{bottom:172.590000px;}
.y1c4{bottom:173.317500px;}
.y5d{bottom:173.989500px;}
.y165{bottom:174.298500px;}
.y1ae{bottom:175.308000px;}
.y15d{bottom:175.782000px;}
.y70{bottom:177.654000px;}
.y233{bottom:183.423000px;}
.yf2{bottom:183.727500px;}
.y122{bottom:186.310500px;}
.y14f{bottom:186.654000px;}
.yaf{bottom:187.009500px;}
.y1fb{bottom:187.405500px;}
.y180{bottom:187.962000px;}
.y1ca{bottom:188.482500px;}
.y19c{bottom:188.511000px;}
.y1c3{bottom:189.360000px;}
.y164{bottom:190.503000px;}
.y1ad{bottom:191.683500px;}
.y15c{bottom:191.691000px;}
.y6f{bottom:193.401000px;}
.y232{bottom:196.275000px;}
.y18{bottom:196.933500px;}
.yf1{bottom:198.966000px;}
.y121{bottom:201.918000px;}
.y14e{bottom:202.309500px;}
.yae{bottom:202.716000px;}
.y1fa{bottom:203.013000px;}
.y17f{bottom:203.805000px;}
.y1b5{bottom:204.385500px;}
.y19b{bottom:204.432000px;}
.y1c2{bottom:205.402500px;}
.y163{bottom:206.709000px;}
.y5c{bottom:207.114000px;}
.y15b{bottom:207.600000px;}
.y1ac{bottom:208.057500px;}
.y6e{bottom:209.148000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y231{bottom:210.307500px;}
.yf0{bottom:214.203000px;}
.y120{bottom:217.525500px;}
.y14d{bottom:217.966500px;}
.yad{bottom:218.424000px;}
.y1f9{bottom:218.622000px;}
.y19a{bottom:220.353000px;}
.y1c1{bottom:221.445000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y162{bottom:222.915000px;}
.y5b{bottom:222.954000px;}
.y230{bottom:223.159500px;}
.y15a{bottom:223.509000px;}
.y1ab{bottom:224.431500px;}
.y6d{bottom:224.895000px;}
.yef{bottom:229.441500px;}
.y11f{bottom:233.131500px;}
.y14c{bottom:233.622000px;}
.yac{bottom:234.130500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y22f{bottom:236.011500px;}
.y17e{bottom:236.248500px;}
.y199{bottom:236.274000px;}
.y5a{bottom:238.792500px;}
.y161{bottom:239.121000px;}
.y159{bottom:239.418000px;}
.y6c{bottom:240.642000px;}
.y1aa{bottom:240.805500px;}
.yee{bottom:244.680000px;}
.y11e{bottom:248.739000px;}
.y14b{bottom:249.277500px;}
.y1f8{bottom:249.756000px;}
.yab{bottom:249.837000px;}
.y22e{bottom:250.045500px;}
.y198{bottom:252.195000px;}
.y59{bottom:254.632500px;}
.y158{bottom:255.327000px;}
.y6b{bottom:256.387500px;}
.yed{bottom:259.917000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y22d{bottom:262.897500px;}
.y11d{bottom:264.345000px;}
.y14a{bottom:264.933000px;}
.yaa{bottom:265.543500px;}
.y197{bottom:268.116000px;}
.y17d{bottom:269.449500px;}
.y58{bottom:270.471000px;}
.y6a{bottom:272.134500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1a9{bottom:274.687500px;}
.yec{bottom:275.155500px;}
.y22c{bottom:275.749500px;}
.y11c{bottom:279.952500px;}
.y149{bottom:280.588500px;}
.y1f7{bottom:280.644000px;}
.ya9{bottom:281.250000px;}
.y196{bottom:284.037000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y17c{bottom:285.291000px;}
.y57{bottom:286.311000px;}
.y69{bottom:287.881500px;}
.y157{bottom:289.209000px;}
.y22b{bottom:289.782000px;}
.yeb{bottom:290.392500px;}
.y11b{bottom:295.558500px;}
.y148{bottom:296.245500px;}
.y1f6{bottom:296.253000px;}
.ya8{bottom:296.956500px;}
.y195{bottom:299.958000px;}
.y17b{bottom:301.134000px;}
.y56{bottom:302.149500px;}
.y22a{bottom:302.634000px;}
.y68{bottom:303.628500px;}
.yea{bottom:305.631000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y11a{bottom:311.166000px;}
.y1f5{bottom:311.860500px;}
.y147{bottom:311.901000px;}
.ya7{bottom:312.664500px;}
.y229{bottom:315.486000px;}
.y194{bottom:315.879000px;}
.y17a{bottom:316.977000px;}
.y55{bottom:317.989500px;}
.y67{bottom:319.375500px;}
.ye9{bottom:320.868000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y119{bottom:326.772000px;}
.y1f4{bottom:327.469500px;}
.y146{bottom:327.556500px;}
.ya6{bottom:328.371000px;}
.y228{bottom:329.520000px;}
.y193{bottom:331.800000px;}
.y179{bottom:332.820000px;}
.y54{bottom:333.828000px;}
.y66{bottom:335.122500px;}
.ye8{bottom:336.106500px;}
.y227{bottom:342.372000px;}
.y118{bottom:342.379500px;}
.y145{bottom:343.212000px;}
.y1f3{bottom:343.542000px;}
.ya5{bottom:344.077500px;}
.y192{bottom:347.721000px;}
.yf{bottom:348.133500px;}
.y178{bottom:348.663000px;}
.y53{bottom:349.668000px;}
.y65{bottom:350.869500px;}
.ye7{bottom:351.345000px;}
.y226{bottom:355.222500px;}
.y117{bottom:357.987000px;}
.y144{bottom:358.869000px;}
.y1f2{bottom:359.149500px;}
.ya4{bottom:359.784000px;}
.y191{bottom:363.643500px;}
.y177{bottom:364.504500px;}
.y52{bottom:365.506500px;}
.ye6{bottom:366.582000px;}
.y64{bottom:366.616500px;}
.y225{bottom:369.256500px;}
.y116{bottom:373.593000px;}
.y143{bottom:374.524500px;}
.y1f1{bottom:374.758500px;}
.ya3{bottom:375.490500px;}
.y190{bottom:379.564500px;}
.y176{bottom:380.347500px;}
.y51{bottom:381.346500px;}
.ye5{bottom:381.820500px;}
.y224{bottom:382.108500px;}
.y63{bottom:382.363500px;}
.ye{bottom:386.785499px;}
.y115{bottom:389.200500px;}
.y142{bottom:390.180000px;}
.y1f0{bottom:390.367500px;}
.ya2{bottom:391.197000px;}
.y223{bottom:394.960500px;}
.y18f{bottom:395.485500px;}
.y175{bottom:396.190500px;}
.ye4{bottom:397.057500px;}
.y50{bottom:397.185000px;}
.y62{bottom:398.110500px;}
.y114{bottom:404.806500px;}
.y141{bottom:405.835500px;}
.y1ef{bottom:405.976500px;}
.ya1{bottom:406.903500px;}
.yd{bottom:408.044999px;}
.y222{bottom:408.994500px;}
.y18e{bottom:411.406500px;}
.y174{bottom:412.033500px;}
.ye3{bottom:412.296000px;}
.y61{bottom:413.857500px;}
.y113{bottom:420.414000px;}
.y140{bottom:421.491000px;}
.y221{bottom:421.845000px;}
.y1ee{bottom:422.047500px;}
.ya0{bottom:422.611500px;}
.y18d{bottom:427.327500px;}
.ye2{bottom:427.533000px;}
.y173{bottom:427.876500px;}
.y4f{bottom:429.604500px;}
.y220{bottom:434.697000px;}
.y112{bottom:436.020000px;}
.y13f{bottom:437.148000px;}
.y1ed{bottom:437.656500px;}
.y9f{bottom:438.318000px;}
.ye1{bottom:442.771500px;}
.y18c{bottom:443.248500px;}
.y172{bottom:443.719500px;}
.y21f{bottom:448.731000px;}
.y111{bottom:451.627500px;}
.y13e{bottom:452.803500px;}
.y1ec{bottom:453.265500px;}
.y9e{bottom:454.024500px;}
.ye0{bottom:458.010000px;}
.y18b{bottom:459.169500px;}
.y171{bottom:459.561000px;}
.y21e{bottom:461.583000px;}
.y110{bottom:467.233500px;}
.y13d{bottom:468.459000px;}
.y1eb{bottom:468.874500px;}
.y9d{bottom:469.731000px;}
.ydf{bottom:473.247000px;}
.y21d{bottom:474.435000px;}
.y18a{bottom:475.090500px;}
.y170{bottom:475.404000px;}
.y4e{bottom:475.561500px;}
.y10f{bottom:482.841000px;}
.y13c{bottom:484.114500px;}
.y1ea{bottom:484.482000px;}
.y9c{bottom:485.437500px;}
.y21c{bottom:488.467500px;}
.yde{bottom:488.485500px;}
.y4d{bottom:489.909000px;}
.y189{bottom:491.011500px;}
.y16f{bottom:491.247000px;}
.y10e{bottom:498.448500px;}
.y13b{bottom:499.770000px;}
.y1e9{bottom:500.091000px;}
.y9b{bottom:501.144000px;}
.y21b{bottom:501.319500px;}
.yc{bottom:502.864502px;}
.ydd{bottom:503.722500px;}
.y4c{bottom:504.255000px;}
.y188{bottom:506.932500px;}
.y16e{bottom:507.090000px;}
.y10d{bottom:514.054500px;}
.y21a{bottom:514.171500px;}
.y13a{bottom:515.427000px;}
.y1e8{bottom:515.700000px;}
.y9a{bottom:516.852000px;}
.y4b{bottom:518.601000px;}
.ydc{bottom:518.961000px;}
.yb{bottom:520.864502px;}
.y187{bottom:522.853500px;}
.y16d{bottom:522.933000px;}
.y219{bottom:528.205500px;}
.y10c{bottom:529.662000px;}
.y1e7{bottom:531.307500px;}
.y99{bottom:532.558500px;}
.y4a{bottom:532.947000px;}
.ydb{bottom:534.199500px;}
.y16c{bottom:538.774500px;}
.ya{bottom:538.864499px;}
.y218{bottom:541.057500px;}
.y10b{bottom:545.268000px;}
.y139{bottom:546.703500px;}
.y1e6{bottom:546.916500px;}
.y49{bottom:547.293000px;}
.y98{bottom:548.265000px;}
.yda{bottom:549.436500px;}
.y217{bottom:553.908000px;}
.y9{bottom:556.864499px;}
.y10a{bottom:560.875500px;}
.y48{bottom:561.639000px;}
.y1e5{bottom:562.525500px;}
.y97{bottom:563.971500px;}
.yd9{bottom:564.675000px;}
.y1a3{bottom:567.291000px;}
.y216{bottom:567.942000px;}
.y16b{bottom:572.658000px;}
.y47{bottom:575.985000px;}
.y109{bottom:576.481500px;}
.y138{bottom:577.873500px;}
.y1e4{bottom:578.134500px;}
.y96{bottom:579.678000px;}
.yd8{bottom:579.912000px;}
.y215{bottom:580.794000px;}
.y46{bottom:590.332500px;}
.y108{bottom:592.089000px;}
.y137{bottom:593.529000px;}
.y214{bottom:593.646000px;}
.y1e3{bottom:593.742000px;}
.yd7{bottom:595.150500px;}
.y95{bottom:595.384500px;}
.y39{bottom:598.563000px;}
.y45{bottom:604.678500px;}
.y213{bottom:607.680000px;}
.y107{bottom:607.695000px;}
.y136{bottom:609.184500px;}
.y1e2{bottom:609.814500px;}
.yd6{bottom:610.387500px;}
.y94{bottom:611.091000px;}
.y38{bottom:611.415000px;}
.y44{bottom:619.024500px;}
.y212{bottom:620.530500px;}
.y106{bottom:623.302500px;}
.y37{bottom:624.267000px;}
.y135{bottom:624.840000px;}
.y1e1{bottom:625.423500px;}
.yd5{bottom:625.626000px;}
.y93{bottom:626.799000px;}
.y43{bottom:633.370500px;}
.y211{bottom:633.382500px;}
.y36{bottom:637.117500px;}
.y105{bottom:638.910000px;}
.y134{bottom:640.497000px;}
.yd4{bottom:640.864500px;}
.y1e0{bottom:641.032500px;}
.y92{bottom:642.505500px;}
.y8{bottom:645.510000px;}
.y210{bottom:647.416500px;}
.y42{bottom:647.716500px;}
.y35{bottom:649.969500px;}
.y104{bottom:654.516000px;}
.yd3{bottom:656.101500px;}
.y133{bottom:656.152500px;}
.y1df{bottom:656.640000px;}
.y91{bottom:658.212000px;}
.y20f{bottom:660.268500px;}
.y41{bottom:662.062500px;}
.y34{bottom:662.821500px;}
.y7{bottom:666.771000px;}
.y103{bottom:670.123500px;}
.yd2{bottom:671.340000px;}
.y132{bottom:671.808000px;}
.y1de{bottom:672.249000px;}
.y20e{bottom:673.120500px;}
.y90{bottom:673.918500px;}
.y33{bottom:675.673500px;}
.y40{bottom:676.408500px;}
.y1c0{bottom:678.175500px;}
.y102{bottom:685.729500px;}
.yd1{bottom:686.577000px;}
.y20d{bottom:687.153000px;}
.y131{bottom:687.463500px;}
.y1dd{bottom:688.321500px;}
.y8f{bottom:689.625000px;}
.y3f{bottom:690.756000px;}
.y32{bottom:697.441500px;}
.y20c{bottom:700.005000px;}
.y101{bottom:701.337000px;}
.yd0{bottom:701.815500px;}
.y1dc{bottom:703.929000px;}
.y1b4{bottom:703.984500px;}
.y3e{bottom:705.102000px;}
.y8e{bottom:705.331500px;}
.y31{bottom:710.293500px;}
.y20b{bottom:714.039000px;}
.y100{bottom:716.943000px;}
.ycf{bottom:717.054000px;}
.y3d{bottom:719.448000px;}
.y1db{bottom:719.538000px;}
.y8d{bottom:721.039500px;}
.y30{bottom:723.145500px;}
.y6{bottom:726.298500px;}
.y20a{bottom:726.891000px;}
.yce{bottom:732.291000px;}
.y1a8{bottom:732.354000px;}
.yff{bottom:732.550500px;}
.y3c{bottom:733.794000px;}
.y1da{bottom:735.147000px;}
.y2f{bottom:735.997500px;}
.y8c{bottom:736.746000px;}
.y209{bottom:739.743000px;}
.y130{bottom:742.197000px;}
.ycd{bottom:747.529500px;}
.y3b{bottom:748.140000px;}
.yfe{bottom:748.156500px;}
.y2e{bottom:748.849500px;}
.y1d9{bottom:750.756000px;}
.y8b{bottom:752.452500px;}
.y3{bottom:752.599495px;}
.y208{bottom:753.775500px;}
.y12f{bottom:755.049000px;}
.ycc{bottom:762.766500px;}
.yfd{bottom:763.764000px;}
.y1d8{bottom:766.363500px;}
.y207{bottom:766.627500px;}
.y12e{bottom:767.901000px;}
.y8a{bottom:768.159000px;}
.ycb{bottom:778.005000px;}
.y3a{bottom:778.965000px;}
.y2d{bottom:778.972500px;}
.yfc{bottom:779.371500px;}
.y206{bottom:779.479500px;}
.y12d{bottom:780.751500px;}
.y1d7{bottom:781.972500px;}
.y89{bottom:783.865500px;}
.yca{bottom:793.242000px;}
.y205{bottom:793.513500px;}
.yfb{bottom:794.977500px;}
.y12c{bottom:798.576000px;}
.y88{bottom:799.572000px;}
.y204{bottom:806.365500px;}
.yc9{bottom:808.480500px;}
.y1d6{bottom:809.371500px;}
.y12b{bottom:815.068500px;}
.y87{bottom:815.280000px;}
.y203{bottom:819.216000px;}
.yc8{bottom:823.719000px;}
.y1d5{bottom:824.980500px;}
.yfa{bottom:826.107000px;}
.y2c{bottom:827.370000px;}
.y12a{bottom:827.920500px;}
.y86{bottom:830.986500px;}
.y202{bottom:832.068000px;}
.yc7{bottom:838.956000px;}
.y156{bottom:839.833500px;}
.y2b{bottom:840.222000px;}
.y1d4{bottom:840.588000px;}
.y201{bottom:846.102000px;}
.y85{bottom:846.693000px;}
.y2a{bottom:853.074000px;}
.yc6{bottom:854.194500px;}
.y1d3{bottom:856.197000px;}
.y200{bottom:858.954000px;}
.yf9{bottom:859.989000px;}
.y84{bottom:862.399500px;}
.y29{bottom:867.823500px;}
.yc5{bottom:869.431500px;}
.y1d2{bottom:871.806000px;}
.y83{bottom:878.106000px;}
.y2{bottom:879.369000px;}
.yc4{bottom:884.670000px;}
.y82{bottom:893.812500px;}
.y28{bottom:899.310000px;}
.yc3{bottom:899.907000px;}
.y1d1{bottom:905.688000px;}
.y81{bottom:909.519000px;}
.yc2{bottom:915.145500px;}
.y27{bottom:925.162500px;}
.y80{bottom:925.227000px;}
.yc1{bottom:930.384000px;}
.y7f{bottom:940.933500px;}
.yc0{bottom:945.621000px;}
.y243{bottom:956.631000px;}
.y7e{bottom:956.640000px;}
.y26{bottom:958.159500px;}
.ybf{bottom:960.859500px;}
.y1{bottom:966.726000px;}
.y242{bottom:969.483000px;}
.y7d{bottom:972.346500px;}
.ybe{bottom:976.096500px;}
.y241{bottom:982.333500px;}
.y7c{bottom:988.053000px;}
.ybd{bottom:991.335000px;}
.y240{bottom:995.185500px;}
.y7b{bottom:1003.759500px;}
.y25{bottom:1005.039000px;}
.ybc{bottom:1006.573500px;}
.y23f{bottom:1008.037500px;}
.y7a{bottom:1019.467500px;}
.y23e{bottom:1020.889500px;}
.ybb{bottom:1021.810500px;}
.y23d{bottom:1033.741500px;}
.y79{bottom:1035.174000px;}
.yba{bottom:1037.049000px;}
.y24{bottom:1044.169500px;}
.y23c{bottom:1046.593500px;}
.y78{bottom:1050.880500px;}
.yb9{bottom:1052.286000px;}
.y23b{bottom:1059.445500px;}
.y77{bottom:1066.587000px;}
.yb8{bottom:1067.524500px;}
.y23a{bottom:1072.297500px;}
.y76{bottom:1082.293500px;}
.yb7{bottom:1082.761500px;}
.y239{bottom:1085.148000px;}
.y23{bottom:1087.368000px;}
.y75{bottom:1098.000000px;}
.y22{bottom:1127.889000px;}
.hf{height:25.009480px;}
.h11{height:31.391627px;}
.h7{height:32.130000px;}
.h10{height:32.451000px;}
.h16{height:32.842754px;}
.hb{height:35.195962px;}
.ha{height:35.728367px;}
.h14{height:39.239653px;}
.h12{height:40.194480px;}
.h19{height:41.323480px;}
.h15{height:44.660593px;}
.h6{height:45.900000px;}
.h13{height:46.495597px;}
.h1a{height:46.668043px;}
.h1b{height:46.674043px;}
.h3{height:48.195000px;}
.h18{height:51.656254px;}
.h17{height:51.662254px;}
.hd{height:53.592281px;}
.h2{height:55.080000px;}
.he{height:68.446405px;}
.hc{height:75.364111px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:49.068000px;}
.x9{left:63.780000px;}
.x12{left:67.000500px;}
.xd{left:73.066500px;}
.x24{left:79.434000px;}
.xc{left:81.712500px;}
.xe{left:86.196000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x20{left:145.762500px;}
.x1c{left:171.073500px;}
.x1a{left:176.832000px;}
.x19{left:184.240500px;}
.x1b{left:185.785500px;}
.x1f{left:191.026500px;}
.x4{left:203.484001px;}
.x1d{left:213.106500px;}
.x1e{left:223.705500px;}
.x23{left:225.303000px;}
.x16{left:249.351000px;}
.x21{left:253.803000px;}
.x22{left:271.240500px;}
.xa{left:308.097000px;}
.x8{left:313.554000px;}
.x15{left:315.373500px;}
.x6{left:340.959000px;}
.x5{left:368.044500px;}
.x7{left:382.161000px;}
.x13{left:452.550000px;}
.x3{left:454.959000px;}
.xf{left:467.262000px;}
.x14{left:470.482500px;}
.x18{left:474.061500px;}
.x10{left:485.194500px;}
.xb{left:567.180000px;}
.x17{left:634.200000px;}
@media print{
.v3{vertical-align:-29.338667pt;}
.v4{vertical-align:-14.506667pt;}
.v7{vertical-align:-7.488000pt;}
.v9{vertical-align:-5.994667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:14.501333pt;}
.v5{vertical-align:16.320000pt;}
.v6{vertical-align:18.133333pt;}
.v1{vertical-align:24.021333pt;}
.v2{vertical-align:29.338667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.000027pt;}
.ls2{letter-spacing:0.000167pt;}
.ls1{letter-spacing:0.000265pt;}
.ls61{letter-spacing:0.000867pt;}
.ls5f{letter-spacing:0.001301pt;}
.ls6b{letter-spacing:0.002108pt;}
.lsa{letter-spacing:0.004267pt;}
.ls38{letter-spacing:2.653097pt;}
.ls2c{letter-spacing:2.653473pt;}
.ls3{letter-spacing:2.654020pt;}
.ls3c{letter-spacing:2.657600pt;}
.ls11{letter-spacing:2.658773pt;}
.ls3e{letter-spacing:2.658806pt;}
.ls42{letter-spacing:4.794706pt;}
.ls9{letter-spacing:5.389348pt;}
.ls6a{letter-spacing:5.989324pt;}
.ls31{letter-spacing:5.994658pt;}
.ls12{letter-spacing:7.437781pt;}
.ls5{letter-spacing:8.551764pt;}
.ls4{letter-spacing:8.552530pt;}
.ls6{letter-spacing:8.552670pt;}
.ls58{letter-spacing:11.100363pt;}
.ls29{letter-spacing:11.317111pt;}
.ls43{letter-spacing:11.602016pt;}
.ls10{letter-spacing:12.489856pt;}
.ls34{letter-spacing:13.350655pt;}
.ls4c{letter-spacing:13.874016pt;}
.ls21{letter-spacing:14.102182pt;}
.ls3f{letter-spacing:14.500049pt;}
.ls37{letter-spacing:14.712201pt;}
.ls27{letter-spacing:14.721086pt;}
.ls44{letter-spacing:14.735565pt;}
.ls1c{letter-spacing:14.736944pt;}
.ls6c{letter-spacing:14.738806pt;}
.ls32{letter-spacing:14.747566pt;}
.ls60{letter-spacing:14.763968pt;}
.ls18{letter-spacing:14.765294pt;}
.ls4a{letter-spacing:14.973473pt;}
.ls35{letter-spacing:15.432140pt;}
.ls41{letter-spacing:15.645473pt;}
.ls6d{letter-spacing:15.714806pt;}
.ls5a{letter-spacing:15.858016pt;}
.ls57{letter-spacing:15.893372pt;}
.ls14{letter-spacing:15.958895pt;}
.ls40{letter-spacing:16.002806pt;}
.ls16{letter-spacing:16.003103pt;}
.ls2b{letter-spacing:16.637473pt;}
.ls26{letter-spacing:16.642806pt;}
.ls1b{letter-spacing:16.887252pt;}
.ls23{letter-spacing:16.931460pt;}
.ls4e{letter-spacing:17.116683pt;}
.lse{letter-spacing:17.202682pt;}
.ls2a{letter-spacing:17.352140pt;}
.ls3b{letter-spacing:17.393146pt;}
.lsc{letter-spacing:17.529856pt;}
.ls4f{letter-spacing:17.608140pt;}
.ls1f{letter-spacing:17.638779pt;}
.ls1d{letter-spacing:17.771402pt;}
.lsf{letter-spacing:17.880015pt;}
.ls20{letter-spacing:18.248140pt;}
.ls1a{letter-spacing:18.478721pt;}
.ls17{letter-spacing:18.611343pt;}
.ls25{letter-spacing:18.655551pt;}
.ls24{letter-spacing:18.706806pt;}
.ls71{letter-spacing:18.741324pt;}
.ls47{letter-spacing:18.743966pt;}
.ls33{letter-spacing:18.770806pt;}
.ls46{letter-spacing:18.788173pt;}
.ls30{letter-spacing:19.037473pt;}
.ls51{letter-spacing:19.149473pt;}
.ls7{letter-spacing:19.445733pt;}
.ls4b{letter-spacing:19.866658pt;}
.ls45{letter-spacing:19.935991pt;}
.ls1e{letter-spacing:20.274806pt;}
.ls2e{letter-spacing:20.379642pt;}
.lsd{letter-spacing:20.504015pt;}
.ls8{letter-spacing:20.589600pt;}
.ls2d{letter-spacing:20.998547pt;}
.ls6e{letter-spacing:21.256267pt;}
.ls28{letter-spacing:21.307999pt;}
.ls69{letter-spacing:21.362806pt;}
.ls59{letter-spacing:21.850658pt;}
.ls64{letter-spacing:21.903991pt;}
.ls52{letter-spacing:22.485324pt;}
.ls19{letter-spacing:22.722638pt;}
.ls3d{letter-spacing:22.776140pt;}
.ls56{letter-spacing:22.906658pt;}
.lsb{letter-spacing:22.920015pt;}
.ls53{letter-spacing:22.989473pt;}
.ls4d{letter-spacing:23.109324pt;}
.ls22{letter-spacing:23.916239pt;}
.ls68{letter-spacing:24.071349pt;}
.ls13{letter-spacing:24.358314pt;}
.ls49{letter-spacing:25.050658pt;}
.ls2f{letter-spacing:25.109841pt;}
.ls6f{letter-spacing:25.426806pt;}
.ls5e{letter-spacing:25.479349pt;}
.ls48{letter-spacing:26.943991pt;}
.ls36{letter-spacing:27.432140pt;}
.ls50{letter-spacing:27.834658pt;}
.ls70{letter-spacing:28.170658pt;}
.ls55{letter-spacing:28.252683pt;}
.ls67{letter-spacing:30.069324pt;}
.ls66{letter-spacing:31.170016pt;}
.ls5d{letter-spacing:31.477324pt;}
.ls54{letter-spacing:34.245324pt;}
.ls65{letter-spacing:37.162658pt;}
.ls15{letter-spacing:40.206772pt;}
.ls63{letter-spacing:40.636683pt;}
.ls5c{letter-spacing:42.215349pt;}
.ls62{letter-spacing:46.634658pt;}
.ls5b{letter-spacing:48.213324pt;}
.ls39{letter-spacing:102.411329pt;}
.ws6{word-spacing:-59.903372pt;}
.ws3{word-spacing:-59.828772pt;}
.ws8{word-spacing:-50.910955pt;}
.ws44{word-spacing:-44.207467pt;}
.ws7{word-spacing:-43.813651pt;}
.ws22{word-spacing:-39.786667pt;}
.ws9{word-spacing:-38.681600pt;}
.wsdb{word-spacing:-38.423385pt;}
.ws5{word-spacing:-38.301041pt;}
.ws47{word-spacing:-35.365867pt;}
.ws4b{word-spacing:-33.818712pt;}
.ws129{word-spacing:-33.730297pt;}
.ws7f{word-spacing:-33.686090pt;}
.wscb{word-spacing:-33.597675pt;}
.ws65{word-spacing:-33.509260pt;}
.wsa4{word-spacing:-33.465052pt;}
.ws4d{word-spacing:-33.332430pt;}
.wsf0{word-spacing:-33.244015pt;}
.ws11b{word-spacing:-33.199807pt;}
.ws2c{word-spacing:-33.111393pt;}
.ws9c{word-spacing:-33.067185pt;}
.ws37{word-spacing:-33.022978pt;}
.ws109{word-spacing:-32.978770pt;}
.ws7d{word-spacing:-32.934563pt;}
.ws7c{word-spacing:-32.890355pt;}
.ws81{word-spacing:-32.669318pt;}
.wsf1{word-spacing:-32.625110pt;}
.wsd9{word-spacing:-32.536695pt;}
.ws98{word-spacing:-32.492488pt;}
.wsc8{word-spacing:-32.448281pt;}
.wsdc{word-spacing:-32.359866pt;}
.ws21{word-spacing:-32.346560pt;}
.ws77{word-spacing:-32.315658pt;}
.ws110{word-spacing:-32.227243pt;}
.ws117{word-spacing:-32.138828pt;}
.ws6f{word-spacing:-32.094621pt;}
.ws54{word-spacing:-32.050413pt;}
.wsf8{word-spacing:-31.917791pt;}
.wsf9{word-spacing:-31.873583pt;}
.ws79{word-spacing:-31.829376pt;}
.ws105{word-spacing:-31.785169pt;}
.wsa9{word-spacing:-31.740961pt;}
.ws2f{word-spacing:-31.652546pt;}
.ws53{word-spacing:-31.608339pt;}
.ws10b{word-spacing:-31.526806pt;}
.ws25{word-spacing:-31.519924pt;}
.wse0{word-spacing:-31.475716pt;}
.wsc4{word-spacing:-31.431509pt;}
.wsde{word-spacing:-31.343094pt;}
.wsdf{word-spacing:-31.210471pt;}
.ws6b{word-spacing:-31.166264pt;}
.ws9d{word-spacing:-31.122057pt;}
.ws124{word-spacing:-31.077849pt;}
.ws7e{word-spacing:-30.989434pt;}
.ws10a{word-spacing:-30.945067pt;}
.wsb8{word-spacing:-30.901019pt;}
.wsa7{word-spacing:-30.856812pt;}
.wsd7{word-spacing:-30.768397pt;}
.ws93{word-spacing:-30.724189pt;}
.ws121{word-spacing:-30.679982pt;}
.ws66{word-spacing:-30.591567pt;}
.ws82{word-spacing:-30.547359pt;}
.ws97{word-spacing:-30.503152pt;}
.wsce{word-spacing:-30.414737pt;}
.ws76{word-spacing:-30.370530pt;}
.wsf7{word-spacing:-30.326322pt;}
.wsf5{word-spacing:-30.282115pt;}
.ws2b{word-spacing:-30.237907pt;}
.ws35{word-spacing:-30.193700pt;}
.ws116{word-spacing:-30.149492pt;}
.ws27{word-spacing:-30.105285pt;}
.ws57{word-spacing:-30.061077pt;}
.wsb6{word-spacing:-29.928455pt;}
.ws38{word-spacing:-29.884247pt;}
.ws86{word-spacing:-29.795833pt;}
.wse3{word-spacing:-29.751625pt;}
.wsd2{word-spacing:-29.707418pt;}
.ws4a{word-spacing:-29.663210pt;}
.ws3b{word-spacing:-29.574795pt;}
.ws26{word-spacing:-29.530588pt;}
.ws126{word-spacing:-29.493317pt;}
.ws3e{word-spacing:-29.486380pt;}
.ws6a{word-spacing:-29.442173pt;}
.ws108{word-spacing:-29.433872pt;}
.wsa3{word-spacing:-29.397965pt;}
.ws122{word-spacing:-29.353758pt;}
.wsc3{word-spacing:-29.309550pt;}
.ws59{word-spacing:-29.265343pt;}
.wseb{word-spacing:-29.176928pt;}
.ws24{word-spacing:-29.088513pt;}
.ws6d{word-spacing:-29.044306pt;}
.ws63{word-spacing:-29.000098pt;}
.wsa5{word-spacing:-28.955891pt;}
.ws72{word-spacing:-28.911683pt;}
.ws85{word-spacing:-28.867476pt;}
.wsaa{word-spacing:-28.779061pt;}
.ws104{word-spacing:-28.690646pt;}
.ws5f{word-spacing:-28.646438pt;}
.ws55{word-spacing:-28.602231pt;}
.wsef{word-spacing:-28.558023pt;}
.wse7{word-spacing:-28.513816pt;}
.ws5a{word-spacing:-28.469609pt;}
.ws10e{word-spacing:-28.425401pt;}
.ws18{word-spacing:-28.407680pt;}
.ws89{word-spacing:-28.381194pt;}
.wsed{word-spacing:-28.336986pt;}
.ws10d{word-spacing:-28.292779pt;}
.ws2d{word-spacing:-28.248571pt;}
.ws36{word-spacing:-28.204364pt;}
.ws69{word-spacing:-28.160156pt;}
.ws12{word-spacing:-28.129173pt;}
.wsb3{word-spacing:-28.115949pt;}
.ws62{word-spacing:-28.027534pt;}
.ws1a{word-spacing:-27.980800pt;}
.ws1b{word-spacing:-27.970027pt;}
.wsa0{word-spacing:-27.894911pt;}
.ws11{word-spacing:-27.890453pt;}
.ws88{word-spacing:-27.850704pt;}
.ws8c{word-spacing:-27.806497pt;}
.wsbf{word-spacing:-27.762289pt;}
.ws101{word-spacing:-27.723414pt;}
.wsd1{word-spacing:-27.718082pt;}
.ws16{word-spacing:-27.691520pt;}
.wsd8{word-spacing:-27.629667pt;}
.wsbc{word-spacing:-27.585459pt;}
.ws113{word-spacing:-27.541252pt;}
.wsbb{word-spacing:-27.497044pt;}
.wse2{word-spacing:-27.452837pt;}
.wsa8{word-spacing:-27.408629pt;}
.ws46{word-spacing:-27.320214pt;}
.ws60{word-spacing:-27.276007pt;}
.ws61{word-spacing:-27.231799pt;}
.ws112{word-spacing:-27.187592pt;}
.wsd0{word-spacing:-27.099177pt;}
.ws75{word-spacing:-27.054970pt;}
.ws2a{word-spacing:-27.010762pt;}
.wsbe{word-spacing:-26.966555pt;}
.wsfc{word-spacing:-26.922347pt;}
.wsa2{word-spacing:-26.833932pt;}
.ws111{word-spacing:-26.789725pt;}
.wsfe{word-spacing:-26.745517pt;}
.ws39{word-spacing:-26.657102pt;}
.ws50{word-spacing:-26.612895pt;}
.ws4f{word-spacing:-26.568687pt;}
.wsd{word-spacing:-26.524400pt;}
.ws8d{word-spacing:-26.480273pt;}
.ws4c{word-spacing:-26.436065pt;}
.wsf{word-spacing:-26.378560pt;}
.ws11a{word-spacing:-26.347650pt;}
.ws11e{word-spacing:-26.303443pt;}
.ws41{word-spacing:-26.259235pt;}
.wsb4{word-spacing:-26.215028pt;}
.ws1e{word-spacing:-26.179627pt;}
.ws5b{word-spacing:-26.170820pt;}
.wsbd{word-spacing:-26.126613pt;}
.wsa6{word-spacing:-26.038198pt;}
.ws68{word-spacing:-25.993990pt;}
.ws90{word-spacing:-25.905575pt;}
.ws31{word-spacing:-25.861368pt;}
.ws56{word-spacing:-25.817161pt;}
.ws43{word-spacing:-25.772953pt;}
.ws125{word-spacing:-25.728746pt;}
.wsff{word-spacing:-25.684538pt;}
.ws67{word-spacing:-25.640331pt;}
.ws3c{word-spacing:-25.596123pt;}
.ws2e{word-spacing:-25.551916pt;}
.ws1d{word-spacing:-25.543040pt;}
.ws6e{word-spacing:-25.507708pt;}
.ws1c{word-spacing:-25.423680pt;}
.ws52{word-spacing:-25.419293pt;}
.wsb9{word-spacing:-25.330878pt;}
.ws14{word-spacing:-25.304320pt;}
.wsea{word-spacing:-25.286671pt;}
.ws8b{word-spacing:-25.242463pt;}
.ws78{word-spacing:-25.198256pt;}
.wsba{word-spacing:-25.154049pt;}
.wsc1{word-spacing:-25.109841pt;}
.ws20{word-spacing:-25.065600pt;}
.ws100{word-spacing:-25.021426pt;}
.ws106{word-spacing:-24.977219pt;}
.ws107{word-spacing:-24.933011pt;}
.wsfd{word-spacing:-24.888804pt;}
.ws42{word-spacing:-24.711974pt;}
.ws19{word-spacing:-24.667733pt;}
.ws8e{word-spacing:-24.623559pt;}
.ws10c{word-spacing:-24.613342pt;}
.ws5e{word-spacing:-24.579351pt;}
.ws94{word-spacing:-24.535144pt;}
.ws13e{word-spacing:-24.473180pt;}
.ws114{word-spacing:-24.446729pt;}
.ws115{word-spacing:-24.402522pt;}
.ws1f{word-spacing:-24.389227pt;}
.wsae{word-spacing:-24.358314pt;}
.wsc{word-spacing:-24.331716pt;}
.ws91{word-spacing:-24.314107pt;}
.ws3d{word-spacing:-24.181484pt;}
.ws80{word-spacing:-24.137277pt;}
.wsca{word-spacing:-24.093069pt;}
.wsc9{word-spacing:-24.092476pt;}
.ws13a{word-spacing:-24.084155pt;}
.wsec{word-spacing:-24.048862pt;}
.ws74{word-spacing:-24.004654pt;}
.wsad{word-spacing:-23.960447pt;}
.ws58{word-spacing:-23.916239pt;}
.ws138{word-spacing:-23.907326pt;}
.ws102{word-spacing:-23.879788pt;}
.wsb5{word-spacing:-23.872032pt;}
.ws10{word-spacing:-23.872000pt;}
.ws51{word-spacing:-23.827825pt;}
.ws14d{word-spacing:-23.801228pt;}
.wsd6{word-spacing:-23.783617pt;}
.wsee{word-spacing:-23.739410pt;}
.wsd3{word-spacing:-23.650995pt;}
.ws92{word-spacing:-23.606787pt;}
.ws9a{word-spacing:-23.562580pt;}
.wsb1{word-spacing:-23.474165pt;}
.wsd5{word-spacing:-23.429957pt;}
.ws9e{word-spacing:-23.385750pt;}
.ws73{word-spacing:-23.341542pt;}
.ws99{word-spacing:-23.297335pt;}
.wsf6{word-spacing:-23.253127pt;}
.ws13f{word-spacing:-23.235374pt;}
.ws3a{word-spacing:-23.208920pt;}
.ws14f{word-spacing:-23.200009pt;}
.wsf2{word-spacing:-23.164713pt;}
.ws30{word-spacing:-23.076298pt;}
.ws95{word-spacing:-23.032090pt;}
.ws153{word-spacing:-23.023179pt;}
.ws96{word-spacing:-22.987883pt;}
.wsdd{word-spacing:-22.943675pt;}
.ws7a{word-spacing:-22.899468pt;}
.ws17{word-spacing:-22.877333pt;}
.ws5c{word-spacing:-22.855260pt;}
.ws103{word-spacing:-22.811053pt;}
.ws9b{word-spacing:-22.766845pt;}
.ws10f{word-spacing:-22.722638pt;}
.wse4{word-spacing:-22.678430pt;}
.ws14a{word-spacing:-22.598789pt;}
.wsf4{word-spacing:-22.545808pt;}
.ws49{word-spacing:-22.501601pt;}
.wsd4{word-spacing:-22.457393pt;}
.wsfa{word-spacing:-22.368978pt;}
.ws64{word-spacing:-22.147941pt;}
.ws148{word-spacing:-22.139033pt;}
.wsfb{word-spacing:-22.103733pt;}
.ws15{word-spacing:-22.081600pt;}
.wsb2{word-spacing:-22.059526pt;}
.ws123{word-spacing:-22.047386pt;}
.wsa1{word-spacing:-22.015318pt;}
.wsa{word-spacing:-21.997569pt;}
.ws127{word-spacing:-21.971111pt;}
.wse5{word-spacing:-21.926903pt;}
.ws143{word-spacing:-21.926837pt;}
.ws14c{word-spacing:-21.891471pt;}
.ws146{word-spacing:-21.856106pt;}
.ws128{word-spacing:-21.838489pt;}
.wsf3{word-spacing:-21.794281pt;}
.ws71{word-spacing:-21.750074pt;}
.ws131{word-spacing:-21.750008pt;}
.ws70{word-spacing:-21.705866pt;}
.ws152{word-spacing:-21.679276pt;}
.ws119{word-spacing:-21.529036pt;}
.ws40{word-spacing:-21.484829pt;}
.ws11d{word-spacing:-21.440621pt;}
.wsb7{word-spacing:-21.263791pt;}
.ws137{word-spacing:-21.113422pt;}
.ws14e{word-spacing:-21.078057pt;}
.ws15b{word-spacing:-21.007325pt;}
.wscf{word-spacing:-20.998547pt;}
.ws13c{word-spacing:-20.936593pt;}
.wse8{word-spacing:-20.910132pt;}
.ws130{word-spacing:-20.830495pt;}
.wsda{word-spacing:-20.777509pt;}
.wsb0{word-spacing:-20.733302pt;}
.ws84{word-spacing:-20.689094pt;}
.ws34{word-spacing:-20.653666pt;}
.wse{word-spacing:-20.639333pt;}
.ws1{word-spacing:-20.618300pt;}
.wsc2{word-spacing:-20.556472pt;}
.ws83{word-spacing:-20.512265pt;}
.ws12e{word-spacing:-20.476837pt;}
.ws7b{word-spacing:-20.468057pt;}
.ws158{word-spacing:-20.300007pt;}
.ws5d{word-spacing:-20.291227pt;}
.ws136{word-spacing:-20.264642pt;}
.wsc0{word-spacing:-20.247020pt;}
.ws120{word-spacing:-20.158605pt;}
.ws159{word-spacing:-20.052446pt;}
.ws28{word-spacing:-19.893360pt;}
.ws29{word-spacing:-19.849153pt;}
.ws15c{word-spacing:-19.734154pt;}
.ws6c{word-spacing:-19.672323pt;}
.ws4e{word-spacing:-19.628115pt;}
.ws3f{word-spacing:-19.539700pt;}
.ws141{word-spacing:-19.486593pt;}
.ws13{word-spacing:-19.455680pt;}
.wsc6{word-spacing:-19.451285pt;}
.wsc5{word-spacing:-19.407078pt;}
.ws8f{word-spacing:-19.318663pt;}
.wsaf{word-spacing:-19.230248pt;}
.wse6{word-spacing:-19.141833pt;}
.ws32{word-spacing:-19.062202pt;}
.ws8a{word-spacing:-19.053418pt;}
.ws45{word-spacing:-19.009211pt;}
.wscd{word-spacing:-18.965003pt;}
.ws11f{word-spacing:-18.832381pt;}
.wse9{word-spacing:-18.743966pt;}
.ws12c{word-spacing:-18.743909pt;}
.ws12d{word-spacing:-18.708543pt;}
.ws118{word-spacing:-18.567136pt;}
.wse1{word-spacing:-18.434514pt;}
.ws142{word-spacing:-18.354885pt;}
.ws9f{word-spacing:-17.992439pt;}
.ws87{word-spacing:-17.948231pt;}
.ws11c{word-spacing:-17.859817pt;}
.ws149{word-spacing:-17.859763pt;}
.ws144{word-spacing:-17.789031pt;}
.ws12b{word-spacing:-17.647567pt;}
.ws33{word-spacing:-16.409762pt;}
.ws147{word-spacing:-16.162201pt;}
.ws151{word-spacing:-15.843908pt;}
.ws139{word-spacing:-15.384152pt;}
.ws15a{word-spacing:-14.995127pt;}
.ws134{word-spacing:-14.217078pt;}
.ws154{word-spacing:-13.898786pt;}
.ws12f{word-spacing:-13.403663pt;}
.ws12a{word-spacing:-13.394862pt;}
.ws135{word-spacing:-13.297566pt;}
.ws132{word-spacing:-12.236590pt;}
.ws140{word-spacing:-11.953663pt;}
.ws13b{word-spacing:-11.635370pt;}
.ws150{word-spacing:-11.069516pt;}
.ws13d{word-spacing:-10.291467pt;}
.ws156{word-spacing:-9.867077pt;}
.ws14b{word-spacing:-9.654882pt;}
.ws145{word-spacing:-9.619516pt;}
.ws133{word-spacing:-9.584150pt;}
.ws155{word-spacing:-9.442686pt;}
.ws157{word-spacing:-5.304880pt;}
.wscc{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:14.664984pt;}
.wsac{word-spacing:14.676879pt;}
.ws2{word-spacing:14.707491pt;}
.wsab{word-spacing:14.712201pt;}
.wsb{word-spacing:19.445733pt;}
.ws23{word-spacing:22.059526pt;}
.wsc7{word-spacing:148.112250pt;}
.ws48{word-spacing:777.281453pt;}
._5{margin-left:-20.589600pt;}
._3{margin-left:-19.346267pt;}
._1{margin-left:-2.652554pt;}
._6{width:2.665707pt;}
._0{width:9.737806pt;}
._2{width:14.676835pt;}
._4{width:22.103667pt;}
._7{width:29.456413pt;}
._9{width:102.371891pt;}
._e{width:154.690301pt;}
._f{width:164.875670pt;}
._a{width:183.490409pt;}
._b{width:214.140323pt;}
._c{width:310.158651pt;}
._d{width:435.424550pt;}
._10{width:464.813586pt;}
._8{width:812.518272pt;}
.fsd{font-size:24.755733pt;}
.fs11{font-size:27.850133pt;}
.fs16{font-size:30.945067pt;}
.fs18{font-size:34.962133pt;}
.fs5{font-size:35.365867pt;}
.fs4{font-size:37.333333pt;}
.fs15{font-size:37.406400pt;}
.fsa{font-size:38.681600pt;}
.fs1b{font-size:39.276800pt;}
.fsf{font-size:39.786667pt;}
.fs19{font-size:39.956800pt;}
.fsb{font-size:41.002133pt;}
.fs12{font-size:42.082133pt;}
.fs6{font-size:42.507200pt;}
.fs14{font-size:43.702933pt;}
.fs13{font-size:44.207467pt;}
.fs10{font-size:44.951467pt;}
.fsc{font-size:46.324800pt;}
.fs1a{font-size:49.096000pt;}
.fse{font-size:49.733333pt;}
.fs17{font-size:49.946133pt;}
.fs8{font-size:53.048533pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.574400pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.599467pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.yb6{bottom:68.500000pt;}
.y129{bottom:68.501333pt;}
.y74{bottom:79.924000pt;}
.yf8{bottom:82.045333pt;}
.y1bb{bottom:82.344000pt;}
.y128{bottom:82.373333pt;}
.y155{bottom:82.417333pt;}
.yb5{bottom:82.461333pt;}
.y186{bottom:82.582667pt;}
.y160{bottom:82.641333pt;}
.y1d0{bottom:82.649333pt;}
.y1a2{bottom:82.652000pt;}
.y1c9{bottom:82.760000pt;}
.y16a{bottom:82.905333pt;}
.y1a7{bottom:83.020000pt;}
.y1b3{bottom:83.056000pt;}
.y1bf{bottom:85.112000pt;}
.y4{bottom:86.333337pt;}
.y1ff{bottom:91.201333pt;}
.y73{bottom:91.348000pt;}
.yf7{bottom:95.589333pt;}
.y1ba{bottom:96.186667pt;}
.y127{bottom:96.246667pt;}
.y154{bottom:96.333333pt;}
.yb4{bottom:96.424000pt;}
.y185{bottom:96.665333pt;}
.y15f{bottom:96.782667pt;}
.y1cf{bottom:96.797333pt;}
.y1a1{bottom:96.804000pt;}
.y1c8{bottom:97.020000pt;}
.y169{bottom:97.310667pt;}
.y1a6{bottom:97.540000pt;}
.y1b2{bottom:97.610667pt;}
.y1be{bottom:101.724000pt;}
.y1fe{bottom:102.625333pt;}
.y238{bottom:103.822667pt;}
.yf6{bottom:109.134667pt;}
.y1b9{bottom:110.029333pt;}
.y126{bottom:110.118667pt;}
.y153{bottom:110.249333pt;}
.yb3{bottom:110.385333pt;}
.y184{bottom:110.748000pt;}
.y1ce{bottom:110.945333pt;}
.y1a0{bottom:110.957333pt;}
.y1c7{bottom:111.280000pt;}
.y168{bottom:111.716000pt;}
.y1a5{bottom:112.058667pt;}
.y1b1{bottom:112.165333pt;}
.y1fd{bottom:113.902667pt;}
.y237{bottom:115.246667pt;}
.y60{bottom:115.922667pt;}
.y1bd{bottom:118.336000pt;}
.yf5{bottom:122.678667pt;}
.y21{bottom:123.790666pt;}
.y1b8{bottom:123.873333pt;}
.y125{bottom:123.992000pt;}
.y152{bottom:124.166667pt;}
.yb2{bottom:124.346667pt;}
.y183{bottom:124.830667pt;}
.y1cd{bottom:125.094667pt;}
.y19f{bottom:125.109333pt;}
.y1c6{bottom:125.540000pt;}
.y15e{bottom:126.033333pt;}
.y167{bottom:126.121333pt;}
.y236{bottom:126.670667pt;}
.y1b0{bottom:126.720000pt;}
.y5f{bottom:128.184000pt;}
.y72{bottom:129.920000pt;}
.y1bc{bottom:134.946667pt;}
.yf4{bottom:136.224000pt;}
.y1b7{bottom:137.716000pt;}
.y124{bottom:137.864000pt;}
.y151{bottom:138.082667pt;}
.yb1{bottom:138.308000pt;}
.y182{bottom:138.912000pt;}
.y1fc{bottom:139.126667pt;}
.y235{bottom:139.144000pt;}
.y1cc{bottom:139.242667pt;}
.y19e{bottom:139.261333pt;}
.y5e{bottom:139.606667pt;}
.y1c5{bottom:139.800000pt;}
.y166{bottom:140.526667pt;}
.y1af{bottom:141.274667pt;}
.y1a4{bottom:142.176000pt;}
.y71{bottom:143.917333pt;}
.yf3{bottom:149.769333pt;}
.y234{bottom:150.568000pt;}
.y1b6{bottom:151.558667pt;}
.y123{bottom:151.737333pt;}
.y150{bottom:151.998667pt;}
.yb0{bottom:152.269333pt;}
.y181{bottom:152.994667pt;}
.y1cb{bottom:153.390667pt;}
.y19d{bottom:153.413333pt;}
.y1c4{bottom:154.060000pt;}
.y5d{bottom:154.657333pt;}
.y165{bottom:154.932000pt;}
.y1ae{bottom:155.829333pt;}
.y15d{bottom:156.250667pt;}
.y70{bottom:157.914667pt;}
.y233{bottom:163.042667pt;}
.yf2{bottom:163.313333pt;}
.y122{bottom:165.609333pt;}
.y14f{bottom:165.914667pt;}
.yaf{bottom:166.230667pt;}
.y1fb{bottom:166.582667pt;}
.y180{bottom:167.077333pt;}
.y1ca{bottom:167.540000pt;}
.y19c{bottom:167.565333pt;}
.y1c3{bottom:168.320000pt;}
.y164{bottom:169.336000pt;}
.y1ad{bottom:170.385333pt;}
.y15c{bottom:170.392000pt;}
.y6f{bottom:171.912000pt;}
.y232{bottom:174.466667pt;}
.y18{bottom:175.052000pt;}
.yf1{bottom:176.858667pt;}
.y121{bottom:179.482667pt;}
.y14e{bottom:179.830667pt;}
.yae{bottom:180.192000pt;}
.y1fa{bottom:180.456000pt;}
.y17f{bottom:181.160000pt;}
.y1b5{bottom:181.676000pt;}
.y19b{bottom:181.717333pt;}
.y1c2{bottom:182.580000pt;}
.y163{bottom:183.741333pt;}
.y5c{bottom:184.101333pt;}
.y15b{bottom:184.533333pt;}
.y1ac{bottom:184.940000pt;}
.y6e{bottom:185.909333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y231{bottom:186.940000pt;}
.yf0{bottom:190.402667pt;}
.y120{bottom:193.356000pt;}
.y14d{bottom:193.748000pt;}
.yad{bottom:194.154667pt;}
.y1f9{bottom:194.330667pt;}
.y19a{bottom:195.869333pt;}
.y1c1{bottom:196.840000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y162{bottom:198.146667pt;}
.y5b{bottom:198.181333pt;}
.y230{bottom:198.364000pt;}
.y15a{bottom:198.674667pt;}
.y1ab{bottom:199.494667pt;}
.y6d{bottom:199.906667pt;}
.yef{bottom:203.948000pt;}
.y11f{bottom:207.228000pt;}
.y14c{bottom:207.664000pt;}
.yac{bottom:208.116000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y22f{bottom:209.788000pt;}
.y17e{bottom:209.998667pt;}
.y199{bottom:210.021333pt;}
.y5a{bottom:212.260000pt;}
.y161{bottom:212.552000pt;}
.y159{bottom:212.816000pt;}
.y6c{bottom:213.904000pt;}
.y1aa{bottom:214.049333pt;}
.yee{bottom:217.493333pt;}
.y11e{bottom:221.101333pt;}
.y14b{bottom:221.580000pt;}
.y1f8{bottom:222.005333pt;}
.yab{bottom:222.077333pt;}
.y22e{bottom:222.262667pt;}
.y198{bottom:224.173333pt;}
.y59{bottom:226.340000pt;}
.y158{bottom:226.957333pt;}
.y6b{bottom:227.900000pt;}
.yed{bottom:231.037333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y22d{bottom:233.686667pt;}
.y11d{bottom:234.973333pt;}
.y14a{bottom:235.496000pt;}
.yaa{bottom:236.038667pt;}
.y197{bottom:238.325333pt;}
.y17d{bottom:239.510667pt;}
.y58{bottom:240.418667pt;}
.y6a{bottom:241.897333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1a9{bottom:244.166667pt;}
.yec{bottom:244.582667pt;}
.y22c{bottom:245.110667pt;}
.y11c{bottom:248.846667pt;}
.y149{bottom:249.412000pt;}
.y1f7{bottom:249.461333pt;}
.ya9{bottom:250.000000pt;}
.y196{bottom:252.477333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y17c{bottom:253.592000pt;}
.y57{bottom:254.498667pt;}
.y69{bottom:255.894667pt;}
.y157{bottom:257.074667pt;}
.y22b{bottom:257.584000pt;}
.yeb{bottom:258.126667pt;}
.y11b{bottom:262.718667pt;}
.y148{bottom:263.329333pt;}
.y1f6{bottom:263.336000pt;}
.ya8{bottom:263.961333pt;}
.y195{bottom:266.629333pt;}
.y17b{bottom:267.674667pt;}
.y56{bottom:268.577333pt;}
.y22a{bottom:269.008000pt;}
.y68{bottom:269.892000pt;}
.yea{bottom:271.672000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y11a{bottom:276.592000pt;}
.y1f5{bottom:277.209333pt;}
.y147{bottom:277.245333pt;}
.ya7{bottom:277.924000pt;}
.y229{bottom:280.432000pt;}
.y194{bottom:280.781333pt;}
.y17a{bottom:281.757333pt;}
.y55{bottom:282.657333pt;}
.y67{bottom:283.889333pt;}
.ye9{bottom:285.216000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y119{bottom:290.464000pt;}
.y1f4{bottom:291.084000pt;}
.y146{bottom:291.161333pt;}
.ya6{bottom:291.885333pt;}
.y228{bottom:292.906667pt;}
.y193{bottom:294.933333pt;}
.y179{bottom:295.840000pt;}
.y54{bottom:296.736000pt;}
.y66{bottom:297.886667pt;}
.ye8{bottom:298.761333pt;}
.y227{bottom:304.330667pt;}
.y118{bottom:304.337333pt;}
.y145{bottom:305.077333pt;}
.y1f3{bottom:305.370667pt;}
.ya5{bottom:305.846667pt;}
.y192{bottom:309.085333pt;}
.yf{bottom:309.452000pt;}
.y178{bottom:309.922667pt;}
.y53{bottom:310.816000pt;}
.y65{bottom:311.884000pt;}
.ye7{bottom:312.306667pt;}
.y226{bottom:315.753333pt;}
.y117{bottom:318.210667pt;}
.y144{bottom:318.994667pt;}
.y1f2{bottom:319.244000pt;}
.ya4{bottom:319.808000pt;}
.y191{bottom:323.238667pt;}
.y177{bottom:324.004000pt;}
.y52{bottom:324.894667pt;}
.ye6{bottom:325.850667pt;}
.y64{bottom:325.881333pt;}
.y225{bottom:328.228000pt;}
.y116{bottom:332.082667pt;}
.y143{bottom:332.910667pt;}
.y1f1{bottom:333.118667pt;}
.ya3{bottom:333.769333pt;}
.y190{bottom:337.390667pt;}
.y176{bottom:338.086667pt;}
.y51{bottom:338.974667pt;}
.ye5{bottom:339.396000pt;}
.y224{bottom:339.652000pt;}
.y63{bottom:339.878667pt;}
.ye{bottom:343.809333pt;}
.y115{bottom:345.956000pt;}
.y142{bottom:346.826667pt;}
.y1f0{bottom:346.993333pt;}
.ya2{bottom:347.730667pt;}
.y223{bottom:351.076000pt;}
.y18f{bottom:351.542667pt;}
.y175{bottom:352.169333pt;}
.ye4{bottom:352.940000pt;}
.y50{bottom:353.053333pt;}
.y62{bottom:353.876000pt;}
.y114{bottom:359.828000pt;}
.y141{bottom:360.742667pt;}
.y1ef{bottom:360.868000pt;}
.ya1{bottom:361.692000pt;}
.yd{bottom:362.706666pt;}
.y222{bottom:363.550667pt;}
.y18e{bottom:365.694667pt;}
.y174{bottom:366.252000pt;}
.ye3{bottom:366.485333pt;}
.y61{bottom:367.873333pt;}
.y113{bottom:373.701333pt;}
.y140{bottom:374.658667pt;}
.y221{bottom:374.973333pt;}
.y1ee{bottom:375.153333pt;}
.ya0{bottom:375.654667pt;}
.y18d{bottom:379.846667pt;}
.ye2{bottom:380.029333pt;}
.y173{bottom:380.334667pt;}
.y4f{bottom:381.870667pt;}
.y220{bottom:386.397333pt;}
.y112{bottom:387.573333pt;}
.y13f{bottom:388.576000pt;}
.y1ed{bottom:389.028000pt;}
.y9f{bottom:389.616000pt;}
.ye1{bottom:393.574667pt;}
.y18c{bottom:393.998667pt;}
.y172{bottom:394.417333pt;}
.y21f{bottom:398.872000pt;}
.y111{bottom:401.446667pt;}
.y13e{bottom:402.492000pt;}
.y1ec{bottom:402.902667pt;}
.y9e{bottom:403.577333pt;}
.ye0{bottom:407.120000pt;}
.y18b{bottom:408.150667pt;}
.y171{bottom:408.498667pt;}
.y21e{bottom:410.296000pt;}
.y110{bottom:415.318667pt;}
.y13d{bottom:416.408000pt;}
.y1eb{bottom:416.777333pt;}
.y9d{bottom:417.538667pt;}
.ydf{bottom:420.664000pt;}
.y21d{bottom:421.720000pt;}
.y18a{bottom:422.302667pt;}
.y170{bottom:422.581333pt;}
.y4e{bottom:422.721333pt;}
.y10f{bottom:429.192000pt;}
.y13c{bottom:430.324000pt;}
.y1ea{bottom:430.650667pt;}
.y9c{bottom:431.500000pt;}
.y21c{bottom:434.193333pt;}
.yde{bottom:434.209333pt;}
.y4d{bottom:435.474667pt;}
.y189{bottom:436.454667pt;}
.y16f{bottom:436.664000pt;}
.y10e{bottom:443.065333pt;}
.y13b{bottom:444.240000pt;}
.y1e9{bottom:444.525333pt;}
.y9b{bottom:445.461333pt;}
.y21b{bottom:445.617333pt;}
.yc{bottom:446.990669pt;}
.ydd{bottom:447.753333pt;}
.y4c{bottom:448.226667pt;}
.y188{bottom:450.606667pt;}
.y16e{bottom:450.746667pt;}
.y10d{bottom:456.937333pt;}
.y21a{bottom:457.041333pt;}
.y13a{bottom:458.157333pt;}
.y1e8{bottom:458.400000pt;}
.y9a{bottom:459.424000pt;}
.y4b{bottom:460.978667pt;}
.ydc{bottom:461.298667pt;}
.yb{bottom:462.990669pt;}
.y187{bottom:464.758667pt;}
.y16d{bottom:464.829333pt;}
.y219{bottom:469.516000pt;}
.y10c{bottom:470.810667pt;}
.y1e7{bottom:472.273333pt;}
.y99{bottom:473.385333pt;}
.y4a{bottom:473.730667pt;}
.ydb{bottom:474.844000pt;}
.y16c{bottom:478.910667pt;}
.ya{bottom:478.990666pt;}
.y218{bottom:480.940000pt;}
.y10b{bottom:484.682667pt;}
.y139{bottom:485.958667pt;}
.y1e6{bottom:486.148000pt;}
.y49{bottom:486.482667pt;}
.y98{bottom:487.346667pt;}
.yda{bottom:488.388000pt;}
.y217{bottom:492.362667pt;}
.y9{bottom:494.990666pt;}
.y10a{bottom:498.556000pt;}
.y48{bottom:499.234667pt;}
.y1e5{bottom:500.022667pt;}
.y97{bottom:501.308000pt;}
.yd9{bottom:501.933333pt;}
.y1a3{bottom:504.258667pt;}
.y216{bottom:504.837333pt;}
.y16b{bottom:509.029333pt;}
.y47{bottom:511.986667pt;}
.y109{bottom:512.428000pt;}
.y138{bottom:513.665333pt;}
.y1e4{bottom:513.897333pt;}
.y96{bottom:515.269333pt;}
.yd8{bottom:515.477333pt;}
.y215{bottom:516.261333pt;}
.y46{bottom:524.740000pt;}
.y108{bottom:526.301333pt;}
.y137{bottom:527.581333pt;}
.y214{bottom:527.685333pt;}
.y1e3{bottom:527.770667pt;}
.yd7{bottom:529.022667pt;}
.y95{bottom:529.230667pt;}
.y39{bottom:532.056000pt;}
.y45{bottom:537.492000pt;}
.y213{bottom:540.160000pt;}
.y107{bottom:540.173333pt;}
.y136{bottom:541.497333pt;}
.y1e2{bottom:542.057333pt;}
.yd6{bottom:542.566667pt;}
.y94{bottom:543.192000pt;}
.y38{bottom:543.480000pt;}
.y44{bottom:550.244000pt;}
.y212{bottom:551.582667pt;}
.y106{bottom:554.046667pt;}
.y37{bottom:554.904000pt;}
.y135{bottom:555.413333pt;}
.y1e1{bottom:555.932000pt;}
.yd5{bottom:556.112000pt;}
.y93{bottom:557.154667pt;}
.y43{bottom:562.996000pt;}
.y211{bottom:563.006667pt;}
.y36{bottom:566.326667pt;}
.y105{bottom:567.920000pt;}
.y134{bottom:569.330667pt;}
.yd4{bottom:569.657333pt;}
.y1e0{bottom:569.806667pt;}
.y92{bottom:571.116000pt;}
.y8{bottom:573.786667pt;}
.y210{bottom:575.481333pt;}
.y42{bottom:575.748000pt;}
.y35{bottom:577.750667pt;}
.y104{bottom:581.792000pt;}
.yd3{bottom:583.201333pt;}
.y133{bottom:583.246667pt;}
.y1df{bottom:583.680000pt;}
.y91{bottom:585.077333pt;}
.y20f{bottom:586.905333pt;}
.y41{bottom:588.500000pt;}
.y34{bottom:589.174667pt;}
.y7{bottom:592.685334pt;}
.y103{bottom:595.665333pt;}
.yd2{bottom:596.746667pt;}
.y132{bottom:597.162667pt;}
.y1de{bottom:597.554667pt;}
.y20e{bottom:598.329333pt;}
.y90{bottom:599.038667pt;}
.y33{bottom:600.598667pt;}
.y40{bottom:601.252000pt;}
.y1c0{bottom:602.822667pt;}
.y102{bottom:609.537333pt;}
.yd1{bottom:610.290667pt;}
.y20d{bottom:610.802667pt;}
.y131{bottom:611.078667pt;}
.y1dd{bottom:611.841333pt;}
.y8f{bottom:613.000000pt;}
.y3f{bottom:614.005333pt;}
.y32{bottom:619.948000pt;}
.y20c{bottom:622.226667pt;}
.y101{bottom:623.410667pt;}
.yd0{bottom:623.836000pt;}
.y1dc{bottom:625.714667pt;}
.y1b4{bottom:625.764000pt;}
.y3e{bottom:626.757333pt;}
.y8e{bottom:626.961333pt;}
.y31{bottom:631.372000pt;}
.y20b{bottom:634.701333pt;}
.y100{bottom:637.282667pt;}
.ycf{bottom:637.381333pt;}
.y3d{bottom:639.509333pt;}
.y1db{bottom:639.589333pt;}
.y8d{bottom:640.924000pt;}
.y30{bottom:642.796000pt;}
.y6{bottom:645.598667pt;}
.y20a{bottom:646.125333pt;}
.yce{bottom:650.925333pt;}
.y1a8{bottom:650.981333pt;}
.yff{bottom:651.156000pt;}
.y3c{bottom:652.261333pt;}
.y1da{bottom:653.464000pt;}
.y2f{bottom:654.220000pt;}
.y8c{bottom:654.885333pt;}
.y209{bottom:657.549333pt;}
.y130{bottom:659.730667pt;}
.ycd{bottom:664.470667pt;}
.y3b{bottom:665.013333pt;}
.yfe{bottom:665.028000pt;}
.y2e{bottom:665.644000pt;}
.y1d9{bottom:667.338667pt;}
.y8b{bottom:668.846667pt;}
.y3{bottom:668.977329pt;}
.y208{bottom:670.022667pt;}
.y12f{bottom:671.154667pt;}
.ycc{bottom:678.014667pt;}
.yfd{bottom:678.901333pt;}
.y1d8{bottom:681.212000pt;}
.y207{bottom:681.446667pt;}
.y12e{bottom:682.578667pt;}
.y8a{bottom:682.808000pt;}
.ycb{bottom:691.560000pt;}
.y3a{bottom:692.413333pt;}
.y2d{bottom:692.420000pt;}
.yfc{bottom:692.774667pt;}
.y206{bottom:692.870667pt;}
.y12d{bottom:694.001333pt;}
.y1d7{bottom:695.086667pt;}
.y89{bottom:696.769333pt;}
.yca{bottom:705.104000pt;}
.y205{bottom:705.345333pt;}
.yfb{bottom:706.646667pt;}
.y12c{bottom:709.845333pt;}
.y88{bottom:710.730667pt;}
.y204{bottom:716.769333pt;}
.yc9{bottom:718.649333pt;}
.y1d6{bottom:719.441333pt;}
.y12b{bottom:724.505333pt;}
.y87{bottom:724.693333pt;}
.y203{bottom:728.192000pt;}
.yc8{bottom:732.194667pt;}
.y1d5{bottom:733.316000pt;}
.yfa{bottom:734.317333pt;}
.y2c{bottom:735.440000pt;}
.y12a{bottom:735.929333pt;}
.y86{bottom:738.654667pt;}
.y202{bottom:739.616000pt;}
.yc7{bottom:745.738667pt;}
.y156{bottom:746.518667pt;}
.y2b{bottom:746.864000pt;}
.y1d4{bottom:747.189333pt;}
.y201{bottom:752.090667pt;}
.y85{bottom:752.616000pt;}
.y2a{bottom:758.288000pt;}
.yc6{bottom:759.284000pt;}
.y1d3{bottom:761.064000pt;}
.y200{bottom:763.514667pt;}
.yf9{bottom:764.434667pt;}
.y84{bottom:766.577333pt;}
.y29{bottom:771.398667pt;}
.yc5{bottom:772.828000pt;}
.y1d2{bottom:774.938667pt;}
.y83{bottom:780.538667pt;}
.y2{bottom:781.661334pt;}
.yc4{bottom:786.373333pt;}
.y82{bottom:794.500000pt;}
.y28{bottom:799.386667pt;}
.yc3{bottom:799.917333pt;}
.y1d1{bottom:805.056000pt;}
.y81{bottom:808.461333pt;}
.yc2{bottom:813.462667pt;}
.y27{bottom:822.366667pt;}
.y80{bottom:822.424000pt;}
.yc1{bottom:827.008000pt;}
.y7f{bottom:836.385333pt;}
.yc0{bottom:840.552000pt;}
.y243{bottom:850.338667pt;}
.y7e{bottom:850.346667pt;}
.y26{bottom:851.697333pt;}
.ybf{bottom:854.097333pt;}
.y1{bottom:859.312000pt;}
.y242{bottom:861.762667pt;}
.y7d{bottom:864.308000pt;}
.ybe{bottom:867.641333pt;}
.y241{bottom:873.185333pt;}
.y7c{bottom:878.269333pt;}
.ybd{bottom:881.186667pt;}
.y240{bottom:884.609333pt;}
.y7b{bottom:892.230667pt;}
.y25{bottom:893.368000pt;}
.ybc{bottom:894.732000pt;}
.y23f{bottom:896.033333pt;}
.y7a{bottom:906.193333pt;}
.y23e{bottom:907.457333pt;}
.ybb{bottom:908.276000pt;}
.y23d{bottom:918.881333pt;}
.y79{bottom:920.154667pt;}
.yba{bottom:921.821333pt;}
.y24{bottom:928.150667pt;}
.y23c{bottom:930.305333pt;}
.y78{bottom:934.116000pt;}
.yb9{bottom:935.365333pt;}
.y23b{bottom:941.729333pt;}
.y77{bottom:948.077333pt;}
.yb8{bottom:948.910667pt;}
.y23a{bottom:953.153333pt;}
.y76{bottom:962.038667pt;}
.yb7{bottom:962.454667pt;}
.y239{bottom:964.576000pt;}
.y23{bottom:966.549333pt;}
.y75{bottom:976.000000pt;}
.y22{bottom:1002.568000pt;}
.hf{height:22.230649pt;}
.h11{height:27.903669pt;}
.h7{height:28.560000pt;}
.h10{height:28.845333pt;}
.h16{height:29.193559pt;}
.hb{height:31.285299pt;}
.ha{height:31.758548pt;}
.h14{height:34.879691pt;}
.h12{height:35.728427pt;}
.h19{height:36.731982pt;}
.h15{height:39.698305pt;}
.h6{height:40.800000pt;}
.h13{height:41.329420pt;}
.h1a{height:41.482705pt;}
.h1b{height:41.488038pt;}
.h3{height:42.840000pt;}
.h18{height:45.916670pt;}
.h17{height:45.922003pt;}
.hd{height:47.637583pt;}
.h2{height:48.960000pt;}
.he{height:60.841249pt;}
.hc{height:66.990321pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:43.616000pt;}
.x9{left:56.693333pt;}
.x12{left:59.556000pt;}
.xd{left:64.948000pt;}
.x24{left:70.608000pt;}
.xc{left:72.633333pt;}
.xe{left:76.618667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x20{left:129.566667pt;}
.x1c{left:152.065333pt;}
.x1a{left:157.184000pt;}
.x19{left:163.769333pt;}
.x1b{left:165.142667pt;}
.x1f{left:169.801333pt;}
.x4{left:180.874667pt;}
.x1d{left:189.428000pt;}
.x1e{left:198.849333pt;}
.x23{left:200.269333pt;}
.x16{left:221.645333pt;}
.x21{left:225.602667pt;}
.x22{left:241.102667pt;}
.xa{left:273.864000pt;}
.x8{left:278.714667pt;}
.x15{left:280.332000pt;}
.x6{left:303.074667pt;}
.x5{left:327.150667pt;}
.x7{left:339.698667pt;}
.x13{left:402.266667pt;}
.x3{left:404.408000pt;}
.xf{left:415.344000pt;}
.x14{left:418.206667pt;}
.x18{left:421.388000pt;}
.x10{left:431.284000pt;}
.xb{left:504.160000pt;}
.x17{left:563.733333pt;}
}




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