
    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_feb84d8dddcd8e3859158f84.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_8eada24364321fb97ae496d4.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_c855f700c52be275700e22ca.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_9111cdf18f06d8907cc4b9c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:2.552000;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);}
.v15{vertical-align:-102.318000px;}
.v3{vertical-align:-95.340000px;}
.v5{vertical-align:-25.896000px;}
.vd{vertical-align:-24.066000px;}
.vf{vertical-align:-18.936000px;}
.v1{vertical-align:-15.066000px;}
.v17{vertical-align:-12.876000px;}
.v12{vertical-align:-11.046000px;}
.ve{vertical-align:-1.830000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.830000px;}
.v13{vertical-align:11.046000px;}
.v16{vertical-align:17.106000px;}
.v4{vertical-align:18.294000px;}
.v10{vertical-align:21.234000px;}
.v2{vertical-align:25.902000px;}
.v11{vertical-align:29.700000px;}
.v1a{vertical-align:35.868000px;}
.v7{vertical-align:36.948000px;}
.v14{vertical-align:39.888000px;}
.v19{vertical-align:43.044000px;}
.v8{vertical-align:50.934000px;}
.v6{vertical-align:52.008000px;}
.vb{vertical-align:76.836000px;}
.va{vertical-align:87.882000px;}
.v18{vertical-align:97.092000px;}
.v9{vertical-align:102.942000px;}
.ls4{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.000317px;}
.ls49{letter-spacing:0.000518px;}
.ls76{letter-spacing:0.000996px;}
.ls50{letter-spacing:0.001526px;}
.ls10{letter-spacing:0.002131px;}
.ls5f{letter-spacing:0.003091px;}
.ls81{letter-spacing:0.003341px;}
.ls20{letter-spacing:0.004186px;}
.ls6b{letter-spacing:0.004541px;}
.ls7b{letter-spacing:0.005904px;}
.ls2{letter-spacing:0.785455px;}
.ls3{letter-spacing:0.860774px;}
.ls1{letter-spacing:1.032926px;}
.ls5{letter-spacing:1.239509px;}
.ls0{letter-spacing:1.487700px;}
.ls39{letter-spacing:2.988430px;}
.lse{letter-spacing:2.988464px;}
.lsb{letter-spacing:2.989577px;}
.ls22{letter-spacing:2.994464px;}
.ls14{letter-spacing:3.155242px;}
.ls17{letter-spacing:3.658858px;}
.ls8{letter-spacing:5.289218px;}
.ls7{letter-spacing:5.295218px;}
.ls74{letter-spacing:7.174541px;}
.lsa{letter-spacing:10.113091px;}
.ls6c{letter-spacing:10.158464px;}
.ls69{letter-spacing:10.164464px;}
.ls62{letter-spacing:11.438131px;}
.ls6a{letter-spacing:11.956541px;}
.ls54{letter-spacing:12.844858px;}
.ls2c{letter-spacing:13.910966px;}
.ls9{letter-spacing:13.916966px;}
.ls35{letter-spacing:14.850430px;}
.ls75{letter-spacing:14.946464px;}
.ls25{letter-spacing:15.366464px;}
.ls27{letter-spacing:15.491242px;}
.ls63{letter-spacing:15.924326px;}
.ls72{letter-spacing:15.936931px;}
.ls6f{letter-spacing:15.941251px;}
.ls71{letter-spacing:15.947251px;}
.ls37{letter-spacing:16.212430px;}
.ls4e{letter-spacing:16.259078px;}
.ls40{letter-spacing:16.602464px;}
.ls82{letter-spacing:16.854464px;}
.ls80{letter-spacing:16.896464px;}
.ls24{letter-spacing:17.526464px;}
.ls66{letter-spacing:17.788186px;}
.ls4c{letter-spacing:17.788858px;}
.ls23{letter-spacing:17.789242px;}
.ls16{letter-spacing:17.791114px;}
.ls64{letter-spacing:17.794186px;}
.ls57{letter-spacing:17.994464px;}
.lsd{letter-spacing:18.481805px;}
.ls2d{letter-spacing:18.721843px;}
.ls38{letter-spacing:18.930430px;}
.ls11{letter-spacing:18.930464px;}
.ls15{letter-spacing:18.934846px;}
.ls51{letter-spacing:19.248464px;}
.ls4f{letter-spacing:19.254464px;}
.ls45{letter-spacing:19.398464px;}
.ls7f{letter-spacing:19.548464px;}
.ls3c{letter-spacing:19.854430px;}
.ls73{letter-spacing:19.930541px;}
.ls5c{letter-spacing:20.682464px;}
.ls21{letter-spacing:20.778464px;}
.ls5b{letter-spacing:21.316858px;}
.ls41{letter-spacing:21.408464px;}
.ls56{letter-spacing:21.706858px;}
.ls2b{letter-spacing:21.852430px;}
.ls5a{letter-spacing:21.858464px;}
.ls7e{letter-spacing:21.876430px;}
.ls33{letter-spacing:22.098430px;}
.ls59{letter-spacing:22.108858px;}
.ls1d{letter-spacing:22.308480px;}
.ls3b{letter-spacing:22.380430px;}
.ls36{letter-spacing:22.470430px;}
.ls29{letter-spacing:22.493242px;}
.ls46{letter-spacing:22.738790px;}
.ls12{letter-spacing:22.914464px;}
.lsf{letter-spacing:22.920464px;}
.ls1c{letter-spacing:23.332846px;}
.ls2f{letter-spacing:23.922430px;}
.ls58{letter-spacing:23.990371px;}
.ls55{letter-spacing:24.696464px;}
.ls4d{letter-spacing:24.959242px;}
.ls7a{letter-spacing:25.177651px;}
.ls60{letter-spacing:25.221218px;}
.ls77{letter-spacing:25.475924px;}
.ls47{letter-spacing:25.752464px;}
.ls53{letter-spacing:26.100464px;}
.ls48{letter-spacing:27.038371px;}
.ls52{letter-spacing:27.101558px;}
.ls3f{letter-spacing:27.302371px;}
.ls4b{letter-spacing:27.936464px;}
.ls44{letter-spacing:28.490371px;}
.lsc{letter-spacing:29.810966px;}
.ls2e{letter-spacing:29.952430px;}
.ls68{letter-spacing:30.084464px;}
.ls79{letter-spacing:30.090464px;}
.ls19{letter-spacing:30.566371px;}
.ls2a{letter-spacing:30.614371px;}
.ls43{letter-spacing:31.904371px;}
.ls65{letter-spacing:32.242186px;}
.ls67{letter-spacing:32.248186px;}
.ls30{letter-spacing:32.264371px;}
.ls13{letter-spacing:32.504966px;}
.ls32{letter-spacing:33.026966px;}
.ls5e{letter-spacing:33.424445px;}
.ls18{letter-spacing:33.632371px;}
.ls42{letter-spacing:34.034371px;}
.ls34{letter-spacing:34.170480px;}
.ls7c{letter-spacing:35.232464px;}
.ls6{letter-spacing:35.865600px;}
.ls5d{letter-spacing:35.866445px;}
.ls1f{letter-spacing:35.918371px;}
.ls78{letter-spacing:36.672480px;}
.ls3e{letter-spacing:38.328480px;}
.ls6e{letter-spacing:38.940480px;}
.ls61{letter-spacing:40.098480px;}
.ls70{letter-spacing:41.760931px;}
.ls3a{letter-spacing:42.006480px;}
.ls31{letter-spacing:43.632480px;}
.ls1e{letter-spacing:44.100480px;}
.ls3d{letter-spacing:44.382480px;}
.ls1a{letter-spacing:44.766480px;}
.ls28{letter-spacing:44.802480px;}
.ls7d{letter-spacing:45.780480px;}
.ls1b{letter-spacing:45.816480px;}
.ls26{letter-spacing:47.064480px;}
.ls6d{letter-spacing:812.952931px;}
.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;}
}
.wsfb{word-spacing:-73.094093px;}
.wsb0{word-spacing:-70.655232px;}
.ws1f{word-spacing:-67.553230px;}
.ws7f{word-spacing:-66.638285px;}
.wsec{word-spacing:-63.840768px;}
.ws4{word-spacing:-54.486868px;}
.ws1{word-spacing:-51.821550px;}
.ws0{word-spacing:-48.846150px;}
.ws2b{word-spacing:-47.916442px;}
.ws1d{word-spacing:-45.405850px;}
.ws45{word-spacing:-44.545075px;}
.ws4c{word-spacing:-44.042957px;}
.ws82{word-spacing:-43.182182px;}
.ws25{word-spacing:-43.176223px;}
.ws5{word-spacing:-42.021853px;}
.ws13{word-spacing:-41.432762px;}
.ws16{word-spacing:-40.647307px;}
.ws7{word-spacing:-40.189124px;}
.ws2d{word-spacing:-35.980270px;}
.ws3e{word-spacing:-34.430976px;}
.wscb{word-spacing:-34.359245px;}
.ws3{word-spacing:-34.258726px;}
.ws2{word-spacing:-34.172648px;}
.ws10a{word-spacing:-34.072320px;}
.ws72{word-spacing:-33.928858px;}
.ws70{word-spacing:-33.857126px;}
.wse1{word-spacing:-33.713664px;}
.wsdd{word-spacing:-33.498470px;}
.wsc6{word-spacing:-33.426739px;}
.ws23{word-spacing:-33.355008px;}
.wsca{word-spacing:-33.283277px;}
.wsc5{word-spacing:-33.211546px;}
.wsdb{word-spacing:-33.139814px;}
.ws84{word-spacing:-33.068083px;}
.ws49{word-spacing:-32.996352px;}
.wsda{word-spacing:-32.852890px;}
.ws95{word-spacing:-32.637696px;}
.ws4f{word-spacing:-32.517920px;}
.wsff{word-spacing:-32.422502px;}
.wse2{word-spacing:-32.350771px;}
.ws71{word-spacing:-32.100317px;}
.ws6f{word-spacing:-32.099002px;}
.ws64{word-spacing:-31.992115px;}
.wsf8{word-spacing:-31.920384px;}
.wsa5{word-spacing:-31.848653px;}
.ws6d{word-spacing:-31.705190px;}
.wsce{word-spacing:-31.561728px;}
.ws9a{word-spacing:-31.489997px;}
.wsd4{word-spacing:-31.418266px;}
.ws15{word-spacing:-31.418208px;}
.ws85{word-spacing:-31.274803px;}
.ws9d{word-spacing:-31.203072px;}
.ws8d{word-spacing:-31.131341px;}
.ws2c{word-spacing:-31.059610px;}
.ws94{word-spacing:-30.928723px;}
.ws74{word-spacing:-30.775229px;}
.ws75{word-spacing:-30.772685px;}
.wsdf{word-spacing:-30.629222px;}
.wsaa{word-spacing:-30.557491px;}
.ws40{word-spacing:-30.485760px;}
.ws2e{word-spacing:-30.414029px;}
.wse3{word-spacing:-30.342298px;}
.ws90{word-spacing:-30.270566px;}
.wsf7{word-spacing:-30.198835px;}
.wsd6{word-spacing:-30.127104px;}
.ws9e{word-spacing:-30.055373px;}
.ws20{word-spacing:-29.983642px;}
.ws6e{word-spacing:-29.940317px;}
.wsab{word-spacing:-29.911910px;}
.wsad{word-spacing:-29.840179px;}
.ws92{word-spacing:-29.696717px;}
.wsf4{word-spacing:-29.624986px;}
.ws87{word-spacing:-29.553254px;}
.ws88{word-spacing:-29.481523px;}
.ws8e{word-spacing:-29.409792px;}
.wse5{word-spacing:-29.194598px;}
.ws107{word-spacing:-29.151158px;}
.wse0{word-spacing:-29.122867px;}
.ws101{word-spacing:-29.051136px;}
.ws12{word-spacing:-28.996388px;}
.ws103{word-spacing:-28.907674px;}
.wsd0{word-spacing:-28.835942px;}
.ws8{word-spacing:-28.800024px;}
.wsfe{word-spacing:-28.764211px;}
.ws63{word-spacing:-28.692480px;}
.wsc0{word-spacing:-28.549018px;}
.wsee{word-spacing:-28.480502px;}
.wsef{word-spacing:-28.480426px;}
.wsbc{word-spacing:-28.480272px;}
.ws106{word-spacing:-28.479341px;}
.wsf6{word-spacing:-28.478506px;}
.ws29{word-spacing:-28.477286px;}
.wsbd{word-spacing:-28.474051px;}
.ws36{word-spacing:-28.333824px;}
.ws109{word-spacing:-28.262093px;}
.wsbe{word-spacing:-28.216771px;}
.wsac{word-spacing:-28.138723px;}
.ws57{word-spacing:-28.118630px;}
.ws3d{word-spacing:-28.046899px;}
.wsf3{word-spacing:-27.903437px;}
.wsa{word-spacing:-27.883660px;}
.ws99{word-spacing:-27.831706px;}
.ws28{word-spacing:-27.688243px;}
.wsd5{word-spacing:-27.544781px;}
.ws1c{word-spacing:-27.473050px;}
.ws7b{word-spacing:-27.401318px;}
.ws61{word-spacing:-27.329587px;}
.wsb1{word-spacing:-27.257856px;}
.wsaf{word-spacing:-27.211786px;}
.wsfc{word-spacing:-27.186125px;}
.wsb7{word-spacing:-27.116755px;}
.wsb9{word-spacing:-27.115987px;}
.wsb8{word-spacing:-27.114451px;}
.ws27{word-spacing:-27.114394px;}
.wsde{word-spacing:-27.042662px;}
.wscd{word-spacing:-26.970931px;}
.ws39{word-spacing:-26.899200px;}
.ws18{word-spacing:-26.827469px;}
.wse9{word-spacing:-26.758723px;}
.ws52{word-spacing:-26.756726px;}
.ws91{word-spacing:-26.755843px;}
.ws33{word-spacing:-26.755738px;}
.wsed{word-spacing:-26.687002px;}
.wsbf{word-spacing:-26.686771px;}
.ws35{word-spacing:-26.683507px;}
.ws89{word-spacing:-26.612275px;}
.ws47{word-spacing:-26.540544px;}
.ws3b{word-spacing:-26.468813px;}
.ws11{word-spacing:-26.378204px;}
.ws9b{word-spacing:-26.325350px;}
.wsd{word-spacing:-26.247295px;}
.ws48{word-spacing:-26.181888px;}
.ws1b{word-spacing:-26.110157px;}
.ws98{word-spacing:-26.106163px;}
.wscc{word-spacing:-26.038426px;}
.wsb{word-spacing:-25.985476px;}
.ws3c{word-spacing:-25.966694px;}
.wsb2{word-spacing:-25.894963px;}
.ws26{word-spacing:-25.823232px;}
.ws5c{word-spacing:-25.751501px;}
.ws7c{word-spacing:-25.679770px;}
.ws80{word-spacing:-25.608038px;}
.wsa2{word-spacing:-25.536307px;}
.wsb3{word-spacing:-25.464576px;}
.ws6a{word-spacing:-25.396061px;}
.ws5a{word-spacing:-25.392845px;}
.ws10{word-spacing:-25.330930px;}
.ws6b{word-spacing:-25.325011px;}
.wsba{word-spacing:-25.322746px;}
.ws1a{word-spacing:-25.321114px;}
.ws42{word-spacing:-25.249382px;}
.ws7d{word-spacing:-25.178822px;}
.ws8b{word-spacing:-25.177651px;}
.ws37{word-spacing:-25.105920px;}
.ws86{word-spacing:-25.046054px;}
.wsc{word-spacing:-25.003657px;}
.ws81{word-spacing:-24.962458px;}
.ws102{word-spacing:-24.890726px;}
.ws8a{word-spacing:-24.778013px;}
.ws44{word-spacing:-24.747264px;}
.wsd8{word-spacing:-24.603802px;}
.wsc9{word-spacing:-24.532070px;}
.wse{word-spacing:-24.480020px;}
.ws65{word-spacing:-24.460339px;}
.wsbb{word-spacing:-24.388608px;}
.ws56{word-spacing:-24.316877px;}
.wse4{word-spacing:-24.186586px;}
.ws8f{word-spacing:-24.173414px;}
.ws83{word-spacing:-24.101683px;}
.wsa6{word-spacing:-24.029952px;}
.ws3f{word-spacing:-23.886490px;}
.ws78{word-spacing:-23.814758px;}
.ws76{word-spacing:-23.743027px;}
.ws7e{word-spacing:-23.627904px;}
.ws53{word-spacing:-23.599565px;}
.ws60{word-spacing:-23.527834px;}
.ws8c{word-spacing:-23.268922px;}
.wscf{word-spacing:-23.240909px;}
.ws30{word-spacing:-23.192189px;}
.ws41{word-spacing:-23.097446px;}
.ws9f{word-spacing:-23.025715px;}
.ws2a{word-spacing:-22.953984px;}
.wsc7{word-spacing:-22.842691px;}
.ws5f{word-spacing:-22.810522px;}
.wsc8{word-spacing:-22.770941px;}
.ws50{word-spacing:-22.738790px;}
.ws66{word-spacing:-22.727741px;}
.wsc1{word-spacing:-22.484506px;}
.ws59{word-spacing:-22.451866px;}
.wsa0{word-spacing:-22.380134px;}
.ws5d{word-spacing:-22.308403px;}
.wsd9{word-spacing:-22.164941px;}
.wsa4{word-spacing:-22.093210px;}
.ws77{word-spacing:-22.021478px;}
.ws9{word-spacing:-21.861836px;}
.wsd7{word-spacing:-21.806285px;}
.ws14{word-spacing:-21.665473px;}
.wsc4{word-spacing:-21.662822px;}
.wsa9{word-spacing:-21.591091px;}
.ws73{word-spacing:-21.519360px;}
.ws34{word-spacing:-21.471379px;}
.wsf{word-spacing:-21.272745px;}
.ws55{word-spacing:-21.232435px;}
.wsd1{word-spacing:-21.160704px;}
.wse6{word-spacing:-20.873779px;}
.ws58{word-spacing:-20.731690px;}
.ws46{word-spacing:-20.443392px;}
.ws93{word-spacing:-20.371661px;}
.ws6{word-spacing:-20.356381px;}
.ws104{word-spacing:-20.228198px;}
.wsae{word-spacing:-20.084736px;}
.wsa1{word-spacing:-20.013475px;}
.wsb4{word-spacing:-19.957766px;}
.wsb6{word-spacing:-19.941274px;}
.ws4b{word-spacing:-19.869542px;}
.ws51{word-spacing:-19.654349px;}
.ws68{word-spacing:-19.510886px;}
.wsa8{word-spacing:-19.439155px;}
.ws19{word-spacing:-19.367424px;}
.wse8{word-spacing:-19.080499px;}
.ws67{word-spacing:-18.434918px;}
.wsa7{word-spacing:-18.363187px;}
.wsb5{word-spacing:-18.229565px;}
.ws69{word-spacing:-18.147994px;}
.ws17{word-spacing:-18.126355px;}
.ws4a{word-spacing:-16.713370px;}
.ws31{word-spacing:-16.170662px;}
.ws54{word-spacing:-15.565670px;}
.wsfd{word-spacing:-15.278746px;}
.wsc2{word-spacing:-14.561434px;}
.ws38{word-spacing:-14.535408px;}
.ws5e{word-spacing:-14.131046px;}
.ws4d{word-spacing:-13.586711px;}
.ws4e{word-spacing:-13.586561px;}
.wsea{word-spacing:-12.061937px;}
.wsd3{word-spacing:-11.744712px;}
.wse7{word-spacing:-10.903142px;}
.ws21{word-spacing:-10.401024px;}
.ws5b{word-spacing:-9.681658px;}
.ws105{word-spacing:-9.540250px;}
.wsa3{word-spacing:-9.471658px;}
.ws22{word-spacing:-8.679475px;}
.ws2f{word-spacing:-8.607725px;}
.ws3a{word-spacing:-8.404654px;}
.ws6c{word-spacing:-7.389658px;}
.ws43{word-spacing:-5.738496px;}
.wsd2{word-spacing:-5.666765px;}
.wsc3{word-spacing:-4.590797px;}
.ws97{word-spacing:-4.303872px;}
.wsdc{word-spacing:-2.080205px;}
.ws7a{word-spacing:-1.362893px;}
.ws1e{word-spacing:0.000000px;}
.wsf0{word-spacing:11.710522px;}
.wsf1{word-spacing:16.083974px;}
.wsf9{word-spacing:23.860618px;}
.wsfa{word-spacing:27.185328px;}
.ws100{word-spacing:28.747009px;}
.ws9c{word-spacing:34.507632px;}
.ws108{word-spacing:34.606165px;}
.ws62{word-spacing:37.060493px;}
.ws79{word-spacing:37.461840px;}
.ws96{word-spacing:37.932998px;}
.wsf2{word-spacing:51.801974px;}
.ws32{word-spacing:95.589341px;}
.wseb{word-spacing:107.453338px;}
.ws24{word-spacing:116.419738px;}
.wsf5{word-spacing:916.296298px;}
._2b{margin-left:-35.076557px;}
._49{margin-left:-25.824000px;}
._3d{margin-left:-19.219985px;}
._48{margin-left:-15.548270px;}
._4b{margin-left:-10.770274px;}
._26{margin-left:-5.523302px;}
._5{margin-left:-3.800254px;}
._3{margin-left:-2.496239px;}
._2{margin-left:-1.239750px;}
._0{width:1.239750px;}
._1{width:2.479500px;}
._33{width:3.646551px;}
._2d{width:8.305306px;}
._a{width:11.065715px;}
._39{width:12.356281px;}
._9{width:13.487535px;}
._34{width:15.454268px;}
._e{width:16.754009px;}
._1a{width:18.144413px;}
._b{width:19.757172px;}
._6{width:20.941585px;}
._d{width:22.328723px;}
._8{width:24.345224px;}
._36{width:25.578172px;}
._30{width:26.785604px;}
._3e{width:28.012328px;}
._c{width:29.902994px;}
._4{width:31.447502px;}
._7{width:32.670809px;}
._40{width:33.991042px;}
._32{width:35.005670px;}
._41{width:36.384289px;}
._1d{width:37.810264px;}
._38{width:39.027739px;}
._31{width:40.226850px;}
._1e{width:41.869273px;}
._3c{width:43.868402px;}
._2a{width:44.908139px;}
._47{width:46.470706px;}
._29{width:48.187387px;}
._28{width:56.094625px;}
._22{width:59.180923px;}
._13{width:60.864749px;}
._1b{width:63.898376px;}
._46{width:71.966713px;}
._24{width:73.889564px;}
._3b{width:77.831290px;}
._23{width:80.769331px;}
._25{width:82.921267px;}
._35{width:85.041498px;}
._3a{width:87.299892px;}
._44{width:99.347712px;}
._2f{width:102.055051px;}
._45{width:113.909146px;}
._1c{width:124.557349px;}
._14{width:125.959987px;}
._43{width:130.346363px;}
._2c{width:143.821056px;}
._42{width:158.454221px;}
._12{width:178.682419px;}
._19{width:180.024992px;}
._15{width:205.007770px;}
._f{width:207.159706px;}
._37{width:561.715916px;}
._3f{width:574.432818px;}
._4a{width:779.409230px;}
._21{width:913.583753px;}
._27{width:1220.086704px;}
._11{width:1250.972201px;}
._20{width:1281.006812px;}
._16{width:1444.197798px;}
._18{width:1481.676479px;}
._10{width:1497.276822px;}
._1f{width:1642.171340px;}
._17{width:1674.791222px;}
._2e{width:2096.713699px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:52.363800px;}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:63.168000px;}
.yf8{bottom:108.000000px;}
.y67{bottom:114.984000px;}
.y17d{bottom:116.004000px;}
.yc5{bottom:116.496000px;}
.y13b{bottom:132.729000px;}
.y1c{bottom:135.448500px;}
.y50{bottom:138.862500px;}
.y17c{bottom:139.839000px;}
.yc4{bottom:140.332500px;}
.y127{bottom:142.356000px;}
.y14c{bottom:152.347500px;}
.y13a{bottom:156.564000px;}
.yda{bottom:156.622500px;}
.y66{bottom:158.545500px;}
.y1b{bottom:159.285000px;}
.y4f{bottom:162.697500px;}
.yf7{bottom:162.799500px;}
.y17b{bottom:163.675500px;}
.yc3{bottom:164.167500px;}
.y14b{bottom:165.081000px;}
.y160{bottom:168.042000px;}
.y7c{bottom:170.562000px;}
.y8f{bottom:177.568500px;}
.yd9{bottom:180.457500px;}
.y126{bottom:181.135500px;}
.y110{bottom:182.959500px;}
.y1a{bottom:183.120000px;}
.y17a{bottom:187.510500px;}
.yc2{bottom:188.004000px;}
.y139{bottom:193.156500px;}
.y8e{bottom:201.403500px;}
.y10f{bottom:206.794500px;}
.yaa{bottom:206.908500px;}
.y19{bottom:206.956500px;}
.y7b{bottom:207.154500px;}
.y65{bottom:209.017500px;}
.y179{bottom:211.347000px;}
.yc1{bottom:211.839000px;}
.y4e{bottom:214.233000px;}
.y14a{bottom:216.162000px;}
.y138{bottom:216.991500px;}
.y125{bottom:219.915000px;}
.y15f{bottom:220.576500px;}
.yf6{bottom:222.451500px;}
.y8d{bottom:225.240000px;}
.ya9{bottom:230.743500px;}
.y18{bottom:230.791500px;}
.y7a{bottom:230.989500px;}
.yd8{bottom:231.993000px;}
.y39{bottom:235.423500px;}
.yc0{bottom:235.675500px;}
.y15e{bottom:238.044000px;}
.y137{bottom:240.828000px;}
.y10e{bottom:243.387000px;}
.y178{bottom:247.938000px;}
.y4d{bottom:253.012500px;}
.ya8{bottom:254.580000px;}
.y17{bottom:254.628000px;}
.yd7{bottom:255.829500px;}
.ybf{bottom:259.510500px;}
.y136{bottom:264.663000px;}
.y10d{bottom:267.222000px;}
.y124{bottom:271.450500px;}
.y177{bottom:271.774500px;}
.y149{bottom:272.179500px;}
.y38{bottom:277.191000px;}
.ya7{bottom:278.415000px;}
.y64{bottom:281.436000px;}
.y79{bottom:281.461500px;}
.y8c{bottom:284.892000px;}
.y15d{bottom:286.074000px;}
.yd6{bottom:289.924500px;}
.y10c{bottom:291.058500px;}
.y4c{bottom:291.793500px;}
.y37{bottom:301.027500px;}
.ya6{bottom:302.251500px;}
.yd5{bottom:302.658000px;}
.yf5{bottom:303.570000px;}
.y176{bottom:306.480000px;}
.y123{bottom:308.041500px;}
.y16{bottom:309.151500px;}
.ybe{bottom:309.552000px;}
.y10b{bottom:314.893500px;}
.y135{bottom:315.135000px;}
.y63{bottom:318.027000px;}
.y148{bottom:322.651500px;}
.y36{bottom:324.862500px;}
.ya5{bottom:326.086500px;}
.yf4{bottom:327.405000px;}
.y15{bottom:331.507500px;}
.y122{bottom:331.878000px;}
.y175{bottom:332.217000px;}
.ybd{bottom:333.388500px;}
.y15c{bottom:338.968500px;}
.y62{bottom:341.863500px;}
.y4b{bottom:342.826500px;}
.y35{bottom:348.699000px;}
.ya4{bottom:349.923000px;}
.yf3{bottom:351.241500px;}
.y18e{bottom:353.451000px;}
.y14{bottom:353.865000px;}
.y78{bottom:353.880000px;}
.y121{bottom:355.713000px;}
.ybc{bottom:357.223500px;}
.yd4{bottom:362.010000px;}
.y15b{bottom:364.704000px;}
.y61{bottom:365.698500px;}
.y8b{bottom:366.199500px;}
.y174{bottom:371.316000px;}
.y34{bottom:372.534000px;}
.y10a{bottom:374.547000px;}
.yf2{bottom:375.076500px;}
.y18d{bottom:377.286000px;}
.y120{bottom:379.549500px;}
.yd3{bottom:385.845000px;}
.y4a{bottom:386.388000px;}
.y134{bottom:387.553500px;}
.y13{bottom:388.977000px;}
.y77{bottom:390.471000px;}
.y147{bottom:395.070000px;}
.y173{bottom:395.151000px;}
.ybb{bottom:396.003000px;}
.y33{bottom:396.370500px;}
.yf1{bottom:398.913000px;}
.ya3{bottom:399.964500px;}
.y18c{bottom:401.122500px;}
.y15a{bottom:404.466000px;}
.yd2{bottom:409.681500px;}
.y8a{bottom:409.761000px;}
.y12{bottom:411.333000px;}
.y133{bottom:411.388500px;}
.y76{bottom:414.306000px;}
.y89{bottom:414.334500px;}
.y60{bottom:416.170500px;}
.y146{bottom:418.906500px;}
.y172{bottom:418.987500px;}
.yba{bottom:419.839500px;}
.yf0{bottom:422.748000px;}
.ya2{bottom:423.799500px;}
.y18b{bottom:424.957500px;}
.y49{bottom:425.169000px;}
.y11f{bottom:430.021500px;}
.y11{bottom:433.689000px;}
.y32{bottom:438.138000px;}
.y145{bottom:442.741500px;}
.yb9{bottom:443.674500px;}
.yef{bottom:446.584500px;}
.ya1{bottom:447.636000px;}
.yd1{bottom:448.461000px;}
.y18a{bottom:448.794000px;}
.y159{bottom:451.929000px;}
.y88{bottom:453.322500px;}
.y109{bottom:455.853000px;}
.y10{bottom:456.045000px;}
.y31{bottom:461.974500px;}
.y48{bottom:463.948500px;}
.y75{bottom:464.778000px;}
.y171{bottom:466.431000px;}
.y144{bottom:466.578000px;}
.y132{bottom:467.407500px;}
.yb8{bottom:467.511000px;}
.y158{bottom:469.396500px;}
.yee{bottom:470.419500px;}
.yd0{bottom:472.296000px;}
.yf{bottom:478.401000px;}
.y170{bottom:479.164500px;}
.y108{bottom:479.689500px;}
.y5f{bottom:483.265500px;}
.y30{bottom:485.809500px;}
.ya0{bottom:486.415500px;}
.y143{bottom:490.413000px;}
.yb7{bottom:491.346000px;}
.yed{bottom:494.256000px;}
.ycf{bottom:496.132500px;}
.ye{bottom:500.758500px;}
.y11e{bottom:502.438500px;}
.y47{bottom:502.728000px;}
.y131{bottom:506.187000px;}
.y189{bottom:508.446000px;}
.y87{bottom:509.341500px;}
.y2f{bottom:509.646000px;}
.y9f{bottom:510.250500px;}
.yb6{bottom:515.182500px;}
.y157{bottom:515.956500px;}
.yce{bottom:519.967500px;}
.yd{bottom:523.114500px;}
.y11d{bottom:526.275000px;}
.y16f{bottom:529.689000px;}
.y86{bottom:533.178000px;}
.y2e{bottom:533.481000px;}
.y107{bottom:533.787000px;}
.y9e{bottom:534.087000px;}
.y74{bottom:537.196500px;}
.yb5{bottom:539.017500px;}
.yec{bottom:543.991500px;}
.y130{bottom:544.968000px;}
.yc{bottom:545.470500px;}
.y142{bottom:550.065000px;}
.y46{bottom:554.263500px;}
.y85{bottom:557.013000px;}
.y2d{bottom:557.317500px;}
.y106{bottom:557.623500px;}
.y9d{bottom:557.922000px;}
.y5e{bottom:564.573000px;}
.y156{bottom:566.428500px;}
.yeb{bottom:567.828000px;}
.ycd{bottom:570.439500px;}
.y73{bottom:573.789000px;}
.yb4{bottom:575.610000px;}
.yb{bottom:580.582500px;}
.y84{bottom:580.849500px;}
.y2c{bottom:581.152500px;}
.y105{bottom:581.458500px;}
.y9c{bottom:581.758500px;}
.y11c{bottom:582.294000px;}
.y16e{bottom:582.853500px;}
.y5d{bottom:588.408000px;}
.y188{bottom:589.753500px;}
.yea{bottom:591.663000px;}
.y72{bottom:597.624000px;}
.yb3{bottom:599.445000px;}
.y12f{bottom:600.985500px;}
.ya{bottom:602.938500px;}
.y2b{bottom:604.989000px;}
.y104{bottom:605.295000px;}
.y5c{bottom:612.244500px;}
.y187{bottom:613.588500px;}
.y45{bottom:613.915500px;}
.ye9{bottom:615.499500px;}
.y9b{bottom:618.349500px;}
.y11b{bottom:621.073500px;}
.yb2{bottom:623.281500px;}
.y12e{bottom:624.822000px;}
.y9{bottom:625.296000px;}
.y103{bottom:629.130000px;}
.y141{bottom:631.372500px;}
.y5b{bottom:636.079500px;}
.y83{bottom:636.867000px;}
.y186{bottom:637.425000px;}
.y155{bottom:638.847000px;}
.y9a{bottom:642.186000px;}
.ycc{bottom:642.858000px;}
.y2a{bottom:646.758000px;}
.y8{bottom:647.652000px;}
.y71{bottom:648.096000px;}
.y12d{bottom:648.657000px;}
.y102{bottom:652.966500px;}
.ye8{bottom:653.364000px;}
.y140{bottom:655.209000px;}
.y16d{bottom:655.272000px;}
.y99{bottom:666.021000px;}
.ycb{bottom:666.693000px;}
.y7{bottom:670.008000px;}
.y101{bottom:676.801500px;}
.y11a{bottom:677.092500px;}
.ye7{bottom:677.200500px;}
.y13f{bottom:679.044000px;}
.y16c{bottom:679.107000px;}
.yb1{bottom:681.637500px;}
.y154{bottom:682.408500px;}
.y29{bottom:688.525500px;}
.y98{bottom:689.857500px;}
.yca{bottom:690.529500px;}
.y5a{bottom:692.098500px;}
.y185{bottom:693.444000px;}
.y16b{bottom:693.976500px;}
.y44{bottom:695.223000px;}
.y82{bottom:696.520500px;}
.y12c{bottom:699.129000px;}
.y119{bottom:700.927500px;}
.ye6{bottom:701.035500px;}
.y16a{bottom:702.943500px;}
.yb0{bottom:705.474000px;}
.y97{bottom:713.692500px;}
.y6{bottom:714.871500px;}
.y59{bottom:715.935000px;}
.y184{bottom:717.279000px;}
.y70{bottom:720.514500px;}
.y118{bottom:724.764000px;}
.ye5{bottom:724.872000px;}
.y153{bottom:725.971500px;}
.yaf{bottom:729.309000px;}
.y28{bottom:730.294500px;}
.y100{bottom:730.966500px;}
.y43{bottom:734.002500px;}
.y13e{bottom:735.063000px;}
.y96{bottom:737.529000px;}
.y58{bottom:739.770000px;}
.y6f{bottom:744.349500px;}
.y169{bottom:748.467000px;}
.ye4{bottom:748.707000px;}
.y168{bottom:753.040500px;}
.yae{bottom:753.145500px;}
.y27{bottom:754.129500px;}
.y183{bottom:756.058500px;}
.y152{bottom:769.533000px;}
.y12b{bottom:771.547500px;}
.ye3{bottom:772.543500px;}
.y42{bottom:772.782000px;}
.y13d{bottom:773.842500px;}
.y117{bottom:775.236000px;}
.yad{bottom:776.980500px;}
.y81{bottom:777.828000px;}
.y26{bottom:777.966000px;}
.y182{bottom:779.895000px;}
.y95{bottom:787.569000px;}
.y5{bottom:788.838000px;}
.yff{bottom:790.618500px;}
.y57{bottom:790.804500px;}
.y167{bottom:792.030000px;}
.y12a{bottom:795.384000px;}
.yc9{bottom:800.817000px;}
.y80{bottom:801.663000px;}
.y25{bottom:801.801000px;}
.ye2{bottom:809.134500px;}
.y41{bottom:811.561500px;}
.y13c{bottom:812.622000px;}
.y151{bottom:813.094500px;}
.y6e{bottom:815.461500px;}
.y181{bottom:818.674500px;}
.yc8{bottom:824.652000px;}
.y24{bottom:825.637500px;}
.yac{bottom:827.022000px;}
.y94{bottom:831.132000px;}
.ye1{bottom:832.971000px;}
.y56{bottom:834.366000px;}
.y93{bottom:835.704000px;}
.y6d{bottom:839.298000px;}
.y180{bottom:842.511000px;}
.y166{bottom:844.564500px;}
.y4{bottom:845.176500px;}
.y116{bottom:847.653000px;}
.yc7{bottom:848.488500px;}
.yab{bottom:850.857000px;}
.y129{bottom:851.401500px;}
.y7f{bottom:852.135000px;}
.y165{bottom:857.298000px;}
.y164{bottom:861.870000px;}
.y40{bottom:863.097000px;}
.y17f{bottom:866.346000px;}
.y23{bottom:867.406500px;}
.y150{bottom:869.113500px;}
.ye0{bottom:871.489500px;}
.yfe{bottom:871.926000px;}
.y92{bottom:874.693500px;}
.y55{bottom:885.399000px;}
.y3f{bottom:886.933500px;}
.y6c{bottom:889.770000px;}
.y128{bottom:890.182500px;}
.y115{bottom:895.324500px;}
.yfd{bottom:895.761000px;}
.ydf{bottom:897.225000px;}
.y91{bottom:898.528500px;}
.y14f{bottom:903.658500px;}
.y17e{bottom:905.125500px;}
.y22{bottom:909.174000px;}
.y3{bottom:914.421000px;}
.y163{bottom:916.071000px;}
.y14e{bottom:916.392000px;}
.yfc{bottom:919.597500px;}
.y90{bottom:922.365000px;}
.y3e{bottom:923.524500px;}
.y7e{bottom:924.553500px;}
.y54{bottom:928.962000px;}
.yde{bottom:935.601000px;}
.y114{bottom:938.887500px;}
.y162{bottom:942.094500px;}
.yfb{bottom:943.432500px;}
.y113{bottom:943.459500px;}
.y2{bottom:944.010000px;}
.yc6{bottom:946.200000px;}
.y3d{bottom:947.361000px;}
.y21{bottom:950.943000px;}
.y161{bottom:954.828000px;}
.ydd{bottom:959.436000px;}
.y7d{bottom:961.144500px;}
.y6b{bottom:962.187000px;}
.yfa{bottom:967.269000px;}
.y14d{bottom:967.471500px;}
.y3c{bottom:971.196000px;}
.y20{bottom:974.778000px;}
.y112{bottom:982.449000px;}
.y53{bottom:984.981000px;}
.y1{bottom:985.105500px;}
.y3b{bottom:995.032500px;}
.ydc{bottom:997.956000px;}
.y111{bottom:1006.284000px;}
.y52{bottom:1008.816000px;}
.ydb{bottom:1010.689500px;}
.y1f{bottom:1016.547000px;}
.y6a{bottom:1018.506000px;}
.y69{bottom:1023.078000px;}
.yf9{bottom:1023.288000px;}
.y3a{bottom:1054.684500px;}
.y51{bottom:1059.288000px;}
.y1e{bottom:1061.665500px;}
.y68{bottom:1062.067500px;}
.h3{height:51.054588px;}
.h4{height:55.950336px;}
.h2{height:67.140216px;}
.h5{height:80.568072px;}
.h1{height:96.700500px;}
.h6{height:122.014771px;}
.ha{height:122.020771px;}
.he{height:123.844771px;}
.h13{height:132.114824px;}
.h8{height:140.302771px;}
.h7{height:140.308771px;}
.h15{height:140.950771px;}
.h10{height:155.086771px;}
.h14{height:157.882771px;}
.hc{height:172.948771px;}
.h9{height:174.022771px;}
.hd{height:174.028771px;}
.hf{height:174.778771px;}
.h11{height:191.884771px;}
.hb{height:224.956771px;}
.h12{height:238.926824px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1e{left:105.453000px;}
.x9{left:108.000000px;}
.x21{left:121.987500px;}
.x19{left:125.586000px;}
.x1f{left:126.937500px;}
.xe{left:128.013000px;}
.xb{left:134.899500px;}
.xc{left:136.764000px;}
.x1c{left:147.306000px;}
.x8{left:152.832000px;}
.x7{left:177.378000px;}
.x1d{left:181.597500px;}
.x1b{left:189.688500px;}
.x26{left:207.771000px;}
.x2{left:230.529000px;}
.x35{left:251.341500px;}
.x34{left:267.337500px;}
.x3{left:269.824500px;}
.x3b{left:286.753500px;}
.x15{left:289.095000px;}
.x14{left:305.091000px;}
.x2a{left:310.719000px;}
.x2f{left:312.216000px;}
.x36{left:320.026500px;}
.x1{left:330.639000px;}
.x2d{left:347.283000px;}
.x20{left:348.453000px;}
.x32{left:355.765500px;}
.x38{left:356.907000px;}
.x4{left:368.038500px;}
.x23{left:369.367500px;}
.x11{left:373.414500px;}
.xf{left:384.927000px;}
.x22{left:387.312000px;}
.x3a{left:389.653500px;}
.x28{left:392.928000px;}
.xd{left:395.829000px;}
.x2c{left:399.358500px;}
.x29{left:409.225500px;}
.x2e{left:421.054500px;}
.x17{left:424.204500px;}
.x6{left:425.872500px;}
.x13{left:430.903500px;}
.x5{left:432.789000px;}
.x30{left:435.156000px;}
.x10{left:437.418000px;}
.x16{left:440.200500px;}
.x12{left:446.899500px;}
.x25{left:448.132500px;}
.x27{left:450.606000px;}
.xa{left:453.619500px;}
.x1a{left:471.990000px;}
.x24{left:475.962000px;}
.x39{left:480.484500px;}
.x33{left:490.215000px;}
.x2b{left:502.230000px;}
.x31{left:553.230000px;}
.x37{left:576.813000px;}
.x18{left:602.445000px;}
@media print{
.v15{vertical-align:-90.949333pt;}
.v3{vertical-align:-84.746667pt;}
.v5{vertical-align:-23.018667pt;}
.vd{vertical-align:-21.392000pt;}
.vf{vertical-align:-16.832000pt;}
.v1{vertical-align:-13.392000pt;}
.v17{vertical-align:-11.445333pt;}
.v12{vertical-align:-9.818667pt;}
.ve{vertical-align:-1.626667pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.626667pt;}
.v13{vertical-align:9.818667pt;}
.v16{vertical-align:15.205333pt;}
.v4{vertical-align:16.261333pt;}
.v10{vertical-align:18.874667pt;}
.v2{vertical-align:23.024000pt;}
.v11{vertical-align:26.400000pt;}
.v1a{vertical-align:31.882667pt;}
.v7{vertical-align:32.842667pt;}
.v14{vertical-align:35.456000pt;}
.v19{vertical-align:38.261333pt;}
.v8{vertical-align:45.274667pt;}
.v6{vertical-align:46.229333pt;}
.vb{vertical-align:68.298667pt;}
.va{vertical-align:78.117333pt;}
.v18{vertical-align:86.304000pt;}
.v9{vertical-align:91.504000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.000282pt;}
.ls49{letter-spacing:0.000461pt;}
.ls76{letter-spacing:0.000885pt;}
.ls50{letter-spacing:0.001357pt;}
.ls10{letter-spacing:0.001894pt;}
.ls5f{letter-spacing:0.002748pt;}
.ls81{letter-spacing:0.002970pt;}
.ls20{letter-spacing:0.003721pt;}
.ls6b{letter-spacing:0.004036pt;}
.ls7b{letter-spacing:0.005248pt;}
.ls2{letter-spacing:0.698182pt;}
.ls3{letter-spacing:0.765133pt;}
.ls1{letter-spacing:0.918157pt;}
.ls5{letter-spacing:1.101786pt;}
.ls0{letter-spacing:1.322400pt;}
.ls39{letter-spacing:2.656382pt;}
.lse{letter-spacing:2.656412pt;}
.lsb{letter-spacing:2.657402pt;}
.ls22{letter-spacing:2.661746pt;}
.ls14{letter-spacing:2.804659pt;}
.ls17{letter-spacing:3.252318pt;}
.ls8{letter-spacing:4.701527pt;}
.ls7{letter-spacing:4.706861pt;}
.ls74{letter-spacing:6.377370pt;}
.lsa{letter-spacing:8.989414pt;}
.ls6c{letter-spacing:9.029746pt;}
.ls69{letter-spacing:9.035079pt;}
.ls62{letter-spacing:10.167228pt;}
.ls6a{letter-spacing:10.628036pt;}
.ls54{letter-spacing:11.417651pt;}
.ls2c{letter-spacing:12.365303pt;}
.ls9{letter-spacing:12.370637pt;}
.ls35{letter-spacing:13.200382pt;}
.ls75{letter-spacing:13.285746pt;}
.ls25{letter-spacing:13.659079pt;}
.ls27{letter-spacing:13.769993pt;}
.ls63{letter-spacing:14.154957pt;}
.ls72{letter-spacing:14.166161pt;}
.ls6f{letter-spacing:14.170001pt;}
.ls71{letter-spacing:14.175334pt;}
.ls37{letter-spacing:14.411049pt;}
.ls4e{letter-spacing:14.452514pt;}
.ls40{letter-spacing:14.757746pt;}
.ls82{letter-spacing:14.981746pt;}
.ls80{letter-spacing:15.019079pt;}
.ls24{letter-spacing:15.579079pt;}
.ls66{letter-spacing:15.811721pt;}
.ls4c{letter-spacing:15.812318pt;}
.ls23{letter-spacing:15.812659pt;}
.ls16{letter-spacing:15.814323pt;}
.ls64{letter-spacing:15.817054pt;}
.ls57{letter-spacing:15.995079pt;}
.lsd{letter-spacing:16.428271pt;}
.ls2d{letter-spacing:16.641638pt;}
.ls38{letter-spacing:16.827049pt;}
.ls11{letter-spacing:16.827079pt;}
.ls15{letter-spacing:16.830974pt;}
.ls51{letter-spacing:17.109746pt;}
.ls4f{letter-spacing:17.115079pt;}
.ls45{letter-spacing:17.243079pt;}
.ls7f{letter-spacing:17.376412pt;}
.ls3c{letter-spacing:17.648382pt;}
.ls73{letter-spacing:17.716036pt;}
.ls5c{letter-spacing:18.384412pt;}
.ls21{letter-spacing:18.469746pt;}
.ls5b{letter-spacing:18.948318pt;}
.ls41{letter-spacing:19.029746pt;}
.ls56{letter-spacing:19.294985pt;}
.ls2b{letter-spacing:19.424382pt;}
.ls5a{letter-spacing:19.429746pt;}
.ls7e{letter-spacing:19.445715pt;}
.ls33{letter-spacing:19.643049pt;}
.ls59{letter-spacing:19.652318pt;}
.ls1d{letter-spacing:19.829760pt;}
.ls3b{letter-spacing:19.893715pt;}
.ls36{letter-spacing:19.973715pt;}
.ls29{letter-spacing:19.993993pt;}
.ls46{letter-spacing:20.212258pt;}
.ls12{letter-spacing:20.368412pt;}
.lsf{letter-spacing:20.373746pt;}
.ls1c{letter-spacing:20.740307pt;}
.ls2f{letter-spacing:21.264382pt;}
.ls58{letter-spacing:21.324774pt;}
.ls55{letter-spacing:21.952412pt;}
.ls4d{letter-spacing:22.185993pt;}
.ls7a{letter-spacing:22.380134pt;}
.ls60{letter-spacing:22.418861pt;}
.ls77{letter-spacing:22.645266pt;}
.ls47{letter-spacing:22.891079pt;}
.ls53{letter-spacing:23.200412pt;}
.ls48{letter-spacing:24.034108pt;}
.ls52{letter-spacing:24.090274pt;}
.ls3f{letter-spacing:24.268774pt;}
.ls4b{letter-spacing:24.832412pt;}
.ls44{letter-spacing:25.324774pt;}
.lsc{letter-spacing:26.498637pt;}
.ls2e{letter-spacing:26.624382pt;}
.ls68{letter-spacing:26.741746pt;}
.ls79{letter-spacing:26.747079pt;}
.ls19{letter-spacing:27.170108pt;}
.ls2a{letter-spacing:27.212774pt;}
.ls43{letter-spacing:28.359441pt;}
.ls65{letter-spacing:28.659721pt;}
.ls67{letter-spacing:28.665054pt;}
.ls30{letter-spacing:28.679441pt;}
.ls13{letter-spacing:28.893303pt;}
.ls32{letter-spacing:29.357303pt;}
.ls5e{letter-spacing:29.710618pt;}
.ls18{letter-spacing:29.895441pt;}
.ls42{letter-spacing:30.252774pt;}
.ls34{letter-spacing:30.373760pt;}
.ls7c{letter-spacing:31.317746pt;}
.ls6{letter-spacing:31.880533pt;}
.ls5d{letter-spacing:31.881284pt;}
.ls1f{letter-spacing:31.927441pt;}
.ls78{letter-spacing:32.597760pt;}
.ls3e{letter-spacing:34.069760pt;}
.ls6e{letter-spacing:34.613760pt;}
.ls61{letter-spacing:35.643093pt;}
.ls70{letter-spacing:37.120828pt;}
.ls3a{letter-spacing:37.339093pt;}
.ls31{letter-spacing:38.784427pt;}
.ls1e{letter-spacing:39.200427pt;}
.ls3d{letter-spacing:39.451093pt;}
.ls1a{letter-spacing:39.792427pt;}
.ls28{letter-spacing:39.824427pt;}
.ls7d{letter-spacing:40.693760pt;}
.ls1b{letter-spacing:40.725760pt;}
.ls26{letter-spacing:41.835093pt;}
.ls6d{letter-spacing:722.624828pt;}
.wsfb{word-spacing:-64.972527pt;}
.wsb0{word-spacing:-62.804651pt;}
.ws1f{word-spacing:-60.047315pt;}
.ws7f{word-spacing:-59.234031pt;}
.wsec{word-spacing:-56.747349pt;}
.ws4{word-spacing:-48.432771pt;}
.ws1{word-spacing:-46.063600pt;}
.ws0{word-spacing:-43.418800pt;}
.ws2b{word-spacing:-42.592393pt;}
.ws1d{word-spacing:-40.360755pt;}
.ws45{word-spacing:-39.595622pt;}
.ws4c{word-spacing:-39.149295pt;}
.ws82{word-spacing:-38.384162pt;}
.ws25{word-spacing:-38.378865pt;}
.ws5{word-spacing:-37.352758pt;}
.ws13{word-spacing:-36.829122pt;}
.ws16{word-spacing:-36.130939pt;}
.ws7{word-spacing:-35.723666pt;}
.ws2d{word-spacing:-31.982462pt;}
.ws3e{word-spacing:-30.605312pt;}
.wscb{word-spacing:-30.541551pt;}
.ws3{word-spacing:-30.452201pt;}
.ws2{word-spacing:-30.375687pt;}
.ws10a{word-spacing:-30.286507pt;}
.ws72{word-spacing:-30.158985pt;}
.ws70{word-spacing:-30.095223pt;}
.wse1{word-spacing:-29.967701pt;}
.wsdd{word-spacing:-29.776418pt;}
.wsc6{word-spacing:-29.712657pt;}
.ws23{word-spacing:-29.648896pt;}
.wsca{word-spacing:-29.585135pt;}
.wsc5{word-spacing:-29.521374pt;}
.wsdb{word-spacing:-29.457613pt;}
.ws84{word-spacing:-29.393852pt;}
.ws49{word-spacing:-29.330091pt;}
.wsda{word-spacing:-29.202569pt;}
.ws95{word-spacing:-29.011285pt;}
.ws4f{word-spacing:-28.904818pt;}
.wsff{word-spacing:-28.820002pt;}
.wse2{word-spacing:-28.756241pt;}
.ws71{word-spacing:-28.533615pt;}
.ws6f{word-spacing:-28.532446pt;}
.ws64{word-spacing:-28.437436pt;}
.wsf8{word-spacing:-28.373675pt;}
.wsa5{word-spacing:-28.309914pt;}
.ws6d{word-spacing:-28.182391pt;}
.wsce{word-spacing:-28.054869pt;}
.ws9a{word-spacing:-27.991108pt;}
.wsd4{word-spacing:-27.927347pt;}
.ws15{word-spacing:-27.927296pt;}
.ws85{word-spacing:-27.799825pt;}
.ws9d{word-spacing:-27.736064pt;}
.ws8d{word-spacing:-27.672303pt;}
.ws2c{word-spacing:-27.608542pt;}
.ws94{word-spacing:-27.492198pt;}
.ws74{word-spacing:-27.355759pt;}
.ws75{word-spacing:-27.353498pt;}
.wsdf{word-spacing:-27.225975pt;}
.wsaa{word-spacing:-27.162214pt;}
.ws40{word-spacing:-27.098453pt;}
.ws2e{word-spacing:-27.034692pt;}
.wse3{word-spacing:-26.970931pt;}
.ws90{word-spacing:-26.907170pt;}
.wsf7{word-spacing:-26.843409pt;}
.wsd6{word-spacing:-26.779648pt;}
.ws9e{word-spacing:-26.715887pt;}
.ws20{word-spacing:-26.652126pt;}
.ws6e{word-spacing:-26.613615pt;}
.wsab{word-spacing:-26.588365pt;}
.wsad{word-spacing:-26.524604pt;}
.ws92{word-spacing:-26.397082pt;}
.wsf4{word-spacing:-26.333321pt;}
.ws87{word-spacing:-26.269559pt;}
.ws88{word-spacing:-26.205798pt;}
.ws8e{word-spacing:-26.142037pt;}
.wse5{word-spacing:-25.950754pt;}
.ws107{word-spacing:-25.912141pt;}
.wse0{word-spacing:-25.886993pt;}
.ws101{word-spacing:-25.823232pt;}
.ws12{word-spacing:-25.774567pt;}
.ws103{word-spacing:-25.695710pt;}
.wsd0{word-spacing:-25.631949pt;}
.ws8{word-spacing:-25.600021pt;}
.wsfe{word-spacing:-25.568188pt;}
.ws63{word-spacing:-25.504427pt;}
.wsc0{word-spacing:-25.376905pt;}
.wsee{word-spacing:-25.316002pt;}
.wsef{word-spacing:-25.315934pt;}
.wsbc{word-spacing:-25.315797pt;}
.ws106{word-spacing:-25.314970pt;}
.wsf6{word-spacing:-25.314227pt;}
.ws29{word-spacing:-25.313143pt;}
.wsbd{word-spacing:-25.310268pt;}
.ws36{word-spacing:-25.185621pt;}
.ws109{word-spacing:-25.121860pt;}
.wsbe{word-spacing:-25.081574pt;}
.wsac{word-spacing:-25.012198pt;}
.ws57{word-spacing:-24.994338pt;}
.ws3d{word-spacing:-24.930577pt;}
.wsf3{word-spacing:-24.803055pt;}
.wsa{word-spacing:-24.785475pt;}
.ws99{word-spacing:-24.739294pt;}
.ws28{word-spacing:-24.611772pt;}
.wsd5{word-spacing:-24.484250pt;}
.ws1c{word-spacing:-24.420489pt;}
.ws7b{word-spacing:-24.356727pt;}
.ws61{word-spacing:-24.292966pt;}
.wsb1{word-spacing:-24.229205pt;}
.wsaf{word-spacing:-24.188254pt;}
.wsfc{word-spacing:-24.165444pt;}
.wsb7{word-spacing:-24.103782pt;}
.wsb9{word-spacing:-24.103100pt;}
.wsb8{word-spacing:-24.101734pt;}
.ws27{word-spacing:-24.101683pt;}
.wsde{word-spacing:-24.037922pt;}
.wscd{word-spacing:-23.974161pt;}
.ws39{word-spacing:-23.910400pt;}
.ws18{word-spacing:-23.846639pt;}
.wse9{word-spacing:-23.785532pt;}
.ws52{word-spacing:-23.783757pt;}
.ws91{word-spacing:-23.782972pt;}
.ws33{word-spacing:-23.782878pt;}
.wsed{word-spacing:-23.721779pt;}
.wsbf{word-spacing:-23.721574pt;}
.ws35{word-spacing:-23.718673pt;}
.ws89{word-spacing:-23.655356pt;}
.ws47{word-spacing:-23.591595pt;}
.ws3b{word-spacing:-23.527834pt;}
.ws11{word-spacing:-23.447292pt;}
.ws9b{word-spacing:-23.400311pt;}
.wsd{word-spacing:-23.330929pt;}
.ws48{word-spacing:-23.272789pt;}
.ws1b{word-spacing:-23.209028pt;}
.ws98{word-spacing:-23.205478pt;}
.wscc{word-spacing:-23.145267pt;}
.wsb{word-spacing:-23.098201pt;}
.ws3c{word-spacing:-23.081506pt;}
.wsb2{word-spacing:-23.017745pt;}
.ws26{word-spacing:-22.953984pt;}
.ws5c{word-spacing:-22.890223pt;}
.ws7c{word-spacing:-22.826462pt;}
.ws80{word-spacing:-22.762701pt;}
.wsa2{word-spacing:-22.698940pt;}
.wsb3{word-spacing:-22.635179pt;}
.ws6a{word-spacing:-22.574276pt;}
.ws5a{word-spacing:-22.571418pt;}
.ws10{word-spacing:-22.516382pt;}
.ws6b{word-spacing:-22.511121pt;}
.wsba{word-spacing:-22.509107pt;}
.ws1a{word-spacing:-22.507657pt;}
.ws42{word-spacing:-22.443895pt;}
.ws7d{word-spacing:-22.381175pt;}
.ws8b{word-spacing:-22.380134pt;}
.ws37{word-spacing:-22.316373pt;}
.ws86{word-spacing:-22.263159pt;}
.wsc{word-spacing:-22.225473pt;}
.ws81{word-spacing:-22.188851pt;}
.ws102{word-spacing:-22.125090pt;}
.ws8a{word-spacing:-22.024900pt;}
.ws44{word-spacing:-21.997568pt;}
.wsd8{word-spacing:-21.870046pt;}
.wsc9{word-spacing:-21.806285pt;}
.wse{word-spacing:-21.760018pt;}
.ws65{word-spacing:-21.742524pt;}
.wsbb{word-spacing:-21.678763pt;}
.ws56{word-spacing:-21.615002pt;}
.wse4{word-spacing:-21.499187pt;}
.ws8f{word-spacing:-21.487479pt;}
.ws83{word-spacing:-21.423718pt;}
.wsa6{word-spacing:-21.359957pt;}
.ws3f{word-spacing:-21.232435pt;}
.ws78{word-spacing:-21.168674pt;}
.ws76{word-spacing:-21.104913pt;}
.ws7e{word-spacing:-21.002581pt;}
.ws53{word-spacing:-20.977391pt;}
.ws60{word-spacing:-20.913630pt;}
.ws8c{word-spacing:-20.683486pt;}
.wscf{word-spacing:-20.658586pt;}
.ws30{word-spacing:-20.615279pt;}
.ws41{word-spacing:-20.531063pt;}
.ws9f{word-spacing:-20.467302pt;}
.ws2a{word-spacing:-20.403541pt;}
.wsc7{word-spacing:-20.304614pt;}
.ws5f{word-spacing:-20.276019pt;}
.wsc8{word-spacing:-20.240836pt;}
.ws50{word-spacing:-20.212258pt;}
.ws66{word-spacing:-20.202436pt;}
.wsc1{word-spacing:-19.986227pt;}
.ws59{word-spacing:-19.957214pt;}
.wsa0{word-spacing:-19.893453pt;}
.ws5d{word-spacing:-19.829692pt;}
.wsd9{word-spacing:-19.702170pt;}
.wsa4{word-spacing:-19.638409pt;}
.ws77{word-spacing:-19.574647pt;}
.ws9{word-spacing:-19.432743pt;}
.wsd7{word-spacing:-19.383364pt;}
.ws14{word-spacing:-19.258198pt;}
.wsc4{word-spacing:-19.255842pt;}
.wsa9{word-spacing:-19.192081pt;}
.ws73{word-spacing:-19.128320pt;}
.ws34{word-spacing:-19.085670pt;}
.wsf{word-spacing:-18.909107pt;}
.ws55{word-spacing:-18.873276pt;}
.wsd1{word-spacing:-18.809515pt;}
.wse6{word-spacing:-18.554470pt;}
.ws58{word-spacing:-18.428169pt;}
.ws46{word-spacing:-18.171904pt;}
.ws93{word-spacing:-18.108143pt;}
.ws6{word-spacing:-18.094561pt;}
.ws104{word-spacing:-17.980621pt;}
.wsae{word-spacing:-17.853099pt;}
.wsa1{word-spacing:-17.789756pt;}
.wsb4{word-spacing:-17.740237pt;}
.wsb6{word-spacing:-17.725577pt;}
.ws4b{word-spacing:-17.661815pt;}
.ws51{word-spacing:-17.470532pt;}
.ws68{word-spacing:-17.343010pt;}
.wsa8{word-spacing:-17.279249pt;}
.ws19{word-spacing:-17.215488pt;}
.wse8{word-spacing:-16.960444pt;}
.ws67{word-spacing:-16.386594pt;}
.wsa7{word-spacing:-16.322833pt;}
.wsb5{word-spacing:-16.204058pt;}
.ws69{word-spacing:-16.131550pt;}
.ws17{word-spacing:-16.112316pt;}
.ws4a{word-spacing:-14.856329pt;}
.ws31{word-spacing:-14.373922pt;}
.ws54{word-spacing:-13.836151pt;}
.wsfd{word-spacing:-13.581107pt;}
.wsc2{word-spacing:-12.943497pt;}
.ws38{word-spacing:-12.920363pt;}
.ws5e{word-spacing:-12.560930pt;}
.ws4d{word-spacing:-12.077076pt;}
.ws4e{word-spacing:-12.076943pt;}
.wsea{word-spacing:-10.721722pt;}
.wsd3{word-spacing:-10.439744pt;}
.wse7{word-spacing:-9.691682pt;}
.ws21{word-spacing:-9.245355pt;}
.ws5b{word-spacing:-8.605918pt;}
.ws105{word-spacing:-8.480222pt;}
.wsa3{word-spacing:-8.419251pt;}
.ws22{word-spacing:-7.715089pt;}
.ws2f{word-spacing:-7.651311pt;}
.ws3a{word-spacing:-7.470803pt;}
.ws6c{word-spacing:-6.568585pt;}
.ws43{word-spacing:-5.100885pt;}
.wsd2{word-spacing:-5.037124pt;}
.wsc3{word-spacing:-4.080708pt;}
.ws97{word-spacing:-3.825664pt;}
.wsdc{word-spacing:-1.849071pt;}
.ws7a{word-spacing:-1.211460pt;}
.ws1e{word-spacing:0.000000pt;}
.wsf0{word-spacing:10.409353pt;}
.wsf1{word-spacing:14.296866pt;}
.wsf9{word-spacing:21.209438pt;}
.wsfa{word-spacing:24.164736pt;}
.ws100{word-spacing:25.552897pt;}
.ws9c{word-spacing:30.673451pt;}
.ws108{word-spacing:30.761036pt;}
.ws62{word-spacing:32.942660pt;}
.ws79{word-spacing:33.299413pt;}
.ws96{word-spacing:33.718221pt;}
.wsf2{word-spacing:46.046199pt;}
.ws32{word-spacing:84.968303pt;}
.wseb{word-spacing:95.514078pt;}
.ws24{word-spacing:103.484211pt;}
.wsf5{word-spacing:814.485598pt;}
._2b{margin-left:-31.179162pt;}
._49{margin-left:-22.954667pt;}
._3d{margin-left:-17.084431pt;}
._48{margin-left:-13.820685pt;}
._4b{margin-left:-9.573577pt;}
._26{margin-left:-4.909602pt;}
._5{margin-left:-3.378004pt;}
._3{margin-left:-2.218879pt;}
._2{margin-left:-1.102000pt;}
._0{width:1.102000pt;}
._1{width:2.204000pt;}
._33{width:3.241379pt;}
._2d{width:7.382494pt;}
._a{width:9.836191pt;}
._39{width:10.983361pt;}
._9{width:11.988920pt;}
._34{width:13.737127pt;}
._e{width:14.892452pt;}
._1a{width:16.128367pt;}
._b{width:17.561931pt;}
._6{width:18.614742pt;}
._d{width:19.847754pt;}
._8{width:21.640199pt;}
._36{width:22.736153pt;}
._30{width:23.809426pt;}
._3e{width:24.899847pt;}
._c{width:26.580439pt;}
._4{width:27.953335pt;}
._7{width:29.040719pt;}
._40{width:30.214259pt;}
._32{width:31.116151pt;}
._41{width:32.341590pt;}
._1d{width:33.609123pt;}
._38{width:34.691324pt;}
._31{width:35.757200pt;}
._1e{width:37.217132pt;}
._3c{width:38.994135pt;}
._2a{width:39.918346pt;}
._47{width:41.307294pt;}
._29{width:42.833233pt;}
._28{width:49.861889pt;}
._22{width:52.605265pt;}
._13{width:54.101999pt;}
._1b{width:56.798557pt;}
._46{width:63.970412pt;}
._24{width:65.679613pt;}
._3b{width:69.183369pt;}
._23{width:71.794961pt;}
._25{width:73.707793pt;}
._35{width:75.592443pt;}
._3a{width:77.599904pt;}
._44{width:88.309077pt;}
._2f{width:90.715601pt;}
._45{width:101.252574pt;}
._1c{width:110.717644pt;}
._14{width:111.964433pt;}
._43{width:115.863434pt;}
._2c{width:127.840939pt;}
._42{width:140.848196pt;}
._12{width:158.828817pt;}
._19{width:160.022215pt;}
._15{width:182.229129pt;}
._f{width:184.141961pt;}
._37{width:499.303037pt;}
._3f{width:510.606949pt;}
._4a{width:692.808205pt;}
._21{width:812.074447pt;}
._27{width:1084.521515pt;}
._11{width:1111.975290pt;}
._20{width:1138.672722pt;}
._16{width:1283.731376pt;}
._18{width:1317.045759pt;}
._10{width:1330.912731pt;}
._1f{width:1459.707858pt;}
._17{width:1488.703309pt;}
._2e{width:1863.745510pt;}
.fs5{font-size:46.545600pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:56.149333pt;}
.yf8{bottom:96.000000pt;}
.y67{bottom:102.208000pt;}
.y17d{bottom:103.114667pt;}
.yc5{bottom:103.552000pt;}
.y13b{bottom:117.981333pt;}
.y1c{bottom:120.398667pt;}
.y50{bottom:123.433333pt;}
.y17c{bottom:124.301333pt;}
.yc4{bottom:124.740000pt;}
.y127{bottom:126.538667pt;}
.y14c{bottom:135.420000pt;}
.y13a{bottom:139.168000pt;}
.yda{bottom:139.220000pt;}
.y66{bottom:140.929333pt;}
.y1b{bottom:141.586667pt;}
.y4f{bottom:144.620000pt;}
.yf7{bottom:144.710667pt;}
.y17b{bottom:145.489333pt;}
.yc3{bottom:145.926667pt;}
.y14b{bottom:146.738667pt;}
.y160{bottom:149.370667pt;}
.y7c{bottom:151.610667pt;}
.y8f{bottom:157.838667pt;}
.yd9{bottom:160.406667pt;}
.y126{bottom:161.009333pt;}
.y110{bottom:162.630667pt;}
.y1a{bottom:162.773333pt;}
.y17a{bottom:166.676000pt;}
.yc2{bottom:167.114667pt;}
.y139{bottom:171.694667pt;}
.y8e{bottom:179.025333pt;}
.y10f{bottom:183.817333pt;}
.yaa{bottom:183.918667pt;}
.y19{bottom:183.961333pt;}
.y7b{bottom:184.137333pt;}
.y65{bottom:185.793333pt;}
.y179{bottom:187.864000pt;}
.yc1{bottom:188.301333pt;}
.y4e{bottom:190.429333pt;}
.y14a{bottom:192.144000pt;}
.y138{bottom:192.881333pt;}
.y125{bottom:195.480000pt;}
.y15f{bottom:196.068000pt;}
.yf6{bottom:197.734667pt;}
.y8d{bottom:200.213333pt;}
.ya9{bottom:205.105333pt;}
.y18{bottom:205.148000pt;}
.y7a{bottom:205.324000pt;}
.yd8{bottom:206.216000pt;}
.y39{bottom:209.265333pt;}
.yc0{bottom:209.489333pt;}
.y15e{bottom:211.594667pt;}
.y137{bottom:214.069333pt;}
.y10e{bottom:216.344000pt;}
.y178{bottom:220.389333pt;}
.y4d{bottom:224.900000pt;}
.ya8{bottom:226.293333pt;}
.y17{bottom:226.336000pt;}
.yd7{bottom:227.404000pt;}
.ybf{bottom:230.676000pt;}
.y136{bottom:235.256000pt;}
.y10d{bottom:237.530667pt;}
.y124{bottom:241.289333pt;}
.y177{bottom:241.577333pt;}
.y149{bottom:241.937333pt;}
.y38{bottom:246.392000pt;}
.ya7{bottom:247.480000pt;}
.y64{bottom:250.165333pt;}
.y79{bottom:250.188000pt;}
.y8c{bottom:253.237333pt;}
.y15d{bottom:254.288000pt;}
.yd6{bottom:257.710667pt;}
.y10c{bottom:258.718667pt;}
.y4c{bottom:259.372000pt;}
.y37{bottom:267.580000pt;}
.ya6{bottom:268.668000pt;}
.yd5{bottom:269.029333pt;}
.yf5{bottom:269.840000pt;}
.y176{bottom:272.426667pt;}
.y123{bottom:273.814667pt;}
.y16{bottom:274.801333pt;}
.ybe{bottom:275.157333pt;}
.y10b{bottom:279.905333pt;}
.y135{bottom:280.120000pt;}
.y63{bottom:282.690667pt;}
.y148{bottom:286.801333pt;}
.y36{bottom:288.766667pt;}
.ya5{bottom:289.854667pt;}
.yf4{bottom:291.026667pt;}
.y15{bottom:294.673333pt;}
.y122{bottom:295.002667pt;}
.y175{bottom:295.304000pt;}
.ybd{bottom:296.345333pt;}
.y15c{bottom:301.305333pt;}
.y62{bottom:303.878667pt;}
.y4b{bottom:304.734667pt;}
.y35{bottom:309.954667pt;}
.ya4{bottom:311.042667pt;}
.yf3{bottom:312.214667pt;}
.y18e{bottom:314.178667pt;}
.y14{bottom:314.546667pt;}
.y78{bottom:314.560000pt;}
.y121{bottom:316.189333pt;}
.ybc{bottom:317.532000pt;}
.yd4{bottom:321.786667pt;}
.y15b{bottom:324.181333pt;}
.y61{bottom:325.065333pt;}
.y8b{bottom:325.510667pt;}
.y174{bottom:330.058667pt;}
.y34{bottom:331.141333pt;}
.y10a{bottom:332.930667pt;}
.yf2{bottom:333.401333pt;}
.y18d{bottom:335.365333pt;}
.y120{bottom:337.377333pt;}
.yd3{bottom:342.973333pt;}
.y4a{bottom:343.456000pt;}
.y134{bottom:344.492000pt;}
.y13{bottom:345.757333pt;}
.y77{bottom:347.085333pt;}
.y147{bottom:351.173333pt;}
.y173{bottom:351.245333pt;}
.ybb{bottom:352.002667pt;}
.y33{bottom:352.329333pt;}
.yf1{bottom:354.589333pt;}
.ya3{bottom:355.524000pt;}
.y18c{bottom:356.553333pt;}
.y15a{bottom:359.525333pt;}
.yd2{bottom:364.161333pt;}
.y8a{bottom:364.232000pt;}
.y12{bottom:365.629333pt;}
.y133{bottom:365.678667pt;}
.y76{bottom:368.272000pt;}
.y89{bottom:368.297333pt;}
.y60{bottom:369.929333pt;}
.y146{bottom:372.361333pt;}
.y172{bottom:372.433333pt;}
.yba{bottom:373.190667pt;}
.yf0{bottom:375.776000pt;}
.ya2{bottom:376.710667pt;}
.y18b{bottom:377.740000pt;}
.y49{bottom:377.928000pt;}
.y11f{bottom:382.241333pt;}
.y11{bottom:385.501333pt;}
.y32{bottom:389.456000pt;}
.y145{bottom:393.548000pt;}
.yb9{bottom:394.377333pt;}
.yef{bottom:396.964000pt;}
.ya1{bottom:397.898667pt;}
.yd1{bottom:398.632000pt;}
.y18a{bottom:398.928000pt;}
.y159{bottom:401.714667pt;}
.y88{bottom:402.953333pt;}
.y109{bottom:405.202667pt;}
.y10{bottom:405.373333pt;}
.y31{bottom:410.644000pt;}
.y48{bottom:412.398667pt;}
.y75{bottom:413.136000pt;}
.y171{bottom:414.605333pt;}
.y144{bottom:414.736000pt;}
.y132{bottom:415.473333pt;}
.yb8{bottom:415.565333pt;}
.y158{bottom:417.241333pt;}
.yee{bottom:418.150667pt;}
.yd0{bottom:419.818667pt;}
.yf{bottom:425.245333pt;}
.y170{bottom:425.924000pt;}
.y108{bottom:426.390667pt;}
.y5f{bottom:429.569333pt;}
.y30{bottom:431.830667pt;}
.ya0{bottom:432.369333pt;}
.y143{bottom:435.922667pt;}
.yb7{bottom:436.752000pt;}
.yed{bottom:439.338667pt;}
.ycf{bottom:441.006667pt;}
.ye{bottom:445.118667pt;}
.y11e{bottom:446.612000pt;}
.y47{bottom:446.869333pt;}
.y131{bottom:449.944000pt;}
.y189{bottom:451.952000pt;}
.y87{bottom:452.748000pt;}
.y2f{bottom:453.018667pt;}
.y9f{bottom:453.556000pt;}
.yb6{bottom:457.940000pt;}
.y157{bottom:458.628000pt;}
.yce{bottom:462.193333pt;}
.yd{bottom:464.990667pt;}
.y11d{bottom:467.800000pt;}
.y16f{bottom:470.834667pt;}
.y86{bottom:473.936000pt;}
.y2e{bottom:474.205333pt;}
.y107{bottom:474.477333pt;}
.y9e{bottom:474.744000pt;}
.y74{bottom:477.508000pt;}
.yb5{bottom:479.126667pt;}
.yec{bottom:483.548000pt;}
.y130{bottom:484.416000pt;}
.yc{bottom:484.862667pt;}
.y142{bottom:488.946667pt;}
.y46{bottom:492.678667pt;}
.y85{bottom:495.122667pt;}
.y2d{bottom:495.393333pt;}
.y106{bottom:495.665333pt;}
.y9d{bottom:495.930667pt;}
.y5e{bottom:501.842667pt;}
.y156{bottom:503.492000pt;}
.yeb{bottom:504.736000pt;}
.ycd{bottom:507.057333pt;}
.y73{bottom:510.034667pt;}
.yb4{bottom:511.653333pt;}
.yb{bottom:516.073333pt;}
.y84{bottom:516.310667pt;}
.y2c{bottom:516.580000pt;}
.y105{bottom:516.852000pt;}
.y9c{bottom:517.118667pt;}
.y11c{bottom:517.594667pt;}
.y16e{bottom:518.092000pt;}
.y5d{bottom:523.029333pt;}
.y188{bottom:524.225333pt;}
.yea{bottom:525.922667pt;}
.y72{bottom:531.221333pt;}
.yb3{bottom:532.840000pt;}
.y12f{bottom:534.209333pt;}
.ya{bottom:535.945333pt;}
.y2b{bottom:537.768000pt;}
.y104{bottom:538.040000pt;}
.y5c{bottom:544.217333pt;}
.y187{bottom:545.412000pt;}
.y45{bottom:545.702667pt;}
.ye9{bottom:547.110667pt;}
.y9b{bottom:549.644000pt;}
.y11b{bottom:552.065333pt;}
.yb2{bottom:554.028000pt;}
.y12e{bottom:555.397333pt;}
.y9{bottom:555.818667pt;}
.y103{bottom:559.226667pt;}
.y141{bottom:561.220000pt;}
.y5b{bottom:565.404000pt;}
.y83{bottom:566.104000pt;}
.y186{bottom:566.600000pt;}
.y155{bottom:567.864000pt;}
.y9a{bottom:570.832000pt;}
.ycc{bottom:571.429333pt;}
.y2a{bottom:574.896000pt;}
.y8{bottom:575.690667pt;}
.y71{bottom:576.085333pt;}
.y12d{bottom:576.584000pt;}
.y102{bottom:580.414667pt;}
.ye8{bottom:580.768000pt;}
.y140{bottom:582.408000pt;}
.y16d{bottom:582.464000pt;}
.y99{bottom:592.018667pt;}
.ycb{bottom:592.616000pt;}
.y7{bottom:595.562667pt;}
.y101{bottom:601.601333pt;}
.y11a{bottom:601.860000pt;}
.ye7{bottom:601.956000pt;}
.y13f{bottom:603.594667pt;}
.y16c{bottom:603.650667pt;}
.yb1{bottom:605.900000pt;}
.y154{bottom:606.585333pt;}
.y29{bottom:612.022667pt;}
.y98{bottom:613.206667pt;}
.yca{bottom:613.804000pt;}
.y5a{bottom:615.198667pt;}
.y185{bottom:616.394667pt;}
.y16b{bottom:616.868000pt;}
.y44{bottom:617.976000pt;}
.y82{bottom:619.129333pt;}
.y12c{bottom:621.448000pt;}
.y119{bottom:623.046667pt;}
.ye6{bottom:623.142667pt;}
.y16a{bottom:624.838667pt;}
.yb0{bottom:627.088000pt;}
.y97{bottom:634.393333pt;}
.y6{bottom:635.441333pt;}
.y59{bottom:636.386667pt;}
.y184{bottom:637.581333pt;}
.y70{bottom:640.457333pt;}
.y118{bottom:644.234667pt;}
.ye5{bottom:644.330667pt;}
.y153{bottom:645.308000pt;}
.yaf{bottom:648.274667pt;}
.y28{bottom:649.150667pt;}
.y100{bottom:649.748000pt;}
.y43{bottom:652.446667pt;}
.y13e{bottom:653.389333pt;}
.y96{bottom:655.581333pt;}
.y58{bottom:657.573333pt;}
.y6f{bottom:661.644000pt;}
.y169{bottom:665.304000pt;}
.ye4{bottom:665.517333pt;}
.y168{bottom:669.369333pt;}
.yae{bottom:669.462667pt;}
.y27{bottom:670.337333pt;}
.y183{bottom:672.052000pt;}
.y152{bottom:684.029333pt;}
.y12b{bottom:685.820000pt;}
.ye3{bottom:686.705333pt;}
.y42{bottom:686.917333pt;}
.y13d{bottom:687.860000pt;}
.y117{bottom:689.098667pt;}
.yad{bottom:690.649333pt;}
.y81{bottom:691.402667pt;}
.y26{bottom:691.525333pt;}
.y182{bottom:693.240000pt;}
.y95{bottom:700.061333pt;}
.y5{bottom:701.189333pt;}
.yff{bottom:702.772000pt;}
.y57{bottom:702.937333pt;}
.y167{bottom:704.026667pt;}
.y12a{bottom:707.008000pt;}
.yc9{bottom:711.837333pt;}
.y80{bottom:712.589333pt;}
.y25{bottom:712.712000pt;}
.ye2{bottom:719.230667pt;}
.y41{bottom:721.388000pt;}
.y13c{bottom:722.330667pt;}
.y151{bottom:722.750667pt;}
.y6e{bottom:724.854667pt;}
.y181{bottom:727.710667pt;}
.yc8{bottom:733.024000pt;}
.y24{bottom:733.900000pt;}
.yac{bottom:735.130667pt;}
.y94{bottom:738.784000pt;}
.ye1{bottom:740.418667pt;}
.y56{bottom:741.658667pt;}
.y93{bottom:742.848000pt;}
.y6d{bottom:746.042667pt;}
.y180{bottom:748.898667pt;}
.y166{bottom:750.724000pt;}
.y4{bottom:751.268000pt;}
.y116{bottom:753.469333pt;}
.yc7{bottom:754.212000pt;}
.yab{bottom:756.317333pt;}
.y129{bottom:756.801333pt;}
.y7f{bottom:757.453333pt;}
.y165{bottom:762.042667pt;}
.y164{bottom:766.106667pt;}
.y40{bottom:767.197333pt;}
.y17f{bottom:770.085333pt;}
.y23{bottom:771.028000pt;}
.y150{bottom:772.545333pt;}
.ye0{bottom:774.657333pt;}
.yfe{bottom:775.045333pt;}
.y92{bottom:777.505333pt;}
.y55{bottom:787.021333pt;}
.y3f{bottom:788.385333pt;}
.y6c{bottom:790.906667pt;}
.y128{bottom:791.273333pt;}
.y115{bottom:795.844000pt;}
.yfd{bottom:796.232000pt;}
.ydf{bottom:797.533333pt;}
.y91{bottom:798.692000pt;}
.y14f{bottom:803.252000pt;}
.y17e{bottom:804.556000pt;}
.y22{bottom:808.154667pt;}
.y3{bottom:812.818667pt;}
.y163{bottom:814.285333pt;}
.y14e{bottom:814.570667pt;}
.yfc{bottom:817.420000pt;}
.y90{bottom:819.880000pt;}
.y3e{bottom:820.910667pt;}
.y7e{bottom:821.825333pt;}
.y54{bottom:825.744000pt;}
.yde{bottom:831.645333pt;}
.y114{bottom:834.566667pt;}
.y162{bottom:837.417333pt;}
.yfb{bottom:838.606667pt;}
.y113{bottom:838.630667pt;}
.y2{bottom:839.120000pt;}
.yc6{bottom:841.066667pt;}
.y3d{bottom:842.098667pt;}
.y21{bottom:845.282667pt;}
.y161{bottom:848.736000pt;}
.ydd{bottom:852.832000pt;}
.y7d{bottom:854.350667pt;}
.y6b{bottom:855.277333pt;}
.yfa{bottom:859.794667pt;}
.y14d{bottom:859.974667pt;}
.y3c{bottom:863.285333pt;}
.y20{bottom:866.469333pt;}
.y112{bottom:873.288000pt;}
.y53{bottom:875.538667pt;}
.y1{bottom:875.649333pt;}
.y3b{bottom:884.473333pt;}
.ydc{bottom:887.072000pt;}
.y111{bottom:894.474667pt;}
.y52{bottom:896.725333pt;}
.ydb{bottom:898.390667pt;}
.y1f{bottom:903.597333pt;}
.y6a{bottom:905.338667pt;}
.y69{bottom:909.402667pt;}
.yf9{bottom:909.589333pt;}
.y3a{bottom:937.497333pt;}
.y51{bottom:941.589333pt;}
.y1e{bottom:943.702667pt;}
.y68{bottom:944.060000pt;}
.h3{height:45.381856pt;}
.h4{height:49.733632pt;}
.h2{height:59.680192pt;}
.h5{height:71.616064pt;}
.h1{height:85.956000pt;}
.h6{height:108.457574pt;}
.ha{height:108.462908pt;}
.he{height:110.084241pt;}
.h13{height:117.435399pt;}
.h8{height:124.713574pt;}
.h7{height:124.718908pt;}
.h15{height:125.289574pt;}
.h10{height:137.854908pt;}
.h14{height:140.340241pt;}
.hc{height:153.732241pt;}
.h9{height:154.686908pt;}
.hd{height:154.692241pt;}
.hf{height:155.358908pt;}
.h11{height:170.564241pt;}
.hb{height:199.961574pt;}
.h12{height:212.379399pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:93.736000pt;}
.x9{left:96.000000pt;}
.x21{left:108.433333pt;}
.x19{left:111.632000pt;}
.x1f{left:112.833333pt;}
.xe{left:113.789333pt;}
.xb{left:119.910667pt;}
.xc{left:121.568000pt;}
.x1c{left:130.938667pt;}
.x8{left:135.850667pt;}
.x7{left:157.669333pt;}
.x1d{left:161.420000pt;}
.x1b{left:168.612000pt;}
.x26{left:184.685333pt;}
.x2{left:204.914667pt;}
.x35{left:223.414667pt;}
.x34{left:237.633333pt;}
.x3{left:239.844000pt;}
.x3b{left:254.892000pt;}
.x15{left:256.973333pt;}
.x14{left:271.192000pt;}
.x2a{left:276.194667pt;}
.x2f{left:277.525333pt;}
.x36{left:284.468000pt;}
.x1{left:293.901333pt;}
.x2d{left:308.696000pt;}
.x20{left:309.736000pt;}
.x32{left:316.236000pt;}
.x38{left:317.250667pt;}
.x4{left:327.145333pt;}
.x23{left:328.326667pt;}
.x11{left:331.924000pt;}
.xf{left:342.157333pt;}
.x22{left:344.277333pt;}
.x3a{left:346.358667pt;}
.x28{left:349.269333pt;}
.xd{left:351.848000pt;}
.x2c{left:354.985333pt;}
.x29{left:363.756000pt;}
.x2e{left:374.270667pt;}
.x17{left:377.070667pt;}
.x6{left:378.553333pt;}
.x13{left:383.025333pt;}
.x5{left:384.701333pt;}
.x30{left:386.805333pt;}
.x10{left:388.816000pt;}
.x16{left:391.289333pt;}
.x12{left:397.244000pt;}
.x25{left:398.340000pt;}
.x27{left:400.538667pt;}
.xa{left:403.217333pt;}
.x1a{left:419.546667pt;}
.x24{left:423.077333pt;}
.x39{left:427.097333pt;}
.x33{left:435.746667pt;}
.x2b{left:446.426667pt;}
.x31{left:491.760000pt;}
.x37{left:512.722667pt;}
.x18{left:535.506667pt;}
}




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