
    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_4a8c178199ae0678afc725fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992000;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_8d20c1af2f9f1c98f12d20ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992000;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_ebb2f242ebe8dd44b06aa68a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992000;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_bc0fa0fd709a90a5c6339e44.woff2')format("woff");}.ff4{font-family:ff4;line-height:2.041000;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_c366a6c727de54ff73dc938d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.980000;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:-95.346000px;}
.vb{vertical-align:-72.906000px;}
.v13{vertical-align:-70.536000px;}
.v15{vertical-align:-57.048000px;}
.v11{vertical-align:-25.896000px;}
.v2{vertical-align:-15.066000px;}
.v1{vertical-align:-13.746000px;}
.va{vertical-align:-1.830000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:15.060000px;}
.v12{vertical-align:17.646000px;}
.vd{vertical-align:19.452000px;}
.v4{vertical-align:25.896000px;}
.vc{vertical-align:27.186000px;}
.v6{vertical-align:35.874000px;}
.v5{vertical-align:43.044000px;}
.v10{vertical-align:45.348000px;}
.v7{vertical-align:50.934000px;}
.v9{vertical-align:52.014000px;}
.v8{vertical-align:76.830000px;}
.ve{vertical-align:102.942000px;}
.vf{vertical-align:128.844000px;}
.ls8{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000336px;}
.ls3{letter-spacing:0.000509px;}
.lse{letter-spacing:0.000634px;}
.ls41{letter-spacing:0.000778px;}
.ls19{letter-spacing:0.001008px;}
.ls45{letter-spacing:0.001014px;}
.ls22{letter-spacing:0.002294px;}
.ls42{letter-spacing:0.004186px;}
.ls61{letter-spacing:0.005184px;}
.ls6d{letter-spacing:0.005280px;}
.ls2{letter-spacing:0.785455px;}
.ls9{letter-spacing:0.860774px;}
.ls1{letter-spacing:1.032926px;}
.lsa{letter-spacing:1.239509px;}
.ls0{letter-spacing:1.487700px;}
.ls26{letter-spacing:2.986846px;}
.ls52{letter-spacing:2.988464px;}
.ls38{letter-spacing:2.989014px;}
.ls2e{letter-spacing:2.992846px;}
.ls1c{letter-spacing:3.155242px;}
.ls2c{letter-spacing:3.161242px;}
.ls47{letter-spacing:3.658858px;}
.ls25{letter-spacing:4.591478px;}
.ls5{letter-spacing:5.093561px;}
.lsf{letter-spacing:5.289218px;}
.ls17{letter-spacing:5.295218px;}
.ls46{letter-spacing:5.975023px;}
.ls44{letter-spacing:7.170336px;}
.ls64{letter-spacing:7.170634px;}
.ls20{letter-spacing:7.171014px;}
.ls4e{letter-spacing:7.176634px;}
.ls4d{letter-spacing:8.214634px;}
.ls1f{letter-spacing:8.730464px;}
.ls69{letter-spacing:9.146294px;}
.ls6{letter-spacing:10.824509px;}
.ls7{letter-spacing:11.136509px;}
.ls57{letter-spacing:11.954131px;}
.ls3c{letter-spacing:11.960131px;}
.ls21{letter-spacing:13.416931px;}
.ls32{letter-spacing:13.911667px;}
.ls40{letter-spacing:13.916131px;}
.ls75{letter-spacing:14.064634px;}
.ls14{letter-spacing:14.070634px;}
.ls29{letter-spacing:14.190634px;}
.ls54{letter-spacing:14.944846px;}
.ls39{letter-spacing:14.946464px;}
.ls36{letter-spacing:15.449280px;}
.ls18{letter-spacing:15.480634px;}
.ls50{letter-spacing:15.799114px;}
.ls1a{letter-spacing:15.960634px;}
.ls13{letter-spacing:16.026634px;}
.ls78{letter-spacing:16.944634px;}
.ls77{letter-spacing:17.268634px;}
.ls1b{letter-spacing:17.280634px;}
.ls53{letter-spacing:17.453901px;}
.ls71{letter-spacing:17.786294px;}
.ls11{letter-spacing:17.790634px;}
.ls4{letter-spacing:18.306509px;}
.ls51{letter-spacing:18.455242px;}
.ls43{letter-spacing:19.027014px;}
.ls49{letter-spacing:19.128634px;}
.ls16{letter-spacing:19.692634px;}
.ls10{letter-spacing:19.728634px;}
.ls15{letter-spacing:19.848634px;}
.ls56{letter-spacing:19.925558px;}
.ls60{letter-spacing:20.084736px;}
.ls3a{letter-spacing:20.945242px;}
.ls6f{letter-spacing:21.314294px;}
.ls65{letter-spacing:21.360634px;}
.ls12{letter-spacing:21.438634px;}
.ls6a{letter-spacing:21.903218px;}
.ls5e{letter-spacing:22.308634px;}
.ls7a{letter-spacing:22.451866px;}
.ls73{letter-spacing:22.667059px;}
.ls1d{letter-spacing:22.912846px;}
.ls28{letter-spacing:22.918846px;}
.ls62{letter-spacing:23.067218px;}
.ls5a{letter-spacing:23.112336px;}
.ls31{letter-spacing:23.156371px;}
.ls33{letter-spacing:23.384371px;}
.ls67{letter-spacing:23.599565px;}
.ls76{letter-spacing:23.936294px;}
.ls2d{letter-spacing:23.960371px;}
.ls79{letter-spacing:24.148846px;}
.ls2f{letter-spacing:24.230371px;}
.ls2b{letter-spacing:24.578371px;}
.ls23{letter-spacing:25.060846px;}
.ls6e{letter-spacing:25.146634px;}
.ls5d{letter-spacing:25.221218px;}
.ls4a{letter-spacing:25.845218px;}
.ls55{letter-spacing:25.851218px;}
.ls4b{letter-spacing:26.304634px;}
.ls66{letter-spacing:26.827469px;}
.ls3e{letter-spacing:27.096336px;}
.ls3f{letter-spacing:27.101558px;}
.ls58{letter-spacing:27.102336px;}
.ls72{letter-spacing:27.114394px;}
.ls3b{letter-spacing:28.080464px;}
.ls27{letter-spacing:28.432846px;}
.ls37{letter-spacing:30.076846px;}
.ls68{letter-spacing:32.391218px;}
.ls70{letter-spacing:32.415218px;}
.ls6b{letter-spacing:33.713664px;}
.ls6c{letter-spacing:34.444846px;}
.ls5f{letter-spacing:35.026846px;}
.ls48{letter-spacing:35.315558px;}
.ls2a{letter-spacing:35.756371px;}
.ls34{letter-spacing:35.792371px;}
.lsb{letter-spacing:35.865600px;}
.lsd{letter-spacing:36.698294px;}
.ls74{letter-spacing:36.910846px;}
.ls24{letter-spacing:40.006846px;}
.ls35{letter-spacing:40.844371px;}
.ls30{letter-spacing:41.378371px;}
.ls4c{letter-spacing:44.346634px;}
.ls63{letter-spacing:44.639242px;}
.ls3d{letter-spacing:47.028336px;}
.ls59{letter-spacing:74.993558px;}
.ls5c{letter-spacing:96.951218px;}
.ls4f{letter-spacing:155.412931px;}
.ls5b{letter-spacing:501.019114px;}
.lsc{letter-spacing:935.244634px;}
.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;}
}
.wsef{word-spacing:-81.630106px;}
.ws105{word-spacing:-75.030835px;}
.wse9{word-spacing:-74.743910px;}
.wseb{word-spacing:-71.516006px;}
.ws107{word-spacing:-70.583501px;}
.ws129{word-spacing:-70.368307px;}
.wsdb{word-spacing:-68.999323px;}
.wsdc{word-spacing:-68.001178px;}
.ws27{word-spacing:-67.553230px;}
.ws3{word-spacing:-54.486868px;}
.ws0{word-spacing:-51.821550px;}
.ws1{word-spacing:-49.218075px;}
.ws22{word-spacing:-47.916442px;}
.ws43{word-spacing:-46.912205px;}
.ws2d{word-spacing:-46.051430px;}
.ws23{word-spacing:-45.405850px;}
.ws85{word-spacing:-44.545075px;}
.ws7d{word-spacing:-44.042957px;}
.wsb{word-spacing:-43.723673px;}
.ws4e{word-spacing:-43.176223px;}
.ws4{word-spacing:-42.021853px;}
.wsd{word-spacing:-40.189124px;}
.ws95{word-spacing:-35.980270px;}
.wse1{word-spacing:-35.937331px;}
.ws2c{word-spacing:-35.506944px;}
.wscb{word-spacing:-34.979018px;}
.ws25{word-spacing:-34.430976px;}
.wsdd{word-spacing:-34.359245px;}
.ws2{word-spacing:-34.258726px;}
.wsba{word-spacing:-34.215782px;}
.ws5b{word-spacing:-34.144051px;}
.wsb2{word-spacing:-34.072320px;}
.ws100{word-spacing:-34.000589px;}
.wsf2{word-spacing:-33.928858px;}
.wsdf{word-spacing:-33.914417px;}
.wsc1{word-spacing:-33.857126px;}
.ws68{word-spacing:-33.785395px;}
.ws103{word-spacing:-33.713664px;}
.wsc3{word-spacing:-33.641933px;}
.ws80{word-spacing:-33.426739px;}
.ws2b{word-spacing:-33.355008px;}
.ws48{word-spacing:-33.283277px;}
.ws11b{word-spacing:-33.211546px;}
.ws11c{word-spacing:-32.996352px;}
.ws10b{word-spacing:-32.924621px;}
.ws6a{word-spacing:-32.852890px;}
.ws69{word-spacing:-32.851162px;}
.ws51{word-spacing:-32.781158px;}
.wsbb{word-spacing:-32.732141px;}
.wsbc{word-spacing:-32.685917px;}
.ws5c{word-spacing:-32.637696px;}
.wsc9{word-spacing:-32.593507px;}
.ws77{word-spacing:-32.587507px;}
.ws60{word-spacing:-32.565965px;}
.wsec{word-spacing:-32.517920px;}
.wsc0{word-spacing:-32.422502px;}
.ws104{word-spacing:-32.350771px;}
.ws70{word-spacing:-32.279040px;}
.ws21{word-spacing:-32.207309px;}
.wsc2{word-spacing:-32.135578px;}
.ws94{word-spacing:-32.063846px;}
.wsaa{word-spacing:-31.848653px;}
.ws4d{word-spacing:-31.633459px;}
.ws121{word-spacing:-31.418266px;}
.ws8{word-spacing:-31.418208px;}
.wsf7{word-spacing:-31.346534px;}
.wsb1{word-spacing:-31.274803px;}
.ws4c{word-spacing:-31.131341px;}
.ws19{word-spacing:-31.090935px;}
.ws5f{word-spacing:-31.059610px;}
.wsd3{word-spacing:-30.987878px;}
.ws11a{word-spacing:-30.916147px;}
.ws54{word-spacing:-30.844416px;}
.ws55{word-spacing:-30.772685px;}
.ws7c{word-spacing:-30.700954px;}
.wsad{word-spacing:-30.629222px;}
.wsa0{word-spacing:-30.557491px;}
.ws115{word-spacing:-30.508051px;}
.ws47{word-spacing:-30.485760px;}
.ws10c{word-spacing:-30.475238px;}
.ws3f{word-spacing:-30.414029px;}
.ws34{word-spacing:-30.342298px;}
.ws45{word-spacing:-30.270566px;}
.ws82{word-spacing:-30.198835px;}
.ws12{word-spacing:-30.174571px;}
.ws62{word-spacing:-30.127104px;}
.ws125{word-spacing:-30.055373px;}
.ws29{word-spacing:-29.983642px;}
.wsa8{word-spacing:-29.915530px;}
.ws72{word-spacing:-29.911910px;}
.ws88{word-spacing:-29.840179px;}
.ws1a{word-spacing:-29.781843px;}
.ws118{word-spacing:-29.768448px;}
.ws15{word-spacing:-29.735563px;}
.ws50{word-spacing:-29.696717px;}
.ws3b{word-spacing:-29.624986px;}
.wsae{word-spacing:-29.553254px;}
.wsaf{word-spacing:-29.481523px;}
.wsbd{word-spacing:-29.338061px;}
.ws3c{word-spacing:-29.266330px;}
.wsd4{word-spacing:-29.218253px;}
.wsac{word-spacing:-29.194598px;}
.ws4b{word-spacing:-29.122867px;}
.ws66{word-spacing:-29.051136px;}
.wsbe{word-spacing:-29.027587px;}
.ws67{word-spacing:-28.979405px;}
.ws123{word-spacing:-28.907674px;}
.ws9f{word-spacing:-28.835942px;}
.ws7f{word-spacing:-28.764211px;}
.wsb7{word-spacing:-28.692480px;}
.wsa9{word-spacing:-28.620749px;}
.ws3e{word-spacing:-28.549018px;}
.ws9e{word-spacing:-28.481520px;}
.wsde{word-spacing:-28.479658px;}
.wsce{word-spacing:-28.477306px;}
.ws26{word-spacing:-28.477286px;}
.wse0{word-spacing:-28.477219px;}
.ws6e{word-spacing:-28.476509px;}
.ws1d{word-spacing:-28.472751px;}
.wscf{word-spacing:-28.438877px;}
.ws5a{word-spacing:-28.405555px;}
.ws108{word-spacing:-28.333824px;}
.ws11d{word-spacing:-28.262093px;}
.wsa6{word-spacing:-28.190362px;}
.wsfb{word-spacing:-28.122950px;}
.wsfc{word-spacing:-28.118630px;}
.ws64{word-spacing:-28.046899px;}
.ws33{word-spacing:-27.975168px;}
.wsb0{word-spacing:-27.909206px;}
.ws20{word-spacing:-27.903437px;}
.ws7{word-spacing:-27.883660px;}
.ws46{word-spacing:-27.831706px;}
.ws5{word-spacing:-27.818205px;}
.ws110{word-spacing:-27.759974px;}
.ws65{word-spacing:-27.688243px;}
.ws124{word-spacing:-27.616512px;}
.ws18{word-spacing:-27.556387px;}
.ws87{word-spacing:-27.544781px;}
.ws35{word-spacing:-27.473050px;}
.ws61{word-spacing:-27.401318px;}
.wscc{word-spacing:-27.370877px;}
.ws17{word-spacing:-27.360023px;}
.ws102{word-spacing:-27.329587px;}
.wsb6{word-spacing:-27.257856px;}
.wsb8{word-spacing:-27.186125px;}
.ws5e{word-spacing:-27.114394px;}
.ws71{word-spacing:-26.899200px;}
.wsea{word-spacing:-26.827469px;}
.wsd1{word-spacing:-26.759050px;}
.wsd8{word-spacing:-26.757216px;}
.ws2f{word-spacing:-26.755738px;}
.wsa4{word-spacing:-26.754960px;}
.wse6{word-spacing:-26.753894px;}
.wsa7{word-spacing:-26.684006px;}
.ws52{word-spacing:-26.612275px;}
.ws6{word-spacing:-26.574568px;}
.ws3a{word-spacing:-26.540544px;}
.ws49{word-spacing:-26.468813px;}
.ws4a{word-spacing:-26.397082px;}
.ws86{word-spacing:-26.325350px;}
.wsa2{word-spacing:-26.253619px;}
.ws128{word-spacing:-26.181888px;}
.ws10f{word-spacing:-26.038426px;}
.wsa{word-spacing:-25.985476px;}
.ws111{word-spacing:-25.966694px;}
.ws117{word-spacing:-25.927421px;}
.ws39{word-spacing:-25.894963px;}
.ws36{word-spacing:-25.823232px;}
.ws8c{word-spacing:-25.679770px;}
.ws101{word-spacing:-25.614048px;}
.ws63{word-spacing:-25.608038px;}
.ws4f{word-spacing:-25.464576px;}
.ws8f{word-spacing:-25.392845px;}
.wsc4{word-spacing:-25.321114px;}
.ws92{word-spacing:-25.249382px;}
.ws59{word-spacing:-25.242307px;}
.ws126{word-spacing:-25.231008px;}
.wsff{word-spacing:-25.177651px;}
.ws57{word-spacing:-25.105920px;}
.ws75{word-spacing:-25.049635px;}
.ws78{word-spacing:-25.034189px;}
.wsa5{word-spacing:-24.962458px;}
.wsf5{word-spacing:-24.942854px;}
.ws41{word-spacing:-24.890726px;}
.ws40{word-spacing:-24.818995px;}
.ws7e{word-spacing:-24.790982px;}
.wsa3{word-spacing:-24.747264px;}
.wsf{word-spacing:-24.741839px;}
.wsda{word-spacing:-24.683674px;}
.wsf3{word-spacing:-24.619190px;}
.ws90{word-spacing:-24.603802px;}
.ws13{word-spacing:-24.545475px;}
.ws24{word-spacing:-24.532070px;}
.wsed{word-spacing:-24.460339px;}
.ws10{word-spacing:-24.414566px;}
.ws83{word-spacing:-24.388608px;}
.ws8d{word-spacing:-24.316877px;}
.ws37{word-spacing:-24.245146px;}
.ws7a{word-spacing:-24.202118px;}
.ws3d{word-spacing:-24.173414px;}
.ws91{word-spacing:-24.101683px;}
.ws119{word-spacing:-23.995027px;}
.wsd9{word-spacing:-23.958221px;}
.wse{word-spacing:-23.892284px;}
.ws9{word-spacing:-23.890929px;}
.ws114{word-spacing:-23.814758px;}
.wsd5{word-spacing:-23.794688px;}
.ws6c{word-spacing:-23.788688px;}
.ws120{word-spacing:-23.599565px;}
.ws127{word-spacing:-23.527834px;}
.ws106{word-spacing:-23.511802px;}
.ws116{word-spacing:-23.477808px;}
.wsab{word-spacing:-23.456102px;}
.wsf6{word-spacing:-23.384371px;}
.wsf4{word-spacing:-23.312640px;}
.ws6d{word-spacing:-23.240909px;}
.wse7{word-spacing:-23.185238px;}
.wsfe{word-spacing:-23.169178px;}
.wsa1{word-spacing:-23.097446px;}
.ws81{word-spacing:-23.025715px;}
.ws9a{word-spacing:-22.953984px;}
.wsb9{word-spacing:-22.882253px;}
.ws58{word-spacing:-22.738790px;}
.ws7b{word-spacing:-22.595328px;}
.ws11{word-spacing:-22.581837px;}
.wsbf{word-spacing:-22.549891px;}
.ws8e{word-spacing:-22.523597px;}
.ws8b{word-spacing:-22.501910px;}
.wse3{word-spacing:-22.454822px;}
.ws113{word-spacing:-22.451866px;}
.ws14{word-spacing:-22.385473px;}
.ws10d{word-spacing:-22.380134px;}
.wsee{word-spacing:-22.314950px;}
.wsf0{word-spacing:-22.308403px;}
.ws38{word-spacing:-22.236672px;}
.wse8{word-spacing:-21.953914px;}
.ws11f{word-spacing:-21.936221px;}
.ws98{word-spacing:-21.899117px;}
.ws97{word-spacing:-21.830822px;}
.ws5d{word-spacing:-21.806285px;}
.ws74{word-spacing:-21.728822px;}
.ws10e{word-spacing:-21.519360px;}
.ws9d{word-spacing:-21.375898px;}
.ws16{word-spacing:-21.338200px;}
.wsf9{word-spacing:-21.257741px;}
.wsc7{word-spacing:-21.179443px;}
.wsc8{word-spacing:-21.160704px;}
.wsb4{word-spacing:-21.088973px;}
.ws79{word-spacing:-21.017242px;}
.wsc6{word-spacing:-20.945510px;}
.ws8a{word-spacing:-20.873779px;}
.ws89{word-spacing:-20.802048px;}
.ws1c{word-spacing:-20.749108px;}
.wse5{word-spacing:-20.730317px;}
.ws76{word-spacing:-20.371661px;}
.ws1f{word-spacing:-20.280355px;}
.ws84{word-spacing:-20.228198px;}
.ws73{word-spacing:-20.156467px;}
.ws6f{word-spacing:-19.726080px;}
.wsb3{word-spacing:-19.654349px;}
.ws9b{word-spacing:-19.603939px;}
.wsb5{word-spacing:-19.582618px;}
.ws112{word-spacing:-19.407763px;}
.wsfd{word-spacing:-19.367424px;}
.wsf8{word-spacing:-19.295693px;}
.ws122{word-spacing:-19.223962px;}
.wse2{word-spacing:-18.945936px;}
.wse4{word-spacing:-18.734707px;}
.ws11e{word-spacing:-18.650112px;}
.ws96{word-spacing:-18.578381px;}
.ws99{word-spacing:-18.506650px;}
.wsc{word-spacing:-17.672742px;}
.ws1b{word-spacing:-17.298802px;}
.ws30{word-spacing:-16.811155px;}
.ws109{word-spacing:-14.059315px;}
.ws56{word-spacing:-13.086998px;}
.wsd2{word-spacing:-12.548294px;}
.ws9c{word-spacing:-12.122573px;}
.wsca{word-spacing:-12.050842px;}
.ws44{word-spacing:-11.049725px;}
.ws31{word-spacing:-8.679475px;}
.ws42{word-spacing:-8.607725px;}
.wsc5{word-spacing:-8.105626px;}
.ws10a{word-spacing:-2.151936px;}
.ws1e{word-spacing:0.000000px;}
.wsd7{word-spacing:5.622490px;}
.ws2a{word-spacing:8.392550px;}
.ws6b{word-spacing:26.038752px;}
.wsfa{word-spacing:28.747009px;}
.wsd6{word-spacing:31.833706px;}
.ws32{word-spacing:34.501822px;}
.wscd{word-spacing:107.560637px;}
.ws28{word-spacing:160.247501px;}
.ws53{word-spacing:672.236419px;}
.wsd0{word-spacing:857.155286px;}
.ws93{word-spacing:967.833792px;}
.wsf1{word-spacing:1038.280781px;}
.ws2e{word-spacing:1457.305229px;}
._17{margin-left:-35.865600px;}
._1d{margin-left:-34.061312px;}
._48{margin-left:-27.396173px;}
._42{margin-left:-26.295019px;}
._43{margin-left:-22.999317px;}
._4a{margin-left:-21.906417px;}
._45{margin-left:-9.734506px;}
._32{margin-left:-5.964870px;}
._2e{margin-left:-3.983359px;}
._d{margin-left:-2.642874px;}
._0{margin-left:-1.611675px;}
._1{width:1.505456px;}
._5{width:3.403639px;}
._39{width:9.083815px;}
._7{width:10.930918px;}
._10{width:12.409498px;}
._31{width:13.448222px;}
._6{width:14.530921px;}
._2{width:16.474952px;}
._4{width:18.130924px;}
._c{width:19.157188px;}
._a{width:20.487290px;}
._9{width:21.570969px;}
._f{width:22.656253px;}
._b{width:24.128057px;}
._3{width:26.116385px;}
._2d{width:27.831706px;}
._29{width:29.329001px;}
._18{width:31.322521px;}
._35{width:32.977589px;}
._2f{width:34.105909px;}
._25{width:35.292772px;}
._e{width:36.458212px;}
._37{width:37.932692px;}
._19{width:39.133688px;}
._21{width:40.200662px;}
._20{width:41.542514px;}
._27{width:42.815626px;}
._38{width:44.992762px;}
._8{width:46.120803px;}
._34{width:49.274780px;}
._40{width:51.653687px;}
._16{width:55.613229px;}
._1c{width:57.107117px;}
._26{width:58.717712px;}
._24{width:61.890046px;}
._3b{width:63.926506px;}
._1e{width:66.531365px;}
._22{width:72.530219px;}
._28{width:82.921267px;}
._36{width:85.041498px;}
._3f{width:86.634821px;}
._3d{width:91.929668px;}
._30{width:102.055051px;}
._3a{width:143.027267px;}
._1b{width:176.602214px;}
._15{width:178.682419px;}
._1f{width:179.759287px;}
._44{width:193.884652px;}
._47{width:200.204237px;}
._1a{width:204.649114px;}
._12{width:207.159706px;}
._46{width:388.509839px;}
._41{width:397.695398px;}
._3c{width:565.889557px;}
._33{width:646.639690px;}
._23{width:803.250083px;}
._3e{width:898.383802px;}
._14{width:915.081529px;}
._49{width:978.686113px;}
._13{width:1584.371768px;}
._2c{width:1911.176609px;}
._11{width:2086.673837px;}
._2b{width:2096.785430px;}
._2a{width:2103.597830px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:43.038600px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:52.363800px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs5{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:63.168000px;}
.y1c{bottom:108.000000px;}
.y1fc{bottom:109.203000px;}
.y167{bottom:111.048000px;}
.yb2{bottom:116.365500px;}
.y123{bottom:121.533000px;}
.y1a8{bottom:122.479500px;}
.ycd{bottom:125.455500px;}
.y150{bottom:127.474500px;}
.y1b{bottom:130.356000px;}
.y61{bottom:131.149500px;}
.y13a{bottom:131.796000px;}
.y1df{bottom:131.835000px;}
.y43{bottom:134.176500px;}
.y166{bottom:134.883000px;}
.y10b{bottom:134.964000px;}
.yb1{bottom:140.200500px;}
.y7d{bottom:142.683000px;}
.y122{bottom:145.368000px;}
.y1fb{bottom:145.794000px;}
.yc5{bottom:146.047500px;}
.y1a7{bottom:146.316000px;}
.y91{bottom:149.640000px;}
.yc9{bottom:150.717000px;}
.y1a{bottom:152.712000px;}
.y60{bottom:154.984500px;}
.y17c{bottom:155.094000px;}
.y139{bottom:155.632500px;}
.y1de{bottom:155.671500px;}
.y1c4{bottom:156.010500px;}
.y165{bottom:158.719500px;}
.y14f{bottom:164.065500px;}
.y191{bottom:165.766500px;}
.y7c{bottom:166.519500px;}
.yc0{bottom:166.933500px;}
.yc4{bottom:167.716500px;}
.y121{bottom:169.204500px;}
.y1fa{bottom:169.630500px;}
.y1a6{bottom:170.151000px;}
.ycc{bottom:171.591000px;}
.yc8{bottom:172.386000px;}
.y90{bottom:173.475000px;}
.y19{bottom:175.068000px;}
.y42{bottom:175.945500px;}
.yb0{bottom:176.793000px;}
.y10a{bottom:178.525500px;}
.y5f{bottom:178.821000px;}
.y17b{bottom:178.929000px;}
.y164{bottom:182.554500px;}
.y14e{bottom:187.902000px;}
.ybd{bottom:189.469500px;}
.ybb{bottom:189.481500px;}
.y190{bottom:189.601500px;}
.y7b{bottom:190.354500px;}
.y8f{bottom:191.014500px;}
.y1c3{bottom:192.601500px;}
.ycb{bottom:193.260000px;}
.y1f9{bottom:193.465500px;}
.y1a5{bottom:193.987500px;}
.y8e{bottom:199.983000px;}
.yaf{bottom:200.628000px;}
.y17a{bottom:202.765500px;}
.y1dd{bottom:202.948500px;}
.y163{bottom:206.391000px;}
.y120{bottom:207.984000px;}
.y18{bottom:210.181500px;}
.ye0{bottom:210.679500px;}
.ybc{bottom:211.138500px;}
.yba{bottom:211.150500px;}
.y138{bottom:211.651500px;}
.y18f{bottom:213.438000px;}
.y109{bottom:215.118000px;}
.y1c2{bottom:216.438000px;}
.y1f8{bottom:217.302000px;}
.y41{bottom:217.714500px;}
.y14d{bottom:222.421500px;}
.yae{bottom:224.464500px;}
.y8d{bottom:225.420000px;}
.y179{bottom:226.600500px;}
.y7a{bottom:229.134000px;}
.y11f{bottom:231.819000px;}
.y17{bottom:232.537500px;}
.yc2{bottom:232.818000px;}
.y5e{bottom:235.138500px;}
.y18e{bottom:237.273000px;}
.y1a4{bottom:239.545500px;}
.y1c1{bottom:240.273000px;}
.y1f7{bottom:241.137000px;}
.y14c{bottom:246.258000px;}
.yad{bottom:248.299500px;}
.ydf{bottom:249.046500px;}
.y8c{bottom:249.255000px;}
.y79{bottom:252.970500px;}
.y137{bottom:253.662000px;}
.y16{bottom:254.893500px;}
.y108{bottom:258.679500px;}
.y40{bottom:259.482000px;}
.yde{bottom:261.780000px;}
.y1dc{bottom:263.376000px;}
.y1c0{bottom:264.109500px;}
.y162{bottom:266.151000px;}
.yf5{bottom:267.609000px;}
.y14b{bottom:270.093000px;}
.yac{bottom:272.136000px;}
.y1a3{bottom:276.136500px;}
.y78{bottom:276.805500px;}
.y15{bottom:277.249500px;}
.y5d{bottom:278.700000px;}
.y3f{bottom:283.318500px;}
.y178{bottom:284.956500px;}
.y1f6{bottom:286.695000px;}
.y1db{bottom:287.211000px;}
.y11e{bottom:287.838000px;}
.y1bf{bottom:287.944500px;}
.ydd{bottom:291.322500px;}
.yf4{bottom:291.445500px;}
.y18d{bottom:293.292000px;}
.y136{bottom:293.661000px;}
.y14a{bottom:293.929500px;}
.yab{bottom:295.971000px;}
.y14{bottom:299.605500px;}
.y1a2{bottom:299.973000px;}
.y77{bottom:300.642000px;}
.y107{bottom:302.241000px;}
.y5c{bottom:302.536500px;}
.y3e{bottom:307.153500px;}
.y8b{bottom:308.908500px;}
.y1f5{bottom:310.531500px;}
.y1da{bottom:311.047500px;}
.ydc{bottom:315.159000px;}
.y135{bottom:317.496000px;}
.yaa{bottom:319.807500px;}
.y13{bottom:321.963000px;}
.y1a1{bottom:323.808000px;}
.y11d{bottom:324.429000px;}
.y76{bottom:324.477000px;}
.y5b{bottom:326.371500px;}
.y3d{bottom:330.990000px;}
.y18c{bottom:332.071500px;}
.y1be{bottom:333.502500px;}
.y1f4{bottom:334.366500px;}
.y177{bottom:335.428500px;}
.y106{bottom:338.833500px;}
.yf3{bottom:338.925000px;}
.ya9{bottom:343.642500px;}
.y12{bottom:344.319000px;}
.y149{bottom:344.401500px;}
.y161{bottom:347.458500px;}
.y1d9{bottom:347.638500px;}
.y1a0{bottom:347.644500px;}
.y11c{bottom:348.265500px;}
.y5a{bottom:350.208000px;}
.yf2{bottom:351.658500px;}
.ydb{bottom:353.451000px;}
.y134{bottom:354.088500px;}
.y3c{bottom:354.825000px;}
.y1bd{bottom:357.339000px;}
.y1f3{bottom:358.203000px;}
.y75{bottom:363.256500px;}
.y18b{bottom:370.851000px;}
.y1d8{bottom:371.475000px;}
.y19f{bottom:371.479500px;}
.y11b{bottom:372.100500px;}
.y105{bottom:377.532000px;}
.y133{bottom:377.923500px;}
.y3b{bottom:378.661500px;}
.yda{bottom:379.188000px;}
.ya8{bottom:380.235000px;}
.y1bc{bottom:381.174000px;}
.y1f2{bottom:382.038000px;}
.y104{bottom:382.395000px;}
.y11{bottom:384.757500px;}
.y74{bottom:387.093000px;}
.y160{bottom:391.020000px;}
.y132{bottom:401.760000px;}
.yf1{bottom:402.237000px;}
.y3a{bottom:402.496500px;}
.ya7{bottom:404.070000px;}
.y1bb{bottom:405.010500px;}
.y1f1{bottom:405.874500px;}
.y59{bottom:406.227000px;}
.y176{bottom:407.847000px;}
.y73{bottom:410.928000px;}
.y8a{bottom:414.051000px;}
.y11a{bottom:415.663500px;}
.y148{bottom:416.820000px;}
.y1d7{bottom:417.063000px;}
.yd9{bottom:417.139500px;}
.yb7{bottom:418.114500px;}
.y10{bottom:425.196000px;}
.y103{bottom:425.956500px;}
.y39{bottom:426.333000px;}
.y18a{bottom:426.870000px;}
.y15f{bottom:427.611000px;}
.ya6{bottom:427.906500px;}
.y1ba{bottom:428.845500px;}
.y1f0{bottom:429.709500px;}
.y58{bottom:430.062000px;}
.y19e{bottom:431.133000px;}
.y175{bottom:431.682000px;}
.y89{bottom:437.886000px;}
.yb6{bottom:439.782000px;}
.y147{bottom:440.655000px;}
.yf{bottom:447.552000px;}
.yef{bottom:449.716500px;}
.y38{bottom:450.168000px;}
.y15e{bottom:451.447500px;}
.ya5{bottom:451.741500px;}
.y131{bottom:452.232000px;}
.y1d6{bottom:453.235500px;}
.y1ef{bottom:453.546000px;}
.yd8{bottom:453.730500px;}
.y174{bottom:455.518500px;}
.yf0{bottom:457.587000px;}
.y119{bottom:459.225000px;}
.yee{bottom:462.450000px;}
.y1b9{bottom:465.438000px;}
.y72{bottom:466.947000px;}
.y57{bottom:468.841500px;}
.ye{bottom:469.908000px;}
.y88{bottom:474.478500px;}
.y15d{bottom:475.282500px;}
.ya4{bottom:475.578000px;}
.y189{bottom:477.342000px;}
.yd7{bottom:477.567000px;}
.y173{bottom:479.353500px;}
.y1b8{bottom:489.273000px;}
.y1d5{bottom:489.406500px;}
.y71{bottom:490.783500px;}
.y37{bottom:491.937000px;}
.y56{bottom:492.678000px;}
.y146{bottom:496.674000px;}
.y102{bottom:497.068500px;}
.y87{bottom:498.313500px;}
.yd6{bottom:501.402000px;}
.yd{bottom:505.020000px;}
.y172{bottom:505.144500px;}
.y118{bottom:509.697000px;}
.ya3{bottom:512.169000px;}
.y19d{bottom:512.439000px;}
.yed{bottom:513.027000px;}
.y1b7{bottom:513.109500px;}
.y36{bottom:515.772000px;}
.y145{bottom:520.509000px;}
.y86{bottom:522.150000px;}
.y130{bottom:524.649000px;}
.y1d4{bottom:525.579000px;}
.yc{bottom:527.377500px;}
.y15c{bottom:531.301500px;}
.y1ee{bottom:533.623500px;}
.ya2{bottom:536.004000px;}
.y1b6{bottom:536.944500px;}
.y35{bottom:539.608500px;}
.yd5{bottom:539.695500px;}
.y85{bottom:545.985000px;}
.y101{bottom:548.224500px;}
.y12f{bottom:548.485500px;}
.y171{bottom:548.514000px;}
.y55{bottom:548.697000px;}
.y188{bottom:549.760500px;}
.y19c{bottom:556.002000px;}
.y1ed{bottom:557.460000px;}
.y144{bottom:559.290000px;}
.ya1{bottom:559.840500px;}
.y1b5{bottom:560.781000px;}
.y100{bottom:560.958000px;}
.y1d3{bottom:561.751500px;}
.y70{bottom:561.895500px;}
.y34{bottom:563.443500px;}
.yd4{bottom:565.431000px;}
.yb{bottom:567.816000px;}
.yec{bottom:569.346000px;}
.y15b{bottom:570.081000px;}
.y12e{bottom:572.320500px;}
.y170{bottom:572.350500px;}
.y54{bottom:572.532000px;}
.y187{bottom:573.595500px;}
.y1ec{bottom:581.295000px;}
.y117{bottom:582.115500px;}
.ya0{bottom:583.675500px;}
.y1b4{bottom:584.616000px;}
.y6f{bottom:585.730500px;}
.y33{bottom:587.280000px;}
.yc7{bottom:589.899000px;}
.y19b{bottom:592.593000px;}
.y186{bottom:597.432000px;}
.y143{bottom:598.069500px;}
.y84{bottom:602.004000px;}
.yd3{bottom:603.382500px;}
.y1eb{bottom:605.131500px;}
.y116{bottom:605.950500px;}
.y1d2{bottom:607.339500px;}
.y9f{bottom:607.512000px;}
.ya{bottom:608.254500px;}
.y15a{bottom:608.860500px;}
.y53{bottom:609.123000px;}
.y6e{bottom:609.567000px;}
.y32{bottom:611.115000px;}
.yc3{bottom:611.554500px;}
.yff{bottom:612.127500px;}
.yeb{bottom:612.907500px;}
.ybf{bottom:615.450000px;}
.y19a{bottom:616.429500px;}
.y16f{bottom:622.822500px;}
.y83{bottom:625.840500px;}
.yd2{bottom:627.219000px;}
.y12d{bottom:628.339500px;}
.y1ea{bottom:628.966500px;}
.y115{bottom:629.787000px;}
.y1b3{bottom:630.174000px;}
.y9{bottom:630.610500px;}
.y9e{bottom:631.347000px;}
.y185{bottom:631.951500px;}
.y52{bottom:632.959500px;}
.y6d{bottom:633.402000px;}
.y31{bottom:634.951500px;}
.y199{bottom:640.264500px;}
.yca{bottom:641.775000px;}
.y1d1{bottom:643.932000px;}
.y159{bottom:647.640000px;}
.yfe{bottom:648.720000px;}
.yd1{bottom:651.054000px;}
.y1e9{bottom:652.803000px;}
.y8{bottom:652.966500px;}
.y114{bottom:653.622000px;}
.y1b2{bottom:654.010500px;}
.y142{bottom:654.088500px;}
.y9d{bottom:655.183500px;}
.y184{bottom:655.788000px;}
.y51{bottom:656.794500px;}
.y6c{bottom:657.238500px;}
.yb9{bottom:659.653500px;}
.yc6{bottom:659.665500px;}
.y82{bottom:664.620000px;}
.y12c{bottom:667.119000px;}
.y1d0{bottom:667.767000px;}
.yea{bottom:669.225000px;}
.y7{bottom:675.322500px;}
.y30{bottom:676.720500px;}
.y1b1{bottom:677.845500px;}
.yfd{bottom:678.378000px;}
.y9c{bottom:679.018500px;}
.y183{bottom:679.623000px;}
.y50{bottom:680.631000px;}
.y6b{bottom:681.073500px;}
.yb8{bottom:681.322500px;}
.yc1{bottom:681.334500px;}
.y158{bottom:686.421000px;}
.y81{bottom:688.455000px;}
.y12b{bottom:690.955500px;}
.y1cf{bottom:691.603500px;}
.y16e{bottom:695.239500px;}
.y198{bottom:696.283500px;}
.y1e8{bottom:698.361000px;}
.y2f{bottom:700.555500px;}
.y1b0{bottom:701.682000px;}
.y182{bottom:703.459500px;}
.yd0{bottom:703.555500px;}
.y4f{bottom:704.466000px;}
.y6a{bottom:704.910000px;}
.yfc{bottom:707.076000px;}
.ye9{bottom:712.786500px;}
.y113{bottom:713.382000px;}
.y6{bottom:715.066500px;}
.y1ce{bottom:715.438500px;}
.y9b{bottom:715.611000px;}
.y16d{bottom:719.076000px;}
.y1e7{bottom:722.196000px;}
.y2e{bottom:724.392000px;}
.y141{bottom:725.200500px;}
.y80{bottom:727.236000px;}
.y181{bottom:727.294500px;}
.y4e{bottom:728.302500px;}
.y12a{bottom:729.735000px;}
.y197{bottom:735.063000px;}
.y1cd{bottom:739.275000px;}
.y9a{bottom:739.446000px;}
.y157{bottom:742.438500px;}
.y16c{bottom:742.911000px;}
.y1e6{bottom:746.032500px;}
.y2d{bottom:748.227000px;}
.y140{bottom:749.035500px;}
.y4d{bottom:752.137500px;}
.y1af{bottom:757.699500px;}
.y99{bottom:763.282500px;}
.yfb{bottom:763.393500px;}
.y69{bottom:764.562000px;}
.y7f{bottom:766.015500px;}
.y156{bottom:766.275000px;}
.y16b{bottom:766.747500px;}
.ye8{bottom:769.104000px;}
.y1e5{bottom:769.867500px;}
.y2c{bottom:772.063500px;}
.y13f{bottom:772.872000px;}
.y196{bottom:773.842500px;}
.ycf{bottom:775.974000px;}
.y5{bottom:777.330000px;}
.y180{bottom:777.766500px;}
.y129{bottom:785.754000px;}
.y98{bottom:787.117500px;}
.y4c{bottom:788.730000px;}
.y7e{bottom:789.850500px;}
.y1e4{bottom:793.704000px;}
.y112{bottom:794.689500px;}
.y1cc{bottom:795.592500px;}
.y1ae{bottom:796.480500px;}
.yce{bottom:799.809000px;}
.yfa{bottom:806.956500px;}
.y97{bottom:810.954000px;}
.y4b{bottom:812.565000px;}
.y195{bottom:812.622000px;}
.ye7{bottom:812.667000px;}
.y2b{bottom:813.831000px;}
.y155{bottom:816.747000px;}
.y16a{bottom:817.219500px;}
.y1e3{bottom:817.539000px;}
.y111{bottom:818.524500px;}
.y13e{bottom:823.342500px;}
.y128{bottom:824.299500px;}
.y4{bottom:833.668500px;}
.y96{bottom:834.789000px;}
.y200{bottom:835.185000px;}
.y1ad{bottom:835.260000px;}
.y4a{bottom:836.401500px;}
.y2a{bottom:837.667500px;}
.y1cb{bottom:839.154000px;}
.ye6{bottom:841.918500px;}
.y68{bottom:845.869500px;}
.y17f{bottom:850.185000px;}
.y194{bottom:851.401500px;}
.yf9{bottom:858.004500px;}
.y95{bottom:858.625500px;}
.y1ff{bottom:859.020000px;}
.y49{bottom:860.236500px;}
.y29{bottom:861.502500px;}
.y1ca{bottom:862.990500px;}
.y1e2{bottom:863.097000px;}
.y127{bottom:867.670500px;}
.y67{bottom:869.704500px;}
.y17e{bottom:874.021500px;}
.y1ac{bottom:874.039500px;}
.y110{bottom:876.882000px;}
.y1fe{bottom:882.856500px;}
.yb5{bottom:883.621500px;}
.yf8{bottom:883.740000px;}
.y28{bottom:885.339000px;}
.ye5{bottom:885.880500px;}
.y1c9{bottom:886.825500px;}
.y154{bottom:889.165500px;}
.y169{bottom:889.638000px;}
.y193{bottom:890.182500px;}
.y126{bottom:891.505500px;}
.y94{bottom:895.216500px;}
.y13d{bottom:895.761000px;}
.y17d{bottom:897.856500px;}
.y1e1{bottom:899.689500px;}
.y10f{bottom:900.717000px;}
.y3{bottom:902.913000px;}
.y48{bottom:903.799500px;}
.y66{bottom:906.297000px;}
.y1fd{bottom:906.691500px;}
.y27{bottom:909.174000px;}
.ye4{bottom:909.715500px;}
.y1c8{bottom:910.662000px;}
.y1ab{bottom:912.819000px;}
.y153{bottom:913.000500px;}
.y168{bottom:913.473000px;}
.y125{bottom:915.342000px;}
.y93{bottom:919.053000px;}
.yf7{bottom:921.693000px;}
.y1e0{bottom:923.524500px;}
.y192{bottom:928.962000px;}
.y65{bottom:930.132000px;}
.y26{bottom:933.010500px;}
.y152{bottom:936.837000px;}
.y10e{bottom:937.309500px;}
.y92{bottom:942.888000px;}
.y2{bottom:944.010000px;}
.ye3{bottom:944.913000px;}
.y1c7{bottom:947.253000px;}
.y47{bottom:947.361000px;}
.y13c{bottom:951.780000px;}
.y64{bottom:953.968500px;}
.yb4{bottom:956.040000px;}
.ye2{bottom:957.646500px;}
.y10d{bottom:961.144500px;}
.yf6{bottom:965.254500px;}
.y124{bottom:965.812500px;}
.y22{bottom:966.724500px;}
.y1aa{bottom:968.838000px;}
.y1c6{bottom:971.089500px;}
.y46{bottom:971.196000px;}
.y25{bottom:974.778000px;}
.y13b{bottom:975.616500px;}
.y63{bottom:977.803500px;}
.yb3{bottom:979.875000px;}
.y10c{bottom:984.981000px;}
.y1{bottom:985.105500px;}
.y21{bottom:990.559500px;}
.y1a9{bottom:992.673000px;}
.y1c5{bottom:994.924500px;}
.y45{bottom:995.032500px;}
.y151{bottom:999.451500px;}
.y62{bottom:1001.640000px;}
.ye1{bottom:1008.816000px;}
.y20{bottom:1014.396000px;}
.y24{bottom:1016.547000px;}
.y1f{bottom:1038.231000px;}
.y44{bottom:1054.684500px;}
.ybe{bottom:1059.288000px;}
.y23{bottom:1061.665500px;}
.y1e{bottom:1062.067500px;}
.h3{height:51.054588px;}
.h5{height:55.950336px;}
.h2{height:67.140216px;}
.h7{height:80.568072px;}
.h4{height:82.865524px;}
.h6{height:90.811699px;}
.h8{height:92.188571px;}
.hb{height:92.194571px;}
.h19{height:93.478571px;}
.h1{height:96.700500px;}
.h1b{height:108.457699px;}
.h16{height:108.973735px;}
.h9{height:109.336571px;}
.h17{height:110.263699px;}
.h1a{height:111.640571px;}
.ha{height:126.685699px;}
.hc{height:130.768178px;}
.h10{height:141.745699px;}
.h11{height:142.819699px;}
.hf{height:142.825699px;}
.hd{height:143.122571px;}
.he{height:143.128571px;}
.h12{height:143.575699px;}
.h13{height:144.412571px;}
.h14{height:162.271699px;}
.h1c{height:193.753699px;}
.h18{height:193.759699px;}
.h15{height:195.136571px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:108.000000px;}
.xf{left:128.013000px;}
.xd{left:134.899500px;}
.x10{left:136.764000px;}
.x2{left:138.958500px;}
.x15{left:148.702500px;}
.x8{left:152.832000px;}
.x14{left:172.458000px;}
.x7{left:177.378000px;}
.x13{left:194.950500px;}
.x38{left:240.031500px;}
.x2d{left:290.287500px;}
.x1a{left:294.433500px;}
.x19{left:310.461000px;}
.x1{left:319.636500px;}
.x2e{left:322.972500px;}
.x28{left:331.684500px;}
.x3{left:334.312500px;}
.x18{left:362.647500px;}
.x29{left:364.368000px;}
.x22{left:366.370500px;}
.x4{left:368.038500px;}
.x16{left:372.111000px;}
.x1e{left:374.227500px;}
.xe{left:377.092500px;}
.x17{left:378.673500px;}
.x1d{left:380.166000px;}
.x33{left:381.871500px;}
.x9{left:384.225000px;}
.xa{left:390.594000px;}
.x2b{left:394.401000px;}
.x2f{left:396.246000px;}
.x20{left:397.594500px;}
.x1f{left:402.127500px;}
.x31{left:409.572000px;}
.x23{left:411.624000px;}
.x2a{left:414.112500px;}
.x2c{left:419.835000px;}
.x21{left:421.654500px;}
.x37{left:424.492500px;}
.x6{left:425.872500px;}
.x1b{left:431.557500px;}
.x5{left:432.789000px;}
.x35{left:434.605500px;}
.x32{left:436.032000px;}
.x24{left:438.409500px;}
.x12{left:448.132500px;}
.xb{left:453.619500px;}
.x25{left:467.971500px;}
.x1c{left:469.549500px;}
.x36{left:473.863500px;}
.x30{left:478.446000px;}
.x26{left:490.911000px;}
.x27{left:533.061000px;}
.x11{left:619.203000px;}
.x34{left:646.894500px;}
@media print{
.v3{vertical-align:-84.752000pt;}
.vb{vertical-align:-64.805333pt;}
.v13{vertical-align:-62.698667pt;}
.v15{vertical-align:-50.709333pt;}
.v11{vertical-align:-23.018667pt;}
.v2{vertical-align:-13.392000pt;}
.v1{vertical-align:-12.218667pt;}
.va{vertical-align:-1.626667pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:13.386667pt;}
.v12{vertical-align:15.685333pt;}
.vd{vertical-align:17.290667pt;}
.v4{vertical-align:23.018667pt;}
.vc{vertical-align:24.165333pt;}
.v6{vertical-align:31.888000pt;}
.v5{vertical-align:38.261333pt;}
.v10{vertical-align:40.309333pt;}
.v7{vertical-align:45.274667pt;}
.v9{vertical-align:46.234667pt;}
.v8{vertical-align:68.293333pt;}
.ve{vertical-align:91.504000pt;}
.vf{vertical-align:114.528000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000299pt;}
.ls3{letter-spacing:0.000452pt;}
.lse{letter-spacing:0.000563pt;}
.ls41{letter-spacing:0.000691pt;}
.ls19{letter-spacing:0.000896pt;}
.ls45{letter-spacing:0.000901pt;}
.ls22{letter-spacing:0.002039pt;}
.ls42{letter-spacing:0.003721pt;}
.ls61{letter-spacing:0.004608pt;}
.ls6d{letter-spacing:0.004693pt;}
.ls2{letter-spacing:0.698182pt;}
.ls9{letter-spacing:0.765133pt;}
.ls1{letter-spacing:0.918157pt;}
.lsa{letter-spacing:1.101786pt;}
.ls0{letter-spacing:1.322400pt;}
.ls26{letter-spacing:2.654974pt;}
.ls52{letter-spacing:2.656412pt;}
.ls38{letter-spacing:2.656901pt;}
.ls2e{letter-spacing:2.660307pt;}
.ls1c{letter-spacing:2.804659pt;}
.ls2c{letter-spacing:2.809993pt;}
.ls47{letter-spacing:3.252318pt;}
.ls25{letter-spacing:4.081314pt;}
.ls5{letter-spacing:4.527610pt;}
.lsf{letter-spacing:4.701527pt;}
.ls17{letter-spacing:4.706861pt;}
.ls46{letter-spacing:5.311132pt;}
.ls44{letter-spacing:6.373632pt;}
.ls64{letter-spacing:6.373897pt;}
.ls20{letter-spacing:6.374235pt;}
.ls4e{letter-spacing:6.379230pt;}
.ls4d{letter-spacing:7.301897pt;}
.ls1f{letter-spacing:7.760412pt;}
.ls69{letter-spacing:8.130039pt;}
.ls6{letter-spacing:9.621786pt;}
.ls7{letter-spacing:9.899119pt;}
.ls57{letter-spacing:10.625894pt;}
.ls3c{letter-spacing:10.631228pt;}
.ls21{letter-spacing:11.926161pt;}
.ls32{letter-spacing:12.365926pt;}
.ls40{letter-spacing:12.369894pt;}
.ls75{letter-spacing:12.501897pt;}
.ls14{letter-spacing:12.507230pt;}
.ls29{letter-spacing:12.613897pt;}
.ls54{letter-spacing:13.284307pt;}
.ls39{letter-spacing:13.285746pt;}
.ls36{letter-spacing:13.732693pt;}
.ls18{letter-spacing:13.760563pt;}
.ls50{letter-spacing:14.043657pt;}
.ls1a{letter-spacing:14.187230pt;}
.ls13{letter-spacing:14.245897pt;}
.ls78{letter-spacing:15.061897pt;}
.ls77{letter-spacing:15.349897pt;}
.ls1b{letter-spacing:15.360563pt;}
.ls53{letter-spacing:15.514579pt;}
.ls71{letter-spacing:15.810039pt;}
.ls11{letter-spacing:15.813897pt;}
.ls4{letter-spacing:16.272452pt;}
.ls51{letter-spacing:16.404659pt;}
.ls43{letter-spacing:16.912901pt;}
.ls49{letter-spacing:17.003230pt;}
.ls16{letter-spacing:17.504563pt;}
.ls10{letter-spacing:17.536563pt;}
.ls15{letter-spacing:17.643230pt;}
.ls56{letter-spacing:17.711607pt;}
.ls60{letter-spacing:17.853099pt;}
.ls3a{letter-spacing:18.617993pt;}
.ls6f{letter-spacing:18.946039pt;}
.ls65{letter-spacing:18.987230pt;}
.ls12{letter-spacing:19.056563pt;}
.ls6a{letter-spacing:19.469527pt;}
.ls5e{letter-spacing:19.829897pt;}
.ls7a{letter-spacing:19.957214pt;}
.ls73{letter-spacing:20.148497pt;}
.ls1d{letter-spacing:20.366974pt;}
.ls28{letter-spacing:20.372307pt;}
.ls62{letter-spacing:20.504194pt;}
.ls5a{letter-spacing:20.544299pt;}
.ls31{letter-spacing:20.583441pt;}
.ls33{letter-spacing:20.786108pt;}
.ls67{letter-spacing:20.977391pt;}
.ls76{letter-spacing:21.276706pt;}
.ls2d{letter-spacing:21.298108pt;}
.ls79{letter-spacing:21.465641pt;}
.ls2f{letter-spacing:21.538108pt;}
.ls2b{letter-spacing:21.847441pt;}
.ls23{letter-spacing:22.276307pt;}
.ls6e{letter-spacing:22.352563pt;}
.ls5d{letter-spacing:22.418861pt;}
.ls4a{letter-spacing:22.973527pt;}
.ls55{letter-spacing:22.978861pt;}
.ls4b{letter-spacing:23.381897pt;}
.ls66{letter-spacing:23.846639pt;}
.ls3e{letter-spacing:24.085632pt;}
.ls3f{letter-spacing:24.090274pt;}
.ls58{letter-spacing:24.090965pt;}
.ls72{letter-spacing:24.101683pt;}
.ls3b{letter-spacing:24.960412pt;}
.ls27{letter-spacing:25.273641pt;}
.ls37{letter-spacing:26.734974pt;}
.ls68{letter-spacing:28.792194pt;}
.ls70{letter-spacing:28.813527pt;}
.ls6b{letter-spacing:29.967701pt;}
.ls6c{letter-spacing:30.617641pt;}
.ls5f{letter-spacing:31.134974pt;}
.ls48{letter-spacing:31.391607pt;}
.ls2a{letter-spacing:31.783441pt;}
.ls34{letter-spacing:31.815441pt;}
.lsb{letter-spacing:31.880533pt;}
.lsd{letter-spacing:32.620706pt;}
.ls74{letter-spacing:32.809641pt;}
.ls24{letter-spacing:35.561641pt;}
.ls35{letter-spacing:36.306108pt;}
.ls30{letter-spacing:36.780774pt;}
.ls4c{letter-spacing:39.419230pt;}
.ls63{letter-spacing:39.679326pt;}
.ls3d{letter-spacing:41.802965pt;}
.ls59{letter-spacing:66.660941pt;}
.ls5c{letter-spacing:86.178861pt;}
.ls4f{letter-spacing:138.144828pt;}
.ls5b{letter-spacing:445.350323pt;}
.lsc{letter-spacing:831.328563pt;}
.wsef{word-spacing:-72.560094pt;}
.ws105{word-spacing:-66.694076pt;}
.wse9{word-spacing:-66.439031pt;}
.wseb{word-spacing:-63.569783pt;}
.ws107{word-spacing:-62.740890pt;}
.ws129{word-spacing:-62.549606pt;}
.wsdb{word-spacing:-61.332732pt;}
.wsdc{word-spacing:-60.445491pt;}
.ws27{word-spacing:-60.047315pt;}
.ws3{word-spacing:-48.432771pt;}
.ws0{word-spacing:-46.063600pt;}
.ws1{word-spacing:-43.749400pt;}
.ws22{word-spacing:-42.592393pt;}
.ws43{word-spacing:-41.699738pt;}
.ws2d{word-spacing:-40.934605pt;}
.ws23{word-spacing:-40.360755pt;}
.ws85{word-spacing:-39.595622pt;}
.ws7d{word-spacing:-39.149295pt;}
.wsb{word-spacing:-38.865487pt;}
.ws4e{word-spacing:-38.378865pt;}
.ws4{word-spacing:-37.352758pt;}
.wsd{word-spacing:-35.723666pt;}
.ws95{word-spacing:-31.982462pt;}
.wse1{word-spacing:-31.944294pt;}
.ws2c{word-spacing:-31.561728pt;}
.wscb{word-spacing:-31.092461pt;}
.ws25{word-spacing:-30.605312pt;}
.wsdd{word-spacing:-30.541551pt;}
.ws2{word-spacing:-30.452201pt;}
.wsba{word-spacing:-30.414029pt;}
.ws5b{word-spacing:-30.350268pt;}
.wsb2{word-spacing:-30.286507pt;}
.ws100{word-spacing:-30.222746pt;}
.wsf2{word-spacing:-30.158985pt;}
.wsdf{word-spacing:-30.146148pt;}
.wsc1{word-spacing:-30.095223pt;}
.ws68{word-spacing:-30.031462pt;}
.ws103{word-spacing:-29.967701pt;}
.wsc3{word-spacing:-29.903940pt;}
.ws80{word-spacing:-29.712657pt;}
.ws2b{word-spacing:-29.648896pt;}
.ws48{word-spacing:-29.585135pt;}
.ws11b{word-spacing:-29.521374pt;}
.ws11c{word-spacing:-29.330091pt;}
.ws10b{word-spacing:-29.266330pt;}
.ws6a{word-spacing:-29.202569pt;}
.ws69{word-spacing:-29.201033pt;}
.ws51{word-spacing:-29.138807pt;}
.wsbb{word-spacing:-29.095236pt;}
.wsbc{word-spacing:-29.054148pt;}
.ws5c{word-spacing:-29.011285pt;}
.wsc9{word-spacing:-28.972006pt;}
.ws77{word-spacing:-28.966673pt;}
.ws60{word-spacing:-28.947524pt;}
.wsec{word-spacing:-28.904818pt;}
.wsc0{word-spacing:-28.820002pt;}
.ws104{word-spacing:-28.756241pt;}
.ws70{word-spacing:-28.692480pt;}
.ws21{word-spacing:-28.628719pt;}
.wsc2{word-spacing:-28.564958pt;}
.ws94{word-spacing:-28.501197pt;}
.wsaa{word-spacing:-28.309914pt;}
.ws4d{word-spacing:-28.118630pt;}
.ws121{word-spacing:-27.927347pt;}
.ws8{word-spacing:-27.927296pt;}
.wsf7{word-spacing:-27.863586pt;}
.wsb1{word-spacing:-27.799825pt;}
.ws4c{word-spacing:-27.672303pt;}
.ws19{word-spacing:-27.636387pt;}
.ws5f{word-spacing:-27.608542pt;}
.wsd3{word-spacing:-27.544781pt;}
.ws11a{word-spacing:-27.481020pt;}
.ws54{word-spacing:-27.417259pt;}
.ws55{word-spacing:-27.353498pt;}
.ws7c{word-spacing:-27.289737pt;}
.wsad{word-spacing:-27.225975pt;}
.wsa0{word-spacing:-27.162214pt;}
.ws115{word-spacing:-27.118268pt;}
.ws47{word-spacing:-27.098453pt;}
.ws10c{word-spacing:-27.089101pt;}
.ws3f{word-spacing:-27.034692pt;}
.ws34{word-spacing:-26.970931pt;}
.ws45{word-spacing:-26.907170pt;}
.ws82{word-spacing:-26.843409pt;}
.ws12{word-spacing:-26.821841pt;}
.ws62{word-spacing:-26.779648pt;}
.ws125{word-spacing:-26.715887pt;}
.ws29{word-spacing:-26.652126pt;}
.wsa8{word-spacing:-26.591582pt;}
.ws72{word-spacing:-26.588365pt;}
.ws88{word-spacing:-26.524604pt;}
.ws1a{word-spacing:-26.472749pt;}
.ws118{word-spacing:-26.460843pt;}
.ws15{word-spacing:-26.431611pt;}
.ws50{word-spacing:-26.397082pt;}
.ws3b{word-spacing:-26.333321pt;}
.wsae{word-spacing:-26.269559pt;}
.wsaf{word-spacing:-26.205798pt;}
.wsbd{word-spacing:-26.078276pt;}
.ws3c{word-spacing:-26.014515pt;}
.wsd4{word-spacing:-25.971780pt;}
.wsac{word-spacing:-25.950754pt;}
.ws4b{word-spacing:-25.886993pt;}
.ws66{word-spacing:-25.823232pt;}
.wsbe{word-spacing:-25.802300pt;}
.ws67{word-spacing:-25.759471pt;}
.ws123{word-spacing:-25.695710pt;}
.ws9f{word-spacing:-25.631949pt;}
.ws7f{word-spacing:-25.568188pt;}
.wsb7{word-spacing:-25.504427pt;}
.wsa9{word-spacing:-25.440666pt;}
.ws3e{word-spacing:-25.376905pt;}
.ws9e{word-spacing:-25.316907pt;}
.wsde{word-spacing:-25.315251pt;}
.wsce{word-spacing:-25.313161pt;}
.ws26{word-spacing:-25.313143pt;}
.wse0{word-spacing:-25.313084pt;}
.ws6e{word-spacing:-25.312452pt;}
.ws1d{word-spacing:-25.309112pt;}
.wscf{word-spacing:-25.279002pt;}
.ws5a{word-spacing:-25.249382pt;}
.ws108{word-spacing:-25.185621pt;}
.ws11d{word-spacing:-25.121860pt;}
.wsa6{word-spacing:-25.058099pt;}
.wsfb{word-spacing:-24.998178pt;}
.wsfc{word-spacing:-24.994338pt;}
.ws64{word-spacing:-24.930577pt;}
.ws33{word-spacing:-24.866816pt;}
.wsb0{word-spacing:-24.808183pt;}
.ws20{word-spacing:-24.803055pt;}
.ws7{word-spacing:-24.785475pt;}
.ws46{word-spacing:-24.739294pt;}
.ws5{word-spacing:-24.727293pt;}
.ws110{word-spacing:-24.675533pt;}
.ws65{word-spacing:-24.611772pt;}
.ws124{word-spacing:-24.548011pt;}
.ws18{word-spacing:-24.494566pt;}
.ws87{word-spacing:-24.484250pt;}
.ws35{word-spacing:-24.420489pt;}
.ws61{word-spacing:-24.356727pt;}
.wscc{word-spacing:-24.329668pt;}
.ws17{word-spacing:-24.320020pt;}
.ws102{word-spacing:-24.292966pt;}
.wsb6{word-spacing:-24.229205pt;}
.wsb8{word-spacing:-24.165444pt;}
.ws5e{word-spacing:-24.101683pt;}
.ws71{word-spacing:-23.910400pt;}
.wsea{word-spacing:-23.846639pt;}
.wsd1{word-spacing:-23.785822pt;}
.wsd8{word-spacing:-23.784192pt;}
.ws2f{word-spacing:-23.782878pt;}
.wsa4{word-spacing:-23.782187pt;}
.wse6{word-spacing:-23.781239pt;}
.wsa7{word-spacing:-23.719117pt;}
.ws52{word-spacing:-23.655356pt;}
.ws6{word-spacing:-23.621838pt;}
.ws3a{word-spacing:-23.591595pt;}
.ws49{word-spacing:-23.527834pt;}
.ws4a{word-spacing:-23.464073pt;}
.ws86{word-spacing:-23.400311pt;}
.wsa2{word-spacing:-23.336550pt;}
.ws128{word-spacing:-23.272789pt;}
.ws10f{word-spacing:-23.145267pt;}
.wsa{word-spacing:-23.098201pt;}
.ws111{word-spacing:-23.081506pt;}
.ws117{word-spacing:-23.046596pt;}
.ws39{word-spacing:-23.017745pt;}
.ws36{word-spacing:-22.953984pt;}
.ws8c{word-spacing:-22.826462pt;}
.ws101{word-spacing:-22.768043pt;}
.ws63{word-spacing:-22.762701pt;}
.ws4f{word-spacing:-22.635179pt;}
.ws8f{word-spacing:-22.571418pt;}
.wsc4{word-spacing:-22.507657pt;}
.ws92{word-spacing:-22.443895pt;}
.ws59{word-spacing:-22.437606pt;}
.ws126{word-spacing:-22.427563pt;}
.wsff{word-spacing:-22.380134pt;}
.ws57{word-spacing:-22.316373pt;}
.ws75{word-spacing:-22.266342pt;}
.ws78{word-spacing:-22.252612pt;}
.wsa5{word-spacing:-22.188851pt;}
.wsf5{word-spacing:-22.171426pt;}
.ws41{word-spacing:-22.125090pt;}
.ws40{word-spacing:-22.061329pt;}
.ws7e{word-spacing:-22.036429pt;}
.wsa3{word-spacing:-21.997568pt;}
.wsf{word-spacing:-21.992746pt;}
.wsda{word-spacing:-21.941043pt;}
.wsf3{word-spacing:-21.883725pt;}
.ws90{word-spacing:-21.870046pt;}
.ws13{word-spacing:-21.818200pt;}
.ws24{word-spacing:-21.806285pt;}
.wsed{word-spacing:-21.742524pt;}
.ws10{word-spacing:-21.701836pt;}
.ws83{word-spacing:-21.678763pt;}
.ws8d{word-spacing:-21.615002pt;}
.ws37{word-spacing:-21.551241pt;}
.ws7a{word-spacing:-21.512994pt;}
.ws3d{word-spacing:-21.487479pt;}
.ws91{word-spacing:-21.423718pt;}
.ws119{word-spacing:-21.328913pt;}
.wsd9{word-spacing:-21.296196pt;}
.wse{word-spacing:-21.237586pt;}
.ws9{word-spacing:-21.236381pt;}
.ws114{word-spacing:-21.168674pt;}
.wsd5{word-spacing:-21.150834pt;}
.ws6c{word-spacing:-21.145500pt;}
.ws120{word-spacing:-20.977391pt;}
.ws127{word-spacing:-20.913630pt;}
.ws106{word-spacing:-20.899379pt;}
.ws116{word-spacing:-20.869163pt;}
.wsab{word-spacing:-20.849869pt;}
.wsf6{word-spacing:-20.786108pt;}
.wsf4{word-spacing:-20.722347pt;}
.ws6d{word-spacing:-20.658586pt;}
.wse7{word-spacing:-20.609101pt;}
.wsfe{word-spacing:-20.594825pt;}
.wsa1{word-spacing:-20.531063pt;}
.ws81{word-spacing:-20.467302pt;}
.ws9a{word-spacing:-20.403541pt;}
.wsb9{word-spacing:-20.339780pt;}
.ws58{word-spacing:-20.212258pt;}
.ws7b{word-spacing:-20.084736pt;}
.ws11{word-spacing:-20.072744pt;}
.wsbf{word-spacing:-20.044348pt;}
.ws8e{word-spacing:-20.020975pt;}
.ws8b{word-spacing:-20.001698pt;}
.wse3{word-spacing:-19.959842pt;}
.ws113{word-spacing:-19.957214pt;}
.ws14{word-spacing:-19.898198pt;}
.ws10d{word-spacing:-19.893453pt;}
.wsee{word-spacing:-19.835511pt;}
.wsf0{word-spacing:-19.829692pt;}
.ws38{word-spacing:-19.765931pt;}
.wse8{word-spacing:-19.514590pt;}
.ws11f{word-spacing:-19.498863pt;}
.ws98{word-spacing:-19.465882pt;}
.ws97{word-spacing:-19.405175pt;}
.ws5d{word-spacing:-19.383364pt;}
.ws74{word-spacing:-19.314509pt;}
.ws10e{word-spacing:-19.128320pt;}
.ws9d{word-spacing:-19.000798pt;}
.ws16{word-spacing:-18.967289pt;}
.wsf9{word-spacing:-18.895770pt;}
.wsc7{word-spacing:-18.826172pt;}
.wsc8{word-spacing:-18.809515pt;}
.wsb4{word-spacing:-18.745754pt;}
.ws79{word-spacing:-18.681993pt;}
.wsc6{word-spacing:-18.618231pt;}
.ws8a{word-spacing:-18.554470pt;}
.ws89{word-spacing:-18.490709pt;}
.ws1c{word-spacing:-18.443652pt;}
.wse5{word-spacing:-18.426948pt;}
.ws76{word-spacing:-18.108143pt;}
.ws1f{word-spacing:-18.026982pt;}
.ws84{word-spacing:-17.980621pt;}
.ws73{word-spacing:-17.916860pt;}
.ws6f{word-spacing:-17.534293pt;}
.wsb3{word-spacing:-17.470532pt;}
.ws9b{word-spacing:-17.425724pt;}
.wsb5{word-spacing:-17.406771pt;}
.ws112{word-spacing:-17.251345pt;}
.wsfd{word-spacing:-17.215488pt;}
.wsf8{word-spacing:-17.151727pt;}
.ws122{word-spacing:-17.087966pt;}
.wse2{word-spacing:-16.840832pt;}
.wse4{word-spacing:-16.653073pt;}
.ws11e{word-spacing:-16.577877pt;}
.ws96{word-spacing:-16.514116pt;}
.ws99{word-spacing:-16.450355pt;}
.wsc{word-spacing:-15.709104pt;}
.ws1b{word-spacing:-15.376713pt;}
.ws30{word-spacing:-14.943249pt;}
.ws109{word-spacing:-12.497169pt;}
.ws56{word-spacing:-11.632887pt;}
.wsd2{word-spacing:-11.154039pt;}
.ws9c{word-spacing:-10.775620pt;}
.wsca{word-spacing:-10.711859pt;}
.ws44{word-spacing:-9.821978pt;}
.ws31{word-spacing:-7.715089pt;}
.ws42{word-spacing:-7.651311pt;}
.wsc5{word-spacing:-7.205001pt;}
.ws10a{word-spacing:-1.912832pt;}
.ws1e{word-spacing:0.000000pt;}
.wsd7{word-spacing:4.997769pt;}
.ws2a{word-spacing:7.460045pt;}
.ws6b{word-spacing:23.145557pt;}
.wsfa{word-spacing:25.552897pt;}
.wsd6{word-spacing:28.296627pt;}
.ws32{word-spacing:30.668286pt;}
.wscd{word-spacing:95.609455pt;}
.ws28{word-spacing:142.442223pt;}
.ws53{word-spacing:597.543484pt;}
.wsd0{word-spacing:761.915810pt;}
.ws93{word-spacing:860.296704pt;}
.wsf1{word-spacing:922.916250pt;}
.ws2e{word-spacing:1295.382426pt;}
._17{margin-left:-31.880533pt;}
._1d{margin-left:-30.276722pt;}
._48{margin-left:-24.352154pt;}
._42{margin-left:-23.373350pt;}
._43{margin-left:-20.443837pt;}
._4a{margin-left:-19.472371pt;}
._45{margin-left:-8.652894pt;}
._32{margin-left:-5.302107pt;}
._2e{margin-left:-3.540763pt;}
._d{margin-left:-2.349221pt;}
._0{margin-left:-1.432600pt;}
._1{width:1.338183pt;}
._5{width:3.025457pt;}
._39{width:8.074502pt;}
._7{width:9.716372pt;}
._10{width:11.030665pt;}
._31{width:11.953975pt;}
._6{width:12.916374pt;}
._2{width:14.644402pt;}
._4{width:16.116377pt;}
._c{width:17.028611pt;}
._a{width:18.210924pt;}
._9{width:19.174195pt;}
._f{width:20.138892pt;}
._b{width:21.447162pt;}
._3{width:23.214565pt;}
._2d{width:24.739294pt;}
._29{width:26.070223pt;}
._18{width:27.842241pt;}
._35{width:29.313413pt;}
._2f{width:30.316363pt;}
._25{width:31.371353pt;}
._e{width:32.407300pt;}
._37{width:33.717948pt;}
._19{width:34.785500pt;}
._21{width:35.733922pt;}
._20{width:36.926679pt;}
._27{width:38.058334pt;}
._38{width:39.993566pt;}
._8{width:40.996269pt;}
._34{width:43.799805pt;}
._40{width:45.914389pt;}
._16{width:49.433981pt;}
._1c{width:50.761882pt;}
._26{width:52.193522pt;}
._24{width:55.013374pt;}
._3b{width:56.823561pt;}
._1e{width:59.138991pt;}
._22{width:64.471306pt;}
._28{width:73.707793pt;}
._36{width:75.592443pt;}
._3f{width:77.008730pt;}
._3d{width:81.715261pt;}
._30{width:90.715601pt;}
._3a{width:127.135349pt;}
._1b{width:156.979746pt;}
._15{width:158.828817pt;}
._1f{width:159.786033pt;}
._44{width:172.341913pt;}
._47{width:177.959322pt;}
._1a{width:181.910323pt;}
._12{width:184.141961pt;}
._46{width:345.342079pt;}
._41{width:353.507021pt;}
._3c{width:503.012939pt;}
._33{width:574.790835pt;}
._23{width:714.000074pt;}
._3e{width:798.563379pt;}
._14{width:813.405804pt;}
._49{width:869.943211pt;}
._13{width:1408.330460pt;}
._2c{width:1698.823653pt;}
._11{width:1854.821188pt;}
._2b{width:1863.809271pt;}
._2a{width:1869.864738pt;}
.fs7{font-size:38.256533pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:46.545600pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs5{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:56.149333pt;}
.y1c{bottom:96.000000pt;}
.y1fc{bottom:97.069333pt;}
.y167{bottom:98.709333pt;}
.yb2{bottom:103.436000pt;}
.y123{bottom:108.029333pt;}
.y1a8{bottom:108.870667pt;}
.ycd{bottom:111.516000pt;}
.y150{bottom:113.310667pt;}
.y1b{bottom:115.872000pt;}
.y61{bottom:116.577333pt;}
.y13a{bottom:117.152000pt;}
.y1df{bottom:117.186667pt;}
.y43{bottom:119.268000pt;}
.y166{bottom:119.896000pt;}
.y10b{bottom:119.968000pt;}
.yb1{bottom:124.622667pt;}
.y7d{bottom:126.829333pt;}
.y122{bottom:129.216000pt;}
.y1fb{bottom:129.594667pt;}
.yc5{bottom:129.820000pt;}
.y1a7{bottom:130.058667pt;}
.y91{bottom:133.013333pt;}
.yc9{bottom:133.970667pt;}
.y1a{bottom:135.744000pt;}
.y60{bottom:137.764000pt;}
.y17c{bottom:137.861333pt;}
.y139{bottom:138.340000pt;}
.y1de{bottom:138.374667pt;}
.y1c4{bottom:138.676000pt;}
.y165{bottom:141.084000pt;}
.y14f{bottom:145.836000pt;}
.y191{bottom:147.348000pt;}
.y7c{bottom:148.017333pt;}
.yc0{bottom:148.385333pt;}
.yc4{bottom:149.081333pt;}
.y121{bottom:150.404000pt;}
.y1fa{bottom:150.782667pt;}
.y1a6{bottom:151.245333pt;}
.ycc{bottom:152.525333pt;}
.yc8{bottom:153.232000pt;}
.y90{bottom:154.200000pt;}
.y19{bottom:155.616000pt;}
.y42{bottom:156.396000pt;}
.yb0{bottom:157.149333pt;}
.y10a{bottom:158.689333pt;}
.y5f{bottom:158.952000pt;}
.y17b{bottom:159.048000pt;}
.y164{bottom:162.270667pt;}
.y14e{bottom:167.024000pt;}
.ybd{bottom:168.417333pt;}
.ybb{bottom:168.428000pt;}
.y190{bottom:168.534667pt;}
.y7b{bottom:169.204000pt;}
.y8f{bottom:169.790667pt;}
.y1c3{bottom:171.201333pt;}
.ycb{bottom:171.786667pt;}
.y1f9{bottom:171.969333pt;}
.y1a5{bottom:172.433333pt;}
.y8e{bottom:177.762667pt;}
.yaf{bottom:178.336000pt;}
.y17a{bottom:180.236000pt;}
.y1dd{bottom:180.398667pt;}
.y163{bottom:183.458667pt;}
.y120{bottom:184.874667pt;}
.y18{bottom:186.828000pt;}
.ye0{bottom:187.270667pt;}
.ybc{bottom:187.678667pt;}
.yba{bottom:187.689333pt;}
.y138{bottom:188.134667pt;}
.y18f{bottom:189.722667pt;}
.y109{bottom:191.216000pt;}
.y1c2{bottom:192.389333pt;}
.y1f8{bottom:193.157333pt;}
.y41{bottom:193.524000pt;}
.y14d{bottom:197.708000pt;}
.yae{bottom:199.524000pt;}
.y8d{bottom:200.373333pt;}
.y179{bottom:201.422667pt;}
.y7a{bottom:203.674667pt;}
.y11f{bottom:206.061333pt;}
.y17{bottom:206.700000pt;}
.yc2{bottom:206.949333pt;}
.y5e{bottom:209.012000pt;}
.y18e{bottom:210.909333pt;}
.y1a4{bottom:212.929333pt;}
.y1c1{bottom:213.576000pt;}
.y1f7{bottom:214.344000pt;}
.y14c{bottom:218.896000pt;}
.yad{bottom:220.710667pt;}
.ydf{bottom:221.374667pt;}
.y8c{bottom:221.560000pt;}
.y79{bottom:224.862667pt;}
.y137{bottom:225.477333pt;}
.y16{bottom:226.572000pt;}
.y108{bottom:229.937333pt;}
.y40{bottom:230.650667pt;}
.yde{bottom:232.693333pt;}
.y1dc{bottom:234.112000pt;}
.y1c0{bottom:234.764000pt;}
.y162{bottom:236.578667pt;}
.yf5{bottom:237.874667pt;}
.y14b{bottom:240.082667pt;}
.yac{bottom:241.898667pt;}
.y1a3{bottom:245.454667pt;}
.y78{bottom:246.049333pt;}
.y15{bottom:246.444000pt;}
.y5d{bottom:247.733333pt;}
.y3f{bottom:251.838667pt;}
.y178{bottom:253.294667pt;}
.y1f6{bottom:254.840000pt;}
.y1db{bottom:255.298667pt;}
.y11e{bottom:255.856000pt;}
.y1bf{bottom:255.950667pt;}
.ydd{bottom:258.953333pt;}
.yf4{bottom:259.062667pt;}
.y18d{bottom:260.704000pt;}
.y136{bottom:261.032000pt;}
.y14a{bottom:261.270667pt;}
.yab{bottom:263.085333pt;}
.y14{bottom:266.316000pt;}
.y1a2{bottom:266.642667pt;}
.y77{bottom:267.237333pt;}
.y107{bottom:268.658667pt;}
.y5c{bottom:268.921333pt;}
.y3e{bottom:273.025333pt;}
.y8b{bottom:274.585333pt;}
.y1f5{bottom:276.028000pt;}
.y1da{bottom:276.486667pt;}
.ydc{bottom:280.141333pt;}
.y135{bottom:282.218667pt;}
.yaa{bottom:284.273333pt;}
.y13{bottom:286.189333pt;}
.y1a1{bottom:287.829333pt;}
.y11d{bottom:288.381333pt;}
.y76{bottom:288.424000pt;}
.y5b{bottom:290.108000pt;}
.y3d{bottom:294.213333pt;}
.y18c{bottom:295.174667pt;}
.y1be{bottom:296.446667pt;}
.y1f4{bottom:297.214667pt;}
.y177{bottom:298.158667pt;}
.y106{bottom:301.185333pt;}
.yf3{bottom:301.266667pt;}
.ya9{bottom:305.460000pt;}
.y12{bottom:306.061333pt;}
.y149{bottom:306.134667pt;}
.y161{bottom:308.852000pt;}
.y1d9{bottom:309.012000pt;}
.y1a0{bottom:309.017333pt;}
.y11c{bottom:309.569333pt;}
.y5a{bottom:311.296000pt;}
.yf2{bottom:312.585333pt;}
.ydb{bottom:314.178667pt;}
.y134{bottom:314.745333pt;}
.y3c{bottom:315.400000pt;}
.y1bd{bottom:317.634667pt;}
.y1f3{bottom:318.402667pt;}
.y75{bottom:322.894667pt;}
.y18b{bottom:329.645333pt;}
.y1d8{bottom:330.200000pt;}
.y19f{bottom:330.204000pt;}
.y11b{bottom:330.756000pt;}
.y105{bottom:335.584000pt;}
.y133{bottom:335.932000pt;}
.y3b{bottom:336.588000pt;}
.yda{bottom:337.056000pt;}
.ya8{bottom:337.986667pt;}
.y1bc{bottom:338.821333pt;}
.y1f2{bottom:339.589333pt;}
.y104{bottom:339.906667pt;}
.y11{bottom:342.006667pt;}
.y74{bottom:344.082667pt;}
.y160{bottom:347.573333pt;}
.y132{bottom:357.120000pt;}
.yf1{bottom:357.544000pt;}
.y3a{bottom:357.774667pt;}
.ya7{bottom:359.173333pt;}
.y1bb{bottom:360.009333pt;}
.y1f1{bottom:360.777333pt;}
.y59{bottom:361.090667pt;}
.y176{bottom:362.530667pt;}
.y73{bottom:365.269333pt;}
.y8a{bottom:368.045333pt;}
.y11a{bottom:369.478667pt;}
.y148{bottom:370.506667pt;}
.y1d7{bottom:370.722667pt;}
.yd9{bottom:370.790667pt;}
.yb7{bottom:371.657333pt;}
.y10{bottom:377.952000pt;}
.y103{bottom:378.628000pt;}
.y39{bottom:378.962667pt;}
.y18a{bottom:379.440000pt;}
.y15f{bottom:380.098667pt;}
.ya6{bottom:380.361333pt;}
.y1ba{bottom:381.196000pt;}
.y1f0{bottom:381.964000pt;}
.y58{bottom:382.277333pt;}
.y19e{bottom:383.229333pt;}
.y175{bottom:383.717333pt;}
.y89{bottom:389.232000pt;}
.yb6{bottom:390.917333pt;}
.y147{bottom:391.693333pt;}
.yf{bottom:397.824000pt;}
.yef{bottom:399.748000pt;}
.y38{bottom:400.149333pt;}
.y15e{bottom:401.286667pt;}
.ya5{bottom:401.548000pt;}
.y131{bottom:401.984000pt;}
.y1d6{bottom:402.876000pt;}
.y1ef{bottom:403.152000pt;}
.yd8{bottom:403.316000pt;}
.y174{bottom:404.905333pt;}
.yf0{bottom:406.744000pt;}
.y119{bottom:408.200000pt;}
.yee{bottom:411.066667pt;}
.y1b9{bottom:413.722667pt;}
.y72{bottom:415.064000pt;}
.y57{bottom:416.748000pt;}
.ye{bottom:417.696000pt;}
.y88{bottom:421.758667pt;}
.y15d{bottom:422.473333pt;}
.ya4{bottom:422.736000pt;}
.y189{bottom:424.304000pt;}
.yd7{bottom:424.504000pt;}
.y173{bottom:426.092000pt;}
.y1b8{bottom:434.909333pt;}
.y1d5{bottom:435.028000pt;}
.y71{bottom:436.252000pt;}
.y37{bottom:437.277333pt;}
.y56{bottom:437.936000pt;}
.y146{bottom:441.488000pt;}
.y102{bottom:441.838667pt;}
.y87{bottom:442.945333pt;}
.yd6{bottom:445.690667pt;}
.yd{bottom:448.906667pt;}
.y172{bottom:449.017333pt;}
.y118{bottom:453.064000pt;}
.ya3{bottom:455.261333pt;}
.y19d{bottom:455.501333pt;}
.yed{bottom:456.024000pt;}
.y1b7{bottom:456.097333pt;}
.y36{bottom:458.464000pt;}
.y145{bottom:462.674667pt;}
.y86{bottom:464.133333pt;}
.y130{bottom:466.354667pt;}
.y1d4{bottom:467.181333pt;}
.yc{bottom:468.780000pt;}
.y15c{bottom:472.268000pt;}
.y1ee{bottom:474.332000pt;}
.ya2{bottom:476.448000pt;}
.y1b6{bottom:477.284000pt;}
.y35{bottom:479.652000pt;}
.yd5{bottom:479.729333pt;}
.y85{bottom:485.320000pt;}
.y101{bottom:487.310667pt;}
.y12f{bottom:487.542667pt;}
.y171{bottom:487.568000pt;}
.y55{bottom:487.730667pt;}
.y188{bottom:488.676000pt;}
.y19c{bottom:494.224000pt;}
.y1ed{bottom:495.520000pt;}
.y144{bottom:497.146667pt;}
.ya1{bottom:497.636000pt;}
.y1b5{bottom:498.472000pt;}
.y100{bottom:498.629333pt;}
.y1d3{bottom:499.334667pt;}
.y70{bottom:499.462667pt;}
.y34{bottom:500.838667pt;}
.yd4{bottom:502.605333pt;}
.yb{bottom:504.725333pt;}
.yec{bottom:506.085333pt;}
.y15b{bottom:506.738667pt;}
.y12e{bottom:508.729333pt;}
.y170{bottom:508.756000pt;}
.y54{bottom:508.917333pt;}
.y187{bottom:509.862667pt;}
.y1ec{bottom:516.706667pt;}
.y117{bottom:517.436000pt;}
.ya0{bottom:518.822667pt;}
.y1b4{bottom:519.658667pt;}
.y6f{bottom:520.649333pt;}
.y33{bottom:522.026667pt;}
.yc7{bottom:524.354667pt;}
.y19b{bottom:526.749333pt;}
.y186{bottom:531.050667pt;}
.y143{bottom:531.617333pt;}
.y84{bottom:535.114667pt;}
.yd3{bottom:536.340000pt;}
.y1eb{bottom:537.894667pt;}
.y116{bottom:538.622667pt;}
.y1d2{bottom:539.857333pt;}
.y9f{bottom:540.010667pt;}
.ya{bottom:540.670667pt;}
.y15a{bottom:541.209333pt;}
.y53{bottom:541.442667pt;}
.y6e{bottom:541.837333pt;}
.y32{bottom:543.213333pt;}
.yc3{bottom:543.604000pt;}
.yff{bottom:544.113333pt;}
.yeb{bottom:544.806667pt;}
.ybf{bottom:547.066667pt;}
.y19a{bottom:547.937333pt;}
.y16f{bottom:553.620000pt;}
.y83{bottom:556.302667pt;}
.yd2{bottom:557.528000pt;}
.y12d{bottom:558.524000pt;}
.y1ea{bottom:559.081333pt;}
.y115{bottom:559.810667pt;}
.y1b3{bottom:560.154667pt;}
.y9{bottom:560.542667pt;}
.y9e{bottom:561.197333pt;}
.y185{bottom:561.734667pt;}
.y52{bottom:562.630667pt;}
.y6d{bottom:563.024000pt;}
.y31{bottom:564.401333pt;}
.y199{bottom:569.124000pt;}
.yca{bottom:570.466667pt;}
.y1d1{bottom:572.384000pt;}
.y159{bottom:575.680000pt;}
.yfe{bottom:576.640000pt;}
.yd1{bottom:578.714667pt;}
.y1e9{bottom:580.269333pt;}
.y8{bottom:580.414667pt;}
.y114{bottom:580.997333pt;}
.y1b2{bottom:581.342667pt;}
.y142{bottom:581.412000pt;}
.y9d{bottom:582.385333pt;}
.y184{bottom:582.922667pt;}
.y51{bottom:583.817333pt;}
.y6c{bottom:584.212000pt;}
.yb9{bottom:586.358667pt;}
.yc6{bottom:586.369333pt;}
.y82{bottom:590.773333pt;}
.y12c{bottom:592.994667pt;}
.y1d0{bottom:593.570667pt;}
.yea{bottom:594.866667pt;}
.y7{bottom:600.286667pt;}
.y30{bottom:601.529333pt;}
.y1b1{bottom:602.529333pt;}
.yfd{bottom:603.002667pt;}
.y9c{bottom:603.572000pt;}
.y183{bottom:604.109333pt;}
.y50{bottom:605.005333pt;}
.y6b{bottom:605.398667pt;}
.yb8{bottom:605.620000pt;}
.yc1{bottom:605.630667pt;}
.y158{bottom:610.152000pt;}
.y81{bottom:611.960000pt;}
.y12b{bottom:614.182667pt;}
.y1cf{bottom:614.758667pt;}
.y16e{bottom:617.990667pt;}
.y198{bottom:618.918667pt;}
.y1e8{bottom:620.765333pt;}
.y2f{bottom:622.716000pt;}
.y1b0{bottom:623.717333pt;}
.y182{bottom:625.297333pt;}
.yd0{bottom:625.382667pt;}
.y4f{bottom:626.192000pt;}
.y6a{bottom:626.586667pt;}
.yfc{bottom:628.512000pt;}
.ye9{bottom:633.588000pt;}
.y113{bottom:634.117333pt;}
.y6{bottom:635.614667pt;}
.y1ce{bottom:635.945333pt;}
.y9b{bottom:636.098667pt;}
.y16d{bottom:639.178667pt;}
.y1e7{bottom:641.952000pt;}
.y2e{bottom:643.904000pt;}
.y141{bottom:644.622667pt;}
.y80{bottom:646.432000pt;}
.y181{bottom:646.484000pt;}
.y4e{bottom:647.380000pt;}
.y12a{bottom:648.653333pt;}
.y197{bottom:653.389333pt;}
.y1cd{bottom:657.133333pt;}
.y9a{bottom:657.285333pt;}
.y157{bottom:659.945333pt;}
.y16c{bottom:660.365333pt;}
.y1e6{bottom:663.140000pt;}
.y2d{bottom:665.090667pt;}
.y140{bottom:665.809333pt;}
.y4d{bottom:668.566667pt;}
.y1af{bottom:673.510667pt;}
.y99{bottom:678.473333pt;}
.yfb{bottom:678.572000pt;}
.y69{bottom:679.610667pt;}
.y7f{bottom:680.902667pt;}
.y156{bottom:681.133333pt;}
.y16b{bottom:681.553333pt;}
.ye8{bottom:683.648000pt;}
.y1e5{bottom:684.326667pt;}
.y2c{bottom:686.278667pt;}
.y13f{bottom:686.997333pt;}
.y196{bottom:687.860000pt;}
.ycf{bottom:689.754667pt;}
.y5{bottom:690.960000pt;}
.y180{bottom:691.348000pt;}
.y129{bottom:698.448000pt;}
.y98{bottom:699.660000pt;}
.y4c{bottom:701.093333pt;}
.y7e{bottom:702.089333pt;}
.y1e4{bottom:705.514667pt;}
.y112{bottom:706.390667pt;}
.y1cc{bottom:707.193333pt;}
.y1ae{bottom:707.982667pt;}
.yce{bottom:710.941333pt;}
.yfa{bottom:717.294667pt;}
.y97{bottom:720.848000pt;}
.y4b{bottom:722.280000pt;}
.y195{bottom:722.330667pt;}
.ye7{bottom:722.370667pt;}
.y2b{bottom:723.405333pt;}
.y155{bottom:725.997333pt;}
.y16a{bottom:726.417333pt;}
.y1e3{bottom:726.701333pt;}
.y111{bottom:727.577333pt;}
.y13e{bottom:731.860000pt;}
.y128{bottom:732.710667pt;}
.y4{bottom:741.038667pt;}
.y96{bottom:742.034667pt;}
.y200{bottom:742.386667pt;}
.y1ad{bottom:742.453333pt;}
.y4a{bottom:743.468000pt;}
.y2a{bottom:744.593333pt;}
.y1cb{bottom:745.914667pt;}
.ye6{bottom:748.372000pt;}
.y68{bottom:751.884000pt;}
.y17f{bottom:755.720000pt;}
.y194{bottom:756.801333pt;}
.yf9{bottom:762.670667pt;}
.y95{bottom:763.222667pt;}
.y1ff{bottom:763.573333pt;}
.y49{bottom:764.654667pt;}
.y29{bottom:765.780000pt;}
.y1ca{bottom:767.102667pt;}
.y1e2{bottom:767.197333pt;}
.y127{bottom:771.262667pt;}
.y67{bottom:773.070667pt;}
.y17e{bottom:776.908000pt;}
.y1ac{bottom:776.924000pt;}
.y110{bottom:779.450667pt;}
.y1fe{bottom:784.761333pt;}
.yb5{bottom:785.441333pt;}
.yf8{bottom:785.546667pt;}
.y28{bottom:786.968000pt;}
.ye5{bottom:787.449333pt;}
.y1c9{bottom:788.289333pt;}
.y154{bottom:790.369333pt;}
.y169{bottom:790.789333pt;}
.y193{bottom:791.273333pt;}
.y126{bottom:792.449333pt;}
.y94{bottom:795.748000pt;}
.y13d{bottom:796.232000pt;}
.y17d{bottom:798.094667pt;}
.y1e1{bottom:799.724000pt;}
.y10f{bottom:800.637333pt;}
.y3{bottom:802.589333pt;}
.y48{bottom:803.377333pt;}
.y66{bottom:805.597333pt;}
.y1fd{bottom:805.948000pt;}
.y27{bottom:808.154667pt;}
.ye4{bottom:808.636000pt;}
.y1c8{bottom:809.477333pt;}
.y1ab{bottom:811.394667pt;}
.y153{bottom:811.556000pt;}
.y168{bottom:811.976000pt;}
.y125{bottom:813.637333pt;}
.y93{bottom:816.936000pt;}
.yf7{bottom:819.282667pt;}
.y1e0{bottom:820.910667pt;}
.y192{bottom:825.744000pt;}
.y65{bottom:826.784000pt;}
.y26{bottom:829.342667pt;}
.y152{bottom:832.744000pt;}
.y10e{bottom:833.164000pt;}
.y92{bottom:838.122667pt;}
.y2{bottom:839.120000pt;}
.ye3{bottom:839.922667pt;}
.y1c7{bottom:842.002667pt;}
.y47{bottom:842.098667pt;}
.y13c{bottom:846.026667pt;}
.y64{bottom:847.972000pt;}
.yb4{bottom:849.813333pt;}
.ye2{bottom:851.241333pt;}
.y10d{bottom:854.350667pt;}
.yf6{bottom:858.004000pt;}
.y124{bottom:858.500000pt;}
.y22{bottom:859.310667pt;}
.y1aa{bottom:861.189333pt;}
.y1c6{bottom:863.190667pt;}
.y46{bottom:863.285333pt;}
.y25{bottom:866.469333pt;}
.y13b{bottom:867.214667pt;}
.y63{bottom:869.158667pt;}
.yb3{bottom:871.000000pt;}
.y10c{bottom:875.538667pt;}
.y1{bottom:875.649333pt;}
.y21{bottom:880.497333pt;}
.y1a9{bottom:882.376000pt;}
.y1c5{bottom:884.377333pt;}
.y45{bottom:884.473333pt;}
.y151{bottom:888.401333pt;}
.y62{bottom:890.346667pt;}
.ye1{bottom:896.725333pt;}
.y20{bottom:901.685333pt;}
.y24{bottom:903.597333pt;}
.y1f{bottom:922.872000pt;}
.y44{bottom:937.497333pt;}
.ybe{bottom:941.589333pt;}
.y23{bottom:943.702667pt;}
.y1e{bottom:944.060000pt;}
.h3{height:45.381856pt;}
.h5{height:49.733632pt;}
.h2{height:59.680192pt;}
.h7{height:71.616064pt;}
.h4{height:73.658243pt;}
.h6{height:80.721510pt;}
.h8{height:81.945396pt;}
.hb{height:81.950730pt;}
.h19{height:83.092063pt;}
.h1{height:85.956000pt;}
.h1b{height:96.406844pt;}
.h16{height:96.865542pt;}
.h9{height:97.188063pt;}
.h17{height:98.012177pt;}
.h1a{height:99.236063pt;}
.ha{height:112.609510pt;}
.hc{height:116.238381pt;}
.h10{height:125.996177pt;}
.h11{height:126.950844pt;}
.hf{height:126.956177pt;}
.hd{height:127.220063pt;}
.he{height:127.225396pt;}
.h12{height:127.622844pt;}
.h13{height:128.366730pt;}
.h14{height:144.241510pt;}
.h1c{height:172.225510pt;}
.h18{height:172.230844pt;}
.h15{height:173.454730pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:96.000000pt;}
.xf{left:113.789333pt;}
.xd{left:119.910667pt;}
.x10{left:121.568000pt;}
.x2{left:123.518667pt;}
.x15{left:132.180000pt;}
.x8{left:135.850667pt;}
.x14{left:153.296000pt;}
.x7{left:157.669333pt;}
.x13{left:173.289333pt;}
.x38{left:213.361333pt;}
.x2d{left:258.033333pt;}
.x1a{left:261.718667pt;}
.x19{left:275.965333pt;}
.x1{left:284.121333pt;}
.x2e{left:287.086667pt;}
.x28{left:294.830667pt;}
.x3{left:297.166667pt;}
.x18{left:322.353333pt;}
.x29{left:323.882667pt;}
.x22{left:325.662667pt;}
.x4{left:327.145333pt;}
.x16{left:330.765333pt;}
.x1e{left:332.646667pt;}
.xe{left:335.193333pt;}
.x17{left:336.598667pt;}
.x1d{left:337.925333pt;}
.x33{left:339.441333pt;}
.x9{left:341.533333pt;}
.xa{left:347.194667pt;}
.x2b{left:350.578667pt;}
.x2f{left:352.218667pt;}
.x20{left:353.417333pt;}
.x1f{left:357.446667pt;}
.x31{left:364.064000pt;}
.x23{left:365.888000pt;}
.x2a{left:368.100000pt;}
.x2c{left:373.186667pt;}
.x21{left:374.804000pt;}
.x37{left:377.326667pt;}
.x6{left:378.553333pt;}
.x1b{left:383.606667pt;}
.x5{left:384.701333pt;}
.x35{left:386.316000pt;}
.x32{left:387.584000pt;}
.x24{left:389.697333pt;}
.x12{left:398.340000pt;}
.xb{left:403.217333pt;}
.x25{left:415.974667pt;}
.x1c{left:417.377333pt;}
.x36{left:421.212000pt;}
.x30{left:425.285333pt;}
.x26{left:436.365333pt;}
.x27{left:473.832000pt;}
.x11{left:550.402667pt;}
.x34{left:575.017333pt;}
}




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