
    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_29d69e3872a0057b53294138.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1780e8d16d4aac84c15b9322.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f31ba7eb2505c2118b16c031.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_d3d6e1c25bcc0f33c6939aa1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_a634a9ca1ec65d134edef456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.717000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_81fa368b1ba4df8d9232f384.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_06a3237f52ccf1c887326905.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_235a1479423dc677fcdb5964.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dceeb44183a1bb96151e25ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a6b3ed9410fc0a788dc97df3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962000;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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.ls2{letter-spacing:0.000000px;}
.ls48{letter-spacing:2.396571px;}
.ls45{letter-spacing:2.407302px;}
.ls44{letter-spacing:2.425813px;}
.ls46{letter-spacing:2.426710px;}
.ls47{letter-spacing:2.427782px;}
.ls1f{letter-spacing:2.494507px;}
.ls29{letter-spacing:2.497990px;}
.ls34{letter-spacing:2.504867px;}
.ls1b{letter-spacing:2.505677px;}
.ls26{letter-spacing:2.509176px;}
.ls31{letter-spacing:2.516084px;}
.ls1a{letter-spacing:2.524944px;}
.ls1c{letter-spacing:2.525878px;}
.ls1e{letter-spacing:2.526993px;}
.ls25{letter-spacing:2.528469px;}
.ls27{letter-spacing:2.529405px;}
.ls1d{letter-spacing:2.530014px;}
.ls28{letter-spacing:2.530522px;}
.ls2b{letter-spacing:2.533547px;}
.ls30{letter-spacing:2.535430px;}
.ls7{letter-spacing:2.536066px;}
.ls32{letter-spacing:2.536368px;}
.ls33{letter-spacing:2.537489px;}
.ls4{letter-spacing:2.547422px;}
.ls3{letter-spacing:2.567010px;}
.ls5{letter-spacing:2.567960px;}
.ls6{letter-spacing:2.569094px;}
.ls4e{letter-spacing:2.586215px;}
.ls4b{letter-spacing:2.597796px;}
.ls4a{letter-spacing:2.617771px;}
.ls4c{letter-spacing:2.618739px;}
.ls4d{letter-spacing:2.619896px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990611px;}
.ls59{letter-spacing:3.471193px;}
.ls15{letter-spacing:4.878824px;}
.ls14{letter-spacing:4.916901px;}
.ls37{letter-spacing:4.965596px;}
.ls13{letter-spacing:7.353196px;}
.ls51{letter-spacing:10.632538px;}
.ls54{letter-spacing:11.322538px;}
.ls55{letter-spacing:11.328538px;}
.ls52{letter-spacing:12.084538px;}
.ls50{letter-spacing:12.130200px;}
.ls53{letter-spacing:12.834538px;}
.ls56{letter-spacing:12.880200px;}
.ls11{letter-spacing:13.230538px;}
.lsf{letter-spacing:13.236538px;}
.ls2e{letter-spacing:13.272538px;}
.ls22{letter-spacing:14.478538px;}
.ls49{letter-spacing:14.518797px;}
.ls3b{letter-spacing:14.562538px;}
.ls10{letter-spacing:14.892538px;}
.ls12{letter-spacing:14.898538px;}
.ls42{letter-spacing:14.946538px;}
.ls2f{letter-spacing:14.964538px;}
.ls2d{letter-spacing:15.016200px;}
.ls20{letter-spacing:15.112109px;}
.ls2c{letter-spacing:15.133209px;}
.ls2a{letter-spacing:15.138287px;}
.ls36{letter-spacing:15.174874px;}
.ls35{letter-spacing:15.179965px;}
.ls8{letter-spacing:15.363882px;}
.ls57{letter-spacing:15.660538px;}
.ls4f{letter-spacing:15.672948px;}
.lsa{letter-spacing:16.116538px;}
.lsc{letter-spacing:16.122538px;}
.ls17{letter-spacing:16.140538px;}
.ls39{letter-spacing:16.176538px;}
.ls3e{letter-spacing:16.884538px;}
.ls40{letter-spacing:16.890538px;}
.ls16{letter-spacing:16.948200px;}
.ls23{letter-spacing:17.136538px;}
.ls21{letter-spacing:17.182200px;}
.ls24{letter-spacing:17.188200px;}
.ls9{letter-spacing:17.218200px;}
.ls3c{letter-spacing:17.286538px;}
.ls3d{letter-spacing:17.332200px;}
.ls43{letter-spacing:17.976538px;}
.ls58{letter-spacing:19.260538px;}
.lsd{letter-spacing:20.082538px;}
.lsb{letter-spacing:20.088538px;}
.ls18{letter-spacing:20.118538px;}
.lse{letter-spacing:20.134200px;}
.ls19{letter-spacing:20.170200px;}
.ls3a{letter-spacing:20.190538px;}
.ls38{letter-spacing:20.236200px;}
.ls41{letter-spacing:21.468538px;}
.ls3f{letter-spacing:21.474538px;}
.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;}
}
.ws100{word-spacing:-21.519300px;}
.wse3{word-spacing:-15.712435px;}
.ws3a{word-spacing:-15.407759px;}
.wsb2{word-spacing:-15.218210px;}
.ws98{word-spacing:-15.176427px;}
.ws7b{word-spacing:-15.155267px;}
.ws5b{word-spacing:-14.943900px;}
.wscd{word-spacing:-14.560260px;}
.wsdd{word-spacing:-10.474983px;}
.ws119{word-spacing:-10.460700px;}
.ws36{word-spacing:-10.271865px;}
.wsad{word-spacing:-10.145499px;}
.ws91{word-spacing:-10.117643px;}
.ws75{word-spacing:-10.103536px;}
.wsc9{word-spacing:-9.706864px;}
.ws62{word-spacing:-3.587958px;}
.ws61{word-spacing:-3.586536px;}
.ws9{word-spacing:-3.407209px;}
.wsbd{word-spacing:-3.347434px;}
.ws83{word-spacing:-3.227882px;}
.ws8b{word-spacing:-3.108331px;}
.ws51{word-spacing:-2.929004px;}
.ws2c{word-spacing:-2.869229px;}
.wsf1{word-spacing:-2.809453px;}
.wsa1{word-spacing:-2.749678px;}
.ws2d{word-spacing:-2.630126px;}
.wsda{word-spacing:-2.618342px;}
.ws35{word-spacing:-2.569197px;}
.ws33{word-spacing:-2.567570px;}
.wsaa{word-spacing:-2.541075px;}
.wsaf{word-spacing:-2.540850px;}
.wsac{word-spacing:-2.535758px;}
.ws93{word-spacing:-2.534098px;}
.ws90{word-spacing:-2.533205px;}
.ws79{word-spacing:-2.529587px;}
.ws8e{word-spacing:-2.529021px;}
.ws96{word-spacing:-2.528127px;}
.ws72{word-spacing:-2.525494px;}
.ws74{word-spacing:-2.524517px;}
.ws5c{word-spacing:-2.510575px;}
.wsc8{word-spacing:-2.428617px;}
.wsc6{word-spacing:-2.426342px;}
.ws58{word-spacing:-2.271473px;}
.ws105{word-spacing:-2.175826px;}
.wsf3{word-spacing:-2.092146px;}
.wsf2{word-spacing:-2.088446px;}
.ws7{word-spacing:-2.032370px;}
.wsa7{word-spacing:-1.912819px;}
.ws63{word-spacing:-1.733492px;}
.ws47{word-spacing:-1.613941px;}
.ws3{word-spacing:-1.554166px;}
.ws31{word-spacing:-1.434614px;}
.ws2f{word-spacing:-1.374839px;}
.wsa{word-spacing:-1.315063px;}
.ws4a{word-spacing:-1.195512px;}
.ws4b{word-spacing:-1.177483px;}
.ws70{word-spacing:-1.016185px;}
.ws5d{word-spacing:-0.956410px;}
.ws55{word-spacing:-0.836858px;}
.ws23{word-spacing:-0.777083px;}
.wsc{word-spacing:-0.717307px;}
.ws54{word-spacing:-0.657532px;}
.ws6c{word-spacing:-0.597756px;}
.ws118{word-spacing:-0.543956px;}
.ws101{word-spacing:-0.537980px;}
.ws52{word-spacing:-0.478205px;}
.ws6b{word-spacing:-0.298878px;}
.ws11b{word-spacing:-0.209214px;}
.ws50{word-spacing:-0.179327px;}
.ws27{word-spacing:-0.059776px;}
.ws117{word-spacing:-0.041843px;}
.wsde{word-spacing:-0.007539px;}
.ws95{word-spacing:-0.007282px;}
.ws76{word-spacing:-0.007271px;}
.wse0{word-spacing:-0.002282px;}
.ws37{word-spacing:-0.002237px;}
.wsae{word-spacing:-0.002210px;}
.ws92{word-spacing:-0.002204px;}
.ws78{word-spacing:-0.002201px;}
.wsca{word-spacing:-0.002114px;}
.ws0{word-spacing:0.000000px;}
.wsc5{word-spacing:0.006418px;}
.ws71{word-spacing:0.006680px;}
.ws8d{word-spacing:0.006689px;}
.ws32{word-spacing:0.006791px;}
.wsd9{word-spacing:0.006926px;}
.wsa9{word-spacing:0.011800px;}
.wsa8{word-spacing:0.059776px;}
.wsff{word-spacing:0.119551px;}
.wsd8{word-spacing:0.179327px;}
.ws10a{word-spacing:0.292900px;}
.ws43{word-spacing:0.298878px;}
.ws6f{word-spacing:0.358654px;}
.ws6e{word-spacing:0.418429px;}
.ws111{word-spacing:0.460271px;}
.ws8a{word-spacing:0.465367px;}
.ws89{word-spacing:0.478205px;}
.ws1a{word-spacing:0.597756px;}
.ws11d{word-spacing:0.711328px;}
.wsb7{word-spacing:0.717307px;}
.wsb8{word-spacing:0.732042px;}
.ws42{word-spacing:0.777083px;}
.ws1f{word-spacing:0.896634px;}
.ws115{word-spacing:1.004227px;}
.wsa2{word-spacing:1.016185px;}
.ws10{word-spacing:1.075961px;}
.ws11{word-spacing:1.135736px;}
.ws19{word-spacing:1.147694px;}
.ws104{word-spacing:1.171598px;}
.ws2a{word-spacing:1.195512px;}
.ws11c{word-spacing:1.255284px;}
.ws10f{word-spacing:1.297127px;}
.wsfc{word-spacing:1.315063px;}
.ws109{word-spacing:1.338970px;}
.ws110{word-spacing:1.422655px;}
.ws88{word-spacing:1.554166px;}
.wsa5{word-spacing:1.613941px;}
.ws107{word-spacing:1.673712px;}
.ws29{word-spacing:1.673717px;}
.ws28{word-spacing:1.793268px;}
.ws10c{word-spacing:1.799240px;}
.ws116{word-spacing:1.882926px;}
.wsf0{word-spacing:1.912819px;}
.ws106{word-spacing:1.924769px;}
.ws67{word-spacing:1.972595px;}
.ws66{word-spacing:2.032370px;}
.ws113{word-spacing:2.092140px;}
.wsa0{word-spacing:2.151922px;}
.ws8c{word-spacing:2.211697px;}
.ws4c{word-spacing:2.271473px;}
.ws14{word-spacing:2.331248px;}
.wsc1{word-spacing:2.380384px;}
.wsc0{word-spacing:2.387134px;}
.ws56{word-spacing:2.391024px;}
.ws22{word-spacing:2.510575px;}
.ws10b{word-spacing:2.552411px;}
.ws108{word-spacing:2.594254px;}
.wsdc{word-spacing:2.615562px;}
.wse1{word-spacing:2.620819px;}
.wsd{word-spacing:2.630126px;}
.ws84{word-spacing:2.689902px;}
.ws57{word-spacing:2.809453px;}
.ws9f{word-spacing:2.869229px;}
.ws2e{word-spacing:2.988780px;}
.ws49{word-spacing:3.048556px;}
.wsa3{word-spacing:3.108331px;}
.ws10d{word-spacing:3.180053px;}
.ws114{word-spacing:3.263738px;}
.wsbb{word-spacing:3.347434px;}
.ws103{word-spacing:3.514795px;}
.ws87{word-spacing:3.526760px;}
.ws86{word-spacing:3.564042px;}
.ws85{word-spacing:3.586536px;}
.ws44{word-spacing:3.706087px;}
.ws2b{word-spacing:3.765863px;}
.ws11a{word-spacing:3.891380px;}
.ws6{word-spacing:3.945190px;}
.ws10e{word-spacing:3.975066px;}
.wsb6{word-spacing:4.064741px;}
.ws13{word-spacing:4.244068px;}
.wsba{word-spacing:4.253992px;}
.wsb9{word-spacing:4.303843px;}
.wsf6{word-spacing:4.334209px;}
.wsf5{word-spacing:4.336009px;}
.wsf4{word-spacing:4.363619px;}
.ws20{word-spacing:4.423394px;}
.ws9e{word-spacing:4.602721px;}
.ws9d{word-spacing:4.722272px;}
.ws1e{word-spacing:4.782048px;}
.wsc7{word-spacing:4.806073px;}
.wscc{word-spacing:4.814605px;}
.ws5e{word-spacing:4.901599px;}
.wseb{word-spacing:4.961375px;}
.ws73{word-spacing:5.002473px;}
.ws8f{word-spacing:5.009458px;}
.ws7a{word-spacing:5.011354px;}
.ws97{word-spacing:5.018351px;}
.ws5{word-spacing:5.021150px;}
.wsab{word-spacing:5.023250px;}
.wsb1{word-spacing:5.032167px;}
.ws2{word-spacing:5.080926px;}
.ws34{word-spacing:5.085816px;}
.ws39{word-spacing:5.094845px;}
.ws65{word-spacing:5.133524px;}
.ws64{word-spacing:5.140702px;}
.ws4d{word-spacing:5.181923px;}
.wsdb{word-spacing:5.186384px;}
.wse2{word-spacing:5.195592px;}
.ws4e{word-spacing:5.200477px;}
.ws4f{word-spacing:5.204822px;}
.ws68{word-spacing:5.225492px;}
.ws69{word-spacing:5.229047px;}
.wsbf{word-spacing:5.260253px;}
.wsbe{word-spacing:5.320028px;}
.ws21{word-spacing:5.379804px;}
.ws12{word-spacing:5.439580px;}
.ws15{word-spacing:5.499355px;}
.ws1d{word-spacing:5.559131px;}
.ws112{word-spacing:5.565092px;}
.wsa6{word-spacing:5.610042px;}
.ws1b{word-spacing:5.618906px;}
.ws48{word-spacing:5.678682px;}
.ws60{word-spacing:5.738458px;}
.ws53{word-spacing:5.858009px;}
.ws6d{word-spacing:6.037336px;}
.wsfb{word-spacing:6.156887px;}
.ws16{word-spacing:6.216662px;}
.ws25{word-spacing:6.395989px;}
.wsfa{word-spacing:6.455765px;}
.wsc3{word-spacing:6.560159px;}
.wsc2{word-spacing:6.566125px;}
.wsc4{word-spacing:6.575316px;}
.wsb{word-spacing:6.635092px;}
.ws24{word-spacing:6.694867px;}
.ws6a{word-spacing:6.754643px;}
.wsd7{word-spacing:7.113296px;}
.wsf8{word-spacing:7.471950px;}
.ws30{word-spacing:7.531726px;}
.ws1c{word-spacing:7.830604px;}
.ws17{word-spacing:8.069706px;}
.ws26{word-spacing:8.129482px;}
.wsf9{word-spacing:8.189257px;}
.ws41{word-spacing:8.428360px;}
.wsec{word-spacing:8.607686px;}
.wsee{word-spacing:8.884091px;}
.wsef{word-spacing:8.906564px;}
.ws102{word-spacing:8.996202px;}
.ws4{word-spacing:9.085891px;}
.wsed{word-spacing:9.265218px;}
.ws40{word-spacing:9.683647px;}
.ws45{word-spacing:10.161852px;}
.ws46{word-spacing:10.194042px;}
.wsbc{word-spacing:10.819384px;}
.ws18{word-spacing:11.901626px;}
.ws1{word-spacing:11.907329px;}
.ws3f{word-spacing:16.772534px;}
.ws8{word-spacing:18.175966px;}
.wsf{word-spacing:21.519300px;}
.wsa4{word-spacing:23.287966px;}
.ws5f{word-spacing:25.069966px;}
.wsf7{word-spacing:25.633966px;}
.wse{word-spacing:37.003661px;}
.wsce{word-spacing:46.107491px;}
.ws7c{word-spacing:47.991677px;}
.ws99{word-spacing:48.058686px;}
.wsb3{word-spacing:48.190999px;}
.ws3b{word-spacing:48.791236px;}
.wse4{word-spacing:49.756044px;}
.ws7d{word-spacing:50.008560px;}
.ws3c{word-spacing:50.844342px;}
.wse5{word-spacing:51.846864px;}
.ws94{word-spacing:53.083770px;}
.wsb0{word-spacing:53.235010px;}
.ws38{word-spacing:55.336372px;}
.wscf{word-spacing:59.551464px;}
.wsd2{word-spacing:60.179673px;}
.ws80{word-spacing:61.985040px;}
.ws3e{word-spacing:63.017733px;}
.wse6{word-spacing:64.263859px;}
.wse8{word-spacing:64.940560px;}
.wsd0{word-spacing:66.297718px;}
.ws7f{word-spacing:69.006980px;}
.ws9a{word-spacing:69.103331px;}
.wsb4{word-spacing:69.293584px;}
.ws3d{word-spacing:70.156661px;}
.wse7{word-spacing:71.543954px;}
.ws7e{word-spacing:74.614429px;}
.wse9{word-spacing:77.357554px;}
.wsd1{word-spacing:78.431268px;}
.ws77{word-spacing:88.175198px;}
.wsea{word-spacing:90.451250px;}
.wsdf{word-spacing:93.982356px;}
.wsd3{word-spacing:95.952115px;}
.wscb{word-spacing:114.367051px;}
.wsd5{word-spacing:354.697486px;}
.ws9c{word-spacing:365.714158px;}
.wsfd{word-spacing:403.977419px;}
.wsd6{word-spacing:425.715673px;}
.ws81{word-spacing:474.995607px;}
.ws5a{word-spacing:480.503943px;}
.wsd4{word-spacing:496.930587px;}
.ws59{word-spacing:529.685513px;}
.wsb5{word-spacing:535.095486px;}
.ws9b{word-spacing:540.702185px;}
.wsfe{word-spacing:578.867084px;}
.ws82{word-spacing:584.277056px;}
._29{margin-left:-2194.555159px;}
._42{margin-left:-2170.623385px;}
._2b{margin-left:-2169.604424px;}
._12{margin-left:-2153.788200px;}
._a{margin-left:-2137.673098px;}
._70{margin-left:-2119.285309px;}
._4c{margin-left:-2047.363323px;}
._13{margin-left:-1223.620088px;}
._6c{margin-left:-1169.797739px;}
._43{margin-left:-1022.271558px;}
._6f{margin-left:-919.600982px;}
._72{margin-left:-904.691129px;}
._e{margin-left:-554.731124px;}
._6d{margin-left:-479.220866px;}
._75{margin-left:-344.959952px;}
._26{margin-left:-7.839502px;}
._27{margin-left:-6.393604px;}
._8{margin-left:-5.140702px;}
._3{margin-left:-3.885414px;}
._1{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._4d{width:1.435055px;}
._19{width:2.506335px;}
._5a{width:3.511163px;}
._24{width:5.544516px;}
._74{width:9.880514px;}
._73{width:11.100194px;}
._71{width:12.158352px;}
._38{width:13.186502px;}
._28{width:14.645021px;}
._c{width:15.679416px;}
._7{width:17.585992px;}
._2a{width:18.649987px;}
._5{width:19.905275px;}
._2{width:21.280114px;}
._9{width:22.356074px;}
._17{width:23.372260px;}
._18{width:25.643732px;}
._15{width:26.779469px;}
._25{width:28.034756px;}
._6{width:30.162773px;}
._16{width:31.263029px;}
._6e{width:32.458151px;}
._14{width:34.203608px;}
._10{width:35.865600px;}
._b{width:37.837955px;}
._11{width:41.245164px;}
._f{width:43.038600px;}
._4{width:45.345775px;}
._51{width:60.131139px;}
._34{width:62.688467px;}
._21{width:63.735500px;}
._63{width:64.812778px;}
._55{width:71.685014px;}
._58{width:73.120711px;}
._2f{width:74.563911px;}
._1d{width:75.806173px;}
._5f{width:77.357554px;}
._4e{width:78.479802px;}
._2c{width:81.686887px;}
._1a{width:83.047819px;}
._45{width:84.765431px;}
._46{width:86.242041px;}
._32{width:87.243818px;}
._20{width:88.697331px;}
._53{width:90.564818px;}
._3c{width:92.416578px;}
._31{width:94.265758px;}
._1f{width:95.836259px;}
._5e{width:97.731345px;}
._35{width:99.873206px;}
._22{width:101.537130px;}
._57{width:102.698369px;}
._3b{width:104.413818px;}
._3e{width:105.557199px;}
._3a{width:107.044399px;}
._1c{width:108.676058px;}
._67{width:110.825041px;}
._36{width:112.452078px;}
._59{width:113.472961px;}
._3f{width:117.060841px;}
._47{width:118.600585px;}
._3d{width:119.691422px;}
._1e{width:121.515857px;}
._4a{width:124.434232px;}
._49{width:125.840290px;}
._41{width:129.707863px;}
._48{width:131.282427px;}
._62{width:137.012432px;}
._4b{width:138.933279px;}
._23{width:140.005167px;}
._64{width:142.698251px;}
._40{width:144.279668px;}
._6b{width:148.639634px;}
._54{width:149.779221px;}
._65{width:153.780336px;}
._56{width:161.912771px;}
._2e{width:165.899651px;}
._33{width:168.678116px;}
._5c{width:171.946412px;}
._60{width:174.827026px;}
._30{width:178.529040px;}
._66{width:179.967727px;}
._37{width:181.960414px;}
._6a{width:184.250315px;}
._5d{width:185.758904px;}
._61{width:188.356072px;}
._69{width:196.667310px;}
._68{width:209.761006px;}
._50{width:248.349505px;}
._52{width:260.483055px;}
._39{width:558.292627px;}
._44{width:564.142043px;}
._5b{width:574.314667px;}
._1b{width:583.233762px;}
._2d{width:590.546400px;}
._4f{width:607.839593px;}
._d{width:1124.453581px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs12{font-size:38.827458px;}
.fsc{font-size:40.414145px;}
.fse{font-size:40.470574px;}
.fs10{font-size:40.581996px;}
.fs8{font-size:41.087460px;}
.fs15{font-size:41.842800px;}
.fs14{font-size:41.899932px;}
.fs3{font-size:44.233800px;}
.fs2{font-size:47.820600px;}
.fs11{font-size:48.534201px;}
.fsb{font-size:50.517555px;}
.fsd{font-size:50.588090px;}
.fsf{font-size:50.727367px;}
.fs7{font-size:51.359196px;}
.fs13{font-size:52.374783px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:71.731200px;}
.fsa{font-size:78.690710px;}
.fs0{font-size:86.077200px;}
.fs9{font-size:98.363141px;}
.y0{bottom:0.000000px;}
.y22{bottom:134.047500px;}
.y191{bottom:178.879500px;}
.y71{bottom:182.430000px;}
.yb9{bottom:183.757500px;}
.y95{bottom:185.841000px;}
.y47{bottom:190.162500px;}
.y126{bottom:191.556000px;}
.y21{bottom:191.902500px;}
.y190{bottom:192.328500px;}
.y167{bottom:194.791500px;}
.y14f{bottom:194.896500px;}
.y70{bottom:200.364000px;}
.y94{bottom:203.773500px;}
.y46{bottom:208.095000px;}
.y102{bottom:209.061000px;}
.y125{bottom:209.488500px;}
.y20{bottom:210.438000px;}
.yb8{bottom:211.777500px;}
.y166{bottom:212.724000px;}
.y14e{bottom:212.829000px;}
.ydd{bottom:213.240000px;}
.y18f{bottom:217.270500px;}
.y6f{bottom:218.296500px;}
.y1f{bottom:220.812000px;}
.y93{bottom:221.706000px;}
.y45{bottom:226.027500px;}
.y101{bottom:226.993500px;}
.y124{bottom:227.421000px;}
.y18e{bottom:230.719500px;}
.y14d{bottom:230.761500px;}
.ydc{bottom:231.172500px;}
.y6e{bottom:236.229000px;}
.y1e{bottom:239.349000px;}
.y92{bottom:239.638500px;}
.y44{bottom:243.960000px;}
.y100{bottom:244.926000px;}
.y123{bottom:245.353500px;}
.y165{bottom:246.124500px;}
.y14c{bottom:248.694000px;}
.ydb{bottom:249.106500px;}
.yb7{bottom:251.565000px;}
.y6d{bottom:254.161500px;}
.y18d{bottom:255.661500px;}
.y91{bottom:257.571000px;}
.y43{bottom:261.892500px;}
.yff{bottom:262.858500px;}
.y122{bottom:263.286000px;}
.y14b{bottom:266.626500px;}
.yda{bottom:267.039000px;}
.y18c{bottom:269.110500px;}
.yb6{bottom:269.497500px;}
.y6c{bottom:272.094000px;}
.y90{bottom:275.505000px;}
.y42{bottom:279.826500px;}
.yfe{bottom:280.791000px;}
.y121{bottom:281.218500px;}
.y18b{bottom:282.561000px;}
.y14a{bottom:284.560500px;}
.y1d{bottom:284.797500px;}
.yd9{bottom:284.971500px;}
.yb5{bottom:287.431500px;}
.y6b{bottom:290.026500px;}
.y8f{bottom:293.437500px;}
.y164{bottom:296.559000px;}
.y41{bottom:297.759000px;}
.yfd{bottom:298.725000px;}
.y120{bottom:299.152500px;}
.y149{bottom:302.493000px;}
.y1c{bottom:302.730000px;}
.yd8{bottom:302.904000px;}
.yb4{bottom:305.364000px;}
.y18a{bottom:307.501500px;}
.y6a{bottom:307.960500px;}
.y8e{bottom:311.370000px;}
.y163{bottom:314.493000px;}
.y40{bottom:315.691500px;}
.yfc{bottom:316.657500px;}
.y11f{bottom:317.085000px;}
.y148{bottom:320.425500px;}
.y1b{bottom:320.662500px;}
.yd7{bottom:320.836500px;}
.yb3{bottom:323.296500px;}
.y69{bottom:325.893000px;}
.y189{bottom:332.443500px;}
.yfb{bottom:334.590000px;}
.y1a{bottom:338.595000px;}
.yd6{bottom:338.769000px;}
.y8d{bottom:339.390000px;}
.yb2{bottom:341.229000px;}
.y3f{bottom:343.711500px;}
.y68{bottom:343.825500px;}
.y11e{bottom:345.105000px;}
.y188{bottom:345.892500px;}
.y162{bottom:347.892000px;}
.yfa{bottom:352.522500px;}
.y147{bottom:353.824500px;}
.y19{bottom:356.529000px;}
.yd5{bottom:356.703000px;}
.yb1{bottom:359.161500px;}
.yf9{bottom:370.455000px;}
.y187{bottom:370.834500px;}
.y3e{bottom:371.731500px;}
.y67{bottom:371.845500px;}
.y18{bottom:374.461500px;}
.yd4{bottom:374.635500px;}
.yb0{bottom:377.094000px;}
.y8c{bottom:379.177500px;}
.y186{bottom:384.283500px;}
.yf8{bottom:388.389000px;}
.y17{bottom:392.394000px;}
.y11d{bottom:392.524500px;}
.yd3{bottom:392.568000px;}
.yaf{bottom:395.028000px;}
.y8b{bottom:397.110000px;}
.y161{bottom:398.328000px;}
.y146{bottom:404.260500px;}
.yf7{bottom:406.321500px;}
.y3d{bottom:408.120000px;}
.y185{bottom:409.225500px;}
.y16{bottom:410.326500px;}
.yd2{bottom:410.500500px;}
.y66{bottom:411.633000px;}
.yae{bottom:412.960500px;}
.y8a{bottom:415.044000px;}
.y160{bottom:416.260500px;}
.y145{bottom:422.193000px;}
.y184{bottom:422.674500px;}
.yf6{bottom:424.254000px;}
.yd1{bottom:428.433000px;}
.y65{bottom:429.565500px;}
.yad{bottom:430.893000px;}
.y89{bottom:432.976500px;}
.y183{bottom:436.125000px;}
.y144{bottom:440.127000px;}
.yf5{bottom:442.186500px;}
.y15{bottom:443.727000px;}
.y11c{bottom:444.255116px;}
.yd0{bottom:446.365500px;}
.y64{bottom:447.499500px;}
.yac{bottom:448.825500px;}
.y15f{bottom:449.661000px;}
.y88{bottom:450.909000px;}
.y143{bottom:458.059500px;}
.y3c{bottom:458.556000px;}
.yf4{bottom:460.119000px;}
.y182{bottom:461.065500px;}
.ycf{bottom:464.299500px;}
.y63{bottom:465.432000px;}
.yab{bottom:466.758000px;}
.y87{bottom:468.841500px;}
.y11b{bottom:473.763763px;}
.y181{bottom:474.516000px;}
.y142{bottom:475.992000px;}
.y3b{bottom:476.488500px;}
.yf3{bottom:478.051500px;}
.yce{bottom:482.232000px;}
.y62{bottom:483.364500px;}
.yaa{bottom:484.690500px;}
.y86{bottom:486.774000px;}
.y180{bottom:487.965000px;}
.y141{bottom:493.924500px;}
.y3a{bottom:494.421000px;}
.yf2{bottom:495.985500px;}
.y14{bottom:497.841000px;}
.y15e{bottom:500.095500px;}
.ycd{bottom:500.164500px;}
.y61{bottom:501.297000px;}
.y11a{bottom:503.274877px;}
.y85{bottom:504.708000px;}
.y140{bottom:511.857000px;}
.y39{bottom:512.353500px;}
.y17f{bottom:512.907000px;}
.yf1{bottom:513.918000px;}
.y13{bottom:515.773500px;}
.ycc{bottom:518.097000px;}
.y60{bottom:519.229500px;}
.y84{bottom:522.640500px;}
.y17e{bottom:526.356000px;}
.y13f{bottom:529.789500px;}
.y38{bottom:530.286000px;}
.yf0{bottom:531.850500px;}
.ya9{bottom:532.111500px;}
.y119{bottom:532.783523px;}
.y15d{bottom:533.496000px;}
.ycb{bottom:536.029500px;}
.y5f{bottom:537.162000px;}
.y17d{bottom:539.805000px;}
.y83{bottom:540.573000px;}
.y12{bottom:543.598500px;}
.y13e{bottom:547.723500px;}
.y37{bottom:548.218500px;}
.yef{bottom:549.783000px;}
.yca{bottom:553.962000px;}
.y5e{bottom:555.096000px;}
.y82{bottom:558.505500px;}
.y11{bottom:561.531000px;}
.y118{bottom:562.292169px;}
.y17c{bottom:564.747000px;}
.y13d{bottom:565.656000px;}
.y36{bottom:566.152500px;}
.yee{bottom:567.715500px;}
.yc9{bottom:571.896000px;}
.y5d{bottom:573.028500px;}
.y81{bottom:576.438000px;}
.y17b{bottom:578.196000px;}
.y10{bottom:579.463500px;}
.y13c{bottom:583.588500px;}
.ya8{bottom:583.843788px;}
.y15c{bottom:583.932000px;}
.y35{bottom:584.085000px;}
.yed{bottom:585.648000px;}
.yc8{bottom:589.828500px;}
.y5c{bottom:590.961000px;}
.y17a{bottom:591.646500px;}
.y117{bottom:592.785671px;}
.y80{bottom:594.370500px;}
.yf{bottom:597.397500px;}
.y13b{bottom:601.521000px;}
.y34{bottom:602.017500px;}
.yec{bottom:603.582000px;}
.y179{bottom:605.095500px;}
.y5b{bottom:608.893500px;}
.y7f{bottom:612.304500px;}
.ya7{bottom:613.352434px;}
.ye{bottom:615.330000px;}
.y13a{bottom:619.453500px;}
.y33{bottom:619.950000px;}
.yeb{bottom:621.514500px;}
.y116{bottom:622.294317px;}
.y5a{bottom:626.826000px;}
.y178{bottom:630.037500px;}
.y7e{bottom:630.237000px;}
.y15b{bottom:631.351500px;}
.yd{bottom:633.262500px;}
.yc7{bottom:637.248000px;}
.y139{bottom:637.387500px;}
.y32{bottom:637.882500px;}
.y177{bottom:643.486500px;}
.ya6{bottom:643.845936px;}
.y59{bottom:644.760000px;}
.y7d{bottom:648.169500px;}
.yea{bottom:649.534500px;}
.yc{bottom:651.195000px;}
.y115{bottom:651.802963px;}
.y138{bottom:655.320000px;}
.y31{bottom:655.816500px;}
.y176{bottom:656.935500px;}
.y58{bottom:662.692500px;}
.y7c{bottom:666.102000px;}
.yb{bottom:669.127500px;}
.y137{bottom:673.252500px;}
.ya5{bottom:673.354582px;}
.y30{bottom:673.749000px;}
.y57{bottom:680.625000px;}
.y175{bottom:681.877500px;}
.y114{bottom:682.296465px;}
.y15a{bottom:683.083939px;}
.y7b{bottom:684.034500px;}
.ya{bottom:687.060000px;}
.yc6{bottom:688.979377px;}
.y2f{bottom:691.681500px;}
.y174{bottom:695.326500px;}
.ye9{bottom:696.954000px;}
.y56{bottom:698.557500px;}
.y7a{bottom:701.967000px;}
.ya4{bottom:702.863228px;}
.y9{bottom:704.994000px;}
.y2e{bottom:709.614000px;}
.y159{bottom:712.592585px;}
.y55{bottom:716.490000px;}
.yc5{bottom:718.488023px;}
.y173{bottom:720.268500px;}
.y136{bottom:720.672000px;}
.y8{bottom:722.926500px;}
.y113{bottom:723.472500px;}
.y2d{bottom:727.546500px;}
.ya3{bottom:733.356730px;}
.y172{bottom:733.717500px;}
.y54{bottom:734.422500px;}
.y7{bottom:740.859000px;}
.y158{bottom:742.101231px;}
.y2c{bottom:745.479000px;}
.ye8{bottom:748.685217px;}
.yc4{bottom:748.981525px;}
.y79{bottom:749.388000px;}
.y53{bottom:752.356500px;}
.y171{bottom:758.659500px;}
.y2b{bottom:763.413000px;}
.y6{bottom:767.758500px;}
.y135{bottom:767.804860px;}
.y112{bottom:770.220609px;}
.y52{bottom:770.289000px;}
.y157{bottom:771.609877px;}
.y170{bottom:772.108500px;}
.ya2{bottom:774.532500px;}
.ye7{bottom:778.193863px;}
.yc3{bottom:778.490171px;}
.y2a{bottom:781.345500px;}
.y134{bottom:783.517137px;}
.y111{bottom:784.780723px;}
.y16f{bottom:797.050500px;}
.y133{bottom:799.230728px;}
.y29{bottom:799.278000px;}
.y110{bottom:799.342055px;}
.y78{bottom:801.117763px;}
.y156{bottom:801.118523px;}
.ye6{bottom:808.687364px;}
.yc2{bottom:808.983672px;}
.y16e{bottom:810.499500px;}
.y10f{bottom:813.902169px;}
.y132{bottom:814.943006px;}
.y28{bottom:817.210500px;}
.y51{bottom:817.708500px;}
.ya1{bottom:821.480005px;}
.y10e{bottom:828.462283px;}
.y77{bottom:830.628877px;}
.y131{bottom:830.655283px;}
.y155{bottom:831.612025px;}
.y27{bottom:835.143000px;}
.y16d{bottom:835.441500px;}
.ya0{bottom:836.635119px;}
.y10d{bottom:843.022397px;}
.y130{bottom:846.367560px;}
.y16c{bottom:848.890500px;}
.ye5{bottom:849.864000px;}
.yc1{bottom:850.161000px;}
.y9f{bottom:851.790234px;}
.y26{bottom:853.075500px;}
.y10c{bottom:857.582511px;}
.y76{bottom:860.137523px;}
.y154{bottom:861.120671px;}
.y12f{bottom:862.079837px;}
.y50{bottom:864.741175px;}
.y9e{bottom:866.945348px;}
.y5{bottom:867.796500px;}
.y25{bottom:871.009500px;}
.y10b{bottom:872.142625px;}
.y16b{bottom:873.832500px;}
.y12e{bottom:877.792114px;}
.y4f{bottom:880.148779px;}
.y197{bottom:881.245500px;}
.y9d{bottom:882.100463px;}
.y10a{bottom:886.703957px;}
.y16a{bottom:887.281500px;}
.y75{bottom:890.628556px;}
.y153{bottom:890.629317px;}
.y4{bottom:890.959500px;}
.y12d{bottom:893.505706px;}
.y196{bottom:894.694500px;}
.y4e{bottom:895.556383px;}
.ye4{bottom:896.833122px;}
.yc0{bottom:897.114351px;}
.y9c{bottom:897.256845px;}
.y24{bottom:899.029500px;}
.y109{bottom:901.264071px;}
.y12c{bottom:909.217983px;}
.y4d{bottom:910.963987px;}
.ye3{bottom:912.051180px;}
.ybf{bottom:912.290626px;}
.y9b{bottom:912.411959px;}
.y3{bottom:914.122500px;}
.y108{bottom:915.824185px;}
.y169{bottom:917.692500px;}
.y195{bottom:920.100000px;}
.y74{bottom:920.139671px;}
.y152{bottom:920.140431px;}
.y12b{bottom:924.930260px;}
.y4c{bottom:926.371591px;}
.ye2{bottom:927.269237px;}
.ybe{bottom:927.466901px;}
.y9a{bottom:927.567073px;}
.y107{bottom:930.384299px;}
.y194{bottom:933.549000px;}
.y23{bottom:935.418000px;}
.y12a{bottom:940.642537px;}
.y4b{bottom:941.779195px;}
.ye1{bottom:942.487294px;}
.ybd{bottom:942.644445px;}
.y99{bottom:942.722188px;}
.y106{bottom:944.944413px;}
.y193{bottom:946.998000px;}
.y73{bottom:949.648317px;}
.y151{bottom:949.649077px;}
.y129{bottom:956.354814px;}
.y4a{bottom:957.188088px;}
.ye0{bottom:957.705352px;}
.ybc{bottom:957.820720px;}
.y98{bottom:957.877302px;}
.y2{bottom:958.954500px;}
.y105{bottom:959.504527px;}
.y168{bottom:967.920000px;}
.y128{bottom:972.067092px;}
.y192{bottom:972.403500px;}
.y49{bottom:972.595692px;}
.ydf{bottom:972.923409px;}
.ybb{bottom:972.996994px;}
.y97{bottom:973.032417px;}
.y104{bottom:974.065859px;}
.y72{bottom:980.139350px;}
.y150{bottom:980.140111px;}
.y1{bottom:985.852500px;}
.y127{bottom:988.303768px;}
.y48{bottom:988.516238px;}
.yde{bottom:988.649372px;}
.yba{bottom:988.679780px;}
.y96{bottom:988.693335px;}
.y103{bottom:989.110701px;}
.h9{height:24.675533px;}
.h7{height:25.787366px;}
.h19{height:28.787846px;}
.h1b{height:28.997846px;}
.h1c{height:29.038903px;}
.h1a{height:30.963672px;}
.h3{height:32.804932px;}
.ha{height:32.900573px;}
.h8{height:33.187496px;}
.h17{height:33.391530px;}
.h14{height:34.756078px;}
.h15{height:34.804606px;}
.h16{height:34.900429px;}
.hd{height:35.335127px;}
.h18{height:36.033851px;}
.h2{height:41.125613px;}
.h4{height:41.364715px;}
.hf{height:41.419613px;}
.h13{height:41.425613px;}
.hc{height:41.484266px;}
.he{height:41.961802px;}
.h10{height:44.233944px;}
.hb{height:49.637990px;}
.h5{height:52.040387px;}
.h12{height:52.046387px;}
.h1{height:59.221114px;}
.h6{height:59.565422px;}
.h11{height:67.673841px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.xd{left:203.862401px;}
.x10{left:206.802060px;}
.x22{left:208.122000px;}
.xb{left:212.195782px;}
.x8{left:214.045500px;}
.x1{left:216.313500px;}
.x19{left:219.320124px;}
.x7{left:223.068000px;}
.x1f{left:233.020500px;}
.x20{left:250.095000px;}
.x16{left:262.191000px;}
.x11{left:264.187500px;}
.xe{left:265.293000px;}
.x2{left:266.614500px;}
.x1d{left:268.615500px;}
.x4{left:293.067000px;}
.x5{left:307.503000px;}
.x15{left:315.246521px;}
.x17{left:317.654740px;}
.x1c{left:325.828446px;}
.xc{left:328.395278px;}
.x14{left:330.520745px;}
.x1a{left:335.540404px;}
.xa{left:356.656085px;}
.x13{left:360.426584px;}
.x1b{left:361.888484px;}
.x18{left:362.920239px;}
.x3{left:405.975000px;}
.x1e{left:450.964500px;}
.x9{left:454.699500px;}
.xf{left:468.136500px;}
.x21{left:526.618500px;}
.x12{left:652.074000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls48{letter-spacing:2.130285pt;}
.ls45{letter-spacing:2.139824pt;}
.ls44{letter-spacing:2.156278pt;}
.ls46{letter-spacing:2.157076pt;}
.ls47{letter-spacing:2.158028pt;}
.ls1f{letter-spacing:2.217339pt;}
.ls29{letter-spacing:2.220435pt;}
.ls34{letter-spacing:2.226548pt;}
.ls1b{letter-spacing:2.227268pt;}
.ls26{letter-spacing:2.230378pt;}
.ls31{letter-spacing:2.236519pt;}
.ls1a{letter-spacing:2.244394pt;}
.ls1c{letter-spacing:2.245225pt;}
.ls1e{letter-spacing:2.246216pt;}
.ls25{letter-spacing:2.247528pt;}
.ls27{letter-spacing:2.248360pt;}
.ls1d{letter-spacing:2.248902pt;}
.ls28{letter-spacing:2.249353pt;}
.ls2b{letter-spacing:2.252042pt;}
.ls30{letter-spacing:2.253716pt;}
.ls7{letter-spacing:2.254281pt;}
.ls32{letter-spacing:2.254550pt;}
.ls33{letter-spacing:2.255545pt;}
.ls4{letter-spacing:2.264376pt;}
.ls3{letter-spacing:2.281787pt;}
.ls5{letter-spacing:2.282631pt;}
.ls6{letter-spacing:2.283639pt;}
.ls4e{letter-spacing:2.298858pt;}
.ls4b{letter-spacing:2.309152pt;}
.ls4a{letter-spacing:2.326907pt;}
.ls4c{letter-spacing:2.327768pt;}
.ls4d{letter-spacing:2.328796pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658321pt;}
.ls59{letter-spacing:3.085505pt;}
.ls15{letter-spacing:4.336732pt;}
.ls14{letter-spacing:4.370579pt;}
.ls37{letter-spacing:4.413863pt;}
.ls13{letter-spacing:6.536174pt;}
.ls51{letter-spacing:9.451145pt;}
.ls54{letter-spacing:10.064479pt;}
.ls55{letter-spacing:10.069812pt;}
.ls52{letter-spacing:10.741812pt;}
.ls50{letter-spacing:10.782400pt;}
.ls53{letter-spacing:11.408479pt;}
.ls56{letter-spacing:11.449067pt;}
.ls11{letter-spacing:11.760479pt;}
.lsf{letter-spacing:11.765812pt;}
.ls2e{letter-spacing:11.797812pt;}
.ls22{letter-spacing:12.869812pt;}
.ls49{letter-spacing:12.905597pt;}
.ls3b{letter-spacing:12.944479pt;}
.ls10{letter-spacing:13.237812pt;}
.ls12{letter-spacing:13.243145pt;}
.ls42{letter-spacing:13.285812pt;}
.ls2f{letter-spacing:13.301812pt;}
.ls2d{letter-spacing:13.347733pt;}
.ls20{letter-spacing:13.432986pt;}
.ls2c{letter-spacing:13.451742pt;}
.ls2a{letter-spacing:13.456255pt;}
.ls36{letter-spacing:13.488777pt;}
.ls35{letter-spacing:13.493303pt;}
.ls8{letter-spacing:13.656784pt;}
.ls57{letter-spacing:13.920479pt;}
.ls4f{letter-spacing:13.931509pt;}
.lsa{letter-spacing:14.325812pt;}
.lsc{letter-spacing:14.331145pt;}
.ls17{letter-spacing:14.347145pt;}
.ls39{letter-spacing:14.379145pt;}
.ls3e{letter-spacing:15.008479pt;}
.ls40{letter-spacing:15.013812pt;}
.ls16{letter-spacing:15.065067pt;}
.ls23{letter-spacing:15.232479pt;}
.ls21{letter-spacing:15.273067pt;}
.ls24{letter-spacing:15.278400pt;}
.ls9{letter-spacing:15.305067pt;}
.ls3c{letter-spacing:15.365812pt;}
.ls3d{letter-spacing:15.406400pt;}
.ls43{letter-spacing:15.979145pt;}
.ls58{letter-spacing:17.120479pt;}
.lsd{letter-spacing:17.851145pt;}
.lsb{letter-spacing:17.856479pt;}
.ls18{letter-spacing:17.883145pt;}
.lse{letter-spacing:17.897067pt;}
.ls19{letter-spacing:17.929067pt;}
.ls3a{letter-spacing:17.947145pt;}
.ls38{letter-spacing:17.987733pt;}
.ls41{letter-spacing:19.083145pt;}
.ls3f{letter-spacing:19.088479pt;}
.ws100{word-spacing:-19.128267pt;}
.wse3{word-spacing:-13.966609pt;}
.ws3a{word-spacing:-13.695785pt;}
.wsb2{word-spacing:-13.527298pt;}
.ws98{word-spacing:-13.490157pt;}
.ws7b{word-spacing:-13.471348pt;}
.ws5b{word-spacing:-13.283467pt;}
.wscd{word-spacing:-12.942454pt;}
.wsdd{word-spacing:-9.311096pt;}
.ws119{word-spacing:-9.298400pt;}
.ws36{word-spacing:-9.130547pt;}
.wsad{word-spacing:-9.018221pt;}
.ws91{word-spacing:-8.993461pt;}
.ws75{word-spacing:-8.980921pt;}
.wsc9{word-spacing:-8.628324pt;}
.ws62{word-spacing:-3.189296pt;}
.ws61{word-spacing:-3.188032pt;}
.ws9{word-spacing:-3.028630pt;}
.wsbd{word-spacing:-2.975497pt;}
.ws83{word-spacing:-2.869229pt;}
.ws8b{word-spacing:-2.762961pt;}
.ws51{word-spacing:-2.603559pt;}
.ws2c{word-spacing:-2.550426pt;}
.wsf1{word-spacing:-2.497292pt;}
.wsa1{word-spacing:-2.444158pt;}
.ws2d{word-spacing:-2.337890pt;}
.wsda{word-spacing:-2.327415pt;}
.ws35{word-spacing:-2.283731pt;}
.ws33{word-spacing:-2.282284pt;}
.wsaa{word-spacing:-2.258734pt;}
.wsaf{word-spacing:-2.258533pt;}
.wsac{word-spacing:-2.254007pt;}
.ws93{word-spacing:-2.252532pt;}
.ws90{word-spacing:-2.251738pt;}
.ws79{word-spacing:-2.248522pt;}
.ws8e{word-spacing:-2.248018pt;}
.ws96{word-spacing:-2.247224pt;}
.ws72{word-spacing:-2.244884pt;}
.ws74{word-spacing:-2.244015pt;}
.ws5c{word-spacing:-2.231622pt;}
.wsc8{word-spacing:-2.158770pt;}
.wsc6{word-spacing:-2.156748pt;}
.ws58{word-spacing:-2.019087pt;}
.ws105{word-spacing:-1.934067pt;}
.wsf3{word-spacing:-1.859685pt;}
.wsf2{word-spacing:-1.856397pt;}
.ws7{word-spacing:-1.806551pt;}
.wsa7{word-spacing:-1.700284pt;}
.ws63{word-spacing:-1.540882pt;}
.ws47{word-spacing:-1.434614pt;}
.ws3{word-spacing:-1.381481pt;}
.ws31{word-spacing:-1.275213pt;}
.ws2f{word-spacing:-1.222079pt;}
.wsa{word-spacing:-1.168945pt;}
.ws4a{word-spacing:-1.062677pt;}
.ws4b{word-spacing:-1.046652pt;}
.ws70{word-spacing:-0.903276pt;}
.ws5d{word-spacing:-0.850142pt;}
.ws55{word-spacing:-0.743874pt;}
.ws23{word-spacing:-0.690740pt;}
.wsc{word-spacing:-0.637606pt;}
.ws54{word-spacing:-0.584473pt;}
.ws6c{word-spacing:-0.531339pt;}
.ws118{word-spacing:-0.483517pt;}
.ws101{word-spacing:-0.478205pt;}
.ws52{word-spacing:-0.425071pt;}
.ws6b{word-spacing:-0.265669pt;}
.ws11b{word-spacing:-0.185968pt;}
.ws50{word-spacing:-0.159402pt;}
.ws27{word-spacing:-0.053134pt;}
.ws117{word-spacing:-0.037194pt;}
.wsde{word-spacing:-0.006701pt;}
.ws95{word-spacing:-0.006473pt;}
.ws76{word-spacing:-0.006463pt;}
.wse0{word-spacing:-0.002028pt;}
.ws37{word-spacing:-0.001989pt;}
.wsae{word-spacing:-0.001964pt;}
.ws92{word-spacing:-0.001959pt;}
.ws78{word-spacing:-0.001956pt;}
.wsca{word-spacing:-0.001879pt;}
.ws0{word-spacing:0.000000pt;}
.wsc5{word-spacing:0.005705pt;}
.ws71{word-spacing:0.005938pt;}
.ws8d{word-spacing:0.005946pt;}
.ws32{word-spacing:0.006037pt;}
.wsd9{word-spacing:0.006156pt;}
.wsa9{word-spacing:0.010489pt;}
.wsa8{word-spacing:0.053134pt;}
.wsff{word-spacing:0.106268pt;}
.wsd8{word-spacing:0.159402pt;}
.ws10a{word-spacing:0.260355pt;}
.ws43{word-spacing:0.265669pt;}
.ws6f{word-spacing:0.318803pt;}
.ws6e{word-spacing:0.371937pt;}
.ws111{word-spacing:0.409130pt;}
.ws8a{word-spacing:0.413660pt;}
.ws89{word-spacing:0.425071pt;}
.ws1a{word-spacing:0.531339pt;}
.ws11d{word-spacing:0.632291pt;}
.wsb7{word-spacing:0.637606pt;}
.wsb8{word-spacing:0.650704pt;}
.ws42{word-spacing:0.690740pt;}
.ws1f{word-spacing:0.797008pt;}
.ws115{word-spacing:0.892646pt;}
.wsa2{word-spacing:0.903276pt;}
.ws10{word-spacing:0.956410pt;}
.ws11{word-spacing:1.009543pt;}
.ws19{word-spacing:1.020173pt;}
.ws104{word-spacing:1.041421pt;}
.ws2a{word-spacing:1.062677pt;}
.ws11c{word-spacing:1.115808pt;}
.ws10f{word-spacing:1.153002pt;}
.wsfc{word-spacing:1.168945pt;}
.ws109{word-spacing:1.190195pt;}
.ws110{word-spacing:1.264582pt;}
.ws88{word-spacing:1.381481pt;}
.wsa5{word-spacing:1.434614pt;}
.ws107{word-spacing:1.487744pt;}
.ws29{word-spacing:1.487748pt;}
.ws28{word-spacing:1.594016pt;}
.ws10c{word-spacing:1.599325pt;}
.ws116{word-spacing:1.673712pt;}
.wsf0{word-spacing:1.700284pt;}
.ws106{word-spacing:1.710906pt;}
.ws67{word-spacing:1.753418pt;}
.ws66{word-spacing:1.806551pt;}
.ws113{word-spacing:1.859680pt;}
.wsa0{word-spacing:1.912819pt;}
.ws8c{word-spacing:1.965953pt;}
.ws4c{word-spacing:2.019087pt;}
.ws14{word-spacing:2.072221pt;}
.wsc1{word-spacing:2.115897pt;}
.wsc0{word-spacing:2.121897pt;}
.ws56{word-spacing:2.125355pt;}
.ws22{word-spacing:2.231622pt;}
.ws10b{word-spacing:2.268810pt;}
.ws108{word-spacing:2.306003pt;}
.wsdc{word-spacing:2.324944pt;}
.wse1{word-spacing:2.329617pt;}
.wsd{word-spacing:2.337890pt;}
.ws84{word-spacing:2.391024pt;}
.ws57{word-spacing:2.497292pt;}
.ws9f{word-spacing:2.550426pt;}
.ws2e{word-spacing:2.656693pt;}
.ws49{word-spacing:2.709827pt;}
.wsa3{word-spacing:2.762961pt;}
.ws10d{word-spacing:2.826714pt;}
.ws114{word-spacing:2.901101pt;}
.wsbb{word-spacing:2.975497pt;}
.ws103{word-spacing:3.124262pt;}
.ws87{word-spacing:3.134898pt;}
.ws86{word-spacing:3.168037pt;}
.ws85{word-spacing:3.188032pt;}
.ws44{word-spacing:3.294300pt;}
.ws2b{word-spacing:3.347434pt;}
.ws11a{word-spacing:3.459005pt;}
.ws6{word-spacing:3.506835pt;}
.ws10e{word-spacing:3.533392pt;}
.wsb6{word-spacing:3.613103pt;}
.ws13{word-spacing:3.772505pt;}
.wsba{word-spacing:3.781326pt;}
.wsb9{word-spacing:3.825638pt;}
.wsf6{word-spacing:3.852630pt;}
.wsf5{word-spacing:3.854230pt;}
.wsf4{word-spacing:3.878772pt;}
.ws20{word-spacing:3.931906pt;}
.ws9e{word-spacing:4.091308pt;}
.ws9d{word-spacing:4.197575pt;}
.ws1e{word-spacing:4.250709pt;}
.wsc7{word-spacing:4.272065pt;}
.wscc{word-spacing:4.279649pt;}
.ws5e{word-spacing:4.356977pt;}
.wseb{word-spacing:4.410111pt;}
.ws73{word-spacing:4.446643pt;}
.ws8f{word-spacing:4.452851pt;}
.ws7a{word-spacing:4.454537pt;}
.ws97{word-spacing:4.460757pt;}
.ws5{word-spacing:4.463245pt;}
.wsab{word-spacing:4.465111pt;}
.wsb1{word-spacing:4.473038pt;}
.ws2{word-spacing:4.516379pt;}
.ws34{word-spacing:4.520725pt;}
.ws39{word-spacing:4.528751pt;}
.ws65{word-spacing:4.563133pt;}
.ws64{word-spacing:4.569513pt;}
.ws4d{word-spacing:4.606154pt;}
.wsdb{word-spacing:4.610119pt;}
.wse2{word-spacing:4.618304pt;}
.ws4e{word-spacing:4.622646pt;}
.ws4f{word-spacing:4.626509pt;}
.ws68{word-spacing:4.644882pt;}
.ws69{word-spacing:4.648042pt;}
.wsbf{word-spacing:4.675780pt;}
.wsbe{word-spacing:4.728914pt;}
.ws21{word-spacing:4.782048pt;}
.ws12{word-spacing:4.835182pt;}
.ws15{word-spacing:4.888316pt;}
.ws1d{word-spacing:4.941450pt;}
.ws112{word-spacing:4.946749pt;}
.wsa6{word-spacing:4.986704pt;}
.ws1b{word-spacing:4.994583pt;}
.ws48{word-spacing:5.047717pt;}
.ws60{word-spacing:5.100851pt;}
.ws53{word-spacing:5.207119pt;}
.ws6d{word-spacing:5.366521pt;}
.wsfb{word-spacing:5.472788pt;}
.ws16{word-spacing:5.525922pt;}
.ws25{word-spacing:5.685324pt;}
.wsfa{word-spacing:5.738458pt;}
.wsc3{word-spacing:5.831252pt;}
.wsc2{word-spacing:5.836556pt;}
.wsc4{word-spacing:5.844725pt;}
.wsb{word-spacing:5.897859pt;}
.ws24{word-spacing:5.950993pt;}
.ws6a{word-spacing:6.004127pt;}
.wsd7{word-spacing:6.322930pt;}
.wsf8{word-spacing:6.641733pt;}
.ws30{word-spacing:6.694867pt;}
.ws1c{word-spacing:6.960537pt;}
.ws17{word-spacing:7.173072pt;}
.ws26{word-spacing:7.226206pt;}
.wsf9{word-spacing:7.279340pt;}
.ws41{word-spacing:7.491875pt;}
.wsec{word-spacing:7.651277pt;}
.wsee{word-spacing:7.896970pt;}
.wsef{word-spacing:7.916946pt;}
.ws102{word-spacing:7.996624pt;}
.ws4{word-spacing:8.076348pt;}
.wsed{word-spacing:8.235749pt;}
.ws40{word-spacing:8.607686pt;}
.ws45{word-spacing:9.032757pt;}
.ws46{word-spacing:9.061371pt;}
.wsbc{word-spacing:9.617230pt;}
.ws18{word-spacing:10.579223pt;}
.ws1{word-spacing:10.584293pt;}
.ws3f{word-spacing:14.908919pt;}
.ws8{word-spacing:16.156414pt;}
.wsf{word-spacing:19.128267pt;}
.wsa4{word-spacing:20.700414pt;}
.ws5f{word-spacing:22.284414pt;}
.wsf7{word-spacing:22.785748pt;}
.wse{word-spacing:32.892143pt;}
.wsce{word-spacing:40.984436pt;}
.ws7c{word-spacing:42.659269pt;}
.ws99{word-spacing:42.718832pt;}
.wsb3{word-spacing:42.836444pt;}
.ws3b{word-spacing:43.369987pt;}
.wse4{word-spacing:44.227595pt;}
.ws7d{word-spacing:44.452054pt;}
.ws3c{word-spacing:45.194970pt;}
.wse5{word-spacing:46.086101pt;}
.ws94{word-spacing:47.185573pt;}
.wsb0{word-spacing:47.320008pt;}
.ws38{word-spacing:49.187886pt;}
.wscf{word-spacing:52.934635pt;}
.wsd2{word-spacing:53.493043pt;}
.ws80{word-spacing:55.097813pt;}
.ws3e{word-spacing:56.015763pt;}
.wse6{word-spacing:57.123430pt;}
.wse8{word-spacing:57.724942pt;}
.wsd0{word-spacing:58.931305pt;}
.ws7f{word-spacing:61.339538pt;}
.ws9a{word-spacing:61.425183pt;}
.wsb4{word-spacing:61.594297pt;}
.ws3d{word-spacing:62.361477pt;}
.wse7{word-spacing:63.594625pt;}
.ws7e{word-spacing:66.323937pt;}
.wse9{word-spacing:68.762271pt;}
.wsd1{word-spacing:69.716683pt;}
.ws77{word-spacing:78.377954pt;}
.wsea{word-spacing:80.401111pt;}
.wsdf{word-spacing:83.539872pt;}
.wsd3{word-spacing:85.290769pt;}
.wscb{word-spacing:101.659601pt;}
.wsd5{word-spacing:315.286654pt;}
.ws9c{word-spacing:325.079251pt;}
.wsfd{word-spacing:359.091039pt;}
.wsd6{word-spacing:378.413932pt;}
.ws81{word-spacing:422.218317pt;}
.ws5a{word-spacing:427.114616pt;}
.wsd4{word-spacing:441.716078pt;}
.ws59{word-spacing:470.831567pt;}
.wsb5{word-spacing:475.640432pt;}
.ws9b{word-spacing:480.624165pt;}
.wsfe{word-spacing:514.548519pt;}
.ws82{word-spacing:519.357384pt;}
._29{margin-left:-1950.715697pt;}
._42{margin-left:-1929.443009pt;}
._2b{margin-left:-1928.537266pt;}
._12{margin-left:-1914.478400pt;}
._a{margin-left:-1900.153865pt;}
._70{margin-left:-1883.809164pt;}
._4c{margin-left:-1819.878509pt;}
._13{margin-left:-1087.662301pt;}
._6c{margin-left:-1039.820212pt;}
._43{margin-left:-908.685829pt;}
._6f{margin-left:-817.423095pt;}
._72{margin-left:-804.169893pt;}
._e{margin-left:-493.094333pt;}
._6d{margin-left:-425.974103pt;}
._75{margin-left:-306.631069pt;}
._26{margin-left:-6.968446pt;}
._27{margin-left:-5.683204pt;}
._8{margin-left:-4.569513pt;}
._3{margin-left:-3.453701pt;}
._1{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._4d{width:1.275604pt;}
._19{width:2.227853pt;}
._5a{width:3.121034pt;}
._24{width:4.928459pt;}
._74{width:8.782679pt;}
._73{width:9.866839pt;}
._71{width:10.807424pt;}
._38{width:11.721335pt;}
._28{width:13.017797pt;}
._c{width:13.937259pt;}
._7{width:15.631993pt;}
._2a{width:16.577766pt;}
._5{width:17.693578pt;}
._2{width:18.915657pt;}
._9{width:19.872066pt;}
._17{width:20.775342pt;}
._18{width:22.794429pt;}
._15{width:23.803972pt;}
._25{width:24.919783pt;}
._6{width:26.811354pt;}
._16{width:27.789359pt;}
._6e{width:28.851690pt;}
._14{width:30.403207pt;}
._10{width:31.880533pt;}
._b{width:33.633738pt;}
._11{width:36.662368pt;}
._f{width:38.256533pt;}
._4{width:40.307356pt;}
._51{width:53.449901pt;}
._34{width:55.723081pt;}
._21{width:56.653777pt;}
._63{width:57.611358pt;}
._55{width:63.720013pt;}
._58{width:64.996187pt;}
._2f{width:66.279032pt;}
._1d{width:67.383265pt;}
._5f{width:68.762271pt;}
._4e{width:69.759824pt;}
._2c{width:72.610566pt;}
._1a{width:73.820284pt;}
._45{width:75.347050pt;}
._46{width:76.659592pt;}
._32{width:77.550060pt;}
._20{width:78.842072pt;}
._53{width:80.502061pt;}
._3c{width:82.148070pt;}
._31{width:83.791785pt;}
._1f{width:85.187786pt;}
._5e{width:86.872307pt;}
._35{width:88.776183pt;}
._22{width:90.255226pt;}
._57{width:91.287439pt;}
._3b{width:92.812283pt;}
._3e{width:93.828621pt;}
._3a{width:95.150577pt;}
._1c{width:96.600940pt;}
._67{width:98.511147pt;}
._36{width:99.957402pt;}
._59{width:100.864854pt;}
._3f{width:104.054081pt;}
._47{width:105.422742pt;}
._3d{width:106.392375pt;}
._1e{width:108.014095pt;}
._4a{width:110.608206pt;}
._49{width:111.858035pt;}
._41{width:115.295879pt;}
._48{width:116.695491pt;}
._62{width:121.788829pt;}
._4b{width:123.496248pt;}
._23{width:124.449037pt;}
._64{width:126.842890pt;}
._40{width:128.248594pt;}
._6b{width:132.124119pt;}
._54{width:133.137086pt;}
._65{width:136.693632pt;}
._56{width:143.922463pt;}
._2e{width:147.466356pt;}
._33{width:149.936103pt;}
._5c{width:152.841256pt;}
._60{width:155.401800pt;}
._30{width:158.692480pt;}
._66{width:159.971313pt;}
._37{width:161.742590pt;}
._6a{width:163.778058pt;}
._5d{width:165.119026pt;}
._61{width:167.427620pt;}
._69{width:174.815387pt;}
._68{width:186.454227pt;}
._50{width:220.755115pt;}
._52{width:231.540493pt;}
._39{width:496.260113pt;}
._44{width:501.459593pt;}
._5b{width:510.501926pt;}
._1b{width:518.430011pt;}
._2d{width:524.930133pt;}
._4f{width:540.301861pt;}
._d{width:999.514294pt;}
.fs4{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs12{font-size:34.513296pt;}
.fsc{font-size:35.923685pt;}
.fse{font-size:35.973843pt;}
.fs10{font-size:36.072885pt;}
.fs8{font-size:36.522186pt;}
.fs15{font-size:37.193600pt;}
.fs14{font-size:37.244384pt;}
.fs3{font-size:39.318933pt;}
.fs2{font-size:42.507200pt;}
.fs11{font-size:43.141512pt;}
.fsb{font-size:44.904493pt;}
.fsd{font-size:44.967191pt;}
.fsf{font-size:45.090993pt;}
.fs7{font-size:45.652618pt;}
.fs13{font-size:46.555363pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:63.761067pt;}
.fsa{font-size:69.947298pt;}
.fs0{font-size:76.513067pt;}
.fs9{font-size:87.433903pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:119.153333pt;}
.y191{bottom:159.004000pt;}
.y71{bottom:162.160000pt;}
.yb9{bottom:163.340000pt;}
.y95{bottom:165.192000pt;}
.y47{bottom:169.033333pt;}
.y126{bottom:170.272000pt;}
.y21{bottom:170.580000pt;}
.y190{bottom:170.958667pt;}
.y167{bottom:173.148000pt;}
.y14f{bottom:173.241333pt;}
.y70{bottom:178.101333pt;}
.y94{bottom:181.132000pt;}
.y46{bottom:184.973333pt;}
.y102{bottom:185.832000pt;}
.y125{bottom:186.212000pt;}
.y20{bottom:187.056000pt;}
.yb8{bottom:188.246667pt;}
.y166{bottom:189.088000pt;}
.y14e{bottom:189.181333pt;}
.ydd{bottom:189.546667pt;}
.y18f{bottom:193.129333pt;}
.y6f{bottom:194.041333pt;}
.y1f{bottom:196.277333pt;}
.y93{bottom:197.072000pt;}
.y45{bottom:200.913333pt;}
.y101{bottom:201.772000pt;}
.y124{bottom:202.152000pt;}
.y18e{bottom:205.084000pt;}
.y14d{bottom:205.121333pt;}
.ydc{bottom:205.486667pt;}
.y6e{bottom:209.981333pt;}
.y1e{bottom:212.754667pt;}
.y92{bottom:213.012000pt;}
.y44{bottom:216.853333pt;}
.y100{bottom:217.712000pt;}
.y123{bottom:218.092000pt;}
.y165{bottom:218.777333pt;}
.y14c{bottom:221.061333pt;}
.ydb{bottom:221.428000pt;}
.yb7{bottom:223.613333pt;}
.y6d{bottom:225.921333pt;}
.y18d{bottom:227.254667pt;}
.y91{bottom:228.952000pt;}
.y43{bottom:232.793333pt;}
.yff{bottom:233.652000pt;}
.y122{bottom:234.032000pt;}
.y14b{bottom:237.001333pt;}
.yda{bottom:237.368000pt;}
.y18c{bottom:239.209333pt;}
.yb6{bottom:239.553333pt;}
.y6c{bottom:241.861333pt;}
.y90{bottom:244.893333pt;}
.y42{bottom:248.734667pt;}
.yfe{bottom:249.592000pt;}
.y121{bottom:249.972000pt;}
.y18b{bottom:251.165333pt;}
.y14a{bottom:252.942667pt;}
.y1d{bottom:253.153333pt;}
.yd9{bottom:253.308000pt;}
.yb5{bottom:255.494667pt;}
.y6b{bottom:257.801333pt;}
.y8f{bottom:260.833333pt;}
.y164{bottom:263.608000pt;}
.y41{bottom:264.674667pt;}
.yfd{bottom:265.533333pt;}
.y120{bottom:265.913333pt;}
.y149{bottom:268.882667pt;}
.y1c{bottom:269.093333pt;}
.yd8{bottom:269.248000pt;}
.yb4{bottom:271.434667pt;}
.y18a{bottom:273.334667pt;}
.y6a{bottom:273.742667pt;}
.y8e{bottom:276.773333pt;}
.y163{bottom:279.549333pt;}
.y40{bottom:280.614667pt;}
.yfc{bottom:281.473333pt;}
.y11f{bottom:281.853333pt;}
.y148{bottom:284.822667pt;}
.y1b{bottom:285.033333pt;}
.yd7{bottom:285.188000pt;}
.yb3{bottom:287.374667pt;}
.y69{bottom:289.682667pt;}
.y189{bottom:295.505333pt;}
.yfb{bottom:297.413333pt;}
.y1a{bottom:300.973333pt;}
.yd6{bottom:301.128000pt;}
.y8d{bottom:301.680000pt;}
.yb2{bottom:303.314667pt;}
.y3f{bottom:305.521333pt;}
.y68{bottom:305.622667pt;}
.y11e{bottom:306.760000pt;}
.y188{bottom:307.460000pt;}
.y162{bottom:309.237333pt;}
.yfa{bottom:313.353333pt;}
.y147{bottom:314.510667pt;}
.y19{bottom:316.914667pt;}
.yd5{bottom:317.069333pt;}
.yb1{bottom:319.254667pt;}
.yf9{bottom:329.293333pt;}
.y187{bottom:329.630667pt;}
.y3e{bottom:330.428000pt;}
.y67{bottom:330.529333pt;}
.y18{bottom:332.854667pt;}
.yd4{bottom:333.009333pt;}
.yb0{bottom:335.194667pt;}
.y8c{bottom:337.046667pt;}
.y186{bottom:341.585333pt;}
.yf8{bottom:345.234667pt;}
.y17{bottom:348.794667pt;}
.y11d{bottom:348.910667pt;}
.yd3{bottom:348.949333pt;}
.yaf{bottom:351.136000pt;}
.y8b{bottom:352.986667pt;}
.y161{bottom:354.069333pt;}
.y146{bottom:359.342667pt;}
.yf7{bottom:361.174667pt;}
.y3d{bottom:362.773333pt;}
.y185{bottom:363.756000pt;}
.y16{bottom:364.734667pt;}
.yd2{bottom:364.889333pt;}
.y66{bottom:365.896000pt;}
.yae{bottom:367.076000pt;}
.y8a{bottom:368.928000pt;}
.y160{bottom:370.009333pt;}
.y145{bottom:375.282667pt;}
.y184{bottom:375.710667pt;}
.yf6{bottom:377.114667pt;}
.yd1{bottom:380.829333pt;}
.y65{bottom:381.836000pt;}
.yad{bottom:383.016000pt;}
.y89{bottom:384.868000pt;}
.y183{bottom:387.666667pt;}
.y144{bottom:391.224000pt;}
.yf5{bottom:393.054667pt;}
.y15{bottom:394.424000pt;}
.y11c{bottom:394.893437pt;}
.yd0{bottom:396.769333pt;}
.y64{bottom:397.777333pt;}
.yac{bottom:398.956000pt;}
.y15f{bottom:399.698667pt;}
.y88{bottom:400.808000pt;}
.y143{bottom:407.164000pt;}
.y3c{bottom:407.605333pt;}
.yf4{bottom:408.994667pt;}
.y182{bottom:409.836000pt;}
.ycf{bottom:412.710667pt;}
.y63{bottom:413.717333pt;}
.yab{bottom:414.896000pt;}
.y87{bottom:416.748000pt;}
.y11b{bottom:421.123344pt;}
.y181{bottom:421.792000pt;}
.y142{bottom:423.104000pt;}
.y3b{bottom:423.545333pt;}
.yf3{bottom:424.934667pt;}
.yce{bottom:428.650667pt;}
.y62{bottom:429.657333pt;}
.yaa{bottom:430.836000pt;}
.y86{bottom:432.688000pt;}
.y180{bottom:433.746667pt;}
.y141{bottom:439.044000pt;}
.y3a{bottom:439.485333pt;}
.yf2{bottom:440.876000pt;}
.y14{bottom:442.525333pt;}
.y15e{bottom:444.529333pt;}
.ycd{bottom:444.590667pt;}
.y61{bottom:445.597333pt;}
.y11a{bottom:447.355446pt;}
.y85{bottom:448.629333pt;}
.y140{bottom:454.984000pt;}
.y39{bottom:455.425333pt;}
.y17f{bottom:455.917333pt;}
.yf1{bottom:456.816000pt;}
.y13{bottom:458.465333pt;}
.ycc{bottom:460.530667pt;}
.y60{bottom:461.537333pt;}
.y84{bottom:464.569333pt;}
.y17e{bottom:467.872000pt;}
.y13f{bottom:470.924000pt;}
.y38{bottom:471.365333pt;}
.yf0{bottom:472.756000pt;}
.ya9{bottom:472.988000pt;}
.y119{bottom:473.585354pt;}
.y15d{bottom:474.218667pt;}
.ycb{bottom:476.470667pt;}
.y5f{bottom:477.477333pt;}
.y17d{bottom:479.826667pt;}
.y83{bottom:480.509333pt;}
.y12{bottom:483.198667pt;}
.y13e{bottom:486.865333pt;}
.y37{bottom:487.305333pt;}
.yef{bottom:488.696000pt;}
.yca{bottom:492.410667pt;}
.y5e{bottom:493.418667pt;}
.y82{bottom:496.449333pt;}
.y11{bottom:499.138667pt;}
.y118{bottom:499.815261pt;}
.y17c{bottom:501.997333pt;}
.y13d{bottom:502.805333pt;}
.y36{bottom:503.246667pt;}
.yee{bottom:504.636000pt;}
.yc9{bottom:508.352000pt;}
.y5d{bottom:509.358667pt;}
.y81{bottom:512.389333pt;}
.y17b{bottom:513.952000pt;}
.y10{bottom:515.078667pt;}
.y13c{bottom:518.745333pt;}
.ya8{bottom:518.972256pt;}
.y15c{bottom:519.050667pt;}
.y35{bottom:519.186667pt;}
.yed{bottom:520.576000pt;}
.yc8{bottom:524.292000pt;}
.y5c{bottom:525.298667pt;}
.y17a{bottom:525.908000pt;}
.y117{bottom:526.920596pt;}
.y80{bottom:528.329333pt;}
.yf{bottom:531.020000pt;}
.y13b{bottom:534.685333pt;}
.y34{bottom:535.126667pt;}
.yec{bottom:536.517333pt;}
.y179{bottom:537.862667pt;}
.y5b{bottom:541.238667pt;}
.y7f{bottom:544.270667pt;}
.ya7{bottom:545.202164pt;}
.ye{bottom:546.960000pt;}
.y13a{bottom:550.625333pt;}
.y33{bottom:551.066667pt;}
.yeb{bottom:552.457333pt;}
.y116{bottom:553.150504pt;}
.y5a{bottom:557.178667pt;}
.y178{bottom:560.033333pt;}
.y7e{bottom:560.210667pt;}
.y15b{bottom:561.201333pt;}
.yd{bottom:562.900000pt;}
.yc7{bottom:566.442667pt;}
.y139{bottom:566.566667pt;}
.y32{bottom:567.006667pt;}
.y177{bottom:571.988000pt;}
.ya6{bottom:572.307499pt;}
.y59{bottom:573.120000pt;}
.y7d{bottom:576.150667pt;}
.yea{bottom:577.364000pt;}
.yc{bottom:578.840000pt;}
.y115{bottom:579.380411pt;}
.y138{bottom:582.506667pt;}
.y31{bottom:582.948000pt;}
.y176{bottom:583.942667pt;}
.y58{bottom:589.060000pt;}
.y7c{bottom:592.090667pt;}
.yb{bottom:594.780000pt;}
.y137{bottom:598.446667pt;}
.ya5{bottom:598.537406pt;}
.y30{bottom:598.888000pt;}
.y57{bottom:605.000000pt;}
.y175{bottom:606.113333pt;}
.y114{bottom:606.485746pt;}
.y15a{bottom:607.185723pt;}
.y7b{bottom:608.030667pt;}
.ya{bottom:610.720000pt;}
.yc6{bottom:612.426113pt;}
.y2f{bottom:614.828000pt;}
.y174{bottom:618.068000pt;}
.ye9{bottom:619.514667pt;}
.y56{bottom:620.940000pt;}
.y7a{bottom:623.970667pt;}
.ya4{bottom:624.767314pt;}
.y9{bottom:626.661333pt;}
.y2e{bottom:630.768000pt;}
.y159{bottom:633.415631pt;}
.y55{bottom:636.880000pt;}
.yc5{bottom:638.656020pt;}
.y173{bottom:640.238667pt;}
.y136{bottom:640.597333pt;}
.y8{bottom:642.601333pt;}
.y113{bottom:643.086667pt;}
.y2d{bottom:646.708000pt;}
.ya3{bottom:651.872649pt;}
.y172{bottom:652.193333pt;}
.y54{bottom:652.820000pt;}
.y7{bottom:658.541333pt;}
.y158{bottom:659.645539pt;}
.y2c{bottom:662.648000pt;}
.ye8{bottom:665.497970pt;}
.yc4{bottom:665.761355pt;}
.y79{bottom:666.122667pt;}
.y53{bottom:668.761333pt;}
.y171{bottom:674.364000pt;}
.y2b{bottom:678.589333pt;}
.y6{bottom:682.452000pt;}
.y135{bottom:682.493209pt;}
.y112{bottom:684.640541pt;}
.y52{bottom:684.701333pt;}
.y157{bottom:685.875446pt;}
.y170{bottom:686.318667pt;}
.ya2{bottom:688.473333pt;}
.ye7{bottom:691.727878pt;}
.yc3{bottom:691.991263pt;}
.y2a{bottom:694.529333pt;}
.y134{bottom:696.459677pt;}
.y111{bottom:697.582865pt;}
.y16f{bottom:708.489333pt;}
.y133{bottom:710.427314pt;}
.y29{bottom:710.469333pt;}
.y110{bottom:710.526271pt;}
.y78{bottom:712.104678pt;}
.y156{bottom:712.105354pt;}
.ye6{bottom:718.833213pt;}
.yc2{bottom:719.096598pt;}
.y16e{bottom:720.444000pt;}
.y10f{bottom:723.468595pt;}
.y132{bottom:724.393783pt;}
.y28{bottom:726.409333pt;}
.y51{bottom:726.852000pt;}
.ya1{bottom:730.204449pt;}
.y10e{bottom:736.410918pt;}
.y77{bottom:738.336779pt;}
.y131{bottom:738.360251pt;}
.y155{bottom:739.210689pt;}
.y27{bottom:742.349333pt;}
.y16d{bottom:742.614667pt;}
.ya0{bottom:743.675662pt;}
.y10d{bottom:749.353242pt;}
.y130{bottom:752.326720pt;}
.y16c{bottom:754.569333pt;}
.ye5{bottom:755.434667pt;}
.yc1{bottom:755.698667pt;}
.y9f{bottom:757.146874pt;}
.y26{bottom:758.289333pt;}
.y10c{bottom:762.295565pt;}
.y76{bottom:764.566687pt;}
.y154{bottom:765.440596pt;}
.y12f{bottom:766.293188pt;}
.y50{bottom:768.658822pt;}
.y9e{bottom:770.618087pt;}
.y5{bottom:771.374667pt;}
.y25{bottom:774.230667pt;}
.y10b{bottom:775.237889pt;}
.y16b{bottom:776.740000pt;}
.y12e{bottom:780.259657pt;}
.y4f{bottom:782.354470pt;}
.y197{bottom:783.329333pt;}
.y9d{bottom:784.089300pt;}
.y10a{bottom:788.181295pt;}
.y16a{bottom:788.694667pt;}
.y75{bottom:791.669828pt;}
.y153{bottom:791.670504pt;}
.y4{bottom:791.964000pt;}
.y12d{bottom:794.227294pt;}
.y196{bottom:795.284000pt;}
.y4e{bottom:796.050118pt;}
.ye4{bottom:797.184997pt;}
.yc0{bottom:797.434979pt;}
.y9c{bottom:797.561640pt;}
.y24{bottom:799.137333pt;}
.y109{bottom:801.123619pt;}
.y12c{bottom:808.193763pt;}
.y4d{bottom:809.745766pt;}
.ye3{bottom:810.712160pt;}
.ybf{bottom:810.925001pt;}
.y9b{bottom:811.032852pt;}
.y3{bottom:812.553333pt;}
.y108{bottom:814.065942pt;}
.y169{bottom:815.726667pt;}
.y195{bottom:817.866667pt;}
.y74{bottom:817.901930pt;}
.y152{bottom:817.902605pt;}
.y12b{bottom:822.160231pt;}
.y4c{bottom:823.441414pt;}
.ye2{bottom:824.239322pt;}
.ybe{bottom:824.415023pt;}
.y9a{bottom:824.504065pt;}
.y107{bottom:827.008266pt;}
.y194{bottom:829.821333pt;}
.y23{bottom:831.482667pt;}
.y12a{bottom:836.126700pt;}
.y4b{bottom:837.137062pt;}
.ye1{bottom:837.766484pt;}
.ybd{bottom:837.906173pt;}
.y99{bottom:837.975278pt;}
.y106{bottom:839.950589pt;}
.y193{bottom:841.776000pt;}
.y73{bottom:844.131837pt;}
.y151{bottom:844.132513pt;}
.y129{bottom:850.093168pt;}
.y4a{bottom:850.833856pt;}
.ye0{bottom:851.293646pt;}
.ybc{bottom:851.396195pt;}
.y98{bottom:851.446491pt;}
.y2{bottom:852.404000pt;}
.y105{bottom:852.892913pt;}
.y168{bottom:860.373333pt;}
.y128{bottom:864.059637pt;}
.y192{bottom:864.358667pt;}
.y49{bottom:864.529504pt;}
.ydf{bottom:864.820808pt;}
.ybb{bottom:864.886217pt;}
.y97{bottom:864.917704pt;}
.y104{bottom:865.836319pt;}
.y72{bottom:871.234978pt;}
.y150{bottom:871.235654pt;}
.y1{bottom:876.313333pt;}
.y127{bottom:878.492239pt;}
.y48{bottom:878.681101pt;}
.yde{bottom:878.799442pt;}
.yba{bottom:878.826471pt;}
.y96{bottom:878.838520pt;}
.y103{bottom:879.209512pt;}
.h9{height:21.933807pt;}
.h7{height:22.922103pt;}
.h19{height:25.589197pt;}
.h1b{height:25.775863pt;}
.h1c{height:25.812358pt;}
.h1a{height:27.523264pt;}
.h3{height:29.159939pt;}
.ha{height:29.244954pt;}
.h8{height:29.499997pt;}
.h17{height:29.681360pt;}
.h14{height:30.894291pt;}
.h15{height:30.937428pt;}
.h16{height:31.022603pt;}
.hd{height:31.409001pt;}
.h18{height:32.030089pt;}
.h2{height:36.556100pt;}
.h4{height:36.768636pt;}
.hf{height:36.817434pt;}
.h13{height:36.822767pt;}
.hc{height:36.874903pt;}
.he{height:37.299379pt;}
.h10{height:39.319061pt;}
.hb{height:44.122658pt;}
.h5{height:46.258122pt;}
.h12{height:46.263455pt;}
.h1{height:52.640990pt;}
.h6{height:52.947042pt;}
.h11{height:60.154525pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.xd{left:181.211023pt;}
.x10{left:183.824054pt;}
.x22{left:184.997333pt;}
.xb{left:188.618473pt;}
.x8{left:190.262667pt;}
.x1{left:192.278667pt;}
.x19{left:194.951222pt;}
.x7{left:198.282667pt;}
.x1f{left:207.129333pt;}
.x20{left:222.306667pt;}
.x16{left:233.058667pt;}
.x11{left:234.833333pt;}
.xe{left:235.816000pt;}
.x2{left:236.990667pt;}
.x1d{left:238.769333pt;}
.x4{left:260.504000pt;}
.x5{left:273.336000pt;}
.x15{left:280.219130pt;}
.x17{left:282.359769pt;}
.x1c{left:289.625286pt;}
.xc{left:291.906914pt;}
.x14{left:293.796218pt;}
.x1a{left:298.258137pt;}
.xa{left:317.027631pt;}
.x13{left:320.379186pt;}
.x1b{left:321.678652pt;}
.x18{left:322.595768pt;}
.x3{left:360.866667pt;}
.x1e{left:400.857333pt;}
.x9{left:404.177333pt;}
.xf{left:416.121333pt;}
.x21{left:468.105333pt;}
.x12{left:579.621333pt;}
}




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