
    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_298105a62e0b98043ebd73b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_0453c667ac2af516f9e1bdfc.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_1c400bc2dfe03be23849d725.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a18121dc39c89cca2a0986fa.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_61bebd02220bf4064620cfc4.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_010bef034403a5254c131b7e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_359eca7770eca9e97b0b6e9a.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_9e8b2c23ca9443b50f4f031d.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_946ebd2ac36a8f179e0b229b.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;}
.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.702000px;}
.ls4{letter-spacing:0.000000px;}
.ls5b{letter-spacing:2.538250px;}
.ls2c{letter-spacing:2.542796px;}
.ls58{letter-spacing:2.549616px;}
.ls29{letter-spacing:2.554182px;}
.ls57{letter-spacing:2.569221px;}
.ls59{letter-spacing:2.570171px;}
.ls5a{letter-spacing:2.571307px;}
.ls28{letter-spacing:2.573822px;}
.ls2a{letter-spacing:2.574774px;}
.ls2b{letter-spacing:2.575911px;}
.ls32{letter-spacing:2.952573px;}
.ls31{letter-spacing:2.975617px;}
.ls3{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.990611px;}
.ls5e{letter-spacing:3.119110px;}
.ls5d{letter-spacing:3.143453px;}
.ls72{letter-spacing:4.709668px;}
.ls6f{letter-spacing:4.730758px;}
.ls6e{letter-spacing:4.767134px;}
.ls70{letter-spacing:4.768897px;}
.ls71{letter-spacing:4.771004px;}
.ls53{letter-spacing:4.837731px;}
.ls52{letter-spacing:4.875487px;}
.ls49{letter-spacing:4.876630px;}
.ls10{letter-spacing:4.878824px;}
.ls25{letter-spacing:4.880363px;}
.ls22{letter-spacing:4.902217px;}
.ls48{letter-spacing:4.914690px;}
.lsf{letter-spacing:4.916901px;}
.ls21{letter-spacing:4.939911px;}
.ls23{letter-spacing:4.941739px;}
.ls24{letter-spacing:4.943921px;}
.ls3d{letter-spacing:5.068689px;}
.lsa{letter-spacing:5.077326px;}
.ls3a{letter-spacing:5.081058px;}
.ls4e{letter-spacing:5.082088px;}
.ls6{letter-spacing:5.089716px;}
.ls4b{letter-spacing:5.094489px;}
.ls3c{letter-spacing:5.114001px;}
.ls43{letter-spacing:5.114784px;}
.ls39{letter-spacing:5.120128px;}
.ls3b{letter-spacing:5.122022px;}
.ls9{letter-spacing:5.122715px;}
.ls4d{letter-spacing:5.127519px;}
.ls5{letter-spacing:5.128852px;}
.ls7{letter-spacing:5.130749px;}
.ls4a{letter-spacing:5.133662px;}
.ls4c{letter-spacing:5.135561px;}
.ls40{letter-spacing:5.137687px;}
.ls8{letter-spacing:5.139152px;}
.ls74{letter-spacing:5.144303px;}
.ls75{letter-spacing:5.150303px;}
.ls3f{letter-spacing:5.177192px;}
.ls41{letter-spacing:5.179107px;}
.ls42{letter-spacing:5.181395px;}
.ls1f{letter-spacing:5.270757px;}
.ls37{letter-spacing:5.271163px;}
.ls1c{letter-spacing:5.283619px;}
.ls63{letter-spacing:5.285249px;}
.ls69{letter-spacing:5.286107px;}
.ls34{letter-spacing:5.294767px;}
.ls60{letter-spacing:5.298147px;}
.ls66{letter-spacing:5.299006px;}
.ls16{letter-spacing:5.302007px;}
.ls1e{letter-spacing:5.317875px;}
.ls1b{letter-spacing:5.324246px;}
.ls12{letter-spacing:5.325750px;}
.ls1d{letter-spacing:5.326215px;}
.ls62{letter-spacing:5.332497px;}
.ls68{letter-spacing:5.333363px;}
.ls33{letter-spacing:5.335479px;}
.ls35{letter-spacing:5.337453px;}
.ls5f{letter-spacing:5.338885px;}
.ls65{letter-spacing:5.339752px;}
.ls36{letter-spacing:5.339810px;}
.ls61{letter-spacing:5.340860px;}
.ls67{letter-spacing:5.341727px;}
.ls14{letter-spacing:5.366700px;}
.ls13{letter-spacing:5.368686px;}
.ls15{letter-spacing:5.371057px;}
.ls11{letter-spacing:5.377478px;}
.ls1{letter-spacing:7.353196px;}
.ls46{letter-spacing:9.912538px;}
.ls50{letter-spacing:9.918538px;}
.ls6c{letter-spacing:10.104538px;}
.ls51{letter-spacing:11.304538px;}
.ls47{letter-spacing:11.310538px;}
.ls45{letter-spacing:11.356200px;}
.ls6d{letter-spacing:11.514538px;}
.ls6b{letter-spacing:11.566200px;}
.ls19{letter-spacing:13.194538px;}
.lsd{letter-spacing:13.236538px;}
.ls55{letter-spacing:14.124538px;}
.ls2f{letter-spacing:14.166538px;}
.ls1a{letter-spacing:14.850538px;}
.ls27{letter-spacing:14.892538px;}
.lse{letter-spacing:14.898538px;}
.ls18{letter-spacing:14.902200px;}
.lsc{letter-spacing:14.944200px;}
.ls5c{letter-spacing:15.382274px;}
.ls2d{letter-spacing:15.404652px;}
.ls56{letter-spacing:16.506538px;}
.ls54{letter-spacing:16.552200px;}
.ls30{letter-spacing:16.578538px;}
.ls2e{letter-spacing:16.624200px;}
.ls0{letter-spacing:22.269196px;}
.ls73{letter-spacing:28.531902px;}
.ls26{letter-spacing:29.575917px;}
.ls3e{letter-spacing:30.654897px;}
.lsb{letter-spacing:30.707129px;}
.ls4f{letter-spacing:30.735928px;}
.ls44{letter-spacing:30.986154px;}
.ls20{letter-spacing:31.876979px;}
.ls38{letter-spacing:31.933522px;}
.ls64{letter-spacing:31.964629px;}
.ls6a{letter-spacing:31.969816px;}
.ls17{letter-spacing:32.120385px;}
.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;}
}
.ws70{word-spacing:-32.212114px;}
.ws11e{word-spacing:-32.050362px;}
.ws112{word-spacing:-32.045161px;}
.wsb7{word-spacing:-32.024718px;}
.ws81{word-spacing:-31.957291px;}
.wsd8{word-spacing:-31.074645px;}
.wsef{word-spacing:-30.813365px;}
.ws5a{word-spacing:-30.784494px;}
.wsca{word-spacing:-30.732130px;}
.ws91{word-spacing:-29.650431px;}
.ws12b{word-spacing:-28.613384px;}
.ws131{word-spacing:-21.519300px;}
.wsa6{word-spacing:-15.448645px;}
.ws107{word-spacing:-15.421029px;}
.wse{word-spacing:-14.943900px;}
.ws6c{word-spacing:-5.368686px;}
.ws10d{word-spacing:-5.344045px;}
.ws11b{word-spacing:-5.341727px;}
.ws10f{word-spacing:-5.340860px;}
.wsb3{word-spacing:-5.337453px;}
.ws7c{word-spacing:-5.328781px;}
.ws7e{word-spacing:-5.326215px;}
.wsd6{word-spacing:-5.186462px;}
.wsd4{word-spacing:-5.179107px;}
.wsd2{word-spacing:-5.176065px;}
.wsed{word-spacing:-5.139934px;}
.wseb{word-spacing:-5.135561px;}
.ws57{word-spacing:-5.130749px;}
.wse9{word-spacing:-5.129625px;}
.ws55{word-spacing:-5.126378px;}
.wsc8{word-spacing:-5.125797px;}
.wsc6{word-spacing:-5.122022px;}
.wsc4{word-spacing:-5.115515px;}
.ws8e{word-spacing:-4.941739px;}
.ws8c{word-spacing:-4.941643px;}
.ws129{word-spacing:-4.775394px;}
.ws127{word-spacing:-4.768897px;}
.ws125{word-spacing:-4.765820px;}
.wsbf{word-spacing:-3.586536px;}
.ws19{word-spacing:-3.466985px;}
.ws123{word-spacing:-3.407209px;}
.wsf3{word-spacing:-3.227882px;}
.ws7a{word-spacing:-3.168107px;}
.ws3a{word-spacing:-3.048556px;}
.wse0{word-spacing:-2.929004px;}
.ws9e{word-spacing:-2.869229px;}
.ws96{word-spacing:-2.809453px;}
.ws130{word-spacing:-2.749678px;}
.ws78{word-spacing:-2.689902px;}
.wsba{word-spacing:-2.630126px;}
.wsa4{word-spacing:-2.577092px;}
.wsa2{word-spacing:-2.574774px;}
.wsa0{word-spacing:-2.571923px;}
.ws63{word-spacing:-2.570351px;}
.ws103{word-spacing:-2.570171px;}
.ws3d{word-spacing:-2.450800px;}
.ws159{word-spacing:-2.426882px;}
.ws143{word-spacing:-2.385040px;}
.ws145{word-spacing:-2.175826px;}
.wsc2{word-spacing:-2.151922px;}
.ws85{word-spacing:-2.092146px;}
.ws3{word-spacing:-1.972595px;}
.wsc{word-spacing:-1.912819px;}
.ws73{word-spacing:-1.853044px;}
.ws15{word-spacing:-1.733492px;}
.wsc0{word-spacing:-1.613941px;}
.ws11{word-spacing:-1.494390px;}
.wsf7{word-spacing:-1.434614px;}
.ws9d{word-spacing:-1.374839px;}
.ws7{word-spacing:-1.315063px;}
.ws6{word-spacing:-1.255288px;}
.ws67{word-spacing:-1.135736px;}
.ws8a{word-spacing:-1.075961px;}
.ws116{word-spacing:-1.016185px;}
.ws68{word-spacing:-0.956410px;}
.ws26{word-spacing:-0.896634px;}
.ws48{word-spacing:-0.836858px;}
.ws142{word-spacing:-0.836856px;}
.ws1c{word-spacing:-0.597756px;}
.ws3c{word-spacing:-0.537980px;}
.ws134{word-spacing:-0.460271px;}
.wsf9{word-spacing:-0.358654px;}
.ws99{word-spacing:-0.298878px;}
.ws23{word-spacing:-0.239102px;}
.ws156{word-spacing:-0.209214px;}
.ws95{word-spacing:-0.179327px;}
.ws20{word-spacing:-0.119551px;}
.ws149{word-spacing:-0.083686px;}
.wsd{word-spacing:-0.059776px;}
.wsdd{word-spacing:-0.044234px;}
.ws58{word-spacing:-0.014770px;}
.ws6d{word-spacing:-0.004678px;}
.ws110{word-spacing:-0.004653px;}
.wsb4{word-spacing:-0.004650px;}
.ws7f{word-spacing:-0.004641px;}
.wsd5{word-spacing:-0.004512px;}
.wsec{word-spacing:-0.004474px;}
.wsc7{word-spacing:-0.004463px;}
.ws8f{word-spacing:-0.004306px;}
.ws128{word-spacing:-0.004155px;}
.wsa3{word-spacing:-0.002243px;}
.ws104{word-spacing:-0.002239px;}
.ws5e{word-spacing:-0.001133px;}
.ws0{word-spacing:0.000000px;}
.ws100{word-spacing:0.006797px;}
.ws9f{word-spacing:0.006809px;}
.ws124{word-spacing:0.012612px;}
.ws8b{word-spacing:0.013069px;}
.wsc3{word-spacing:0.013546px;}
.ws54{word-spacing:0.013569px;}
.wse8{word-spacing:0.013582px;}
.wsd1{word-spacing:0.013697px;}
.ws7b{word-spacing:0.014086px;}
.wsb0{word-spacing:0.014116px;}
.ws10c{word-spacing:0.014125px;}
.ws118{word-spacing:0.014127px;}
.ws69{word-spacing:0.014199px;}
.ws154{word-spacing:0.083686px;}
.ws36{word-spacing:0.119551px;}
.ws10b{word-spacing:0.179327px;}
.ws2{word-spacing:0.239102px;}
.ws153{word-spacing:0.251057px;}
.ws14{word-spacing:0.298878px;}
.ws43{word-spacing:0.358654px;}
.ws141{word-spacing:0.376585px;}
.ws64{word-spacing:0.418429px;}
.ws15b{word-spacing:0.585799px;}
.ws133{word-spacing:0.627642px;}
.ws12f{word-spacing:0.657532px;}
.ws14a{word-spacing:0.669485px;}
.ws146{word-spacing:0.711328px;}
.ws9a{word-spacing:0.717307px;}
.ws74{word-spacing:0.777083px;}
.ws135{word-spacing:0.795013px;}
.ws32{word-spacing:0.836858px;}
.ws136{word-spacing:0.878699px;}
.ws46{word-spacing:0.896634px;}
.wscf{word-spacing:0.956410px;}
.ws1d{word-spacing:1.016185px;}
.ws40{word-spacing:1.075961px;}
.ws79{word-spacing:1.135736px;}
.ws18{word-spacing:1.147694px;}
.ws155{word-spacing:1.255284px;}
.ws31{word-spacing:1.255288px;}
.ws16{word-spacing:1.315063px;}
.ws29{word-spacing:1.374839px;}
.ws151{word-spacing:1.422655px;}
.ws10{word-spacing:1.434614px;}
.wsad{word-spacing:1.494390px;}
.ws152{word-spacing:1.548184px;}
.ws53{word-spacing:1.554166px;}
.ws13c{word-spacing:1.590026px;}
.wsfb{word-spacing:1.600926px;}
.wsfc{word-spacing:1.613941px;}
.ws13d{word-spacing:1.631869px;}
.ws15c{word-spacing:1.673712px;}
.ws3e{word-spacing:1.673717px;}
.ws49{word-spacing:1.733492px;}
.ws150{word-spacing:1.757398px;}
.wsae{word-spacing:1.793268px;}
.ws93{word-spacing:1.853044px;}
.ws72{word-spacing:1.912819px;}
.ws62{word-spacing:1.972595px;}
.ws14c{word-spacing:2.008454px;}
.ws38{word-spacing:2.032370px;}
.ws157{word-spacing:2.092140px;}
.ws25{word-spacing:2.151922px;}
.ws14b{word-spacing:2.175826px;}
.wsd0{word-spacing:2.211697px;}
.ws41{word-spacing:2.271473px;}
.wsa{word-spacing:2.331248px;}
.ws132{word-spacing:2.385040px;}
.ws14f{word-spacing:2.426882px;}
.ws121{word-spacing:2.450800px;}
.ws14e{word-spacing:2.468725px;}
.ws1f{word-spacing:2.510575px;}
.ws147{word-spacing:2.552411px;}
.ws101{word-spacing:2.566241px;}
.wsf5{word-spacing:2.570351px;}
.ws105{word-spacing:2.571400px;}
.ws1b{word-spacing:2.630126px;}
.ws52{word-spacing:2.689902px;}
.ws77{word-spacing:2.749678px;}
.ws139{word-spacing:2.803468px;}
.wscd{word-spacing:2.929004px;}
.ws14d{word-spacing:2.970839px;}
.wsbe{word-spacing:2.988780px;}
.ws4c{word-spacing:3.048556px;}
.wsf2{word-spacing:3.108331px;}
.ws140{word-spacing:3.138210px;}
.ws37{word-spacing:3.168107px;}
.ws13b{word-spacing:3.180053px;}
.ws13f{word-spacing:3.221896px;}
.ws1a{word-spacing:3.227882px;}
.wsa8{word-spacing:3.287658px;}
.ws4a{word-spacing:3.347434px;}
.ws22{word-spacing:3.407209px;}
.ws1e{word-spacing:3.466985px;}
.ws137{word-spacing:3.472952px;}
.ws144{word-spacing:3.514795px;}
.ws9b{word-spacing:3.526760px;}
.ws2d{word-spacing:3.586536px;}
.ws28{word-spacing:3.646312px;}
.ws15f{word-spacing:3.765852px;}
.ws27{word-spacing:3.765863px;}
.wsb{word-spacing:3.825638px;}
.ws65{word-spacing:3.885414px;}
.ws39{word-spacing:3.945190px;}
.wse4{word-spacing:4.004965px;}
.ws97{word-spacing:4.064741px;}
.ws30{word-spacing:4.124516px;}
.ws15d{word-spacing:4.184280px;}
.ws33{word-spacing:4.244068px;}
.ws4d{word-spacing:4.303843px;}
.ws21{word-spacing:4.423394px;}
.wsbb{word-spacing:4.483170px;}
.ws13a{word-spacing:4.519022px;}
.wsf8{word-spacing:4.542946px;}
.ws45{word-spacing:4.602721px;}
.ws15a{word-spacing:4.644551px;}
.ws98{word-spacing:4.662497px;}
.wsbd{word-spacing:4.722272px;}
.ws4{word-spacing:4.782048px;}
.ws138{word-spacing:4.811922px;}
.ws34{word-spacing:4.841824px;}
.ws148{word-spacing:4.853765px;}
.wsce{word-spacing:4.901599px;}
.ws2e{word-spacing:4.961375px;}
.wse2{word-spacing:5.021150px;}
.ws24{word-spacing:5.080926px;}
.ws106{word-spacing:5.099233px;}
.wsa5{word-spacing:5.108365px;}
.ws102{word-spacing:5.108499px;}
.wsa1{word-spacing:5.117648px;}
.ws2c{word-spacing:5.140702px;}
.wsf{word-spacing:5.200477px;}
.ws42{word-spacing:5.260253px;}
.wsb5{word-spacing:5.329567px;}
.ws11c{word-spacing:5.338141px;}
.wsb1{word-spacing:5.340282px;}
.ws119{word-spacing:5.348865px;}
.ws6a{word-spacing:5.362172px;}
.ws6e{word-spacing:5.372949px;}
.wse6{word-spacing:5.379804px;}
.ws47{word-spacing:5.439580px;}
.wse1{word-spacing:5.559131px;}
.wsf6{word-spacing:5.618906px;}
.ws86{word-spacing:5.738458px;}
.ws158{word-spacing:5.816149px;}
.ws51{word-spacing:5.917784px;}
.ws66{word-spacing:5.977560px;}
.ws3f{word-spacing:6.037336px;}
.ws44{word-spacing:6.097111px;}
.ws9c{word-spacing:6.156887px;}
.wsaf{word-spacing:6.276438px;}
.wsfa{word-spacing:6.336214px;}
.ws35{word-spacing:6.455765px;}
.ws5{word-spacing:6.515540px;}
.ws15e{word-spacing:6.569320px;}
.ws4e{word-spacing:6.635092px;}
.wsab{word-spacing:6.754643px;}
.ws87{word-spacing:6.993745px;}
.wsac{word-spacing:7.053521px;}
.ws2b{word-spacing:7.232848px;}
.ws122{word-spacing:7.292623px;}
.ws13e{word-spacing:7.406176px;}
.ws2a{word-spacing:7.471950px;}
.ws8{word-spacing:7.531726px;}
.wsfe{word-spacing:7.591501px;}
.wsfd{word-spacing:7.651277px;}
.wse7{word-spacing:7.711052px;}
.ws88{word-spacing:8.009930px;}
.wse5{word-spacing:8.129482px;}
.ws5d{word-spacing:8.189257px;}
.ws60{word-spacing:8.249033px;}
.ws84{word-spacing:8.428360px;}
.ws61{word-spacing:8.547911px;}
.ws94{word-spacing:8.607686px;}
.wsdb{word-spacing:8.667462px;}
.ws4b{word-spacing:8.906564px;}
.ws4f{word-spacing:9.324994px;}
.ws12a{word-spacing:9.461516px;}
.ws126{word-spacing:9.478709px;}
.ws2f{word-spacing:9.564096px;}
.wsdf{word-spacing:9.743423px;}
.wsdc{word-spacing:9.803198px;}
.ws90{word-spacing:9.804434px;}
.ws8d{word-spacing:9.822250px;}
.wsc9{word-spacing:10.162117px;}
.wsc5{word-spacing:10.170300px;}
.ws59{word-spacing:10.179431px;}
.ws56{word-spacing:10.187629px;}
.wsee{word-spacing:10.188978px;}
.wsea{word-spacing:10.197184px;}
.wsd7{word-spacing:10.275375px;}
.wsd3{word-spacing:10.294047px;}
.ws80{word-spacing:10.567237px;}
.ws7d{word-spacing:10.586440px;}
.wsb6{word-spacing:10.589533px;}
.ws111{word-spacing:10.596293px;}
.ws11d{word-spacing:10.598013px;}
.ws11a{word-spacing:10.606548px;}
.wsb2{word-spacing:10.608776px;}
.ws10e{word-spacing:10.615549px;}
.ws6f{word-spacing:10.651499px;}
.ws6b{word-spacing:10.670855px;}
.ws17{word-spacing:11.901626px;}
.ws1{word-spacing:11.907329px;}
.wsde{word-spacing:16.653750px;}
.ws5c{word-spacing:16.772534px;}
.ws114{word-spacing:16.778534px;}
.ws3b{word-spacing:20.185966px;}
.ws75{word-spacing:20.191966px;}
.ws12e{word-spacing:20.881966px;}
.ws117{word-spacing:21.073966px;}
.wsbc{word-spacing:21.235966px;}
.wsf4{word-spacing:21.343966px;}
.ws13{word-spacing:21.519300px;}
.wsc1{word-spacing:22.171966px;}
.wsff{word-spacing:22.867966px;}
.wse3{word-spacing:25.219966px;}
.ws50{word-spacing:25.627966px;}
.ws9{word-spacing:27.745966px;}
.ws89{word-spacing:28.183966px;}
.ws12{word-spacing:37.003661px;}
.ws108{word-spacing:48.833258px;}
.wsa7{word-spacing:48.920710px;}
.wsaa{word-spacing:56.551155px;}
.ws109{word-spacing:59.740870px;}
.ws12c{word-spacing:90.609050px;}
.wsf1{word-spacing:92.657918px;}
.wsda{word-spacing:93.402962px;}
.ws76{word-spacing:93.444984px;}
.ws92{word-spacing:93.893032px;}
.wscb{word-spacing:97.318413px;}
.ws5b{word-spacing:97.484230px;}
.wsf0{word-spacing:97.575657px;}
.wsd9{word-spacing:98.403041px;}
.ws82{word-spacing:101.198088px;}
.wsb8{word-spacing:101.411607px;}
.ws113{word-spacing:101.476344px;}
.ws11f{word-spacing:101.492812px;}
.ws71{word-spacing:102.005029px;}
.ws10a{word-spacing:202.930304px;}
.wsa9{word-spacing:235.133748px;}
.wscc{word-spacing:307.384815px;}
.ws115{word-spacing:356.566385px;}
.ws12d{word-spacing:372.993030px;}
.wsb9{word-spacing:607.982573px;}
.ws120{word-spacing:618.900882px;}
.ws83{word-spacing:733.690667px;}
.ws5f{word-spacing:744.608976px;}
._6c{margin-left:-11.858634px;}
._1e{margin-left:-7.875372px;}
._9{margin-left:-6.670962px;}
._a{margin-left:-4.901599px;}
._2{margin-left:-3.849544px;}
._1{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._37{width:1.977432px;}
._30{width:4.163809px;}
._18{width:5.231583px;}
._78{width:9.169474px;}
._77{width:11.142167px;}
._4e{width:12.373549px;}
._8{width:14.047265px;}
._d{width:15.679416px;}
._76{width:16.856719px;}
._3{width:17.872904px;}
._10{width:19.606397px;}
._12{width:21.339889px;}
._c{width:22.475626px;}
._17{width:23.611362px;}
._13{width:24.926425px;}
._11{width:26.062162px;}
._f{width:27.078347px;}
._7{width:29.110717px;}
._1f{width:31.023536px;}
._4{width:32.159273px;}
._14{width:34.084057px;}
._b{width:35.865600px;}
._5{width:38.232479px;}
._6{width:40.350431px;}
._5d{width:41.783144px;}
._16{width:43.038600px;}
._36{width:44.628468px;}
._15{width:47.222724px;}
._46{width:63.853033px;}
._47{width:75.236269px;}
._43{width:76.726904px;}
._64{width:82.194120px;}
._38{width:83.268197px;}
._63{width:86.688033px;}
._3d{width:89.600775px;}
._42{width:96.090573px;}
._62{width:98.547828px;}
._45{width:101.806572px;}
._3b{width:108.964444px;}
._48{width:112.567761px;}
._40{width:114.680443px;}
._49{width:118.232264px;}
._44{width:121.838315px;}
._61{width:124.544796px;}
._3c{width:127.554314px;}
._3a{width:134.712186px;}
._3e{width:140.428185px;}
._41{width:147.586057px;}
._60{width:150.246511px;}
._1c{width:151.562324px;}
._3f{width:153.302056px;}
._28{width:158.483603px;}
._34{width:160.665197px;}
._19{width:165.928421px;}
._5a{width:167.388752px;}
._5b{width:169.253231px;}
._68{width:172.582576px;}
._20{width:173.623297px;}
._75{width:174.702705px;}
._72{width:177.441555px;}
._65{width:180.841526px;}
._55{width:183.754731px;}
._32{width:185.373890px;}
._6f{width:187.226911px;}
._1b{width:191.479551px;}
._58{width:193.284289px;}
._5c{width:195.148768px;}
._2e{width:198.774350px;}
._22{width:200.359352px;}
._70{width:201.819737px;}
._23{width:212.277834px;}
._6e{width:215.408411px;}
._53{width:216.763959px;}
._51{width:218.282187px;}
._56{width:220.077466px;}
._74{width:222.993641px;}
._2c{width:225.405426px;}
._6b{width:231.296777px;}
._4f{width:232.949548px;}
._26{width:239.121263px;}
._67{width:240.872795px;}
._50{width:242.374068px;}
._54{width:243.833317px;}
._73{width:245.407459px;}
._57{width:246.939842px;}
._31{width:251.929830px;}
._4d{width:253.199912px;}
._2a{width:257.052673px;}
._33{width:261.853446px;}
._2b{width:266.204234px;}
._6a{width:267.577096px;}
._27{width:268.971155px;}
._59{width:272.835379px;}
._4a{width:279.887177px;}
._24{width:289.801656px;}
._52{width:294.786812px;}
._6d{width:296.038642px;}
._5e{width:297.039408px;}
._66{width:300.156343px;}
._4c{width:305.080988px;}
._35{width:311.270831px;}
._71{width:316.940919px;}
._1a{width:322.621495px;}
._2f{width:331.184060px;}
._69{width:344.699117px;}
._21{width:355.514370px;}
._1d{width:365.411941px;}
._2d{width:384.446211px;}
._4b{width:385.732941px;}
._29{width:400.181835px;}
._25{width:433.038192px;}
._5f{width:568.423048px;}
._39{width:582.000592px;}
._e{width:1105.899188px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs21{font-size:41.122847px;}
.fs11{font-size:41.196490px;}
.fs2a{font-size:41.842800px;}
.fs3{font-size:44.233800px;}
.fs13{font-size:47.622145px;}
.fs2{font-size:47.820600px;}
.fs23{font-size:50.308228px;}
.fs20{font-size:51.403429px;}
.fs10{font-size:51.495484px;}
.fs12{font-size:59.527531px;}
.fs1{font-size:59.775600px;}
.fs22{font-size:62.885127px;}
.fs4{font-size:71.731200px;}
.fs29{font-size:76.302549px;}
.fs1f{font-size:78.027917px;}
.fs1b{font-size:78.655323px;}
.fs9{font-size:78.690710px;}
.fsf{font-size:79.068015px;}
.fs17{font-size:81.952553px;}
.fs7{font-size:82.092189px;}
.fs1d{font-size:82.169181px;}
.fs19{font-size:82.865927px;}
.fsd{font-size:85.219657px;}
.fs15{font-size:85.399462px;}
.fs25{font-size:85.453978px;}
.fs27{font-size:85.467846px;}
.fsb{font-size:85.899187px;}
.fs0{font-size:86.077200px;}
.fs28{font-size:95.377947px;}
.fs1e{font-size:97.534651px;}
.fs1a{font-size:98.318907px;}
.fs8{font-size:98.363141px;}
.fse{font-size:98.834770px;}
.fs16{font-size:102.440435px;}
.fs6{font-size:102.614979px;}
.fs1c{font-size:102.711218px;}
.fs18{font-size:103.582148px;}
.fsc{font-size:106.524303px;}
.fs14{font-size:106.749060px;}
.fs24{font-size:106.817204px;}
.fs26{font-size:106.834539px;}
.fsa{font-size:107.373715px;}
.y0{bottom:0.000000px;}
.y22{bottom:134.047500px;}
.y21{bottom:178.879500px;}
.y4c{bottom:179.812500px;}
.y12a{bottom:180.291000px;}
.yd6{bottom:181.036500px;}
.yf3{bottom:181.527000px;}
.y164{bottom:182.802000px;}
.y72{bottom:188.256000px;}
.y151{bottom:189.739500px;}
.y86{bottom:190.648500px;}
.y22e{bottom:192.328500px;}
.y201{bottom:193.972500px;}
.y18c{bottom:194.325000px;}
.y9a{bottom:196.812000px;}
.y20{bottom:197.415000px;}
.y4b{bottom:197.745000px;}
.y129{bottom:198.223500px;}
.y163{bottom:200.734500px;}
.y22d{bottom:205.779000px;}
.y71{bottom:206.190000px;}
.y200{bottom:207.423000px;}
.y150{bottom:207.673500px;}
.y1f{bottom:207.789000px;}
.y85{bottom:208.581000px;}
.y18b{bottom:212.257500px;}
.y99{bottom:214.744500px;}
.y4a{bottom:215.679000px;}
.y128{bottom:216.157500px;}
.yd5{bottom:216.255000px;}
.yf2{bottom:216.745500px;}
.y162{bottom:218.667000px;}
.y1ff{bottom:220.872000px;}
.y70{bottom:224.122500px;}
.y14f{bottom:225.606000px;}
.y1e{bottom:226.326000px;}
.y84{bottom:226.513500px;}
.y1c6{bottom:228.691500px;}
.y18a{bottom:230.190000px;}
.y22c{bottom:230.304000px;}
.y1a8{bottom:232.338000px;}
.y98{bottom:232.677000px;}
.y49{bottom:233.611500px;}
.y127{bottom:234.090000px;}
.y161{bottom:236.599500px;}
.y14e{bottom:243.538500px;}
.y22b{bottom:243.753000px;}
.y83{bottom:244.446000px;}
.y1fe{bottom:246.277500px;}
.y1c5{bottom:246.624000px;}
.y1a7{bottom:250.272000px;}
.y97{bottom:250.609500px;}
.y48{bottom:251.544000px;}
.y126{bottom:252.022500px;}
.y6f{bottom:252.142500px;}
.y160{bottom:254.533500px;}
.y22a{bottom:257.203500px;}
.y189{bottom:258.210000px;}
.y1fd{bottom:259.726500px;}
.y13f{bottom:260.697000px;}
.y82{bottom:262.378500px;}
.y1dd{bottom:263.187000px;}
.yd4{bottom:263.300976px;}
.y1c4{bottom:264.558000px;}
.y1a6{bottom:268.204500px;}
.y10e{bottom:268.542000px;}
.y96{bottom:268.543500px;}
.yf1{bottom:269.313795px;}
.y47{bottom:269.476500px;}
.y125{bottom:269.955000px;}
.y14d{bottom:271.558500px;}
.y1d{bottom:271.774500px;}
.y15f{bottom:272.466000px;}
.y1fc{bottom:273.175500px;}
.yaf{bottom:278.629500px;}
.yd3{bottom:278.749466px;}
.y81{bottom:280.311000px;}
.y1dc{bottom:281.119500px;}
.y229{bottom:281.728500px;}
.y1c3{bottom:282.490500px;}
.y1a5{bottom:286.137000px;}
.yc0{bottom:286.476000px;}
.y46{bottom:287.409000px;}
.y124{bottom:287.887500px;}
.y1c{bottom:289.707000px;}
.y15e{bottom:290.398500px;}
.y6e{bottom:291.930000px;}
.yd2{bottom:294.197956px;}
.y228{bottom:295.179000px;}
.y95{bottom:296.563500px;}
.y188{bottom:297.999000px;}
.y1fb{bottom:298.581000px;}
.y1c2{bottom:300.423000px;}
.yf0{bottom:301.340870px;}
.y1a4{bottom:304.069500px;}
.ybf{bottom:304.408500px;}
.y45{bottom:305.343000px;}
.y123{bottom:305.820000px;}
.y1b{bottom:307.641000px;}
.y80{bottom:308.331000px;}
.y227{bottom:308.628000px;}
.yd1{bottom:309.646446px;}
.y6d{bottom:309.862500px;}
.y1fa{bottom:312.030000px;}
.y1db{bottom:314.520000px;}
.y187{bottom:315.931500px;}
.y13e{bottom:317.461500px;}
.y1c1{bottom:318.355500px;}
.y1a3{bottom:322.002000px;}
.ybe{bottom:322.341000px;}
.y44{bottom:323.275500px;}
.y122{bottom:323.754000px;}
.yd0{bottom:325.094936px;}
.y6c{bottom:327.796500px;}
.y14c{bottom:328.632000px;}
.y226{bottom:333.153000px;}
.yef{bottom:333.365267px;}
.y186{bottom:333.864000px;}
.yae{bottom:335.082000px;}
.y94{bottom:335.416500px;}
.y1a{bottom:335.659500px;}
.y1c0{bottom:336.288000px;}
.y15d{bottom:336.351000px;}
.y1f9{bottom:337.435500px;}
.y1a2{bottom:339.934500px;}
.ybd{bottom:340.273500px;}
.ycf{bottom:340.543426px;}
.y43{bottom:341.208000px;}
.y6b{bottom:345.729000px;}
.y225{bottom:346.603500px;}
.y1f8{bottom:350.884500px;}
.y185{bottom:351.796500px;}
.y93{bottom:353.349000px;}
.y1bf{bottom:354.222000px;}
.yce{bottom:355.993209px;}
.y1a1{bottom:357.868500px;}
.y10d{bottom:358.206000px;}
.y42{bottom:359.140500px;}
.y224{bottom:360.052500px;}
.y6a{bottom:363.661500px;}
.y1da{bottom:364.956000px;}
.y7f{bottom:365.406000px;}
.yee{bottom:366.455804px;}
.ybc{bottom:368.293500px;}
.y13d{bottom:369.190344px;}
.y184{bottom:369.729000px;}
.y121{bottom:371.173500px;}
.ycd{bottom:371.441699px;}
.y19{bottom:372.048000px;}
.y1be{bottom:372.154500px;}
.y1a0{bottom:375.801000px;}
.y15c{bottom:376.138500px;}
.y1f7{bottom:376.290000px;}
.y41{bottom:377.073000px;}
.y14b{bottom:380.282150px;}
.y69{bottom:381.594000px;}
.y223{bottom:384.579000px;}
.y10c{bottom:386.226000px;}
.yad{bottom:386.813217px;}
.ycc{bottom:386.890189px;}
.y183{bottom:387.661500px;}
.y92{bottom:389.553000px;}
.y1f6{bottom:389.739000px;}
.y1bd{bottom:390.087000px;}
.y19f{bottom:393.733500px;}
.y15b{bottom:394.072500px;}
.y40{bottom:395.005500px;}
.y222{bottom:398.028000px;}
.y1d9{bottom:398.355000px;}
.yed{bottom:398.482879px;}
.y13c{bottom:398.685720px;}
.y68{bottom:399.526500px;}
.ycb{bottom:402.338679px;}
.y1f5{bottom:403.188000px;}
.y182{bottom:405.595500px;}
.y1bc{bottom:408.019500px;}
.y14a{bottom:409.542252px;}
.y221{bottom:411.477000px;}
.y19e{bottom:411.666000px;}
.y15a{bottom:412.005000px;}
.y3f{bottom:412.939500px;}
.yac{bottom:416.321863px;}
.y7e{bottom:417.135717px;}
.y67{bottom:417.459000px;}
.yca{bottom:417.787169px;}
.y120{bottom:422.905685px;}
.y181{bottom:423.528000px;}
.ybb{bottom:423.588000px;}
.y10b{bottom:425.766000px;}
.y1bb{bottom:425.952000px;}
.y18{bottom:425.965500px;}
.y1f4{bottom:428.593500px;}
.y13b{bottom:429.163042px;}
.y19d{bottom:429.598500px;}
.y159{bottom:429.937500px;}
.y3e{bottom:430.872000px;}
.yec{bottom:431.573416px;}
.yc9{bottom:433.236951px;}
.y66{bottom:435.393000px;}
.y220{bottom:436.003500px;}
.y149{bottom:439.776467px;}
.y180{bottom:441.460500px;}
.y1f3{bottom:442.042500px;}
.y91{bottom:442.184908px;}
.y10a{bottom:443.698500px;}
.y1ba{bottom:443.884500px;}
.y17{bottom:443.898000px;}
.y7d{bottom:446.646831px;}
.yab{bottom:446.815364px;}
.y19c{bottom:447.531000px;}
.y158{bottom:447.870000px;}
.yc8{bottom:448.685442px;}
.y1d8{bottom:448.791000px;}
.y3d{bottom:448.804500px;}
.y21f{bottom:449.452500px;}
.y11f{bottom:452.414331px;}
.y65{bottom:453.325500px;}
.y1f2{bottom:455.491500px;}
.y17f{bottom:459.393000px;}
.y109{bottom:461.631000px;}
.y1b9{bottom:461.818500px;}
.y21e{bottom:462.903000px;}
.yc7{bottom:464.133932px;}
.y19b{bottom:465.465000px;}
.y157{bottom:465.802500px;}
.y1d7{bottom:466.723500px;}
.y3c{bottom:466.737000px;}
.y64{bottom:471.258000px;}
.y13a{bottom:472.260000px;}
.y16{bottom:472.306500px;}
.y90{bottom:474.396699px;}
.yba{bottom:475.319217px;}
.yeb{bottom:476.653500px;}
.y7c{bottom:477.137864px;}
.y108{bottom:479.563500px;}
.yc6{bottom:479.582422px;}
.y1b8{bottom:479.751000px;}
.y1f1{bottom:480.897000px;}
.y11e{bottom:482.907833px;}
.y148{bottom:482.922000px;}
.y156{bottom:483.735000px;}
.y1d6{bottom:484.656000px;}
.y3b{bottom:484.669500px;}
.y21d{bottom:487.428000px;}
.yaa{bottom:488.211000px;}
.y63{bottom:489.190500px;}
.y15{bottom:490.239000px;}
.y1f0{bottom:494.346000px;}
.yea{bottom:494.586000px;}
.yc5{bottom:495.030912px;}
.y107{bottom:497.497500px;}
.y1b7{bottom:497.683500px;}
.y147{bottom:500.854500px;}
.y21c{bottom:500.877000px;}
.y155{bottom:501.669000px;}
.y1d5{bottom:502.588500px;}
.y3a{bottom:502.602000px;}
.yb9{bottom:504.827863px;}
.ya9{bottom:506.145000px;}
.y8f{bottom:506.611185px;}
.y17e{bottom:506.812500px;}
.y62{bottom:507.123000px;}
.y1ef{bottom:507.796500px;}
.y14{bottom:508.171500px;}
.yc4{bottom:510.479402px;}
.ye9{bottom:512.518500px;}
.y19a{bottom:512.884500px;}
.y106{bottom:515.430000px;}
.y1b6{bottom:515.616000px;}
.y7b{bottom:518.962500px;}
.y139{bottom:519.253500px;}
.y154{bottom:519.601500px;}
.y1d4{bottom:520.522500px;}
.y11d{bottom:524.083500px;}
.y61{bottom:525.055500px;}
.y21b{bottom:525.403500px;}
.y13{bottom:526.104000px;}
.yc3{bottom:526.443488px;}
.ye8{bottom:530.452500px;}
.y39{bottom:530.622000px;}
.y1ee{bottom:533.200500px;}
.y105{bottom:533.362500px;}
.y1b5{bottom:533.548500px;}
.yb8{bottom:535.321364px;}
.y146{bottom:536.073000px;}
.y7a{bottom:536.895000px;}
.y153{bottom:537.534000px;}
.y8e{bottom:538.822976px;}
.y21a{bottom:538.852500px;}
.ya8{bottom:540.934500px;}
.yc2{bottom:541.891978px;}
.y60{bottom:542.989500px;}
.y12{bottom:544.038000px;}
.y1ed{bottom:546.651000px;}
.ye7{bottom:548.385000px;}
.y104{bottom:551.295000px;}
.y1d3{bottom:553.921500px;}
.y17d{bottom:554.997491px;}
.y152{bottom:555.466500px;}
.yc1{bottom:557.856064px;}
.y5f{bottom:560.922000px;}
.y1b4{bottom:561.568500px;}
.y11{bottom:561.970500px;}
.y219{bottom:563.379000px;}
.y199{bottom:564.616685px;}
.ye6{bottom:566.317500px;}
.y103{bottom:569.227500px;}
.y8d{bottom:571.034767px;}
.y138{bottom:571.506611px;}
.y1ec{bottom:572.055000px;}
.y79{bottom:572.113500px;}
.y38{bottom:573.399000px;}
.y17c{bottom:573.862840px;}
.yb7{bottom:575.919000px;}
.y11c{bottom:576.222810px;}
.y218{bottom:576.828000px;}
.y5e{bottom:578.854500px;}
.y10{bottom:579.903000px;}
.ye5{bottom:584.250000px;}
.y102{bottom:587.161500px;}
.y145{bottom:588.238829px;}
.y217{bottom:590.277000px;}
.y37{bottom:591.333000px;}
.y17b{bottom:592.728188px;}
.ya7{bottom:593.481749px;}
.yb6{bottom:593.851500px;}
.y198{bottom:594.125331px;}
.y5d{bottom:596.787000px;}
.y1eb{bottom:597.460500px;}
.yf{bottom:597.835500px;}
.y1d2{bottom:601.341000px;}
.ye4{bottom:602.182500px;}
.y137{bottom:602.580943px;}
.y8c{bottom:603.246558px;}
.y101{bottom:605.094000px;}
.y11b{bottom:606.954632px;}
.y1b3{bottom:608.989500px;}
.y36{bottom:609.265500px;}
.y1ea{bottom:610.909500px;}
.y17a{bottom:612.223171px;}
.y5c{bottom:614.719500px;}
.y216{bottom:614.803500px;}
.ye{bottom:615.768000px;}
.y144{bottom:619.051885px;}
.ye3{bottom:620.115000px;}
.y100{bottom:623.026500px;}
.y78{bottom:624.271825px;}
.y197{bottom:624.618833px;}
.ya6{bottom:625.438719px;}
.y35{bottom:627.198000px;}
.yb5{bottom:627.843000px;}
.y215{bottom:628.252500px;}
.y5b{bottom:632.652000px;}
.y136{bottom:633.657875px;}
.yd{bottom:633.700500px;}
.y8b{bottom:635.458349px;}
.y1e9{bottom:636.313500px;}
.y11a{bottom:637.686454px;}
.ye2{bottom:638.049000px;}
.yff{bottom:640.959000px;}
.y214{bottom:641.703000px;}
.y34{bottom:645.130500px;}
.y179{bottom:647.443500px;}
.y1e8{bottom:649.764000px;}
.y143{bottom:649.864941px;}
.y5a{bottom:650.586000px;}
.yc{bottom:651.634500px;}
.y1d1{bottom:653.072217px;}
.y77{bottom:655.056010px;}
.ye1{bottom:655.981500px;}
.ya5{bottom:658.462258px;}
.yfe{bottom:658.891500px;}
.y1b2{bottom:660.719217px;}
.y33{bottom:663.063000px;}
.y135{bottom:664.732208px;}
.y196{bottom:665.794500px;}
.y213{bottom:666.228000px;}
.y8a{bottom:667.670140px;}
.y119{bottom:668.420846px;}
.y59{bottom:668.518500px;}
.yb{bottom:669.567000px;}
.ye0{bottom:673.914000px;}
.y1e7{bottom:675.168000px;}
.yfd{bottom:676.824000px;}
.yb4{bottom:679.621719px;}
.y212{bottom:679.677000px;}
.y32{bottom:680.995500px;}
.y142{bottom:681.706388px;}
.y1d0{bottom:682.583331px;}
.y76{bottom:685.840195px;}
.y58{bottom:686.451000px;}
.ya{bottom:687.499500px;}
.y1e6{bottom:688.618500px;}
.y1b1{bottom:690.230331px;}
.ya4{bottom:690.419229px;}
.ydf{bottom:691.846500px;}
.y211{bottom:693.127500px;}
.y178{bottom:694.479271px;}
.yfc{bottom:694.758000px;}
.y134{bottom:695.806541px;}
.y31{bottom:698.929500px;}
.y118{bottom:699.152668px;}
.y89{bottom:700.957005px;}
.y57{bottom:704.383500px;}
.y9{bottom:705.432000px;}
.yb3{bottom:709.271852px;}
.yde{bottom:709.779000px;}
.y177{bottom:709.900145px;}
.y141{bottom:712.519444px;}
.yfb{bottom:712.690500px;}
.y1cf{bottom:713.074364px;}
.y1e5{bottom:714.022500px;}
.y30{bottom:716.862000px;}
.y75{bottom:717.651806px;}
.y210{bottom:717.652500px;}
.y195{bottom:718.373096px;}
.y1b0{bottom:720.721364px;}
.y8{bottom:723.364500px;}
.ya3{bottom:723.442768px;}
.y176{bottom:725.321019px;}
.y133{bottom:726.880873px;}
.y1e4{bottom:727.473000px;}
.ydd{bottom:727.713000px;}
.y117{bottom:729.884490px;}
.yfa{bottom:730.623000px;}
.y20f{bottom:731.103000px;}
.y56{bottom:732.403500px;}
.y88{bottom:733.168796px;}
.y2f{bottom:734.794500px;}
.yb2{bottom:739.911563px;}
.y175{bottom:740.741893px;}
.y7{bottom:741.297000px;}
.y140{bottom:744.360891px;}
.y20e{bottom:744.552000px;}
.y74{bottom:748.435991px;}
.yf9{bottom:748.555500px;}
.y194{bottom:750.417936px;}
.y2e{bottom:752.727000px;}
.y1ce{bottom:754.252500px;}
.ydc{bottom:755.731500px;}
.y174{bottom:756.164057px;}
.y1e3{bottom:757.882500px;}
.y132{bottom:757.955206px;}
.y116{bottom:760.616312px;}
.y1af{bottom:761.899500px;}
.y55{bottom:763.413000px;}
.y87{bottom:766.455661px;}
.y6{bottom:767.758500px;}
.ya2{bottom:768.046500px;}
.y20d{bottom:769.078500px;}
.yb1{bottom:769.561697px;}
.y2d{bottom:770.659500px;}
.y173{bottom:771.584931px;}
.yf8{bottom:776.575500px;}
.y73{bottom:780.247603px;}
.y193{bottom:782.462775px;}
.y20c{bottom:782.527500px;}
.ya1{bottom:785.979000px;}
.y172{bottom:787.005805px;}
.y2c{bottom:788.592000px;}
.y131{bottom:789.029538px;}
.y115{bottom:791.348134px;}
.y20b{bottom:795.976500px;}
.y54{bottom:799.801500px;}
.yb0{bottom:800.201408px;}
.y1e2{bottom:800.250000px;}
.y171{bottom:802.426679px;}
.ya0{bottom:803.911500px;}
.y1cd{bottom:805.684869px;}
.y2b{bottom:806.526000px;}
.y1ae{bottom:814.476971px;}
.y192{bottom:814.507615px;}
.ydb{bottom:815.712000px;}
.y170{bottom:817.847553px;}
.y130{bottom:820.106470px;}
.y20a{bottom:820.503000px;}
.y9f{bottom:821.844000px;}
.y114{bottom:822.079956px;}
.y2a{bottom:824.458500px;}
.y233{bottom:828.942000px;}
.yf7{bottom:832.848000px;}
.y16f{bottom:833.269717px;}
.y209{bottom:833.952000px;}
.y1cc{bottom:834.297966px;}
.y29{bottom:842.391000px;}
.y1ad{bottom:846.529692px;}
.y191{bottom:846.552454px;}
.y16e{bottom:848.690591px;}
.y53{bottom:850.236000px;}
.y1e1{bottom:850.684500px;}
.y12f{bottom:851.180803px;}
.y113{bottom:852.814348px;}
.y208{bottom:858.478500px;}
.y28{bottom:860.323500px;}
.y1cb{bottom:862.911063px;}
.yda{bottom:863.560510px;}
.y16d{bottom:864.111465px;}
.y5{bottom:867.796500px;}
.y52{bottom:868.170000px;}
.y9e{bottom:868.407000px;}
.y207{bottom:871.927500px;}
.y27{bottom:878.256000px;}
.y1ac{bottom:878.579731px;}
.y190{bottom:878.597294px;}
.y16c{bottom:879.532339px;}
.y232{bottom:881.245500px;}
.yd9{bottom:881.418591px;}
.y12e{bottom:882.255136px;}
.y112{bottom:883.546170px;}
.y1e0{bottom:884.085000px;}
.yf6{bottom:884.579217px;}
.y51{bottom:886.102500px;}
.y4{bottom:890.959500px;}
.y1ca{bottom:891.526553px;}
.y16b{bottom:894.953213px;}
.y26{bottom:896.188500px;}
.y206{bottom:896.452500px;}
.yd8{bottom:899.276671px;}
.y50{bottom:904.035000px;}
.y231{bottom:906.649500px;}
.y205{bottom:909.903000px;}
.y16a{bottom:910.374087px;}
.y1ab{bottom:911.696766px;}
.y18f{bottom:911.711635px;}
.yf5{bottom:914.087863px;}
.y3{bottom:914.122500px;}
.y12d{bottom:914.366579px;}
.y111{bottom:915.301101px;}
.yd7{bottom:917.730767px;}
.y230{bottom:920.100000px;}
.y9d{bottom:920.138217px;}
.y1c9{bottom:921.092224px;}
.y4f{bottom:921.967500px;}
.y169{bottom:925.796251px;}
.y25{bottom:932.055000px;}
.y22f{bottom:933.549000px;}
.y204{bottom:934.428000px;}
.y1df{bottom:934.521000px;}
.y4e{bottom:939.900000px;}
.y168{bottom:941.217125px;}
.y1aa{bottom:943.749486px;}
.y18e{bottom:943.756475px;}
.yf4{bottom:944.581364px;}
.y12c{bottom:945.440912px;}
.y110{bottom:946.035493px;}
.y203{bottom:947.878500px;}
.y9c{bottom:949.646863px;}
.y1c8{bottom:949.705321px;}
.y24{bottom:949.987500px;}
.y1de{bottom:952.453500px;}
.y167{bottom:957.151383px;}
.y4d{bottom:957.832500px;}
.y2{bottom:958.954500px;}
.y23{bottom:967.920000px;}
.y202{bottom:972.403500px;}
.y166{bottom:972.573547px;}
.y1a9{bottom:976.866521px;}
.y18d{bottom:976.870816px;}
.y12b{bottom:977.549756px;}
.y10f{bottom:977.790424px;}
.y1c7{bottom:979.273384px;}
.y9b{bottom:980.140364px;}
.y1{bottom:985.852500px;}
.y165{bottom:988.507806px;}
.h9{height:25.787366px;}
.hb{height:26.325350px;}
.h22{height:30.712615px;}
.h23{height:30.963672px;}
.h3{height:32.804932px;}
.ha{height:35.100320px;}
.h1c{height:37.730117px;}
.h13{height:37.797685px;}
.h4{height:41.484266px;}
.he{height:41.961802px;}
.h1e{height:41.967802px;}
.h14{height:43.693208px;}
.h2{height:43.875290px;}
.h6{height:44.233944px;}
.h1d{height:46.157683px;}
.h8{height:49.781453px;}
.hc{height:52.040387px;}
.h5{height:52.046387px;}
.h19{height:54.163609px;}
.h7{height:59.737577px;}
.h1{height:63.180665px;}
.h21{height:70.007413px;}
.h1b{height:71.590434px;}
.h18{height:72.166078px;}
.hf{height:72.198545px;}
.h12{height:72.544721px;}
.h16{height:75.191279px;}
.hd{height:75.319395px;}
.h1a{height:75.390034px;}
.h17{height:76.029297px;}
.h11{height:78.188839px;}
.h15{height:78.353810px;}
.h1f{height:78.403828px;}
.h20{height:78.416552px;}
.h10{height:78.812307px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x1c{left:203.870920px;}
.xe{left:207.066337px;}
.x2e{left:208.122000px;}
.x7{left:214.045500px;}
.x9{left:216.942000px;}
.x8{left:222.172500px;}
.x23{left:223.312479px;}
.xc{left:224.779797px;}
.x1{left:225.868500px;}
.x2c{left:230.091000px;}
.x2d{left:233.020500px;}
.x12{left:236.932365px;}
.x22{left:238.393500px;}
.x24{left:239.727000px;}
.x10{left:242.374500px;}
.x1e{left:243.702000px;}
.x16{left:245.698500px;}
.x2b{left:246.996000px;}
.x29{left:250.571144px;}
.x13{left:252.010500px;}
.x18{left:254.211000px;}
.xb{left:256.040358px;}
.xf{left:259.279500px;}
.x15{left:262.603500px;}
.x2{left:266.614500px;}
.x11{left:269.639930px;}
.x4{left:293.067000px;}
.x5{left:307.503000px;}
.x1d{left:315.460559px;}
.x1b{left:328.039048px;}
.x27{left:331.859065px;}
.x26{left:344.691090px;}
.x1a{left:346.140465px;}
.x25{left:360.350597px;}
.x19{left:361.826724px;}
.x3{left:405.975000px;}
.x14{left:409.413481px;}
.x1f{left:422.130637px;}
.x28{left:426.340044px;}
.x17{left:429.036152px;}
.x21{left:432.707460px;}
.x20{left:450.963000px;}
.xa{left:454.699500px;}
.xd{left:465.910990px;}
.x2a{left:467.044600px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.290667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5b{letter-spacing:2.256223pt;}
.ls2c{letter-spacing:2.260263pt;}
.ls58{letter-spacing:2.266326pt;}
.ls29{letter-spacing:2.270384pt;}
.ls57{letter-spacing:2.283752pt;}
.ls59{letter-spacing:2.284597pt;}
.ls5a{letter-spacing:2.285606pt;}
.ls28{letter-spacing:2.287842pt;}
.ls2a{letter-spacing:2.288688pt;}
.ls2b{letter-spacing:2.289699pt;}
.ls32{letter-spacing:2.624509pt;}
.ls31{letter-spacing:2.644992pt;}
.ls3{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.658321pt;}
.ls5e{letter-spacing:2.772542pt;}
.ls5d{letter-spacing:2.794181pt;}
.ls72{letter-spacing:4.186372pt;}
.ls6f{letter-spacing:4.205118pt;}
.ls6e{letter-spacing:4.237452pt;}
.ls70{letter-spacing:4.239020pt;}
.ls71{letter-spacing:4.240892pt;}
.ls53{letter-spacing:4.300205pt;}
.ls52{letter-spacing:4.333766pt;}
.ls49{letter-spacing:4.334782pt;}
.ls10{letter-spacing:4.336732pt;}
.ls25{letter-spacing:4.338100pt;}
.ls22{letter-spacing:4.357526pt;}
.ls48{letter-spacing:4.368613pt;}
.lsf{letter-spacing:4.370579pt;}
.ls21{letter-spacing:4.391032pt;}
.ls23{letter-spacing:4.392656pt;}
.ls24{letter-spacing:4.394596pt;}
.ls3d{letter-spacing:4.505502pt;}
.lsa{letter-spacing:4.513179pt;}
.ls3a{letter-spacing:4.516496pt;}
.ls4e{letter-spacing:4.517411pt;}
.ls6{letter-spacing:4.524192pt;}
.ls4b{letter-spacing:4.528435pt;}
.ls3c{letter-spacing:4.545779pt;}
.ls43{letter-spacing:4.546474pt;}
.ls39{letter-spacing:4.551225pt;}
.ls3b{letter-spacing:4.552908pt;}
.ls9{letter-spacing:4.553524pt;}
.ls4d{letter-spacing:4.557795pt;}
.ls5{letter-spacing:4.558979pt;}
.ls7{letter-spacing:4.560666pt;}
.ls4a{letter-spacing:4.563255pt;}
.ls4c{letter-spacing:4.564943pt;}
.ls40{letter-spacing:4.566833pt;}
.ls8{letter-spacing:4.568135pt;}
.ls74{letter-spacing:4.572714pt;}
.ls75{letter-spacing:4.578047pt;}
.ls3f{letter-spacing:4.601949pt;}
.ls41{letter-spacing:4.603651pt;}
.ls42{letter-spacing:4.605684pt;}
.ls1f{letter-spacing:4.685117pt;}
.ls37{letter-spacing:4.685478pt;}
.ls1c{letter-spacing:4.696550pt;}
.ls63{letter-spacing:4.697999pt;}
.ls69{letter-spacing:4.698762pt;}
.ls34{letter-spacing:4.706459pt;}
.ls60{letter-spacing:4.709464pt;}
.ls66{letter-spacing:4.710228pt;}
.ls16{letter-spacing:4.712896pt;}
.ls1e{letter-spacing:4.727000pt;}
.ls1b{letter-spacing:4.732663pt;}
.ls12{letter-spacing:4.734000pt;}
.ls1d{letter-spacing:4.734413pt;}
.ls62{letter-spacing:4.739997pt;}
.ls68{letter-spacing:4.740767pt;}
.ls33{letter-spacing:4.742648pt;}
.ls35{letter-spacing:4.744403pt;}
.ls5f{letter-spacing:4.745676pt;}
.ls65{letter-spacing:4.746446pt;}
.ls36{letter-spacing:4.746498pt;}
.ls61{letter-spacing:4.747431pt;}
.ls67{letter-spacing:4.748202pt;}
.ls14{letter-spacing:4.770400pt;}
.ls13{letter-spacing:4.772165pt;}
.ls15{letter-spacing:4.774273pt;}
.ls11{letter-spacing:4.779981pt;}
.ls1{letter-spacing:6.536174pt;}
.ls46{letter-spacing:8.811145pt;}
.ls50{letter-spacing:8.816479pt;}
.ls6c{letter-spacing:8.981812pt;}
.ls51{letter-spacing:10.048479pt;}
.ls47{letter-spacing:10.053812pt;}
.ls45{letter-spacing:10.094400pt;}
.ls6d{letter-spacing:10.235145pt;}
.ls6b{letter-spacing:10.281067pt;}
.ls19{letter-spacing:11.728479pt;}
.lsd{letter-spacing:11.765812pt;}
.ls55{letter-spacing:12.555145pt;}
.ls2f{letter-spacing:12.592479pt;}
.ls1a{letter-spacing:13.200479pt;}
.ls27{letter-spacing:13.237812pt;}
.lse{letter-spacing:13.243145pt;}
.ls18{letter-spacing:13.246400pt;}
.lsc{letter-spacing:13.283733pt;}
.ls5c{letter-spacing:13.673133pt;}
.ls2d{letter-spacing:13.693024pt;}
.ls56{letter-spacing:14.672479pt;}
.ls54{letter-spacing:14.713067pt;}
.ls30{letter-spacing:14.736479pt;}
.ls2e{letter-spacing:14.777067pt;}
.ls0{letter-spacing:19.794841pt;}
.ls73{letter-spacing:25.361691pt;}
.ls26{letter-spacing:26.289704pt;}
.ls3e{letter-spacing:27.248798pt;}
.lsb{letter-spacing:27.295226pt;}
.ls4f{letter-spacing:27.320825pt;}
.ls44{letter-spacing:27.543248pt;}
.ls20{letter-spacing:28.335093pt;}
.ls38{letter-spacing:28.385353pt;}
.ls64{letter-spacing:28.413003pt;}
.ls6a{letter-spacing:28.417614pt;}
.ls17{letter-spacing:28.551453pt;}
.ws70{word-spacing:-28.632991pt;}
.ws11e{word-spacing:-28.489210pt;}
.ws112{word-spacing:-28.484588pt;}
.wsb7{word-spacing:-28.466416pt;}
.ws81{word-spacing:-28.406481pt;}
.wsd8{word-spacing:-27.621906pt;}
.wsef{word-spacing:-27.389658pt;}
.ws5a{word-spacing:-27.363994pt;}
.wsca{word-spacing:-27.317449pt;}
.ws91{word-spacing:-26.355939pt;}
.ws12b{word-spacing:-25.434119pt;}
.ws131{word-spacing:-19.128267pt;}
.wsa6{word-spacing:-13.732129pt;}
.ws107{word-spacing:-13.707581pt;}
.wse{word-spacing:-13.283467pt;}
.ws6c{word-spacing:-4.772165pt;}
.ws10d{word-spacing:-4.750262pt;}
.ws11b{word-spacing:-4.748202pt;}
.ws10f{word-spacing:-4.747431pt;}
.wsb3{word-spacing:-4.744403pt;}
.ws7c{word-spacing:-4.736695pt;}
.ws7e{word-spacing:-4.734413pt;}
.wsd6{word-spacing:-4.610189pt;}
.wsd4{word-spacing:-4.603651pt;}
.wsd2{word-spacing:-4.600947pt;}
.wsed{word-spacing:-4.568830pt;}
.wseb{word-spacing:-4.564943pt;}
.ws57{word-spacing:-4.560666pt;}
.wse9{word-spacing:-4.559666pt;}
.ws55{word-spacing:-4.556780pt;}
.wsc8{word-spacing:-4.556264pt;}
.wsc6{word-spacing:-4.552908pt;}
.wsc4{word-spacing:-4.547124pt;}
.ws8e{word-spacing:-4.392656pt;}
.ws8c{word-spacing:-4.392572pt;}
.ws129{word-spacing:-4.244795pt;}
.ws127{word-spacing:-4.239020pt;}
.ws125{word-spacing:-4.236285pt;}
.wsbf{word-spacing:-3.188032pt;}
.ws19{word-spacing:-3.081764pt;}
.ws123{word-spacing:-3.028630pt;}
.wsf3{word-spacing:-2.869229pt;}
.ws7a{word-spacing:-2.816095pt;}
.ws3a{word-spacing:-2.709827pt;}
.wse0{word-spacing:-2.603559pt;}
.ws9e{word-spacing:-2.550426pt;}
.ws96{word-spacing:-2.497292pt;}
.ws130{word-spacing:-2.444158pt;}
.ws78{word-spacing:-2.391024pt;}
.wsba{word-spacing:-2.337890pt;}
.wsa4{word-spacing:-2.290748pt;}
.wsa2{word-spacing:-2.288688pt;}
.wsa0{word-spacing:-2.286154pt;}
.ws63{word-spacing:-2.284756pt;}
.ws103{word-spacing:-2.284597pt;}
.ws3d{word-spacing:-2.178489pt;}
.ws159{word-spacing:-2.157229pt;}
.ws143{word-spacing:-2.120035pt;}
.ws145{word-spacing:-1.934067pt;}
.wsc2{word-spacing:-1.912819pt;}
.ws85{word-spacing:-1.859685pt;}
.ws3{word-spacing:-1.753418pt;}
.wsc{word-spacing:-1.700284pt;}
.ws73{word-spacing:-1.647150pt;}
.ws15{word-spacing:-1.540882pt;}
.wsc0{word-spacing:-1.434614pt;}
.ws11{word-spacing:-1.328347pt;}
.wsf7{word-spacing:-1.275213pt;}
.ws9d{word-spacing:-1.222079pt;}
.ws7{word-spacing:-1.168945pt;}
.ws6{word-spacing:-1.115811pt;}
.ws67{word-spacing:-1.009543pt;}
.ws8a{word-spacing:-0.956410pt;}
.ws116{word-spacing:-0.903276pt;}
.ws68{word-spacing:-0.850142pt;}
.ws26{word-spacing:-0.797008pt;}
.ws48{word-spacing:-0.743874pt;}
.ws142{word-spacing:-0.743872pt;}
.ws1c{word-spacing:-0.531339pt;}
.ws3c{word-spacing:-0.478205pt;}
.ws134{word-spacing:-0.409130pt;}
.wsf9{word-spacing:-0.318803pt;}
.ws99{word-spacing:-0.265669pt;}
.ws23{word-spacing:-0.212535pt;}
.ws156{word-spacing:-0.185968pt;}
.ws95{word-spacing:-0.159402pt;}
.ws20{word-spacing:-0.106268pt;}
.ws149{word-spacing:-0.074387pt;}
.wsd{word-spacing:-0.053134pt;}
.wsdd{word-spacing:-0.039319pt;}
.ws58{word-spacing:-0.013129pt;}
.ws6d{word-spacing:-0.004158pt;}
.ws110{word-spacing:-0.004136pt;}
.wsb4{word-spacing:-0.004134pt;}
.ws7f{word-spacing:-0.004125pt;}
.wsd5{word-spacing:-0.004011pt;}
.wsec{word-spacing:-0.003977pt;}
.wsc7{word-spacing:-0.003967pt;}
.ws8f{word-spacing:-0.003827pt;}
.ws128{word-spacing:-0.003693pt;}
.wsa3{word-spacing:-0.001994pt;}
.ws104{word-spacing:-0.001990pt;}
.ws5e{word-spacing:-0.001007pt;}
.ws0{word-spacing:0.000000pt;}
.ws100{word-spacing:0.006042pt;}
.ws9f{word-spacing:0.006053pt;}
.ws124{word-spacing:0.011211pt;}
.ws8b{word-spacing:0.011617pt;}
.wsc3{word-spacing:0.012041pt;}
.ws54{word-spacing:0.012062pt;}
.wse8{word-spacing:0.012073pt;}
.wsd1{word-spacing:0.012175pt;}
.ws7b{word-spacing:0.012521pt;}
.wsb0{word-spacing:0.012547pt;}
.ws10c{word-spacing:0.012555pt;}
.ws118{word-spacing:0.012558pt;}
.ws69{word-spacing:0.012621pt;}
.ws154{word-spacing:0.074387pt;}
.ws36{word-spacing:0.106268pt;}
.ws10b{word-spacing:0.159402pt;}
.ws2{word-spacing:0.212535pt;}
.ws153{word-spacing:0.223162pt;}
.ws14{word-spacing:0.265669pt;}
.ws43{word-spacing:0.318803pt;}
.ws141{word-spacing:0.334742pt;}
.ws64{word-spacing:0.371937pt;}
.ws15b{word-spacing:0.520710pt;}
.ws133{word-spacing:0.557904pt;}
.ws12f{word-spacing:0.584473pt;}
.ws14a{word-spacing:0.595098pt;}
.ws146{word-spacing:0.632291pt;}
.ws9a{word-spacing:0.637606pt;}
.ws74{word-spacing:0.690740pt;}
.ws135{word-spacing:0.706678pt;}
.ws32{word-spacing:0.743874pt;}
.ws136{word-spacing:0.781066pt;}
.ws46{word-spacing:0.797008pt;}
.wscf{word-spacing:0.850142pt;}
.ws1d{word-spacing:0.903276pt;}
.ws40{word-spacing:0.956410pt;}
.ws79{word-spacing:1.009543pt;}
.ws18{word-spacing:1.020173pt;}
.ws155{word-spacing:1.115808pt;}
.ws31{word-spacing:1.115811pt;}
.ws16{word-spacing:1.168945pt;}
.ws29{word-spacing:1.222079pt;}
.ws151{word-spacing:1.264582pt;}
.ws10{word-spacing:1.275213pt;}
.wsad{word-spacing:1.328347pt;}
.ws152{word-spacing:1.376163pt;}
.ws53{word-spacing:1.381481pt;}
.ws13c{word-spacing:1.413357pt;}
.wsfb{word-spacing:1.423045pt;}
.wsfc{word-spacing:1.434614pt;}
.ws13d{word-spacing:1.450550pt;}
.ws15c{word-spacing:1.487744pt;}
.ws3e{word-spacing:1.487748pt;}
.ws49{word-spacing:1.540882pt;}
.ws150{word-spacing:1.562131pt;}
.wsae{word-spacing:1.594016pt;}
.ws93{word-spacing:1.647150pt;}
.ws72{word-spacing:1.700284pt;}
.ws62{word-spacing:1.753418pt;}
.ws14c{word-spacing:1.785293pt;}
.ws38{word-spacing:1.806551pt;}
.ws157{word-spacing:1.859680pt;}
.ws25{word-spacing:1.912819pt;}
.ws14b{word-spacing:1.934067pt;}
.wsd0{word-spacing:1.965953pt;}
.ws41{word-spacing:2.019087pt;}
.wsa{word-spacing:2.072221pt;}
.ws132{word-spacing:2.120035pt;}
.ws14f{word-spacing:2.157229pt;}
.ws121{word-spacing:2.178489pt;}
.ws14e{word-spacing:2.194422pt;}
.ws1f{word-spacing:2.231622pt;}
.ws147{word-spacing:2.268810pt;}
.ws101{word-spacing:2.281103pt;}
.wsf5{word-spacing:2.284756pt;}
.ws105{word-spacing:2.285689pt;}
.ws1b{word-spacing:2.337890pt;}
.ws52{word-spacing:2.391024pt;}
.ws77{word-spacing:2.444158pt;}
.ws139{word-spacing:2.491971pt;}
.wscd{word-spacing:2.603559pt;}
.ws14d{word-spacing:2.640746pt;}
.wsbe{word-spacing:2.656693pt;}
.ws4c{word-spacing:2.709827pt;}
.wsf2{word-spacing:2.762961pt;}
.ws140{word-spacing:2.789520pt;}
.ws37{word-spacing:2.816095pt;}
.ws13b{word-spacing:2.826714pt;}
.ws13f{word-spacing:2.863907pt;}
.ws1a{word-spacing:2.869229pt;}
.wsa8{word-spacing:2.922363pt;}
.ws4a{word-spacing:2.975497pt;}
.ws22{word-spacing:3.028630pt;}
.ws1e{word-spacing:3.081764pt;}
.ws137{word-spacing:3.087069pt;}
.ws144{word-spacing:3.124262pt;}
.ws9b{word-spacing:3.134898pt;}
.ws2d{word-spacing:3.188032pt;}
.ws28{word-spacing:3.241166pt;}
.ws15f{word-spacing:3.347424pt;}
.ws27{word-spacing:3.347434pt;}
.wsb{word-spacing:3.400567pt;}
.ws65{word-spacing:3.453701pt;}
.ws39{word-spacing:3.506835pt;}
.wse4{word-spacing:3.559969pt;}
.ws97{word-spacing:3.613103pt;}
.ws30{word-spacing:3.666237pt;}
.ws15d{word-spacing:3.719360pt;}
.ws33{word-spacing:3.772505pt;}
.ws4d{word-spacing:3.825638pt;}
.ws21{word-spacing:3.931906pt;}
.wsbb{word-spacing:3.985040pt;}
.ws13a{word-spacing:4.016909pt;}
.wsf8{word-spacing:4.038174pt;}
.ws45{word-spacing:4.091308pt;}
.ws15a{word-spacing:4.128490pt;}
.ws98{word-spacing:4.144442pt;}
.wsbd{word-spacing:4.197575pt;}
.ws4{word-spacing:4.250709pt;}
.ws138{word-spacing:4.277264pt;}
.ws34{word-spacing:4.303843pt;}
.ws148{word-spacing:4.314458pt;}
.wsce{word-spacing:4.356977pt;}
.ws2e{word-spacing:4.410111pt;}
.wse2{word-spacing:4.463245pt;}
.ws24{word-spacing:4.516379pt;}
.ws106{word-spacing:4.532652pt;}
.wsa5{word-spacing:4.540769pt;}
.ws102{word-spacing:4.540888pt;}
.wsa1{word-spacing:4.549020pt;}
.ws2c{word-spacing:4.569513pt;}
.wsf{word-spacing:4.622646pt;}
.ws42{word-spacing:4.675780pt;}
.wsb5{word-spacing:4.737393pt;}
.ws11c{word-spacing:4.745014pt;}
.wsb1{word-spacing:4.746917pt;}
.ws119{word-spacing:4.754546pt;}
.ws6a{word-spacing:4.766375pt;}
.ws6e{word-spacing:4.775955pt;}
.wse6{word-spacing:4.782048pt;}
.ws47{word-spacing:4.835182pt;}
.wse1{word-spacing:4.941450pt;}
.wsf6{word-spacing:4.994583pt;}
.ws86{word-spacing:5.100851pt;}
.ws158{word-spacing:5.169910pt;}
.ws51{word-spacing:5.260253pt;}
.ws66{word-spacing:5.313387pt;}
.ws3f{word-spacing:5.366521pt;}
.ws44{word-spacing:5.419654pt;}
.ws9c{word-spacing:5.472788pt;}
.wsaf{word-spacing:5.579056pt;}
.wsfa{word-spacing:5.632190pt;}
.ws35{word-spacing:5.738458pt;}
.ws5{word-spacing:5.791591pt;}
.ws15e{word-spacing:5.839395pt;}
.ws4e{word-spacing:5.897859pt;}
.wsab{word-spacing:6.004127pt;}
.ws87{word-spacing:6.216662pt;}
.wsac{word-spacing:6.269796pt;}
.ws2b{word-spacing:6.429198pt;}
.ws122{word-spacing:6.482332pt;}
.ws13e{word-spacing:6.583267pt;}
.ws2a{word-spacing:6.641733pt;}
.ws8{word-spacing:6.694867pt;}
.wsfe{word-spacing:6.748001pt;}
.wsfd{word-spacing:6.801135pt;}
.wse7{word-spacing:6.854269pt;}
.ws88{word-spacing:7.119938pt;}
.wse5{word-spacing:7.226206pt;}
.ws5d{word-spacing:7.279340pt;}
.ws60{word-spacing:7.332474pt;}
.ws84{word-spacing:7.491875pt;}
.ws61{word-spacing:7.598143pt;}
.ws94{word-spacing:7.651277pt;}
.wsdb{word-spacing:7.704411pt;}
.ws4b{word-spacing:7.916946pt;}
.ws4f{word-spacing:8.288883pt;}
.ws12a{word-spacing:8.410237pt;}
.ws126{word-spacing:8.425519pt;}
.ws2f{word-spacing:8.501419pt;}
.wsdf{word-spacing:8.660820pt;}
.wsdc{word-spacing:8.713954pt;}
.ws90{word-spacing:8.715052pt;}
.ws8d{word-spacing:8.730889pt;}
.wsc9{word-spacing:9.032993pt;}
.wsc5{word-spacing:9.040267pt;}
.ws59{word-spacing:9.048384pt;}
.ws56{word-spacing:9.055670pt;}
.wsee{word-spacing:9.056870pt;}
.wsea{word-spacing:9.064163pt;}
.wsd7{word-spacing:9.133667pt;}
.wsd3{word-spacing:9.150264pt;}
.ws80{word-spacing:9.393100pt;}
.ws7d{word-spacing:9.410169pt;}
.wsb6{word-spacing:9.412918pt;}
.ws111{word-spacing:9.418927pt;}
.ws11d{word-spacing:9.420456pt;}
.ws11a{word-spacing:9.428042pt;}
.wsb2{word-spacing:9.430023pt;}
.ws10e{word-spacing:9.436043pt;}
.ws6f{word-spacing:9.467999pt;}
.ws6b{word-spacing:9.485204pt;}
.ws17{word-spacing:10.579223pt;}
.ws1{word-spacing:10.584293pt;}
.wsde{word-spacing:14.803333pt;}
.ws5c{word-spacing:14.908919pt;}
.ws114{word-spacing:14.914253pt;}
.ws3b{word-spacing:17.943081pt;}
.ws75{word-spacing:17.948414pt;}
.ws12e{word-spacing:18.561748pt;}
.ws117{word-spacing:18.732414pt;}
.wsbc{word-spacing:18.876414pt;}
.wsf4{word-spacing:18.972414pt;}
.ws13{word-spacing:19.128267pt;}
.wsc1{word-spacing:19.708414pt;}
.wsff{word-spacing:20.327081pt;}
.wse3{word-spacing:22.417748pt;}
.ws50{word-spacing:22.780414pt;}
.ws9{word-spacing:24.663081pt;}
.ws89{word-spacing:25.052414pt;}
.ws12{word-spacing:32.892143pt;}
.ws108{word-spacing:43.407340pt;}
.wsa7{word-spacing:43.485075pt;}
.wsaa{word-spacing:50.267693pt;}
.ws109{word-spacing:53.102996pt;}
.ws12c{word-spacing:80.541378pt;}
.wsf1{word-spacing:82.362594pt;}
.wsda{word-spacing:83.024855pt;}
.ws76{word-spacing:83.062208pt;}
.ws92{word-spacing:83.460473pt;}
.wscb{word-spacing:86.505256pt;}
.ws5b{word-spacing:86.652649pt;}
.wsf0{word-spacing:86.733917pt;}
.wsd9{word-spacing:87.469370pt;}
.ws82{word-spacing:89.953856pt;}
.wsb8{word-spacing:90.143650pt;}
.ws113{word-spacing:90.201194pt;}
.ws11f{word-spacing:90.215833pt;}
.ws71{word-spacing:90.671137pt;}
.ws10a{word-spacing:180.382492pt;}
.wsa9{word-spacing:209.007776pt;}
.wscc{word-spacing:273.230947pt;}
.ws115{word-spacing:316.947898pt;}
.ws12d{word-spacing:331.549360pt;}
.wsb9{word-spacing:540.428954pt;}
.ws120{word-spacing:550.134117pt;}
.ws83{word-spacing:652.169482pt;}
.ws5f{word-spacing:661.874645pt;}
._6c{margin-left:-10.541008pt;}
._1e{margin-left:-7.000331pt;}
._9{margin-left:-5.929744pt;}
._a{margin-left:-4.356977pt;}
._2{margin-left:-3.421817pt;}
._1{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._37{width:1.757717pt;}
._30{width:3.701163pt;}
._18{width:4.650296pt;}
._78{width:8.150644pt;}
._77{width:9.904148pt;}
._4e{width:10.998710pt;}
._8{width:12.486458pt;}
._d{width:13.937259pt;}
._76{width:14.983750pt;}
._3{width:15.887026pt;}
._10{width:17.427908pt;}
._12{width:18.968790pt;}
._c{width:19.978334pt;}
._17{width:20.987877pt;}
._13{width:22.156822pt;}
._11{width:23.166366pt;}
._f{width:24.069642pt;}
._7{width:25.876193pt;}
._1f{width:27.576477pt;}
._4{width:28.586020pt;}
._14{width:30.296940pt;}
._b{width:31.880533pt;}
._5{width:33.984426pt;}
._6{width:35.867050pt;}
._5d{width:37.140573pt;}
._16{width:38.256533pt;}
._36{width:39.669749pt;}
._15{width:41.975755pt;}
._46{width:56.758252pt;}
._47{width:66.876683pt;}
._43{width:68.201693pt;}
._64{width:73.061440pt;}
._38{width:74.016176pt;}
._63{width:77.056029pt;}
._3d{width:79.645134pt;}
._42{width:85.413843pt;}
._62{width:87.598070pt;}
._45{width:90.494730pt;}
._3b{width:96.857283pt;}
._48{width:100.060232pt;}
._40{width:101.938171pt;}
._49{width:105.095346pt;}
._44{width:108.300724pt;}
._61{width:110.706485pt;}
._3c{width:113.381612pt;}
._3a{width:119.744165pt;}
._3e{width:124.825053pt;}
._41{width:131.187606pt;}
._60{width:133.552454pt;}
._1c{width:134.722066pt;}
._3f{width:136.268494pt;}
._28{width:140.874314pt;}
._34{width:142.813509pt;}
._19{width:147.491930pt;}
._5a{width:148.790002pt;}
._5b{width:150.447316pt;}
._68{width:153.406734pt;}
._20{width:154.331819pt;}
._75{width:155.291294pt;}
._72{width:157.725827pt;}
._65{width:160.748023pt;}
._55{width:163.337539pt;}
._32{width:164.776791pt;}
._6f{width:166.423921pt;}
._1b{width:170.204046pt;}
._58{width:171.808257pt;}
._5c{width:173.465571pt;}
._2e{width:176.688311pt;}
._22{width:178.097202pt;}
._70{width:179.395321pt;}
._23{width:188.691408pt;}
._6e{width:191.474143pt;}
._53{width:192.679075pt;}
._51{width:194.028610pt;}
._56{width:195.624414pt;}
._74{width:198.216570pt;}
._2c{width:200.360379pt;}
._6b{width:205.597135pt;}
._4f{width:207.066265pt;}
._26{width:212.552234pt;}
._67{width:214.109151pt;}
._50{width:215.443616pt;}
._54{width:216.740726pt;}
._73{width:218.139963pt;}
._57{width:219.502082pt;}
._31{width:223.937626pt;}
._4d{width:225.066589pt;}
._2a{width:228.491265pt;}
._33{width:232.758619pt;}
._2b{width:236.625986pt;}
._6a{width:237.846307pt;}
._27{width:239.085472pt;}
._59{width:242.520337pt;}
._4a{width:248.788602pt;}
._24{width:257.601472pt;}
._52{width:262.032722pt;}
._6d{width:263.145460pt;}
._5e{width:264.035029pt;}
._66{width:266.805638pt;}
._4c{width:271.183100pt;}
._35{width:276.685183pt;}
._71{width:281.725261pt;}
._1a{width:286.774662pt;}
._2f{width:294.385831pt;}
._69{width:306.399215pt;}
._21{width:316.012773pt;}
._1d{width:324.810614pt;}
._2d{width:341.729966pt;}
._4b{width:342.873725pt;}
._29{width:355.717187pt;}
._25{width:384.922837pt;}
._5f{width:505.264932pt;}
._39{width:517.333860pt;}
._e{width:983.021501pt;}
.fs5{font-size:31.880533pt;}
.fs21{font-size:36.553642pt;}
.fs11{font-size:36.619103pt;}
.fs2a{font-size:37.193600pt;}
.fs3{font-size:39.318933pt;}
.fs13{font-size:42.330795pt;}
.fs2{font-size:42.507200pt;}
.fs23{font-size:44.718425pt;}
.fs20{font-size:45.691937pt;}
.fs10{font-size:45.773763pt;}
.fs12{font-size:52.913361pt;}
.fs1{font-size:53.133867pt;}
.fs22{font-size:55.897890pt;}
.fs4{font-size:63.761067pt;}
.fs29{font-size:67.824488pt;}
.fs1f{font-size:69.358148pt;}
.fs1b{font-size:69.915843pt;}
.fs9{font-size:69.947298pt;}
.fsf{font-size:70.282680pt;}
.fs17{font-size:72.846714pt;}
.fs7{font-size:72.970835pt;}
.fs1d{font-size:73.039272pt;}
.fs19{font-size:73.658602pt;}
.fsd{font-size:75.750806pt;}
.fs15{font-size:75.910633pt;}
.fs25{font-size:75.959091pt;}
.fs27{font-size:75.971418pt;}
.fsb{font-size:76.354833pt;}
.fs0{font-size:76.513067pt;}
.fs28{font-size:84.780398pt;}
.fs1e{font-size:86.697468pt;}
.fs1a{font-size:87.394584pt;}
.fs8{font-size:87.433903pt;}
.fse{font-size:87.853129pt;}
.fs16{font-size:91.058164pt;}
.fs6{font-size:91.213315pt;}
.fs1c{font-size:91.298860pt;}
.fs18{font-size:92.073021pt;}
.fsc{font-size:94.688270pt;}
.fs14{font-size:94.888053pt;}
.fs24{font-size:94.948626pt;}
.fs26{font-size:94.964035pt;}
.fsa{font-size:95.443302pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:119.153333pt;}
.y21{bottom:159.004000pt;}
.y4c{bottom:159.833333pt;}
.y12a{bottom:160.258667pt;}
.yd6{bottom:160.921333pt;}
.yf3{bottom:161.357333pt;}
.y164{bottom:162.490667pt;}
.y72{bottom:167.338667pt;}
.y151{bottom:168.657333pt;}
.y86{bottom:169.465333pt;}
.y22e{bottom:170.958667pt;}
.y201{bottom:172.420000pt;}
.y18c{bottom:172.733333pt;}
.y9a{bottom:174.944000pt;}
.y20{bottom:175.480000pt;}
.y4b{bottom:175.773333pt;}
.y129{bottom:176.198667pt;}
.y163{bottom:178.430667pt;}
.y22d{bottom:182.914667pt;}
.y71{bottom:183.280000pt;}
.y200{bottom:184.376000pt;}
.y150{bottom:184.598667pt;}
.y1f{bottom:184.701333pt;}
.y85{bottom:185.405333pt;}
.y18b{bottom:188.673333pt;}
.y99{bottom:190.884000pt;}
.y4a{bottom:191.714667pt;}
.y128{bottom:192.140000pt;}
.yd5{bottom:192.226667pt;}
.yf2{bottom:192.662667pt;}
.y162{bottom:194.370667pt;}
.y1ff{bottom:196.330667pt;}
.y70{bottom:199.220000pt;}
.y14f{bottom:200.538667pt;}
.y1e{bottom:201.178667pt;}
.y84{bottom:201.345333pt;}
.y1c6{bottom:203.281333pt;}
.y18a{bottom:204.613333pt;}
.y22c{bottom:204.714667pt;}
.y1a8{bottom:206.522667pt;}
.y98{bottom:206.824000pt;}
.y49{bottom:207.654667pt;}
.y127{bottom:208.080000pt;}
.y161{bottom:210.310667pt;}
.y14e{bottom:216.478667pt;}
.y22b{bottom:216.669333pt;}
.y83{bottom:217.285333pt;}
.y1fe{bottom:218.913333pt;}
.y1c5{bottom:219.221333pt;}
.y1a7{bottom:222.464000pt;}
.y97{bottom:222.764000pt;}
.y48{bottom:223.594667pt;}
.y126{bottom:224.020000pt;}
.y6f{bottom:224.126667pt;}
.y160{bottom:226.252000pt;}
.y22a{bottom:228.625333pt;}
.y189{bottom:229.520000pt;}
.y1fd{bottom:230.868000pt;}
.y13f{bottom:231.730667pt;}
.y82{bottom:233.225333pt;}
.y1dd{bottom:233.944000pt;}
.yd4{bottom:234.045312pt;}
.y1c4{bottom:235.162667pt;}
.y1a6{bottom:238.404000pt;}
.y10e{bottom:238.704000pt;}
.y96{bottom:238.705333pt;}
.yf1{bottom:239.390040pt;}
.y47{bottom:239.534667pt;}
.y125{bottom:239.960000pt;}
.y14d{bottom:241.385333pt;}
.y1d{bottom:241.577333pt;}
.y15f{bottom:242.192000pt;}
.y1fc{bottom:242.822667pt;}
.yaf{bottom:247.670667pt;}
.yd3{bottom:247.777303pt;}
.y81{bottom:249.165333pt;}
.y1dc{bottom:249.884000pt;}
.y229{bottom:250.425333pt;}
.y1c3{bottom:251.102667pt;}
.y1a5{bottom:254.344000pt;}
.yc0{bottom:254.645333pt;}
.y46{bottom:255.474667pt;}
.y124{bottom:255.900000pt;}
.y1c{bottom:257.517333pt;}
.y15e{bottom:258.132000pt;}
.y6e{bottom:259.493333pt;}
.yd2{bottom:261.509294pt;}
.y228{bottom:262.381333pt;}
.y95{bottom:263.612000pt;}
.y188{bottom:264.888000pt;}
.y1fb{bottom:265.405333pt;}
.y1c2{bottom:267.042667pt;}
.yf0{bottom:267.858551pt;}
.y1a4{bottom:270.284000pt;}
.ybf{bottom:270.585333pt;}
.y45{bottom:271.416000pt;}
.y123{bottom:271.840000pt;}
.y1b{bottom:273.458667pt;}
.y80{bottom:274.072000pt;}
.y227{bottom:274.336000pt;}
.yd1{bottom:275.241286pt;}
.y6d{bottom:275.433333pt;}
.y1fa{bottom:277.360000pt;}
.y1db{bottom:279.573333pt;}
.y187{bottom:280.828000pt;}
.y13e{bottom:282.188000pt;}
.y1c1{bottom:282.982667pt;}
.y1a3{bottom:286.224000pt;}
.ybe{bottom:286.525333pt;}
.y44{bottom:287.356000pt;}
.y122{bottom:287.781333pt;}
.yd0{bottom:288.973277pt;}
.y6c{bottom:291.374667pt;}
.y14c{bottom:292.117333pt;}
.y226{bottom:296.136000pt;}
.yef{bottom:296.324681pt;}
.y186{bottom:296.768000pt;}
.yae{bottom:297.850667pt;}
.y94{bottom:298.148000pt;}
.y1a{bottom:298.364000pt;}
.y1c0{bottom:298.922667pt;}
.y15d{bottom:298.978667pt;}
.y1f9{bottom:299.942667pt;}
.y1a2{bottom:302.164000pt;}
.ybd{bottom:302.465333pt;}
.ycf{bottom:302.705268pt;}
.y43{bottom:303.296000pt;}
.y6b{bottom:307.314667pt;}
.y225{bottom:308.092000pt;}
.y1f8{bottom:311.897333pt;}
.y185{bottom:312.708000pt;}
.y93{bottom:314.088000pt;}
.y1bf{bottom:314.864000pt;}
.yce{bottom:316.438408pt;}
.y1a1{bottom:318.105333pt;}
.y10d{bottom:318.405333pt;}
.y42{bottom:319.236000pt;}
.y224{bottom:320.046667pt;}
.y6a{bottom:323.254667pt;}
.y1da{bottom:324.405333pt;}
.y7f{bottom:324.805333pt;}
.yee{bottom:325.738492pt;}
.ybc{bottom:327.372000pt;}
.y13d{bottom:328.169195pt;}
.y184{bottom:328.648000pt;}
.y121{bottom:329.932000pt;}
.ycd{bottom:330.170399pt;}
.y19{bottom:330.709333pt;}
.y1be{bottom:330.804000pt;}
.y1a0{bottom:334.045333pt;}
.y15c{bottom:334.345333pt;}
.y1f7{bottom:334.480000pt;}
.y41{bottom:335.176000pt;}
.y14b{bottom:338.028578pt;}
.y69{bottom:339.194667pt;}
.y223{bottom:341.848000pt;}
.y10c{bottom:343.312000pt;}
.yad{bottom:343.833970pt;}
.ycc{bottom:343.902390pt;}
.y183{bottom:344.588000pt;}
.y92{bottom:346.269333pt;}
.y1f6{bottom:346.434667pt;}
.y1bd{bottom:346.744000pt;}
.y19f{bottom:349.985333pt;}
.y15b{bottom:350.286667pt;}
.y40{bottom:351.116000pt;}
.y222{bottom:353.802667pt;}
.y1d9{bottom:354.093333pt;}
.yed{bottom:354.207003pt;}
.y13c{bottom:354.387307pt;}
.y68{bottom:355.134667pt;}
.ycb{bottom:357.634381pt;}
.y1f5{bottom:358.389333pt;}
.y182{bottom:360.529333pt;}
.y1bc{bottom:362.684000pt;}
.y14a{bottom:364.037557pt;}
.y221{bottom:365.757333pt;}
.y19e{bottom:365.925333pt;}
.y15a{bottom:366.226667pt;}
.y3f{bottom:367.057333pt;}
.yac{bottom:370.063878pt;}
.y7e{bottom:370.787304pt;}
.y67{bottom:371.074667pt;}
.yca{bottom:371.366373pt;}
.y120{bottom:375.916164pt;}
.y181{bottom:376.469333pt;}
.ybb{bottom:376.522667pt;}
.y10b{bottom:378.458667pt;}
.y1bb{bottom:378.624000pt;}
.y18{bottom:378.636000pt;}
.y1f4{bottom:380.972000pt;}
.y13b{bottom:381.478259pt;}
.y19d{bottom:381.865333pt;}
.y159{bottom:382.166667pt;}
.y3e{bottom:382.997333pt;}
.yec{bottom:383.620814pt;}
.yc9{bottom:385.099512pt;}
.y66{bottom:387.016000pt;}
.y220{bottom:387.558667pt;}
.y149{bottom:390.912415pt;}
.y180{bottom:392.409333pt;}
.y1f3{bottom:392.926667pt;}
.y91{bottom:393.053252pt;}
.y10a{bottom:394.398667pt;}
.y1ba{bottom:394.564000pt;}
.y17{bottom:394.576000pt;}
.y7d{bottom:397.019405pt;}
.yab{bottom:397.169213pt;}
.y19c{bottom:397.805333pt;}
.y158{bottom:398.106667pt;}
.yc8{bottom:398.831504pt;}
.y1d8{bottom:398.925333pt;}
.y3d{bottom:398.937333pt;}
.y21f{bottom:399.513333pt;}
.y11f{bottom:402.146072pt;}
.y65{bottom:402.956000pt;}
.y1f2{bottom:404.881333pt;}
.y17f{bottom:408.349333pt;}
.y109{bottom:410.338667pt;}
.y1b9{bottom:410.505333pt;}
.y21e{bottom:411.469333pt;}
.yc7{bottom:412.563495pt;}
.y19b{bottom:413.746667pt;}
.y157{bottom:414.046667pt;}
.y1d7{bottom:414.865333pt;}
.y3c{bottom:414.877333pt;}
.y64{bottom:418.896000pt;}
.y13a{bottom:419.786667pt;}
.y16{bottom:419.828000pt;}
.y90{bottom:421.685955pt;}
.yba{bottom:422.505970pt;}
.yeb{bottom:423.692000pt;}
.y7c{bottom:424.122546pt;}
.y108{bottom:426.278667pt;}
.yc6{bottom:426.295486pt;}
.y1b8{bottom:426.445333pt;}
.y1f1{bottom:427.464000pt;}
.y11e{bottom:429.251407pt;}
.y148{bottom:429.264000pt;}
.y156{bottom:429.986667pt;}
.y1d6{bottom:430.805333pt;}
.y3b{bottom:430.817333pt;}
.y21d{bottom:433.269333pt;}
.yaa{bottom:433.965333pt;}
.y63{bottom:434.836000pt;}
.y15{bottom:435.768000pt;}
.y1f0{bottom:439.418667pt;}
.yea{bottom:439.632000pt;}
.yc5{bottom:440.027477pt;}
.y107{bottom:442.220000pt;}
.y1b7{bottom:442.385333pt;}
.y147{bottom:445.204000pt;}
.y21c{bottom:445.224000pt;}
.y155{bottom:445.928000pt;}
.y1d5{bottom:446.745333pt;}
.y3a{bottom:446.757333pt;}
.yb9{bottom:448.735878pt;}
.ya9{bottom:449.906667pt;}
.y8f{bottom:450.321053pt;}
.y17e{bottom:450.500000pt;}
.y62{bottom:450.776000pt;}
.y1ef{bottom:451.374667pt;}
.y14{bottom:451.708000pt;}
.yc4{bottom:453.759468pt;}
.ye9{bottom:455.572000pt;}
.y19a{bottom:455.897333pt;}
.y106{bottom:458.160000pt;}
.y1b6{bottom:458.325333pt;}
.y7b{bottom:461.300000pt;}
.y139{bottom:461.558667pt;}
.y154{bottom:461.868000pt;}
.y1d4{bottom:462.686667pt;}
.y11d{bottom:465.852000pt;}
.y61{bottom:466.716000pt;}
.y21b{bottom:467.025333pt;}
.y13{bottom:467.648000pt;}
.yc3{bottom:467.949767pt;}
.ye8{bottom:471.513333pt;}
.y39{bottom:471.664000pt;}
.y1ee{bottom:473.956000pt;}
.y105{bottom:474.100000pt;}
.y1b5{bottom:474.265333pt;}
.yb8{bottom:475.841213pt;}
.y146{bottom:476.509333pt;}
.y7a{bottom:477.240000pt;}
.y153{bottom:477.808000pt;}
.y8e{bottom:478.953756pt;}
.y21a{bottom:478.980000pt;}
.ya8{bottom:480.830667pt;}
.yc2{bottom:481.681758pt;}
.y60{bottom:482.657333pt;}
.y12{bottom:483.589333pt;}
.y1ed{bottom:485.912000pt;}
.ye7{bottom:487.453333pt;}
.y104{bottom:490.040000pt;}
.y1d3{bottom:492.374667pt;}
.y17d{bottom:493.331103pt;}
.y152{bottom:493.748000pt;}
.yc1{bottom:495.872057pt;}
.y5f{bottom:498.597333pt;}
.y1b4{bottom:499.172000pt;}
.y11{bottom:499.529333pt;}
.y219{bottom:500.781333pt;}
.y199{bottom:501.881498pt;}
.ye6{bottom:503.393333pt;}
.y103{bottom:505.980000pt;}
.y8d{bottom:507.586459pt;}
.y138{bottom:508.005876pt;}
.y1ec{bottom:508.493333pt;}
.y79{bottom:508.545333pt;}
.y38{bottom:509.688000pt;}
.y17c{bottom:510.100302pt;}
.yb7{bottom:511.928000pt;}
.y11c{bottom:512.198053pt;}
.y218{bottom:512.736000pt;}
.y5e{bottom:514.537333pt;}
.y10{bottom:515.469333pt;}
.ye5{bottom:519.333333pt;}
.y102{bottom:521.921333pt;}
.y145{bottom:522.878959pt;}
.y217{bottom:524.690667pt;}
.y37{bottom:525.629333pt;}
.y17b{bottom:526.869501pt;}
.ya7{bottom:527.539332pt;}
.yb6{bottom:527.868000pt;}
.y198{bottom:528.111405pt;}
.y5d{bottom:530.477333pt;}
.y1eb{bottom:531.076000pt;}
.yf{bottom:531.409333pt;}
.y1d2{bottom:534.525333pt;}
.ye4{bottom:535.273333pt;}
.y137{bottom:535.627505pt;}
.y8c{bottom:536.219163pt;}
.y101{bottom:537.861333pt;}
.y11b{bottom:539.515228pt;}
.y1b3{bottom:541.324000pt;}
.y36{bottom:541.569333pt;}
.y1ea{bottom:543.030667pt;}
.y17a{bottom:544.198374pt;}
.y5c{bottom:546.417333pt;}
.y216{bottom:546.492000pt;}
.ye{bottom:547.349333pt;}
.y144{bottom:550.268342pt;}
.ye3{bottom:551.213333pt;}
.y100{bottom:553.801333pt;}
.y78{bottom:554.908289pt;}
.y197{bottom:555.216740pt;}
.ya6{bottom:555.945528pt;}
.y35{bottom:557.509333pt;}
.yb5{bottom:558.082667pt;}
.y215{bottom:558.446667pt;}
.y5b{bottom:562.357333pt;}
.y136{bottom:563.251445pt;}
.yd{bottom:563.289333pt;}
.y8b{bottom:564.851866pt;}
.y1e9{bottom:565.612000pt;}
.y11a{bottom:566.832403pt;}
.ye2{bottom:567.154667pt;}
.yff{bottom:569.741333pt;}
.y214{bottom:570.402667pt;}
.y34{bottom:573.449333pt;}
.y179{bottom:575.505333pt;}
.y1e8{bottom:577.568000pt;}
.y143{bottom:577.657726pt;}
.y5a{bottom:578.298667pt;}
.yc{bottom:579.230667pt;}
.y1d1{bottom:580.508637pt;}
.y77{bottom:582.272009pt;}
.ye1{bottom:583.094667pt;}
.ya5{bottom:585.299785pt;}
.yfe{bottom:585.681333pt;}
.y1b2{bottom:587.305970pt;}
.y33{bottom:589.389333pt;}
.y135{bottom:590.873074pt;}
.y196{bottom:591.817333pt;}
.y213{bottom:592.202667pt;}
.y8a{bottom:593.484569pt;}
.y119{bottom:594.151863pt;}
.y59{bottom:594.238667pt;}
.yb{bottom:595.170667pt;}
.ye0{bottom:599.034667pt;}
.y1e7{bottom:600.149333pt;}
.yfd{bottom:601.621333pt;}
.yb4{bottom:604.108194pt;}
.y212{bottom:604.157333pt;}
.y32{bottom:605.329333pt;}
.y142{bottom:605.961234pt;}
.y1d0{bottom:606.740739pt;}
.y76{bottom:609.635729pt;}
.y58{bottom:610.178667pt;}
.ya{bottom:611.110667pt;}
.y1e6{bottom:612.105333pt;}
.y1b1{bottom:613.538072pt;}
.ya4{bottom:613.705981pt;}
.ydf{bottom:614.974667pt;}
.y211{bottom:616.113333pt;}
.y178{bottom:617.314907pt;}
.yfc{bottom:617.562667pt;}
.y134{bottom:618.494703pt;}
.y31{bottom:621.270667pt;}
.y118{bottom:621.469038pt;}
.y89{bottom:623.072893pt;}
.y57{bottom:626.118667pt;}
.y9{bottom:627.050667pt;}
.yb3{bottom:630.463868pt;}
.yde{bottom:630.914667pt;}
.y177{bottom:631.022351pt;}
.y141{bottom:633.350617pt;}
.yfb{bottom:633.502667pt;}
.y1cf{bottom:633.843879pt;}
.y1e5{bottom:634.686667pt;}
.y30{bottom:637.210667pt;}
.y75{bottom:637.912717pt;}
.y210{bottom:637.913333pt;}
.y195{bottom:638.553863pt;}
.y1b0{bottom:640.641213pt;}
.y8{bottom:642.990667pt;}
.ya3{bottom:643.060238pt;}
.y176{bottom:644.729794pt;}
.y133{bottom:646.116332pt;}
.y1e4{bottom:646.642667pt;}
.ydd{bottom:646.856000pt;}
.y117{bottom:648.786213pt;}
.yfa{bottom:649.442667pt;}
.y20f{bottom:649.869333pt;}
.y56{bottom:651.025333pt;}
.y88{bottom:651.705596pt;}
.y2f{bottom:653.150667pt;}
.yb2{bottom:657.699167pt;}
.y175{bottom:658.437238pt;}
.y7{bottom:658.930667pt;}
.y140{bottom:661.654125pt;}
.y20e{bottom:661.824000pt;}
.y74{bottom:665.276437pt;}
.yf9{bottom:665.382667pt;}
.y194{bottom:667.038165pt;}
.y2e{bottom:669.090667pt;}
.y1ce{bottom:670.446667pt;}
.ydc{bottom:671.761333pt;}
.y174{bottom:672.145828pt;}
.y1e3{bottom:673.673333pt;}
.y132{bottom:673.737961pt;}
.y116{bottom:676.103388pt;}
.y1af{bottom:677.244000pt;}
.y55{bottom:678.589333pt;}
.y87{bottom:681.293921pt;}
.y6{bottom:682.452000pt;}
.ya2{bottom:682.708000pt;}
.y20d{bottom:683.625333pt;}
.yb1{bottom:684.054842pt;}
.y2d{bottom:685.030667pt;}
.y173{bottom:685.853272pt;}
.yf8{bottom:690.289333pt;}
.y73{bottom:693.553425pt;}
.y193{bottom:695.522467pt;}
.y20c{bottom:695.580000pt;}
.ya1{bottom:698.648000pt;}
.y172{bottom:699.560715pt;}
.y2c{bottom:700.970667pt;}
.y131{bottom:701.359590pt;}
.y115{bottom:703.420563pt;}
.y20b{bottom:707.534667pt;}
.y54{bottom:710.934667pt;}
.yb0{bottom:711.290141pt;}
.y1e2{bottom:711.333333pt;}
.y171{bottom:713.268159pt;}
.ya0{bottom:714.588000pt;}
.y1cd{bottom:716.164328pt;}
.y2b{bottom:716.912000pt;}
.y1ae{bottom:723.979529pt;}
.y192{bottom:724.006769pt;}
.ydb{bottom:725.077333pt;}
.y170{bottom:726.975603pt;}
.y130{bottom:728.983529pt;}
.y20a{bottom:729.336000pt;}
.y9f{bottom:730.528000pt;}
.y114{bottom:730.737738pt;}
.y2a{bottom:732.852000pt;}
.y233{bottom:736.837333pt;}
.yf7{bottom:740.309333pt;}
.y16f{bottom:740.684193pt;}
.y209{bottom:741.290667pt;}
.y1cc{bottom:741.598192pt;}
.y29{bottom:748.792000pt;}
.y1ad{bottom:752.470837pt;}
.y191{bottom:752.491071pt;}
.y16e{bottom:754.391636pt;}
.y53{bottom:755.765333pt;}
.y1e1{bottom:756.164000pt;}
.y12f{bottom:756.605158pt;}
.y113{bottom:758.057198pt;}
.y208{bottom:763.092000pt;}
.y28{bottom:764.732000pt;}
.y1cb{bottom:767.032056pt;}
.yda{bottom:767.609343pt;}
.y16d{bottom:768.099080pt;}
.y5{bottom:771.374667pt;}
.y52{bottom:771.706667pt;}
.y9e{bottom:771.917333pt;}
.y207{bottom:775.046667pt;}
.y27{bottom:780.672000pt;}
.y1ac{bottom:780.959761pt;}
.y190{bottom:780.975372pt;}
.y16c{bottom:781.806524pt;}
.y232{bottom:783.329333pt;}
.yd9{bottom:783.483192pt;}
.y12e{bottom:784.226787pt;}
.y112{bottom:785.374373pt;}
.y1e0{bottom:785.853333pt;}
.yf6{bottom:786.292637pt;}
.y51{bottom:787.646667pt;}
.y4{bottom:791.964000pt;}
.y1ca{bottom:792.468047pt;}
.y16b{bottom:795.513967pt;}
.y26{bottom:796.612000pt;}
.y206{bottom:796.846667pt;}
.yd8{bottom:799.357041pt;}
.y50{bottom:803.586667pt;}
.y231{bottom:805.910667pt;}
.y205{bottom:808.802667pt;}
.y16a{bottom:809.221411pt;}
.y1ab{bottom:810.397125pt;}
.y18f{bottom:810.410342pt;}
.yf5{bottom:812.522545pt;}
.y3{bottom:812.553333pt;}
.y12d{bottom:812.770292pt;}
.y111{bottom:813.600978pt;}
.yd7{bottom:815.760682pt;}
.y230{bottom:817.866667pt;}
.y9d{bottom:817.900637pt;}
.y1c9{bottom:818.748643pt;}
.y4f{bottom:819.526667pt;}
.y169{bottom:822.930001pt;}
.y25{bottom:828.493333pt;}
.y22f{bottom:829.821333pt;}
.y204{bottom:830.602667pt;}
.y1df{bottom:830.685333pt;}
.y4e{bottom:835.466667pt;}
.y168{bottom:836.637445pt;}
.y1aa{bottom:838.888432pt;}
.y18e{bottom:838.894644pt;}
.yf4{bottom:839.627879pt;}
.y12c{bottom:840.391921pt;}
.y110{bottom:840.920438pt;}
.y203{bottom:842.558667pt;}
.y9c{bottom:844.130545pt;}
.y1c8{bottom:844.182507pt;}
.y24{bottom:844.433333pt;}
.y1de{bottom:846.625333pt;}
.y167{bottom:850.801230pt;}
.y4d{bottom:851.406667pt;}
.y2{bottom:852.404000pt;}
.y23{bottom:860.373333pt;}
.y202{bottom:864.358667pt;}
.y166{bottom:864.509820pt;}
.y1a9{bottom:868.325796pt;}
.y18d{bottom:868.329614pt;}
.y12b{bottom:868.933116pt;}
.y10f{bottom:869.147043pt;}
.y1c7{bottom:870.465230pt;}
.y9b{bottom:871.235879pt;}
.y1{bottom:876.313333pt;}
.y165{bottom:878.673605pt;}
.h9{height:22.922103pt;}
.hb{height:23.400311pt;}
.h22{height:27.300102pt;}
.h23{height:27.523264pt;}
.h3{height:29.159939pt;}
.ha{height:31.200285pt;}
.h1c{height:33.537882pt;}
.h13{height:33.597942pt;}
.h4{height:36.874903pt;}
.he{height:37.299379pt;}
.h1e{height:37.304713pt;}
.h14{height:38.838407pt;}
.h2{height:39.000258pt;}
.h6{height:39.319061pt;}
.h1d{height:41.029052pt;}
.h8{height:44.250180pt;}
.hc{height:46.258122pt;}
.h5{height:46.263455pt;}
.h19{height:48.145430pt;}
.h7{height:53.100068pt;}
.h1{height:56.160591pt;}
.h21{height:62.228812pt;}
.h1b{height:63.635941pt;}
.h18{height:64.147625pt;}
.hf{height:64.176485pt;}
.h12{height:64.484197pt;}
.h16{height:66.836692pt;}
.hd{height:66.950573pt;}
.h1a{height:67.013364pt;}
.h17{height:67.581597pt;}
.h11{height:69.501190pt;}
.h15{height:69.647831pt;}
.h1f{height:69.692291pt;}
.h20{height:69.703601pt;}
.h10{height:70.055384pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x1c{left:181.218596pt;}
.xe{left:184.058967pt;}
.x2e{left:184.997333pt;}
.x7{left:190.262667pt;}
.x9{left:192.837333pt;}
.x8{left:197.486667pt;}
.x23{left:198.499982pt;}
.xc{left:199.804264pt;}
.x1{left:200.772000pt;}
.x2c{left:204.525333pt;}
.x2d{left:207.129333pt;}
.x12{left:210.606547pt;}
.x22{left:211.905333pt;}
.x24{left:213.090667pt;}
.x10{left:215.444000pt;}
.x1e{left:216.624000pt;}
.x16{left:218.398667pt;}
.x2b{left:219.552000pt;}
.x29{left:222.729906pt;}
.x13{left:224.009333pt;}
.x18{left:225.965333pt;}
.xb{left:227.591429pt;}
.xf{left:230.470667pt;}
.x15{left:233.425333pt;}
.x2{left:236.990667pt;}
.x11{left:239.679937pt;}
.x4{left:260.504000pt;}
.x5{left:273.336000pt;}
.x1d{left:280.409386pt;}
.x1b{left:291.590265pt;}
.x27{left:294.985836pt;}
.x26{left:306.392080pt;}
.x1a{left:307.680414pt;}
.x25{left:320.311642pt;}
.x19{left:321.623755pt;}
.x3{left:360.866667pt;}
.x14{left:363.923094pt;}
.x1f{left:375.227233pt;}
.x28{left:378.968928pt;}
.x17{left:381.365469pt;}
.x21{left:384.628853pt;}
.x20{left:400.856000pt;}
.xa{left:404.177333pt;}
.xd{left:414.143102pt;}
.x2a{left:415.150756pt;}
}




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