
    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_ec21963b9ee38305e9acbae3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.953000;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_cf632060e5b4e6b8ca9d57b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_e31ffcda4df703f7b7439045.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_f93195a94d7de848b57cd86a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_7da00643948b16aba060fec9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.129000;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_d56b04327f9a34c382761f53.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895000;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_5143df55761aed554d4a34b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_ca645e207cb0a79159efcc93.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_9d1197a4f1e351beee8c830c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_e81954b36caf3ebb448a73ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.246114;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-23.748000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.036200px;}
.v2{vertical-align:13.683254px;}
.lsc{letter-spacing:-6.450000px;}
.ls28{letter-spacing:-1.911984px;}
.ls2c{letter-spacing:-0.029876px;}
.ls17{letter-spacing:-0.017926px;}
.lsa{letter-spacing:-0.011950px;}
.ls1a{letter-spacing:-0.011274px;}
.ls18{letter-spacing:-0.008455px;}
.lsb{letter-spacing:-0.005975px;}
.ls19{letter-spacing:-0.002818px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.003000px;}
.ls6{letter-spacing:0.003924px;}
.ls7{letter-spacing:0.025152px;}
.ls1f{letter-spacing:1.204550px;}
.ls2a{letter-spacing:2.332628px;}
.ls1c{letter-spacing:2.351748px;}
.ls1d{letter-spacing:2.359396px;}
.ls21{letter-spacing:2.363220px;}
.ls29{letter-spacing:2.370868px;}
.ls27{letter-spacing:2.389980px;}
.ls1b{letter-spacing:2.394981px;}
.ls15{letter-spacing:2.413880px;}
.ls16{letter-spacing:2.428220px;}
.ls13{letter-spacing:2.433000px;}
.ls0{letter-spacing:2.437780px;}
.ls14{letter-spacing:2.447340px;}
.ls2d{letter-spacing:2.949235px;}
.ls2{letter-spacing:2.987610px;}
.ls2b{letter-spacing:2.987862px;}
.ls1e{letter-spacing:13.140110px;}
.ls20{letter-spacing:14.335671px;}
.ls24{letter-spacing:14.336100px;}
.ls26{letter-spacing:14.339880px;}
.ls25{letter-spacing:14.341711px;}
.ls22{letter-spacing:14.342311px;}
.ls23{letter-spacing:14.344800px;}
.ls12{letter-spacing:15.469845px;}
.ls3{letter-spacing:15.714829px;}
.lsf{letter-spacing:20.913270px;}
.ls10{letter-spacing:21.899181px;}
.ls9{letter-spacing:23.004030px;}
.ls11{letter-spacing:24.396823px;}
.ls1{letter-spacing:25.983247px;}
.lsd{letter-spacing:29.350281px;}
.lse{letter-spacing:29.356256px;}
.ls4{letter-spacing:30.234613px;}
.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;}
}
.ws45{word-spacing:-45.172663px;}
.ws88{word-spacing:-44.294306px;}
.ws96{word-spacing:-35.851320px;}
.ws3d{word-spacing:-30.652879px;}
.ws113{word-spacing:-26.289780px;}
.ws97{word-spacing:-17.925660px;}
.ws3{word-spacing:-16.431450px;}
.ws2c{word-spacing:-14.938050px;}
.wsf{word-spacing:-13.443300px;}
.ws5a{word-spacing:-13.443000px;}
.ws123{word-spacing:-11.949900px;}
.ws124{word-spacing:-11.930818px;}
.ws11b{word-spacing:-11.923170px;}
.ws118{word-spacing:-11.919346px;}
.ws111{word-spacing:-11.911698px;}
.ws128{word-spacing:-10.037916px;}
.ws21{word-spacing:-6.333733px;}
.ws5e{word-spacing:-2.987610px;}
.ws119{word-spacing:-2.391178px;}
.ws11{word-spacing:-1.021691px;}
.wsb7{word-spacing:-0.896283px;}
.ws10e{word-spacing:-0.884333px;}
.ws74{word-spacing:-0.836531px;}
.ws167{word-spacing:-0.776779px;}
.ws29{word-spacing:-0.723002px;}
.ws2a{word-spacing:-0.717026px;}
.wsa4{word-spacing:-0.663249px;}
.wsa6{word-spacing:-0.645324px;}
.wsa5{word-spacing:-0.597522px;}
.ws12f{word-spacing:-0.478018px;}
.ws130{word-spacing:-0.430216px;}
.ws12e{word-spacing:-0.418265px;}
.ws106{word-spacing:-0.358513px;}
.ws78{word-spacing:-0.059752px;}
.wsca{word-spacing:-0.047800px;}
.ws5b{word-spacing:0.000000px;}
.ws116{word-spacing:0.015296px;}
.ws126{word-spacing:0.019120px;}
.ws112{word-spacing:0.022944px;}
.ws117{word-spacing:0.036695px;}
.ws11a{word-spacing:0.038240px;}
.ws8c{word-spacing:0.053777px;}
.ws8d{word-spacing:0.059752px;}
.ws115{word-spacing:0.076480px;}
.ws196{word-spacing:0.113529px;}
.ws195{word-spacing:0.155356px;}
.ws146{word-spacing:0.298761px;}
.ws67{word-spacing:0.352538px;}
.ws68{word-spacing:0.358513px;}
.ws149{word-spacing:0.418265px;}
.ws69{word-spacing:0.478018px;}
.ws16{word-spacing:0.483959px;}
.wsb9{word-spacing:0.531795px;}
.wsb8{word-spacing:0.537770px;}
.wsc1{word-spacing:0.657274px;}
.wsae{word-spacing:0.717026px;}
.ws77{word-spacing:0.764828px;}
.ws2b{word-spacing:0.776779px;}
.ws16d{word-spacing:0.836531px;}
.ws9a{word-spacing:0.896283px;}
.ws15a{word-spacing:0.944085px;}
.ws15b{word-spacing:0.950060px;}
.ws8f{word-spacing:0.956035px;}
.ws94{word-spacing:1.015787px;}
.wsb{word-spacing:1.021691px;}
.ws10a{word-spacing:1.075540px;}
.ws125{word-spacing:1.189678px;}
.ws12c{word-spacing:1.195044px;}
.ws158{word-spacing:1.254796px;}
.ws159{word-spacing:1.278697px;}
.wsd5{word-spacing:1.314548px;}
.ws19{word-spacing:1.344330px;}
.ws6e{word-spacing:1.428078px;}
.ws6d{word-spacing:1.434053px;}
.ws99{word-spacing:1.493805px;}
.ws16f{word-spacing:1.505755px;}
.ws135{word-spacing:1.553557px;}
.ws5f{word-spacing:1.613309px;}
.ws138{word-spacing:1.673062px;}
.ws15e{word-spacing:1.696962px;}
.wsa3{word-spacing:1.726839px;}
.wsa2{word-spacing:1.732814px;}
.wsec{word-spacing:1.786591px;}
.wseb{word-spacing:1.792566px;}
.ws18f{word-spacing:1.852318px;}
.wsaa{word-spacing:1.906095px;}
.wsab{word-spacing:1.912070px;}
.ws64{word-spacing:1.971823px;}
.ws55{word-spacing:2.031575px;}
.ws10d{word-spacing:2.210831px;}
.ws4c{word-spacing:2.264608px;}
.ws60{word-spacing:2.270584px;}
.ws168{word-spacing:2.324361px;}
.ws31{word-spacing:2.330336px;}
.ws4e{word-spacing:2.342286px;}
.ws114{word-spacing:2.391811px;}
.ws4d{word-spacing:2.566066px;}
.ws190{word-spacing:2.569345px;}
.ws65{word-spacing:2.623122px;}
.ws12a{word-spacing:2.629097px;}
.ws5c{word-spacing:2.742000px;}
.ws5d{word-spacing:2.748000px;}
.ws2f{word-spacing:2.748601px;}
.wsb3{word-spacing:2.808353px;}
.ws18{word-spacing:3.011299px;}
.ws47{word-spacing:3.035412px;}
.ws48{word-spacing:3.047362px;}
.ws63{word-spacing:3.166867px;}
.ws1a3{word-spacing:3.197793px;}
.ws1a2{word-spacing:3.202573px;}
.ws20{word-spacing:3.226392px;}
.ws61{word-spacing:3.226619px;}
.ws175{word-spacing:3.286371px;}
.ws1f{word-spacing:3.339316px;}
.wsd4{word-spacing:3.346123px;}
.wsc3{word-spacing:3.465628px;}
.ws160{word-spacing:3.525380px;}
.ws19f{word-spacing:3.537170px;}
.ws191{word-spacing:3.585132px;}
.ws197{word-spacing:3.609033px;}
.wsdf{word-spacing:3.716587px;}
.wsac{word-spacing:3.764389px;}
.ws10f{word-spacing:3.824141px;}
.ws143{word-spacing:3.943645px;}
.ws142{word-spacing:4.003397px;}
.wsc9{word-spacing:4.063150px;}
.ws26{word-spacing:4.122902px;}
.ws18c{word-spacing:4.176679px;}
.ws9e{word-spacing:4.182654px;}
.ws154{word-spacing:4.296183px;}
.wsbd{word-spacing:4.302158px;}
.wsf6{word-spacing:4.415688px;}
.wse6{word-spacing:4.421663px;}
.ws13f{word-spacing:4.481415px;}
.ws41{word-spacing:4.541167px;}
.ws145{word-spacing:4.600919px;}
.wsa8{word-spacing:4.660672px;}
.ws144{word-spacing:4.672622px;}
.ws49{word-spacing:4.720424px;}
.wsff{word-spacing:4.775180px;}
.ws100{word-spacing:4.779960px;}
.ws4a{word-spacing:4.780176px;}
.ws13e{word-spacing:4.833953px;}
.ws2d{word-spacing:4.839928px;}
.ws194{word-spacing:5.061011px;}
.ws6a{word-spacing:5.078937px;}
.ws1a5{word-spacing:5.109777px;}
.ws1a4{word-spacing:5.114557px;}
.ws54{word-spacing:5.138689px;}
.ws137{word-spacing:5.198441px;}
.ws171{word-spacing:5.258194px;}
.ws16e{word-spacing:5.317946px;}
.ws84{word-spacing:5.377698px;}
.wsd3{word-spacing:5.437450px;}
.ws136{word-spacing:5.491227px;}
.wse2{word-spacing:5.497202px;}
.ws18a{word-spacing:5.556955px;}
.wsf9{word-spacing:5.616707px;}
.wsef{word-spacing:5.664509px;}
.wsed{word-spacing:5.670484px;}
.wsee{word-spacing:5.688409px;}
.ws39{word-spacing:5.736211px;}
.wsa0{word-spacing:5.849740px;}
.ws2e{word-spacing:5.855716px;}
.ws3b{word-spacing:5.909493px;}
.ws3c{word-spacing:5.915468px;}
.ws9{word-spacing:5.957294px;}
.ws5{word-spacing:5.963270px;}
.ws17{word-spacing:5.968825px;}
.ws4{word-spacing:5.969245px;}
.ws6{word-spacing:5.975220px;}
.ws8{word-spacing:5.987170px;}
.ws7{word-spacing:5.993146px;}
.ws19e{word-spacing:6.022750px;}
.ws10c{word-spacing:6.034972px;}
.ws62{word-spacing:6.094724px;}
.ws164{word-spacing:6.154477px;}
.ws10b{word-spacing:6.273981px;}
.ws66{word-spacing:6.327758px;}
.ws169{word-spacing:6.357634px;}
.wsad{word-spacing:6.393485px;}
.ws141{word-spacing:6.453238px;}
.wse7{word-spacing:6.507015px;}
.wsa9{word-spacing:6.512990px;}
.ws15f{word-spacing:6.548841px;}
.ws1{word-spacing:6.572580px;}
.wsf8{word-spacing:6.572742px;}
.ws2{word-spacing:6.579153px;}
.ws177{word-spacing:6.632494px;}
.ws105{word-spacing:6.692246px;}
.ws1d{word-spacing:6.721650px;}
.wsbf{word-spacing:6.746023px;}
.wsc0{word-spacing:6.751999px;}
.ws174{word-spacing:6.811751px;}
.ws95{word-spacing:6.931255px;}
.wsa1{word-spacing:6.961131px;}
.wsd{word-spacing:6.990516px;}
.ws28{word-spacing:6.991007px;}
.ws173{word-spacing:7.110512px;}
.wsbe{word-spacing:7.170264px;}
.wsd8{word-spacing:7.230016px;}
.wse4{word-spacing:7.283793px;}
.wse5{word-spacing:7.289768px;}
.wse1{word-spacing:7.349521px;}
.ws178{word-spacing:7.409273px;}
.ws91{word-spacing:7.463050px;}
.ws90{word-spacing:7.469025px;}
.ws16c{word-spacing:7.516827px;}
.ws92{word-spacing:7.522802px;}
.wsba{word-spacing:7.528777px;}
.ws15c{word-spacing:7.588529px;}
.ws15d{word-spacing:7.600480px;}
.ws75{word-spacing:7.761811px;}
.ws76{word-spacing:7.767786px;}
.ws148{word-spacing:7.827538px;}
.ws18e{word-spacing:7.887290px;}
.wsbc{word-spacing:7.947043px;}
.ws13d{word-spacing:8.006795px;}
.ws110{word-spacing:8.126299px;}
.ws151{word-spacing:8.257754px;}
.ws12d{word-spacing:8.365308px;}
.ws10{word-spacing:8.388619px;}
.ws14f{word-spacing:8.419085px;}
.wse9{word-spacing:8.425060px;}
.wsd6{word-spacing:8.484812px;}
.ws25{word-spacing:8.538589px;}
.ws53{word-spacing:8.544565px;}
.ws172{word-spacing:8.598342px;}
.ws24{word-spacing:8.604317px;}
.wsfa{word-spacing:8.723821px;}
.wsbb{word-spacing:8.783573px;}
.ws27{word-spacing:8.897103px;}
.wsa7{word-spacing:8.903078px;}
.ws3a{word-spacing:8.962830px;}
.wsd7{word-spacing:9.016607px;}
.ws156{word-spacing:9.022582px;}
.ws14a{word-spacing:9.082334px;}
.ws14b{word-spacing:9.201839px;}
.ws9b{word-spacing:9.261591px;}
.ws161{word-spacing:9.273541px;}
.ws9c{word-spacing:9.321343px;}
.wsaf{word-spacing:9.440848px;}
.wsb2{word-spacing:9.452798px;}
.wsb0{word-spacing:9.464748px;}
.ws155{word-spacing:9.500600px;}
.wse3{word-spacing:9.554377px;}
.wsf5{word-spacing:9.560352px;}
.wsfd{word-spacing:9.620104px;}
.wsb6{word-spacing:9.673881px;}
.wsc4{word-spacing:9.739609px;}
.ws13c{word-spacing:9.793386px;}
.ws184{word-spacing:9.799361px;}
.ws183{word-spacing:9.811311px;}
.ws18d{word-spacing:9.871063px;}
.wsf0{word-spacing:9.972642px;}
.wsc2{word-spacing:9.978617px;}
.ws147{word-spacing:10.098122px;}
.ws185{word-spacing:10.157874px;}
.ws56{word-spacing:10.217626px;}
.ws103{word-spacing:10.396883px;}
.ws43{word-spacing:10.456635px;}
.ws42{word-spacing:10.516387px;}
.ws36{word-spacing:10.576139px;}
.ws37{word-spacing:10.623941px;}
.ws38{word-spacing:10.635892px;}
.ws16b{word-spacing:10.695644px;}
.wsea{word-spacing:10.755396px;}
.ws13b{word-spacing:10.803198px;}
.ws13a{word-spacing:10.815148px;}
.wsb1{word-spacing:10.827099px;}
.ws30{word-spacing:10.934653px;}
.ws109{word-spacing:11.042207px;}
.wsc5{word-spacing:11.054157px;}
.ws170{word-spacing:11.113909px;}
.ws166{word-spacing:11.173661px;}
.ws4b{word-spacing:11.233414px;}
.wsc{word-spacing:11.292372px;}
.ws33{word-spacing:11.406695px;}
.ws34{word-spacing:11.412670px;}
.ws179{word-spacing:11.472422px;}
.ws188{word-spacing:11.532175px;}
.ws6b{word-spacing:11.651679px;}
.ws6c{word-spacing:11.711431px;}
.ws14c{word-spacing:11.771183px;}
.ws104{word-spacing:11.854836px;}
.ws57{word-spacing:11.890688px;}
.ws1aa{word-spacing:11.946989px;}
.ws1a9{word-spacing:11.947522px;}
.ws1a8{word-spacing:11.967381px;}
.wsd2{word-spacing:12.129697px;}
.ws7f{word-spacing:12.249201px;}
.ws7e{word-spacing:12.308953px;}
.wse{word-spacing:12.314063px;}
.ws8e{word-spacing:12.362730px;}
.ws19a{word-spacing:12.428458px;}
.ws83{word-spacing:12.547962px;}
.ws82{word-spacing:12.607714px;}
.ws3e{word-spacing:12.661491px;}
.ws3f{word-spacing:12.667466px;}
.ws73{word-spacing:12.721243px;}
.ws72{word-spacing:12.727219px;}
.ws79{word-spacing:12.846723px;}
.ws35{word-spacing:12.906475px;}
.ws189{word-spacing:13.085732px;}
.ws51{word-spacing:13.205236px;}
.ws52{word-spacing:13.264988px;}
.ws176{word-spacing:13.318765px;}
.ws9d{word-spacing:13.444245px;}
.ws1a1{word-spacing:13.527287px;}
.ws1a0{word-spacing:13.541627px;}
.ws17e{word-spacing:13.557774px;}
.ws17f{word-spacing:13.563749px;}
.ws8b{word-spacing:13.725080px;}
.ws8a{word-spacing:13.731056px;}
.ws19b{word-spacing:13.743006px;}
.ws12b{word-spacing:13.850560px;}
.wsda{word-spacing:13.922263px;}
.wsdc{word-spacing:14.155296px;}
.wsdb{word-spacing:14.161271px;}
.ws157{word-spacing:14.232974px;}
.ws163{word-spacing:14.280776px;}
.ws0{word-spacing:14.339820px;}
.ws32{word-spacing:14.400280px;}
.ws89{word-spacing:14.436132px;}
.ws18b{word-spacing:14.460032px;}
.ws17c{word-spacing:14.513809px;}
.ws16a{word-spacing:14.519785px;}
.ws108{word-spacing:14.579537px;}
.ws192{word-spacing:14.878298px;}
.ws19d{word-spacing:14.931750px;}
.ws198{word-spacing:14.933756px;}
.ws19c{word-spacing:14.938135px;}
.ws1a{word-spacing:15.002723px;}
.ws7c{word-spacing:15.177059px;}
.ws107{word-spacing:15.236811px;}
.ws44{word-spacing:15.296563px;}
.ws186{word-spacing:15.356315px;}
.ws59{word-spacing:15.416068px;}
.ws70{word-spacing:15.535572px;}
.ws180{word-spacing:15.595324px;}
.wsfb{word-spacing:15.655076px;}
.ws1b{word-spacing:15.755548px;}
.ws87{word-spacing:15.780556px;}
.ws1c{word-spacing:15.809321px;}
.ws50{word-spacing:15.894085px;}
.ws40{word-spacing:15.953837px;}
.ws4f{word-spacing:15.977738px;}
.wscb{word-spacing:16.133094px;}
.ws46{word-spacing:16.192846px;}
.wscc{word-spacing:16.252598px;}
.ws22{word-spacing:16.366128px;}
.ws23{word-spacing:16.372103px;}
.wsf3{word-spacing:16.431855px;}
.wsf4{word-spacing:16.491607px;}
.wsf7{word-spacing:16.533434px;}
.ws7d{word-spacing:16.545384px;}
.wsce{word-spacing:16.551359px;}
.ws199{word-spacing:16.611112px;}
.wsf1{word-spacing:16.664889px;}
.wsf2{word-spacing:16.670864px;}
.ws120{word-spacing:16.682060px;}
.ws1e{word-spacing:16.723465px;}
.ws80{word-spacing:16.730616px;}
.ws93{word-spacing:16.790368px;}
.wscf{word-spacing:16.969625px;}
.ws86{word-spacing:17.023402px;}
.ws85{word-spacing:17.029377px;}
.ws140{word-spacing:17.148881px;}
.ws152{word-spacing:17.208634px;}
.ws153{word-spacing:17.238510px;}
.ws162{word-spacing:17.268386px;}
.ws6f{word-spacing:17.328138px;}
.wsfe{word-spacing:17.340088px;}
.ws1a7{word-spacing:17.351255px;}
.ws15{word-spacing:17.530063px;}
.ws181{word-spacing:17.567147px;}
.ws182{word-spacing:17.626899px;}
.ws139{word-spacing:17.865908px;}
.ws1a6{word-spacing:17.920070px;}
.ws150{word-spacing:18.194545px;}
.wse8{word-spacing:18.385752px;}
.wsfc{word-spacing:18.403678px;}
.wsd0{word-spacing:18.582934px;}
.wsd1{word-spacing:18.642686px;}
.wscd{word-spacing:18.821943px;}
.wsb4{word-spacing:18.881695px;}
.wsb5{word-spacing:18.941447px;}
.ws12{word-spacing:18.981940px;}
.ws134{word-spacing:19.060952px;}
.ws7a{word-spacing:19.114729px;}
.ws7b{word-spacing:19.120704px;}
.ws187{word-spacing:19.240208px;}
.ws58{word-spacing:19.957235px;}
.ws13{word-spacing:20.057404px;}
.ws17a{word-spacing:20.190268px;}
.ws17b{word-spacing:20.196244px;}
.wsdd{word-spacing:20.309773px;}
.wsde{word-spacing:20.315748px;}
.wse0{word-spacing:20.435252px;}
.ws17d{word-spacing:20.554757px;}
.ws71{word-spacing:21.271783px;}
.ws102{word-spacing:21.809553px;}
.ws81{word-spacing:22.341348px;}
.ws9f{word-spacing:22.705836px;}
.wsc7{word-spacing:22.819365px;}
.wsc8{word-spacing:22.825340px;}
.wsc6{word-spacing:23.482615px;}
.wsa{word-spacing:23.767754px;}
.wsd9{word-spacing:23.876979px;}
.ws132{word-spacing:24.074161px;}
.ws131{word-spacing:24.080137px;}
.ws14{word-spacing:25.596043px;}
.ws98{word-spacing:25.932455px;}
.ws193{word-spacing:27.127499px;}
.ws133{word-spacing:30.276440px;}
.ws165{word-spacing:41.826540px;}
.ws14e{word-spacing:44.814150px;}
.ws129{word-spacing:62.138449px;}
.ws11c{word-spacing:116.994233px;}
.ws101{word-spacing:158.802183px;}
.ws14d{word-spacing:168.181952px;}
.ws11e{word-spacing:186.375320px;}
.ws11d{word-spacing:191.200367px;}
.ws11f{word-spacing:194.715088px;}
.ws122{word-spacing:211.467320px;}
.ws121{word-spacing:236.753696px;}
.ws127{word-spacing:260.707868px;}
._d{margin-left:-30.234613px;}
._12{margin-left:-28.794585px;}
._13{margin-left:-20.913270px;}
._b{margin-left:-15.834333px;}
._1c{margin-left:-11.519808px;}
._14{margin-left:-8.066547px;}
._5{margin-left:-6.046774px;}
._4{margin-left:-4.087083px;}
._3{margin-left:-2.372162px;}
._1{margin-left:-1.314516px;}
._7{width:2.067341px;}
._0{width:3.614919px;}
._2{width:5.520967px;}
._27{width:8.460529px;}
._18{width:10.038370px;}
._15{width:11.562051px;}
._11{width:13.850560px;}
._16{width:15.278638px;}
._8{width:16.938558px;}
._c{width:18.463430px;}
._31{width:20.465128px;}
._a{width:22.048562px;}
._6{width:23.713981px;}
._10{width:25.561991px;}
._e{width:29.439909px;}
._f{width:31.489409px;}
._17{width:32.564949px;}
._1b{width:41.928119px;}
._32{width:48.638697px;}
._19{width:50.189580px;}
._9{width:59.752200px;}
._33{width:66.484464px;}
._28{width:101.022853px;}
._1d{width:110.818409px;}
._2b{width:123.153000px;}
._29{width:126.788700px;}
._2c{width:132.397248px;}
._2a{width:135.447300px;}
._2e{width:141.413100px;}
._2f{width:147.065100px;}
._2d{width:150.688500px;}
._1e{width:192.471355px;}
._1a{width:201.098512px;}
._20{width:203.151120px;}
._30{width:210.478281px;}
._23{width:223.591431px;}
._1f{width:235.722178px;}
._24{width:258.099000px;}
._25{width:348.219000px;}
._26{width:358.471200px;}
._22{width:422.744267px;}
._21{width:557.234724px;}
.fc3{color:transparent;}
.fc2{color:rgb(71,71,71);}
.fc1{color:rgb(71,71,71);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:28.184400px;}
.fs8{font-size:38.239800px;}
.fs3{font-size:46.006200px;}
.fs0{font-size:47.799600px;}
.fs6{font-size:53.772000px;}
.fs5{font-size:53.773200px;}
.fs4{font-size:59.752200px;}
.fs2{font-size:65.725800px;}
.fs9{font-size:71.699400px;}
.fs1{font-size:143.398200px;}
.y0{bottom:0.000000px;}
.yd2{bottom:63.529200px;}
.y205{bottom:63.530510px;}
.y196{bottom:63.530550px;}
.y1{bottom:68.360700px;}
.y175{bottom:106.696237px;}
.y5a{bottom:106.699900px;}
.yd1{bottom:106.703879px;}
.y1ce{bottom:106.704342px;}
.y195{bottom:106.708770px;}
.y34{bottom:106.710439px;}
.y109{bottom:106.711529px;}
.y13b{bottom:106.712628px;}
.y9a{bottom:106.714142px;}
.y174{bottom:124.620403px;}
.y59{bottom:124.625560px;}
.y1cd{bottom:124.627014px;}
.yd0{bottom:124.628046px;}
.y194{bottom:124.631443px;}
.y108{bottom:124.634201px;}
.y13a{bottom:124.635301px;}
.y99{bottom:124.638309px;}
.y33{bottom:125.293373px;}
.y173{bottom:142.546063px;}
.y58{bottom:142.551220px;}
.ycf{bottom:142.552212px;}
.y1cc{bottom:142.552674px;}
.y193{bottom:142.557103px;}
.y107{bottom:142.559861px;}
.y139{bottom:142.560961px;}
.y98{bottom:142.562475px;}
.y32{bottom:143.219033px;}
.y172{bottom:160.471723px;}
.y57{bottom:160.476880px;}
.yce{bottom:160.477872px;}
.y1cb{bottom:160.478334px;}
.y192{bottom:160.484256px;}
.y106{bottom:160.485521px;}
.y138{bottom:160.488115px;}
.y31{bottom:161.144693px;}
.y97{bottom:166.104842px;}
.y171{bottom:178.398877px;}
.ycd{bottom:178.402038px;}
.y56{bottom:178.402540px;}
.y1ca{bottom:178.405488px;}
.y191{bottom:178.409916px;}
.y105{bottom:178.412675px;}
.y137{bottom:178.413775px;}
.y30{bottom:179.070353px;}
.y96{bottom:184.029008px;}
.y55{bottom:196.328200px;}
.ycc{bottom:196.329192px;}
.y190{bottom:196.335576px;}
.y104{bottom:196.336841px;}
.y136{bottom:196.337941px;}
.y2f{bottom:196.996013px;}
.y1c9{bottom:197.088507px;}
.y170{bottom:198.648897px;}
.y94{bottom:213.327005px;}
.y95{bottom:213.400202px;}
.ycb{bottom:214.253358px;}
.y54{bottom:214.253860px;}
.y103{bottom:214.261008px;}
.y135{bottom:214.262107px;}
.y2e{bottom:214.921673px;}
.y18f{bottom:214.987226px;}
.y1c8{bottom:215.014167px;}
.y16f{bottom:216.573063px;}
.y204{bottom:226.633500px;}
.y93{bottom:231.251171px;}
.y53{bottom:232.179520px;}
.y102{bottom:232.186668px;}
.y134{bottom:232.187767px;}
.y2d{bottom:232.847333px;}
.y18e{bottom:232.912886px;}
.y1c7{bottom:232.939827px;}
.y16e{bottom:234.497230px;}
.yca{bottom:237.223598px;}
.y203{bottom:240.077850px;}
.y92{bottom:249.175338px;}
.y52{bottom:250.105180px;}
.y133{bottom:250.111933px;}
.y101{bottom:250.112328px;}
.y2c{bottom:250.772993px;}
.y1c6{bottom:250.865487px;}
.y16d{bottom:252.424383px;}
.y202{bottom:253.518878px;}
.yc9{bottom:255.147764px;}
.y18d{bottom:257.239500px;}
.y201{bottom:266.964906px;}
.y91{bottom:267.100998px;}
.y51{bottom:268.030840px;}
.y100{bottom:268.035000px;}
.y132{bottom:268.678436px;}
.y2b{bottom:268.698653px;}
.y1c5{bottom:268.791147px;}
.y16c{bottom:270.348550px;}
.y200{bottom:280.408543px;}
.yc8{bottom:283.981188px;}
.y90{bottom:285.026658px;}
.y50{bottom:285.956500px;}
.yff{bottom:286.156593px;}
.y131{bottom:286.605589px;}
.y2a{bottom:286.624313px;}
.y1c4{bottom:287.475660px;}
.y16b{bottom:288.274210px;}
.y1ff{bottom:293.852181px;}
.yc7{bottom:301.905354px;}
.y8f{bottom:302.952318px;}
.y4f{bottom:303.882160px;}
.yfe{bottom:304.082253px;}
.y130{bottom:304.531249px;}
.y29{bottom:304.549973px;}
.y1c3{bottom:305.401320px;}
.y16a{bottom:306.199870px;}
.y1fe{bottom:307.297013px;}
.yc6{bottom:319.829520px;}
.y1fd{bottom:320.739456px;}
.y8e{bottom:320.876484px;}
.y4e{bottom:321.807820px;}
.yfd{bottom:322.009407px;}
.y28{bottom:322.475633px;}
.y1c2{bottom:323.323992px;}
.y169{bottom:324.122542px;}
.y12f{bottom:328.657694px;}
.y1fc{bottom:334.183093px;}
.y18c{bottom:336.026905px;}
.yc5{bottom:337.753686px;}
.y8d{bottom:338.800650px;}
.y4d{bottom:339.733480px;}
.yfc{bottom:339.935067px;}
.y1c1{bottom:341.251146px;}
.y168{bottom:342.048202px;}
.y186{bottom:343.660650px;}
.y1fb{bottom:347.627926px;}
.y27{bottom:349.080300px;}
.yc4{bottom:355.680840px;}
.y8c{bottom:356.716749px;}
.y4c{bottom:357.659140px;}
.yfb{bottom:357.860727px;}
.y1c0{bottom:359.178300px;}
.y12e{bottom:360.300965px;}
.y1fa{bottom:361.072758px;}
.y167{bottom:362.299716px;}
.yc3{bottom:373.606500px;}
.y1f9{bottom:374.517591px;}
.y8a{bottom:374.642409px;}
.y8b{bottom:374.717099px;}
.y4b{bottom:375.584800px;}
.yfa{bottom:375.995519px;}
.y1bf{bottom:377.089174px;}
.y12d{bottom:378.225131px;}
.y187{bottom:379.700747px;}
.y166{bottom:380.225376px;}
.yc2{bottom:391.530666px;}
.y89{bottom:392.568069px;}
.y48{bottom:393.506061px;}
.y4a{bottom:393.510460px;}
.y49{bottom:393.520999px;}
.yf9{bottom:393.921179px;}
.y1be{bottom:395.013340px;}
.y12c{bottom:396.149298px;}
.y1f8{bottom:396.698450px;}
.y165{bottom:398.151036px;}
.y26{bottom:401.846103px;}
.y185{bottom:405.871650px;}
.yc1{bottom:409.456326px;}
.y88{bottom:410.495223px;}
.y47{bottom:411.431721px;}
.yf8{bottom:411.846839px;}
.y1bd{bottom:412.937507px;}
.y12b{bottom:414.073464px;}
.y188{bottom:415.742958px;}
.y164{bottom:416.076696px;}
.y25{bottom:416.781609px;}
.y1f7{bottom:424.704300px;}
.yc0{bottom:427.381986px;}
.y87{bottom:428.417895px;}
.y46{bottom:429.357381px;}
.yf7{bottom:429.772499px;}
.y1bc{bottom:430.863167px;}
.y12a{bottom:431.997630px;}
.y24{bottom:432.389280px;}
.y163{bottom:435.552926px;}
.y1f6{bottom:442.629960px;}
.ybf{bottom:445.307646px;}
.y86{bottom:446.343555px;}
.y45{bottom:447.283041px;}
.y23{bottom:447.324787px;}
.yf6{bottom:447.699653px;}
.y1bb{bottom:448.787333px;}
.y129{bottom:449.921796px;}
.y189{bottom:451.783054px;}
.y162{bottom:453.478586px;}
.y1f5{bottom:460.555620px;}
.y22{bottom:462.260293px;}
.ybe{bottom:463.233306px;}
.y85{bottom:464.269215px;}
.y44{bottom:465.208701px;}
.yf5{bottom:465.623819px;}
.y1ba{bottom:466.714487px;}
.y128{bottom:467.848950px;}
.y161{bottom:471.402752px;}
.y21{bottom:477.195799px;}
.y1f4{bottom:478.479786px;}
.ybd{bottom:481.158966px;}
.y84{bottom:482.194875px;}
.y43{bottom:483.134361px;}
.yf4{bottom:483.547985px;}
.y1b9{bottom:484.640147px;}
.y18a{bottom:487.823151px;}
.y160{bottom:489.328412px;}
.y20{bottom:492.131305px;}
.y1f3{bottom:496.406940px;}
.ybc{bottom:499.084626px;}
.y83{bottom:500.122029px;}
.y42{bottom:501.060021px;}
.yf3{bottom:501.473645px;}
.y1b8{bottom:502.565807px;}
.y1f{bottom:507.066812px;}
.y15f{bottom:507.254072px;}
.y1f2{bottom:514.330434px;}
.ybb{bottom:517.010286px;}
.y82{bottom:518.046195px;}
.y41{bottom:518.985681px;}
.yf2{bottom:519.399305px;}
.y1b7{bottom:520.491467px;}
.y1e{bottom:522.002318px;}
.y18b{bottom:523.865362px;}
.y15e{bottom:525.181226px;}
.y127{bottom:532.183151px;}
.y1f1{bottom:532.254600px;}
.y81{bottom:535.970361px;}
.y40{bottom:536.911341px;}
.y1d{bottom:536.937824px;}
.yf1{bottom:537.324965px;}
.y1b6{bottom:539.174486px;}
.y121{bottom:539.817600px;}
.yba{bottom:539.979032px;}
.y15d{bottom:543.106886px;}
.y184{bottom:543.801600px;}
.y1f0{bottom:550.168738px;}
.y1c{bottom:551.873331px;}
.y80{bottom:553.896021px;}
.y3f{bottom:554.837001px;}
.yf0{bottom:555.252119px;}
.y1b5{bottom:557.098652px;}
.y15c{bottom:561.032546px;}
.y1b{bottom:566.808837px;}
.y1ef{bottom:568.092904px;}
.yb9{bottom:568.812456px;}
.y7f{bottom:571.972556px;}
.y3e{bottom:572.762661px;}
.yef{bottom:573.177779px;}
.y1b4{bottom:575.024312px;}
.y122{bottom:575.857697px;}
.y15b{bottom:578.958206px;}
.y1a{bottom:581.744343px;}
.y183{bottom:582.834934px;}
.y1ee{bottom:586.017071px;}
.yb8{bottom:586.738116px;}
.y7e{bottom:589.899709px;}
.y3c{bottom:590.688321px;}
.y3d{bottom:590.763011px;}
.yee{bottom:591.103439px;}
.y1b3{bottom:592.951466px;}
.y19{bottom:596.679850px;}
.y15a{bottom:596.883866px;}
.y182{bottom:600.760594px;}
.y120{bottom:602.028600px;}
.yb7{bottom:604.663776px;}
.y7d{bottom:607.825369px;}
.y3b{bottom:608.613981px;}
.y1ed{bottom:608.646723px;}
.yed{bottom:609.027605px;}
.y1b2{bottom:610.877126px;}
.y18{bottom:611.615356px;}
.y123{bottom:611.897794px;}
.y159{bottom:614.811020px;}
.y181{bottom:618.686254px;}
.yb6{bottom:622.590930px;}
.y7c{bottom:625.751029px;}
.y3a{bottom:626.539641px;}
.y17{bottom:626.550862px;}
.yec{bottom:626.951772px;}
.y1b1{bottom:628.802786px;}
.y158{bottom:635.061040px;}
.y180{bottom:636.611914px;}
.y1ec{bottom:636.654073px;}
.yb5{bottom:640.516590px;}
.y16{bottom:641.486369px;}
.y7b{bottom:643.676689px;}
.y39{bottom:644.465301px;}
.y1b0{bottom:646.726952px;}
.y124{bottom:647.939300px;}
.yeb{bottom:650.075873px;}
.y157{bottom:652.986700px;}
.y17f{bottom:654.537574px;}
.y1eb{bottom:654.579733px;}
.y15{bottom:656.421875px;}
.yb4{bottom:658.442250px;}
.y38{bottom:662.390961px;}
.y1af{bottom:664.652612px;}
.y7a{bottom:666.838136px;}
.y156{bottom:670.912360px;}
.y14{bottom:671.357381px;}
.y17e{bottom:672.463234px;}
.y1ea{bottom:672.506886px;}
.yea{bottom:679.278267px;}
.y37{bottom:680.316621px;}
.yb3{bottom:681.406321px;}
.y1ae{bottom:682.578272px;}
.y125{bottom:683.979397px;}
.y13{bottom:686.292887px;}
.y155{bottom:688.839514px;}
.y17d{bottom:690.388894px;}
.y1e9{bottom:690.432546px;}
.y79{bottom:696.134640px;}
.ye9{bottom:697.203927px;}
.y36{bottom:698.242281px;}
.yb2{bottom:699.331981px;}
.y1ad{bottom:700.505426px;}
.y12{bottom:701.228394px;}
.y154{bottom:706.763680px;}
.y17c{bottom:708.314554px;}
.y1e8{bottom:708.358206px;}
.y78{bottom:714.060300px;}
.ye8{bottom:715.129587px;}
.y11{bottom:716.163900px;}
.y35{bottom:716.167941px;}
.y1ac{bottom:718.431086px;}
.y126{bottom:720.019494px;}
.y153{bottom:726.239910px;}
.y17b{bottom:726.240214px;}
.y1e7{bottom:726.283866px;}
.yb1{bottom:728.163911px;}
.y77{bottom:731.987453px;}
.ye7{bottom:733.055247px;}
.y1ab{bottom:736.356746px;}
.y11f{bottom:739.956900px;}
.y152{bottom:744.165570px;}
.y17a{bottom:744.165874px;}
.y1e6{bottom:744.208033px;}
.yb0{bottom:746.089571px;}
.y76{bottom:749.913113px;}
.ye6{bottom:750.982401px;}
.y1aa{bottom:754.282406px;}
.y179{bottom:762.091534px;}
.y151{bottom:762.092724px;}
.y1e5{bottom:762.135186px;}
.yaf{bottom:764.015231px;}
.y75{bottom:767.838773px;}
.ye5{bottom:768.905073px;}
.y1a9{bottom:772.206572px;}
.y11e{bottom:779.422710px;}
.y150{bottom:780.016890px;}
.y178{bottom:780.017194px;}
.y1e4{bottom:780.060846px;}
.yae{bottom:781.942385px;}
.y74{bottom:785.762940px;}
.y1a8{bottom:790.133726px;}
.yc{bottom:791.869729px;}
.ye4{bottom:792.380219px;}
.y11d{bottom:797.348370px;}
.y176{bottom:797.924624px;}
.y14f{bottom:797.942550px;}
.y177{bottom:797.942854px;}
.y1e3{bottom:797.986506px;}
.yad{bottom:799.868045px;}
.y73{bottom:803.688600px;}
.y1a7{bottom:808.059386px;}
.yb{bottom:810.348096px;}
.y11c{bottom:815.274030px;}
.y1e2{bottom:815.912166px;}
.yac{bottom:817.793705px;}
.ye3{bottom:821.582613px;}
.y72{bottom:821.612766px;}
.ya{bottom:828.826464px;}
.y10{bottom:829.572096px;}
.y11b{bottom:833.199690px;}
.y1e1{bottom:833.836333px;}
.y1a6{bottom:835.237674px;}
.yab{bottom:835.716377px;}
.ye2{bottom:839.508273px;}
.y71{bottom:839.538426px;}
.y9{bottom:847.304832px;}
.yf{bottom:848.050464px;}
.y14e{bottom:850.373700px;}
.y11a{bottom:851.125350px;}
.y1e0{bottom:851.760499px;}
.yaa{bottom:853.642037px;}
.ye1{bottom:857.433933px;}
.y70{bottom:857.464086px;}
.y14d{bottom:864.415200px;}
.y8{bottom:865.783200px;}
.ye{bottom:866.528832px;}
.y119{bottom:869.051010px;}
.y1df{bottom:869.684665px;}
.y1a5{bottom:869.690792px;}
.ya9{bottom:871.567697px;}
.ye0{bottom:875.359593px;}
.y6f{bottom:875.388252px;}
.y14c{bottom:878.455200px;}
.y7{bottom:884.489700px;}
.y5{bottom:884.490403px;}
.yd{bottom:885.007200px;}
.y118{bottom:886.976670px;}
.y1de{bottom:887.610325px;}
.y1a4{bottom:887.616452px;}
.ya8{bottom:889.494851px;}
.y6{bottom:890.426700px;}
.y14b{bottom:892.496700px;}
.ydf{bottom:893.286747px;}
.y6e{bottom:896.621196px;}
.y4{bottom:903.715200px;}
.y117{bottom:904.900836px;}
.y1dd{bottom:905.535985px;}
.y1a3{bottom:905.542112px;}
.y14a{bottom:905.941200px;}
.ya7{bottom:907.420511px;}
.yde{bottom:911.212407px;}
.y6d{bottom:914.548350px;}
.y116{bottom:922.825002px;}
.y1dc{bottom:923.460151px;}
.y1a2{bottom:923.467772px;}
.ya6{bottom:925.344677px;}
.ydd{bottom:929.278484px;}
.y6c{bottom:932.472690px;}
.y149{bottom:933.425850px;}
.y148{bottom:933.426192px;}
.y115{bottom:940.750662px;}
.y1db{bottom:941.384317px;}
.y1a1{bottom:941.394926px;}
.ya5{bottom:943.270337px;}
.y146{bottom:946.870168px;}
.y147{bottom:946.870350px;}
.ydc{bottom:947.201157px;}
.y6b{bottom:950.398350px;}
.y3{bottom:950.757075px;}
.y114{bottom:958.676322px;}
.y1da{bottom:959.308484px;}
.y1a0{bottom:959.320586px;}
.y145{bottom:960.315000px;}
.ydb{bottom:965.126817px;}
.ya4{bottom:966.239083px;}
.y6a{bottom:968.321190px;}
.y113{bottom:976.601982px;}
.y1d9{bottom:977.235637px;}
.y19f{bottom:977.246246px;}
.y1d8{bottom:977.308834px;}
.yda{bottom:983.052477px;}
.y69{bottom:986.246850px;}
.y144{bottom:990.421350px;}
.y2{bottom:992.593500px;}
.y112{bottom:994.527642px;}
.ya3{bottom:995.072507px;}
.y1d7{bottom:995.159804px;}
.y19e{bottom:995.171906px;}
.yd9{bottom:1000.978137px;}
.y68{bottom:1004.172000px;}
.y111{bottom:1012.453302px;}
.ya2{bottom:1012.998167px;}
.y1d6{bottom:1013.083970px;}
.y19d{bottom:1013.096072px;}
.y143{bottom:1014.471000px;}
.yd8{bottom:1018.905290px;}
.y67{bottom:1022.097840px;}
.y110{bottom:1030.378962px;}
.ya1{bottom:1030.923827px;}
.y1d5{bottom:1031.009630px;}
.y19c{bottom:1031.021732px;}
.yd7{bottom:1036.829457px;}
.y142{bottom:1038.520500px;}
.y66{bottom:1040.023500px;}
.ya0{bottom:1048.849487px;}
.y1d4{bottom:1048.933796px;}
.y10f{bottom:1048.943971px;}
.y19b{bottom:1048.947392px;}
.yd6{bottom:1058.038500px;}
.y65{bottom:1061.256346px;}
.y141{bottom:1064.662500px;}
.y1d3{bottom:1066.860950px;}
.y10e{bottom:1066.869631px;}
.y9f{bottom:1066.870750px;}
.y19a{bottom:1066.873052px;}
.yd5{bottom:1075.965150px;}
.y64{bottom:1079.182006px;}
.y1d2{bottom:1084.788104px;}
.y10d{bottom:1084.795291px;}
.y9e{bottom:1084.797904px;}
.y199{bottom:1084.798712px;}
.y140{bottom:1092.146948px;}
.y63{bottom:1097.104678px;}
.yd4{bottom:1097.171899px;}
.y1d1{bottom:1102.712270px;}
.y10c{bottom:1102.719457px;}
.y9d{bottom:1102.722070px;}
.y198{bottom:1102.722879px;}
.y13f{bottom:1105.590150px;}
.y62{bottom:1115.031832px;}
.yd3{bottom:1115.097559px;}
.y1d0{bottom:1120.636436px;}
.y10b{bottom:1120.643623px;}
.y9c{bottom:1120.646237px;}
.y197{bottom:1120.647045px;}
.y5f{bottom:1124.388150px;}
.y13e{bottom:1128.791100px;}
.y13d{bottom:1128.791339px;}
.y1cf{bottom:1138.560602px;}
.y10a{bottom:1138.567789px;}
.y9b{bottom:1138.570403px;}
.y61{bottom:1138.571211px;}
.y13c{bottom:1148.347350px;}
.y5e{bottom:1154.265150px;}
.y5d{bottom:1169.203650px;}
.y5c{bottom:1184.142150px;}
.y60{bottom:1185.292950px;}
.y5b{bottom:1199.080650px;}
.h14{height:20.519014px;}
.h19{height:34.033422px;}
.h1{height:35.419504px;}
.he{height:37.335832px;}
.h5{height:40.945518px;}
.hf{height:40.990009px;}
.h13{height:42.541644px;}
.h1a{height:42.542451px;}
.h22{height:42.550131px;}
.h1e{height:42.775862px;}
.h12{height:42.780642px;}
.h15{height:46.576889px;}
.h1d{height:46.578275px;}
.h1c{height:46.579644px;}
.h1b{height:46.580374px;}
.h18{height:46.585644px;}
.h8{height:49.632664px;}
.ha{height:49.955303px;}
.h9{height:50.277942px;}
.h6{height:53.179458px;}
.h21{height:53.185458px;}
.h20{height:53.188123px;}
.hd{height:53.436063px;}
.h10{height:53.472244px;}
.h7{height:53.478219px;}
.hc{height:53.537971px;}
.h1f{height:53.545161px;}
.h4{height:58.495962px;}
.h3{height:58.824591px;}
.h16{height:65.825512px;}
.h11{height:66.856737px;}
.hb{height:66.862712px;}
.h17{height:68.114430px;}
.h2{height:127.624398px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x21{left:85.005594px;}
.x4{left:86.204100px;}
.xc4{left:87.351000px;}
.x13{left:91.305526px;}
.xe{left:96.235083px;}
.xa3{left:97.458813px;}
.xca{left:98.863702px;}
.x20{left:99.941100px;}
.x86{left:104.695881px;}
.xd3{left:106.170267px;}
.xc5{left:109.159200px;}
.x7c{left:111.261571px;}
.x32{left:112.685348px;}
.xe6{left:113.852110px;}
.x69{left:116.969400px;}
.x83{left:120.050703px;}
.x68{left:123.322428px;}
.xd5{left:124.641166px;}
.x7a{left:130.058119px;}
.x2a{left:131.358092px;}
.x25{left:133.562793px;}
.x2c{left:135.081886px;}
.xc3{left:136.709421px;}
.xa8{left:138.926840px;}
.xd4{left:140.015407px;}
.x3d{left:143.047960px;}
.xa0{left:144.349352px;}
.xe5{left:145.628330px;}
.x40{left:151.009940px;}
.x6b{left:153.222554px;}
.x9f{left:155.597985px;}
.xe2{left:156.985730px;}
.x3a{left:159.315496px;}
.x24{left:160.435950px;}
.xcb{left:162.844800px;}
.xa9{left:164.033220px;}
.xac{left:168.560943px;}
.xb1{left:170.037900px;}
.xd0{left:171.189623px;}
.x78{left:172.510564px;}
.x67{left:174.957292px;}
.xeb{left:176.065403px;}
.x7f{left:179.203887px;}
.x7b{left:180.411298px;}
.xa2{left:182.390590px;}
.x8{left:185.499352px;}
.x26{left:187.846839px;}
.x12{left:191.509965px;}
.x87{left:194.203183px;}
.x1{left:195.939450px;}
.x85{left:197.606071px;}
.x74{left:200.325213px;}
.x31{left:204.220778px;}
.x9{left:206.498745px;}
.x36{left:207.684902px;}
.x64{left:209.641950px;}
.x42{left:211.419415px;}
.x7d{left:212.725288px;}
.x6a{left:215.376792px;}
.xea{left:218.703079px;}
.x2{left:221.326950px;}
.xc{left:223.342950px;}
.x2d{left:230.341110px;}
.xa{left:234.181950px;}
.xf{left:235.248576px;}
.x6f{left:239.149205px;}
.xa6{left:241.646847px;}
.x33{left:243.730637px;}
.x5{left:246.460032px;}
.xe9{left:247.632805px;}
.xa1{left:255.215078px;}
.xa7{left:256.840337px;}
.xe3{left:258.598827px;}
.x81{left:260.819417px;}
.x71{left:262.594474px;}
.xaa{left:263.795493px;}
.xc8{left:268.239450px;}
.x38{left:271.126800px;}
.x3{left:272.161612px;}
.x9e{left:275.171100px;}
.x3e{left:278.162622px;}
.xd7{left:279.200688px;}
.xc9{left:280.763100px;}
.xb{left:282.295132px;}
.x3f{left:284.541169px;}
.x3b{left:289.530478px;}
.x77{left:292.377958px;}
.xab{left:294.013675px;}
.x6{left:295.573636px;}
.xd{left:297.420740px;}
.x82{left:299.485066px;}
.xcc{left:303.570872px;}
.x2e{left:304.897652px;}
.x28{left:307.196456px;}
.xaf{left:308.353786px;}
.x30{left:310.342188px;}
.x35{left:312.042119px;}
.x79{left:313.346499px;}
.xe7{left:316.813902px;}
.x6d{left:318.598717px;}
.x10{left:324.518363px;}
.x2f{left:326.850561px;}
.xe4{left:328.538777px;}
.xd1{left:335.082439px;}
.x37{left:338.288273px;}
.x6c{left:342.846160px;}
.xcf{left:343.967100px;}
.x7{left:346.938349px;}
.xd6{left:349.327363px;}
.xad{left:353.565705px;}
.x84{left:354.806640px;}
.x76{left:356.241110px;}
.xa5{left:358.160649px;}
.xb0{left:359.292536px;}
.x72{left:361.883211px;}
.xa4{left:365.168088px;}
.xd2{left:366.680896px;}
.x70{left:369.498629px;}
.x34{left:371.549533px;}
.x6e{left:377.535300px;}
.x73{left:379.786464px;}
.x75{left:380.977027px;}
.x3c{left:383.535627px;}
.xae{left:384.632368px;}
.xce{left:386.282250px;}
.x11{left:389.708013px;}
.x80{left:393.110788px;}
.x7e{left:399.136797px;}
.x27{left:401.460876px;}
.x22{left:402.939639px;}
.x23{left:409.943598px;}
.xc7{left:411.448388px;}
.x43{left:417.325496px;}
.xe8{left:419.060373px;}
.x65{left:421.231959px;}
.x2b{left:423.144919px;}
.x39{left:424.839335px;}
.x29{left:426.868713px;}
.xc2{left:429.057750px;}
.x41{left:433.115015px;}
.x1a{left:454.296043px;}
.xed{left:456.477996px;}
.x17{left:460.599900px;}
.x45{left:465.112318px;}
.x4c{left:470.101626px;}
.xb7{left:472.578900px;}
.x14{left:473.624400px;}
.xfa{left:476.630554px;}
.x95{left:477.634425px;}
.x8c{left:479.285411px;}
.xc6{left:482.678400px;}
.x5d{left:484.277016px;}
.xc0{left:486.464306px;}
.xf0{left:487.586485px;}
.xb9{left:489.019001px;}
.xcd{left:491.877900px;}
.xb8{left:493.130400px;}
.xdc{left:495.229504px;}
.xb6{left:497.274900px;}
.xda{left:511.243094px;}
.x96{left:512.579005px;}
.x1f{left:516.259074px;}
.x9a{left:517.460760px;}
.xf7{left:518.480322px;}
.xf1{left:520.807215px;}
.x5e{left:522.488548px;}
.x88{left:525.424566px;}
.xd8{left:527.041717px;}
.x97{left:529.064637px;}
.x53{left:530.705295px;}
.xb4{left:533.241647px;}
.xd9{left:534.837675px;}
.x9b{left:535.970498px;}
.xbe{left:537.089358px;}
.xc1{left:540.575899px;}
.xf8{left:542.797974px;}
.x4b{left:545.852478px;}
.x5b{left:546.986950px;}
.x8d{left:549.854253px;}
.x1e{left:551.438182px;}
.xf4{left:554.821154px;}
.xde{left:558.399530px;}
.x56{left:560.461071px;}
.xf5{left:567.240649px;}
.x50{left:568.767447px;}
.x8a{left:571.133505px;}
.x49{left:573.457994px;}
.xec{left:575.002460px;}
.x91{left:576.630707px;}
.xe1{left:578.724241px;}
.xbb{left:579.889859px;}
.xf9{left:586.529055px;}
.x5f{left:589.635083px;}
.x90{left:591.065345px;}
.x1b{left:593.309536px;}
.xbf{left:596.541303px;}
.x54{left:599.987971px;}
.x89{left:601.887962px;}
.x8e{left:606.060160px;}
.x18{left:611.265072px;}
.x57{left:614.252989px;}
.xdb{left:620.228119px;}
.x59{left:623.215819px;}
.x62{left:630.122400px;}
.x52{left:632.582796px;}
.x66{left:633.685388px;}
.x8b{left:634.872670px;}
.xbd{left:636.750052px;}
.xf6{left:640.180872px;}
.xf3{left:644.468874px;}
.xdf{left:645.576496px;}
.x15{left:647.945653px;}
.x63{left:650.035200px;}
.xe0{left:655.665655px;}
.x99{left:660.008596px;}
.x98{left:662.403165px;}
.xee{left:667.494384px;}
.x46{left:674.573655px;}
.x51{left:678.084097px;}
.x44{left:679.846787px;}
.x1c{left:682.579323px;}
.x58{left:685.029470px;}
.x4d{left:690.213793px;}
.x93{left:691.861331px;}
.xdd{left:694.840691px;}
.x94{left:703.330435px;}
.x19{left:706.330822px;}
.xb5{left:711.489929px;}
.x60{left:716.070738px;}
.xef{left:717.493531px;}
.xb3{left:719.114310px;}
.x92{left:725.467462px;}
.xf2{left:728.139879px;}
.x55{left:738.418061px;}
.xb2{left:746.192513px;}
.x1d{left:747.768973px;}
.x8f{left:749.502785px;}
.x47{left:762.274946px;}
.x4f{left:767.667582px;}
.x5c{left:773.044461px;}
.x9d{left:774.357875px;}
.x61{left:777.869451px;}
.x16{left:779.660156px;}
.x4e{left:781.649597px;}
.xba{left:787.601950px;}
.x9c{left:788.861228px;}
.x5a{left:792.598368px;}
.x48{left:795.019152px;}
.xbc{left:796.742543px;}
.x4a{left:801.651646px;}
@media print{
.v1{vertical-align:-21.109333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.587733pt;}
.v2{vertical-align:12.162892pt;}
.lsc{letter-spacing:-5.733333pt;}
.ls28{letter-spacing:-1.699541pt;}
.ls2c{letter-spacing:-0.026557pt;}
.ls17{letter-spacing:-0.015934pt;}
.lsa{letter-spacing:-0.010623pt;}
.ls1a{letter-spacing:-0.010021pt;}
.ls18{letter-spacing:-0.007516pt;}
.lsb{letter-spacing:-0.005311pt;}
.ls19{letter-spacing:-0.002505pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.002667pt;}
.ls6{letter-spacing:0.003488pt;}
.ls7{letter-spacing:0.022357pt;}
.ls1f{letter-spacing:1.070711pt;}
.ls2a{letter-spacing:2.073447pt;}
.ls1c{letter-spacing:2.090442pt;}
.ls1d{letter-spacing:2.097241pt;}
.ls21{letter-spacing:2.100640pt;}
.ls29{letter-spacing:2.107438pt;}
.ls27{letter-spacing:2.124427pt;}
.ls1b{letter-spacing:2.128872pt;}
.ls15{letter-spacing:2.145671pt;}
.ls16{letter-spacing:2.158417pt;}
.ls13{letter-spacing:2.162666pt;}
.ls0{letter-spacing:2.166915pt;}
.ls14{letter-spacing:2.175413pt;}
.ls2d{letter-spacing:2.621543pt;}
.ls2{letter-spacing:2.655653pt;}
.ls2b{letter-spacing:2.655877pt;}
.ls1e{letter-spacing:11.680098pt;}
.ls20{letter-spacing:12.742819pt;}
.ls24{letter-spacing:12.743200pt;}
.ls26{letter-spacing:12.746560pt;}
.ls25{letter-spacing:12.748188pt;}
.ls22{letter-spacing:12.748721pt;}
.ls23{letter-spacing:12.750933pt;}
.ls12{letter-spacing:13.750973pt;}
.ls3{letter-spacing:13.968737pt;}
.lsf{letter-spacing:18.589573pt;}
.ls10{letter-spacing:19.465939pt;}
.ls9{letter-spacing:20.448027pt;}
.ls11{letter-spacing:21.686065pt;}
.ls1{letter-spacing:23.096220pt;}
.lsd{letter-spacing:26.089138pt;}
.lse{letter-spacing:26.094450pt;}
.ls4{letter-spacing:26.875212pt;}
.ws45{word-spacing:-40.153478pt;}
.ws88{word-spacing:-39.372716pt;}
.ws96{word-spacing:-31.867840pt;}
.ws3d{word-spacing:-27.247003pt;}
.ws113{word-spacing:-23.368693pt;}
.ws97{word-spacing:-15.933920pt;}
.ws3{word-spacing:-14.605733pt;}
.ws2c{word-spacing:-13.278267pt;}
.wsf{word-spacing:-11.949600pt;}
.ws5a{word-spacing:-11.949333pt;}
.ws123{word-spacing:-10.622133pt;}
.ws124{word-spacing:-10.605171pt;}
.ws11b{word-spacing:-10.598373pt;}
.ws118{word-spacing:-10.594974pt;}
.ws111{word-spacing:-10.588176pt;}
.ws128{word-spacing:-8.922592pt;}
.ws21{word-spacing:-5.629985pt;}
.ws5e{word-spacing:-2.655653pt;}
.ws119{word-spacing:-2.125491pt;}
.ws11{word-spacing:-0.908170pt;}
.wsb7{word-spacing:-0.796696pt;}
.ws10e{word-spacing:-0.786073pt;}
.ws74{word-spacing:-0.743583pt;}
.ws167{word-spacing:-0.690470pt;}
.ws29{word-spacing:-0.642668pt;}
.ws2a{word-spacing:-0.637357pt;}
.wsa4{word-spacing:-0.589555pt;}
.wsa6{word-spacing:-0.573621pt;}
.wsa5{word-spacing:-0.531131pt;}
.ws12f{word-spacing:-0.424905pt;}
.ws130{word-spacing:-0.382414pt;}
.ws12e{word-spacing:-0.371791pt;}
.ws106{word-spacing:-0.318678pt;}
.ws78{word-spacing:-0.053113pt;}
.wsca{word-spacing:-0.042489pt;}
.ws5b{word-spacing:0.000000pt;}
.ws116{word-spacing:0.013596pt;}
.ws126{word-spacing:0.016995pt;}
.ws112{word-spacing:0.020395pt;}
.ws117{word-spacing:0.032618pt;}
.ws11a{word-spacing:0.033991pt;}
.ws8c{word-spacing:0.047802pt;}
.ws8d{word-spacing:0.053113pt;}
.ws115{word-spacing:0.067982pt;}
.ws196{word-spacing:0.100915pt;}
.ws195{word-spacing:0.138094pt;}
.ws146{word-spacing:0.265565pt;}
.ws67{word-spacing:0.313367pt;}
.ws68{word-spacing:0.318678pt;}
.ws149{word-spacing:0.371791pt;}
.ws69{word-spacing:0.424905pt;}
.ws16{word-spacing:0.430186pt;}
.wsb9{word-spacing:0.472706pt;}
.wsb8{word-spacing:0.478018pt;}
.wsc1{word-spacing:0.584244pt;}
.wsae{word-spacing:0.637357pt;}
.ws77{word-spacing:0.679847pt;}
.ws2b{word-spacing:0.690470pt;}
.ws16d{word-spacing:0.743583pt;}
.ws9a{word-spacing:0.796696pt;}
.ws15a{word-spacing:0.839186pt;}
.ws15b{word-spacing:0.844498pt;}
.ws8f{word-spacing:0.849809pt;}
.ws94{word-spacing:0.902922pt;}
.wsb{word-spacing:0.908170pt;}
.ws10a{word-spacing:0.956035pt;}
.ws125{word-spacing:1.057491pt;}
.ws12c{word-spacing:1.062261pt;}
.ws158{word-spacing:1.115374pt;}
.ws159{word-spacing:1.136620pt;}
.wsd5{word-spacing:1.168487pt;}
.ws19{word-spacing:1.194960pt;}
.ws6e{word-spacing:1.269402pt;}
.ws6d{word-spacing:1.274714pt;}
.ws99{word-spacing:1.327827pt;}
.ws16f{word-spacing:1.338449pt;}
.ws135{word-spacing:1.380940pt;}
.ws5f{word-spacing:1.434053pt;}
.ws138{word-spacing:1.487166pt;}
.ws15e{word-spacing:1.508411pt;}
.wsa3{word-spacing:1.534968pt;}
.wsa2{word-spacing:1.540279pt;}
.wsec{word-spacing:1.588081pt;}
.wseb{word-spacing:1.593392pt;}
.ws18f{word-spacing:1.646505pt;}
.wsaa{word-spacing:1.694307pt;}
.wsab{word-spacing:1.699618pt;}
.ws64{word-spacing:1.752731pt;}
.ws55{word-spacing:1.805844pt;}
.ws10d{word-spacing:1.965183pt;}
.ws4c{word-spacing:2.012985pt;}
.ws60{word-spacing:2.018297pt;}
.ws168{word-spacing:2.066098pt;}
.ws31{word-spacing:2.071410pt;}
.ws4e{word-spacing:2.082032pt;}
.ws114{word-spacing:2.126054pt;}
.ws4d{word-spacing:2.280948pt;}
.ws190{word-spacing:2.283862pt;}
.ws65{word-spacing:2.331664pt;}
.ws12a{word-spacing:2.336975pt;}
.ws5c{word-spacing:2.437333pt;}
.ws5d{word-spacing:2.442667pt;}
.ws2f{word-spacing:2.443201pt;}
.wsb3{word-spacing:2.496314pt;}
.ws18{word-spacing:2.676710pt;}
.ws47{word-spacing:2.698144pt;}
.ws48{word-spacing:2.708766pt;}
.ws63{word-spacing:2.814993pt;}
.ws1a3{word-spacing:2.842483pt;}
.ws1a2{word-spacing:2.846732pt;}
.ws20{word-spacing:2.867904pt;}
.ws61{word-spacing:2.868106pt;}
.ws175{word-spacing:2.921219pt;}
.ws1f{word-spacing:2.968281pt;}
.wsd4{word-spacing:2.974332pt;}
.wsc3{word-spacing:3.080558pt;}
.ws160{word-spacing:3.133671pt;}
.ws19f{word-spacing:3.144151pt;}
.ws191{word-spacing:3.186784pt;}
.ws197{word-spacing:3.208029pt;}
.wsdf{word-spacing:3.303633pt;}
.wsac{word-spacing:3.346123pt;}
.ws10f{word-spacing:3.399236pt;}
.ws143{word-spacing:3.505462pt;}
.ws142{word-spacing:3.558575pt;}
.wsc9{word-spacing:3.611689pt;}
.ws26{word-spacing:3.664802pt;}
.ws18c{word-spacing:3.712603pt;}
.ws9e{word-spacing:3.717915pt;}
.ws154{word-spacing:3.818829pt;}
.wsbd{word-spacing:3.824141pt;}
.wsf6{word-spacing:3.925056pt;}
.wse6{word-spacing:3.930367pt;}
.ws13f{word-spacing:3.983480pt;}
.ws41{word-spacing:4.036593pt;}
.ws145{word-spacing:4.089706pt;}
.wsa8{word-spacing:4.142819pt;}
.ws144{word-spacing:4.153442pt;}
.ws49{word-spacing:4.195932pt;}
.wsff{word-spacing:4.244604pt;}
.ws100{word-spacing:4.248853pt;}
.ws4a{word-spacing:4.249045pt;}
.ws13e{word-spacing:4.296847pt;}
.ws2d{word-spacing:4.302158pt;}
.ws194{word-spacing:4.498677pt;}
.ws6a{word-spacing:4.514611pt;}
.ws1a5{word-spacing:4.542024pt;}
.ws1a4{word-spacing:4.546273pt;}
.ws54{word-spacing:4.567724pt;}
.ws137{word-spacing:4.620837pt;}
.ws171{word-spacing:4.673950pt;}
.ws16e{word-spacing:4.727063pt;}
.ws84{word-spacing:4.780176pt;}
.wsd3{word-spacing:4.833289pt;}
.ws136{word-spacing:4.881091pt;}
.wse2{word-spacing:4.886402pt;}
.ws18a{word-spacing:4.939515pt;}
.wsf9{word-spacing:4.992628pt;}
.wsef{word-spacing:5.035119pt;}
.wsed{word-spacing:5.040430pt;}
.wsee{word-spacing:5.056364pt;}
.ws39{word-spacing:5.098854pt;}
.wsa0{word-spacing:5.199769pt;}
.ws2e{word-spacing:5.205081pt;}
.ws3b{word-spacing:5.252882pt;}
.ws3c{word-spacing:5.258194pt;}
.ws9{word-spacing:5.295373pt;}
.ws5{word-spacing:5.300684pt;}
.ws17{word-spacing:5.305622pt;}
.ws4{word-spacing:5.305995pt;}
.ws6{word-spacing:5.311307pt;}
.ws8{word-spacing:5.321929pt;}
.ws7{word-spacing:5.327241pt;}
.ws19e{word-spacing:5.353555pt;}
.ws10c{word-spacing:5.364420pt;}
.ws62{word-spacing:5.417533pt;}
.ws164{word-spacing:5.470646pt;}
.ws10b{word-spacing:5.576872pt;}
.ws66{word-spacing:5.624674pt;}
.ws169{word-spacing:5.651230pt;}
.wsad{word-spacing:5.683098pt;}
.ws141{word-spacing:5.736211pt;}
.wse7{word-spacing:5.784013pt;}
.wsa9{word-spacing:5.789324pt;}
.ws15f{word-spacing:5.821192pt;}
.ws1{word-spacing:5.842293pt;}
.wsf8{word-spacing:5.842437pt;}
.ws2{word-spacing:5.848136pt;}
.ws177{word-spacing:5.895550pt;}
.ws105{word-spacing:5.948663pt;}
.ws1d{word-spacing:5.974800pt;}
.wsbf{word-spacing:5.996465pt;}
.wsc0{word-spacing:6.001777pt;}
.ws174{word-spacing:6.054890pt;}
.ws95{word-spacing:6.161116pt;}
.wsa1{word-spacing:6.187672pt;}
.wsd{word-spacing:6.213792pt;}
.ws28{word-spacing:6.214229pt;}
.ws173{word-spacing:6.320455pt;}
.wsbe{word-spacing:6.373568pt;}
.wsd8{word-spacing:6.426681pt;}
.wse4{word-spacing:6.474483pt;}
.wse5{word-spacing:6.479794pt;}
.wse1{word-spacing:6.532907pt;}
.ws178{word-spacing:6.586020pt;}
.ws91{word-spacing:6.633822pt;}
.ws90{word-spacing:6.639133pt;}
.ws16c{word-spacing:6.681624pt;}
.ws92{word-spacing:6.686935pt;}
.wsba{word-spacing:6.692246pt;}
.ws15c{word-spacing:6.745359pt;}
.ws15d{word-spacing:6.755982pt;}
.ws75{word-spacing:6.899387pt;}
.ws76{word-spacing:6.904699pt;}
.ws148{word-spacing:6.957812pt;}
.ws18e{word-spacing:7.010925pt;}
.wsbc{word-spacing:7.064038pt;}
.ws13d{word-spacing:7.117151pt;}
.ws110{word-spacing:7.223377pt;}
.ws151{word-spacing:7.340226pt;}
.ws12d{word-spacing:7.435829pt;}
.ws10{word-spacing:7.456550pt;}
.ws14f{word-spacing:7.483631pt;}
.wse9{word-spacing:7.488942pt;}
.wsd6{word-spacing:7.542055pt;}
.ws25{word-spacing:7.589857pt;}
.ws53{word-spacing:7.595169pt;}
.ws172{word-spacing:7.642970pt;}
.ws24{word-spacing:7.648282pt;}
.wsfa{word-spacing:7.754508pt;}
.wsbb{word-spacing:7.807621pt;}
.ws27{word-spacing:7.908536pt;}
.wsa7{word-spacing:7.913847pt;}
.ws3a{word-spacing:7.966960pt;}
.wsd7{word-spacing:8.014762pt;}
.ws156{word-spacing:8.020073pt;}
.ws14a{word-spacing:8.073186pt;}
.ws14b{word-spacing:8.179412pt;}
.ws9b{word-spacing:8.232525pt;}
.ws161{word-spacing:8.243148pt;}
.ws9c{word-spacing:8.285638pt;}
.wsaf{word-spacing:8.391865pt;}
.wsb2{word-spacing:8.402487pt;}
.wsb0{word-spacing:8.413110pt;}
.ws155{word-spacing:8.444978pt;}
.wse3{word-spacing:8.492779pt;}
.wsf5{word-spacing:8.498091pt;}
.wsfd{word-spacing:8.551204pt;}
.wsb6{word-spacing:8.599005pt;}
.wsc4{word-spacing:8.657430pt;}
.ws13c{word-spacing:8.705232pt;}
.ws184{word-spacing:8.710543pt;}
.ws183{word-spacing:8.721166pt;}
.ws18d{word-spacing:8.774279pt;}
.wsf0{word-spacing:8.864571pt;}
.wsc2{word-spacing:8.869882pt;}
.ws147{word-spacing:8.976108pt;}
.ws185{word-spacing:9.029221pt;}
.ws56{word-spacing:9.082334pt;}
.ws103{word-spacing:9.241674pt;}
.ws43{word-spacing:9.294787pt;}
.ws42{word-spacing:9.347900pt;}
.ws36{word-spacing:9.401013pt;}
.ws37{word-spacing:9.443503pt;}
.ws38{word-spacing:9.454126pt;}
.ws16b{word-spacing:9.507239pt;}
.wsea{word-spacing:9.560352pt;}
.ws13b{word-spacing:9.602842pt;}
.ws13a{word-spacing:9.613465pt;}
.wsb1{word-spacing:9.624088pt;}
.ws30{word-spacing:9.719691pt;}
.ws109{word-spacing:9.815295pt;}
.wsc5{word-spacing:9.825917pt;}
.ws170{word-spacing:9.879030pt;}
.ws166{word-spacing:9.932143pt;}
.ws4b{word-spacing:9.985257pt;}
.wsc{word-spacing:10.037664pt;}
.ws33{word-spacing:10.139284pt;}
.ws34{word-spacing:10.144596pt;}
.ws179{word-spacing:10.197709pt;}
.ws188{word-spacing:10.250822pt;}
.ws6b{word-spacing:10.357048pt;}
.ws6c{word-spacing:10.410161pt;}
.ws14c{word-spacing:10.463274pt;}
.ws104{word-spacing:10.537632pt;}
.ws57{word-spacing:10.569500pt;}
.ws1aa{word-spacing:10.619546pt;}
.ws1a9{word-spacing:10.620019pt;}
.ws1a8{word-spacing:10.637672pt;}
.wsd2{word-spacing:10.781953pt;}
.ws7f{word-spacing:10.888179pt;}
.ws7e{word-spacing:10.941292pt;}
.wse{word-spacing:10.945834pt;}
.ws8e{word-spacing:10.989093pt;}
.ws19a{word-spacing:11.047518pt;}
.ws83{word-spacing:11.153744pt;}
.ws82{word-spacing:11.206857pt;}
.ws3e{word-spacing:11.254659pt;}
.ws3f{word-spacing:11.259970pt;}
.ws73{word-spacing:11.307772pt;}
.ws72{word-spacing:11.313083pt;}
.ws79{word-spacing:11.419309pt;}
.ws35{word-spacing:11.472422pt;}
.ws189{word-spacing:11.631762pt;}
.ws51{word-spacing:11.737988pt;}
.ws52{word-spacing:11.791101pt;}
.ws176{word-spacing:11.838903pt;}
.ws9d{word-spacing:11.950440pt;}
.ws1a1{word-spacing:12.024255pt;}
.ws1a0{word-spacing:12.037001pt;}
.ws17e{word-spacing:12.051355pt;}
.ws17f{word-spacing:12.056666pt;}
.ws8b{word-spacing:12.200071pt;}
.ws8a{word-spacing:12.205383pt;}
.ws19b{word-spacing:12.216005pt;}
.ws12b{word-spacing:12.311609pt;}
.wsda{word-spacing:12.375345pt;}
.wsdc{word-spacing:12.582485pt;}
.wsdb{word-spacing:12.587797pt;}
.ws157{word-spacing:12.651532pt;}
.ws163{word-spacing:12.694023pt;}
.ws0{word-spacing:12.746507pt;}
.ws32{word-spacing:12.800249pt;}
.ws89{word-spacing:12.832117pt;}
.ws18b{word-spacing:12.853362pt;}
.ws17c{word-spacing:12.901164pt;}
.ws16a{word-spacing:12.906475pt;}
.ws108{word-spacing:12.959588pt;}
.ws192{word-spacing:13.225154pt;}
.ws19d{word-spacing:13.272667pt;}
.ws198{word-spacing:13.274450pt;}
.ws19c{word-spacing:13.278342pt;}
.ws1a{word-spacing:13.335754pt;}
.ws7c{word-spacing:13.490719pt;}
.ws107{word-spacing:13.543832pt;}
.ws44{word-spacing:13.596945pt;}
.ws186{word-spacing:13.650058pt;}
.ws59{word-spacing:13.703171pt;}
.ws70{word-spacing:13.809397pt;}
.ws180{word-spacing:13.862510pt;}
.wsfb{word-spacing:13.915623pt;}
.ws1b{word-spacing:14.004931pt;}
.ws87{word-spacing:14.027161pt;}
.ws1c{word-spacing:14.052730pt;}
.ws50{word-spacing:14.128076pt;}
.ws40{word-spacing:14.181189pt;}
.ws4f{word-spacing:14.202434pt;}
.wscb{word-spacing:14.340528pt;}
.ws46{word-spacing:14.393641pt;}
.wscc{word-spacing:14.446754pt;}
.ws22{word-spacing:14.547669pt;}
.ws23{word-spacing:14.552980pt;}
.wsf3{word-spacing:14.606093pt;}
.wsf4{word-spacing:14.659206pt;}
.wsf7{word-spacing:14.696386pt;}
.ws7d{word-spacing:14.707008pt;}
.wsce{word-spacing:14.712319pt;}
.ws199{word-spacing:14.765433pt;}
.wsf1{word-spacing:14.813234pt;}
.wsf2{word-spacing:14.818546pt;}
.ws120{word-spacing:14.828498pt;}
.ws1e{word-spacing:14.865302pt;}
.ws80{word-spacing:14.871659pt;}
.ws93{word-spacing:14.924772pt;}
.wscf{word-spacing:15.084111pt;}
.ws86{word-spacing:15.131913pt;}
.ws85{word-spacing:15.137224pt;}
.ws140{word-spacing:15.243450pt;}
.ws152{word-spacing:15.296563pt;}
.ws153{word-spacing:15.323120pt;}
.ws162{word-spacing:15.349676pt;}
.ws6f{word-spacing:15.402789pt;}
.wsfe{word-spacing:15.413412pt;}
.ws1a7{word-spacing:15.423338pt;}
.ws15{word-spacing:15.582278pt;}
.ws181{word-spacing:15.615242pt;}
.ws182{word-spacing:15.668355pt;}
.ws139{word-spacing:15.880807pt;}
.ws1a6{word-spacing:15.928951pt;}
.ws150{word-spacing:16.172929pt;}
.wse8{word-spacing:16.342891pt;}
.wsfc{word-spacing:16.358825pt;}
.wsd0{word-spacing:16.518164pt;}
.wsd1{word-spacing:16.571277pt;}
.wscd{word-spacing:16.730616pt;}
.wsb4{word-spacing:16.783729pt;}
.wsb5{word-spacing:16.836842pt;}
.ws12{word-spacing:16.872835pt;}
.ws134{word-spacing:16.943068pt;}
.ws7a{word-spacing:16.990870pt;}
.ws7b{word-spacing:16.996181pt;}
.ws187{word-spacing:17.102407pt;}
.ws58{word-spacing:17.739764pt;}
.ws13{word-spacing:17.828803pt;}
.ws17a{word-spacing:17.946905pt;}
.ws17b{word-spacing:17.952217pt;}
.wsdd{word-spacing:18.053131pt;}
.wsde{word-spacing:18.058443pt;}
.wse0{word-spacing:18.164669pt;}
.ws17d{word-spacing:18.270895pt;}
.ws71{word-spacing:18.908252pt;}
.ws102{word-spacing:19.386269pt;}
.ws81{word-spacing:19.858976pt;}
.ws9f{word-spacing:20.182965pt;}
.wsc7{word-spacing:20.283880pt;}
.wsc8{word-spacing:20.289191pt;}
.wsc6{word-spacing:20.873435pt;}
.wsa{word-spacing:21.126893pt;}
.wsd9{word-spacing:21.223981pt;}
.ws132{word-spacing:21.399255pt;}
.ws131{word-spacing:21.404566pt;}
.ws14{word-spacing:22.752038pt;}
.ws98{word-spacing:23.051071pt;}
.ws193{word-spacing:24.113332pt;}
.ws133{word-spacing:26.912391pt;}
.ws165{word-spacing:37.179147pt;}
.ws14e{word-spacing:39.834800pt;}
.ws129{word-spacing:55.234177pt;}
.ws11c{word-spacing:103.994874pt;}
.ws101{word-spacing:141.157496pt;}
.ws14d{word-spacing:149.495068pt;}
.ws11e{word-spacing:165.666951pt;}
.ws11d{word-spacing:169.955882pt;}
.ws11f{word-spacing:173.080078pt;}
.ws122{word-spacing:187.970951pt;}
.ws121{word-spacing:210.447730pt;}
.ws127{word-spacing:231.740327pt;}
._d{margin-left:-26.875212pt;}
._12{margin-left:-25.595187pt;}
._13{margin-left:-18.589573pt;}
._b{margin-left:-14.074963pt;}
._1c{margin-left:-10.239830pt;}
._14{margin-left:-7.170264pt;}
._5{margin-left:-5.374910pt;}
._4{margin-left:-3.632963pt;}
._3{margin-left:-2.108589pt;}
._1{margin-left:-1.168459pt;}
._7{width:1.837636pt;}
._0{width:3.213261pt;}
._2{width:4.907526pt;}
._27{width:7.520470pt;}
._18{width:8.922995pt;}
._15{width:10.277378pt;}
._11{width:12.311609pt;}
._16{width:13.581011pt;}
._8{width:15.056496pt;}
._c{width:16.411938pt;}
._31{width:18.191225pt;}
._a{width:19.598722pt;}
._6{width:21.079094pt;}
._10{width:22.721770pt;}
._e{width:26.168808pt;}
._f{width:27.990586pt;}
._17{width:28.946621pt;}
._1b{width:37.269439pt;}
._32{width:43.234398pt;}
._19{width:44.612960pt;}
._9{width:53.113067pt;}
._33{width:59.097301pt;}
._28{width:89.798091pt;}
._1d{width:98.505253pt;}
._2b{width:109.469333pt;}
._29{width:112.701067pt;}
._2c{width:117.686443pt;}
._2a{width:120.397600pt;}
._2e{width:125.700533pt;}
._2f{width:130.724533pt;}
._2d{width:133.945333pt;}
._1e{width:171.085649pt;}
._1a{width:178.754233pt;}
._20{width:180.578773pt;}
._30{width:187.091805pt;}
._23{width:198.747938pt;}
._1f{width:209.530825pt;}
._24{width:229.421333pt;}
._25{width:309.528000pt;}
._26{width:318.641067pt;}
._22{width:375.772682pt;}
._21{width:495.319755pt;}
.fs7{font-size:25.052800pt;}
.fs8{font-size:33.990933pt;}
.fs3{font-size:40.894400pt;}
.fs0{font-size:42.488533pt;}
.fs6{font-size:47.797333pt;}
.fs5{font-size:47.798400pt;}
.fs4{font-size:53.113067pt;}
.fs2{font-size:58.422933pt;}
.fs9{font-size:63.732800pt;}
.fs1{font-size:127.465067pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:56.470400pt;}
.y205{bottom:56.471564pt;}
.y196{bottom:56.471600pt;}
.y1{bottom:60.765067pt;}
.y175{bottom:94.841099pt;}
.y5a{bottom:94.844355pt;}
.yd1{bottom:94.847893pt;}
.y1ce{bottom:94.848304pt;}
.y195{bottom:94.852240pt;}
.y34{bottom:94.853723pt;}
.y109{bottom:94.854692pt;}
.y13b{bottom:94.855670pt;}
.y9a{bottom:94.857015pt;}
.y174{bottom:110.773691pt;}
.y59{bottom:110.778275pt;}
.y1cd{bottom:110.779568pt;}
.yd0{bottom:110.780485pt;}
.y194{bottom:110.783504pt;}
.y108{bottom:110.785957pt;}
.y13a{bottom:110.786934pt;}
.y99{bottom:110.789608pt;}
.y33{bottom:111.371887pt;}
.y173{bottom:126.707611pt;}
.y58{bottom:126.712195pt;}
.ycf{bottom:126.713077pt;}
.y1cc{bottom:126.713488pt;}
.y193{bottom:126.717424pt;}
.y107{bottom:126.719877pt;}
.y139{bottom:126.720854pt;}
.y98{bottom:126.722200pt;}
.y32{bottom:127.305807pt;}
.y172{bottom:142.641531pt;}
.y57{bottom:142.646115pt;}
.yce{bottom:142.646997pt;}
.y1cb{bottom:142.647408pt;}
.y192{bottom:142.652672pt;}
.y106{bottom:142.653797pt;}
.y138{bottom:142.656102pt;}
.y31{bottom:143.239727pt;}
.y97{bottom:147.648748pt;}
.y171{bottom:158.576779pt;}
.ycd{bottom:158.579589pt;}
.y56{bottom:158.580035pt;}
.y1ca{bottom:158.582656pt;}
.y191{bottom:158.586592pt;}
.y105{bottom:158.589045pt;}
.y137{bottom:158.590022pt;}
.y30{bottom:159.173647pt;}
.y96{bottom:163.581340pt;}
.y55{bottom:174.513955pt;}
.ycc{bottom:174.514837pt;}
.y190{bottom:174.520512pt;}
.y104{bottom:174.521637pt;}
.y136{bottom:174.522614pt;}
.y2f{bottom:175.107567pt;}
.y1c9{bottom:175.189784pt;}
.y170{bottom:176.576798pt;}
.y94{bottom:189.624005pt;}
.y95{bottom:189.689068pt;}
.ycb{bottom:190.447429pt;}
.y54{bottom:190.447875pt;}
.y103{bottom:190.454229pt;}
.y135{bottom:190.455206pt;}
.y2e{bottom:191.041487pt;}
.y18f{bottom:191.099756pt;}
.y1c8{bottom:191.123704pt;}
.y16f{bottom:192.509390pt;}
.y204{bottom:201.452000pt;}
.y93{bottom:205.556597pt;}
.y53{bottom:206.381795pt;}
.y102{bottom:206.388149pt;}
.y134{bottom:206.389126pt;}
.y2d{bottom:206.975407pt;}
.y18e{bottom:207.033676pt;}
.y1c7{bottom:207.057624pt;}
.y16e{bottom:208.441982pt;}
.yca{bottom:210.865420pt;}
.y203{bottom:213.402533pt;}
.y92{bottom:221.489189pt;}
.y52{bottom:222.315715pt;}
.y133{bottom:222.321718pt;}
.y101{bottom:222.322069pt;}
.y2c{bottom:222.909327pt;}
.y1c6{bottom:222.991544pt;}
.y16d{bottom:224.377230pt;}
.y202{bottom:225.350114pt;}
.yc9{bottom:226.798012pt;}
.y18d{bottom:228.657333pt;}
.y201{bottom:237.302138pt;}
.y91{bottom:237.423109pt;}
.y51{bottom:238.249635pt;}
.y100{bottom:238.253333pt;}
.y132{bottom:238.825276pt;}
.y2b{bottom:238.843247pt;}
.y1c5{bottom:238.925464pt;}
.y16c{bottom:240.309822pt;}
.y200{bottom:249.252038pt;}
.yc8{bottom:252.427723pt;}
.y90{bottom:253.357029pt;}
.y50{bottom:254.183555pt;}
.yff{bottom:254.361416pt;}
.y131{bottom:254.760524pt;}
.y2a{bottom:254.777167pt;}
.y1c4{bottom:255.533920pt;}
.y16b{bottom:256.243742pt;}
.y1ff{bottom:261.201938pt;}
.yc7{bottom:268.360315pt;}
.y8f{bottom:269.290949pt;}
.y4f{bottom:270.117475pt;}
.yfe{bottom:270.295336pt;}
.y130{bottom:270.694444pt;}
.y29{bottom:270.711087pt;}
.y1c3{bottom:271.467840pt;}
.y16a{bottom:272.177662pt;}
.y1fe{bottom:273.152901pt;}
.yc6{bottom:284.292907pt;}
.y1fd{bottom:285.101738pt;}
.y8e{bottom:285.223541pt;}
.y4e{bottom:286.051395pt;}
.yfd{bottom:286.230584pt;}
.y28{bottom:286.645007pt;}
.y1c2{bottom:287.399104pt;}
.y169{bottom:288.108926pt;}
.y12f{bottom:292.140172pt;}
.y1fc{bottom:297.051638pt;}
.y18c{bottom:298.690582pt;}
.yc5{bottom:300.225499pt;}
.y8d{bottom:301.156133pt;}
.y4d{bottom:301.985315pt;}
.yfc{bottom:302.164504pt;}
.y1c1{bottom:303.334352pt;}
.y168{bottom:304.042846pt;}
.y186{bottom:305.476133pt;}
.y1fb{bottom:309.002601pt;}
.y27{bottom:310.293600pt;}
.yc4{bottom:316.160747pt;}
.y8c{bottom:317.081555pt;}
.y4c{bottom:317.919235pt;}
.yfb{bottom:318.098424pt;}
.y1c0{bottom:319.269600pt;}
.y12e{bottom:320.267525pt;}
.y1fa{bottom:320.953563pt;}
.y167{bottom:322.044192pt;}
.yc3{bottom:332.094667pt;}
.y1f9{bottom:332.904525pt;}
.y8a{bottom:333.015475pt;}
.y8b{bottom:333.081866pt;}
.y4b{bottom:333.853155pt;}
.yfa{bottom:334.218239pt;}
.y1bf{bottom:335.190377pt;}
.y12d{bottom:336.200117pt;}
.y187{bottom:337.511775pt;}
.y166{bottom:337.978112pt;}
.yc2{bottom:348.027259pt;}
.y89{bottom:348.949395pt;}
.y48{bottom:349.783165pt;}
.y4a{bottom:349.787075pt;}
.y49{bottom:349.796443pt;}
.yf9{bottom:350.152159pt;}
.y1be{bottom:351.122969pt;}
.y12c{bottom:352.132709pt;}
.y1f8{bottom:352.620844pt;}
.y165{bottom:353.912032pt;}
.y26{bottom:357.196536pt;}
.y185{bottom:360.774800pt;}
.yc1{bottom:363.961179pt;}
.y88{bottom:364.884642pt;}
.y47{bottom:365.717085pt;}
.yf8{bottom:366.086079pt;}
.y1bd{bottom:367.055561pt;}
.y12b{bottom:368.065301pt;}
.y188{bottom:369.549296pt;}
.y164{bottom:369.845952pt;}
.y25{bottom:370.472541pt;}
.y1f7{bottom:377.514933pt;}
.yc0{bottom:379.895099pt;}
.y87{bottom:380.815907pt;}
.y46{bottom:381.651005pt;}
.yf7{bottom:382.019999pt;}
.y1bc{bottom:382.989481pt;}
.y12a{bottom:383.997893pt;}
.y24{bottom:384.346027pt;}
.y163{bottom:387.158156pt;}
.y1f6{bottom:393.448853pt;}
.ybf{bottom:395.829019pt;}
.y86{bottom:396.749827pt;}
.y45{bottom:397.584925pt;}
.y23{bottom:397.622033pt;}
.yf6{bottom:397.955247pt;}
.y1bb{bottom:398.922074pt;}
.y129{bottom:399.930486pt;}
.y189{bottom:401.584937pt;}
.y162{bottom:403.092076pt;}
.y1f5{bottom:409.382773pt;}
.y22{bottom:410.898038pt;}
.ybe{bottom:411.762939pt;}
.y85{bottom:412.683747pt;}
.y44{bottom:413.518845pt;}
.yf5{bottom:413.887839pt;}
.y1ba{bottom:414.857321pt;}
.y128{bottom:415.865733pt;}
.y161{bottom:419.024669pt;}
.y21{bottom:424.174044pt;}
.y1f4{bottom:425.315366pt;}
.ybd{bottom:427.696859pt;}
.y84{bottom:428.617667pt;}
.y43{bottom:429.452765pt;}
.yf4{bottom:429.820432pt;}
.y1b9{bottom:430.791241pt;}
.y18a{bottom:433.620579pt;}
.y160{bottom:434.958589pt;}
.y20{bottom:437.450049pt;}
.y1f3{bottom:441.250613pt;}
.ybc{bottom:443.630779pt;}
.y83{bottom:444.552915pt;}
.y42{bottom:445.386685pt;}
.yf3{bottom:445.754352pt;}
.y1b8{bottom:446.725161pt;}
.y1f{bottom:450.726055pt;}
.y15f{bottom:450.892509pt;}
.y1f2{bottom:457.182608pt;}
.ybb{bottom:459.564699pt;}
.y82{bottom:460.485507pt;}
.y41{bottom:461.320605pt;}
.yf2{bottom:461.688272pt;}
.y1b7{bottom:462.659081pt;}
.y1e{bottom:464.002061pt;}
.y18b{bottom:465.658100pt;}
.y15e{bottom:466.827756pt;}
.y127{bottom:473.051689pt;}
.y1f1{bottom:473.115200pt;}
.y81{bottom:476.418099pt;}
.y40{bottom:477.254525pt;}
.y1d{bottom:477.278066pt;}
.yf1{bottom:477.622192pt;}
.y1b6{bottom:479.266210pt;}
.y121{bottom:479.837867pt;}
.yba{bottom:479.981362pt;}
.y15d{bottom:482.761676pt;}
.y184{bottom:483.379200pt;}
.y1f0{bottom:489.038878pt;}
.y1c{bottom:490.554072pt;}
.y80{bottom:492.352019pt;}
.y3f{bottom:493.188445pt;}
.yf0{bottom:493.557439pt;}
.y1b5{bottom:495.198802pt;}
.y15c{bottom:498.695596pt;}
.y1b{bottom:503.830077pt;}
.y1ef{bottom:504.971471pt;}
.yb9{bottom:505.611072pt;}
.y7f{bottom:508.420049pt;}
.y3e{bottom:509.122365pt;}
.yef{bottom:509.491359pt;}
.y1b4{bottom:511.132722pt;}
.y122{bottom:511.873508pt;}
.y15b{bottom:514.629516pt;}
.y1a{bottom:517.106083pt;}
.y183{bottom:518.075496pt;}
.y1ee{bottom:520.904063pt;}
.yb8{bottom:521.544992pt;}
.y7e{bottom:524.355297pt;}
.y3c{bottom:525.056285pt;}
.y3d{bottom:525.122676pt;}
.yee{bottom:525.425279pt;}
.y1b3{bottom:527.067970pt;}
.y19{bottom:530.382089pt;}
.y15a{bottom:530.563436pt;}
.y182{bottom:534.009416pt;}
.y120{bottom:535.136533pt;}
.yb7{bottom:537.478912pt;}
.y7d{bottom:540.289217pt;}
.y3b{bottom:540.990205pt;}
.y1ed{bottom:541.019309pt;}
.yed{bottom:541.357872pt;}
.y1b2{bottom:543.001890pt;}
.y18{bottom:543.658094pt;}
.y123{bottom:543.909150pt;}
.y159{bottom:546.498684pt;}
.y181{bottom:549.943336pt;}
.yb6{bottom:553.414160pt;}
.y7c{bottom:556.223137pt;}
.y3a{bottom:556.924125pt;}
.y17{bottom:556.934100pt;}
.yec{bottom:557.290464pt;}
.y1b1{bottom:558.935810pt;}
.y158{bottom:564.498703pt;}
.y180{bottom:565.877256pt;}
.y1ec{bottom:565.914731pt;}
.yb5{bottom:569.348080pt;}
.y16{bottom:570.210105pt;}
.y7b{bottom:572.157057pt;}
.y39{bottom:572.858045pt;}
.y1b0{bottom:574.868402pt;}
.y124{bottom:575.946044pt;}
.yeb{bottom:577.845221pt;}
.y157{bottom:580.432623pt;}
.y17f{bottom:581.811176pt;}
.y1eb{bottom:581.848651pt;}
.y15{bottom:583.486111pt;}
.yb4{bottom:585.282000pt;}
.y38{bottom:588.791965pt;}
.y1af{bottom:590.802322pt;}
.y7a{bottom:592.745010pt;}
.y156{bottom:596.366543pt;}
.y14{bottom:596.762117pt;}
.y17e{bottom:597.745096pt;}
.y1ea{bottom:597.783899pt;}
.yea{bottom:603.802904pt;}
.y37{bottom:604.725885pt;}
.yb3{bottom:605.694507pt;}
.y1ae{bottom:606.736242pt;}
.y125{bottom:607.981686pt;}
.y13{bottom:610.038122pt;}
.y155{bottom:612.301790pt;}
.y17d{bottom:613.679016pt;}
.y1e9{bottom:613.717819pt;}
.y79{bottom:618.786346pt;}
.ye9{bottom:619.736824pt;}
.y36{bottom:620.659805pt;}
.yb2{bottom:621.628427pt;}
.y1ad{bottom:622.671490pt;}
.y12{bottom:623.314128pt;}
.y154{bottom:628.234383pt;}
.y17c{bottom:629.612936pt;}
.y1e8{bottom:629.651739pt;}
.y78{bottom:634.720266pt;}
.ye8{bottom:635.670744pt;}
.y11{bottom:636.590133pt;}
.y35{bottom:636.593725pt;}
.y1ac{bottom:638.605410pt;}
.y126{bottom:640.017328pt;}
.y153{bottom:645.546587pt;}
.y17b{bottom:645.546856pt;}
.y1e7{bottom:645.585659pt;}
.yb1{bottom:647.256810pt;}
.y77{bottom:650.655514pt;}
.ye7{bottom:651.604664pt;}
.y1ab{bottom:654.539330pt;}
.y11f{bottom:657.739467pt;}
.y152{bottom:661.480507pt;}
.y17a{bottom:661.480776pt;}
.y1e6{bottom:661.518251pt;}
.yb0{bottom:663.190730pt;}
.y76{bottom:666.589434pt;}
.ye6{bottom:667.539912pt;}
.y1aa{bottom:670.473250pt;}
.y179{bottom:677.414696pt;}
.y151{bottom:677.415754pt;}
.y1e5{bottom:677.453499pt;}
.yaf{bottom:679.124650pt;}
.y75{bottom:682.523354pt;}
.ye5{bottom:683.471176pt;}
.y1a9{bottom:686.405842pt;}
.y11e{bottom:692.820187pt;}
.y150{bottom:693.348347pt;}
.y178{bottom:693.348616pt;}
.y1e4{bottom:693.387419pt;}
.yae{bottom:695.059897pt;}
.y74{bottom:698.455946pt;}
.y1a8{bottom:702.341090pt;}
.yc{bottom:703.884203pt;}
.ye4{bottom:704.337972pt;}
.y11d{bottom:708.754107pt;}
.y176{bottom:709.266333pt;}
.y14f{bottom:709.282267pt;}
.y177{bottom:709.282536pt;}
.y1e3{bottom:709.321339pt;}
.yad{bottom:710.993817pt;}
.y73{bottom:714.389866pt;}
.y1a7{bottom:718.275010pt;}
.yb{bottom:720.309419pt;}
.y11c{bottom:724.688027pt;}
.y1e2{bottom:725.255259pt;}
.yac{bottom:726.927737pt;}
.ye3{bottom:730.295656pt;}
.y72{bottom:730.322458pt;}
.ya{bottom:736.734635pt;}
.y10{bottom:737.397419pt;}
.y11b{bottom:740.621947pt;}
.y1e1{bottom:741.187851pt;}
.y1a6{bottom:742.433488pt;}
.yab{bottom:742.859002pt;}
.ye2{bottom:746.229576pt;}
.y71{bottom:746.256378pt;}
.y9{bottom:753.159851pt;}
.yf{bottom:753.822635pt;}
.y14e{bottom:755.887733pt;}
.y11a{bottom:756.555867pt;}
.y1e0{bottom:757.120443pt;}
.yaa{bottom:758.792922pt;}
.ye1{bottom:762.163496pt;}
.y70{bottom:762.190298pt;}
.y14d{bottom:768.369067pt;}
.y8{bottom:769.585067pt;}
.ye{bottom:770.247851pt;}
.y119{bottom:772.489787pt;}
.y1df{bottom:773.053036pt;}
.y1a5{bottom:773.058482pt;}
.ya9{bottom:774.726842pt;}
.ye0{bottom:778.097416pt;}
.y6f{bottom:778.122891pt;}
.y14c{bottom:780.849067pt;}
.y7{bottom:786.213067pt;}
.y5{bottom:786.213692pt;}
.yd{bottom:786.673067pt;}
.y118{bottom:788.423707pt;}
.y1de{bottom:788.986956pt;}
.y1a4{bottom:788.992402pt;}
.ya8{bottom:790.662090pt;}
.y6{bottom:791.490400pt;}
.y14b{bottom:793.330400pt;}
.ydf{bottom:794.032664pt;}
.y6e{bottom:796.996619pt;}
.y4{bottom:803.302400pt;}
.y117{bottom:804.356299pt;}
.y1dd{bottom:804.920876pt;}
.y1a3{bottom:804.926322pt;}
.y14a{bottom:805.281067pt;}
.ya7{bottom:806.596010pt;}
.yde{bottom:809.966584pt;}
.y6d{bottom:812.931867pt;}
.y116{bottom:820.288891pt;}
.y1dc{bottom:820.853468pt;}
.y1a2{bottom:820.860242pt;}
.ya6{bottom:822.528602pt;}
.ydd{bottom:826.025319pt;}
.y6c{bottom:828.864613pt;}
.y149{bottom:829.711867pt;}
.y148{bottom:829.712171pt;}
.y115{bottom:836.222811pt;}
.y1db{bottom:836.786060pt;}
.y1a1{bottom:836.795490pt;}
.ya5{bottom:838.462522pt;}
.y146{bottom:841.662371pt;}
.y147{bottom:841.662533pt;}
.ydc{bottom:841.956584pt;}
.y6b{bottom:844.798533pt;}
.y3{bottom:845.117400pt;}
.y114{bottom:852.156731pt;}
.y1da{bottom:852.718652pt;}
.y1a0{bottom:852.729410pt;}
.y145{bottom:853.613333pt;}
.ydb{bottom:857.890504pt;}
.ya4{bottom:858.879185pt;}
.y6a{bottom:860.729947pt;}
.y113{bottom:868.090651pt;}
.y1d9{bottom:868.653900pt;}
.y19f{bottom:868.663330pt;}
.y1d8{bottom:868.718963pt;}
.yda{bottom:873.824424pt;}
.y69{bottom:876.663867pt;}
.y144{bottom:880.374533pt;}
.y2{bottom:882.305333pt;}
.y112{bottom:884.024571pt;}
.ya3{bottom:884.508895pt;}
.y1d7{bottom:884.586492pt;}
.y19e{bottom:884.597250pt;}
.yd9{bottom:889.758344pt;}
.y68{bottom:892.597333pt;}
.y111{bottom:899.958491pt;}
.ya2{bottom:900.442815pt;}
.y1d6{bottom:900.519084pt;}
.y19d{bottom:900.529842pt;}
.y143{bottom:901.752000pt;}
.yd8{bottom:905.693591pt;}
.y67{bottom:908.531413pt;}
.y110{bottom:915.892411pt;}
.ya1{bottom:916.376735pt;}
.y1d5{bottom:916.453004pt;}
.y19c{bottom:916.463762pt;}
.yd7{bottom:921.626184pt;}
.y142{bottom:923.129333pt;}
.y66{bottom:924.465333pt;}
.ya0{bottom:932.310655pt;}
.y1d4{bottom:932.385596pt;}
.y10f{bottom:932.394641pt;}
.y19b{bottom:932.397682pt;}
.yd6{bottom:940.478667pt;}
.y65{bottom:943.338974pt;}
.y141{bottom:946.366667pt;}
.y1d3{bottom:948.320844pt;}
.y10e{bottom:948.328561pt;}
.y9f{bottom:948.329556pt;}
.y19a{bottom:948.331602pt;}
.yd5{bottom:956.413467pt;}
.y64{bottom:959.272894pt;}
.y1d2{bottom:964.256092pt;}
.y10d{bottom:964.262481pt;}
.y9e{bottom:964.264804pt;}
.y199{bottom:964.265522pt;}
.y140{bottom:970.797287pt;}
.y63{bottom:975.204158pt;}
.yd4{bottom:975.263910pt;}
.y1d1{bottom:980.188684pt;}
.y10c{bottom:980.195073pt;}
.y9d{bottom:980.197396pt;}
.y198{bottom:980.198114pt;}
.y13f{bottom:982.746800pt;}
.y62{bottom:991.139406pt;}
.yd3{bottom:991.197830pt;}
.y1d0{bottom:996.121276pt;}
.y10b{bottom:996.127665pt;}
.y9c{bottom:996.129988pt;}
.y197{bottom:996.130707pt;}
.y5f{bottom:999.456133pt;}
.y13e{bottom:1003.369867pt;}
.y13d{bottom:1003.370079pt;}
.y1cf{bottom:1012.053869pt;}
.y10a{bottom:1012.060257pt;}
.y9b{bottom:1012.062580pt;}
.y61{bottom:1012.063299pt;}
.y13c{bottom:1020.753200pt;}
.y5e{bottom:1026.013467pt;}
.y5d{bottom:1039.292133pt;}
.y5c{bottom:1052.570800pt;}
.y60{bottom:1053.593733pt;}
.y5b{bottom:1065.849467pt;}
.h14{height:18.239123pt;}
.h19{height:30.251931pt;}
.h1{height:31.484003pt;}
.he{height:33.187406pt;}
.h5{height:36.396016pt;}
.hf{height:36.435564pt;}
.h13{height:37.814795pt;}
.h1a{height:37.815512pt;}
.h22{height:37.822339pt;}
.h1e{height:38.022988pt;}
.h12{height:38.027237pt;}
.h15{height:41.401679pt;}
.h1d{height:41.402911pt;}
.h1c{height:41.404128pt;}
.h1b{height:41.404777pt;}
.h18{height:41.409461pt;}
.h8{height:44.117923pt;}
.ha{height:44.404714pt;}
.h9{height:44.691504pt;}
.h6{height:47.270629pt;}
.h21{height:47.275963pt;}
.h20{height:47.278331pt;}
.hd{height:47.498723pt;}
.h10{height:47.530883pt;}
.h7{height:47.536195pt;}
.hc{height:47.589308pt;}
.h1f{height:47.595698pt;}
.h4{height:51.996411pt;}
.h3{height:52.288525pt;}
.h16{height:58.511566pt;}
.h11{height:59.428210pt;}
.hb{height:59.433522pt;}
.h17{height:60.546160pt;}
.h2{height:113.443909pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x21{left:75.560528pt;}
.x4{left:76.625867pt;}
.xc4{left:77.645333pt;}
.x13{left:81.160468pt;}
.xe{left:85.542296pt;}
.xa3{left:86.630056pt;}
.xca{left:87.878846pt;}
.x20{left:88.836533pt;}
.x86{left:93.063006pt;}
.xd3{left:94.373571pt;}
.xc5{left:97.030400pt;}
.x7c{left:98.899174pt;}
.x32{left:100.164754pt;}
.xe6{left:101.201876pt;}
.x69{left:103.972800pt;}
.x83{left:106.711736pt;}
.x68{left:109.619936pt;}
.xd5{left:110.792147pt;}
.x7a{left:115.607217pt;}
.x2a{left:116.762749pt;}
.x25{left:118.722483pt;}
.x2c{left:120.072788pt;}
.xc3{left:121.519486pt;}
.xa8{left:123.490524pt;}
.xd4{left:124.458139pt;}
.x3d{left:127.153742pt;}
.xa0{left:128.310535pt;}
.xe5{left:129.447405pt;}
.x40{left:134.231058pt;}
.x6b{left:136.197825pt;}
.x9f{left:138.309320pt;}
.xe2{left:139.542871pt;}
.x3a{left:141.613774pt;}
.x24{left:142.609733pt;}
.xcb{left:144.750933pt;}
.xa9{left:145.807307pt;}
.xac{left:149.831950pt;}
.xb1{left:151.144800pt;}
.xd0{left:152.168554pt;}
.x78{left:153.342723pt;}
.x67{left:155.517593pt;}
.xeb{left:156.502580pt;}
.x7f{left:159.292344pt;}
.x7b{left:160.365599pt;}
.xa2{left:162.124969pt;}
.x8{left:164.888313pt;}
.x26{left:166.974968pt;}
.x12{left:170.231080pt;}
.x87{left:172.625052pt;}
.x1{left:174.168400pt;}
.x85{left:175.649841pt;}
.x74{left:178.066856pt;}
.x31{left:181.529581pt;}
.x9{left:183.554440pt;}
.x36{left:184.608802pt;}
.x64{left:186.348400pt;}
.x42{left:187.928369pt;}
.x7d{left:189.089145pt;}
.x6a{left:191.446037pt;}
.xea{left:194.402737pt;}
.x2{left:196.735067pt;}
.xc{left:198.527067pt;}
.x2d{left:204.747653pt;}
.xa{left:208.161733pt;}
.xf{left:209.109845pt;}
.x6f{left:212.577071pt;}
.xa6{left:214.797197pt;}
.x33{left:216.649455pt;}
.x5{left:219.075584pt;}
.xe9{left:220.118049pt;}
.xa1{left:226.857847pt;}
.xa7{left:228.302522pt;}
.xe3{left:229.865624pt;}
.x81{left:231.839482pt;}
.x71{left:233.417310pt;}
.xaa{left:234.484883pt;}
.xc8{left:238.435067pt;}
.x38{left:241.001600pt;}
.x3{left:241.921433pt;}
.x9e{left:244.596533pt;}
.x3e{left:247.255664pt;}
.xd7{left:248.178389pt;}
.xc9{left:249.567200pt;}
.xb{left:250.929006pt;}
.x3f{left:252.925484pt;}
.x3b{left:257.360425pt;}
.x77{left:259.891519pt;}
.xab{left:261.345489pt;}
.x6{left:262.732121pt;}
.xd{left:264.373991pt;}
.x82{left:266.208947pt;}
.xcc{left:269.840775pt;}
.x2e{left:271.020135pt;}
.x28{left:273.063517pt;}
.xaf{left:274.092254pt;}
.x30{left:275.859723pt;}
.x35{left:277.370773pt;}
.x79{left:278.530221pt;}
.xe7{left:281.612357pt;}
.x6d{left:283.198860pt;}
.x10{left:288.460767pt;}
.x2f{left:290.533832pt;}
.xe4{left:292.034469pt;}
.xd1{left:297.851057pt;}
.x37{left:300.700687pt;}
.x6c{left:304.752142pt;}
.xcf{left:305.748533pt;}
.x7{left:308.389643pt;}
.xd6{left:310.513212pt;}
.xad{left:314.280627pt;}
.x84{left:315.383680pt;}
.x76{left:316.658764pt;}
.xa5{left:318.365021pt;}
.xb0{left:319.371144pt;}
.x72{left:321.673965pt;}
.xa4{left:324.593856pt;}
.xd2{left:325.938574pt;}
.x70{left:328.443226pt;}
.x34{left:330.266252pt;}
.x6e{left:335.586933pt;}
.x73{left:337.587968pt;}
.x75{left:338.646246pt;}
.x3c{left:340.920557pt;}
.xae{left:341.895438pt;}
.xce{left:343.362000pt;}
.x11{left:346.407123pt;}
.x80{left:349.431811pt;}
.x7e{left:354.788264pt;}
.x27{left:356.854112pt;}
.x22{left:358.168568pt;}
.x23{left:364.394309pt;}
.xc7{left:365.731901pt;}
.x43{left:370.955996pt;}
.xe8{left:372.498109pt;}
.x65{left:374.428408pt;}
.x2b{left:376.128817pt;}
.x39{left:377.634964pt;}
.x29{left:379.438856pt;}
.xc2{left:381.384667pt;}
.x41{left:384.991124pt;}
.x1a{left:403.818705pt;}
.xed{left:405.758219pt;}
.x17{left:409.422133pt;}
.x45{left:413.433171pt;}
.x4c{left:417.868112pt;}
.xb7{left:420.070133pt;}
.x14{left:420.999467pt;}
.xfa{left:423.671604pt;}
.x95{left:424.563933pt;}
.x8c{left:426.031476pt;}
.xc6{left:429.047467pt;}
.x5d{left:430.468459pt;}
.xc0{left:432.412717pt;}
.xf0{left:433.410209pt;}
.xb9{left:434.683556pt;}
.xcd{left:437.224800pt;}
.xb8{left:438.338133pt;}
.xdc{left:440.204004pt;}
.xb6{left:442.022133pt;}
.xda{left:454.438306pt;}
.x96{left:455.625783pt;}
.x1f{left:458.896955pt;}
.x9a{left:459.965120pt;}
.xf7{left:460.871398pt;}
.xf1{left:462.939746pt;}
.x5e{left:464.434265pt;}
.x88{left:467.044058pt;}
.xd8{left:468.481526pt;}
.x97{left:470.279678pt;}
.x53{left:471.738040pt;}
.xb4{left:473.992575pt;}
.xd9{left:475.411267pt;}
.x9b{left:476.418220pt;}
.xbe{left:477.412762pt;}
.xc1{left:480.511910pt;}
.xf8{left:482.487088pt;}
.x4b{left:485.202203pt;}
.x5b{left:486.210622pt;}
.x8d{left:488.759336pt;}
.x1e{left:490.167273pt;}
.xf4{left:493.174359pt;}
.xde{left:496.355138pt;}
.x56{left:498.187619pt;}
.xf5{left:504.213910pt;}
.x50{left:505.571064pt;}
.x8a{left:507.674227pt;}
.x49{left:509.740439pt;}
.xec{left:511.113298pt;}
.x91{left:512.560629pt;}
.xe1{left:514.421547pt;}
.xbb{left:515.457652pt;}
.xf9{left:521.359160pt;}
.x5f{left:524.120074pt;}
.x90{left:525.391418pt;}
.x1b{left:527.386254pt;}
.xbf{left:530.258936pt;}
.x54{left:533.322641pt;}
.x89{left:535.011522pt;}
.x8e{left:538.720142pt;}
.x18{left:543.346731pt;}
.x57{left:546.002657pt;}
.xdb{left:551.313883pt;}
.x59{left:553.969617pt;}
.x62{left:560.108800pt;}
.x52{left:562.295819pt;}
.x66{left:563.275900pt;}
.x8b{left:564.331263pt;}
.xbd{left:566.000046pt;}
.xf6{left:569.049664pt;}
.xf3{left:572.861221pt;}
.xdf{left:573.845774pt;}
.x15{left:575.951692pt;}
.x63{left:577.809067pt;}
.xe0{left:582.813915pt;}
.x99{left:586.674308pt;}
.x98{left:588.802814pt;}
.xee{left:593.328341pt;}
.x46{left:599.621027pt;}
.x51{left:602.741419pt;}
.x44{left:604.308255pt;}
.x1c{left:606.737176pt;}
.x58{left:608.915085pt;}
.x4d{left:613.523372pt;}
.x93{left:614.987850pt;}
.xdd{left:617.636170pt;}
.x94{left:625.182609pt;}
.x19{left:627.849620pt;}
.xb5{left:632.435492pt;}
.x60{left:636.507323pt;}
.xef{left:637.772028pt;}
.xb3{left:639.212720pt;}
.x92{left:644.859967pt;}
.xf2{left:647.235448pt;}
.x55{left:656.371610pt;}
.xb2{left:663.282234pt;}
.x1d{left:664.683532pt;}
.x8f{left:666.224698pt;}
.x47{left:677.577730pt;}
.x4f{left:682.371184pt;}
.x5c{left:687.150632pt;}
.x9d{left:688.318111pt;}
.x61{left:691.439512pt;}
.x16{left:693.031250pt;}
.x4e{left:694.799642pt;}
.xba{left:700.090622pt;}
.x9c{left:701.209980pt;}
.x5a{left:704.531883pt;}
.x48{left:706.683691pt;}
.xbc{left:708.215594pt;}
.x4a{left:712.579241pt;}
}




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