
    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_543762b528a16239cc32cee8.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e534e978f3b54bda544e832a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.951000;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_dfc59b1afb2cc32ec17ebd77.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6c50d87ad7ec24d92e445ee1.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2c6d2702376b6801549bf3e7.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ff434c4b717c0e75d1700987.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_475411a9960238a48f8b42ab.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_acbaa188cf2be5634e119069.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.444000;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_d2d86d2de64662bb113a731c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_96621890e89938982b75ebf2.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b35c75776e4cc38c74fa60b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919000;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:-16.164000px;}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:1.932000px;}
.v7{vertical-align:6.414000px;}
.va{vertical-align:13.242000px;}
.v6{vertical-align:22.584000px;}
.v3{vertical-align:23.760000px;}
.v5{vertical-align:28.854000px;}
.vd{vertical-align:42.810000px;}
.v4{vertical-align:44.904000px;}
.v8{vertical-align:46.344000px;}
.v9{vertical-align:48.378000px;}
.vb{vertical-align:51.438000px;}
.vc{vertical-align:54.132000px;}
.ve{vertical-align:75.732000px;}
.ls0{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.001605px;}
.ls32{letter-spacing:0.001621px;}
.ls7{letter-spacing:0.002161px;}
.lsf{letter-spacing:0.002700px;}
.ls30{letter-spacing:0.003146px;}
.ls23{letter-spacing:0.003248px;}
.ls1d{letter-spacing:0.005411px;}
.ls2e{letter-spacing:2.984504px;}
.ls27{letter-spacing:2.987330px;}
.ls40{letter-spacing:2.987366px;}
.ls3c{letter-spacing:2.987878px;}
.ls1a{letter-spacing:2.988430px;}
.ls3a{letter-spacing:2.989572px;}
.ls2a{letter-spacing:2.993330px;}
.ls35{letter-spacing:4.382159px;}
.ls31{letter-spacing:10.160504px;}
.ls2d{letter-spacing:10.166504px;}
.ls33{letter-spacing:10.906321px;}
.ls2{letter-spacing:15.349621px;}
.ls16{letter-spacing:16.249621px;}
.ls4d{letter-spacing:16.777621px;}
.ls53{letter-spacing:17.263621px;}
.ls17{letter-spacing:17.497621px;}
.ls3e{letter-spacing:17.531366px;}
.ls1c{letter-spacing:17.537330px;}
.ls15{letter-spacing:18.133621px;}
.ls4c{letter-spacing:18.319621px;}
.ls3d{letter-spacing:18.412321px;}
.ls14{letter-spacing:18.589621px;}
.ls51{letter-spacing:18.865621px;}
.ls34{letter-spacing:19.429621px;}
.ls13{letter-spacing:19.549621px;}
.ls4{letter-spacing:19.573621px;}
.ls4e{letter-spacing:19.591621px;}
.lsc{letter-spacing:20.101621px;}
.lsb{letter-spacing:20.254321px;}
.ls18{letter-spacing:20.263621px;}
.ls42{letter-spacing:20.653572px;}
.ls9{letter-spacing:20.665621px;}
.ls44{letter-spacing:20.857621px;}
.ls4a{letter-spacing:20.959621px;}
.ls1e{letter-spacing:21.167330px;}
.ls1b{letter-spacing:21.173330px;}
.ls52{letter-spacing:21.679621px;}
.ls46{letter-spacing:21.793621px;}
.ls39{letter-spacing:21.799621px;}
.ls25{letter-spacing:21.842700px;}
.ls4b{letter-spacing:22.249621px;}
.ls12{letter-spacing:22.339621px;}
.lsd{letter-spacing:22.957621px;}
.ls28{letter-spacing:23.250430px;}
.ls5{letter-spacing:23.659621px;}
.ls10{letter-spacing:23.821621px;}
.ls20{letter-spacing:24.086580px;}
.ls24{letter-spacing:24.092580px;}
.ls8{letter-spacing:24.463621px;}
.ls19{letter-spacing:24.512700px;}
.ls47{letter-spacing:24.679621px;}
.ls37{letter-spacing:24.769621px;}
.ls43{letter-spacing:24.781572px;}
.ls36{letter-spacing:25.039621px;}
.lse{letter-spacing:25.045621px;}
.ls3b{letter-spacing:25.128430px;}
.ls22{letter-spacing:25.913413px;}
.ls6{letter-spacing:26.497621px;}
.ls4f{letter-spacing:26.653621px;}
.ls26{letter-spacing:27.722580px;}
.ls38{letter-spacing:28.507621px;}
.lsa{letter-spacing:28.612321px;}
.ls3{letter-spacing:28.795621px;}
.ls29{letter-spacing:29.082430px;}
.ls48{letter-spacing:29.935621px;}
.ls49{letter-spacing:30.283621px;}
.ls11{letter-spacing:32.342159px;}
.ls54{letter-spacing:32.724525px;}
.ls55{letter-spacing:32.728321px;}
.ls50{letter-spacing:32.839621px;}
.ls2f{letter-spacing:38.031244px;}
.ls2b{letter-spacing:38.469244px;}
.ls1{letter-spacing:43.886700px;}
.ls2c{letter-spacing:50.895244px;}
.ls56{letter-spacing:69.000525px;}
.ls3f{letter-spacing:151.616700px;}
.ls41{letter-spacing:693.926161px;}
.ls21{letter-spacing:973.664580px;}
.ls1f{letter-spacing:1015.085330px;}
.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;}
}
.ws2d{word-spacing:-32.727300px;}
.ws12{word-spacing:-29.887800px;}
.ws6{word-spacing:-25.513315px;}
.ws3{word-spacing:-25.369709px;}
.ws11e{word-spacing:-21.820436px;}
.ws124{word-spacing:-21.819929px;}
.ws11f{word-spacing:-21.814436px;}
.ws2{word-spacing:-19.418971px;}
.ws15{word-spacing:-18.327288px;}
.ws115{word-spacing:-18.130924px;}
.wsd9{word-spacing:-17.803651px;}
.ws176{word-spacing:-17.607287px;}
.ws27{word-spacing:-17.476378px;}
.ws26{word-spacing:-17.432644px;}
.ws25{word-spacing:-17.410924px;}
.ws132{word-spacing:-17.280014px;}
.ws34{word-spacing:-17.231082px;}
.ws33{word-spacing:-17.214560px;}
.ws152{word-spacing:-17.083651px;}
.wsa1{word-spacing:-17.018196px;}
.ws7f{word-spacing:-16.821832px;}
.ws168{word-spacing:-16.690923px;}
.ws110{word-spacing:-16.625468px;}
.ws10f{word-spacing:-16.560014px;}
.wsc7{word-spacing:-16.494559px;}
.wsc8{word-spacing:-16.478341px;}
.ws90{word-spacing:-16.429105px;}
.ws75{word-spacing:-16.363650px;}
.ws17a{word-spacing:-16.298195px;}
.ws4e{word-spacing:-16.182514px;}
.ws97{word-spacing:-16.167286px;}
.ws189{word-spacing:-16.101832px;}
.ws139{word-spacing:-16.036377px;}
.ws100{word-spacing:-15.970922px;}
.ws8b{word-spacing:-15.840013px;}
.ws10a{word-spacing:-15.709104px;}
.wse2{word-spacing:-15.643649px;}
.wsdd{word-spacing:-15.578195px;}
.wsdf{word-spacing:-15.512740px;}
.ws105{word-spacing:-15.447286px;}
.wsec{word-spacing:-15.381831px;}
.wsca{word-spacing:-15.316376px;}
.wscd{word-spacing:-15.295783px;}
.ws5d{word-spacing:-15.250922px;}
.wscb{word-spacing:-15.228158px;}
.ws187{word-spacing:-15.185467px;}
.ws16f{word-spacing:-15.120013px;}
.wse5{word-spacing:-15.054558px;}
.ws83{word-spacing:-14.923649px;}
.ws56{word-spacing:-14.858194px;}
.ws44{word-spacing:-14.792740px;}
.wsf8{word-spacing:-14.727285px;}
.ws5a{word-spacing:-14.596376px;}
.ws15c{word-spacing:-14.545318px;}
.ws1e{word-spacing:-14.530921px;}
.ws24{word-spacing:-14.465467px;}
.ws8c{word-spacing:-14.400012px;}
.wsdb{word-spacing:-14.334557px;}
.wsdc{word-spacing:-14.269103px;}
.wsd2{word-spacing:-14.203648px;}
.wsc3{word-spacing:-14.197795px;}
.ws86{word-spacing:-14.138194px;}
.wsc1{word-spacing:-14.136118px;}
.ws85{word-spacing:-14.072739px;}
.ws47{word-spacing:-14.007284px;}
.ws48{word-spacing:-14.004152px;}
.ws9a{word-spacing:-13.941830px;}
.ws10e{word-spacing:-13.876375px;}
.ws126{word-spacing:-13.810921px;}
.ws180{word-spacing:-13.745466px;}
.ws10d{word-spacing:-13.680011px;}
.ws107{word-spacing:-13.614557px;}
.wsa9{word-spacing:-13.549102px;}
.ws5{word-spacing:-13.485466px;}
.ws4c{word-spacing:-13.483648px;}
.ws4b{word-spacing:-13.447768px;}
.ws16{word-spacing:-13.418193px;}
.wsc6{word-spacing:-13.352738px;}
.ws12a{word-spacing:-13.300583px;}
.ws129{word-spacing:-13.287284px;}
.ws10b{word-spacing:-13.221829px;}
.wsbc{word-spacing:-13.180583px;}
.wsbb{word-spacing:-13.176152px;}
.ws39{word-spacing:-13.156375px;}
.ws82{word-spacing:-13.090920px;}
.ws1f{word-spacing:-13.025465px;}
.ws6d{word-spacing:-12.960011px;}
.ws13e{word-spacing:-12.894556px;}
.ws104{word-spacing:-12.829152px;}
.ws2f{word-spacing:-12.829102px;}
.ws79{word-spacing:-12.783197px;}
.ws40{word-spacing:-12.763647px;}
.ws7a{word-spacing:-12.698192px;}
.ws88{word-spacing:-12.691783px;}
.ws87{word-spacing:-12.678850px;}
.ws2e{word-spacing:-12.632738px;}
.ws5f{word-spacing:-12.567283px;}
.ws23{word-spacing:-12.501829px;}
.wscf{word-spacing:-12.464389px;}
.ws157{word-spacing:-12.464104px;}
.ws78{word-spacing:-12.461082px;}
.wsd1{word-spacing:-12.460583px;}
.ws77{word-spacing:-12.436374px;}
.wse9{word-spacing:-12.305465px;}
.ws7e{word-spacing:-12.240010px;}
.wsfe{word-spacing:-12.174556px;}
.ws64{word-spacing:-12.109101px;}
.ws65{word-spacing:-12.058583px;}
.ws67{word-spacing:-12.043646px;}
.ws164{word-spacing:-11.978192px;}
.ws165{word-spacing:-11.912737px;}
.ws5c{word-spacing:-11.847283px;}
.ws96{word-spacing:-11.781828px;}
.ws98{word-spacing:-11.716373px;}
.ws14{word-spacing:-11.716018px;}
.ws10c{word-spacing:-11.650919px;}
.wsd6{word-spacing:-11.585464px;}
.wsd7{word-spacing:-11.520010px;}
.wsff{word-spacing:-11.507636px;}
.wsa4{word-spacing:-11.485783px;}
.wsa3{word-spacing:-11.454555px;}
.ws91{word-spacing:-11.389100px;}
.ws15a{word-spacing:-11.323646px;}
.ws7c{word-spacing:-11.258191px;}
.wsb9{word-spacing:-11.192737px;}
.wsaf{word-spacing:-11.127282px;}
.ws17d{word-spacing:-11.061827px;}
.ws4{word-spacing:-10.996373px;}
.wseb{word-spacing:-10.995536px;}
.ws103{word-spacing:-10.993820px;}
.wsfd{word-spacing:-10.935475px;}
.ws109{word-spacing:-10.933820px;}
.ws192{word-spacing:-10.932938px;}
.ws13c{word-spacing:-10.932824px;}
.ws17{word-spacing:-10.930918px;}
.wsb6{word-spacing:-10.930583px;}
.ws15b{word-spacing:-10.929550px;}
.ws13a{word-spacing:-10.928389px;}
.ws19a{word-spacing:-10.928339px;}
.ws17e{word-spacing:-10.882634px;}
.ws21{word-spacing:-10.865464px;}
.ws37{word-spacing:-10.800009px;}
.ws5e{word-spacing:-10.734554px;}
.wse4{word-spacing:-10.669100px;}
.ws30{word-spacing:-10.603645px;}
.ws31{word-spacing:-10.596152px;}
.ws55{word-spacing:-10.538191px;}
.wsd4{word-spacing:-10.472736px;}
.wsae{word-spacing:-10.407281px;}
.ws1d{word-spacing:-10.341827px;}
.ws60{word-spacing:-10.276372px;}
.ws61{word-spacing:-10.255712px;}
.ws84{word-spacing:-10.210918px;}
.wsb5{word-spacing:-10.080008px;}
.wsa2{word-spacing:-10.014554px;}
.ws108{word-spacing:-9.949099px;}
.ws6c{word-spacing:-9.883645px;}
.wse3{word-spacing:-9.818190px;}
.ws8e{word-spacing:-9.766583px;}
.ws8d{word-spacing:-9.752735px;}
.ws71{word-spacing:-9.687281px;}
.ws72{word-spacing:-9.669424px;}
.wsf7{word-spacing:-9.621826px;}
.ws13{word-spacing:-9.564096px;}
.ws151{word-spacing:-9.556372px;}
.wsed{word-spacing:-9.490917px;}
.wsfb{word-spacing:-9.425462px;}
.wsa7{word-spacing:-9.360008px;}
.ws160{word-spacing:-9.294553px;}
.ws6b{word-spacing:-9.229099px;}
.ws3e{word-spacing:-9.098189px;}
.ws3f{word-spacing:-9.032735px;}
.ws6e{word-spacing:-8.967280px;}
.ws9c{word-spacing:-8.906328px;}
.ws9b{word-spacing:-8.901826px;}
.ws43{word-spacing:-8.836371px;}
.ws6f{word-spacing:-8.705462px;}
.ws7b{word-spacing:-8.640007px;}
.ws127{word-spacing:-8.574553px;}
.ws161{word-spacing:-8.509098px;}
.ws3c{word-spacing:-8.443643px;}
.wsbe{word-spacing:-8.378189px;}
.ws63{word-spacing:-8.312734px;}
.ws111{word-spacing:-8.248548px;}
.ws20{word-spacing:-8.247280px;}
.ws1c{word-spacing:-8.181825px;}
.wsf3{word-spacing:-8.116370px;}
.ws22{word-spacing:-8.050916px;}
.ws10{word-spacing:-8.009930px;}
.ws135{word-spacing:-7.985461px;}
.ws134{word-spacing:-7.960548px;}
.ws128{word-spacing:-7.920007px;}
.ws9{word-spacing:-7.890379px;}
.ws4a{word-spacing:-7.789097px;}
.ws92{word-spacing:-7.723643px;}
.ws12f{word-spacing:-7.690583px;}
.ws93{word-spacing:-7.682328px;}
.ws32{word-spacing:-7.658188px;}
.ws28{word-spacing:-7.592734px;}
.wsba{word-spacing:-7.527279px;}
.ws45{word-spacing:-7.396370px;}
.ws153{word-spacing:-7.366583px;}
.ws7d{word-spacing:-7.330915px;}
.ws3b{word-spacing:-7.265461px;}
.ws113{word-spacing:-7.200006px;}
.ws14f{word-spacing:-7.149550px;}
.wse6{word-spacing:-7.134551px;}
.ws3d{word-spacing:-7.069097px;}
.wsf0{word-spacing:-7.003642px;}
.wsb8{word-spacing:-6.938188px;}
.ws158{word-spacing:-6.872733px;}
.ws1{word-spacing:-6.814418px;}
.wsa0{word-spacing:-6.741824px;}
.ws162{word-spacing:-6.676369px;}
.ws70{word-spacing:-6.610915px;}
.ws46{word-spacing:-6.545460px;}
.wsb{word-spacing:-6.515540px;}
.ws81{word-spacing:-6.480005px;}
.ws36{word-spacing:-6.414551px;}
.ws35{word-spacing:-6.401008px;}
.ws13f{word-spacing:-6.349096px;}
.ws42{word-spacing:-6.283642px;}
.ws12d{word-spacing:-6.232548px;}
.ws1b{word-spacing:-6.218187px;}
.wsb2{word-spacing:-6.152732px;}
.wsb1{word-spacing:-6.087278px;}
.ws41{word-spacing:-6.021823px;}
.ws80{word-spacing:-5.890914px;}
.ws4d{word-spacing:-5.760005px;}
.wsb3{word-spacing:-5.694550px;}
.ws68{word-spacing:-5.629096px;}
.ws9f{word-spacing:-5.563641px;}
.ws1a{word-spacing:-5.508941px;}
.ws5b{word-spacing:-5.432732px;}
.ws14c{word-spacing:-5.422864px;}
.ws7{word-spacing:-5.379804px;}
.ws95{word-spacing:-5.301823px;}
.ws38{word-spacing:-5.236368px;}
.ws198{word-spacing:-5.170913px;}
.ws141{word-spacing:-5.105459px;}
.ws49{word-spacing:-5.040004px;}
.ws114{word-spacing:-4.974550px;}
.ws163{word-spacing:-4.909095px;}
.wsaa{word-spacing:-4.843640px;}
.wsab{word-spacing:-4.778186px;}
.ws184{word-spacing:-4.712731px;}
.ws156{word-spacing:-4.647277px;}
.ws155{word-spacing:-4.581822px;}
.ws102{word-spacing:-4.519066px;}
.ws8a{word-spacing:-4.516367px;}
.ws6a{word-spacing:-4.450913px;}
.ws57{word-spacing:-4.385458px;}
.wsb4{word-spacing:-4.320004px;}
.ws138{word-spacing:-4.287256px;}
.ws136{word-spacing:-4.254549px;}
.ws137{word-spacing:-4.217082px;}
.ws50{word-spacing:-4.189094px;}
.ws51{word-spacing:-4.163981px;}
.ws74{word-spacing:-4.123640px;}
.ws29{word-spacing:-3.992731px;}
.ws2b{word-spacing:-3.934583px;}
.ws2a{word-spacing:-3.927276px;}
.wse8{word-spacing:-3.796367px;}
.ws175{word-spacing:-3.732779px;}
.ws179{word-spacing:-3.731579px;}
.wse1{word-spacing:-3.730912px;}
.ws17c{word-spacing:-3.730661px;}
.ws172{word-spacing:-3.726779px;}
.ws199{word-spacing:-3.668383px;}
.wsf4{word-spacing:-3.600003px;}
.wsa8{word-spacing:-3.534548px;}
.ws8{word-spacing:-3.526760px;}
.wsb0{word-spacing:-3.403639px;}
.ws116{word-spacing:-3.338185px;}
.ws117{word-spacing:-3.304034px;}
.wsf{word-spacing:-3.287658px;}
.ws167{word-spacing:-3.207275px;}
.wsac{word-spacing:-3.141821px;}
.wsc{word-spacing:-3.108331px;}
.wsc0{word-spacing:-3.010912px;}
.wsbf{word-spacing:-2.945457px;}
.wsa6{word-spacing:-2.880002px;}
.wsf1{word-spacing:-2.618184px;}
.ws133{word-spacing:-2.552729px;}
.wsd3{word-spacing:-2.487275px;}
.ws99{word-spacing:-2.421820px;}
.ws197{word-spacing:-2.356366px;}
.wsda{word-spacing:-2.290911px;}
.ws53{word-spacing:-2.225456px;}
.ws18a{word-spacing:-2.160002px;}
.ws142{word-spacing:-2.094547px;}
.wsa{word-spacing:-2.092146px;}
.wsc9{word-spacing:-2.026495px;}
.ws13d{word-spacing:-1.963638px;}
.ws4f{word-spacing:-1.898183px;}
.wsd{word-spacing:-1.853044px;}
.ws13b{word-spacing:-1.767274px;}
.ws58{word-spacing:-1.636365px;}
.ws59{word-spacing:-1.570910px;}
.ws14e{word-spacing:-1.505456px;}
.ws54{word-spacing:-1.309092px;}
.ws69{word-spacing:-1.243637px;}
.ws14d{word-spacing:-1.178183px;}
.ws193{word-spacing:-1.112728px;}
.wsde{word-spacing:-1.095874px;}
.wsd5{word-spacing:-0.981819px;}
.wsf5{word-spacing:-0.850910px;}
.wscc{word-spacing:-0.809042px;}
.wsce{word-spacing:-0.803042px;}
.wse{word-spacing:-0.777083px;}
.ws182{word-spacing:-0.458182px;}
.wsd8{word-spacing:-0.365341px;}
.wse7{word-spacing:-0.196364px;}
.wsc5{word-spacing:-0.137588px;}
.wsfa{word-spacing:-0.130909px;}
.ws123{word-spacing:-0.093539px;}
.ws18{word-spacing:0.000000px;}
.ws18b{word-spacing:0.065455px;}
.wse0{word-spacing:0.196364px;}
.wsc4{word-spacing:0.286775px;}
.wsc2{word-spacing:0.292775px;}
.ws17f{word-spacing:0.392728px;}
.ws16e{word-spacing:0.589091px;}
.ws12c{word-spacing:0.720001px;}
.ws18e{word-spacing:1.112728px;}
.wsbd{word-spacing:1.231502px;}
.ws16d{word-spacing:1.701820px;}
.ws89{word-spacing:1.788410px;}
.wsd0{word-spacing:1.999501px;}
.ws181{word-spacing:2.029093px;}
.ws9e{word-spacing:2.356366px;}
.ws66{word-spacing:2.375319px;}
.ws12b{word-spacing:2.552729px;}
.wsa5{word-spacing:3.028773px;}
.ws17b{word-spacing:3.076366px;}
.ws147{word-spacing:3.466062px;}
.ws19{word-spacing:3.469094px;}
.wsb7{word-spacing:3.471682px;}
.ws101{word-spacing:3.531136px;}
.ws18d{word-spacing:3.534548px;}
.ws19b{word-spacing:3.574586px;}
.ws12e{word-spacing:3.796367px;}
.ws174{word-spacing:3.927276px;}
.wsad{word-spacing:4.076045px;}
.ws16a{word-spacing:4.450913px;}
.ws8f{word-spacing:4.634044px;}
.ws0{word-spacing:4.662497px;}
.ws15d{word-spacing:4.706830px;}
.ws76{word-spacing:4.909095px;}
.ws170{word-spacing:5.040004px;}
.ws169{word-spacing:5.105459px;}
.ws178{word-spacing:5.432732px;}
.ws9d{word-spacing:5.511680px;}
.ws16b{word-spacing:5.890914px;}
.ws131{word-spacing:6.021823px;}
.ws196{word-spacing:6.676369px;}
.ws130{word-spacing:6.728588px;}
.ws94{word-spacing:6.740588px;}
.ws118{word-spacing:6.741824px;}
.ws62{word-spacing:6.791759px;}
.ws177{word-spacing:6.807278px;}
.ws16c{word-spacing:7.003642px;}
.ws154{word-spacing:7.067315px;}
.ws3a{word-spacing:7.175860px;}
.ws150{word-spacing:7.267496px;}
.ws166{word-spacing:7.461824px;}
.ws15e{word-spacing:7.820993px;}
.ws191{word-spacing:8.181825px;}
.wsee{word-spacing:8.346012px;}
.ws18c{word-spacing:8.705462px;}
.ws18f{word-spacing:8.901826px;}
.ws11{word-spacing:9.162650px;}
.ws186{word-spacing:9.229099px;}
.ws140{word-spacing:10.080008px;}
.ws190{word-spacing:10.145463px;}
.ws52{word-spacing:10.252221px;}
.ws188{word-spacing:10.407281px;}
.ws2c{word-spacing:10.529857px;}
.ws19c{word-spacing:10.670462px;}
.ws19e{word-spacing:10.672673px;}
.ws194{word-spacing:10.734226px;}
.ws195{word-spacing:10.734260px;}
.ws183{word-spacing:10.865464px;}
.wsef{word-spacing:11.162100px;}
.wsf9{word-spacing:11.301602px;}
.ws185{word-spacing:11.781828px;}
.ws15f{word-spacing:11.960993px;}
.ws171{word-spacing:12.043646px;}
.ws112{word-spacing:12.231754px;}
.ws159{word-spacing:12.295279px;}
.ws173{word-spacing:12.370919px;}
.ws73{word-spacing:14.530921px;}
.wsf2{word-spacing:14.796566px;}
.wsf6{word-spacing:14.937602px;}
.ws11a{word-spacing:16.104804px;}
.wsea{word-spacing:28.080023px;}
.ws11d{word-spacing:61.936466px;}
.ws125{word-spacing:70.690968px;}
.ws11c{word-spacing:73.999789px;}
.ws119{word-spacing:167.665322px;}
.ws121{word-spacing:198.461792px;}
.ws122{word-spacing:226.312643px;}
.ws120{word-spacing:289.345423px;}
.ws149{word-spacing:365.845077px;}
.ws11b{word-spacing:367.663363px;}
.ws148{word-spacing:434.572407px;}
.ws14a{word-spacing:537.663402px;}
.ws146{word-spacing:640.754397px;}
.ws145{word-spacing:675.118062px;}
.ws144{word-spacing:709.481727px;}
.ws143{word-spacing:752.419945px;}
.ws14b{word-spacing:778.209057px;}
.ws19d{word-spacing:1001.124762px;}
.ws106{word-spacing:1106.995363px;}
.wsfc{word-spacing:1108.143530px;}
._3c{margin-left:-9.949391px;}
._3b{margin-left:-8.836663px;}
._1e{margin-left:-6.283934px;}
._1{margin-left:-4.722272px;}
._0{margin-left:-2.988780px;}
._6{margin-left:-1.701820px;}
._8{width:1.374839px;}
._3{width:3.202064px;}
._26{width:4.503721px;}
._27{width:6.551443px;}
._35{width:7.585762px;}
._2a{width:10.340881px;}
._34{width:12.938819px;}
._7{width:14.941757px;}
._2c{width:16.106458px;}
._f{width:17.214560px;}
._11{width:19.090612px;}
._e{width:20.726977px;}
._1d{width:21.926707px;}
._1f{width:23.223799px;}
._17{width:24.266152px;}
._15{width:25.330638px;}
._5{width:26.827469px;}
._a{width:27.974981px;}
._13{width:29.170328px;}
._b{width:30.183108px;}
._10{width:31.437526px;}
._c{width:32.517926px;}
._39{width:33.621533px;}
._16{width:34.706147px;}
._1c{width:35.865600px;}
._d{width:37.112758px;}
._18{width:39.141559px;}
._14{width:40.458660px;}
._12{width:42.615745px;}
._3e{width:43.814203px;}
._20{width:44.836401px;}
._9{width:46.318950px;}
._22{width:48.326394px;}
._1a{width:49.904029px;}
._4{width:51.432916px;}
._2f{width:52.542797px;}
._28{width:54.059337px;}
._3a{width:55.767319px;}
._1b{width:57.665503px;}
._23{width:59.432485px;}
._3d{width:60.676122px;}
._30{width:76.451265px;}
._31{width:98.356424px;}
._25{width:107.083726px;}
._38{width:138.115142px;}
._36{width:152.640997px;}
._37{width:165.695279px;}
._3f{width:179.373220px;}
._33{width:187.915816px;}
._40{width:345.102063px;}
._32{width:352.520327px;}
._21{width:618.252755px;}
._19{width:619.679873px;}
._2{width:851.553372px;}
._29{width:862.338092px;}
._24{width:930.536782px;}
._2b{width:1002.160023px;}
._41{width:1015.990854px;}
._2e{width:1029.703391px;}
._2d{width:1051.251383px;}
.fc4{color:rgb(204,25,20);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(7,88,229);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:0.000000px;}
.fs7{font-size:32.727600px;}
.fs6{font-size:45.818400px;}
.fs0{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs8{font-size:77.708400px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y46{bottom:148.209000px;}
.y97{bottom:154.306500px;}
.y230{bottom:158.635500px;}
.y45{bottom:168.532500px;}
.y96{bottom:174.630000px;}
.y22f{bottom:178.959000px;}
.y44{bottom:188.857500px;}
.y95{bottom:194.953500px;}
.y102{bottom:201.276000px;}
.y160{bottom:201.804000px;}
.y1cf{bottom:202.905000px;}
.y117{bottom:205.339500px;}
.y22e{bottom:205.380000px;}
.y43{bottom:209.181000px;}
.y210{bottom:217.251000px;}
.y101{bottom:221.599500px;}
.y1ef{bottom:221.688000px;}
.y15f{bottom:222.127500px;}
.y1ce{bottom:223.228500px;}
.y22d{bottom:225.703500px;}
.y42{bottom:229.504500px;}
.yda{bottom:229.654500px;}
.y18f{bottom:230.317500px;}
.y7a{bottom:233.569500px;}
.y20f{bottom:237.574500px;}
.y1ee{bottom:242.011500px;}
.y1cd{bottom:243.552000px;}
.yc3{bottom:244.158000px;}
.y126{bottom:246.565500px;}
.ybb{bottom:249.699000px;}
.y41{bottom:249.828000px;}
.y79{bottom:253.893000px;}
.y15e{bottom:255.399000px;}
.y116{bottom:256.476000px;}
.y20e{bottom:257.898000px;}
.y1ed{bottom:262.335000px;}
.y100{bottom:264.282000px;}
.yc2{bottom:264.481500px;}
.y40{bottom:270.151500px;}
.y78{bottom:274.216500px;}
.y15d{bottom:275.722500px;}
.y115{bottom:276.799500px;}
.y1cc{bottom:277.923000px;}
.yd9{bottom:281.008500px;}
.y197{bottom:281.050500px;}
.y1a{bottom:284.313000px;}
.yc1{bottom:284.805000px;}
.y3f{bottom:290.476500px;}
.y20d{bottom:291.672000px;}
.y77{bottom:294.540000px;}
.y1ec{bottom:295.165500px;}
.y15c{bottom:296.046000px;}
.y114{bottom:297.123000px;}
.y1cb{bottom:298.246500px;}
.y125{bottom:298.552500px;}
.yd8{bottom:301.332000px;}
.y196{bottom:301.374000px;}
.y19{bottom:304.638000px;}
.yc0{bottom:305.128500px;}
.yba{bottom:306.297000px;}
.y173{bottom:307.831500px;}
.y3e{bottom:310.800000px;}
.y20c{bottom:311.995500px;}
.y18e{bottom:313.837500px;}
.y76{bottom:314.865000px;}
.y1eb{bottom:315.490500px;}
.y113{bottom:317.446500px;}
.y1ca{bottom:318.570000px;}
.y124{bottom:318.876000px;}
.yd7{bottom:321.655500px;}
.y195{bottom:321.697500px;}
.ybf{bottom:325.452000px;}
.yb9{bottom:326.620500px;}
.yff{bottom:328.641000px;}
.y15b{bottom:329.317500px;}
.y3d{bottom:331.123500px;}
.y75{bottom:335.188500px;}
.y1ea{bottom:335.814000px;}
.y112{bottom:337.771500px;}
.y123{bottom:339.201000px;}
.y1ad{bottom:339.253500px;}
.yd6{bottom:341.979000px;}
.y18{bottom:344.089500px;}
.y20b{bottom:345.768000px;}
.ybe{bottom:345.777000px;}
.yb8{bottom:346.944000px;}
.y15a{bottom:349.641000px;}
.y3c{bottom:351.447000px;}
.y1c9{bottom:352.942500px;}
.y74{bottom:355.512000px;}
.y111{bottom:358.095000px;}
.y122{bottom:359.524500px;}
.y1ac{bottom:359.577000px;}
.y172{bottom:360.255000px;}
.y192{bottom:361.060500px;}
.y17{bottom:362.022000px;}
.yd5{bottom:362.304000px;}
.y139{bottom:362.467500px;}
.y20a{bottom:366.093000px;}
.ybd{bottom:366.100500px;}
.yb7{bottom:367.267500px;}
.y194{bottom:367.534500px;}
.y1e9{bottom:368.644500px;}
.y159{bottom:369.964500px;}
.y3b{bottom:371.770500px;}
.y18d{bottom:373.560000px;}
.y73{bottom:375.835500px;}
.y110{bottom:378.418500px;}
.y191{bottom:378.762000px;}
.y121{bottom:379.848000px;}
.y1ab{bottom:379.900500px;}
.y16{bottom:379.954500px;}
.y171{bottom:380.578500px;}
.yfe{bottom:381.708000px;}
.yd4{bottom:382.627500px;}
.y138{bottom:382.791000px;}
.y209{bottom:386.416500px;}
.y1c8{bottom:387.313500px;}
.yb6{bottom:387.592500px;}
.y1e8{bottom:388.968000px;}
.y193{bottom:390.136500px;}
.y158{bottom:390.289500px;}
.y55{bottom:392.095500px;}
.y18c{bottom:393.883500px;}
.y72{bottom:396.159000px;}
.y15{bottom:397.888500px;}
.y10f{bottom:398.742000px;}
.y1aa{bottom:400.224000px;}
.y170{bottom:400.902000px;}
.yfd{bottom:402.031500px;}
.yd3{bottom:402.951000px;}
.y137{bottom:403.114500px;}
.y1c7{bottom:407.637000px;}
.yb5{bottom:407.916000px;}
.y157{bottom:410.613000px;}
.ybc{bottom:411.574500px;}
.y17d{bottom:412.419000px;}
.y18b{bottom:414.207000px;}
.y14{bottom:415.821000px;}
.y71{bottom:416.484000px;}
.y10e{bottom:419.065500px;}
.y208{bottom:420.189000px;}
.y1a9{bottom:420.547500px;}
.y16f{bottom:421.225500px;}
.y1e7{bottom:421.798500px;}
.y120{bottom:422.250000px;}
.yd2{bottom:423.274500px;}
.y136{bottom:423.439500px;}
.y3a{bottom:427.662000px;}
.y1c6{bottom:427.960500px;}
.yb4{bottom:428.239500px;}
.y54{bottom:430.153500px;}
.y156{bottom:430.936500px;}
.y17c{bottom:432.742500px;}
.y13{bottom:433.753500px;}
.y18a{bottom:434.530500px;}
.y70{bottom:436.807500px;}
.y10d{bottom:439.390500px;}
.y207{bottom:440.514000px;}
.y1a8{bottom:440.872500px;}
.y1e6{bottom:442.123500px;}
.y135{bottom:443.763000px;}
.yfc{bottom:444.712500px;}
.y39{bottom:447.985500px;}
.yb3{bottom:448.563000px;}
.y190{bottom:450.861000px;}
.y155{bottom:451.260000px;}
.y12{bottom:451.686000px;}
.y17b{bottom:453.066000px;}
.yd1{bottom:453.978000px;}
.y189{bottom:454.854000px;}
.y6f{bottom:457.131000px;}
.y220{bottom:458.359500px;}
.y16e{bottom:458.905500px;}
.y10c{bottom:459.714000px;}
.y1a7{bottom:461.196000px;}
.ye6{bottom:462.034500px;}
.y1c5{bottom:462.331500px;}
.y1e5{bottom:462.447000px;}
.y38{bottom:468.309000px;}
.yb2{bottom:468.886500px;}
.y11{bottom:469.618500px;}
.y17a{bottom:473.389500px;}
.y206{bottom:474.286500px;}
.yd0{bottom:474.301500px;}
.y11f{bottom:475.063500px;}
.y188{bottom:475.179000px;}
.y21f{bottom:478.683000px;}
.y10b{bottom:480.037500px;}
.y134{bottom:480.345000px;}
.y1a6{bottom:481.519500px;}
.y1c4{bottom:482.655000px;}
.y53{bottom:483.133500px;}
.y154{bottom:484.531500px;}
.y10{bottom:487.551000px;}
.y6e{bottom:487.617000px;}
.y37{bottom:488.632500px;}
.yb1{bottom:489.211500px;}
.y179{bottom:493.714500px;}
.ycf{bottom:494.626500px;}
.y1e4{bottom:495.277500px;}
.y187{bottom:495.502500px;}
.yfb{bottom:497.779500px;}
.y21e{bottom:499.006500px;}
.y10a{bottom:500.361000px;}
.y1a5{bottom:501.843000px;}
.y52{bottom:503.458500px;}
.y153{bottom:504.855000px;}
.yf{bottom:505.485000px;}
.y11e{bottom:506.350500px;}
.y6d{bottom:507.940500px;}
.y205{bottom:508.060500px;}
.y36{bottom:508.957500px;}
.yb0{bottom:509.535000px;}
.y16d{bottom:511.327500px;}
.ye5{bottom:514.315500px;}
.yce{bottom:514.950000px;}
.y1e3{bottom:515.601000px;}
.y186{bottom:515.826000px;}
.y1c3{bottom:517.026000px;}
.yfa{bottom:518.103000px;}
.y21d{bottom:519.330000px;}
.y1a4{bottom:522.166500px;}
.ye{bottom:523.417500px;}
.y51{bottom:523.782000px;}
.y152{bottom:525.178500px;}
.y11d{bottom:526.674000px;}
.y6c{bottom:528.264000px;}
.y204{bottom:528.384000px;}
.y35{bottom:529.281000px;}
.yaf{bottom:529.858500px;}
.y178{bottom:531.066000px;}
.y133{bottom:531.154500px;}
.ye4{bottom:534.639000px;}
.ycd{bottom:535.273500px;}
.y185{bottom:536.149500px;}
.y1c2{bottom:537.351000px;}
.y94{bottom:538.234500px;}
.yf9{bottom:538.426500px;}
.y21c{bottom:539.653500px;}
.y109{bottom:541.231500px;}
.yd{bottom:541.350000px;}
.y1a3{bottom:542.491500px;}
.y16c{bottom:542.910000px;}
.y50{bottom:544.105500px;}
.y151{bottom:545.502000px;}
.y11c{bottom:546.997500px;}
.y1e2{bottom:548.431500px;}
.y203{bottom:548.707500px;}
.y34{bottom:549.604500px;}
.y132{bottom:551.479500px;}
.ye3{bottom:554.962500px;}
.ycc{bottom:555.597000px;}
.y184{bottom:556.473000px;}
.y1c1{bottom:557.674500px;}
.y93{bottom:558.558000px;}
.y6b{bottom:558.750000px;}
.yc{bottom:559.282500px;}
.y1a2{bottom:562.815000px;}
.y4f{bottom:564.429000px;}
.y150{bottom:565.827000px;}
.y1e1{bottom:568.755000px;}
.y22c{bottom:568.912500px;}
.y33{bottom:569.928000px;}
.y131{bottom:571.803000px;}
.y21b{bottom:572.250000px;}
.yae{bottom:574.441500px;}
.y16b{bottom:574.492500px;}
.ye2{bottom:575.287500px;}
.ycb{bottom:575.920500px;}
.y183{bottom:576.798000px;}
.yb{bottom:577.215000px;}
.y11b{bottom:578.284500px;}
.y92{bottom:578.881500px;}
.y6a{bottom:579.073500px;}
.yf8{bottom:579.075000px;}
.y202{bottom:582.481500px;}
.y1a1{bottom:583.138500px;}
.y4e{bottom:584.752500px;}
.y14f{bottom:586.150500px;}
.y22b{bottom:589.236000px;}
.y32{bottom:590.251500px;}
.y1c0{bottom:592.045500px;}
.y130{bottom:592.126500px;}
.y177{bottom:592.782000px;}
.y16a{bottom:594.816000px;}
.ye1{bottom:595.611000px;}
.yca{bottom:596.245500px;}
.y182{bottom:597.121500px;}
.y108{bottom:598.401000px;}
.y91{bottom:599.205000px;}
.y69{bottom:599.397000px;}
.yf7{bottom:599.398500px;}
.y1e0{bottom:601.587000px;}
.y201{bottom:602.805000px;}
.y1a0{bottom:603.462000px;}
.y4d{bottom:605.077500px;}
.y14e{bottom:606.474000px;}
.ya{bottom:606.804000px;}
.y22a{bottom:609.559500px;}
.y11a{bottom:609.724500px;}
.y31{bottom:610.575000px;}
.y1bf{bottom:612.369000px;}
.y12f{bottom:612.450000px;}
.ye0{bottom:615.934500px;}
.yc9{bottom:616.569000px;}
.y181{bottom:617.445000px;}
.y107{bottom:618.724500px;}
.y90{bottom:619.528500px;}
.yf6{bottom:619.722000px;}
.y1df{bottom:621.910500px;}
.y19f{bottom:623.785500px;}
.y4c{bottom:625.401000px;}
.y169{bottom:626.398500px;}
.y14d{bottom:626.797500px;}
.y68{bottom:629.883000px;}
.y30{bottom:630.900000px;}
.y12e{bottom:632.773500px;}
.yad{bottom:635.980500px;}
.ydf{bottom:636.258000px;}
.y200{bottom:636.579000px;}
.yc8{bottom:636.892500px;}
.y180{bottom:637.768500px;}
.y106{bottom:639.048000px;}
.y8f{bottom:639.853500px;}
.yf5{bottom:640.045500px;}
.y1de{bottom:642.234000px;}
.y19e{bottom:644.110500px;}
.y4b{bottom:645.724500px;}
.y168{bottom:646.722000px;}
.y1be{bottom:646.740000px;}
.y14c{bottom:647.121000px;}
.y67{bottom:650.206500px;}
.y2f{bottom:651.223500px;}
.y12d{bottom:653.097000px;}
.yac{bottom:656.304000px;}
.yde{bottom:656.581500px;}
.y1ff{bottom:656.902500px;}
.yc7{bottom:657.216000px;}
.y105{bottom:659.371500px;}
.y8e{bottom:660.177000px;}
.yf4{bottom:660.369000px;}
.y119{bottom:662.536500px;}
.y19d{bottom:664.434000px;}
.y4a{bottom:666.048000px;}
.y17f{bottom:666.316500px;}
.y8{bottom:666.492000px;}
.y167{bottom:667.047000px;}
.y1bd{bottom:667.063500px;}
.y14b{bottom:667.446000px;}
.y66{bottom:670.531500px;}
.y2e{bottom:671.547000px;}
.y1dd{bottom:675.064500px;}
.yab{bottom:676.627500px;}
.y8d{bottom:680.500500px;}
.yf3{bottom:680.694000px;}
.y19c{bottom:684.757500px;}
.y12c{bottom:686.184000px;}
.y49{bottom:686.371500px;}
.y7{bottom:686.815500px;}
.y166{bottom:687.370500px;}
.y1bc{bottom:687.387000px;}
.y14a{bottom:687.769500px;}
.y1fe{bottom:690.675000px;}
.y65{bottom:690.855000px;}
.y2d{bottom:691.870500px;}
.yc6{bottom:694.017000px;}
.y1dc{bottom:695.388000px;}
.yaa{bottom:696.952500px;}
.ydd{bottom:698.400000px;}
.y104{bottom:699.676500px;}
.y8c{bottom:700.824000px;}
.y9{bottom:702.105000px;}
.y149{bottom:708.093000px;}
.y12b{bottom:708.489000px;}
.y1fd{bottom:710.998500px;}
.y64{bottom:711.178500px;}
.y2c{bottom:712.194000px;}
.y1db{bottom:715.713000px;}
.y118{bottom:715.761000px;}
.ya9{bottom:717.276000px;}
.y17e{bottom:719.863500px;}
.y8b{bottom:721.147500px;}
.y1bb{bottom:721.759500px;}
.yf2{bottom:723.375000px;}
.y19b{bottom:725.404500px;}
.y148{bottom:728.416500px;}
.y48{bottom:728.496000px;}
.y165{bottom:729.114000px;}
.y1fc{bottom:731.323500px;}
.y63{bottom:731.502000px;}
.y2b{bottom:732.519000px;}
.ya8{bottom:737.599500px;}
.y6{bottom:741.073500px;}
.y8a{bottom:741.472500px;}
.y1ba{bottom:742.083000px;}
.yc5{bottom:745.146000px;}
.y1da{bottom:748.543500px;}
.y147{bottom:748.740000px;}
.y62{bottom:751.825500px;}
.y2a{bottom:752.842500px;}
.ya7{bottom:757.923000px;}
.y4{bottom:761.397000px;}
.y89{bottom:761.796000px;}
.y1fb{bottom:765.096000px;}
.y1d9{bottom:768.867000px;}
.y61{bottom:772.150500px;}
.ydc{bottom:772.617000px;}
.y29{bottom:773.166000px;}
.yf1{bottom:776.442000px;}
.y1b9{bottom:776.454000px;}
.y5{bottom:776.686500px;}
.ya6{bottom:778.246500px;}
.y88{bottom:782.119500px;}
.y19a{bottom:782.311500px;}
.y47{bottom:782.395500px;}
.y1fa{bottom:785.419500px;}
.y164{bottom:787.312500px;}
.y1d8{bottom:789.190500px;}
.y146{bottom:792.174000px;}
.y60{bottom:792.474000px;}
.ydb{bottom:792.942000px;}
.y28{bottom:793.489500px;}
.yf0{bottom:796.765500px;}
.y1b8{bottom:796.777500px;}
.yc4{bottom:797.787000px;}
.ya5{bottom:798.571500px;}
.y87{bottom:802.443000px;}
.y199{bottom:802.635000px;}
.y163{bottom:807.636000px;}
.y12a{bottom:812.797500px;}
.y27{bottom:813.813000px;}
.yef{bottom:817.089000px;}
.y1b7{bottom:817.101000px;}
.y21a{bottom:817.762500px;}
.ya4{bottom:818.895000px;}
.y1f9{bottom:819.193500px;}
.y1d7{bottom:822.021000px;}
.y86{bottom:822.766500px;}
.y5f{bottom:822.960000px;}
.y3{bottom:825.547500px;}
.y162{bottom:827.959500px;}
.y129{bottom:833.121000px;}
.y26{bottom:834.138000px;}
.yee{bottom:837.412500px;}
.y219{bottom:838.086000px;}
.ya3{bottom:839.218500px;}
.y1f8{bottom:839.517000px;}
.y1d6{bottom:842.344500px;}
.y85{bottom:843.091500px;}
.y5e{bottom:843.283500px;}
.y161{bottom:848.283000px;}
.y1b6{bottom:851.472000px;}
.y128{bottom:853.444500px;}
.y25{bottom:854.461500px;}
.yed{bottom:857.737500px;}
.y218{bottom:858.409500px;}
.y2{bottom:858.424500px;}
.ya2{bottom:859.542000px;}
.y1f7{bottom:859.840500px;}
.y1d5{bottom:862.669500px;}
.y84{bottom:863.415000px;}
.y5d{bottom:863.607000px;}
.y1b5{bottom:871.797000px;}
.y229{bottom:873.769500px;}
.y24{bottom:874.785000px;}
.y217{bottom:878.733000px;}
.ya1{bottom:879.865500px;}
.y145{bottom:881.959500px;}
.y83{bottom:883.738500px;}
.y5c{bottom:883.930500px;}
.yec{bottom:889.125000px;}
.y127{bottom:890.028000px;}
.y1b4{bottom:892.120500px;}
.y1f6{bottom:893.614500px;}
.y228{bottom:894.093000px;}
.y23{bottom:895.108500px;}
.y1d4{bottom:895.500000px;}
.y216{bottom:899.056500px;}
.ya0{bottom:900.190500px;}
.y82{bottom:904.062000px;}
.y5b{bottom:904.254000px;}
.yeb{bottom:909.448500px;}
.y1b3{bottom:912.444000px;}
.y1f5{bottom:913.938000px;}
.y227{bottom:914.416500px;}
.y22{bottom:915.432000px;}
.y1d3{bottom:915.823500px;}
.y9f{bottom:920.514000px;}
.y81{bottom:924.385500px;}
.y5a{bottom:924.579000px;}
.yea{bottom:929.773500px;}
.y1f4{bottom:934.261500px;}
.y226{bottom:934.740000px;}
.y21{bottom:935.757000px;}
.y1d2{bottom:936.147000px;}
.y215{bottom:939.705000px;}
.y9e{bottom:940.837500px;}
.y144{bottom:941.680500px;}
.y80{bottom:944.710500px;}
.y59{bottom:944.902500px;}
.y1b2{bottom:946.815000px;}
.ye9{bottom:950.097000px;}
.y1f3{bottom:954.586500px;}
.y20{bottom:956.080500px;}
.y143{bottom:956.358000px;}
.y9d{bottom:961.161000px;}
.y142{bottom:962.004000px;}
.y7f{bottom:965.034000px;}
.y58{bottom:965.226000px;}
.y1b1{bottom:967.138500px;}
.y1d1{bottom:968.977500px;}
.ye8{bottom:970.420500px;}
.y225{bottom:975.388500px;}
.y1f{bottom:976.404000px;}
.y141{bottom:980.176500px;}
.y214{bottom:980.352000px;}
.y9c{bottom:981.484500px;}
.y7e{bottom:985.357500px;}
.y57{bottom:985.549500px;}
.y140{bottom:985.822500px;}
.y1f2{bottom:988.359000px;}
.y1d0{bottom:989.302500px;}
.y176{bottom:989.341500px;}
.ye7{bottom:990.744000px;}
.y224{bottom:995.712000px;}
.y1e{bottom:996.727500px;}
.y1{bottom:1001.386500px;}
.y1b0{bottom:1001.509500px;}
.y9b{bottom:1001.809500px;}
.y13f{bottom:1004.737500px;}
.y7d{bottom:1005.681000px;}
.y198{bottom:1005.873000px;}
.y1f1{bottom:1008.682500px;}
.y13e{bottom:1010.383500px;}
.y103{bottom:1011.414000px;}
.y223{bottom:1016.035500px;}
.y1d{bottom:1017.051000px;}
.y175{bottom:1020.595500px;}
.y213{bottom:1021.000500px;}
.y1af{bottom:1021.833000px;}
.y9a{bottom:1022.133000px;}
.y7c{bottom:1026.004500px;}
.y56{bottom:1026.198000px;}
.y13d{bottom:1026.741000px;}
.y1f0{bottom:1029.007500px;}
.y13c{bottom:1032.387000px;}
.y222{bottom:1036.359000px;}
.y212{bottom:1041.324000px;}
.y1ae{bottom:1042.158000px;}
.y99{bottom:1042.456500px;}
.y7b{bottom:1046.329500px;}
.y174{bottom:1051.849500px;}
.y221{bottom:1056.682500px;}
.y13a{bottom:1061.871000px;}
.y98{bottom:1062.780000px;}
.y211{bottom:1076.086500px;}
.y13b{bottom:1082.194500px;}
.y1c{bottom:1083.103500px;}
.y1b{bottom:1136.902500px;}
.h5{height:0.000000px;}
.h16{height:44.535485px;}
.h2{height:44.831700px;}
.h6{height:49.090950px;}
.h19{height:49.096950px;}
.h4{height:53.798400px;}
.h1b{height:55.483798px;}
.h1a{height:57.272775px;}
.h18{height:58.123800px;}
.ha{height:58.129800px;}
.h8{height:63.621871px;}
.h7{height:64.557900px;}
.h9{height:68.295485px;}
.hb{height:68.301485px;}
.hd{height:73.389485px;}
.h3{height:77.469300px;}
.h13{height:86.205871px;}
.h10{height:86.211871px;}
.he{height:90.879485px;}
.h14{height:90.885485px;}
.hf{height:92.913485px;}
.h11{height:95.973485px;}
.h12{height:98.667485px;}
.hc{height:108.525871px;}
.h17{height:108.531871px;}
.h15{height:120.267485px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:118.947000px;}
.x11{left:120.142500px;}
.x1{left:121.500000px;}
.x3{left:127.588500px;}
.x2f{left:133.314000px;}
.x39{left:136.603500px;}
.x38{left:137.863500px;}
.x2d{left:139.680000px;}
.x3a{left:157.441500px;}
.x3b{left:160.242000px;}
.x3c{left:161.296500px;}
.xf{left:162.409500px;}
.x31{left:177.636000px;}
.xe{left:184.825500px;}
.x30{left:198.007500px;}
.x6{left:200.389500px;}
.x2{left:210.712500px;}
.x4{left:227.161500px;}
.x21{left:231.636000px;}
.x2b{left:248.449500px;}
.x24{left:255.991500px;}
.x25{left:258.678000px;}
.xa{left:263.482500px;}
.x17{left:270.352500px;}
.x12{left:276.307500px;}
.x1f{left:278.803500px;}
.x20{left:284.571000px;}
.x2e{left:285.841500px;}
.x33{left:290.782500px;}
.x18{left:308.356500px;}
.x16{left:311.310000px;}
.x32{left:313.356000px;}
.x34{left:322.161000px;}
.x13{left:330.880500px;}
.x14{left:337.057500px;}
.x1c{left:353.500500px;}
.x2c{left:367.626000px;}
.x10{left:370.800000px;}
.x19{left:373.180500px;}
.x1b{left:381.528000px;}
.x1d{left:390.606000px;}
.x1a{left:393.520500px;}
.x5{left:395.092500px;}
.x22{left:399.918000px;}
.x23{left:401.203500px;}
.x1e{left:403.150500px;}
.x35{left:405.775500px;}
.xd{left:419.373000px;}
.x28{left:430.902000px;}
.x36{left:432.139500px;}
.x37{left:465.523500px;}
.x7{left:486.471000px;}
.x9{left:491.073000px;}
.xb{left:515.647500px;}
.x2a{left:558.274500px;}
.x26{left:585.000000px;}
.x29{left:666.064500px;}
.x27{left:681.523500px;}
.xc{left:687.973500px;}
.x8{left:717.150000px;}
@media print{
.v2{vertical-align:-14.368000pt;}
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:1.717333pt;}
.v7{vertical-align:5.701333pt;}
.va{vertical-align:11.770667pt;}
.v6{vertical-align:20.074667pt;}
.v3{vertical-align:21.120000pt;}
.v5{vertical-align:25.648000pt;}
.vd{vertical-align:38.053333pt;}
.v4{vertical-align:39.914667pt;}
.v8{vertical-align:41.194667pt;}
.v9{vertical-align:43.002667pt;}
.vb{vertical-align:45.722667pt;}
.vc{vertical-align:48.117333pt;}
.ve{vertical-align:67.317333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.001427pt;}
.ls32{letter-spacing:0.001441pt;}
.ls7{letter-spacing:0.001921pt;}
.lsf{letter-spacing:0.002400pt;}
.ls30{letter-spacing:0.002797pt;}
.ls23{letter-spacing:0.002887pt;}
.ls1d{letter-spacing:0.004810pt;}
.ls2e{letter-spacing:2.652893pt;}
.ls27{letter-spacing:2.655405pt;}
.ls40{letter-spacing:2.655437pt;}
.ls3c{letter-spacing:2.655891pt;}
.ls1a{letter-spacing:2.656382pt;}
.ls3a{letter-spacing:2.657397pt;}
.ls2a{letter-spacing:2.660738pt;}
.ls35{letter-spacing:3.895252pt;}
.ls31{letter-spacing:9.031559pt;}
.ls2d{letter-spacing:9.036893pt;}
.ls33{letter-spacing:9.694508pt;}
.ls2{letter-spacing:13.644108pt;}
.ls16{letter-spacing:14.444108pt;}
.ls4d{letter-spacing:14.913441pt;}
.ls53{letter-spacing:15.345441pt;}
.ls17{letter-spacing:15.553441pt;}
.ls3e{letter-spacing:15.583437pt;}
.ls1c{letter-spacing:15.588738pt;}
.ls15{letter-spacing:16.118774pt;}
.ls4c{letter-spacing:16.284108pt;}
.ls3d{letter-spacing:16.366508pt;}
.ls14{letter-spacing:16.524108pt;}
.ls51{letter-spacing:16.769441pt;}
.ls34{letter-spacing:17.270774pt;}
.ls13{letter-spacing:17.377441pt;}
.ls4{letter-spacing:17.398774pt;}
.ls4e{letter-spacing:17.414774pt;}
.lsc{letter-spacing:17.868108pt;}
.lsb{letter-spacing:18.003841pt;}
.ls18{letter-spacing:18.012108pt;}
.ls42{letter-spacing:18.358731pt;}
.ls9{letter-spacing:18.369441pt;}
.ls44{letter-spacing:18.540108pt;}
.ls4a{letter-spacing:18.630774pt;}
.ls1e{letter-spacing:18.815405pt;}
.ls1b{letter-spacing:18.820738pt;}
.ls52{letter-spacing:19.270774pt;}
.ls46{letter-spacing:19.372108pt;}
.ls39{letter-spacing:19.377441pt;}
.ls25{letter-spacing:19.415733pt;}
.ls4b{letter-spacing:19.777441pt;}
.ls12{letter-spacing:19.857441pt;}
.lsd{letter-spacing:20.406774pt;}
.ls28{letter-spacing:20.667049pt;}
.ls5{letter-spacing:21.030774pt;}
.ls10{letter-spacing:21.174774pt;}
.ls20{letter-spacing:21.410293pt;}
.ls24{letter-spacing:21.415627pt;}
.ls8{letter-spacing:21.745441pt;}
.ls19{letter-spacing:21.789067pt;}
.ls47{letter-spacing:21.937441pt;}
.ls37{letter-spacing:22.017441pt;}
.ls43{letter-spacing:22.028064pt;}
.ls36{letter-spacing:22.257441pt;}
.lse{letter-spacing:22.262774pt;}
.ls3b{letter-spacing:22.336382pt;}
.ls22{letter-spacing:23.034145pt;}
.ls6{letter-spacing:23.553441pt;}
.ls4f{letter-spacing:23.692108pt;}
.ls26{letter-spacing:24.642293pt;}
.ls38{letter-spacing:25.340108pt;}
.lsa{letter-spacing:25.433174pt;}
.ls3{letter-spacing:25.596108pt;}
.ls29{letter-spacing:25.851049pt;}
.ls48{letter-spacing:26.609441pt;}
.ls49{letter-spacing:26.918774pt;}
.ls11{letter-spacing:28.748586pt;}
.ls54{letter-spacing:29.088467pt;}
.ls55{letter-spacing:29.091841pt;}
.ls50{letter-spacing:29.190774pt;}
.ls2f{letter-spacing:33.805550pt;}
.ls2b{letter-spacing:34.194884pt;}
.ls1{letter-spacing:39.010400pt;}
.ls2c{letter-spacing:45.240217pt;}
.ls56{letter-spacing:61.333800pt;}
.ls3f{letter-spacing:134.770400pt;}
.ls41{letter-spacing:616.823254pt;}
.ls21{letter-spacing:865.479627pt;}
.ls1f{letter-spacing:902.298071pt;}
.ws2d{word-spacing:-29.090933pt;}
.ws12{word-spacing:-26.566933pt;}
.ws6{word-spacing:-22.678502pt;}
.ws3{word-spacing:-22.550852pt;}
.ws11e{word-spacing:-19.395943pt;}
.ws124{word-spacing:-19.395492pt;}
.ws11f{word-spacing:-19.390610pt;}
.ws2{word-spacing:-17.261308pt;}
.ws15{word-spacing:-16.290923pt;}
.ws115{word-spacing:-16.116377pt;}
.wsd9{word-spacing:-15.825468pt;}
.ws176{word-spacing:-15.650922pt;}
.ws27{word-spacing:-15.534558pt;}
.ws26{word-spacing:-15.495684pt;}
.ws25{word-spacing:-15.476377pt;}
.ws132{word-spacing:-15.360013pt;}
.ws34{word-spacing:-15.316517pt;}
.ws33{word-spacing:-15.301831pt;}
.ws152{word-spacing:-15.185467pt;}
.wsa1{word-spacing:-15.127285pt;}
.ws7f{word-spacing:-14.952740pt;}
.ws168{word-spacing:-14.836376pt;}
.ws110{word-spacing:-14.778194pt;}
.ws10f{word-spacing:-14.720012pt;}
.wsc7{word-spacing:-14.661830pt;}
.wsc8{word-spacing:-14.647414pt;}
.ws90{word-spacing:-14.603649pt;}
.ws75{word-spacing:-14.545467pt;}
.ws17a{word-spacing:-14.487285pt;}
.ws4e{word-spacing:-14.384457pt;}
.ws97{word-spacing:-14.370921pt;}
.ws189{word-spacing:-14.312739pt;}
.ws139{word-spacing:-14.254557pt;}
.ws100{word-spacing:-14.196375pt;}
.ws8b{word-spacing:-14.080012pt;}
.ws10a{word-spacing:-13.963648pt;}
.wse2{word-spacing:-13.905466pt;}
.wsdd{word-spacing:-13.847284pt;}
.wsdf{word-spacing:-13.789102pt;}
.ws105{word-spacing:-13.730921pt;}
.wsec{word-spacing:-13.672739pt;}
.wsca{word-spacing:-13.614557pt;}
.wscd{word-spacing:-13.596251pt;}
.ws5d{word-spacing:-13.556375pt;}
.wscb{word-spacing:-13.536141pt;}
.ws187{word-spacing:-13.498193pt;}
.ws16f{word-spacing:-13.440011pt;}
.wse5{word-spacing:-13.381829pt;}
.ws83{word-spacing:-13.265466pt;}
.ws56{word-spacing:-13.207284pt;}
.ws44{word-spacing:-13.149102pt;}
.wsf8{word-spacing:-13.090920pt;}
.ws5a{word-spacing:-12.974556pt;}
.ws15c{word-spacing:-12.929172pt;}
.ws1e{word-spacing:-12.916374pt;}
.ws24{word-spacing:-12.858193pt;}
.ws8c{word-spacing:-12.800011pt;}
.wsdb{word-spacing:-12.741829pt;}
.wsdc{word-spacing:-12.683647pt;}
.wsd2{word-spacing:-12.625465pt;}
.wsc3{word-spacing:-12.620262pt;}
.ws86{word-spacing:-12.567283pt;}
.wsc1{word-spacing:-12.565438pt;}
.ws85{word-spacing:-12.509101pt;}
.ws47{word-spacing:-12.450919pt;}
.ws48{word-spacing:-12.448135pt;}
.ws9a{word-spacing:-12.392738pt;}
.ws10e{word-spacing:-12.334556pt;}
.ws126{word-spacing:-12.276374pt;}
.ws180{word-spacing:-12.218192pt;}
.ws10d{word-spacing:-12.160010pt;}
.ws107{word-spacing:-12.101828pt;}
.wsa9{word-spacing:-12.043646pt;}
.ws5{word-spacing:-11.987081pt;}
.ws4c{word-spacing:-11.985465pt;}
.ws4b{word-spacing:-11.953572pt;}
.ws16{word-spacing:-11.927283pt;}
.wsc6{word-spacing:-11.869101pt;}
.ws12a{word-spacing:-11.822741pt;}
.ws129{word-spacing:-11.810919pt;}
.ws10b{word-spacing:-11.752737pt;}
.wsbc{word-spacing:-11.716074pt;}
.wsbb{word-spacing:-11.712135pt;}
.ws39{word-spacing:-11.694555pt;}
.ws82{word-spacing:-11.636373pt;}
.ws1f{word-spacing:-11.578191pt;}
.ws6d{word-spacing:-11.520010pt;}
.ws13e{word-spacing:-11.461828pt;}
.ws104{word-spacing:-11.403691pt;}
.ws2f{word-spacing:-11.403646pt;}
.ws79{word-spacing:-11.362842pt;}
.ws40{word-spacing:-11.345464pt;}
.ws7a{word-spacing:-11.287282pt;}
.ws88{word-spacing:-11.281585pt;}
.ws87{word-spacing:-11.270089pt;}
.ws2e{word-spacing:-11.229100pt;}
.ws5f{word-spacing:-11.170918pt;}
.ws23{word-spacing:-11.112737pt;}
.wscf{word-spacing:-11.079457pt;}
.ws157{word-spacing:-11.079204pt;}
.ws78{word-spacing:-11.076517pt;}
.wsd1{word-spacing:-11.076074pt;}
.ws77{word-spacing:-11.054555pt;}
.wse9{word-spacing:-10.938191pt;}
.ws7e{word-spacing:-10.880009pt;}
.wsfe{word-spacing:-10.821827pt;}
.ws64{word-spacing:-10.763645pt;}
.ws65{word-spacing:-10.718741pt;}
.ws67{word-spacing:-10.705463pt;}
.ws164{word-spacing:-10.647282pt;}
.ws165{word-spacing:-10.589100pt;}
.ws5c{word-spacing:-10.530918pt;}
.ws96{word-spacing:-10.472736pt;}
.ws98{word-spacing:-10.414554pt;}
.ws14{word-spacing:-10.414238pt;}
.ws10c{word-spacing:-10.356372pt;}
.wsd6{word-spacing:-10.298190pt;}
.wsd7{word-spacing:-10.240009pt;}
.wsff{word-spacing:-10.229010pt;}
.wsa4{word-spacing:-10.209585pt;}
.wsa3{word-spacing:-10.181827pt;}
.ws91{word-spacing:-10.123645pt;}
.ws15a{word-spacing:-10.065463pt;}
.ws7c{word-spacing:-10.007281pt;}
.wsb9{word-spacing:-9.949099pt;}
.wsaf{word-spacing:-9.890917pt;}
.ws17d{word-spacing:-9.832735pt;}
.ws4{word-spacing:-9.774554pt;}
.wseb{word-spacing:-9.773810pt;}
.ws103{word-spacing:-9.772284pt;}
.wsfd{word-spacing:-9.720422pt;}
.ws109{word-spacing:-9.718951pt;}
.ws192{word-spacing:-9.718167pt;}
.ws13c{word-spacing:-9.718066pt;}
.ws17{word-spacing:-9.716372pt;}
.wsb6{word-spacing:-9.716074pt;}
.ws15b{word-spacing:-9.715156pt;}
.ws13a{word-spacing:-9.714123pt;}
.ws19a{word-spacing:-9.714079pt;}
.ws17e{word-spacing:-9.673452pt;}
.ws21{word-spacing:-9.658190pt;}
.ws37{word-spacing:-9.600008pt;}
.ws5e{word-spacing:-9.541826pt;}
.wse4{word-spacing:-9.483644pt;}
.ws30{word-spacing:-9.425462pt;}
.ws31{word-spacing:-9.418802pt;}
.ws55{word-spacing:-9.367281pt;}
.wsd4{word-spacing:-9.309099pt;}
.wsae{word-spacing:-9.250917pt;}
.ws1d{word-spacing:-9.192735pt;}
.ws60{word-spacing:-9.134553pt;}
.ws61{word-spacing:-9.116189pt;}
.ws84{word-spacing:-9.076371pt;}
.wsb5{word-spacing:-8.960007pt;}
.wsa2{word-spacing:-8.901826pt;}
.ws108{word-spacing:-8.843644pt;}
.ws6c{word-spacing:-8.785462pt;}
.wse3{word-spacing:-8.727280pt;}
.ws8e{word-spacing:-8.681407pt;}
.ws8d{word-spacing:-8.669098pt;}
.ws71{word-spacing:-8.610916pt;}
.ws72{word-spacing:-8.595044pt;}
.wsf7{word-spacing:-8.552734pt;}
.ws13{word-spacing:-8.501419pt;}
.ws151{word-spacing:-8.494553pt;}
.wsed{word-spacing:-8.436371pt;}
.wsfb{word-spacing:-8.378189pt;}
.wsa7{word-spacing:-8.320007pt;}
.ws160{word-spacing:-8.261825pt;}
.ws6b{word-spacing:-8.203643pt;}
.ws3e{word-spacing:-8.087279pt;}
.ws3f{word-spacing:-8.029098pt;}
.ws6e{word-spacing:-7.970916pt;}
.ws9c{word-spacing:-7.916736pt;}
.ws9b{word-spacing:-7.912734pt;}
.ws43{word-spacing:-7.854552pt;}
.ws6f{word-spacing:-7.738188pt;}
.ws7b{word-spacing:-7.680006pt;}
.ws127{word-spacing:-7.621825pt;}
.ws161{word-spacing:-7.563643pt;}
.ws3c{word-spacing:-7.505461pt;}
.wsbe{word-spacing:-7.447279pt;}
.ws63{word-spacing:-7.389097pt;}
.ws111{word-spacing:-7.332043pt;}
.ws20{word-spacing:-7.330915pt;}
.ws1c{word-spacing:-7.272733pt;}
.wsf3{word-spacing:-7.214551pt;}
.ws22{word-spacing:-7.156370pt;}
.ws10{word-spacing:-7.119938pt;}
.ws135{word-spacing:-7.098188pt;}
.ws134{word-spacing:-7.076043pt;}
.ws128{word-spacing:-7.040006pt;}
.ws9{word-spacing:-7.013670pt;}
.ws4a{word-spacing:-6.923642pt;}
.ws92{word-spacing:-6.865460pt;}
.ws12f{word-spacing:-6.836074pt;}
.ws93{word-spacing:-6.828736pt;}
.ws32{word-spacing:-6.807278pt;}
.ws28{word-spacing:-6.749097pt;}
.wsba{word-spacing:-6.690915pt;}
.ws45{word-spacing:-6.574551pt;}
.ws153{word-spacing:-6.548074pt;}
.ws7d{word-spacing:-6.516369pt;}
.ws3b{word-spacing:-6.458187pt;}
.ws113{word-spacing:-6.400005pt;}
.ws14f{word-spacing:-6.355156pt;}
.wse6{word-spacing:-6.341823pt;}
.ws3d{word-spacing:-6.283642pt;}
.wsf0{word-spacing:-6.225460pt;}
.wsb8{word-spacing:-6.167278pt;}
.ws158{word-spacing:-6.109096pt;}
.ws1{word-spacing:-6.057261pt;}
.wsa0{word-spacing:-5.992732pt;}
.ws162{word-spacing:-5.934550pt;}
.ws70{word-spacing:-5.876369pt;}
.ws46{word-spacing:-5.818187pt;}
.wsb{word-spacing:-5.791591pt;}
.ws81{word-spacing:-5.760005pt;}
.ws36{word-spacing:-5.701823pt;}
.ws35{word-spacing:-5.689785pt;}
.ws13f{word-spacing:-5.643641pt;}
.ws42{word-spacing:-5.585459pt;}
.ws12d{word-spacing:-5.540043pt;}
.ws1b{word-spacing:-5.527277pt;}
.wsb2{word-spacing:-5.469095pt;}
.wsb1{word-spacing:-5.410914pt;}
.ws41{word-spacing:-5.352732pt;}
.ws80{word-spacing:-5.236368pt;}
.ws4d{word-spacing:-5.120004pt;}
.wsb3{word-spacing:-5.061822pt;}
.ws68{word-spacing:-5.003641pt;}
.ws9f{word-spacing:-4.945459pt;}
.ws1a{word-spacing:-4.896836pt;}
.ws5b{word-spacing:-4.829095pt;}
.ws14c{word-spacing:-4.820323pt;}
.ws7{word-spacing:-4.782048pt;}
.ws95{word-spacing:-4.712731pt;}
.ws38{word-spacing:-4.654549pt;}
.ws198{word-spacing:-4.596367pt;}
.ws141{word-spacing:-4.538186pt;}
.ws49{word-spacing:-4.480004pt;}
.ws114{word-spacing:-4.421822pt;}
.ws163{word-spacing:-4.363640pt;}
.wsaa{word-spacing:-4.305458pt;}
.wsab{word-spacing:-4.247276pt;}
.ws184{word-spacing:-4.189094pt;}
.ws156{word-spacing:-4.130913pt;}
.ws155{word-spacing:-4.072731pt;}
.ws102{word-spacing:-4.016947pt;}
.ws8a{word-spacing:-4.014549pt;}
.ws6a{word-spacing:-3.956367pt;}
.ws57{word-spacing:-3.898185pt;}
.wsb4{word-spacing:-3.840003pt;}
.ws138{word-spacing:-3.810894pt;}
.ws136{word-spacing:-3.781821pt;}
.ws137{word-spacing:-3.748517pt;}
.ws50{word-spacing:-3.723639pt;}
.ws51{word-spacing:-3.701317pt;}
.ws74{word-spacing:-3.665458pt;}
.ws29{word-spacing:-3.549094pt;}
.ws2b{word-spacing:-3.497407pt;}
.ws2a{word-spacing:-3.490912pt;}
.wse8{word-spacing:-3.374548pt;}
.ws175{word-spacing:-3.318026pt;}
.ws179{word-spacing:-3.316959pt;}
.wse1{word-spacing:-3.316366pt;}
.ws17c{word-spacing:-3.316143pt;}
.ws172{word-spacing:-3.312692pt;}
.ws199{word-spacing:-3.260785pt;}
.wsf4{word-spacing:-3.200003pt;}
.wsa8{word-spacing:-3.141821pt;}
.ws8{word-spacing:-3.134898pt;}
.wsb0{word-spacing:-3.025457pt;}
.ws116{word-spacing:-2.967275pt;}
.ws117{word-spacing:-2.936919pt;}
.wsf{word-spacing:-2.922363pt;}
.ws167{word-spacing:-2.850911pt;}
.wsac{word-spacing:-2.792730pt;}
.wsc{word-spacing:-2.762961pt;}
.wsc0{word-spacing:-2.676366pt;}
.wsbf{word-spacing:-2.618184pt;}
.wsa6{word-spacing:-2.560002pt;}
.wsf1{word-spacing:-2.327275pt;}
.ws133{word-spacing:-2.269093pt;}
.wsd3{word-spacing:-2.210911pt;}
.ws99{word-spacing:-2.152729pt;}
.ws197{word-spacing:-2.094547pt;}
.wsda{word-spacing:-2.036365pt;}
.ws53{word-spacing:-1.978183pt;}
.ws18a{word-spacing:-1.920002pt;}
.ws142{word-spacing:-1.861820pt;}
.wsa{word-spacing:-1.859685pt;}
.wsc9{word-spacing:-1.801329pt;}
.ws13d{word-spacing:-1.745456pt;}
.ws4f{word-spacing:-1.687274pt;}
.wsd{word-spacing:-1.647150pt;}
.ws13b{word-spacing:-1.570910pt;}
.ws58{word-spacing:-1.454547pt;}
.ws59{word-spacing:-1.396365pt;}
.ws14e{word-spacing:-1.338183pt;}
.ws54{word-spacing:-1.163637pt;}
.ws69{word-spacing:-1.105455pt;}
.ws14d{word-spacing:-1.047274pt;}
.ws193{word-spacing:-0.989092pt;}
.wsde{word-spacing:-0.974110pt;}
.wsd5{word-spacing:-0.872728pt;}
.wsf5{word-spacing:-0.756364pt;}
.wscc{word-spacing:-0.719148pt;}
.wsce{word-spacing:-0.713815pt;}
.wse{word-spacing:-0.690740pt;}
.ws182{word-spacing:-0.407273pt;}
.wsd8{word-spacing:-0.324747pt;}
.wse7{word-spacing:-0.174546pt;}
.wsc5{word-spacing:-0.122300pt;}
.wsfa{word-spacing:-0.116364pt;}
.ws123{word-spacing:-0.083146pt;}
.ws18{word-spacing:0.000000pt;}
.ws18b{word-spacing:0.058182pt;}
.wse0{word-spacing:0.174546pt;}
.wsc4{word-spacing:0.254911pt;}
.wsc2{word-spacing:0.260245pt;}
.ws17f{word-spacing:0.349091pt;}
.ws16e{word-spacing:0.523637pt;}
.ws12c{word-spacing:0.640001pt;}
.ws18e{word-spacing:0.989092pt;}
.wsbd{word-spacing:1.094668pt;}
.ws16d{word-spacing:1.512729pt;}
.ws89{word-spacing:1.589698pt;}
.wsd0{word-spacing:1.777334pt;}
.ws181{word-spacing:1.803638pt;}
.ws9e{word-spacing:2.094547pt;}
.ws66{word-spacing:2.111395pt;}
.ws12b{word-spacing:2.269093pt;}
.wsa5{word-spacing:2.692243pt;}
.ws17b{word-spacing:2.734548pt;}
.ws147{word-spacing:3.080944pt;}
.ws19{word-spacing:3.083639pt;}
.wsb7{word-spacing:3.085939pt;}
.ws101{word-spacing:3.138788pt;}
.ws18d{word-spacing:3.141821pt;}
.ws19b{word-spacing:3.177410pt;}
.ws12e{word-spacing:3.374548pt;}
.ws174{word-spacing:3.490912pt;}
.wsad{word-spacing:3.623151pt;}
.ws16a{word-spacing:3.956367pt;}
.ws8f{word-spacing:4.119150pt;}
.ws0{word-spacing:4.144442pt;}
.ws15d{word-spacing:4.183849pt;}
.ws76{word-spacing:4.363640pt;}
.ws170{word-spacing:4.480004pt;}
.ws169{word-spacing:4.538186pt;}
.ws178{word-spacing:4.829095pt;}
.ws9d{word-spacing:4.899271pt;}
.ws16b{word-spacing:5.236368pt;}
.ws131{word-spacing:5.352732pt;}
.ws196{word-spacing:5.934550pt;}
.ws130{word-spacing:5.980967pt;}
.ws94{word-spacing:5.991634pt;}
.ws118{word-spacing:5.992732pt;}
.ws62{word-spacing:6.037119pt;}
.ws177{word-spacing:6.050914pt;}
.ws16c{word-spacing:6.225460pt;}
.ws154{word-spacing:6.282058pt;}
.ws3a{word-spacing:6.378542pt;}
.ws150{word-spacing:6.459997pt;}
.ws166{word-spacing:6.632733pt;}
.ws15e{word-spacing:6.951994pt;}
.ws191{word-spacing:7.272733pt;}
.wsee{word-spacing:7.418677pt;}
.ws18c{word-spacing:7.738188pt;}
.ws18f{word-spacing:7.912734pt;}
.ws11{word-spacing:8.144578pt;}
.ws186{word-spacing:8.203643pt;}
.ws140{word-spacing:8.960007pt;}
.ws190{word-spacing:9.018189pt;}
.ws52{word-spacing:9.113085pt;}
.ws188{word-spacing:9.250917pt;}
.ws2c{word-spacing:9.359873pt;}
.ws19c{word-spacing:9.484855pt;}
.ws19e{word-spacing:9.486821pt;}
.ws194{word-spacing:9.541534pt;}
.ws195{word-spacing:9.541564pt;}
.ws183{word-spacing:9.658190pt;}
.wsef{word-spacing:9.921867pt;}
.wsf9{word-spacing:10.045869pt;}
.ws185{word-spacing:10.472736pt;}
.ws15f{word-spacing:10.631994pt;}
.ws171{word-spacing:10.705463pt;}
.ws112{word-spacing:10.872670pt;}
.ws159{word-spacing:10.929137pt;}
.ws173{word-spacing:10.996373pt;}
.ws73{word-spacing:12.916374pt;}
.wsf2{word-spacing:13.152503pt;}
.wsf6{word-spacing:13.277869pt;}
.ws11a{word-spacing:14.315381pt;}
.wsea{word-spacing:24.960021pt;}
.ws11d{word-spacing:55.054637pt;}
.ws125{word-spacing:62.836416pt;}
.ws11c{word-spacing:65.777590pt;}
.ws119{word-spacing:149.035842pt;}
.ws121{word-spacing:176.410482pt;}
.ws122{word-spacing:201.166794pt;}
.ws120{word-spacing:257.195932pt;}
.ws149{word-spacing:325.195624pt;}
.ws11b{word-spacing:326.811878pt;}
.ws148{word-spacing:386.286584pt;}
.ws14a{word-spacing:477.923024pt;}
.ws146{word-spacing:569.559464pt;}
.ws145{word-spacing:600.104944pt;}
.ws144{word-spacing:630.650424pt;}
.ws143{word-spacing:668.817729pt;}
.ws14b{word-spacing:691.741384pt;}
.ws19d{word-spacing:889.888677pt;}
.ws106{word-spacing:983.995878pt;}
.wsfc{word-spacing:985.016471pt;}
._3c{margin-left:-8.843903pt;}
._3b{margin-left:-7.854812pt;}
._1e{margin-left:-5.585719pt;}
._1{margin-left:-4.197575pt;}
._0{margin-left:-2.656693pt;}
._6{margin-left:-1.512729pt;}
._8{width:1.222079pt;}
._3{width:2.846279pt;}
._26{width:4.003308pt;}
._27{width:5.823505pt;}
._35{width:6.742899pt;}
._2a{width:9.191894pt;}
._34{width:11.501173pt;}
._7{width:13.281562pt;}
._2c{width:14.316852pt;}
._f{width:15.301831pt;}
._11{width:16.969433pt;}
._e{width:18.423979pt;}
._1d{width:19.490406pt;}
._1f{width:20.643377pt;}
._17{width:21.569913pt;}
._15{width:22.516123pt;}
._5{width:23.846639pt;}
._a{width:24.866650pt;}
._13{width:25.929180pt;}
._b{width:26.829429pt;}
._10{width:27.944467pt;}
._c{width:28.904823pt;}
._39{width:29.885807pt;}
._16{width:30.849908pt;}
._1c{width:31.880533pt;}
._d{width:32.989118pt;}
._18{width:34.792497pt;}
._14{width:35.963253pt;}
._12{width:37.880662pt;}
._3e{width:38.945958pt;}
._20{width:39.854579pt;}
._9{width:41.172400pt;}
._22{width:42.956795pt;}
._1a{width:44.359137pt;}
._4{width:45.718147pt;}
._2f{width:46.704709pt;}
._28{width:48.052744pt;}
._3a{width:49.570950pt;}
._1b{width:51.258225pt;}
._23{width:52.828875pt;}
._3d{width:53.934331pt;}
._30{width:67.956680pt;}
._31{width:87.427933pt;}
._25{width:95.185534pt;}
._38{width:122.769015pt;}
._36{width:135.680886pt;}
._37{width:147.284693pt;}
._3f{width:159.442862pt;}
._33{width:167.036281pt;}
._40{width:306.757389pt;}
._32{width:313.351402pt;}
._21{width:549.558004pt;}
._19{width:550.826554pt;}
._2{width:756.936331pt;}
._29{width:766.522749pt;}
._24{width:827.143806pt;}
._2b{width:890.808909pt;}
._41{width:903.102981pt;}
._2e{width:915.291903pt;}
._2d{width:934.445674pt;}
.fs3{font-size:0.000000pt;}
.fs7{font-size:29.091200pt;}
.fs6{font-size:40.727467pt;}
.fs0{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs8{font-size:69.074133pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:131.741333pt;}
.y97{bottom:137.161333pt;}
.y230{bottom:141.009333pt;}
.y45{bottom:149.806667pt;}
.y96{bottom:155.226667pt;}
.y22f{bottom:159.074667pt;}
.y44{bottom:167.873333pt;}
.y95{bottom:173.292000pt;}
.y102{bottom:178.912000pt;}
.y160{bottom:179.381333pt;}
.y1cf{bottom:180.360000pt;}
.y117{bottom:182.524000pt;}
.y22e{bottom:182.560000pt;}
.y43{bottom:185.938667pt;}
.y210{bottom:193.112000pt;}
.y101{bottom:196.977333pt;}
.y1ef{bottom:197.056000pt;}
.y15f{bottom:197.446667pt;}
.y1ce{bottom:198.425333pt;}
.y22d{bottom:200.625333pt;}
.y42{bottom:204.004000pt;}
.yda{bottom:204.137333pt;}
.y18f{bottom:204.726667pt;}
.y7a{bottom:207.617333pt;}
.y20f{bottom:211.177333pt;}
.y1ee{bottom:215.121333pt;}
.y1cd{bottom:216.490667pt;}
.yc3{bottom:217.029333pt;}
.y126{bottom:219.169333pt;}
.ybb{bottom:221.954667pt;}
.y41{bottom:222.069333pt;}
.y79{bottom:225.682667pt;}
.y15e{bottom:227.021333pt;}
.y116{bottom:227.978667pt;}
.y20e{bottom:229.242667pt;}
.y1ed{bottom:233.186667pt;}
.y100{bottom:234.917333pt;}
.yc2{bottom:235.094667pt;}
.y40{bottom:240.134667pt;}
.y78{bottom:243.748000pt;}
.y15d{bottom:245.086667pt;}
.y115{bottom:246.044000pt;}
.y1cc{bottom:247.042667pt;}
.yd9{bottom:249.785333pt;}
.y197{bottom:249.822667pt;}
.y1a{bottom:252.722667pt;}
.yc1{bottom:253.160000pt;}
.y3f{bottom:258.201333pt;}
.y20d{bottom:259.264000pt;}
.y77{bottom:261.813333pt;}
.y1ec{bottom:262.369333pt;}
.y15c{bottom:263.152000pt;}
.y114{bottom:264.109333pt;}
.y1cb{bottom:265.108000pt;}
.y125{bottom:265.380000pt;}
.yd8{bottom:267.850667pt;}
.y196{bottom:267.888000pt;}
.y19{bottom:270.789333pt;}
.yc0{bottom:271.225333pt;}
.yba{bottom:272.264000pt;}
.y173{bottom:273.628000pt;}
.y3e{bottom:276.266667pt;}
.y20c{bottom:277.329333pt;}
.y18e{bottom:278.966667pt;}
.y76{bottom:279.880000pt;}
.y1eb{bottom:280.436000pt;}
.y113{bottom:282.174667pt;}
.y1ca{bottom:283.173333pt;}
.y124{bottom:283.445333pt;}
.yd7{bottom:285.916000pt;}
.y195{bottom:285.953333pt;}
.ybf{bottom:289.290667pt;}
.yb9{bottom:290.329333pt;}
.yff{bottom:292.125333pt;}
.y15b{bottom:292.726667pt;}
.y3d{bottom:294.332000pt;}
.y75{bottom:297.945333pt;}
.y1ea{bottom:298.501333pt;}
.y112{bottom:300.241333pt;}
.y123{bottom:301.512000pt;}
.y1ad{bottom:301.558667pt;}
.yd6{bottom:303.981333pt;}
.y18{bottom:305.857333pt;}
.y20b{bottom:307.349333pt;}
.ybe{bottom:307.357333pt;}
.yb8{bottom:308.394667pt;}
.y15a{bottom:310.792000pt;}
.y3c{bottom:312.397333pt;}
.y1c9{bottom:313.726667pt;}
.y74{bottom:316.010667pt;}
.y111{bottom:318.306667pt;}
.y122{bottom:319.577333pt;}
.y1ac{bottom:319.624000pt;}
.y172{bottom:320.226667pt;}
.y192{bottom:320.942667pt;}
.y17{bottom:321.797333pt;}
.yd5{bottom:322.048000pt;}
.y139{bottom:322.193333pt;}
.y20a{bottom:325.416000pt;}
.ybd{bottom:325.422667pt;}
.yb7{bottom:326.460000pt;}
.y194{bottom:326.697333pt;}
.y1e9{bottom:327.684000pt;}
.y159{bottom:328.857333pt;}
.y3b{bottom:330.462667pt;}
.y18d{bottom:332.053333pt;}
.y73{bottom:334.076000pt;}
.y110{bottom:336.372000pt;}
.y191{bottom:336.677333pt;}
.y121{bottom:337.642667pt;}
.y1ab{bottom:337.689333pt;}
.y16{bottom:337.737333pt;}
.y171{bottom:338.292000pt;}
.yfe{bottom:339.296000pt;}
.yd4{bottom:340.113333pt;}
.y138{bottom:340.258667pt;}
.y209{bottom:343.481333pt;}
.y1c8{bottom:344.278667pt;}
.yb6{bottom:344.526667pt;}
.y1e8{bottom:345.749333pt;}
.y193{bottom:346.788000pt;}
.y158{bottom:346.924000pt;}
.y55{bottom:348.529333pt;}
.y18c{bottom:350.118667pt;}
.y72{bottom:352.141333pt;}
.y15{bottom:353.678667pt;}
.y10f{bottom:354.437333pt;}
.y1aa{bottom:355.754667pt;}
.y170{bottom:356.357333pt;}
.yfd{bottom:357.361333pt;}
.yd3{bottom:358.178667pt;}
.y137{bottom:358.324000pt;}
.y1c7{bottom:362.344000pt;}
.yb5{bottom:362.592000pt;}
.y157{bottom:364.989333pt;}
.ybc{bottom:365.844000pt;}
.y17d{bottom:366.594667pt;}
.y18b{bottom:368.184000pt;}
.y14{bottom:369.618667pt;}
.y71{bottom:370.208000pt;}
.y10e{bottom:372.502667pt;}
.y208{bottom:373.501333pt;}
.y1a9{bottom:373.820000pt;}
.y16f{bottom:374.422667pt;}
.y1e7{bottom:374.932000pt;}
.y120{bottom:375.333333pt;}
.yd2{bottom:376.244000pt;}
.y136{bottom:376.390667pt;}
.y3a{bottom:380.144000pt;}
.y1c6{bottom:380.409333pt;}
.yb4{bottom:380.657333pt;}
.y54{bottom:382.358667pt;}
.y156{bottom:383.054667pt;}
.y17c{bottom:384.660000pt;}
.y13{bottom:385.558667pt;}
.y18a{bottom:386.249333pt;}
.y70{bottom:388.273333pt;}
.y10d{bottom:390.569333pt;}
.y207{bottom:391.568000pt;}
.y1a8{bottom:391.886667pt;}
.y1e6{bottom:392.998667pt;}
.y135{bottom:394.456000pt;}
.yfc{bottom:395.300000pt;}
.y39{bottom:398.209333pt;}
.yb3{bottom:398.722667pt;}
.y190{bottom:400.765333pt;}
.y155{bottom:401.120000pt;}
.y12{bottom:401.498667pt;}
.y17b{bottom:402.725333pt;}
.yd1{bottom:403.536000pt;}
.y189{bottom:404.314667pt;}
.y6f{bottom:406.338667pt;}
.y220{bottom:407.430667pt;}
.y16e{bottom:407.916000pt;}
.y10c{bottom:408.634667pt;}
.y1a7{bottom:409.952000pt;}
.ye6{bottom:410.697333pt;}
.y1c5{bottom:410.961333pt;}
.y1e5{bottom:411.064000pt;}
.y38{bottom:416.274667pt;}
.yb2{bottom:416.788000pt;}
.y11{bottom:417.438667pt;}
.y17a{bottom:420.790667pt;}
.y206{bottom:421.588000pt;}
.yd0{bottom:421.601333pt;}
.y11f{bottom:422.278667pt;}
.y188{bottom:422.381333pt;}
.y21f{bottom:425.496000pt;}
.y10b{bottom:426.700000pt;}
.y134{bottom:426.973333pt;}
.y1a6{bottom:428.017333pt;}
.y1c4{bottom:429.026667pt;}
.y53{bottom:429.452000pt;}
.y154{bottom:430.694667pt;}
.y10{bottom:433.378667pt;}
.y6e{bottom:433.437333pt;}
.y37{bottom:434.340000pt;}
.yb1{bottom:434.854667pt;}
.y179{bottom:438.857333pt;}
.ycf{bottom:439.668000pt;}
.y1e4{bottom:440.246667pt;}
.y187{bottom:440.446667pt;}
.yfb{bottom:442.470667pt;}
.y21e{bottom:443.561333pt;}
.y10a{bottom:444.765333pt;}
.y1a5{bottom:446.082667pt;}
.y52{bottom:447.518667pt;}
.y153{bottom:448.760000pt;}
.yf{bottom:449.320000pt;}
.y11e{bottom:450.089333pt;}
.y6d{bottom:451.502667pt;}
.y205{bottom:451.609333pt;}
.y36{bottom:452.406667pt;}
.yb0{bottom:452.920000pt;}
.y16d{bottom:454.513333pt;}
.ye5{bottom:457.169333pt;}
.yce{bottom:457.733333pt;}
.y1e3{bottom:458.312000pt;}
.y186{bottom:458.512000pt;}
.y1c3{bottom:459.578667pt;}
.yfa{bottom:460.536000pt;}
.y21d{bottom:461.626667pt;}
.y1a4{bottom:464.148000pt;}
.ye{bottom:465.260000pt;}
.y51{bottom:465.584000pt;}
.y152{bottom:466.825333pt;}
.y11d{bottom:468.154667pt;}
.y6c{bottom:469.568000pt;}
.y204{bottom:469.674667pt;}
.y35{bottom:470.472000pt;}
.yaf{bottom:470.985333pt;}
.y178{bottom:472.058667pt;}
.y133{bottom:472.137333pt;}
.ye4{bottom:475.234667pt;}
.ycd{bottom:475.798667pt;}
.y185{bottom:476.577333pt;}
.y1c2{bottom:477.645333pt;}
.y94{bottom:478.430667pt;}
.yf9{bottom:478.601333pt;}
.y21c{bottom:479.692000pt;}
.y109{bottom:481.094667pt;}
.yd{bottom:481.200000pt;}
.y1a3{bottom:482.214667pt;}
.y16c{bottom:482.586667pt;}
.y50{bottom:483.649333pt;}
.y151{bottom:484.890667pt;}
.y11c{bottom:486.220000pt;}
.y1e2{bottom:487.494667pt;}
.y203{bottom:487.740000pt;}
.y34{bottom:488.537333pt;}
.y132{bottom:490.204000pt;}
.ye3{bottom:493.300000pt;}
.ycc{bottom:493.864000pt;}
.y184{bottom:494.642667pt;}
.y1c1{bottom:495.710667pt;}
.y93{bottom:496.496000pt;}
.y6b{bottom:496.666667pt;}
.yc{bottom:497.140000pt;}
.y1a2{bottom:500.280000pt;}
.y4f{bottom:501.714667pt;}
.y150{bottom:502.957333pt;}
.y1e1{bottom:505.560000pt;}
.y22c{bottom:505.700000pt;}
.y33{bottom:506.602667pt;}
.y131{bottom:508.269333pt;}
.y21b{bottom:508.666667pt;}
.yae{bottom:510.614667pt;}
.y16b{bottom:510.660000pt;}
.ye2{bottom:511.366667pt;}
.ycb{bottom:511.929333pt;}
.y183{bottom:512.709333pt;}
.yb{bottom:513.080000pt;}
.y11b{bottom:514.030667pt;}
.y92{bottom:514.561333pt;}
.y6a{bottom:514.732000pt;}
.yf8{bottom:514.733333pt;}
.y202{bottom:517.761333pt;}
.y1a1{bottom:518.345333pt;}
.y4e{bottom:519.780000pt;}
.y14f{bottom:521.022667pt;}
.y22b{bottom:523.765333pt;}
.y32{bottom:524.668000pt;}
.y1c0{bottom:526.262667pt;}
.y130{bottom:526.334667pt;}
.y177{bottom:526.917333pt;}
.y16a{bottom:528.725333pt;}
.ye1{bottom:529.432000pt;}
.yca{bottom:529.996000pt;}
.y182{bottom:530.774667pt;}
.y108{bottom:531.912000pt;}
.y91{bottom:532.626667pt;}
.y69{bottom:532.797333pt;}
.yf7{bottom:532.798667pt;}
.y1e0{bottom:534.744000pt;}
.y201{bottom:535.826667pt;}
.y1a0{bottom:536.410667pt;}
.y4d{bottom:537.846667pt;}
.y14e{bottom:539.088000pt;}
.ya{bottom:539.381333pt;}
.y22a{bottom:541.830667pt;}
.y11a{bottom:541.977333pt;}
.y31{bottom:542.733333pt;}
.y1bf{bottom:544.328000pt;}
.y12f{bottom:544.400000pt;}
.ye0{bottom:547.497333pt;}
.yc9{bottom:548.061333pt;}
.y181{bottom:548.840000pt;}
.y107{bottom:549.977333pt;}
.y90{bottom:550.692000pt;}
.yf6{bottom:550.864000pt;}
.y1df{bottom:552.809333pt;}
.y19f{bottom:554.476000pt;}
.y4c{bottom:555.912000pt;}
.y169{bottom:556.798667pt;}
.y14d{bottom:557.153333pt;}
.y68{bottom:559.896000pt;}
.y30{bottom:560.800000pt;}
.y12e{bottom:562.465333pt;}
.yad{bottom:565.316000pt;}
.ydf{bottom:565.562667pt;}
.y200{bottom:565.848000pt;}
.yc8{bottom:566.126667pt;}
.y180{bottom:566.905333pt;}
.y106{bottom:568.042667pt;}
.y8f{bottom:568.758667pt;}
.yf5{bottom:568.929333pt;}
.y1de{bottom:570.874667pt;}
.y19e{bottom:572.542667pt;}
.y4b{bottom:573.977333pt;}
.y168{bottom:574.864000pt;}
.y1be{bottom:574.880000pt;}
.y14c{bottom:575.218667pt;}
.y67{bottom:577.961333pt;}
.y2f{bottom:578.865333pt;}
.y12d{bottom:580.530667pt;}
.yac{bottom:583.381333pt;}
.yde{bottom:583.628000pt;}
.y1ff{bottom:583.913333pt;}
.yc7{bottom:584.192000pt;}
.y105{bottom:586.108000pt;}
.y8e{bottom:586.824000pt;}
.yf4{bottom:586.994667pt;}
.y119{bottom:588.921333pt;}
.y19d{bottom:590.608000pt;}
.y4a{bottom:592.042667pt;}
.y17f{bottom:592.281333pt;}
.y8{bottom:592.437333pt;}
.y167{bottom:592.930667pt;}
.y1bd{bottom:592.945333pt;}
.y14b{bottom:593.285333pt;}
.y66{bottom:596.028000pt;}
.y2e{bottom:596.930667pt;}
.y1dd{bottom:600.057333pt;}
.yab{bottom:601.446667pt;}
.y8d{bottom:604.889333pt;}
.yf3{bottom:605.061333pt;}
.y19c{bottom:608.673333pt;}
.y12c{bottom:609.941333pt;}
.y49{bottom:610.108000pt;}
.y7{bottom:610.502667pt;}
.y166{bottom:610.996000pt;}
.y1bc{bottom:611.010667pt;}
.y14a{bottom:611.350667pt;}
.y1fe{bottom:613.933333pt;}
.y65{bottom:614.093333pt;}
.y2d{bottom:614.996000pt;}
.yc6{bottom:616.904000pt;}
.y1dc{bottom:618.122667pt;}
.yaa{bottom:619.513333pt;}
.ydd{bottom:620.800000pt;}
.y104{bottom:621.934667pt;}
.y8c{bottom:622.954667pt;}
.y9{bottom:624.093333pt;}
.y149{bottom:629.416000pt;}
.y12b{bottom:629.768000pt;}
.y1fd{bottom:631.998667pt;}
.y64{bottom:632.158667pt;}
.y2c{bottom:633.061333pt;}
.y1db{bottom:636.189333pt;}
.y118{bottom:636.232000pt;}
.ya9{bottom:637.578667pt;}
.y17e{bottom:639.878667pt;}
.y8b{bottom:641.020000pt;}
.y1bb{bottom:641.564000pt;}
.yf2{bottom:643.000000pt;}
.y19b{bottom:644.804000pt;}
.y148{bottom:647.481333pt;}
.y48{bottom:647.552000pt;}
.y165{bottom:648.101333pt;}
.y1fc{bottom:650.065333pt;}
.y63{bottom:650.224000pt;}
.y2b{bottom:651.128000pt;}
.ya8{bottom:655.644000pt;}
.y6{bottom:658.732000pt;}
.y8a{bottom:659.086667pt;}
.y1ba{bottom:659.629333pt;}
.yc5{bottom:662.352000pt;}
.y1da{bottom:665.372000pt;}
.y147{bottom:665.546667pt;}
.y62{bottom:668.289333pt;}
.y2a{bottom:669.193333pt;}
.ya7{bottom:673.709333pt;}
.y4{bottom:676.797333pt;}
.y89{bottom:677.152000pt;}
.y1fb{bottom:680.085333pt;}
.y1d9{bottom:683.437333pt;}
.y61{bottom:686.356000pt;}
.ydc{bottom:686.770667pt;}
.y29{bottom:687.258667pt;}
.yf1{bottom:690.170667pt;}
.y1b9{bottom:690.181333pt;}
.y5{bottom:690.388000pt;}
.ya6{bottom:691.774667pt;}
.y88{bottom:695.217333pt;}
.y19a{bottom:695.388000pt;}
.y47{bottom:695.462667pt;}
.y1fa{bottom:698.150667pt;}
.y164{bottom:699.833333pt;}
.y1d8{bottom:701.502667pt;}
.y146{bottom:704.154667pt;}
.y60{bottom:704.421333pt;}
.ydb{bottom:704.837333pt;}
.y28{bottom:705.324000pt;}
.yf0{bottom:708.236000pt;}
.y1b8{bottom:708.246667pt;}
.yc4{bottom:709.144000pt;}
.ya5{bottom:709.841333pt;}
.y87{bottom:713.282667pt;}
.y199{bottom:713.453333pt;}
.y163{bottom:717.898667pt;}
.y12a{bottom:722.486667pt;}
.y27{bottom:723.389333pt;}
.yef{bottom:726.301333pt;}
.y1b7{bottom:726.312000pt;}
.y21a{bottom:726.900000pt;}
.ya4{bottom:727.906667pt;}
.y1f9{bottom:728.172000pt;}
.y1d7{bottom:730.685333pt;}
.y86{bottom:731.348000pt;}
.y5f{bottom:731.520000pt;}
.y3{bottom:733.820000pt;}
.y162{bottom:735.964000pt;}
.y129{bottom:740.552000pt;}
.y26{bottom:741.456000pt;}
.yee{bottom:744.366667pt;}
.y219{bottom:744.965333pt;}
.ya3{bottom:745.972000pt;}
.y1f8{bottom:746.237333pt;}
.y1d6{bottom:748.750667pt;}
.y85{bottom:749.414667pt;}
.y5e{bottom:749.585333pt;}
.y161{bottom:754.029333pt;}
.y1b6{bottom:756.864000pt;}
.y128{bottom:758.617333pt;}
.y25{bottom:759.521333pt;}
.yed{bottom:762.433333pt;}
.y218{bottom:763.030667pt;}
.y2{bottom:763.044000pt;}
.ya2{bottom:764.037333pt;}
.y1f7{bottom:764.302667pt;}
.y1d5{bottom:766.817333pt;}
.y84{bottom:767.480000pt;}
.y5d{bottom:767.650667pt;}
.y1b5{bottom:774.930667pt;}
.y229{bottom:776.684000pt;}
.y24{bottom:777.586667pt;}
.y217{bottom:781.096000pt;}
.ya1{bottom:782.102667pt;}
.y145{bottom:783.964000pt;}
.y83{bottom:785.545333pt;}
.y5c{bottom:785.716000pt;}
.yec{bottom:790.333333pt;}
.y127{bottom:791.136000pt;}
.y1b4{bottom:792.996000pt;}
.y1f6{bottom:794.324000pt;}
.y228{bottom:794.749333pt;}
.y23{bottom:795.652000pt;}
.y1d4{bottom:796.000000pt;}
.y216{bottom:799.161333pt;}
.ya0{bottom:800.169333pt;}
.y82{bottom:803.610667pt;}
.y5b{bottom:803.781333pt;}
.yeb{bottom:808.398667pt;}
.y1b3{bottom:811.061333pt;}
.y1f5{bottom:812.389333pt;}
.y227{bottom:812.814667pt;}
.y22{bottom:813.717333pt;}
.y1d3{bottom:814.065333pt;}
.y9f{bottom:818.234667pt;}
.y81{bottom:821.676000pt;}
.y5a{bottom:821.848000pt;}
.yea{bottom:826.465333pt;}
.y1f4{bottom:830.454667pt;}
.y226{bottom:830.880000pt;}
.y21{bottom:831.784000pt;}
.y1d2{bottom:832.130667pt;}
.y215{bottom:835.293333pt;}
.y9e{bottom:836.300000pt;}
.y144{bottom:837.049333pt;}
.y80{bottom:839.742667pt;}
.y59{bottom:839.913333pt;}
.y1b2{bottom:841.613333pt;}
.ye9{bottom:844.530667pt;}
.y1f3{bottom:848.521333pt;}
.y20{bottom:849.849333pt;}
.y143{bottom:850.096000pt;}
.y9d{bottom:854.365333pt;}
.y142{bottom:855.114667pt;}
.y7f{bottom:857.808000pt;}
.y58{bottom:857.978667pt;}
.y1b1{bottom:859.678667pt;}
.y1d1{bottom:861.313333pt;}
.ye8{bottom:862.596000pt;}
.y225{bottom:867.012000pt;}
.y1f{bottom:867.914667pt;}
.y141{bottom:871.268000pt;}
.y214{bottom:871.424000pt;}
.y9c{bottom:872.430667pt;}
.y7e{bottom:875.873333pt;}
.y57{bottom:876.044000pt;}
.y140{bottom:876.286667pt;}
.y1f2{bottom:878.541333pt;}
.y1d0{bottom:879.380000pt;}
.y176{bottom:879.414667pt;}
.ye7{bottom:880.661333pt;}
.y224{bottom:885.077333pt;}
.y1e{bottom:885.980000pt;}
.y1{bottom:890.121333pt;}
.y1b0{bottom:890.230667pt;}
.y9b{bottom:890.497333pt;}
.y13f{bottom:893.100000pt;}
.y7d{bottom:893.938667pt;}
.y198{bottom:894.109333pt;}
.y1f1{bottom:896.606667pt;}
.y13e{bottom:898.118667pt;}
.y103{bottom:899.034667pt;}
.y223{bottom:903.142667pt;}
.y1d{bottom:904.045333pt;}
.y175{bottom:907.196000pt;}
.y213{bottom:907.556000pt;}
.y1af{bottom:908.296000pt;}
.y9a{bottom:908.562667pt;}
.y7c{bottom:912.004000pt;}
.y56{bottom:912.176000pt;}
.y13d{bottom:912.658667pt;}
.y1f0{bottom:914.673333pt;}
.y13c{bottom:917.677333pt;}
.y222{bottom:921.208000pt;}
.y212{bottom:925.621333pt;}
.y1ae{bottom:926.362667pt;}
.y99{bottom:926.628000pt;}
.y7b{bottom:930.070667pt;}
.y174{bottom:934.977333pt;}
.y221{bottom:939.273333pt;}
.y13a{bottom:943.885333pt;}
.y98{bottom:944.693333pt;}
.y211{bottom:956.521333pt;}
.y13b{bottom:961.950667pt;}
.y1c{bottom:962.758667pt;}
.y1b{bottom:1010.580000pt;}
.h5{height:0.000000pt;}
.h16{height:39.587098pt;}
.h2{height:39.850400pt;}
.h6{height:43.636400pt;}
.h19{height:43.641733pt;}
.h4{height:47.820800pt;}
.h1b{height:49.318931pt;}
.h1a{height:50.909133pt;}
.h18{height:51.665600pt;}
.ha{height:51.670933pt;}
.h8{height:56.552774pt;}
.h7{height:57.384800pt;}
.h9{height:60.707098pt;}
.hb{height:60.712431pt;}
.hd{height:65.235098pt;}
.h3{height:68.861600pt;}
.h13{height:76.627441pt;}
.h10{height:76.632774pt;}
.he{height:80.781764pt;}
.h14{height:80.787098pt;}
.hf{height:82.589764pt;}
.h11{height:85.309764pt;}
.h12{height:87.704431pt;}
.hc{height:96.467441pt;}
.h17{height:96.472774pt;}
.h15{height:106.904431pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:105.730667pt;}
.x11{left:106.793333pt;}
.x1{left:108.000000pt;}
.x3{left:113.412000pt;}
.x2f{left:118.501333pt;}
.x39{left:121.425333pt;}
.x38{left:122.545333pt;}
.x2d{left:124.160000pt;}
.x3a{left:139.948000pt;}
.x3b{left:142.437333pt;}
.x3c{left:143.374667pt;}
.xf{left:144.364000pt;}
.x31{left:157.898667pt;}
.xe{left:164.289333pt;}
.x30{left:176.006667pt;}
.x6{left:178.124000pt;}
.x2{left:187.300000pt;}
.x4{left:201.921333pt;}
.x21{left:205.898667pt;}
.x2b{left:220.844000pt;}
.x24{left:227.548000pt;}
.x25{left:229.936000pt;}
.xa{left:234.206667pt;}
.x17{left:240.313333pt;}
.x12{left:245.606667pt;}
.x1f{left:247.825333pt;}
.x20{left:252.952000pt;}
.x2e{left:254.081333pt;}
.x33{left:258.473333pt;}
.x18{left:274.094667pt;}
.x16{left:276.720000pt;}
.x32{left:278.538667pt;}
.x34{left:286.365333pt;}
.x13{left:294.116000pt;}
.x14{left:299.606667pt;}
.x1c{left:314.222667pt;}
.x2c{left:326.778667pt;}
.x10{left:329.600000pt;}
.x19{left:331.716000pt;}
.x1b{left:339.136000pt;}
.x1d{left:347.205333pt;}
.x1a{left:349.796000pt;}
.x5{left:351.193333pt;}
.x22{left:355.482667pt;}
.x23{left:356.625333pt;}
.x1e{left:358.356000pt;}
.x35{left:360.689333pt;}
.xd{left:372.776000pt;}
.x28{left:383.024000pt;}
.x36{left:384.124000pt;}
.x37{left:413.798667pt;}
.x7{left:432.418667pt;}
.x9{left:436.509333pt;}
.xb{left:458.353333pt;}
.x2a{left:496.244000pt;}
.x26{left:520.000000pt;}
.x29{left:592.057333pt;}
.x27{left:605.798667pt;}
.xc{left:611.532000pt;}
.x8{left:637.466667pt;}
}




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