
    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_e7a285183cfef214b70930ac.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_37ca25b3c5236d4d7168abda.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_0883712587bd84c5b41b3afc.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_fa730fecb641bcfd60cd7ab3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c144c06fd2a4908f048169cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.843000;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_45cb5a6d669795dbd75955da.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d502366cda46bfc772a2e119.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978000;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_c13353e8efa2df9f764f89f8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_700cc4ef27d3ccd915af0c12.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_bc54ccf19df46b666e3783f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6{letter-spacing:0.004200px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990611px;}
.ls37{letter-spacing:3.952656px;}
.ls36{letter-spacing:3.983504px;}
.ls2e{letter-spacing:4.804121px;}
.ls2b{letter-spacing:4.825634px;}
.ls2a{letter-spacing:4.862740px;}
.ls2c{letter-spacing:4.864538px;}
.ls2d{letter-spacing:4.866687px;}
.ls13{letter-spacing:4.878824px;}
.ls12{letter-spacing:4.916901px;}
.ls59{letter-spacing:4.933552px;}
.ls56{letter-spacing:4.955644px;}
.ls23{letter-spacing:4.958228px;}
.ls1d{letter-spacing:4.958512px;}
.ls1b{letter-spacing:4.959596px;}
.ls7{letter-spacing:4.965596px;}
.ls55{letter-spacing:4.993749px;}
.ls57{letter-spacing:4.995596px;}
.ls58{letter-spacing:4.997803px;}
.ls53{letter-spacing:5.049788px;}
.ls50{letter-spacing:5.072401px;}
.ls4f{letter-spacing:5.111404px;}
.ls51{letter-spacing:5.113294px;}
.ls52{letter-spacing:5.115553px;}
.ls5b{letter-spacing:5.144303px;}
.ls4d{letter-spacing:5.147872px;}
.ls4a{letter-spacing:5.170924px;}
.ls18{letter-spacing:5.200500px;}
.ls49{letter-spacing:5.210684px;}
.ls4b{letter-spacing:5.212612px;}
.ls4c{letter-spacing:5.214914px;}
.ls15{letter-spacing:5.223787px;}
.ls14{letter-spacing:5.263954px;}
.ls16{letter-spacing:5.265902px;}
.ls17{letter-spacing:5.268227px;}
.lsd{letter-spacing:5.305461px;}
.lsa{letter-spacing:5.329219px;}
.ls46{letter-spacing:5.356908px;}
.ls9{letter-spacing:5.370196px;}
.lsb{letter-spacing:5.372183px;}
.lsc{letter-spacing:5.374555px;}
.ls43{letter-spacing:5.380896px;}
.ls42{letter-spacing:5.422271px;}
.ls44{letter-spacing:5.424277px;}
.ls45{letter-spacing:5.426673px;}
.ls3c{letter-spacing:6.610112px;}
.ls38{letter-spacing:6.610489px;}
.ls3a{letter-spacing:6.611936px;}
.ls1c{letter-spacing:7.352854px;}
.ls8{letter-spacing:7.353196px;}
.ls21{letter-spacing:7.532854px;}
.ls34{letter-spacing:8.079778px;}
.ls30{letter-spacing:8.080239px;}
.ls32{letter-spacing:8.082005px;}
.ls3b{letter-spacing:9.802530px;}
.ls33{letter-spacing:11.967505px;}
.ls5d{letter-spacing:13.173011px;}
.ls29{letter-spacing:13.230538px;}
.ls10{letter-spacing:13.236538px;}
.ls26{letter-spacing:13.614538px;}
.ls40{letter-spacing:13.806538px;}
.ls4{letter-spacing:14.320200px;}
.ls3e{letter-spacing:14.396338px;}
.ls11{letter-spacing:14.892538px;}
.ls1a{letter-spacing:14.898538px;}
.lsf{letter-spacing:14.944200px;}
.ls5c{letter-spacing:14.975657px;}
.ls27{letter-spacing:15.576538px;}
.ls41{letter-spacing:15.930538px;}
.ls3f{letter-spacing:15.976200px;}
.ls3d{letter-spacing:16.364338px;}
.ls1f{letter-spacing:16.395596px;}
.ls25{letter-spacing:17.158200px;}
.ls20{letter-spacing:17.270512px;}
.ls1e{letter-spacing:18.644512px;}
.ls3{letter-spacing:19.798200px;}
.ls5{letter-spacing:21.094200px;}
.ls28{letter-spacing:22.502912px;}
.ls24{letter-spacing:22.797196px;}
.ls22{letter-spacing:23.066912px;}
.ls39{letter-spacing:29.088101px;}
.ls2f{letter-spacing:29.104114px;}
.ls5a{letter-spacing:29.898251px;}
.ls54{letter-spacing:30.602666px;}
.ls4e{letter-spacing:31.197071px;}
.ls19{letter-spacing:31.505436px;}
.lse{letter-spacing:32.152091px;}
.ls48{letter-spacing:32.452983px;}
.ls47{letter-spacing:32.463872px;}
.ls31{letter-spacing:35.512462px;}
.ls35{letter-spacing:36.294171px;}
.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;}
}
.ws9e{word-spacing:-32.545662px;}
.ws5a{word-spacing:-32.233096px;}
.ws6e{word-spacing:-31.595410px;}
.wsb3{word-spacing:-31.275670px;}
.wsc8{word-spacing:-30.679767px;}
.wsd2{word-spacing:-29.973578px;}
.ws85{word-spacing:-29.187230px;}
.ws87{word-spacing:-24.322692px;}
.wsd6{word-spacing:-21.519300px;}
.ws8a{word-spacing:-19.922610px;}
.ws72{word-spacing:-14.943900px;}
.wsa1{word-spacing:-5.429160px;}
.ws9b{word-spacing:-5.424277px;}
.ws55{word-spacing:-5.373753px;}
.ws57{word-spacing:-5.372183px;}
.ws6c{word-spacing:-5.272213px;}
.ws6a{word-spacing:-5.265902px;}
.ws68{word-spacing:-5.261641px;}
.wsb0{word-spacing:-5.212612px;}
.wsc5{word-spacing:-5.113294px;}
.wscf{word-spacing:-4.995596px;}
.wscd{word-spacing:-4.995500px;}
.ws89{word-spacing:-4.870159px;}
.ws80{word-spacing:-4.868361px;}
.ws82{word-spacing:-4.864538px;}
.ws88{word-spacing:-4.860394px;}
.wsb7{word-spacing:-3.586536px;}
.ws73{word-spacing:-3.526760px;}
.wsac{word-spacing:-3.287658px;}
.ws41{word-spacing:-3.048556px;}
.wsaa{word-spacing:-2.749678px;}
.ws74{word-spacing:-2.630126px;}
.wsa3{word-spacing:-2.570351px;}
.wsa4{word-spacing:-2.450800px;}
.wsdd{word-spacing:-2.426882px;}
.wse7{word-spacing:-2.385040px;}
.ws21{word-spacing:-2.271473px;}
.wsf6{word-spacing:-2.217668px;}
.wse9{word-spacing:-2.175826px;}
.wsb6{word-spacing:-2.151922px;}
.ws76{word-spacing:-1.972595px;}
.ws75{word-spacing:-1.793268px;}
.wsd{word-spacing:-1.733492px;}
.wsa2{word-spacing:-1.613941px;}
.wsea{word-spacing:-1.590026px;}
.ws93{word-spacing:-1.554166px;}
.wsbe{word-spacing:-1.494390px;}
.ws14{word-spacing:-1.374839px;}
.ws70{word-spacing:-1.255288px;}
.wsde{word-spacing:-1.255284px;}
.ws66{word-spacing:-1.195512px;}
.ws1a{word-spacing:-1.135736px;}
.wsf5{word-spacing:-1.129756px;}
.ws3d{word-spacing:-1.016185px;}
.ws8{word-spacing:-0.956410px;}
.ws40{word-spacing:-0.896634px;}
.ws96{word-spacing:-0.836858px;}
.wse5{word-spacing:-0.836856px;}
.wsed{word-spacing:-0.753170px;}
.ws3c{word-spacing:-0.717307px;}
.ws1c{word-spacing:-0.657532px;}
.ws8f{word-spacing:-0.537980px;}
.ws4b{word-spacing:-0.478205px;}
.ws22{word-spacing:-0.418429px;}
.ws1b{word-spacing:-0.358654px;}
.ws7b{word-spacing:-0.298878px;}
.wsdc{word-spacing:-0.251057px;}
.ws25{word-spacing:-0.179327px;}
.ws38{word-spacing:-0.119551px;}
.ws43{word-spacing:-0.059776px;}
.ws9c{word-spacing:-0.004726px;}
.ws58{word-spacing:-0.004681px;}
.ws6b{word-spacing:-0.004588px;}
.wsb1{word-spacing:-0.004542px;}
.wsc6{word-spacing:-0.004455px;}
.wsd0{word-spacing:-0.004352px;}
.ws83{word-spacing:-0.004238px;}
.ws5e{word-spacing:-0.001133px;}
.ws0{word-spacing:0.000000px;}
.ws7f{word-spacing:0.012865px;}
.wscc{word-spacing:0.013212px;}
.wsc2{word-spacing:0.013523px;}
.wsad{word-spacing:0.013786px;}
.ws67{word-spacing:0.013927px;}
.ws54{word-spacing:0.014208px;}
.ws98{word-spacing:0.014346px;}
.wsa0{word-spacing:0.025235px;}
.ws4{word-spacing:0.119551px;}
.ws37{word-spacing:0.179327px;}
.ws42{word-spacing:0.239102px;}
.wse1{word-spacing:0.292900px;}
.wsb9{word-spacing:0.358654px;}
.ws17{word-spacing:0.382565px;}
.ws2a{word-spacing:0.418429px;}
.ws78{word-spacing:0.478205px;}
.wsc0{word-spacing:0.537980px;}
.ws34{word-spacing:0.597756px;}
.ws24{word-spacing:0.657532px;}
.ws7e{word-spacing:0.685825px;}
.wsf7{word-spacing:0.711328px;}
.ws23{word-spacing:0.717307px;}
.ws65{word-spacing:0.777083px;}
.wsec{word-spacing:0.795013px;}
.wsd9{word-spacing:0.836856px;}
.ws64{word-spacing:0.836858px;}
.ws1f{word-spacing:0.956410px;}
.ws20{word-spacing:1.016185px;}
.wsbc{word-spacing:1.075961px;}
.ws32{word-spacing:1.195512px;}
.ws60{word-spacing:1.255288px;}
.wse6{word-spacing:1.297127px;}
.ws47{word-spacing:1.315063px;}
.ws5{word-spacing:1.434614px;}
.ws8e{word-spacing:1.494390px;}
.wse3{word-spacing:1.506341px;}
.wse2{word-spacing:1.548184px;}
.ws30{word-spacing:1.554166px;}
.wsd7{word-spacing:1.673712px;}
.ws10{word-spacing:1.673717px;}
.ws4d{word-spacing:1.733492px;}
.ws1e{word-spacing:1.793268px;}
.wsdf{word-spacing:1.799240px;}
.ws15{word-spacing:1.853044px;}
.wseb{word-spacing:1.882926px;}
.ws77{word-spacing:1.912819px;}
.ws2f{word-spacing:1.972595px;}
.wsef{word-spacing:2.008454px;}
.ws3e{word-spacing:2.032370px;}
.wsf0{word-spacing:2.050297px;}
.ws46{word-spacing:2.151922px;}
.ws7d{word-spacing:2.211697px;}
.wsdb{word-spacing:2.217668px;}
.ws53{word-spacing:2.331248px;}
.wsf3{word-spacing:2.343197px;}
.ws48{word-spacing:2.391024px;}
.wsf1{word-spacing:2.510568px;}
.ws90{word-spacing:2.510575px;}
.wsee{word-spacing:2.636096px;}
.wsf4{word-spacing:2.677939px;}
.wsa7{word-spacing:2.689902px;}
.ws61{word-spacing:2.809453px;}
.ws27{word-spacing:2.869229px;}
.wsda{word-spacing:2.887153px;}
.wsc{word-spacing:3.048556px;}
.wse{word-spacing:3.168107px;}
.ws39{word-spacing:3.227882px;}
.wsbf{word-spacing:3.347434px;}
.ws31{word-spacing:3.407209px;}
.wse8{word-spacing:3.514795px;}
.ws36{word-spacing:3.526760px;}
.wse0{word-spacing:3.556638px;}
.ws26{word-spacing:3.586536px;}
.ws33{word-spacing:3.646312px;}
.wsbd{word-spacing:3.706087px;}
.ws45{word-spacing:3.765863px;}
.ws2{word-spacing:3.825638px;}
.wsa5{word-spacing:3.885414px;}
.ws3f{word-spacing:3.945190px;}
.wsf{word-spacing:4.124516px;}
.ws52{word-spacing:4.184292px;}
.ws4e{word-spacing:4.244068px;}
.ws6{word-spacing:4.303843px;}
.ws49{word-spacing:4.363619px;}
.ws11{word-spacing:4.423394px;}
.ws94{word-spacing:4.542946px;}
.wsa6{word-spacing:4.602721px;}
.wsf2{word-spacing:4.644551px;}
.ws19{word-spacing:4.841824px;}
.wsd8{word-spacing:4.853765px;}
.ws2e{word-spacing:4.961375px;}
.ws95{word-spacing:5.021150px;}
.ws51{word-spacing:5.080926px;}
.wse4{word-spacing:5.104822px;}
.wsc3{word-spacing:5.116004px;}
.ws62{word-spacing:5.200477px;}
.wsae{word-spacing:5.210605px;}
.wscb{word-spacing:5.379804px;}
.ws99{word-spacing:5.423574px;}
.ws4a{word-spacing:5.439580px;}
.ws7a{word-spacing:5.559131px;}
.ws7{word-spacing:5.858009px;}
.ws50{word-spacing:5.917784px;}
.ws91{word-spacing:5.977560px;}
.ws7c{word-spacing:6.097111px;}
.ws1d{word-spacing:6.156887px;}
.ws4c{word-spacing:6.216662px;}
.wsb{word-spacing:6.395989px;}
.ws29{word-spacing:6.515540px;}
.ws18{word-spacing:6.814418px;}
.ws97{word-spacing:6.933970px;}
.ws35{word-spacing:7.173072px;}
.ws3{word-spacing:7.471950px;}
.ws28{word-spacing:7.531726px;}
.ws3b{word-spacing:7.711052px;}
.ws9{word-spacing:7.890379px;}
.ws2d{word-spacing:8.069706px;}
.ws8d{word-spacing:8.129482px;}
.ws5d{word-spacing:8.189257px;}
.ws8c{word-spacing:8.368584px;}
.wsbb{word-spacing:8.906564px;}
.ws79{word-spacing:9.026116px;}
.ws2b{word-spacing:9.205442px;}
.wsb8{word-spacing:9.265218px;}
.ws84{word-spacing:9.651268px;}
.ws81{word-spacing:9.668806px;}
.ws2c{word-spacing:9.803198px;}
.wsd1{word-spacing:9.911288px;}
.wsce{word-spacing:9.929299px;}
.wsc7{word-spacing:10.144802px;}
.wsc4{word-spacing:10.163237px;}
.wsb2{word-spacing:10.341847px;}
.wsaf{word-spacing:10.360640px;}
.ws6d{word-spacing:10.447575px;}
.ws69{word-spacing:10.455989px;}
.ws59{word-spacing:10.658437px;}
.ws56{word-spacing:10.677805px;}
.ws3a{word-spacing:10.699832px;}
.ws9d{word-spacing:10.761793px;}
.ws9a{word-spacing:10.781349px;}
.ws16{word-spacing:11.901626px;}
.ws1{word-spacing:11.907329px;}
.ws5c{word-spacing:16.772534px;}
.wsab{word-spacing:17.443966px;}
.wsba{word-spacing:18.907966px;}
.ws44{word-spacing:20.185966px;}
.ws4f{word-spacing:20.191966px;}
.wsc1{word-spacing:20.557966px;}
.ws13{word-spacing:21.519300px;}
.wsd5{word-spacing:21.997966px;}
.ws63{word-spacing:25.381966px;}
.ws92{word-spacing:26.155966px;}
.wsa{word-spacing:28.069966px;}
.ws12{word-spacing:37.003661px;}
.ws86{word-spacing:92.426228px;}
.wsd3{word-spacing:94.916330px;}
.wsc9{word-spacing:97.152595px;}
.wsb4{word-spacing:99.039621px;}
.ws6f{word-spacing:100.052130px;}
.ws5b{word-spacing:102.071470px;}
.ws9f{word-spacing:103.061264px;}
.ws71{word-spacing:308.171720px;}
.wsca{word-spacing:335.615036px;}
.wsb5{word-spacing:515.914674px;}
.wsa8{word-spacing:597.949533px;}
.wsa9{word-spacing:721.788727px;}
.ws5f{word-spacing:739.985908px;}
.wsd4{word-spacing:816.512432px;}
.ws8b{word-spacing:877.949565px;}
._1f{margin-left:-7.839502px;}
._20{margin-left:-6.393604px;}
._16{margin-left:-5.140702px;}
._2{margin-left:-3.885414px;}
._1{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._53{width:1.040516px;}
._42{width:3.384749px;}
._14{width:5.013624px;}
._17{width:6.134149px;}
._5b{width:9.059503px;}
._5c{width:10.580266px;}
._a{width:12.552875px;}
._41{width:13.903809px;}
._b{width:15.679416px;}
._e{width:17.095822px;}
._3{width:18.948865px;}
._7{width:20.299799px;}
._5{width:22.116972px;}
._12{width:23.133157px;}
._5d{width:24.197012px;}
._f{width:25.201397px;}
._8{width:27.257674px;}
._13{width:29.887799px;}
._4{width:31.501741px;}
._11{width:33.450431px;}
._2b{width:34.526392px;}
._9{width:35.865600px;}
._6{width:37.598852px;}
._d{width:38.854140px;}
._40{width:39.870325px;}
._15{width:41.111935px;}
._10{width:43.098207px;}
._2a{width:46.122858px;}
._34{width:143.698462px;}
._2c{width:157.319170px;}
._5a{width:161.346610px;}
._54{width:165.363944px;}
._36{width:167.923863px;}
._32{width:169.005767px;}
._28{width:170.193940px;}
._1c{width:173.628942px;}
._29{width:175.249205px;}
._58{width:176.510926px;}
._31{width:181.544570px;}
._35{width:186.697549px;}
._21{width:189.993730px;}
._2f{width:192.343845px;}
._4e{width:195.458948px;}
._25{width:196.523447px;}
._1b{width:200.489855px;}
._4a{width:201.738050px;}
._33{width:202.945107px;}
._2e{width:205.867262px;}
._51{width:211.450013px;}
._39{width:216.666537px;}
._4d{width:220.597725px;}
._23{width:222.852955px;}
._4b{width:225.497580px;}
._19{width:227.350768px;}
._45{width:228.451216px;}
._44{width:229.555405px;}
._2d{width:235.342933px;}
._52{width:238.028432px;}
._3f{width:246.407928px;}
._1e{width:253.459576px;}
._59{width:254.675501px;}
._49{width:255.980820px;}
._50{width:261.276680px;}
._37{width:263.946418px;}
._46{width:266.358476px;}
._18{width:268.501687px;}
._4c{width:278.582551px;}
._1d{width:280.320489px;}
._47{width:282.826672px;}
._30{width:286.420585px;}
._48{width:287.812140px;}
._4f{width:289.091442px;}
._24{width:290.151178px;}
._1a{width:307.181402px;}
._43{width:314.634542px;}
._27{width:316.480686px;}
._26{width:342.810194px;}
._22{width:369.139702px;}
._3d{width:372.526345px;}
._57{width:380.939750px;}
._3c{width:383.325620px;}
._3e{width:388.676612px;}
._38{width:396.849037px;}
._3a{width:402.200029px;}
._3b{width:407.648312px;}
._55{width:414.994291px;}
._56{width:440.560763px;}
._c{width:1147.359649px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs18{font-size:41.842800px;}
.fs3{font-size:44.233800px;}
.fs2{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fsf{font-size:63.752511px;}
.fs4{font-size:71.731200px;}
.fsd{font-size:77.832809px;}
.fs9{font-size:78.690710px;}
.fse{font-size:79.690439px;}
.fs17{font-size:79.929742px;}
.fs15{font-size:81.812917px;}
.fs13{font-size:83.401996px;}
.fsb{font-size:84.254637px;}
.fs7{font-size:85.955137px;}
.fs0{font-size:86.077200px;}
.fs11{font-size:86.788651px;}
.fsc{font-size:97.290767px;}
.fs8{font-size:98.363141px;}
.fs16{font-size:99.911927px;}
.fs14{font-size:102.265890px;}
.fs12{font-size:104.252233px;}
.fsa{font-size:105.318032px;}
.fs6{font-size:107.443652px;}
.fs10{font-size:108.485541px;}
.y0{bottom:0.000000px;}
.y21{bottom:134.047500px;}
.yd8{bottom:163.515000px;}
.y173{bottom:179.011500px;}
.y4b{bottom:179.812500px;}
.y94{bottom:184.905000px;}
.yff{bottom:185.262000px;}
.y1b0{bottom:185.305500px;}
.y82{bottom:189.075000px;}
.y11a{bottom:189.408000px;}
.y20{bottom:193.149000px;}
.ybc{bottom:193.341000px;}
.y159{bottom:195.208500px;}
.y137{bottom:196.624500px;}
.y4a{bottom:197.745000px;}
.y6a{bottom:198.343500px;}
.y93{bottom:202.837500px;}
.yfe{bottom:203.194500px;}
.y81{bottom:207.009000px;}
.y119{bottom:207.340500px;}
.y1af{bottom:210.709500px;}
.ybb{bottom:211.273500px;}
.y1f{bottom:211.686000px;}
.y158{bottom:213.142500px;}
.yd7{bottom:215.136339px;}
.y49{bottom:215.679000px;}
.y69{bottom:216.276000px;}
.y172{bottom:217.293000px;}
.yfd{bottom:221.127000px;}
.y1e{bottom:222.060000px;}
.y1ae{bottom:224.160000px;}
.y80{bottom:224.941500px;}
.y118{bottom:225.273000px;}
.yba{bottom:229.206000px;}
.y92{bottom:230.857500px;}
.y157{bottom:231.075000px;}
.y48{bottom:233.611500px;}
.y68{bottom:234.208500px;}
.yfc{bottom:239.059500px;}
.y1d{bottom:240.597000px;}
.y7f{bottom:242.874000px;}
.y117{bottom:243.207000px;}
.yd6{bottom:244.325717px;}
.yb9{bottom:247.138500px;}
.y136{bottom:248.944351px;}
.y156{bottom:249.007500px;}
.y1ad{bottom:249.564000px;}
.y47{bottom:251.544000px;}
.y67{bottom:252.142500px;}
.yfb{bottom:256.992000px;}
.y7e{bottom:260.806500px;}
.y116{bottom:261.139500px;}
.y1ac{bottom:263.014500px;}
.yb8{bottom:265.072500px;}
.y155{bottom:266.940000px;}
.y171{bottom:269.180228px;}
.y46{bottom:269.476500px;}
.y66{bottom:270.075000px;}
.y91{bottom:270.646500px;}
.yd5{bottom:273.512654px;}
.yfa{bottom:274.926000px;}
.y7d{bottom:278.739000px;}
.y115{bottom:279.072000px;}
.y135{bottom:280.219707px;}
.yb7{bottom:283.005000px;}
.y154{bottom:284.872500px;}
.y1c{bottom:286.045500px;}
.y45{bottom:287.409000px;}
.y65{bottom:288.007500px;}
.y187{bottom:288.235500px;}
.y1ab{bottom:288.418500px;}
.y90{bottom:288.579000px;}
.yf9{bottom:292.858500px;}
.y7c{bottom:296.671500px;}
.y114{bottom:297.004500px;}
.y170{bottom:299.153505px;}
.yb6{bottom:300.937500px;}
.y1aa{bottom:301.867500px;}
.yd4{bottom:302.699591px;}
.y153{bottom:302.805000px;}
.y1b{bottom:303.978000px;}
.y44{bottom:305.343000px;}
.y64{bottom:305.940000px;}
.yf8{bottom:310.791000px;}
.y134{bottom:311.497679px;}
.y7b{bottom:314.605500px;}
.y113{bottom:314.937000px;}
.yb5{bottom:318.870000px;}
.y152{bottom:320.739000px;}
.y186{bottom:321.636000px;}
.y43{bottom:323.275500px;}
.y8f{bottom:323.797500px;}
.y63{bottom:323.872500px;}
.y1a9{bottom:327.273000px;}
.yf7{bottom:328.723500px;}
.y16f{bottom:330.127145px;}
.yd3{bottom:331.886528px;}
.y1a{bottom:331.998000px;}
.yb4{bottom:336.802500px;}
.y151{bottom:338.671500px;}
.y1a8{bottom:340.722000px;}
.y42{bottom:341.208000px;}
.y62{bottom:341.805000px;}
.y7a{bottom:342.625500px;}
.y133{bottom:342.773035px;}
.y112{bottom:342.957000px;}
.yf6{bottom:346.656000px;}
.yb3{bottom:354.735000px;}
.y150{bottom:356.604000px;}
.y41{bottom:359.140500px;}
.y61{bottom:359.739000px;}
.y16e{bottom:360.100422px;}
.yd2{bottom:361.073465px;}
.yf5{bottom:364.588500px;}
.y1a7{bottom:366.127500px;}
.y19{bottom:368.386500px;}
.y185{bottom:372.072000px;}
.yb2{bottom:372.669000px;}
.y132{bottom:374.048391px;}
.y8e{bottom:376.224387px;}
.y40{bottom:377.073000px;}
.y60{bottom:377.671500px;}
.y1a6{bottom:379.576500px;}
.yf4{bottom:382.522500px;}
.y111{bottom:382.746000px;}
.y14f{bottom:384.624000px;}
.y184{bottom:390.004500px;}
.yd1{bottom:390.260402px;}
.yb1{bottom:390.601500px;}
.y16d{bottom:391.071555px;}
.y3f{bottom:395.005500px;}
.y5f{bottom:395.604000px;}
.yf3{bottom:400.455000px;}
.y79{bottom:401.694000px;}
.y1a5{bottom:404.982000px;}
.y131{bottom:405.323747px;}
.y8d{bottom:407.819479px;}
.yb0{bottom:408.534000px;}
.y3e{bottom:412.939500px;}
.y5e{bottom:413.536500px;}
.yf2{bottom:418.387500px;}
.y1a4{bottom:418.431000px;}
.yd0{bottom:419.449781px;}
.y183{bottom:423.403500px;}
.y14e{bottom:424.411500px;}
.y18{bottom:425.526000px;}
.yaf{bottom:426.466500px;}
.y110{bottom:430.165500px;}
.y3d{bottom:430.872000px;}
.y5d{bottom:431.469000px;}
.y16c{bottom:431.653500px;}
.y1a3{bottom:431.880000px;}
.yf1{bottom:436.320000px;}
.y130{bottom:437.642923px;}
.y8c{bottom:439.414572px;}
.y14d{bottom:442.345500px;}
.y17{bottom:443.460000px;}
.yae{bottom:444.399000px;}
.ycf{bottom:448.636718px;}
.y3c{bottom:448.804500px;}
.y5c{bottom:449.403000px;}
.y16b{bottom:449.586000px;}
.y78{bottom:453.426185px;}
.yf0{bottom:454.252500px;}
.y1a2{bottom:457.285500px;}
.y14c{bottom:460.278000px;}
.yad{bottom:462.331500px;}
.y3b{bottom:466.737000px;}
.y5b{bottom:467.335500px;}
.y16a{bottom:467.518500px;}
.y12f{bottom:468.918279px;}
.y1a1{bottom:470.734500px;}
.y8b{bottom:471.009664px;}
.y16{bottom:471.867000px;}
.yef{bottom:472.185000px;}
.y182{bottom:473.839500px;}
.yce{bottom:477.823655px;}
.y14b{bottom:478.210500px;}
.yac{bottom:480.265500px;}
.y10f{bottom:482.909442px;}
.y77{bottom:482.934831px;}
.y1a0{bottom:484.185000px;}
.y3a{bottom:484.669500px;}
.y5a{bottom:485.268000px;}
.y169{bottom:485.451000px;}
.y15{bottom:489.801000px;}
.yee{bottom:490.119000px;}
.y181{bottom:491.772000px;}
.y14a{bottom:496.143000px;}
.yab{bottom:498.198000px;}
.y12e{bottom:501.237455px;}
.y39{bottom:502.602000px;}
.y8a{bottom:502.604756px;}
.y59{bottom:503.200500px;}
.y168{bottom:503.383500px;}
.ycd{bottom:507.010592px;}
.y14{bottom:507.733500px;}
.yed{bottom:508.051500px;}
.y19f{bottom:509.589000px;}
.y76{bottom:513.428333px;}
.y149{bottom:514.075500px;}
.y10e{bottom:515.454778px;}
.yaa{bottom:516.130500px;}
.y38{bottom:520.536000px;}
.y58{bottom:521.133000px;}
.y167{bottom:521.317500px;}
.y19e{bottom:523.038000px;}
.y180{bottom:525.172500px;}
.y13{bottom:525.666000px;}
.yec{bottom:525.984000px;}
.y148{bottom:532.008000px;}
.ya9{bottom:534.063000px;}
.y89{bottom:534.202492px;}
.ycc{bottom:536.197529px;}
.y19d{bottom:536.488500px;}
.y37{bottom:538.468500px;}
.y57{bottom:539.065500px;}
.y166{bottom:539.250000px;}
.y12{bottom:543.598500px;}
.yeb{bottom:543.916500px;}
.y12d{bottom:545.793000px;}
.y10d{bottom:548.000114px;}
.y147{bottom:549.942000px;}
.ya8{bottom:551.995500px;}
.y75{bottom:553.257000px;}
.y36{bottom:556.401000px;}
.y11{bottom:561.531000px;}
.yea{bottom:561.849000px;}
.y19c{bottom:561.892500px;}
.y12c{bottom:563.725500px;}
.y88{bottom:565.797584px;}
.ycb{bottom:566.358584px;}
.y56{bottom:567.085500px;}
.y146{bottom:567.874500px;}
.ya7{bottom:569.928000px;}
.y74{bottom:571.189500px;}
.y35{bottom:574.333500px;}
.y19b{bottom:575.343000px;}
.y17f{bottom:575.608500px;}
.y10{bottom:579.463500px;}
.ye9{bottom:579.783000px;}
.y10c{bottom:580.548172px;}
.y12b{bottom:581.658000px;}
.y145{bottom:585.807000px;}
.y165{bottom:586.669500px;}
.ya6{bottom:587.862000px;}
.y19a{bottom:588.792000px;}
.y34{bottom:592.266000px;}
.y55{bottom:595.105500px;}
.yca{bottom:595.545521px;}
.y87{bottom:597.392677px;}
.yf{bottom:597.397500px;}
.ye8{bottom:597.715500px;}
.y12a{bottom:599.590500px;}
.y144{bottom:603.739500px;}
.ya5{bottom:605.794500px;}
.y73{bottom:606.408000px;}
.y17e{bottom:609.007500px;}
.y33{bottom:610.198500px;}
.y10b{bottom:613.093507px;}
.y199{bottom:614.197500px;}
.ye{bottom:615.330000px;}
.ye7{bottom:615.648000px;}
.y129{bottom:617.523000px;}
.y143{bottom:621.672000px;}
.ya4{bottom:623.727000px;}
.yc9{bottom:625.706577px;}
.y198{bottom:627.646500px;}
.y32{bottom:628.132500px;}
.y86{bottom:628.987769px;}
.y54{bottom:631.494000px;}
.yd{bottom:633.262500px;}
.ye6{bottom:633.580500px;}
.y128{bottom:635.457000px;}
.y164{bottom:638.400717px;}
.y142{bottom:639.604500px;}
.y197{bottom:641.095500px;}
.ya3{bottom:641.659500px;}
.y10a{bottom:645.638843px;}
.y31{bottom:646.065000px;}
.yc{bottom:651.195000px;}
.ye5{bottom:651.513000px;}
.y127{bottom:653.389500px;}
.yc8{bottom:655.865191px;}
.y141{bottom:657.538500px;}
.y72{bottom:659.046832px;}
.y17d{bottom:659.443500px;}
.ya2{bottom:659.592000px;}
.y85{bottom:661.637353px;}
.y30{bottom:663.997500px;}
.y196{bottom:666.501000px;}
.y163{bottom:667.909363px;}
.yb{bottom:669.127500px;}
.ye4{bottom:669.445500px;}
.y126{bottom:671.322000px;}
.y140{bottom:675.471000px;}
.y17c{bottom:677.376000px;}
.ya1{bottom:677.526000px;}
.y109{bottom:679.270384px;}
.y195{bottom:679.950000px;}
.y53{bottom:681.930000px;}
.yc7{bottom:685.054570px;}
.ya{bottom:687.060000px;}
.ye3{bottom:687.379500px;}
.y125{bottom:689.254500px;}
.y71{bottom:691.279604px;}
.y2f{bottom:692.017500px;}
.y84{bottom:693.232445px;}
.y13f{bottom:693.403500px;}
.y17b{bottom:695.308500px;}
.ya0{bottom:695.458500px;}
.y162{bottom:698.402864px;}
.y1be{bottom:698.929500px;}
.y52{bottom:699.862500px;}
.y9{bottom:704.994000px;}
.ye2{bottom:705.312000px;}
.y194{bottom:705.355500px;}
.y124{bottom:707.187000px;}
.y13e{bottom:711.336000px;}
.y108{bottom:711.815720px;}
.y1bd{bottom:712.378500px;}
.y17a{bottom:713.241000px;}
.y9f{bottom:713.391000px;}
.yc6{bottom:714.241507px;}
.y51{bottom:717.796500px;}
.y193{bottom:718.804500px;}
.y8{bottom:722.926500px;}
.ye1{bottom:723.244500px;}
.y70{bottom:723.512376px;}
.y123{bottom:725.119500px;}
.y83{bottom:725.882029px;}
.y13d{bottom:729.268500px;}
.y179{bottom:731.175000px;}
.y9e{bottom:731.323500px;}
.y2e{bottom:734.794500px;}
.y50{bottom:735.729000px;}
.y1bc{bottom:737.784000px;}
.y161{bottom:739.579500px;}
.y7{bottom:740.859000px;}
.y122{bottom:743.053500px;}
.yc5{bottom:743.428444px;}
.y192{bottom:744.210000px;}
.y107{bottom:745.444539px;}
.y9d{bottom:749.256000px;}
.y1bb{bottom:751.233000px;}
.ye0{bottom:751.264500px;}
.y2d{bottom:752.727000px;}
.y4f{bottom:753.661500px;}
.y6f{bottom:755.747845px;}
.y13c{bottom:757.288500px;}
.y191{bottom:757.659000px;}
.y121{bottom:760.986000px;}
.y178{bottom:764.574000px;}
.y9c{bottom:767.188500px;}
.y6{bottom:767.758500px;}
.y2c{bottom:770.659500px;}
.y4e{bottom:771.594000px;}
.yc4{bottom:772.615381px;}
.y1ba{bottom:776.637000px;}
.y106{bottom:779.076080px;}
.y190{bottom:783.063000px;}
.y9b{bottom:785.122500px;}
.y6e{bottom:787.980617px;}
.y2b{bottom:788.592000px;}
.y4d{bottom:789.526500px;}
.y1b9{bottom:790.087500px;}
.y160{bottom:791.700432px;}
.y18f{bottom:796.513500px;}
.yc3{bottom:801.802318px;}
.y9a{bottom:803.055000px;}
.y2a{bottom:806.526000px;}
.y120{bottom:808.405500px;}
.ydf{bottom:811.573500px;}
.y105{bottom:811.621416px;}
.y1b8{bottom:815.491500px;}
.y13b{bottom:816.357000px;}
.y4c{bottom:817.546500px;}
.y99{bottom:820.987500px;}
.y6d{bottom:821.289163px;}
.y18e{bottom:821.917500px;}
.y15f{bottom:822.382458px;}
.y29{bottom:824.458500px;}
.y1b7{bottom:828.942000px;}
.yc2{bottom:830.991696px;}
.y177{bottom:834.291000px;}
.y18d{bottom:835.368000px;}
.y28{bottom:842.391000px;}
.y104{bottom:844.166751px;}
.y15e{bottom:853.061917px;}
.y6c{bottom:853.521935px;}
.y11f{bottom:860.136877px;}
.yc1{bottom:860.178633px;}
.y27{bottom:860.323500px;}
.y18c{bottom:860.772000px;}
.yde{bottom:861.436797px;}
.y1b6{bottom:867.795000px;}
.y5{bottom:867.796500px;}
.y13a{bottom:868.088217px;}
.y98{bottom:868.407000px;}
.y18b{bottom:874.221000px;}
.y103{bottom:876.714809px;}
.y26{bottom:878.256000px;}
.y1b5{bottom:881.245500px;}
.y15d{bottom:883.741376px;}
.ydd{bottom:885.345688px;}
.y176{bottom:886.023185px;}
.y6b{bottom:886.827785px;}
.yc0{bottom:889.365570px;}
.y11e{bottom:889.645523px;}
.y4{bottom:890.959500px;}
.y1b4{bottom:894.694500px;}
.y25{bottom:896.188500px;}
.y139{bottom:897.599331px;}
.y18a{bottom:899.626500px;}
.ydc{bottom:910.048477px;}
.y102{bottom:910.343628px;}
.y189{bottom:913.075500px;}
.y3{bottom:914.122500px;}
.y15c{bottom:915.444766px;}
.y175{bottom:915.531831px;}
.ybf{bottom:919.526626px;}
.y1b3{bottom:920.100000px;}
.y97{bottom:920.138217px;}
.y11d{bottom:920.139025px;}
.y138{bottom:928.090364px;}
.y24{bottom:932.055000px;}
.y1b2{bottom:933.549000px;}
.ydb{bottom:933.955368px;}
.y101{bottom:942.888964px;}
.y188{bottom:943.486500px;}
.y174{bottom:946.022864px;}
.y15b{bottom:946.124225px;}
.ybe{bottom:948.713563px;}
.y96{bottom:949.646863px;}
.y11c{bottom:949.647671px;}
.y23{bottom:949.987500px;}
.yda{bottom:957.864260px;}
.y2{bottom:958.954500px;}
.y22{bottom:967.920000px;}
.y1b1{bottom:972.403500px;}
.y100{bottom:976.520505px;}
.y15a{bottom:977.825050px;}
.ybd{bottom:978.872177px;}
.y95{bottom:980.140364px;}
.y11b{bottom:980.141172px;}
.yd9{bottom:982.567048px;}
.y1{bottom:985.852500px;}
.ha{height:24.675533px;}
.h8{height:25.787366px;}
.h1c{height:28.787846px;}
.h1f{height:28.991846px;}
.h1d{height:28.997846px;}
.h1e{height:31.633157px;}
.h3{height:32.804932px;}
.h9{height:32.900573px;}
.h2{height:41.125613px;}
.h4{height:41.364715px;}
.hc{height:41.425613px;}
.hd{height:41.484266px;}
.hf{height:41.961802px;}
.h19{height:41.967802px;}
.hb{height:45.190354px;}
.h7{height:49.637990px;}
.h5{height:52.040387px;}
.h16{height:52.046387px;}
.h14{height:54.827022px;}
.h1{height:59.221114px;}
.h6{height:59.565422px;}
.h15{height:60.245972px;}
.h12{height:66.936047px;}
.h10{height:67.673841px;}
.h1b{height:68.739406px;}
.h1a{height:70.358932px;}
.h18{height:71.725536px;}
.h11{height:72.458806px;}
.h13{height:73.551820px;}
.he{height:73.921233px;}
.h17{height:74.638052px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x19{left:205.633352px;}
.xe{left:207.368172px;}
.x7{left:214.045500px;}
.x9{left:216.942000px;}
.x8{left:222.172500px;}
.xd{left:224.157254px;}
.x1{left:228.267000px;}
.x25{left:233.020500px;}
.x21{left:236.689779px;}
.x18{left:239.619185px;}
.x15{left:248.337425px;}
.x23{left:252.944149px;}
.x11{left:255.773610px;}
.xc{left:256.886122px;}
.x1b{left:257.932335px;}
.x14{left:261.414000px;}
.x10{left:263.739000px;}
.x1d{left:264.844500px;}
.x2{left:266.614500px;}
.x20{left:267.841427px;}
.x17{left:269.255340px;}
.x13{left:278.317500px;}
.xf{left:280.642500px;}
.x1c{left:281.749500px;}
.x4{left:293.067000px;}
.x5{left:307.503000px;}
.xa{left:371.916000px;}
.x3{left:405.975000px;}
.x24{left:425.954267px;}
.x27{left:430.417500px;}
.x1e{left:433.421224px;}
.x1a{left:444.392199px;}
.x12{left:449.466987px;}
.x1f{left:450.964500px;}
.xb{left:454.699500px;}
.x22{left:466.774173px;}
.x16{left:478.903241px;}
.x28{left:482.686500px;}
.x26{left:613.797000px;}
@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;}
.ls6{letter-spacing:0.003733pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658321pt;}
.ls37{letter-spacing:3.513472pt;}
.ls36{letter-spacing:3.540893pt;}
.ls2e{letter-spacing:4.270330pt;}
.ls2b{letter-spacing:4.289453pt;}
.ls2a{letter-spacing:4.322435pt;}
.ls2c{letter-spacing:4.324034pt;}
.ls2d{letter-spacing:4.325944pt;}
.ls13{letter-spacing:4.336732pt;}
.ls12{letter-spacing:4.370579pt;}
.ls59{letter-spacing:4.385379pt;}
.ls56{letter-spacing:4.405017pt;}
.ls23{letter-spacing:4.407314pt;}
.ls1d{letter-spacing:4.407566pt;}
.ls1b{letter-spacing:4.408530pt;}
.ls7{letter-spacing:4.413863pt;}
.ls55{letter-spacing:4.438888pt;}
.ls57{letter-spacing:4.440530pt;}
.ls58{letter-spacing:4.442491pt;}
.ls53{letter-spacing:4.488701pt;}
.ls50{letter-spacing:4.508801pt;}
.ls4f{letter-spacing:4.543470pt;}
.ls51{letter-spacing:4.545151pt;}
.ls52{letter-spacing:4.547158pt;}
.ls5b{letter-spacing:4.572714pt;}
.ls4d{letter-spacing:4.575886pt;}
.ls4a{letter-spacing:4.596377pt;}
.ls18{letter-spacing:4.622667pt;}
.ls49{letter-spacing:4.631719pt;}
.ls4b{letter-spacing:4.633433pt;}
.ls4c{letter-spacing:4.635479pt;}
.ls15{letter-spacing:4.643367pt;}
.ls14{letter-spacing:4.679071pt;}
.ls16{letter-spacing:4.680801pt;}
.ls17{letter-spacing:4.682869pt;}
.lsd{letter-spacing:4.715965pt;}
.lsa{letter-spacing:4.737083pt;}
.ls46{letter-spacing:4.761696pt;}
.ls9{letter-spacing:4.773508pt;}
.lsb{letter-spacing:4.775273pt;}
.lsc{letter-spacing:4.777382pt;}
.ls43{letter-spacing:4.783019pt;}
.ls42{letter-spacing:4.819797pt;}
.ls44{letter-spacing:4.821580pt;}
.ls45{letter-spacing:4.823709pt;}
.ls3c{letter-spacing:5.875655pt;}
.ls38{letter-spacing:5.875991pt;}
.ls3a{letter-spacing:5.877276pt;}
.ls1c{letter-spacing:6.535870pt;}
.ls8{letter-spacing:6.536174pt;}
.ls21{letter-spacing:6.695870pt;}
.ls34{letter-spacing:7.182025pt;}
.ls30{letter-spacing:7.182435pt;}
.ls32{letter-spacing:7.184004pt;}
.ls3b{letter-spacing:8.713360pt;}
.ls33{letter-spacing:10.637782pt;}
.ls5d{letter-spacing:11.709343pt;}
.ls29{letter-spacing:11.760479pt;}
.ls10{letter-spacing:11.765812pt;}
.ls26{letter-spacing:12.101812pt;}
.ls40{letter-spacing:12.272479pt;}
.ls4{letter-spacing:12.729067pt;}
.ls3e{letter-spacing:12.796745pt;}
.ls11{letter-spacing:13.237812pt;}
.ls1a{letter-spacing:13.243145pt;}
.lsf{letter-spacing:13.283733pt;}
.ls5c{letter-spacing:13.311695pt;}
.ls27{letter-spacing:13.845812pt;}
.ls41{letter-spacing:14.160479pt;}
.ls3f{letter-spacing:14.201067pt;}
.ls3d{letter-spacing:14.546079pt;}
.ls1f{letter-spacing:14.573863pt;}
.ls25{letter-spacing:15.251733pt;}
.ls20{letter-spacing:15.351566pt;}
.ls1e{letter-spacing:16.572899pt;}
.ls3{letter-spacing:17.598400pt;}
.ls5{letter-spacing:18.750400pt;}
.ls28{letter-spacing:20.002589pt;}
.ls24{letter-spacing:20.264174pt;}
.ls22{letter-spacing:20.503922pt;}
.ls39{letter-spacing:25.856090pt;}
.ls2f{letter-spacing:25.870324pt;}
.ls5a{letter-spacing:26.576223pt;}
.ls54{letter-spacing:27.202369pt;}
.ls4e{letter-spacing:27.730730pt;}
.ls19{letter-spacing:28.004832pt;}
.lse{letter-spacing:28.579636pt;}
.ls48{letter-spacing:28.847096pt;}
.ls47{letter-spacing:28.856775pt;}
.ls31{letter-spacing:31.566633pt;}
.ls35{letter-spacing:32.261485pt;}
.ws9e{word-spacing:-28.929478pt;}
.ws5a{word-spacing:-28.651641pt;}
.ws6e{word-spacing:-28.084809pt;}
.wsb3{word-spacing:-27.800595pt;}
.wsc8{word-spacing:-27.270904pt;}
.wsd2{word-spacing:-26.643180pt;}
.ws85{word-spacing:-25.944204pt;}
.ws87{word-spacing:-21.620170pt;}
.wsd6{word-spacing:-19.128267pt;}
.ws8a{word-spacing:-17.708986pt;}
.ws72{word-spacing:-13.283467pt;}
.wsa1{word-spacing:-4.825920pt;}
.ws9b{word-spacing:-4.821580pt;}
.ws55{word-spacing:-4.776669pt;}
.ws57{word-spacing:-4.775273pt;}
.ws6c{word-spacing:-4.686411pt;}
.ws6a{word-spacing:-4.680801pt;}
.ws68{word-spacing:-4.677015pt;}
.wsb0{word-spacing:-4.633433pt;}
.wsc5{word-spacing:-4.545151pt;}
.wscf{word-spacing:-4.440530pt;}
.wscd{word-spacing:-4.440444pt;}
.ws89{word-spacing:-4.329031pt;}
.ws80{word-spacing:-4.327432pt;}
.ws82{word-spacing:-4.324034pt;}
.ws88{word-spacing:-4.320350pt;}
.wsb7{word-spacing:-3.188032pt;}
.ws73{word-spacing:-3.134898pt;}
.wsac{word-spacing:-2.922363pt;}
.ws41{word-spacing:-2.709827pt;}
.wsaa{word-spacing:-2.444158pt;}
.ws74{word-spacing:-2.337890pt;}
.wsa3{word-spacing:-2.284756pt;}
.wsa4{word-spacing:-2.178489pt;}
.wsdd{word-spacing:-2.157229pt;}
.wse7{word-spacing:-2.120035pt;}
.ws21{word-spacing:-2.019087pt;}
.wsf6{word-spacing:-1.971261pt;}
.wse9{word-spacing:-1.934067pt;}
.wsb6{word-spacing:-1.912819pt;}
.ws76{word-spacing:-1.753418pt;}
.ws75{word-spacing:-1.594016pt;}
.wsd{word-spacing:-1.540882pt;}
.wsa2{word-spacing:-1.434614pt;}
.wsea{word-spacing:-1.413357pt;}
.ws93{word-spacing:-1.381481pt;}
.wsbe{word-spacing:-1.328347pt;}
.ws14{word-spacing:-1.222079pt;}
.ws70{word-spacing:-1.115811pt;}
.wsde{word-spacing:-1.115808pt;}
.ws66{word-spacing:-1.062677pt;}
.ws1a{word-spacing:-1.009543pt;}
.wsf5{word-spacing:-1.004227pt;}
.ws3d{word-spacing:-0.903276pt;}
.ws8{word-spacing:-0.850142pt;}
.ws40{word-spacing:-0.797008pt;}
.ws96{word-spacing:-0.743874pt;}
.wse5{word-spacing:-0.743872pt;}
.wsed{word-spacing:-0.669485pt;}
.ws3c{word-spacing:-0.637606pt;}
.ws1c{word-spacing:-0.584473pt;}
.ws8f{word-spacing:-0.478205pt;}
.ws4b{word-spacing:-0.425071pt;}
.ws22{word-spacing:-0.371937pt;}
.ws1b{word-spacing:-0.318803pt;}
.ws7b{word-spacing:-0.265669pt;}
.wsdc{word-spacing:-0.223162pt;}
.ws25{word-spacing:-0.159402pt;}
.ws38{word-spacing:-0.106268pt;}
.ws43{word-spacing:-0.053134pt;}
.ws9c{word-spacing:-0.004201pt;}
.ws58{word-spacing:-0.004160pt;}
.ws6b{word-spacing:-0.004078pt;}
.wsb1{word-spacing:-0.004037pt;}
.wsc6{word-spacing:-0.003960pt;}
.wsd0{word-spacing:-0.003869pt;}
.ws83{word-spacing:-0.003767pt;}
.ws5e{word-spacing:-0.001007pt;}
.ws0{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.011436pt;}
.wscc{word-spacing:0.011744pt;}
.wsc2{word-spacing:0.012021pt;}
.wsad{word-spacing:0.012254pt;}
.ws67{word-spacing:0.012379pt;}
.ws54{word-spacing:0.012629pt;}
.ws98{word-spacing:0.012752pt;}
.wsa0{word-spacing:0.022431pt;}
.ws4{word-spacing:0.106268pt;}
.ws37{word-spacing:0.159402pt;}
.ws42{word-spacing:0.212535pt;}
.wse1{word-spacing:0.260355pt;}
.wsb9{word-spacing:0.318803pt;}
.ws17{word-spacing:0.340058pt;}
.ws2a{word-spacing:0.371937pt;}
.ws78{word-spacing:0.425071pt;}
.wsc0{word-spacing:0.478205pt;}
.ws34{word-spacing:0.531339pt;}
.ws24{word-spacing:0.584473pt;}
.ws7e{word-spacing:0.609622pt;}
.wsf7{word-spacing:0.632291pt;}
.ws23{word-spacing:0.637606pt;}
.ws65{word-spacing:0.690740pt;}
.wsec{word-spacing:0.706678pt;}
.wsd9{word-spacing:0.743872pt;}
.ws64{word-spacing:0.743874pt;}
.ws1f{word-spacing:0.850142pt;}
.ws20{word-spacing:0.903276pt;}
.wsbc{word-spacing:0.956410pt;}
.ws32{word-spacing:1.062677pt;}
.ws60{word-spacing:1.115811pt;}
.wse6{word-spacing:1.153002pt;}
.ws47{word-spacing:1.168945pt;}
.ws5{word-spacing:1.275213pt;}
.ws8e{word-spacing:1.328347pt;}
.wse3{word-spacing:1.338970pt;}
.wse2{word-spacing:1.376163pt;}
.ws30{word-spacing:1.381481pt;}
.wsd7{word-spacing:1.487744pt;}
.ws10{word-spacing:1.487748pt;}
.ws4d{word-spacing:1.540882pt;}
.ws1e{word-spacing:1.594016pt;}
.wsdf{word-spacing:1.599325pt;}
.ws15{word-spacing:1.647150pt;}
.wseb{word-spacing:1.673712pt;}
.ws77{word-spacing:1.700284pt;}
.ws2f{word-spacing:1.753418pt;}
.wsef{word-spacing:1.785293pt;}
.ws3e{word-spacing:1.806551pt;}
.wsf0{word-spacing:1.822486pt;}
.ws46{word-spacing:1.912819pt;}
.ws7d{word-spacing:1.965953pt;}
.wsdb{word-spacing:1.971261pt;}
.ws53{word-spacing:2.072221pt;}
.wsf3{word-spacing:2.082842pt;}
.ws48{word-spacing:2.125355pt;}
.wsf1{word-spacing:2.231616pt;}
.ws90{word-spacing:2.231622pt;}
.wsee{word-spacing:2.343197pt;}
.wsf4{word-spacing:2.380390pt;}
.wsa7{word-spacing:2.391024pt;}
.ws61{word-spacing:2.497292pt;}
.ws27{word-spacing:2.550426pt;}
.wsda{word-spacing:2.566358pt;}
.wsc{word-spacing:2.709827pt;}
.wse{word-spacing:2.816095pt;}
.ws39{word-spacing:2.869229pt;}
.wsbf{word-spacing:2.975497pt;}
.ws31{word-spacing:3.028630pt;}
.wse8{word-spacing:3.124262pt;}
.ws36{word-spacing:3.134898pt;}
.wse0{word-spacing:3.161456pt;}
.ws26{word-spacing:3.188032pt;}
.ws33{word-spacing:3.241166pt;}
.wsbd{word-spacing:3.294300pt;}
.ws45{word-spacing:3.347434pt;}
.ws2{word-spacing:3.400567pt;}
.wsa5{word-spacing:3.453701pt;}
.ws3f{word-spacing:3.506835pt;}
.wsf{word-spacing:3.666237pt;}
.ws52{word-spacing:3.719371pt;}
.ws4e{word-spacing:3.772505pt;}
.ws6{word-spacing:3.825638pt;}
.ws49{word-spacing:3.878772pt;}
.ws11{word-spacing:3.931906pt;}
.ws94{word-spacing:4.038174pt;}
.wsa6{word-spacing:4.091308pt;}
.wsf2{word-spacing:4.128490pt;}
.ws19{word-spacing:4.303843pt;}
.wsd8{word-spacing:4.314458pt;}
.ws2e{word-spacing:4.410111pt;}
.ws95{word-spacing:4.463245pt;}
.ws51{word-spacing:4.516379pt;}
.wse4{word-spacing:4.537619pt;}
.wsc3{word-spacing:4.547560pt;}
.ws62{word-spacing:4.622646pt;}
.wsae{word-spacing:4.631649pt;}
.wscb{word-spacing:4.782048pt;}
.ws99{word-spacing:4.820954pt;}
.ws4a{word-spacing:4.835182pt;}
.ws7a{word-spacing:4.941450pt;}
.ws7{word-spacing:5.207119pt;}
.ws50{word-spacing:5.260253pt;}
.ws91{word-spacing:5.313387pt;}
.ws7c{word-spacing:5.419654pt;}
.ws1d{word-spacing:5.472788pt;}
.ws4c{word-spacing:5.525922pt;}
.wsb{word-spacing:5.685324pt;}
.ws29{word-spacing:5.791591pt;}
.ws18{word-spacing:6.057261pt;}
.ws97{word-spacing:6.163529pt;}
.ws35{word-spacing:6.376064pt;}
.ws3{word-spacing:6.641733pt;}
.ws28{word-spacing:6.694867pt;}
.ws3b{word-spacing:6.854269pt;}
.ws9{word-spacing:7.013670pt;}
.ws2d{word-spacing:7.173072pt;}
.ws8d{word-spacing:7.226206pt;}
.ws5d{word-spacing:7.279340pt;}
.ws8c{word-spacing:7.438741pt;}
.wsbb{word-spacing:7.916946pt;}
.ws79{word-spacing:8.023214pt;}
.ws2b{word-spacing:8.182615pt;}
.wsb8{word-spacing:8.235749pt;}
.ws84{word-spacing:8.578905pt;}
.ws81{word-spacing:8.594494pt;}
.ws2c{word-spacing:8.713954pt;}
.wsd1{word-spacing:8.810034pt;}
.wsce{word-spacing:8.826043pt;}
.wsc7{word-spacing:9.017602pt;}
.wsc4{word-spacing:9.033988pt;}
.wsb2{word-spacing:9.192753pt;}
.wsaf{word-spacing:9.209458pt;}
.ws6d{word-spacing:9.286733pt;}
.ws69{word-spacing:9.294212pt;}
.ws59{word-spacing:9.474166pt;}
.ws56{word-spacing:9.491382pt;}
.ws3a{word-spacing:9.510962pt;}
.ws9d{word-spacing:9.566038pt;}
.ws9a{word-spacing:9.583421pt;}
.ws16{word-spacing:10.579223pt;}
.ws1{word-spacing:10.584293pt;}
.ws5c{word-spacing:14.908919pt;}
.wsab{word-spacing:15.505748pt;}
.wsba{word-spacing:16.807081pt;}
.ws44{word-spacing:17.943081pt;}
.ws4f{word-spacing:17.948414pt;}
.wsc1{word-spacing:18.273748pt;}
.ws13{word-spacing:19.128267pt;}
.wsd5{word-spacing:19.553748pt;}
.ws63{word-spacing:22.561748pt;}
.ws92{word-spacing:23.249748pt;}
.wsa{word-spacing:24.951081pt;}
.ws12{word-spacing:32.892143pt;}
.ws86{word-spacing:82.156647pt;}
.wsd3{word-spacing:84.370071pt;}
.wsc9{word-spacing:86.357862pt;}
.wsb4{word-spacing:88.035219pt;}
.ws6f{word-spacing:88.935227pt;}
.ws5b{word-spacing:90.730195pt;}
.ws9f{word-spacing:91.610012pt;}
.ws71{word-spacing:273.930418pt;}
.wsca{word-spacing:298.324477pt;}
.wsb5{word-spacing:458.590821pt;}
.wsa8{word-spacing:531.510696pt;}
.wsa9{word-spacing:641.589980pt;}
.ws5f{word-spacing:657.765252pt;}
.wsd4{word-spacing:725.788828pt;}
.ws8b{word-spacing:780.399614pt;}
._1f{margin-left:-6.968446pt;}
._20{margin-left:-5.683204pt;}
._16{margin-left:-4.569513pt;}
._2{margin-left:-3.453701pt;}
._1{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._53{width:0.924904pt;}
._42{width:3.008665pt;}
._14{width:4.456555pt;}
._17{width:5.452577pt;}
._5b{width:8.052892pt;}
._5c{width:9.404681pt;}
._a{width:11.158111pt;}
._41{width:12.358941pt;}
._b{width:13.937259pt;}
._e{width:15.196286pt;}
._3{width:16.843436pt;}
._7{width:18.044266pt;}
._5{width:19.659531pt;}
._12{width:20.562806pt;}
._5d{width:21.508455pt;}
._f{width:22.401242pt;}
._8{width:24.229043pt;}
._13{width:26.566933pt;}
._4{width:28.001548pt;}
._11{width:29.733716pt;}
._2b{width:30.690126pt;}
._9{width:31.880533pt;}
._6{width:33.421202pt;}
._d{width:34.537013pt;}
._40{width:35.440289pt;}
._15{width:36.543942pt;}
._10{width:38.309517pt;}
._2a{width:40.998096pt;}
._34{width:127.731966pt;}
._2c{width:139.839262pt;}
._5a{width:143.419209pt;}
._54{width:146.990172pt;}
._36{width:149.265656pt;}
._32{width:150.227349pt;}
._28{width:151.283502pt;}
._1c{width:154.336837pt;}
._29{width:155.777071pt;}
._58{width:156.898601pt;}
._31{width:161.372951pt;}
._35{width:165.953377pt;}
._21{width:168.883315pt;}
._2f{width:170.972307pt;}
._4e{width:173.741287pt;}
._25{width:174.687509pt;}
._1b{width:178.213204pt;}
._4a{width:179.322711pt;}
._33{width:180.395651pt;}
._2e{width:182.993122pt;}
._51{width:187.955567pt;}
._39{width:192.592477pt;}
._4d{width:196.086867pt;}
._23{width:198.091516pt;}
._4b{width:200.442293pt;}
._19{width:202.089572pt;}
._45{width:203.067747pt;}
._44{width:204.049249pt;}
._2d{width:209.193718pt;}
._52{width:211.580829pt;}
._3f{width:219.029269pt;}
._1e{width:225.297401pt;}
._59{width:226.378223pt;}
._49{width:227.538507pt;}
._50{width:232.245938pt;}
._37{width:234.619038pt;}
._46{width:236.763090pt;}
._18{width:238.668166pt;}
._4c{width:247.628934pt;}
._1d{width:249.173768pt;}
._47{width:251.401486pt;}
._30{width:254.596076pt;}
._48{width:255.833013pt;}
._4f{width:256.970171pt;}
._24{width:257.912158pt;}
._1a{width:273.050135pt;}
._43{width:279.675148pt;}
._27{width:281.316165pt;}
._26{width:304.720172pt;}
._22{width:328.124179pt;}
._3d{width:331.134529pt;}
._57{width:338.613111pt;}
._3c{width:340.733885pt;}
._3e{width:345.490322pt;}
._38{width:352.754699pt;}
._3a{width:357.511137pt;}
._3b{width:362.354055pt;}
._55{width:368.883814pt;}
._56{width:391.609567pt;}
._c{width:1019.875243pt;}
.fs5{font-size:31.880533pt;}
.fs18{font-size:37.193600pt;}
.fs3{font-size:39.318933pt;}
.fs2{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fsf{font-size:56.668899pt;}
.fs4{font-size:63.761067pt;}
.fsd{font-size:69.184719pt;}
.fs9{font-size:69.947298pt;}
.fse{font-size:70.835946pt;}
.fs17{font-size:71.048659pt;}
.fs15{font-size:72.722593pt;}
.fs13{font-size:74.135107pt;}
.fsb{font-size:74.893011pt;}
.fs7{font-size:76.404567pt;}
.fs0{font-size:76.513067pt;}
.fs11{font-size:77.145467pt;}
.fsc{font-size:86.480681pt;}
.fs8{font-size:87.433903pt;}
.fs16{font-size:88.810601pt;}
.fs14{font-size:90.903013pt;}
.fs12{font-size:92.668651pt;}
.fsa{font-size:93.616028pt;}
.fs6{font-size:95.505469pt;}
.fs10{font-size:96.431592pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:119.153333pt;}
.yd8{bottom:145.346667pt;}
.y173{bottom:159.121333pt;}
.y4b{bottom:159.833333pt;}
.y94{bottom:164.360000pt;}
.yff{bottom:164.677333pt;}
.y1b0{bottom:164.716000pt;}
.y82{bottom:168.066667pt;}
.y11a{bottom:168.362667pt;}
.y20{bottom:171.688000pt;}
.ybc{bottom:171.858667pt;}
.y159{bottom:173.518667pt;}
.y137{bottom:174.777333pt;}
.y4a{bottom:175.773333pt;}
.y6a{bottom:176.305333pt;}
.y93{bottom:180.300000pt;}
.yfe{bottom:180.617333pt;}
.y81{bottom:184.008000pt;}
.y119{bottom:184.302667pt;}
.y1af{bottom:187.297333pt;}
.ybb{bottom:187.798667pt;}
.y1f{bottom:188.165333pt;}
.y158{bottom:189.460000pt;}
.yd7{bottom:191.232301pt;}
.y49{bottom:191.714667pt;}
.y69{bottom:192.245333pt;}
.y172{bottom:193.149333pt;}
.yfd{bottom:196.557333pt;}
.y1e{bottom:197.386667pt;}
.y1ae{bottom:199.253333pt;}
.y80{bottom:199.948000pt;}
.y118{bottom:200.242667pt;}
.yba{bottom:203.738667pt;}
.y92{bottom:205.206667pt;}
.y157{bottom:205.400000pt;}
.y48{bottom:207.654667pt;}
.y68{bottom:208.185333pt;}
.yfc{bottom:212.497333pt;}
.y1d{bottom:213.864000pt;}
.y7f{bottom:215.888000pt;}
.y117{bottom:216.184000pt;}
.yd6{bottom:217.178415pt;}
.yb9{bottom:219.678667pt;}
.y136{bottom:221.283868pt;}
.y156{bottom:221.340000pt;}
.y1ad{bottom:221.834667pt;}
.y47{bottom:223.594667pt;}
.y67{bottom:224.126667pt;}
.yfb{bottom:228.437333pt;}
.y7e{bottom:231.828000pt;}
.y116{bottom:232.124000pt;}
.y1ac{bottom:233.790667pt;}
.yb8{bottom:235.620000pt;}
.y155{bottom:237.280000pt;}
.y171{bottom:239.271314pt;}
.y46{bottom:239.534667pt;}
.y66{bottom:240.066667pt;}
.y91{bottom:240.574667pt;}
.yd5{bottom:243.122359pt;}
.yfa{bottom:244.378667pt;}
.y7d{bottom:247.768000pt;}
.y115{bottom:248.064000pt;}
.y135{bottom:249.084184pt;}
.yb7{bottom:251.560000pt;}
.y154{bottom:253.220000pt;}
.y1c{bottom:254.262667pt;}
.y45{bottom:255.474667pt;}
.y65{bottom:256.006667pt;}
.y187{bottom:256.209333pt;}
.y1ab{bottom:256.372000pt;}
.y90{bottom:256.514667pt;}
.yf9{bottom:260.318667pt;}
.y7c{bottom:263.708000pt;}
.y114{bottom:264.004000pt;}
.y170{bottom:265.914227pt;}
.yb6{bottom:267.500000pt;}
.y1aa{bottom:268.326667pt;}
.yd4{bottom:269.066303pt;}
.y153{bottom:269.160000pt;}
.y1b{bottom:270.202667pt;}
.y44{bottom:271.416000pt;}
.y64{bottom:271.946667pt;}
.yf8{bottom:276.258667pt;}
.y134{bottom:276.886826pt;}
.y7b{bottom:279.649333pt;}
.y113{bottom:279.944000pt;}
.yb5{bottom:283.440000pt;}
.y152{bottom:285.101333pt;}
.y186{bottom:285.898667pt;}
.y43{bottom:287.356000pt;}
.y8f{bottom:287.820000pt;}
.y63{bottom:287.886667pt;}
.y1a9{bottom:290.909333pt;}
.yf7{bottom:292.198667pt;}
.y16f{bottom:293.446351pt;}
.yd3{bottom:295.010247pt;}
.y1a{bottom:295.109333pt;}
.yb4{bottom:299.380000pt;}
.y151{bottom:301.041333pt;}
.y1a8{bottom:302.864000pt;}
.y42{bottom:303.296000pt;}
.y62{bottom:303.826667pt;}
.y7a{bottom:304.556000pt;}
.y133{bottom:304.687142pt;}
.y112{bottom:304.850667pt;}
.yf6{bottom:308.138667pt;}
.yb3{bottom:315.320000pt;}
.y150{bottom:316.981333pt;}
.y41{bottom:319.236000pt;}
.y61{bottom:319.768000pt;}
.y16e{bottom:320.089264pt;}
.yd2{bottom:320.954191pt;}
.yf5{bottom:324.078667pt;}
.y1a7{bottom:325.446667pt;}
.y19{bottom:327.454667pt;}
.y185{bottom:330.730667pt;}
.yb2{bottom:331.261333pt;}
.y132{bottom:332.487459pt;}
.y8e{bottom:334.421677pt;}
.y40{bottom:335.176000pt;}
.y60{bottom:335.708000pt;}
.y1a6{bottom:337.401333pt;}
.yf4{bottom:340.020000pt;}
.y111{bottom:340.218667pt;}
.y14f{bottom:341.888000pt;}
.y184{bottom:346.670667pt;}
.yd1{bottom:346.898135pt;}
.yb1{bottom:347.201333pt;}
.y16d{bottom:347.619160pt;}
.y3f{bottom:351.116000pt;}
.y5f{bottom:351.648000pt;}
.yf3{bottom:355.960000pt;}
.y79{bottom:357.061333pt;}
.y1a5{bottom:359.984000pt;}
.y131{bottom:360.287775pt;}
.y8d{bottom:362.506204pt;}
.yb0{bottom:363.141333pt;}
.y3e{bottom:367.057333pt;}
.y5e{bottom:367.588000pt;}
.yf2{bottom:371.900000pt;}
.y1a4{bottom:371.938667pt;}
.yd0{bottom:372.844250pt;}
.y183{bottom:376.358667pt;}
.y14e{bottom:377.254667pt;}
.y18{bottom:378.245333pt;}
.yaf{bottom:379.081333pt;}
.y110{bottom:382.369333pt;}
.y3d{bottom:382.997333pt;}
.y5d{bottom:383.528000pt;}
.y16c{bottom:383.692000pt;}
.y1a3{bottom:383.893333pt;}
.yf1{bottom:387.840000pt;}
.y130{bottom:389.015931pt;}
.y8c{bottom:390.590730pt;}
.y14d{bottom:393.196000pt;}
.y17{bottom:394.186667pt;}
.yae{bottom:395.021333pt;}
.ycf{bottom:398.788194pt;}
.y3c{bottom:398.937333pt;}
.y5c{bottom:399.469333pt;}
.y16b{bottom:399.632000pt;}
.y78{bottom:403.045498pt;}
.yf0{bottom:403.780000pt;}
.y1a2{bottom:406.476000pt;}
.y14c{bottom:409.136000pt;}
.yad{bottom:410.961333pt;}
.y3b{bottom:414.877333pt;}
.y5b{bottom:415.409333pt;}
.y16a{bottom:415.572000pt;}
.y12f{bottom:416.816248pt;}
.y1a1{bottom:418.430667pt;}
.y8b{bottom:418.675257pt;}
.y16{bottom:419.437333pt;}
.yef{bottom:419.720000pt;}
.y182{bottom:421.190667pt;}
.yce{bottom:424.732138pt;}
.y14b{bottom:425.076000pt;}
.yac{bottom:426.902667pt;}
.y10f{bottom:429.252838pt;}
.y77{bottom:429.275405pt;}
.y1a0{bottom:430.386667pt;}
.y3a{bottom:430.817333pt;}
.y5a{bottom:431.349333pt;}
.y169{bottom:431.512000pt;}
.y15{bottom:435.378667pt;}
.yee{bottom:435.661333pt;}
.y181{bottom:437.130667pt;}
.y14a{bottom:441.016000pt;}
.yab{bottom:442.842667pt;}
.y12e{bottom:445.544404pt;}
.y39{bottom:446.757333pt;}
.y8a{bottom:446.759784pt;}
.y59{bottom:447.289333pt;}
.y168{bottom:447.452000pt;}
.ycd{bottom:450.676082pt;}
.y14{bottom:451.318667pt;}
.yed{bottom:451.601333pt;}
.y19f{bottom:452.968000pt;}
.y76{bottom:456.380740pt;}
.y149{bottom:456.956000pt;}
.y10e{bottom:458.182025pt;}
.yaa{bottom:458.782667pt;}
.y38{bottom:462.698667pt;}
.y58{bottom:463.229333pt;}
.y167{bottom:463.393333pt;}
.y19e{bottom:464.922667pt;}
.y180{bottom:466.820000pt;}
.y13{bottom:467.258667pt;}
.yec{bottom:467.541333pt;}
.y148{bottom:472.896000pt;}
.ya9{bottom:474.722667pt;}
.y89{bottom:474.846659pt;}
.ycc{bottom:476.620026pt;}
.y19d{bottom:476.878667pt;}
.y37{bottom:478.638667pt;}
.y57{bottom:479.169333pt;}
.y166{bottom:479.333333pt;}
.y12{bottom:483.198667pt;}
.yeb{bottom:483.481333pt;}
.y12d{bottom:485.149333pt;}
.y10d{bottom:487.111212pt;}
.y147{bottom:488.837333pt;}
.ya8{bottom:490.662667pt;}
.y75{bottom:491.784000pt;}
.y36{bottom:494.578667pt;}
.y11{bottom:499.138667pt;}
.yea{bottom:499.421333pt;}
.y19c{bottom:499.460000pt;}
.y12c{bottom:501.089333pt;}
.y88{bottom:502.931186pt;}
.ycb{bottom:503.429853pt;}
.y56{bottom:504.076000pt;}
.y146{bottom:504.777333pt;}
.ya7{bottom:506.602667pt;}
.y74{bottom:507.724000pt;}
.y35{bottom:510.518667pt;}
.y19b{bottom:511.416000pt;}
.y17f{bottom:511.652000pt;}
.y10{bottom:515.078667pt;}
.ye9{bottom:515.362667pt;}
.y10c{bottom:516.042819pt;}
.y12b{bottom:517.029333pt;}
.y145{bottom:520.717333pt;}
.y165{bottom:521.484000pt;}
.ya6{bottom:522.544000pt;}
.y19a{bottom:523.370667pt;}
.y34{bottom:526.458667pt;}
.y55{bottom:528.982667pt;}
.yca{bottom:529.373797pt;}
.y87{bottom:531.015712pt;}
.yf{bottom:531.020000pt;}
.ye8{bottom:531.302667pt;}
.y12a{bottom:532.969333pt;}
.y144{bottom:536.657333pt;}
.ya5{bottom:538.484000pt;}
.y73{bottom:539.029333pt;}
.y17e{bottom:541.340000pt;}
.y33{bottom:542.398667pt;}
.y10b{bottom:544.972006pt;}
.y199{bottom:545.953333pt;}
.ye{bottom:546.960000pt;}
.ye7{bottom:547.242667pt;}
.y129{bottom:548.909333pt;}
.y143{bottom:552.597333pt;}
.ya4{bottom:554.424000pt;}
.yc9{bottom:556.183624pt;}
.y198{bottom:557.908000pt;}
.y32{bottom:558.340000pt;}
.y86{bottom:559.100239pt;}
.y54{bottom:561.328000pt;}
.yd{bottom:562.900000pt;}
.ye6{bottom:563.182667pt;}
.y128{bottom:564.850667pt;}
.y164{bottom:567.467304pt;}
.y142{bottom:568.537333pt;}
.y197{bottom:569.862667pt;}
.ya3{bottom:570.364000pt;}
.y10a{bottom:573.901194pt;}
.y31{bottom:574.280000pt;}
.yc{bottom:578.840000pt;}
.ye5{bottom:579.122667pt;}
.y127{bottom:580.790667pt;}
.yc8{bottom:582.991281pt;}
.y141{bottom:584.478667pt;}
.y72{bottom:585.819406pt;}
.y17d{bottom:586.172000pt;}
.ya2{bottom:586.304000pt;}
.y85{bottom:588.122091pt;}
.y30{bottom:590.220000pt;}
.y196{bottom:592.445333pt;}
.y163{bottom:593.697211pt;}
.yb{bottom:594.780000pt;}
.ye4{bottom:595.062667pt;}
.y126{bottom:596.730667pt;}
.y140{bottom:600.418667pt;}
.y17c{bottom:602.112000pt;}
.ya1{bottom:602.245333pt;}
.y109{bottom:603.795897pt;}
.y195{bottom:604.400000pt;}
.y53{bottom:606.160000pt;}
.yc7{bottom:608.937395pt;}
.ya{bottom:610.720000pt;}
.ye3{bottom:611.004000pt;}
.y125{bottom:612.670667pt;}
.y71{bottom:614.470759pt;}
.y2f{bottom:615.126667pt;}
.y84{bottom:616.206618pt;}
.y13f{bottom:616.358667pt;}
.y17b{bottom:618.052000pt;}
.ya0{bottom:618.185333pt;}
.y162{bottom:620.802546pt;}
.y1be{bottom:621.270667pt;}
.y52{bottom:622.100000pt;}
.y9{bottom:626.661333pt;}
.ye2{bottom:626.944000pt;}
.y194{bottom:626.982667pt;}
.y124{bottom:628.610667pt;}
.y13e{bottom:632.298667pt;}
.y108{bottom:632.725084pt;}
.y1bd{bottom:633.225333pt;}
.y17a{bottom:633.992000pt;}
.y9f{bottom:634.125333pt;}
.yc6{bottom:634.881339pt;}
.y51{bottom:638.041333pt;}
.y193{bottom:638.937333pt;}
.y8{bottom:642.601333pt;}
.ye1{bottom:642.884000pt;}
.y70{bottom:643.122112pt;}
.y123{bottom:644.550667pt;}
.y83{bottom:645.228470pt;}
.y13d{bottom:648.238667pt;}
.y179{bottom:649.933333pt;}
.y9e{bottom:650.065333pt;}
.y2e{bottom:653.150667pt;}
.y50{bottom:653.981333pt;}
.y1bc{bottom:655.808000pt;}
.y161{bottom:657.404000pt;}
.y7{bottom:658.541333pt;}
.y122{bottom:660.492000pt;}
.yc5{bottom:660.825283pt;}
.y192{bottom:661.520000pt;}
.y107{bottom:662.617368pt;}
.y9d{bottom:666.005333pt;}
.y1bb{bottom:667.762667pt;}
.ye0{bottom:667.790667pt;}
.y2d{bottom:669.090667pt;}
.y4f{bottom:669.921333pt;}
.y6f{bottom:671.775862pt;}
.y13c{bottom:673.145333pt;}
.y191{bottom:673.474667pt;}
.y121{bottom:676.432000pt;}
.y178{bottom:679.621333pt;}
.y9c{bottom:681.945333pt;}
.y6{bottom:682.452000pt;}
.y2c{bottom:685.030667pt;}
.y4e{bottom:685.861333pt;}
.yc4{bottom:686.769227pt;}
.y1ba{bottom:690.344000pt;}
.y106{bottom:692.512071pt;}
.y190{bottom:696.056000pt;}
.y9b{bottom:697.886667pt;}
.y6e{bottom:700.427215pt;}
.y2b{bottom:700.970667pt;}
.y4d{bottom:701.801333pt;}
.y1b9{bottom:702.300000pt;}
.y160{bottom:703.733718pt;}
.y18f{bottom:708.012000pt;}
.yc3{bottom:712.713171pt;}
.y9a{bottom:713.826667pt;}
.y2a{bottom:716.912000pt;}
.y120{bottom:718.582667pt;}
.ydf{bottom:721.398667pt;}
.y105{bottom:721.441258pt;}
.y1b8{bottom:724.881333pt;}
.y13b{bottom:725.650667pt;}
.y4c{bottom:726.708000pt;}
.y99{bottom:729.766667pt;}
.y6d{bottom:730.034811pt;}
.y18e{bottom:730.593333pt;}
.y15f{bottom:731.006629pt;}
.y29{bottom:732.852000pt;}
.y1b7{bottom:736.837333pt;}
.yc2{bottom:738.659285pt;}
.y177{bottom:741.592000pt;}
.y18d{bottom:742.549333pt;}
.y28{bottom:748.792000pt;}
.y104{bottom:750.370445pt;}
.y15e{bottom:758.277259pt;}
.y6c{bottom:758.686164pt;}
.y11f{bottom:764.566113pt;}
.yc1{bottom:764.603229pt;}
.y27{bottom:764.732000pt;}
.y18c{bottom:765.130667pt;}
.yde{bottom:765.721597pt;}
.y1b6{bottom:771.373333pt;}
.y5{bottom:771.374667pt;}
.y13a{bottom:771.633970pt;}
.y98{bottom:771.917333pt;}
.y18b{bottom:777.085333pt;}
.y103{bottom:779.302052pt;}
.y26{bottom:780.672000pt;}
.y1b5{bottom:783.329333pt;}
.y15d{bottom:785.547889pt;}
.ydd{bottom:786.973945pt;}
.y176{bottom:787.576164pt;}
.y6b{bottom:788.291364pt;}
.yc0{bottom:790.547173pt;}
.y11e{bottom:790.796020pt;}
.y4{bottom:791.964000pt;}
.y1b4{bottom:795.284000pt;}
.y25{bottom:796.612000pt;}
.y139{bottom:797.866072pt;}
.y18a{bottom:799.668000pt;}
.ydc{bottom:808.931979pt;}
.y102{bottom:809.194336pt;}
.y189{bottom:811.622667pt;}
.y3{bottom:812.553333pt;}
.y15c{bottom:813.728681pt;}
.y175{bottom:813.806072pt;}
.ybf{bottom:817.357001pt;}
.y1b3{bottom:817.866667pt;}
.y97{bottom:817.900637pt;}
.y11d{bottom:817.901355pt;}
.y138{bottom:824.969213pt;}
.y24{bottom:828.493333pt;}
.y1b2{bottom:829.821333pt;}
.ydb{bottom:830.182550pt;}
.y101{bottom:838.123523pt;}
.y188{bottom:838.654667pt;}
.y174{bottom:840.909213pt;}
.y15b{bottom:840.999311pt;}
.ybe{bottom:843.300945pt;}
.y96{bottom:844.130545pt;}
.y11c{bottom:844.131263pt;}
.y23{bottom:844.433333pt;}
.yda{bottom:851.434897pt;}
.y2{bottom:852.404000pt;}
.y22{bottom:860.373333pt;}
.y1b1{bottom:864.358667pt;}
.y100{bottom:868.018227pt;}
.y15a{bottom:869.177822pt;}
.ybd{bottom:870.108602pt;}
.y95{bottom:871.235879pt;}
.y11b{bottom:871.236598pt;}
.yd9{bottom:873.392931pt;}
.y1{bottom:876.313333pt;}
.ha{height:21.933807pt;}
.h8{height:22.922103pt;}
.h1c{height:25.589197pt;}
.h1f{height:25.770530pt;}
.h1d{height:25.775863pt;}
.h1e{height:28.118362pt;}
.h3{height:29.159939pt;}
.h9{height:29.244954pt;}
.h2{height:36.556100pt;}
.h4{height:36.768636pt;}
.hc{height:36.822767pt;}
.hd{height:36.874903pt;}
.hf{height:37.299379pt;}
.h19{height:37.304713pt;}
.hb{height:40.169203pt;}
.h7{height:44.122658pt;}
.h5{height:46.258122pt;}
.h16{height:46.263455pt;}
.h14{height:48.735131pt;}
.h1{height:52.640990pt;}
.h6{height:52.947042pt;}
.h15{height:53.551975pt;}
.h12{height:59.498709pt;}
.h10{height:60.154525pt;}
.h1b{height:61.101694pt;}
.h1a{height:62.541273pt;}
.h18{height:63.756032pt;}
.h11{height:64.407827pt;}
.h13{height:65.379395pt;}
.he{height:65.707762pt;}
.h17{height:66.344935pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x19{left:182.785202pt;}
.xe{left:184.327264pt;}
.x7{left:190.262667pt;}
.x9{left:192.837333pt;}
.x8{left:197.486667pt;}
.xd{left:199.250892pt;}
.x1{left:202.904000pt;}
.x25{left:207.129333pt;}
.x21{left:210.390914pt;}
.x18{left:212.994831pt;}
.x15{left:220.744378pt;}
.x23{left:224.839244pt;}
.x11{left:227.354320pt;}
.xc{left:228.343220pt;}
.x1b{left:229.273187pt;}
.x14{left:232.368000pt;}
.x10{left:234.434667pt;}
.x1d{left:235.417333pt;}
.x2{left:236.990667pt;}
.x20{left:238.081268pt;}
.x17{left:239.338080pt;}
.x13{left:247.393333pt;}
.xf{left:249.460000pt;}
.x1c{left:250.444000pt;}
.x4{left:260.504000pt;}
.x5{left:273.336000pt;}
.xa{left:330.592000pt;}
.x3{left:360.866667pt;}
.x24{left:378.626015pt;}
.x27{left:382.593333pt;}
.x1e{left:385.263310pt;}
.x1a{left:395.015288pt;}
.x12{left:399.526210pt;}
.x1f{left:400.857333pt;}
.xb{left:404.177333pt;}
.x22{left:414.910376pt;}
.x16{left:425.691770pt;}
.x28{left:429.054667pt;}
.x26{left:545.597333pt;}
}




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