
    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_01c32723ba93ad9b1d358c8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_e99c2682350c7551d5fcb152.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_43137dcf337e26964f71f3df.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9a026557180e711e39c219a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_8b6fc0157fe0e7dce2a3dc2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904000;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_1add0c7c67f88ae56e1588d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_3df7c544d828e6d2d0d3fad9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_3905b972c275ac472eefd472.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.388000;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_74eb8c152c712d7a697c7910.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922000;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_9508352c81e49fd3ef3989b7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.764000px;}
.v2{vertical-align:13.866000px;}
.v4{vertical-align:15.186000px;}
.v1{vertical-align:16.356000px;}
.v5{vertical-align:20.280000px;}
.v6{vertical-align:29.160000px;}
.ls8{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.740700px;}
.lse{letter-spacing:0.910350px;}
.ls10{letter-spacing:0.916350px;}
.ls4f{letter-spacing:1.003200px;}
.ls9{letter-spacing:2.964877px;}
.ls29{letter-spacing:2.977200px;}
.ls40{letter-spacing:3.370350px;}
.ls2f{letter-spacing:3.376350px;}
.ls23{letter-spacing:3.660334px;}
.ls27{letter-spacing:3.678319px;}
.ls2e{letter-spacing:3.686700px;}
.ls3c{letter-spacing:3.687605px;}
.ls4a{letter-spacing:3.696320px;}
.ls43{letter-spacing:3.703415px;}
.ls5f{letter-spacing:3.721952px;}
.lsc{letter-spacing:4.546350px;}
.ls5d{letter-spacing:4.974550px;}
.ls11{letter-spacing:5.468700px;}
.ls16{letter-spacing:5.516700px;}
.ls64{letter-spacing:5.521618px;}
.ls31{letter-spacing:5.522700px;}
.ls1e{letter-spacing:6.991200px;}
.ls60{letter-spacing:7.060350px;}
.ls50{letter-spacing:7.997453px;}
.ls62{letter-spacing:8.176350px;}
.lsf{letter-spacing:8.182350px;}
.ls3f{letter-spacing:10.636350px;}
.ls17{letter-spacing:10.642350px;}
.ls37{letter-spacing:10.975200px;}
.ls2b{letter-spacing:14.326350px;}
.ls20{letter-spacing:14.332350px;}
.ls57{letter-spacing:14.617621px;}
.ls24{letter-spacing:14.618158px;}
.ls5{letter-spacing:14.943900px;}
.ls54{letter-spacing:16.120321px;}
.ls53{letter-spacing:16.126321px;}
.ls6{letter-spacing:16.363650px;}
.lsb{letter-spacing:16.756378px;}
.ls19{letter-spacing:16.887287px;}
.ls0{letter-spacing:17.932800px;}
.ls3{letter-spacing:18.171782px;}
.ls58{letter-spacing:18.250321px;}
.ls52{letter-spacing:18.262321px;}
.ls30{letter-spacing:18.327288px;}
.ls1a{letter-spacing:18.392743px;}
.ls1{letter-spacing:18.530436px;}
.ls7{letter-spacing:18.720016px;}
.ls35{letter-spacing:18.916379px;}
.ls2{letter-spacing:18.948865px;}
.ls4{letter-spacing:19.128192px;}
.ls56{letter-spacing:19.309107px;}
.ls51{letter-spacing:19.374562px;}
.ls36{letter-spacing:19.440016px;}
.ls2a{letter-spacing:19.636380px;}
.ls6a{letter-spacing:19.701835px;}
.ls63{letter-spacing:19.767289px;}
.ls2c{letter-spacing:19.832744px;}
.ls22{letter-spacing:19.963653px;}
.ls25{letter-spacing:20.029108px;}
.ls34{letter-spacing:20.050321px;}
.ls44{letter-spacing:20.094562px;}
.ls14{letter-spacing:20.290926px;}
.ls32{letter-spacing:20.356381px;}
.ls33{letter-spacing:20.421835px;}
.ls3a{letter-spacing:20.487290px;}
.ls41{letter-spacing:20.749108px;}
.ls69{letter-spacing:21.058321px;}
.ls45{letter-spacing:21.338200px;}
.ls12{letter-spacing:21.519300px;}
.ls66{letter-spacing:21.861836px;}
.lsa{letter-spacing:22.254564px;}
.ls68{letter-spacing:22.320019px;}
.ls65{letter-spacing:22.400158px;}
.ls59{letter-spacing:22.450928px;}
.ls3d{letter-spacing:22.712746px;}
.ls6e{letter-spacing:22.834321px;}
.ls6d{letter-spacing:22.840321px;}
.ls1c{letter-spacing:22.896535px;}
.ls5c{letter-spacing:22.974565px;}
.ls4c{letter-spacing:23.301838px;}
.ls49{letter-spacing:23.367292px;}
.ls1f{letter-spacing:23.760020px;}
.ls18{letter-spacing:24.273770px;}
.ls26{letter-spacing:24.283657px;}
.ls6c{letter-spacing:24.676384px;}
.ls4b{letter-spacing:24.872748px;}
.ls21{letter-spacing:25.461839px;}
.ls4e{letter-spacing:25.527294px;}
.ls61{letter-spacing:25.854567px;}
.ls28{letter-spacing:26.312749px;}
.ls38{letter-spacing:26.509113px;}
.ls2d{letter-spacing:26.901841px;}
.ls6b{letter-spacing:27.032750px;}
.ls13{letter-spacing:27.114318px;}
.ls67{letter-spacing:27.163659px;}
.ls1d{letter-spacing:29.438402px;}
.ls5a{letter-spacing:29.776321px;}
.ls5b{letter-spacing:29.847298px;}
.ls1b{letter-spacing:30.557406px;}
.ls15{letter-spacing:31.073869px;}
.ls46{letter-spacing:31.941845px;}
.lsd{letter-spacing:32.727300px;}
.ls3e{letter-spacing:33.381846px;}
.ls42{letter-spacing:33.774574px;}
.ls5e{letter-spacing:36.000030px;}
.ls6f{letter-spacing:36.589121px;}
.ls3b{letter-spacing:36.720031px;}
.ls39{letter-spacing:38.880032px;}
.ls4d{letter-spacing:39.207305px;}
.ls48{letter-spacing:39.338215px;}
.ls47{letter-spacing:53.280044px;}
.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;}
}
.ws35{word-spacing:-36.654576px;}
.ws24{word-spacing:-30.501844px;}
.ws22{word-spacing:-28.145478px;}
.ws113{word-spacing:-21.519300px;}
.ws76{word-spacing:-17.932800px;}
.ws21{word-spacing:-16.363650px;}
.ws1{word-spacing:-14.943900px;}
.ws1b{word-spacing:-11.955150px;}
.wsbe{word-spacing:-4.303872px;}
.ws20{word-spacing:-3.927276px;}
.wsd7{word-spacing:-3.796367px;}
.ws56{word-spacing:-3.403639px;}
.ws3d{word-spacing:-3.207275px;}
.ws8d{word-spacing:-3.141821px;}
.wsd8{word-spacing:-3.010912px;}
.ws64{word-spacing:-2.749093px;}
.ws8a{word-spacing:-2.683639px;}
.ws89{word-spacing:-2.618184px;}
.ws4c{word-spacing:-2.421820px;}
.ws46{word-spacing:-2.356366px;}
.wsd3{word-spacing:-2.290911px;}
.ws57{word-spacing:-2.225456px;}
.ws5c{word-spacing:-2.160002px;}
.ws3e{word-spacing:-2.094547px;}
.wsdb{word-spacing:-2.080205px;}
.wse1{word-spacing:-1.963638px;}
.ws11{word-spacing:-1.912819px;}
.ws62{word-spacing:-1.832729px;}
.ws1f{word-spacing:-1.801830px;}
.ws94{word-spacing:-1.780634px;}
.wse7{word-spacing:-1.779386px;}
.wsc5{word-spacing:-1.779127px;}
.ws98{word-spacing:-1.774074px;}
.ws10c{word-spacing:-1.770900px;}
.wsd5{word-spacing:-1.770409px;}
.ws7e{word-spacing:-1.768723px;}
.ws10a{word-spacing:-1.767622px;}
.wse4{word-spacing:-1.767587px;}
.wsdc{word-spacing:-1.767274px;}
.ws10f{word-spacing:-1.763779px;}
.ws80{word-spacing:-1.758179px;}
.ws101{word-spacing:-1.756640px;}
.wsaa{word-spacing:-1.755034px;}
.wsab{word-spacing:-1.754339px;}
.ws100{word-spacing:-1.753882px;}
.ws84{word-spacing:-1.753482px;}
.wsac{word-spacing:-1.753257px;}
.ws9d{word-spacing:-1.752814px;}
.ws110{word-spacing:-1.751617px;}
.wsc1{word-spacing:-1.751272px;}
.wscc{word-spacing:-1.751250px;}
.wscb{word-spacing:-1.751011px;}
.ws108{word-spacing:-1.750667px;}
.wsc3{word-spacing:-1.750529px;}
.wsbd{word-spacing:-1.750139px;}
.wscd{word-spacing:-1.750056px;}
.wsd6{word-spacing:-1.749871px;}
.wsb6{word-spacing:-1.749664px;}
.wsc6{word-spacing:-1.749522px;}
.wsde{word-spacing:-1.749392px;}
.wsb7{word-spacing:-1.749088px;}
.ws4e{word-spacing:-1.748850px;}
.ws85{word-spacing:-1.748792px;}
.wsc2{word-spacing:-1.748314px;}
.wsa5{word-spacing:-1.747849px;}
.wsd9{word-spacing:-1.747835px;}
.ws7c{word-spacing:-1.747717px;}
.ws87{word-spacing:-1.747714px;}
.ws4d{word-spacing:-1.747492px;}
.wsfe{word-spacing:-1.747232px;}
.ws7b{word-spacing:-1.747171px;}
.ws83{word-spacing:-1.746808px;}
.ws102{word-spacing:-1.746716px;}
.wsb2{word-spacing:-1.746658px;}
.ws90{word-spacing:-1.746635px;}
.wsec{word-spacing:-1.746208px;}
.wsbf{word-spacing:-1.746092px;}
.ws10d{word-spacing:-1.745617px;}
.ws7a{word-spacing:-1.745614px;}
.wsc4{word-spacing:-1.745011px;}
.ws88{word-spacing:-1.744669px;}
.wsb1{word-spacing:-1.743522px;}
.wsad{word-spacing:-1.743456px;}
.wsea{word-spacing:-1.742792px;}
.wsb4{word-spacing:-1.741171px;}
.wsef{word-spacing:-1.739865px;}
.ws10e{word-spacing:-1.734765px;}
.wsbb{word-spacing:-1.733213px;}
.wsed{word-spacing:-1.732915px;}
.wse2{word-spacing:-1.732546px;}
.ws97{word-spacing:-1.728248px;}
.ws10b{word-spacing:-1.726611px;}
.ws106{word-spacing:-1.725522px;}
.wsca{word-spacing:-1.722775px;}
.wsf0{word-spacing:-1.722444px;}
.wsb3{word-spacing:-1.722161px;}
.wsc8{word-spacing:-1.720678px;}
.wsc9{word-spacing:-1.719538px;}
.ws105{word-spacing:-1.717946px;}
.wsf2{word-spacing:-1.717877px;}
.wse6{word-spacing:-1.716797px;}
.wse9{word-spacing:-1.716695px;}
.wsf1{word-spacing:-1.714840px;}
.wseb{word-spacing:-1.714058px;}
.ws107{word-spacing:-1.701820px;}
.ws48{word-spacing:-1.636365px;}
.ws49{word-spacing:-1.570910px;}
.ws6f{word-spacing:-1.440001px;}
.ws6b{word-spacing:-1.309092px;}
.wsce{word-spacing:-1.243637px;}
.ws7f{word-spacing:-1.112728px;}
.ws37{word-spacing:-0.916364px;}
.wsf8{word-spacing:-0.850910px;}
.ws71{word-spacing:-0.785455px;}
.wsb9{word-spacing:-0.720001px;}
.wsba{word-spacing:-0.654546px;}
.ws17{word-spacing:-0.597756px;}
.ws36{word-spacing:-0.589091px;}
.ws58{word-spacing:-0.392728px;}
.ws3f{word-spacing:-0.327273px;}
.wsfd{word-spacing:-0.261818px;}
.wsdd{word-spacing:-0.240629px;}
.ws69{word-spacing:-0.065455px;}
.ws1a{word-spacing:-0.047821px;}
.ws74{word-spacing:-0.004147px;}
.ws0{word-spacing:0.000000px;}
.wsa4{word-spacing:0.001853px;}
.ws86{word-spacing:0.065455px;}
.ws2d{word-spacing:0.130909px;}
.ws4f{word-spacing:0.196364px;}
.wsfa{word-spacing:0.261818px;}
.ws1d{word-spacing:0.392728px;}
.wsee{word-spacing:0.458182px;}
.ws2b{word-spacing:0.523637px;}
.wsd2{word-spacing:0.544858px;}
.ws2e{word-spacing:0.850910px;}
.ws2f{word-spacing:0.916364px;}
.ws104{word-spacing:0.981819px;}
.ws67{word-spacing:1.047274px;}
.ws68{word-spacing:1.112728px;}
.wsa7{word-spacing:1.178183px;}
.ws31{word-spacing:1.243637px;}
.ws5e{word-spacing:1.291158px;}
.ws60{word-spacing:1.309092px;}
.wse8{word-spacing:1.374547px;}
.ws29{word-spacing:1.440001px;}
.ws39{word-spacing:1.505456px;}
.wscf{word-spacing:1.570910px;}
.wsf7{word-spacing:1.636365px;}
.ws77{word-spacing:1.701820px;}
.ws79{word-spacing:1.767274px;}
.ws10{word-spacing:1.793268px;}
.wsd0{word-spacing:1.898183px;}
.ws54{word-spacing:1.963638px;}
.ws34{word-spacing:2.029093px;}
.ws43{word-spacing:2.160002px;}
.ws32{word-spacing:2.225456px;}
.ws33{word-spacing:2.290911px;}
.ws19{word-spacing:2.356366px;}
.ws55{word-spacing:2.421820px;}
.ws30{word-spacing:2.487275px;}
.wse0{word-spacing:2.552729px;}
.ws45{word-spacing:2.618184px;}
.ws52{word-spacing:2.668393px;}
.wsaf{word-spacing:2.683639px;}
.wsc{word-spacing:2.689902px;}
.wsb0{word-spacing:2.749093px;}
.wsfb{word-spacing:2.814548px;}
.wsda{word-spacing:2.880002px;}
.ws3a{word-spacing:2.945457px;}
.ws5d{word-spacing:3.010912px;}
.ws6e{word-spacing:3.076366px;}
.ws92{word-spacing:3.141821px;}
.wse3{word-spacing:3.207275px;}
.ws5{word-spacing:3.227882px;}
.ws81{word-spacing:3.272730px;}
.ws65{word-spacing:3.338185px;}
.wsa{word-spacing:3.347434px;}
.ws103{word-spacing:3.403639px;}
.wsfc{word-spacing:3.469094px;}
.ws66{word-spacing:3.534548px;}
.ws13{word-spacing:3.586536px;}
.wsb{word-spacing:3.646312px;}
.ws51{word-spacing:3.665458px;}
.ws38{word-spacing:3.730912px;}
.ws91{word-spacing:3.861821px;}
.ws1e{word-spacing:3.927276px;}
.ws7{word-spacing:4.004965px;}
.ws99{word-spacing:4.058185px;}
.ws9a{word-spacing:4.123640px;}
.ws16{word-spacing:4.184292px;}
.ws109{word-spacing:4.189094px;}
.ws44{word-spacing:4.385458px;}
.wsb8{word-spacing:4.450913px;}
.wsf{word-spacing:4.483170px;}
.ws12{word-spacing:4.542946px;}
.wsa3{word-spacing:4.581822px;}
.ws7d{word-spacing:4.662528px;}
.ws59{word-spacing:4.778186px;}
.ws8{word-spacing:4.841824px;}
.ws8e{word-spacing:4.909095px;}
.ws9b{word-spacing:4.974550px;}
.ws42{word-spacing:5.040004px;}
.ws53{word-spacing:5.164632px;}
.wsd{word-spacing:5.379804px;}
.ws111{word-spacing:5.432732px;}
.ws2c{word-spacing:5.681095px;}
.ws5f{word-spacing:5.825459px;}
.ws78{word-spacing:5.848858px;}
.wse{word-spacing:5.858009px;}
.ws1c{word-spacing:5.890914px;}
.ws27{word-spacing:5.929754px;}
.ws82{word-spacing:6.152732px;}
.ws116{word-spacing:6.218187px;}
.ws114{word-spacing:6.283642px;}
.wsa9{word-spacing:6.545460px;}
.ws28{word-spacing:6.575316px;}
.ws2a{word-spacing:6.610915px;}
.ws15{word-spacing:6.694867px;}
.ws61{word-spacing:6.872733px;}
.ws9{word-spacing:7.053521px;}
.wsa2{word-spacing:7.134551px;}
.ws41{word-spacing:7.200006px;}
.ws40{word-spacing:7.265461px;}
.ws23{word-spacing:7.330915px;}
.wsb5{word-spacing:7.461824px;}
.ws3c{word-spacing:7.527279px;}
.ws72{word-spacing:7.592734px;}
.wsf4{word-spacing:7.854552px;}
.ws63{word-spacing:7.919102px;}
.wsf3{word-spacing:7.920007px;}
.ws9e{word-spacing:8.181825px;}
.ws9c{word-spacing:8.247280px;}
.ws6c{word-spacing:8.443643px;}
.ws6d{word-spacing:8.509098px;}
.ws3b{word-spacing:8.574553px;}
.wsa6{word-spacing:8.640007px;}
.ws50{word-spacing:8.836371px;}
.wsa8{word-spacing:8.901826px;}
.ws4a{word-spacing:9.032735px;}
.ws5b{word-spacing:9.038106px;}
.ws4b{word-spacing:9.098189px;}
.wsff{word-spacing:9.163644px;}
.ws93{word-spacing:9.229099px;}
.ws14{word-spacing:9.265218px;}
.ws95{word-spacing:9.294553px;}
.wsd4{word-spacing:9.425462px;}
.ws6a{word-spacing:9.490917px;}
.ws47{word-spacing:9.554569px;}
.wsc7{word-spacing:9.556372px;}
.ws5a{word-spacing:9.752735px;}
.ws6{word-spacing:10.042301px;}
.ws9f{word-spacing:10.276372px;}
.ws4{word-spacing:10.341179px;}
.wsa0{word-spacing:10.800009px;}
.wsc0{word-spacing:10.996373px;}
.ws70{word-spacing:11.061827px;}
.ws8f{word-spacing:11.258191px;}
.ws96{word-spacing:11.585464px;}
.ws75{word-spacing:11.692186px;}
.wsd1{word-spacing:11.912737px;}
.wsdf{word-spacing:12.501829px;}
.wse5{word-spacing:12.763647px;}
.ws8c{word-spacing:12.768154px;}
.wsae{word-spacing:13.221829px;}
.wsf9{word-spacing:13.549102px;}
.ws2{word-spacing:14.884124px;}
.ws73{word-spacing:16.298195px;}
.ws26{word-spacing:16.363650px;}
.ws8b{word-spacing:17.932800px;}
.ws3{word-spacing:18.470660px;}
.ws25{word-spacing:19.636380px;}
.wsf6{word-spacing:19.701835px;}
.ws18{word-spacing:22.116972px;}
.ws115{word-spacing:22.581837px;}
.wsf5{word-spacing:28.603660px;}
.wsbc{word-spacing:29.454570px;}
.ws112{word-spacing:34.298210px;}
.wsa1{word-spacing:68.465512px;}
._30{margin-left:-35.018211px;}
._31{margin-left:-32.727300px;}
._3f{margin-left:-20.565013px;}
._47{margin-left:-19.470509px;}
._32{margin-left:-16.363650px;}
._48{margin-left:-10.037378px;}
._43{margin-left:-8.998223px;}
._26{margin-left:-7.759191px;}
._19{margin-left:-5.974387px;}
._1b{margin-left:-4.909095px;}
._12{margin-left:-3.885414px;}
._3{margin-left:-2.701119px;}
._4{margin-left:-1.291162px;}
._3b{width:1.313018px;}
._8{width:2.656092px;}
._3a{width:3.867316px;}
._2{width:5.258481px;}
._3c{width:6.363689px;}
._4b{width:7.998874px;}
._4c{width:9.818190px;}
._4e{width:12.109101px;}
._37{width:14.090220px;}
._f{width:15.159101px;}
._38{width:16.363650px;}
._6{width:17.943897px;}
._11{width:19.393418px;}
._13{width:20.775785px;}
._1{width:22.236672px;}
._a{width:24.088855px;}
._44{width:25.396385px;}
._c{width:26.480591px;}
._16{width:27.715818px;}
._b{width:29.755565px;}
._40{width:31.483663px;}
._7{width:32.566485px;}
._d{width:34.072092px;}
._e{width:36.044687px;}
._41{width:37.440031px;}
._10{width:38.495486px;}
._9{width:39.810550px;}
._34{width:41.361040px;}
._3e{width:42.660637px;}
._35{width:43.853206px;}
._4d{width:44.901856px;}
._42{width:45.949129px;}
._45{width:47.615088px;}
._49{width:49.418223px;}
._46{width:54.188153px;}
._33{width:55.636410px;}
._4a{width:57.384440px;}
._3d{width:58.450958px;}
._39{width:60.610960px;}
._14{width:65.454600px;}
._36{width:89.167787px;}
._27{width:136.421783px;}
._22{width:303.872150px;}
._20{width:317.511068px;}
._0{width:548.119717px;}
._24{width:772.865097px;}
._18{width:852.361465px;}
._2a{width:985.486311px;}
._2c{width:998.887023px;}
._1e{width:1139.665734px;}
._21{width:1263.407080px;}
._29{width:1289.737310px;}
._5{width:1326.838993px;}
._2f{width:1332.031016px;}
._28{width:1363.373785px;}
._25{width:1447.349596px;}
._1f{width:1452.504093px;}
._23{width:1454.580045px;}
._1d{width:1520.381440px;}
._1c{width:1564.123043px;}
._2d{width:1617.264233px;}
._1a{width:1763.019651px;}
._15{width:1850.205178px;}
._2b{width:1926.816966px;}
._17{width:2057.257999px;}
._2e{width:2375.343774px;}
.fc2{color:rgb(0,173,239);}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(237,28,36);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y2c{bottom:26.110500px;}
.y2b{bottom:37.617000px;}
.y29{bottom:40.308000px;}
.y2a{bottom:42.304500px;}
.y28{bottom:57.493500px;}
.y27{bottom:71.689500px;}
.y26{bottom:88.875000px;}
.y150{bottom:130.213500px;}
.y25{bottom:133.707000px;}
.y14f{bottom:133.789500px;}
.y7d{bottom:141.805500px;}
.y101{bottom:150.349500px;}
.y14e{bottom:150.538500px;}
.y4c{bottom:154.030500px;}
.yb1{bottom:154.032000px;}
.y177{bottom:154.821000px;}
.y7c{bottom:162.130500px;}
.yd8{bottom:169.380000px;}
.y100{bottom:170.673000px;}
.yff{bottom:170.860500px;}
.y14d{bottom:170.862000px;}
.yfe{bottom:174.354000px;}
.yb0{bottom:174.355500px;}
.y4b{bottom:174.390000px;}
.y24{bottom:174.778500px;}
.y176{bottom:175.146000px;}
.y8a{bottom:189.148500px;}
.y14c{bottom:190.998000px;}
.y4a{bottom:191.254500px;}
.y14b{bottom:194.679000px;}
.y49{bottom:194.748000px;}
.y23{bottom:195.102000px;}
.yaf{bottom:196.723500px;}
.y7b{bottom:200.386500px;}
.yd7{bottom:205.051500px;}
.y128{bottom:206.587500px;}
.yfd{bottom:210.010500px;}
.y14a{bottom:211.509000px;}
.y149{bottom:215.002500px;}
.y48{bottom:215.106000px;}
.yae{bottom:217.047000px;}
.y175{bottom:217.378500px;}
.y7a{bottom:220.710000px;}
.yd6{bottom:221.694000px;}
.y127{bottom:223.230000px;}
.yd5{bottom:225.375000px;}
.y126{bottom:226.911000px;}
.y89{bottom:228.750000px;}
.y47{bottom:231.748500px;}
.y46{bottom:235.429500px;}
.y22{bottom:236.172000px;}
.yad{bottom:237.370500px;}
.y174{bottom:237.702000px;}
.y79{bottom:241.033500px;}
.yfc{bottom:241.986000px;}
.yfb{bottom:245.667000px;}
.y148{bottom:251.386500px;}
.y45{bottom:255.787500px;}
.yac{bottom:257.694000px;}
.y125{bottom:259.144500px;}
.yd4{bottom:261.046500px;}
.y78{bottom:261.358500px;}
.yfa{bottom:262.309500px;}
.yf9{bottom:262.497000px;}
.y88{bottom:263.868000px;}
.yf8{bottom:265.990500px;}
.y147{bottom:271.710000px;}
.y6f{bottom:272.416500px;}
.y44{bottom:272.617500px;}
.y173{bottom:274.657500px;}
.y43{bottom:276.111000px;}
.y21{bottom:277.783500px;}
.yab{bottom:278.017500px;}
.y124{bottom:279.468000px;}
.yd3{bottom:281.371500px;}
.y77{bottom:281.682000px;}
.y9f{bottom:286.164000px;}
.y6e{bottom:292.740000px;}
.y172{bottom:294.981000px;}
.y42{bottom:296.469000px;}
.yaa{bottom:298.342500px;}
.yf7{bottom:301.647000px;}
.yd2{bottom:301.695000px;}
.y76{bottom:302.005500px;}
.y87{bottom:303.804000px;}
.y9e{bottom:306.489000px;}
.y146{bottom:308.094000px;}
.y123{bottom:311.700000px;}
.y6d{bottom:313.063500px;}
.y171{bottom:315.304500px;}
.ya9{bottom:318.666000px;}
.y86{bottom:324.129000px;}
.y145{bottom:324.736500px;}
.y9d{bottom:326.812500px;}
.y122{bottom:328.342500px;}
.y144{bottom:328.417500px;}
.y121{bottom:332.023500px;}
.y41{bottom:333.214500px;}
.y6c{bottom:333.387000px;}
.y75{bottom:335.778000px;}
.yf6{bottom:337.303500px;}
.yd1{bottom:337.366500px;}
.ya8{bottom:338.989500px;}
.y20{bottom:343.446000px;}
.y85{bottom:344.788500px;}
.y9c{bottom:347.136000px;}
.y170{bottom:352.258500px;}
.y40{bottom:353.538000px;}
.y6b{bottom:353.712000px;}
.yf5{bottom:353.946000px;}
.y74{bottom:356.103000px;}
.yf4{bottom:357.627000px;}
.ya7{bottom:359.313000px;}
.y120{bottom:364.257000px;}
.y143{bottom:364.801500px;}
.y84{bottom:365.112000px;}
.y1f{bottom:365.410500px;}
.y9b{bottom:367.459500px;}
.y16f{bottom:368.901000px;}
.y16e{bottom:369.090000px;}
.y16d{bottom:372.583500px;}
.yd0{bottom:373.038000px;}
.y6a{bottom:374.035500px;}
.yf3{bottom:374.269500px;}
.yf2{bottom:374.458500px;}
.y73{bottom:376.426500px;}
.yf1{bottom:377.952000px;}
.ya6{bottom:379.636500px;}
.y1e{bottom:383.344500px;}
.y142{bottom:385.125000px;}
.y83{bottom:385.771500px;}
.y9a{bottom:387.783000px;}
.y3f{bottom:390.283500px;}
.y69{bottom:394.359000px;}
.y11f{bottom:396.489000px;}
.y72{bottom:396.750000px;}
.ya5{bottom:399.961500px;}
.y1d{bottom:401.277000px;}
.y82{bottom:406.096500px;}
.y99{bottom:408.108000px;}
.ycf{bottom:408.711000px;}
.y16c{bottom:409.537500px;}
.y11e{bottom:413.131500px;}
.yf0{bottom:413.607000px;}
.y68{bottom:414.682500px;}
.y11d{bottom:416.814000px;}
.ya4{bottom:420.285000px;}
.y1c{bottom:421.401000px;}
.y141{bottom:421.507500px;}
.y81{bottom:426.756000px;}
.y3e{bottom:427.027500px;}
.y98{bottom:428.431500px;}
.yce{bottom:429.034500px;}
.y11c{bottom:433.455000px;}
.y67{bottom:435.006000px;}
.y11b{bottom:437.137500px;}
.y1b{bottom:439.333500px;}
.ya3{bottom:440.608500px;}
.y140{bottom:441.832500px;}
.ycd{bottom:445.677000px;}
.y16b{bottom:446.491500px;}
.y80{bottom:447.415500px;}
.y97{bottom:448.755000px;}
.yef{bottom:449.263500px;}
.ycc{bottom:449.358000px;}
.y66{bottom:455.331000px;}
.y1a{bottom:457.266000px;}
.y13f{bottom:458.662500px;}
.y13e{bottom:462.156000px;}
.y3d{bottom:463.773000px;}
.ya0{bottom:465.691500px;}
.yee{bottom:466.095000px;}
.y16a{bottom:466.816500px;}
.y11a{bottom:469.369500px;}
.yed{bottom:469.588500px;}
.ycb{bottom:469.681500px;}
.y65{bottom:475.654500px;}
.y19{bottom:477.390000px;}
.y13d{bottom:478.798500px;}
.ya2{bottom:481.927500px;}
.y13c{bottom:482.479500px;}
.y7f{bottom:485.343000px;}
.y96{bottom:486.015000px;}
.y71{bottom:492.591000px;}
.y18{bottom:495.324000px;}
.y169{bottom:500.089500px;}
.y168{bottom:500.277000px;}
.y3c{bottom:500.517000px;}
.y119{bottom:501.603000px;}
.y167{bottom:503.770500px;}
.yec{bottom:505.243500px;}
.yca{bottom:505.354500px;}
.ya1{bottom:508.825500px;}
.y7e{bottom:512.242500px;}
.y64{bottom:512.914500px;}
.y17{bottom:513.256500px;}
.y13b{bottom:518.863500px;}
.y118{bottom:521.926500px;}
.y16{bottom:531.189000px;}
.y3b{bottom:537.262500px;}
.yeb{bottom:537.547500px;}
.y117{bottom:538.569000px;}
.y13a{bottom:539.187000px;}
.y166{bottom:540.726000px;}
.yc9{bottom:541.026000px;}
.y116{bottom:542.250000px;}
.y70{bottom:545.014500px;}
.y15{bottom:549.121500px;}
.yc8{bottom:557.856000px;}
.y165{bottom:561.049500px;}
.yc7{bottom:561.349500px;}
.y63{bottom:565.338000px;}
.y14{bottom:567.054000px;}
.y3a{bottom:574.008000px;}
.y115{bottom:574.482000px;}
.y139{bottom:575.571000px;}
.y62{bottom:583.494000px;}
.y13{bottom:584.986500px;}
.yea{bottom:585.192000px;}
.y138{bottom:592.401000px;}
.yc6{bottom:593.661000px;}
.y114{bottom:594.807000px;}
.y137{bottom:595.894500px;}
.y164{bottom:598.003500px;}
.y12{bottom:602.920500px;}
.y61{bottom:603.817500px;}
.ye9{bottom:605.515500px;}
.yc5{bottom:609.477000px;}
.y39{bottom:610.752000px;}
.y113{bottom:611.448000px;}
.yc4{bottom:614.583000px;}
.y112{bottom:615.130500px;}
.y163{bottom:618.327000px;}
.y11{bottom:620.853000px;}
.y60{bottom:624.141000px;}
.ye8{bottom:625.839000px;}
.y136{bottom:632.277000px;}
.y10{bottom:638.785500px;}
.y5f{bottom:644.466000px;}
.ye7{bottom:646.162500px;}
.y111{bottom:646.500000px;}
.y38{bottom:647.497500px;}
.y135{bottom:648.919500px;}
.y134{bottom:652.602000px;}
.y162{bottom:655.282500px;}
.yf{bottom:656.718000px;}
.yc3{bottom:662.250000px;}
.y5e{bottom:664.789500px;}
.y110{bottom:667.420500px;}
.y37{bottom:667.821000px;}
.y161{bottom:671.925000px;}
.y160{bottom:675.606000px;}
.ye6{bottom:681.819000px;}
.ye{bottom:681.997500px;}
.yc2{bottom:682.573500px;}
.y5d{bottom:685.113000px;}
.y133{bottom:685.266000px;}
.ye5{bottom:702.142500px;}
.y36{bottom:704.565000px;}
.y5c{bottom:705.436500px;}
.y10f{bottom:711.514500px;}
.y15f{bottom:712.560000px;}
.yc1{bottom:718.245000px;}
.y95{bottom:719.952000px;}
.y5b{bottom:725.760000px;}
.y15e{bottom:732.885000px;}
.y132{bottom:733.987500px;}
.yd{bottom:734.931000px;}
.yc0{bottom:735.076500px;}
.ye4{bottom:737.799000px;}
.ybf{bottom:738.570000px;}
.y94{bottom:740.275500px;}
.y35{bottom:741.310500px;}
.y10e{bottom:743.748000px;}
.y5a{bottom:746.085000px;}
.y131{bottom:750.630000px;}
.y130{bottom:750.817500px;}
.y15d{bottom:753.208500px;}
.y12f{bottom:754.311000px;}
.ye3{bottom:758.122500px;}
.y10d{bottom:764.071500px;}
.y15c{bottom:769.851000px;}
.y15b{bottom:773.532000px;}
.ybe{bottom:774.241500px;}
.y12e{bottom:774.634500px;}
.y34{bottom:778.054500px;}
.y93{bottom:778.531500px;}
.y10c{bottom:780.714000px;}
.y59{bottom:783.345000px;}
.y10b{bottom:784.395000px;}
.yc{bottom:787.654500px;}
.y15a{bottom:790.362000px;}
.ybd{bottom:791.071500px;}
.ye2{bottom:793.779000px;}
.y159{bottom:793.855500px;}
.ybc{bottom:794.565000px;}
.y92{bottom:798.855000px;}
.yb{bottom:807.978000px;}
.y58{bottom:810.243000px;}
.y12d{bottom:811.018500px;}
.ye1{bottom:814.104000px;}
.y33{bottom:814.800000px;}
.y10a{bottom:816.628500px;}
.ya{bottom:828.301500px;}
.y91{bottom:829.135500px;}
.y158{bottom:830.811000px;}
.y12c{bottom:831.342000px;}
.y90{bottom:832.629000px;}
.ybb{bottom:835.195500px;}
.y157{bottom:847.452000px;}
.y156{bottom:847.641000px;}
.y9{bottom:848.626500px;}
.y109{bottom:848.860500px;}
.ye0{bottom:849.759000px;}
.y155{bottom:851.134500px;}
.y32{bottom:851.545500px;}
.y57{bottom:862.915500px;}
.y12b{bottom:864.007500px;}
.y8f{bottom:866.401500px;}
.yba{bottom:867.507000px;}
.y8{bottom:868.950000px;}
.y108{bottom:869.184000px;}
.ydf{bottom:870.084000px;}
.y154{bottom:878.976000px;}
.y153{bottom:879.228000px;}
.y12a{bottom:880.074000px;}
.yb9{bottom:883.573500px;}
.y152{bottom:884.082000px;}
.y129{bottom:884.929500px;}
.y31{bottom:888.289500px;}
.yb8{bottom:888.427500px;}
.y7{bottom:889.273500px;}
.y8e{bottom:900.175500px;}
.y56{bottom:901.171500px;}
.y107{bottom:901.417500px;}
.yde{bottom:905.739000px;}
.y6{bottom:909.597000px;}
.y106{bottom:921.741000px;}
.y30{bottom:925.035000px;}
.yb3{bottom:933.649500px;}
.y8d{bottom:933.949500px;}
.yb7{bottom:936.094500px;}
.y55{bottom:939.429000px;}
.ydd{bottom:941.395500px;}
.y105{bottom:942.064500px;}
.y17a{bottom:943.911000px;}
.yb2{bottom:953.974500px;}
.yb6{bottom:956.419500px;}
.y5{bottom:958.654500px;}
.y104{bottom:958.707000px;}
.ydc{bottom:961.720500px;}
.y2f{bottom:961.779000px;}
.y103{bottom:962.388000px;}
.y179{bottom:964.236000px;}
.y8c{bottom:967.722000px;}
.y52{bottom:970.615500px;}
.y51{bottom:970.804500px;}
.y50{bottom:974.298000px;}
.yb5{bottom:976.743000px;}
.y54{bottom:977.685000px;}
.y4{bottom:979.576500px;}
.ydb{bottom:982.044000px;}
.y102{bottom:982.713000px;}
.y178{bottom:994.327500px;}
.y4f{bottom:994.621500px;}
.yb4{bottom:997.066500px;}
.y53{bottom:998.008500px;}
.y2e{bottom:998.524500px;}
.y3{bottom:1000.497000px;}
.y8b{bottom:1001.496000px;}
.yda{bottom:1014.348000px;}
.y4e{bottom:1014.945000px;}
.y2{bottom:1021.419000px;}
.yd9{bottom:1030.414500px;}
.y151{bottom:1031.587500px;}
.y4d{bottom:1031.775000px;}
.y2d{bottom:1035.268500px;}
.y1{bottom:1116.067500px;}
.hf{height:24.675533px;}
.h1{height:32.900573px;}
.he{height:33.187496px;}
.hc{height:40.826735px;}
.h6{height:41.006062px;}
.hb{height:41.125613px;}
.ha{height:41.425613px;}
.h8{height:41.484266px;}
.h7{height:41.783144px;}
.h10{height:43.664573px;}
.h1b{height:44.705492px;}
.h1c{height:45.029492px;}
.h12{height:45.032765px;}
.h1d{height:45.035492px;}
.h15{height:45.356765px;}
.h11{height:45.362765px;}
.h5{height:45.425492px;}
.h1a{height:46.211492px;}
.h2{height:49.781453px;}
.h3{height:50.639453px;}
.h20{height:50.645453px;}
.h9{height:54.991613px;}
.h1f{height:58.679492px;}
.h23{height:59.003492px;}
.h16{height:59.006765px;}
.h22{height:59.009492px;}
.h13{height:59.336765px;}
.h25{height:59.429492px;}
.h29{height:59.435492px;}
.hd{height:59.737577px;}
.h2c{height:59.753492px;}
.h14{height:59.756765px;}
.h26{height:59.759492px;}
.h19{height:59.762765px;}
.h28{height:59.885492px;}
.h1e{height:59.891492px;}
.h18{height:60.086765px;}
.h2a{height:60.149492px;}
.h2e{height:60.155492px;}
.h17{height:60.218765px;}
.h4{height:66.137453px;}
.h27{height:69.197453px;}
.h21{height:70.061453px;}
.h24{height:70.205453px;}
.h2d{height:71.069453px;}
.h2b{height:73.865492px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.000000px;}
.x34{left:138.448500px;}
.x134{left:151.363500px;}
.x30{left:156.519000px;}
.xb{left:159.546000px;}
.xc{left:162.246000px;}
.x6{left:164.887500px;}
.xd{left:166.926000px;}
.xe{left:172.237500px;}
.x35{left:175.909500px;}
.x11e{left:177.289500px;}
.x126{left:181.359000px;}
.x81{left:184.090500px;}
.x56{left:187.743000px;}
.xa{left:190.293000px;}
.x97{left:192.273000px;}
.x57{left:194.286000px;}
.xd8{left:195.906000px;}
.x15{left:197.182500px;}
.xd6{left:199.537500px;}
.xd9{left:204.087000px;}
.x98{left:207.720000px;}
.x18{left:208.996500px;}
.x10{left:213.546000px;}
.x37{left:215.290500px;}
.xaa{left:216.573000px;}
.xb8{left:219.247500px;}
.xc5{left:220.818000px;}
.xd7{left:224.083500px;}
.x67{left:225.550500px;}
.xd1{left:228.292500px;}
.x70{left:230.053500px;}
.x47{left:233.100000px;}
.xa4{left:234.648000px;}
.x83{left:236.731500px;}
.x8a{left:238.204500px;}
.xe6{left:241.771500px;}
.x39{left:243.081000px;}
.x5b{left:244.377000px;}
.x8e{left:245.916000px;}
.xf2{left:247.728000px;}
.x91{left:249.805500px;}
.xdc{left:251.787000px;}
.x120{left:253.429500px;}
.x8c{left:254.911500px;}
.x5c{left:260.740500px;}
.x99{left:262.693500px;}
.xb9{left:264.174000px;}
.x76{left:265.773000px;}
.x8f{left:268.425000px;}
.x7a{left:270.115500px;}
.x3a{left:272.649000px;}
.x44{left:274.957500px;}
.x5d{left:276.729000px;}
.x3e{left:278.295000px;}
.x92{left:279.799500px;}
.xae{left:281.457000px;}
.x46{left:282.615000px;}
.x58{left:284.383500px;}
.x9a{left:285.406500px;}
.x11{left:286.657500px;}
.x16{left:289.107000px;}
.x31{left:290.112000px;}
.x19{left:291.255000px;}
.xb0{left:292.807500px;}
.x54{left:295.708500px;}
.x2c{left:297.718500px;}
.xba{left:299.061000px;}
.xc6{left:301.359000px;}
.x32{left:305.584500px;}
.x45{left:307.683000px;}
.x11c{left:309.948000px;}
.x51{left:311.475000px;}
.x105{left:312.636000px;}
.x12d{left:314.091000px;}
.x10e{left:316.056000px;}
.x7b{left:317.821500px;}
.x2{left:319.755000px;}
.x11a{left:321.708000px;}
.x48{left:323.997000px;}
.x12b{left:325.464000px;}
.x3{left:328.722000px;}
.x52{left:330.333000px;}
.x33{left:332.845500px;}
.x3f{left:334.651500px;}
.x8b{left:336.322500px;}
.x4e{left:337.852500px;}
.xa0{left:339.579000px;}
.x68{left:340.834500px;}
.x40{left:342.832500px;}
.x123{left:344.422500px;}
.x55{left:346.279500px;}
.x21{left:347.604000px;}
.xa8{left:349.741500px;}
.x9b{left:351.040500px;}
.x124{left:352.605000px;}
.x12c{left:354.516000px;}
.x53{left:359.649000px;}
.x101{left:361.881000px;}
.x10b{left:363.405000px;}
.x5e{left:364.509000px;}
.x4d{left:366.382500px;}
.xab{left:367.840500px;}
.x49{left:369.880500px;}
.x50{left:371.538000px;}
.xdd{left:373.432500px;}
.x4f{left:374.482500px;}
.x41{left:375.559500px;}
.x3b{left:376.704000px;}
.x5f{left:379.039500px;}
.x11d{left:381.220500px;}
.x127{left:383.052000px;}
.x69{left:384.460500px;}
.x125{left:386.577000px;}
.x130{left:388.086000px;}
.xf{left:389.782500px;}
.x121{left:391.147500px;}
.x10f{left:392.791500px;}
.x2d{left:395.866500px;}
.xde{left:397.977000px;}
.x106{left:399.480000px;}
.x1a{left:401.529000px;}
.x7{left:403.537500px;}
.x108{left:405.693000px;}
.x84{left:407.370000px;}
.x4{left:408.594000px;}
.x1b{left:409.711500px;}
.xea{left:413.082000px;}
.xc7{left:414.439500px;}
.xa1{left:415.497000px;}
.x110{left:417.022500px;}
.xa5{left:420.283500px;}
.x111{left:421.570500px;}
.x77{left:423.486000px;}
.x5{left:425.637000px;}
.x109{left:427.104000px;}
.x60{left:428.130000px;}
.x6a{left:429.270000px;}
.x71{left:431.661000px;}
.x8d{left:434.287500px;}
.x107{left:435.426000px;}
.x93{left:437.380500px;}
.x10a{left:438.403500px;}
.x85{left:440.457000px;}
.x90{left:442.258500px;}
.xf3{left:445.030500px;}
.x61{left:448.101000px;}
.x118{left:450.328500px;}
.x36{left:451.528500px;}
.x42{left:453.727500px;}
.x20{left:455.263500px;}
.xaf{left:457.408500px;}
.x3c{left:458.964000px;}
.xb1{left:460.504500px;}
.x62{left:462.631500px;}
.x86{left:464.086500px;}
.x43{left:466.443000px;}
.x7c{left:468.720000px;}
.x82{left:471.066000px;}
.x78{left:473.031000px;}
.xa2{left:475.050000px;}
.xfa{left:477.180000px;}
.xc8{left:478.813500px;}
.xa6{left:480.636000px;}
.xbb{left:481.918500px;}
.x6b{left:484.062000px;}
.x27{left:486.700500px;}
.xa9{left:489.277500px;}
.x9c{left:491.095500px;}
.x10c{left:492.579000px;}
.x3d{left:495.324000px;}
.x24{left:496.698000px;}
.x63{left:500.421000px;}
.xda{left:502.386000px;}
.x79{left:505.479000px;}
.x9d{left:506.542500px;}
.x4a{left:507.579000px;}
.x6c{left:509.121000px;}
.x28{left:511.375500px;}
.x25{left:513.061500px;}
.x115{left:514.539000px;}
.x122{left:516.816000px;}
.xeb{left:518.479500px;}
.x29{left:519.558000px;}
.x7d{left:521.007000px;}
.x6d{left:523.138500px;}
.xc9{left:525.547500px;}
.x64{left:527.143500px;}
.x102{left:528.559500px;}
.x2e{left:529.621500px;}
.xec{left:532.110000px;}
.xfb{left:533.622000px;}
.xb2{left:534.679500px;}
.xdf{left:537.492000px;}
.xb3{left:539.227500px;}
.x65{left:541.674000px;}
.x7e{left:543.720000px;}
.x131{left:545.338500px;}
.x128{left:546.721500px;}
.xed{left:547.950000px;}
.x38{left:549.928500px;}
.x103{left:551.271000px;}
.x12a{left:553.963500px;}
.xe0{left:556.048500px;}
.x87{left:558.061500px;}
.x116{left:560.061000px;}
.xdb{left:561.766500px;}
.xac{left:563.674500px;}
.xb4{left:565.075500px;}
.xf5{left:567.651000px;}
.xee{left:569.752500px;}
.xe1{left:571.495500px;}
.xbc{left:573.315000px;}
.x9e{left:575.416500px;}
.x12{left:577.600500px;}
.x94{left:579.481500px;}
.x13{left:581.920500px;}
.xd2{left:583.360500px;}
.x2f{left:586.435500px;}
.x12e{left:590.167500px;}
.xbd{left:592.797000px;}
.xe2{left:596.040000px;}
.x14{left:597.367500px;}
.x12f{left:599.424000px;}
.x8{left:600.673500px;}
.x88{left:601.686000px;}
.xef{left:602.865000px;}
.x17{left:604.653000px;}
.xf8{left:606.268500px;}
.xa3{left:608.047500px;}
.x129{left:609.291000px;}
.x113{left:611.046000px;}
.xbe{left:612.391500px;}
.x66{left:614.376000px;}
.x11f{left:619.981500px;}
.x89{left:621.682500px;}
.xca{left:623.958000px;}
.x6e{left:625.188000px;}
.x119{left:626.221500px;}
.xf6{left:628.948500px;}
.x132{left:632.164500px;}
.x10d{left:634.084500px;}
.x26{left:635.280000px;}
.x2a{left:636.850500px;}
.x72{left:638.133000px;}
.xad{left:640.450500px;}
.x114{left:641.653500px;}
.x117{left:643.758000px;}
.x6f{left:645.168000px;}
.x75{left:646.936500px;}
.xbf{left:648.879000px;}
.xf9{left:650.008500px;}
.x22{left:652.512000px;}
.x73{left:653.580000px;}
.xf7{left:655.309500px;}
.x59{left:658.041000px;}
.x2b{left:661.527000px;}
.x9{left:663.732000px;}
.x23{left:665.014500px;}
.xe3{left:666.910500px;}
.x1c{left:670.314000px;}
.xcb{left:672.121500px;}
.xc0{left:674.725500px;}
.x5a{left:675.973500px;}
.xf4{left:679.249500px;}
.x74{left:682.716000px;}
.xd3{left:684.403500px;}
.x7f{left:686.863500px;}
.x1d{left:690.310500px;}
.x95{left:692.061000px;}
.xc1{left:694.320000px;}
.xfd{left:697.170000px;}
.xcc{left:698.869500px;}
.xe4{left:700.528500px;}
.xff{left:701.532000px;}
.x1e{left:705.757500px;}
.x112{left:707.128500px;}
.xd4{left:708.949500px;}
.xfe{left:712.617000px;}
.x100{left:716.236500px;}
.x9f{left:717.889500px;}
.xc2{left:720.793500px;}
.xf0{left:725.050500px;}
.xe5{left:727.291500px;}
.xe7{left:728.445000px;}
.xcd{left:729.769500px;}
.xb5{left:731.692500px;}
.xb6{left:736.242000px;}
.x4b{left:738.795000px;}
.xc3{left:743.523000px;}
.x133{left:750.034500px;}
.xa7{left:751.078500px;}
.x80{left:752.197500px;}
.xce{left:755.068500px;}
.xb7{left:758.455500px;}
.xcf{left:759.616500px;}
.x4c{left:762.937500px;}
.x96{left:766.972500px;}
.x1f{left:768.642000px;}
.xc4{left:770.269500px;}
.xe8{left:771.286500px;}
.xfc{left:775.734000px;}
.xd5{left:780.228000px;}
.xd0{left:784.548000px;}
.x11b{left:787.560000px;}
.x104{left:796.135500px;}
.xf1{left:797.247000px;}
.xe9{left:847.392000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.568000pt;}
.v2{vertical-align:12.325333pt;}
.v4{vertical-align:13.498667pt;}
.v1{vertical-align:14.538667pt;}
.v5{vertical-align:18.026667pt;}
.v6{vertical-align:25.920000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.658400pt;}
.lse{letter-spacing:0.809200pt;}
.ls10{letter-spacing:0.814533pt;}
.ls4f{letter-spacing:0.891733pt;}
.ls9{letter-spacing:2.635446pt;}
.ls29{letter-spacing:2.646400pt;}
.ls40{letter-spacing:2.995867pt;}
.ls2f{letter-spacing:3.001200pt;}
.ls23{letter-spacing:3.253630pt;}
.ls27{letter-spacing:3.269617pt;}
.ls2e{letter-spacing:3.277067pt;}
.ls3c{letter-spacing:3.277871pt;}
.ls4a{letter-spacing:3.285618pt;}
.ls43{letter-spacing:3.291925pt;}
.ls5f{letter-spacing:3.308402pt;}
.lsc{letter-spacing:4.041200pt;}
.ls5d{letter-spacing:4.421822pt;}
.ls11{letter-spacing:4.861067pt;}
.ls16{letter-spacing:4.903733pt;}
.ls64{letter-spacing:4.908105pt;}
.ls31{letter-spacing:4.909067pt;}
.ls1e{letter-spacing:6.214400pt;}
.ls60{letter-spacing:6.275867pt;}
.ls50{letter-spacing:7.108847pt;}
.ls62{letter-spacing:7.267867pt;}
.lsf{letter-spacing:7.273200pt;}
.ls3f{letter-spacing:9.454533pt;}
.ls17{letter-spacing:9.459867pt;}
.ls37{letter-spacing:9.755733pt;}
.ls2b{letter-spacing:12.734533pt;}
.ls20{letter-spacing:12.739867pt;}
.ls57{letter-spacing:12.993441pt;}
.ls24{letter-spacing:12.993918pt;}
.ls5{letter-spacing:13.283467pt;}
.ls54{letter-spacing:14.329174pt;}
.ls53{letter-spacing:14.334508pt;}
.ls6{letter-spacing:14.545467pt;}
.lsb{letter-spacing:14.894558pt;}
.ls19{letter-spacing:15.010922pt;}
.ls0{letter-spacing:15.940267pt;}
.ls3{letter-spacing:16.152695pt;}
.ls58{letter-spacing:16.222508pt;}
.ls52{letter-spacing:16.233174pt;}
.ls30{letter-spacing:16.290923pt;}
.ls1a{letter-spacing:16.349105pt;}
.ls1{letter-spacing:16.471499pt;}
.ls7{letter-spacing:16.640014pt;}
.ls35{letter-spacing:16.814559pt;}
.ls2{letter-spacing:16.843436pt;}
.ls4{letter-spacing:17.002837pt;}
.ls56{letter-spacing:17.163651pt;}
.ls51{letter-spacing:17.221833pt;}
.ls36{letter-spacing:17.280014pt;}
.ls2a{letter-spacing:17.454560pt;}
.ls6a{letter-spacing:17.512742pt;}
.ls63{letter-spacing:17.570924pt;}
.ls2c{letter-spacing:17.629106pt;}
.ls22{letter-spacing:17.745469pt;}
.ls25{letter-spacing:17.803651pt;}
.ls34{letter-spacing:17.822508pt;}
.ls44{letter-spacing:17.861833pt;}
.ls14{letter-spacing:18.036379pt;}
.ls32{letter-spacing:18.094561pt;}
.ls33{letter-spacing:18.152742pt;}
.ls3a{letter-spacing:18.210924pt;}
.ls41{letter-spacing:18.443652pt;}
.ls69{letter-spacing:18.718508pt;}
.ls45{letter-spacing:18.967289pt;}
.ls12{letter-spacing:19.128267pt;}
.ls66{letter-spacing:19.432743pt;}
.lsa{letter-spacing:19.781835pt;}
.ls68{letter-spacing:19.840017pt;}
.ls65{letter-spacing:19.911251pt;}
.ls59{letter-spacing:19.956380pt;}
.ls3d{letter-spacing:20.189108pt;}
.ls6e{letter-spacing:20.297174pt;}
.ls6d{letter-spacing:20.302508pt;}
.ls1c{letter-spacing:20.352476pt;}
.ls5c{letter-spacing:20.421835pt;}
.ls4c{letter-spacing:20.712745pt;}
.ls49{letter-spacing:20.770926pt;}
.ls1f{letter-spacing:21.120018pt;}
.ls18{letter-spacing:21.576685pt;}
.ls26{letter-spacing:21.585473pt;}
.ls6c{letter-spacing:21.934564pt;}
.ls4b{letter-spacing:22.109109pt;}
.ls21{letter-spacing:22.632746pt;}
.ls4e{letter-spacing:22.690928pt;}
.ls61{letter-spacing:22.981837pt;}
.ls28{letter-spacing:23.389110pt;}
.ls38{letter-spacing:23.563656pt;}
.ls2d{letter-spacing:23.912747pt;}
.ls6b{letter-spacing:24.029111pt;}
.ls13{letter-spacing:24.101616pt;}
.ls67{letter-spacing:24.145475pt;}
.ls1d{letter-spacing:26.167469pt;}
.ls5a{letter-spacing:26.467841pt;}
.ls5b{letter-spacing:26.530931pt;}
.ls1b{letter-spacing:27.162139pt;}
.ls15{letter-spacing:27.621217pt;}
.ls46{letter-spacing:28.392751pt;}
.lsd{letter-spacing:29.090933pt;}
.ls3e{letter-spacing:29.672752pt;}
.ls42{letter-spacing:30.021843pt;}
.ls5e{letter-spacing:32.000027pt;}
.ls6f{letter-spacing:32.523663pt;}
.ls3b{letter-spacing:32.640027pt;}
.ls39{letter-spacing:34.560029pt;}
.ls4d{letter-spacing:34.850938pt;}
.ls48{letter-spacing:34.967302pt;}
.ls47{letter-spacing:47.360039pt;}
.ws35{word-spacing:-32.581845pt;}
.ws24{word-spacing:-27.112750pt;}
.ws22{word-spacing:-25.018203pt;}
.ws113{word-spacing:-19.128267pt;}
.ws76{word-spacing:-15.940267pt;}
.ws21{word-spacing:-14.545467pt;}
.ws1{word-spacing:-13.283467pt;}
.ws1b{word-spacing:-10.626800pt;}
.wsbe{word-spacing:-3.825664pt;}
.ws20{word-spacing:-3.490912pt;}
.wsd7{word-spacing:-3.374548pt;}
.ws56{word-spacing:-3.025457pt;}
.ws3d{word-spacing:-2.850911pt;}
.ws8d{word-spacing:-2.792730pt;}
.wsd8{word-spacing:-2.676366pt;}
.ws64{word-spacing:-2.443638pt;}
.ws8a{word-spacing:-2.385457pt;}
.ws89{word-spacing:-2.327275pt;}
.ws4c{word-spacing:-2.152729pt;}
.ws46{word-spacing:-2.094547pt;}
.wsd3{word-spacing:-2.036365pt;}
.ws57{word-spacing:-1.978183pt;}
.ws5c{word-spacing:-1.920002pt;}
.ws3e{word-spacing:-1.861820pt;}
.wsdb{word-spacing:-1.849071pt;}
.wse1{word-spacing:-1.745456pt;}
.ws11{word-spacing:-1.700284pt;}
.ws62{word-spacing:-1.629092pt;}
.ws1f{word-spacing:-1.601627pt;}
.ws94{word-spacing:-1.582786pt;}
.wse7{word-spacing:-1.581676pt;}
.wsc5{word-spacing:-1.581446pt;}
.ws98{word-spacing:-1.576955pt;}
.ws10c{word-spacing:-1.574133pt;}
.wsd5{word-spacing:-1.573697pt;}
.ws7e{word-spacing:-1.572198pt;}
.ws10a{word-spacing:-1.571220pt;}
.wse4{word-spacing:-1.571189pt;}
.wsdc{word-spacing:-1.570910pt;}
.ws10f{word-spacing:-1.567803pt;}
.ws80{word-spacing:-1.562826pt;}
.ws101{word-spacing:-1.561458pt;}
.wsaa{word-spacing:-1.560030pt;}
.wsab{word-spacing:-1.559412pt;}
.ws100{word-spacing:-1.559006pt;}
.ws84{word-spacing:-1.558651pt;}
.wsac{word-spacing:-1.558451pt;}
.ws9d{word-spacing:-1.558057pt;}
.ws110{word-spacing:-1.556993pt;}
.wsc1{word-spacing:-1.556686pt;}
.wscc{word-spacing:-1.556667pt;}
.wscb{word-spacing:-1.556454pt;}
.ws108{word-spacing:-1.556149pt;}
.wsc3{word-spacing:-1.556026pt;}
.wsbd{word-spacing:-1.555679pt;}
.wscd{word-spacing:-1.555605pt;}
.wsd6{word-spacing:-1.555441pt;}
.wsb6{word-spacing:-1.555257pt;}
.wsc6{word-spacing:-1.555131pt;}
.wsde{word-spacing:-1.555015pt;}
.wsb7{word-spacing:-1.554745pt;}
.ws4e{word-spacing:-1.554533pt;}
.ws85{word-spacing:-1.554482pt;}
.wsc2{word-spacing:-1.554057pt;}
.wsa5{word-spacing:-1.553643pt;}
.wsd9{word-spacing:-1.553631pt;}
.ws7c{word-spacing:-1.553526pt;}
.ws87{word-spacing:-1.553523pt;}
.ws4d{word-spacing:-1.553326pt;}
.wsfe{word-spacing:-1.553095pt;}
.ws7b{word-spacing:-1.553041pt;}
.ws83{word-spacing:-1.552718pt;}
.ws102{word-spacing:-1.552636pt;}
.wsb2{word-spacing:-1.552585pt;}
.ws90{word-spacing:-1.552564pt;}
.wsec{word-spacing:-1.552185pt;}
.wsbf{word-spacing:-1.552082pt;}
.ws10d{word-spacing:-1.551659pt;}
.ws7a{word-spacing:-1.551657pt;}
.wsc4{word-spacing:-1.551121pt;}
.ws88{word-spacing:-1.550817pt;}
.wsb1{word-spacing:-1.549797pt;}
.wsad{word-spacing:-1.549739pt;}
.wsea{word-spacing:-1.549149pt;}
.wsb4{word-spacing:-1.547708pt;}
.wsef{word-spacing:-1.546547pt;}
.ws10e{word-spacing:-1.542013pt;}
.wsbb{word-spacing:-1.540634pt;}
.wsed{word-spacing:-1.540369pt;}
.wse2{word-spacing:-1.540041pt;}
.ws97{word-spacing:-1.536220pt;}
.ws10b{word-spacing:-1.534765pt;}
.ws106{word-spacing:-1.533797pt;}
.wsca{word-spacing:-1.531355pt;}
.wsf0{word-spacing:-1.531061pt;}
.wsb3{word-spacing:-1.530810pt;}
.wsc8{word-spacing:-1.529491pt;}
.wsc9{word-spacing:-1.528478pt;}
.ws105{word-spacing:-1.527063pt;}
.wsf2{word-spacing:-1.527002pt;}
.wse6{word-spacing:-1.526042pt;}
.wse9{word-spacing:-1.525951pt;}
.wsf1{word-spacing:-1.524302pt;}
.wseb{word-spacing:-1.523607pt;}
.ws107{word-spacing:-1.512729pt;}
.ws48{word-spacing:-1.454547pt;}
.ws49{word-spacing:-1.396365pt;}
.ws6f{word-spacing:-1.280001pt;}
.ws6b{word-spacing:-1.163637pt;}
.wsce{word-spacing:-1.105455pt;}
.ws7f{word-spacing:-0.989092pt;}
.ws37{word-spacing:-0.814546pt;}
.wsf8{word-spacing:-0.756364pt;}
.ws71{word-spacing:-0.698182pt;}
.wsb9{word-spacing:-0.640001pt;}
.wsba{word-spacing:-0.581819pt;}
.ws17{word-spacing:-0.531339pt;}
.ws36{word-spacing:-0.523637pt;}
.ws58{word-spacing:-0.349091pt;}
.ws3f{word-spacing:-0.290909pt;}
.wsfd{word-spacing:-0.232727pt;}
.wsdd{word-spacing:-0.213892pt;}
.ws69{word-spacing:-0.058182pt;}
.ws1a{word-spacing:-0.042507pt;}
.ws74{word-spacing:-0.003686pt;}
.ws0{word-spacing:0.000000pt;}
.wsa4{word-spacing:0.001647pt;}
.ws86{word-spacing:0.058182pt;}
.ws2d{word-spacing:0.116364pt;}
.ws4f{word-spacing:0.174546pt;}
.wsfa{word-spacing:0.232727pt;}
.ws1d{word-spacing:0.349091pt;}
.wsee{word-spacing:0.407273pt;}
.ws2b{word-spacing:0.465455pt;}
.wsd2{word-spacing:0.484318pt;}
.ws2e{word-spacing:0.756364pt;}
.ws2f{word-spacing:0.814546pt;}
.ws104{word-spacing:0.872728pt;}
.ws67{word-spacing:0.930910pt;}
.ws68{word-spacing:0.989092pt;}
.wsa7{word-spacing:1.047274pt;}
.ws31{word-spacing:1.105455pt;}
.ws5e{word-spacing:1.147696pt;}
.ws60{word-spacing:1.163637pt;}
.wse8{word-spacing:1.221819pt;}
.ws29{word-spacing:1.280001pt;}
.ws39{word-spacing:1.338183pt;}
.wscf{word-spacing:1.396365pt;}
.wsf7{word-spacing:1.454547pt;}
.ws77{word-spacing:1.512729pt;}
.ws79{word-spacing:1.570910pt;}
.ws10{word-spacing:1.594016pt;}
.wsd0{word-spacing:1.687274pt;}
.ws54{word-spacing:1.745456pt;}
.ws34{word-spacing:1.803638pt;}
.ws43{word-spacing:1.920002pt;}
.ws32{word-spacing:1.978183pt;}
.ws33{word-spacing:2.036365pt;}
.ws19{word-spacing:2.094547pt;}
.ws55{word-spacing:2.152729pt;}
.ws30{word-spacing:2.210911pt;}
.wse0{word-spacing:2.269093pt;}
.ws45{word-spacing:2.327275pt;}
.ws52{word-spacing:2.371905pt;}
.wsaf{word-spacing:2.385457pt;}
.wsc{word-spacing:2.391024pt;}
.wsb0{word-spacing:2.443638pt;}
.wsfb{word-spacing:2.501820pt;}
.wsda{word-spacing:2.560002pt;}
.ws3a{word-spacing:2.618184pt;}
.ws5d{word-spacing:2.676366pt;}
.ws6e{word-spacing:2.734548pt;}
.ws92{word-spacing:2.792730pt;}
.wse3{word-spacing:2.850911pt;}
.ws5{word-spacing:2.869229pt;}
.ws81{word-spacing:2.909093pt;}
.ws65{word-spacing:2.967275pt;}
.wsa{word-spacing:2.975497pt;}
.ws103{word-spacing:3.025457pt;}
.wsfc{word-spacing:3.083639pt;}
.ws66{word-spacing:3.141821pt;}
.ws13{word-spacing:3.188032pt;}
.wsb{word-spacing:3.241166pt;}
.ws51{word-spacing:3.258185pt;}
.ws38{word-spacing:3.316366pt;}
.ws91{word-spacing:3.432730pt;}
.ws1e{word-spacing:3.490912pt;}
.ws7{word-spacing:3.559969pt;}
.ws99{word-spacing:3.607276pt;}
.ws9a{word-spacing:3.665458pt;}
.ws16{word-spacing:3.719371pt;}
.ws109{word-spacing:3.723639pt;}
.ws44{word-spacing:3.898185pt;}
.wsb8{word-spacing:3.956367pt;}
.wsf{word-spacing:3.985040pt;}
.ws12{word-spacing:4.038174pt;}
.wsa3{word-spacing:4.072731pt;}
.ws7d{word-spacing:4.144469pt;}
.ws59{word-spacing:4.247276pt;}
.ws8{word-spacing:4.303843pt;}
.ws8e{word-spacing:4.363640pt;}
.ws9b{word-spacing:4.421822pt;}
.ws42{word-spacing:4.480004pt;}
.ws53{word-spacing:4.590784pt;}
.wsd{word-spacing:4.782048pt;}
.ws111{word-spacing:4.829095pt;}
.ws2c{word-spacing:5.049862pt;}
.ws5f{word-spacing:5.178186pt;}
.ws78{word-spacing:5.198985pt;}
.wse{word-spacing:5.207119pt;}
.ws1c{word-spacing:5.236368pt;}
.ws27{word-spacing:5.270893pt;}
.ws82{word-spacing:5.469095pt;}
.ws116{word-spacing:5.527277pt;}
.ws114{word-spacing:5.585459pt;}
.wsa9{word-spacing:5.818187pt;}
.ws28{word-spacing:5.844725pt;}
.ws2a{word-spacing:5.876369pt;}
.ws15{word-spacing:5.950993pt;}
.ws61{word-spacing:6.109096pt;}
.ws9{word-spacing:6.269796pt;}
.wsa2{word-spacing:6.341823pt;}
.ws41{word-spacing:6.400005pt;}
.ws40{word-spacing:6.458187pt;}
.ws23{word-spacing:6.516369pt;}
.wsb5{word-spacing:6.632733pt;}
.ws3c{word-spacing:6.690915pt;}
.ws72{word-spacing:6.749097pt;}
.wsf4{word-spacing:6.981824pt;}
.ws63{word-spacing:7.039202pt;}
.wsf3{word-spacing:7.040006pt;}
.ws9e{word-spacing:7.272733pt;}
.ws9c{word-spacing:7.330915pt;}
.ws6c{word-spacing:7.505461pt;}
.ws6d{word-spacing:7.563643pt;}
.ws3b{word-spacing:7.621825pt;}
.wsa6{word-spacing:7.680006pt;}
.ws50{word-spacing:7.854552pt;}
.wsa8{word-spacing:7.912734pt;}
.ws4a{word-spacing:8.029098pt;}
.ws5b{word-spacing:8.033872pt;}
.ws4b{word-spacing:8.087279pt;}
.wsff{word-spacing:8.145461pt;}
.ws93{word-spacing:8.203643pt;}
.ws14{word-spacing:8.235749pt;}
.ws95{word-spacing:8.261825pt;}
.wsd4{word-spacing:8.378189pt;}
.ws6a{word-spacing:8.436371pt;}
.ws47{word-spacing:8.492950pt;}
.wsc7{word-spacing:8.494553pt;}
.ws5a{word-spacing:8.669098pt;}
.ws6{word-spacing:8.926490pt;}
.ws9f{word-spacing:9.134553pt;}
.ws4{word-spacing:9.192159pt;}
.wsa0{word-spacing:9.600008pt;}
.wsc0{word-spacing:9.774554pt;}
.ws70{word-spacing:9.832735pt;}
.ws8f{word-spacing:10.007281pt;}
.ws96{word-spacing:10.298190pt;}
.ws75{word-spacing:10.393054pt;}
.wsd1{word-spacing:10.589100pt;}
.wsdf{word-spacing:11.112737pt;}
.wse5{word-spacing:11.345464pt;}
.ws8c{word-spacing:11.349470pt;}
.wsae{word-spacing:11.752737pt;}
.wsf9{word-spacing:12.043646pt;}
.ws2{word-spacing:13.230333pt;}
.ws73{word-spacing:14.487285pt;}
.ws26{word-spacing:14.545467pt;}
.ws8b{word-spacing:15.940267pt;}
.ws3{word-spacing:16.418365pt;}
.ws25{word-spacing:17.454560pt;}
.wsf6{word-spacing:17.512742pt;}
.ws18{word-spacing:19.659531pt;}
.ws115{word-spacing:20.072744pt;}
.wsf5{word-spacing:25.425476pt;}
.wsbc{word-spacing:26.181840pt;}
.ws112{word-spacing:30.487298pt;}
.wsa1{word-spacing:60.858233pt;}
._30{margin-left:-31.127299pt;}
._31{margin-left:-29.090933pt;}
._3f{margin-left:-18.280011pt;}
._47{margin-left:-17.307119pt;}
._32{margin-left:-14.545467pt;}
._48{margin-left:-8.922114pt;}
._43{margin-left:-7.998420pt;}
._26{margin-left:-6.897059pt;}
._19{margin-left:-5.310566pt;}
._1b{margin-left:-4.363640pt;}
._12{margin-left:-3.453701pt;}
._3{margin-left:-2.400995pt;}
._4{margin-left:-1.147699pt;}
._3b{width:1.167127pt;}
._8{width:2.360970pt;}
._3a{width:3.437615pt;}
._2{width:4.674205pt;}
._3c{width:5.656612pt;}
._4b{width:7.110110pt;}
._4c{width:8.727280pt;}
._4e{width:10.763645pt;}
._37{width:12.524640pt;}
._f{width:13.474756pt;}
._38{width:14.545467pt;}
._6{width:15.950131pt;}
._11{width:17.238594pt;}
._13{width:18.467365pt;}
._1{width:19.765931pt;}
._a{width:21.412316pt;}
._44{width:22.574564pt;}
._c{width:23.538303pt;}
._16{width:24.636283pt;}
._b{width:26.449391pt;}
._40{width:27.985478pt;}
._7{width:28.947986pt;}
._d{width:30.286304pt;}
._e{width:32.039722pt;}
._41{width:33.280028pt;}
._10{width:34.218210pt;}
._9{width:35.387155pt;}
._34{width:36.765369pt;}
._3e{width:37.920566pt;}
._35{width:38.980628pt;}
._4d{width:39.912761pt;}
._42{width:40.843670pt;}
._45{width:42.324523pt;}
._49{width:43.927309pt;}
._46{width:48.167247pt;}
._33{width:49.454587pt;}
._4a{width:51.008391pt;}
._3d{width:51.956407pt;}
._39{width:53.876409pt;}
._14{width:58.181867pt;}
._36{width:79.260255pt;}
._27{width:121.263807pt;}
._22{width:270.108578pt;}
._20{width:282.232061pt;}
._0{width:487.217526pt;}
._24{width:686.991197pt;}
._18{width:757.654635pt;}
._2a{width:875.987832pt;}
._2c{width:887.899576pt;}
._1e{width:1013.036208pt;}
._21{width:1123.028516pt;}
._29{width:1146.433164pt;}
._5{width:1179.412438pt;}
._2f{width:1184.027570pt;}
._28{width:1211.887809pt;}
._25{width:1286.532974pt;}
._1f{width:1291.114750pt;}
._23{width:1292.960040pt;}
._1d{width:1351.450169pt;}
._1c{width:1390.331594pt;}
._2d{width:1437.568207pt;}
._1a{width:1567.128579pt;}
._15{width:1644.626825pt;}
._2b{width:1712.726192pt;}
._17{width:1828.673777pt;}
._2e{width:2111.416688pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:23.209333pt;}
.y2b{bottom:33.437333pt;}
.y29{bottom:35.829333pt;}
.y2a{bottom:37.604000pt;}
.y28{bottom:51.105333pt;}
.y27{bottom:63.724000pt;}
.y26{bottom:79.000000pt;}
.y150{bottom:115.745333pt;}
.y25{bottom:118.850667pt;}
.y14f{bottom:118.924000pt;}
.y7d{bottom:126.049333pt;}
.y101{bottom:133.644000pt;}
.y14e{bottom:133.812000pt;}
.y4c{bottom:136.916000pt;}
.yb1{bottom:136.917333pt;}
.y177{bottom:137.618667pt;}
.y7c{bottom:144.116000pt;}
.yd8{bottom:150.560000pt;}
.y100{bottom:151.709333pt;}
.yff{bottom:151.876000pt;}
.y14d{bottom:151.877333pt;}
.yfe{bottom:154.981333pt;}
.yb0{bottom:154.982667pt;}
.y4b{bottom:155.013333pt;}
.y24{bottom:155.358667pt;}
.y176{bottom:155.685333pt;}
.y8a{bottom:168.132000pt;}
.y14c{bottom:169.776000pt;}
.y4a{bottom:170.004000pt;}
.y14b{bottom:173.048000pt;}
.y49{bottom:173.109333pt;}
.y23{bottom:173.424000pt;}
.yaf{bottom:174.865333pt;}
.y7b{bottom:178.121333pt;}
.yd7{bottom:182.268000pt;}
.y128{bottom:183.633333pt;}
.yfd{bottom:186.676000pt;}
.y14a{bottom:188.008000pt;}
.y149{bottom:191.113333pt;}
.y48{bottom:191.205333pt;}
.yae{bottom:192.930667pt;}
.y175{bottom:193.225333pt;}
.y7a{bottom:196.186667pt;}
.yd6{bottom:197.061333pt;}
.y127{bottom:198.426667pt;}
.yd5{bottom:200.333333pt;}
.y126{bottom:201.698667pt;}
.y89{bottom:203.333333pt;}
.y47{bottom:205.998667pt;}
.y46{bottom:209.270667pt;}
.y22{bottom:209.930667pt;}
.yad{bottom:210.996000pt;}
.y174{bottom:211.290667pt;}
.y79{bottom:214.252000pt;}
.yfc{bottom:215.098667pt;}
.yfb{bottom:218.370667pt;}
.y148{bottom:223.454667pt;}
.y45{bottom:227.366667pt;}
.yac{bottom:229.061333pt;}
.y125{bottom:230.350667pt;}
.yd4{bottom:232.041333pt;}
.y78{bottom:232.318667pt;}
.yfa{bottom:233.164000pt;}
.yf9{bottom:233.330667pt;}
.y88{bottom:234.549333pt;}
.yf8{bottom:236.436000pt;}
.y147{bottom:241.520000pt;}
.y6f{bottom:242.148000pt;}
.y44{bottom:242.326667pt;}
.y173{bottom:244.140000pt;}
.y43{bottom:245.432000pt;}
.y21{bottom:246.918667pt;}
.yab{bottom:247.126667pt;}
.y124{bottom:248.416000pt;}
.yd3{bottom:250.108000pt;}
.y77{bottom:250.384000pt;}
.y9f{bottom:254.368000pt;}
.y6e{bottom:260.213333pt;}
.y172{bottom:262.205333pt;}
.y42{bottom:263.528000pt;}
.yaa{bottom:265.193333pt;}
.yf7{bottom:268.130667pt;}
.yd2{bottom:268.173333pt;}
.y76{bottom:268.449333pt;}
.y87{bottom:270.048000pt;}
.y9e{bottom:272.434667pt;}
.y146{bottom:273.861333pt;}
.y123{bottom:277.066667pt;}
.y6d{bottom:278.278667pt;}
.y171{bottom:280.270667pt;}
.ya9{bottom:283.258667pt;}
.y86{bottom:288.114667pt;}
.y145{bottom:288.654667pt;}
.y9d{bottom:290.500000pt;}
.y122{bottom:291.860000pt;}
.y144{bottom:291.926667pt;}
.y121{bottom:295.132000pt;}
.y41{bottom:296.190667pt;}
.y6c{bottom:296.344000pt;}
.y75{bottom:298.469333pt;}
.yf6{bottom:299.825333pt;}
.yd1{bottom:299.881333pt;}
.ya8{bottom:301.324000pt;}
.y20{bottom:305.285333pt;}
.y85{bottom:306.478667pt;}
.y9c{bottom:308.565333pt;}
.y170{bottom:313.118667pt;}
.y40{bottom:314.256000pt;}
.y6b{bottom:314.410667pt;}
.yf5{bottom:314.618667pt;}
.y74{bottom:316.536000pt;}
.yf4{bottom:317.890667pt;}
.ya7{bottom:319.389333pt;}
.y120{bottom:323.784000pt;}
.y143{bottom:324.268000pt;}
.y84{bottom:324.544000pt;}
.y1f{bottom:324.809333pt;}
.y9b{bottom:326.630667pt;}
.y16f{bottom:327.912000pt;}
.y16e{bottom:328.080000pt;}
.y16d{bottom:331.185333pt;}
.yd0{bottom:331.589333pt;}
.y6a{bottom:332.476000pt;}
.yf3{bottom:332.684000pt;}
.yf2{bottom:332.852000pt;}
.y73{bottom:334.601333pt;}
.yf1{bottom:335.957333pt;}
.ya6{bottom:337.454667pt;}
.y1e{bottom:340.750667pt;}
.y142{bottom:342.333333pt;}
.y83{bottom:342.908000pt;}
.y9a{bottom:344.696000pt;}
.y3f{bottom:346.918667pt;}
.y69{bottom:350.541333pt;}
.y11f{bottom:352.434667pt;}
.y72{bottom:352.666667pt;}
.ya5{bottom:355.521333pt;}
.y1d{bottom:356.690667pt;}
.y82{bottom:360.974667pt;}
.y99{bottom:362.762667pt;}
.ycf{bottom:363.298667pt;}
.y16c{bottom:364.033333pt;}
.y11e{bottom:367.228000pt;}
.yf0{bottom:367.650667pt;}
.y68{bottom:368.606667pt;}
.y11d{bottom:370.501333pt;}
.ya4{bottom:373.586667pt;}
.y1c{bottom:374.578667pt;}
.y141{bottom:374.673333pt;}
.y81{bottom:379.338667pt;}
.y3e{bottom:379.580000pt;}
.y98{bottom:380.828000pt;}
.yce{bottom:381.364000pt;}
.y11c{bottom:385.293333pt;}
.y67{bottom:386.672000pt;}
.y11b{bottom:388.566667pt;}
.y1b{bottom:390.518667pt;}
.ya3{bottom:391.652000pt;}
.y140{bottom:392.740000pt;}
.ycd{bottom:396.157333pt;}
.y16b{bottom:396.881333pt;}
.y80{bottom:397.702667pt;}
.y97{bottom:398.893333pt;}
.yef{bottom:399.345333pt;}
.ycc{bottom:399.429333pt;}
.y66{bottom:404.738667pt;}
.y1a{bottom:406.458667pt;}
.y13f{bottom:407.700000pt;}
.y13e{bottom:410.805333pt;}
.y3d{bottom:412.242667pt;}
.ya0{bottom:413.948000pt;}
.yee{bottom:414.306667pt;}
.y16a{bottom:414.948000pt;}
.y11a{bottom:417.217333pt;}
.yed{bottom:417.412000pt;}
.ycb{bottom:417.494667pt;}
.y65{bottom:422.804000pt;}
.y19{bottom:424.346667pt;}
.y13d{bottom:425.598667pt;}
.ya2{bottom:428.380000pt;}
.y13c{bottom:428.870667pt;}
.y7f{bottom:431.416000pt;}
.y96{bottom:432.013333pt;}
.y71{bottom:437.858667pt;}
.y18{bottom:440.288000pt;}
.y169{bottom:444.524000pt;}
.y168{bottom:444.690667pt;}
.y3c{bottom:444.904000pt;}
.y119{bottom:445.869333pt;}
.y167{bottom:447.796000pt;}
.yec{bottom:449.105333pt;}
.yca{bottom:449.204000pt;}
.ya1{bottom:452.289333pt;}
.y7e{bottom:455.326667pt;}
.y64{bottom:455.924000pt;}
.y17{bottom:456.228000pt;}
.y13b{bottom:461.212000pt;}
.y118{bottom:463.934667pt;}
.y16{bottom:472.168000pt;}
.y3b{bottom:477.566667pt;}
.yeb{bottom:477.820000pt;}
.y117{bottom:478.728000pt;}
.y13a{bottom:479.277333pt;}
.y166{bottom:480.645333pt;}
.yc9{bottom:480.912000pt;}
.y116{bottom:482.000000pt;}
.y70{bottom:484.457333pt;}
.y15{bottom:488.108000pt;}
.yc8{bottom:495.872000pt;}
.y165{bottom:498.710667pt;}
.yc7{bottom:498.977333pt;}
.y63{bottom:502.522667pt;}
.y14{bottom:504.048000pt;}
.y3a{bottom:510.229333pt;}
.y115{bottom:510.650667pt;}
.y139{bottom:511.618667pt;}
.y62{bottom:518.661333pt;}
.y13{bottom:519.988000pt;}
.yea{bottom:520.170667pt;}
.y138{bottom:526.578667pt;}
.yc6{bottom:527.698667pt;}
.y114{bottom:528.717333pt;}
.y137{bottom:529.684000pt;}
.y164{bottom:531.558667pt;}
.y12{bottom:535.929333pt;}
.y61{bottom:536.726667pt;}
.ye9{bottom:538.236000pt;}
.yc5{bottom:541.757333pt;}
.y39{bottom:542.890667pt;}
.y113{bottom:543.509333pt;}
.yc4{bottom:546.296000pt;}
.y112{bottom:546.782667pt;}
.y163{bottom:549.624000pt;}
.y11{bottom:551.869333pt;}
.y60{bottom:554.792000pt;}
.ye8{bottom:556.301333pt;}
.y136{bottom:562.024000pt;}
.y10{bottom:567.809333pt;}
.y5f{bottom:572.858667pt;}
.ye7{bottom:574.366667pt;}
.y111{bottom:574.666667pt;}
.y38{bottom:575.553333pt;}
.y135{bottom:576.817333pt;}
.y134{bottom:580.090667pt;}
.y162{bottom:582.473333pt;}
.yf{bottom:583.749333pt;}
.yc3{bottom:588.666667pt;}
.y5e{bottom:590.924000pt;}
.y110{bottom:593.262667pt;}
.y37{bottom:593.618667pt;}
.y161{bottom:597.266667pt;}
.y160{bottom:600.538667pt;}
.ye6{bottom:606.061333pt;}
.ye{bottom:606.220000pt;}
.yc2{bottom:606.732000pt;}
.y5d{bottom:608.989333pt;}
.y133{bottom:609.125333pt;}
.ye5{bottom:624.126667pt;}
.y36{bottom:626.280000pt;}
.y5c{bottom:627.054667pt;}
.y10f{bottom:632.457333pt;}
.y15f{bottom:633.386667pt;}
.yc1{bottom:638.440000pt;}
.y95{bottom:639.957333pt;}
.y5b{bottom:645.120000pt;}
.y15e{bottom:651.453333pt;}
.y132{bottom:652.433333pt;}
.yd{bottom:653.272000pt;}
.yc0{bottom:653.401333pt;}
.ye4{bottom:655.821333pt;}
.ybf{bottom:656.506667pt;}
.y94{bottom:658.022667pt;}
.y35{bottom:658.942667pt;}
.y10e{bottom:661.109333pt;}
.y5a{bottom:663.186667pt;}
.y131{bottom:667.226667pt;}
.y130{bottom:667.393333pt;}
.y15d{bottom:669.518667pt;}
.y12f{bottom:670.498667pt;}
.ye3{bottom:673.886667pt;}
.y10d{bottom:679.174667pt;}
.y15c{bottom:684.312000pt;}
.y15b{bottom:687.584000pt;}
.ybe{bottom:688.214667pt;}
.y12e{bottom:688.564000pt;}
.y34{bottom:691.604000pt;}
.y93{bottom:692.028000pt;}
.y10c{bottom:693.968000pt;}
.y59{bottom:696.306667pt;}
.y10b{bottom:697.240000pt;}
.yc{bottom:700.137333pt;}
.y15a{bottom:702.544000pt;}
.ybd{bottom:703.174667pt;}
.ye2{bottom:705.581333pt;}
.y159{bottom:705.649333pt;}
.ybc{bottom:706.280000pt;}
.y92{bottom:710.093333pt;}
.yb{bottom:718.202667pt;}
.y58{bottom:720.216000pt;}
.y12d{bottom:720.905333pt;}
.ye1{bottom:723.648000pt;}
.y33{bottom:724.266667pt;}
.y10a{bottom:725.892000pt;}
.ya{bottom:736.268000pt;}
.y91{bottom:737.009333pt;}
.y158{bottom:738.498667pt;}
.y12c{bottom:738.970667pt;}
.y90{bottom:740.114667pt;}
.ybb{bottom:742.396000pt;}
.y157{bottom:753.290667pt;}
.y156{bottom:753.458667pt;}
.y9{bottom:754.334667pt;}
.y109{bottom:754.542667pt;}
.ye0{bottom:755.341333pt;}
.y155{bottom:756.564000pt;}
.y32{bottom:756.929333pt;}
.y57{bottom:767.036000pt;}
.y12b{bottom:768.006667pt;}
.y8f{bottom:770.134667pt;}
.yba{bottom:771.117333pt;}
.y8{bottom:772.400000pt;}
.y108{bottom:772.608000pt;}
.ydf{bottom:773.408000pt;}
.y154{bottom:781.312000pt;}
.y153{bottom:781.536000pt;}
.y12a{bottom:782.288000pt;}
.yb9{bottom:785.398667pt;}
.y152{bottom:785.850667pt;}
.y129{bottom:786.604000pt;}
.y31{bottom:789.590667pt;}
.yb8{bottom:789.713333pt;}
.y7{bottom:790.465333pt;}
.y8e{bottom:800.156000pt;}
.y56{bottom:801.041333pt;}
.y107{bottom:801.260000pt;}
.yde{bottom:805.101333pt;}
.y6{bottom:808.530667pt;}
.y106{bottom:819.325333pt;}
.y30{bottom:822.253333pt;}
.yb3{bottom:829.910667pt;}
.y8d{bottom:830.177333pt;}
.yb7{bottom:832.084000pt;}
.y55{bottom:835.048000pt;}
.ydd{bottom:836.796000pt;}
.y105{bottom:837.390667pt;}
.y17a{bottom:839.032000pt;}
.yb2{bottom:847.977333pt;}
.yb6{bottom:850.150667pt;}
.y5{bottom:852.137333pt;}
.y104{bottom:852.184000pt;}
.ydc{bottom:854.862667pt;}
.y2f{bottom:854.914667pt;}
.y103{bottom:855.456000pt;}
.y179{bottom:857.098667pt;}
.y8c{bottom:860.197333pt;}
.y52{bottom:862.769333pt;}
.y51{bottom:862.937333pt;}
.y50{bottom:866.042667pt;}
.yb5{bottom:868.216000pt;}
.y54{bottom:869.053333pt;}
.y4{bottom:870.734667pt;}
.ydb{bottom:872.928000pt;}
.y102{bottom:873.522667pt;}
.y178{bottom:883.846667pt;}
.y4f{bottom:884.108000pt;}
.yb4{bottom:886.281333pt;}
.y53{bottom:887.118667pt;}
.y2e{bottom:887.577333pt;}
.y3{bottom:889.330667pt;}
.y8b{bottom:890.218667pt;}
.yda{bottom:901.642667pt;}
.y4e{bottom:902.173333pt;}
.y2{bottom:907.928000pt;}
.yd9{bottom:915.924000pt;}
.y151{bottom:916.966667pt;}
.y4d{bottom:917.133333pt;}
.y2d{bottom:920.238667pt;}
.y1{bottom:992.060000pt;}
.hf{height:21.933807pt;}
.h1{height:29.244954pt;}
.he{height:29.499997pt;}
.hc{height:36.290431pt;}
.h6{height:36.449833pt;}
.hb{height:36.556100pt;}
.ha{height:36.822767pt;}
.h8{height:36.874903pt;}
.h7{height:37.140573pt;}
.h10{height:38.812954pt;}
.h1b{height:39.738215pt;}
.h1c{height:40.026215pt;}
.h12{height:40.029124pt;}
.h1d{height:40.031548pt;}
.h15{height:40.317124pt;}
.h11{height:40.322458pt;}
.h5{height:40.378215pt;}
.h1a{height:41.076882pt;}
.h2{height:44.250180pt;}
.h3{height:45.012847pt;}
.h20{height:45.018180pt;}
.h9{height:48.881434pt;}
.h1f{height:52.159548pt;}
.h23{height:52.447548pt;}
.h16{height:52.450458pt;}
.h22{height:52.452882pt;}
.h13{height:52.743791pt;}
.h25{height:52.826215pt;}
.h29{height:52.831548pt;}
.hd{height:53.100068pt;}
.h2c{height:53.114215pt;}
.h14{height:53.117124pt;}
.h26{height:53.119548pt;}
.h19{height:53.122458pt;}
.h28{height:53.231548pt;}
.h1e{height:53.236882pt;}
.h18{height:53.410458pt;}
.h2a{height:53.466215pt;}
.h2e{height:53.471549pt;}
.h17{height:53.527791pt;}
.h4{height:58.788847pt;}
.h27{height:61.508847pt;}
.h21{height:62.276847pt;}
.h24{height:62.404847pt;}
.h2d{height:63.172847pt;}
.h2b{height:65.658215pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.000000pt;}
.x34{left:123.065333pt;}
.x134{left:134.545333pt;}
.x30{left:139.128000pt;}
.xb{left:141.818667pt;}
.xc{left:144.218667pt;}
.x6{left:146.566667pt;}
.xd{left:148.378667pt;}
.xe{left:153.100000pt;}
.x35{left:156.364000pt;}
.x11e{left:157.590667pt;}
.x126{left:161.208000pt;}
.x81{left:163.636000pt;}
.x56{left:166.882667pt;}
.xa{left:169.149333pt;}
.x97{left:170.909333pt;}
.x57{left:172.698667pt;}
.xd8{left:174.138667pt;}
.x15{left:175.273333pt;}
.xd6{left:177.366667pt;}
.xd9{left:181.410667pt;}
.x98{left:184.640000pt;}
.x18{left:185.774667pt;}
.x10{left:189.818667pt;}
.x37{left:191.369333pt;}
.xaa{left:192.509333pt;}
.xb8{left:194.886667pt;}
.xc5{left:196.282667pt;}
.xd7{left:199.185333pt;}
.x67{left:200.489333pt;}
.xd1{left:202.926667pt;}
.x70{left:204.492000pt;}
.x47{left:207.200000pt;}
.xa4{left:208.576000pt;}
.x83{left:210.428000pt;}
.x8a{left:211.737333pt;}
.xe6{left:214.908000pt;}
.x39{left:216.072000pt;}
.x5b{left:217.224000pt;}
.x8e{left:218.592000pt;}
.xf2{left:220.202667pt;}
.x91{left:222.049333pt;}
.xdc{left:223.810667pt;}
.x120{left:225.270667pt;}
.x8c{left:226.588000pt;}
.x5c{left:231.769333pt;}
.x99{left:233.505333pt;}
.xb9{left:234.821333pt;}
.x76{left:236.242667pt;}
.x8f{left:238.600000pt;}
.x7a{left:240.102667pt;}
.x3a{left:242.354667pt;}
.x44{left:244.406667pt;}
.x5d{left:245.981333pt;}
.x3e{left:247.373333pt;}
.x92{left:248.710667pt;}
.xae{left:250.184000pt;}
.x46{left:251.213333pt;}
.x58{left:252.785333pt;}
.x9a{left:253.694667pt;}
.x11{left:254.806667pt;}
.x16{left:256.984000pt;}
.x31{left:257.877333pt;}
.x19{left:258.893333pt;}
.xb0{left:260.273333pt;}
.x54{left:262.852000pt;}
.x2c{left:264.638667pt;}
.xba{left:265.832000pt;}
.xc6{left:267.874667pt;}
.x32{left:271.630667pt;}
.x45{left:273.496000pt;}
.x11c{left:275.509333pt;}
.x51{left:276.866667pt;}
.x105{left:277.898667pt;}
.x12d{left:279.192000pt;}
.x10e{left:280.938667pt;}
.x7b{left:282.508000pt;}
.x2{left:284.226667pt;}
.x11a{left:285.962667pt;}
.x48{left:287.997333pt;}
.x12b{left:289.301333pt;}
.x3{left:292.197333pt;}
.x52{left:293.629333pt;}
.x33{left:295.862667pt;}
.x3f{left:297.468000pt;}
.x8b{left:298.953333pt;}
.x4e{left:300.313333pt;}
.xa0{left:301.848000pt;}
.x68{left:302.964000pt;}
.x40{left:304.740000pt;}
.x123{left:306.153333pt;}
.x55{left:307.804000pt;}
.x21{left:308.981333pt;}
.xa8{left:310.881333pt;}
.x9b{left:312.036000pt;}
.x124{left:313.426667pt;}
.x12c{left:315.125333pt;}
.x53{left:319.688000pt;}
.x101{left:321.672000pt;}
.x10b{left:323.026667pt;}
.x5e{left:324.008000pt;}
.x4d{left:325.673333pt;}
.xab{left:326.969333pt;}
.x49{left:328.782667pt;}
.x50{left:330.256000pt;}
.xdd{left:331.940000pt;}
.x4f{left:332.873333pt;}
.x41{left:333.830667pt;}
.x3b{left:334.848000pt;}
.x5f{left:336.924000pt;}
.x11d{left:338.862667pt;}
.x127{left:340.490667pt;}
.x69{left:341.742667pt;}
.x125{left:343.624000pt;}
.x130{left:344.965333pt;}
.xf{left:346.473333pt;}
.x121{left:347.686667pt;}
.x10f{left:349.148000pt;}
.x2d{left:351.881333pt;}
.xde{left:353.757333pt;}
.x106{left:355.093333pt;}
.x1a{left:356.914667pt;}
.x7{left:358.700000pt;}
.x108{left:360.616000pt;}
.x84{left:362.106667pt;}
.x4{left:363.194667pt;}
.x1b{left:364.188000pt;}
.xea{left:367.184000pt;}
.xc7{left:368.390667pt;}
.xa1{left:369.330667pt;}
.x110{left:370.686667pt;}
.xa5{left:373.585333pt;}
.x111{left:374.729333pt;}
.x77{left:376.432000pt;}
.x5{left:378.344000pt;}
.x109{left:379.648000pt;}
.x60{left:380.560000pt;}
.x6a{left:381.573333pt;}
.x71{left:383.698667pt;}
.x8d{left:386.033333pt;}
.x107{left:387.045333pt;}
.x93{left:388.782667pt;}
.x10a{left:389.692000pt;}
.x85{left:391.517333pt;}
.x90{left:393.118667pt;}
.xf3{left:395.582667pt;}
.x61{left:398.312000pt;}
.x118{left:400.292000pt;}
.x36{left:401.358667pt;}
.x42{left:403.313333pt;}
.x20{left:404.678667pt;}
.xaf{left:406.585333pt;}
.x3c{left:407.968000pt;}
.xb1{left:409.337333pt;}
.x62{left:411.228000pt;}
.x86{left:412.521333pt;}
.x43{left:414.616000pt;}
.x7c{left:416.640000pt;}
.x82{left:418.725333pt;}
.x78{left:420.472000pt;}
.xa2{left:422.266667pt;}
.xfa{left:424.160000pt;}
.xc8{left:425.612000pt;}
.xa6{left:427.232000pt;}
.xbb{left:428.372000pt;}
.x6b{left:430.277333pt;}
.x27{left:432.622667pt;}
.xa9{left:434.913333pt;}
.x9c{left:436.529333pt;}
.x10c{left:437.848000pt;}
.x3d{left:440.288000pt;}
.x24{left:441.509333pt;}
.x63{left:444.818667pt;}
.xda{left:446.565333pt;}
.x79{left:449.314667pt;}
.x9d{left:450.260000pt;}
.x4a{left:451.181333pt;}
.x6c{left:452.552000pt;}
.x28{left:454.556000pt;}
.x25{left:456.054667pt;}
.x115{left:457.368000pt;}
.x122{left:459.392000pt;}
.xeb{left:460.870667pt;}
.x29{left:461.829333pt;}
.x7d{left:463.117333pt;}
.x6d{left:465.012000pt;}
.xc9{left:467.153333pt;}
.x64{left:468.572000pt;}
.x102{left:469.830667pt;}
.x2e{left:470.774667pt;}
.xec{left:472.986667pt;}
.xfb{left:474.330667pt;}
.xb2{left:475.270667pt;}
.xdf{left:477.770667pt;}
.xb3{left:479.313333pt;}
.x65{left:481.488000pt;}
.x7e{left:483.306667pt;}
.x131{left:484.745333pt;}
.x128{left:485.974667pt;}
.xed{left:487.066667pt;}
.x38{left:488.825333pt;}
.x103{left:490.018667pt;}
.x12a{left:492.412000pt;}
.xe0{left:494.265333pt;}
.x87{left:496.054667pt;}
.x116{left:497.832000pt;}
.xdb{left:499.348000pt;}
.xac{left:501.044000pt;}
.xb4{left:502.289333pt;}
.xf5{left:504.578667pt;}
.xee{left:506.446667pt;}
.xe1{left:507.996000pt;}
.xbc{left:509.613333pt;}
.x9e{left:511.481333pt;}
.x12{left:513.422667pt;}
.x94{left:515.094667pt;}
.x13{left:517.262667pt;}
.xd2{left:518.542667pt;}
.x2f{left:521.276000pt;}
.x12e{left:524.593333pt;}
.xbd{left:526.930667pt;}
.xe2{left:529.813333pt;}
.x14{left:530.993333pt;}
.x12f{left:532.821333pt;}
.x8{left:533.932000pt;}
.x88{left:534.832000pt;}
.xef{left:535.880000pt;}
.x17{left:537.469333pt;}
.xf8{left:538.905333pt;}
.xa3{left:540.486667pt;}
.x129{left:541.592000pt;}
.x113{left:543.152000pt;}
.xbe{left:544.348000pt;}
.x66{left:546.112000pt;}
.x11f{left:551.094667pt;}
.x89{left:552.606667pt;}
.xca{left:554.629333pt;}
.x6e{left:555.722667pt;}
.x119{left:556.641333pt;}
.xf6{left:559.065333pt;}
.x132{left:561.924000pt;}
.x10d{left:563.630667pt;}
.x26{left:564.693333pt;}
.x2a{left:566.089333pt;}
.x72{left:567.229333pt;}
.xad{left:569.289333pt;}
.x114{left:570.358667pt;}
.x117{left:572.229333pt;}
.x6f{left:573.482667pt;}
.x75{left:575.054667pt;}
.xbf{left:576.781333pt;}
.xf9{left:577.785333pt;}
.x22{left:580.010667pt;}
.x73{left:580.960000pt;}
.xf7{left:582.497333pt;}
.x59{left:584.925333pt;}
.x2b{left:588.024000pt;}
.x9{left:589.984000pt;}
.x23{left:591.124000pt;}
.xe3{left:592.809333pt;}
.x1c{left:595.834667pt;}
.xcb{left:597.441333pt;}
.xc0{left:599.756000pt;}
.x5a{left:600.865333pt;}
.xf4{left:603.777333pt;}
.x74{left:606.858667pt;}
.xd3{left:608.358667pt;}
.x7f{left:610.545333pt;}
.x1d{left:613.609333pt;}
.x95{left:615.165333pt;}
.xc1{left:617.173333pt;}
.xfd{left:619.706667pt;}
.xcc{left:621.217333pt;}
.xe4{left:622.692000pt;}
.xff{left:623.584000pt;}
.x1e{left:627.340000pt;}
.x112{left:628.558667pt;}
.xd4{left:630.177333pt;}
.xfe{left:633.437333pt;}
.x100{left:636.654667pt;}
.x9f{left:638.124000pt;}
.xc2{left:640.705333pt;}
.xf0{left:644.489333pt;}
.xe5{left:646.481333pt;}
.xe7{left:647.506667pt;}
.xcd{left:648.684000pt;}
.xb5{left:650.393333pt;}
.xb6{left:654.437333pt;}
.x4b{left:656.706667pt;}
.xc3{left:660.909333pt;}
.x133{left:666.697333pt;}
.xa7{left:667.625333pt;}
.x80{left:668.620000pt;}
.xce{left:671.172000pt;}
.xb7{left:674.182667pt;}
.xcf{left:675.214667pt;}
.x4c{left:678.166667pt;}
.x96{left:681.753333pt;}
.x1f{left:683.237333pt;}
.xc4{left:684.684000pt;}
.xe8{left:685.588000pt;}
.xfc{left:689.541333pt;}
.xd5{left:693.536000pt;}
.xd0{left:697.376000pt;}
.x11b{left:700.053333pt;}
.x104{left:707.676000pt;}
.xf1{left:708.664000pt;}
.xe9{left:753.237333pt;}
}




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