
    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_aa897e2d28344fcfe9d34a98.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c3f535d9afdb6b9b08f6a415.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f57f0a05a6dc438bff40eede.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e501582a17fdee3fcc8f186e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_de9b4ab3f34197e707d7726d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.843000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e626c3681ad6f7a8eb09d2a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6d1c9c1bc9833aaa3a54247e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0d424e997000ce1f582ad01b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_197cf16e1cdc6eb6ce373015.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.708000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.004200px;}
.ls1a{letter-spacing:2.425290px;}
.ls27{letter-spacing:2.428360px;}
.ls2a{letter-spacing:2.433296px;}
.ls17{letter-spacing:2.436151px;}
.ls24{letter-spacing:2.439234px;}
.ls16{letter-spacing:2.454883px;}
.ls29{letter-spacing:2.455049px;}
.ls18{letter-spacing:2.455791px;}
.ls19{letter-spacing:2.456875px;}
.ls23{letter-spacing:2.457990px;}
.ls25{letter-spacing:2.458899px;}
.ls26{letter-spacing:2.459985px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990611px;}
.ls50{letter-spacing:4.007646px;}
.ls12{letter-spacing:4.009121px;}
.ls4d{letter-spacing:4.025592px;}
.lsd{letter-spacing:4.027074px;}
.ls10{letter-spacing:4.054033px;}
.ls4c{letter-spacing:4.056545px;}
.lsc{letter-spacing:4.058039px;}
.ls4e{letter-spacing:4.058046px;}
.lsf{letter-spacing:4.059540px;}
.ls4f{letter-spacing:4.059838px;}
.ls11{letter-spacing:4.061333px;}
.lse{letter-spacing:4.062182px;}
.ls56{letter-spacing:4.139482px;}
.ls53{letter-spacing:4.149583px;}
.ls55{letter-spacing:4.176487px;}
.ls52{letter-spacing:4.181490px;}
.ls54{letter-spacing:4.183037px;}
.ls38{letter-spacing:4.483512px;}
.ls5f{letter-spacing:4.490142px;}
.ls5c{letter-spacing:4.501099px;}
.ls35{letter-spacing:4.503589px;}
.ls5e{letter-spacing:4.530282px;}
.ls5b{letter-spacing:4.535709px;}
.ls5d{letter-spacing:4.537386px;}
.ls34{letter-spacing:4.538218px;}
.ls36{letter-spacing:4.539897px;}
.ls37{letter-spacing:4.541902px;}
.ls3a{letter-spacing:4.547332px;}
.ls46{letter-spacing:4.584459px;}
.ls65{letter-spacing:4.596059px;}
.ls43{letter-spacing:4.604988px;}
.ls62{letter-spacing:4.616640px;}
.ls42{letter-spacing:4.640397px;}
.ls44{letter-spacing:4.642113px;}
.ls45{letter-spacing:4.644164px;}
.ls61{letter-spacing:4.652138px;}
.ls63{letter-spacing:4.653859px;}
.ls64{letter-spacing:4.655915px;}
.ls15{letter-spacing:4.764498px;}
.ls14{letter-spacing:4.801683px;}
.ls20{letter-spacing:4.878824px;}
.ls1f{letter-spacing:4.916901px;}
.ls6{letter-spacing:4.958512px;}
.ls3{letter-spacing:4.959596px;}
.ls22{letter-spacing:4.964512px;}
.ls2f{letter-spacing:4.965596px;}
.ls69{letter-spacing:5.144303px;}
.ls5{letter-spacing:7.352854px;}
.ls7{letter-spacing:7.353196px;}
.ls1d{letter-spacing:9.912538px;}
.ls2d{letter-spacing:9.918538px;}
.ls3f{letter-spacing:10.572538px;}
.ls1e{letter-spacing:11.310538px;}
.ls2e{letter-spacing:11.322538px;}
.ls4b{letter-spacing:11.356200px;}
.ls1c{letter-spacing:11.362200px;}
.ls2c{letter-spacing:11.368200px;}
.ls3c{letter-spacing:11.604538px;}
.lsa{letter-spacing:11.724538px;}
.ls40{letter-spacing:12.024538px;}
.ls41{letter-spacing:12.070200px;}
.ls3e{letter-spacing:12.076200px;}
.ls4{letter-spacing:12.896100px;}
.ls59{letter-spacing:13.050538px;}
.ls3d{letter-spacing:13.140538px;}
.ls3b{letter-spacing:13.186200px;}
.ls67{letter-spacing:13.230538px;}
.ls32{letter-spacing:13.236538px;}
.lsb{letter-spacing:13.266538px;}
.ls9{letter-spacing:13.318200px;}
.ls1b{letter-spacing:14.692785px;}
.ls5a{letter-spacing:14.694538px;}
.ls28{letter-spacing:14.711382px;}
.ls2b{letter-spacing:14.716318px;}
.ls58{letter-spacing:14.746200px;}
.ls33{letter-spacing:14.892538px;}
.ls68{letter-spacing:14.898538px;}
.ls31{letter-spacing:14.944200px;}
.ls49{letter-spacing:19.260538px;}
.ls30{letter-spacing:23.186100px;}
.ls21{letter-spacing:23.330100px;}
.ls51{letter-spacing:24.278939px;}
.ls13{letter-spacing:24.287880px;}
.ls57{letter-spacing:25.035146px;}
.ls4a{letter-spacing:25.740538px;}
.ls48{letter-spacing:25.786200px;}
.ls60{letter-spacing:27.155901px;}
.ls39{letter-spacing:27.161813px;}
.ls47{letter-spacing:27.773364px;}
.ls66{letter-spacing:27.843639px;}
.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;}
}
.ws116{word-spacing:-27.923155px;}
.wsda{word-spacing:-27.852680px;}
.wsc4{word-spacing:-27.239382px;}
.ws10c{word-spacing:-27.224319px;}
.wsf8{word-spacing:-25.098220px;}
.ws79{word-spacing:-24.357242px;}
.wsea{word-spacing:-24.348276px;}
.ws11b{word-spacing:-21.519300px;}
.ws9{word-spacing:-14.943900px;}
.wsa7{word-spacing:-14.753395px;}
.ws8c{word-spacing:-14.734745px;}
.ws133{word-spacing:-10.460700px;}
.ws115{word-spacing:-4.657516px;}
.ws113{word-spacing:-4.653859px;}
.ws111{word-spacing:-4.648173px;}
.wsd6{word-spacing:-4.644881px;}
.wsd8{word-spacing:-4.642113px;}
.wsdc{word-spacing:-4.635911px;}
.wsc3{word-spacing:-4.545338px;}
.wsc1{word-spacing:-4.539897px;}
.wsc6{word-spacing:-4.539130px;}
.ws10a{word-spacing:-4.537386px;}
.wsbf{word-spacing:-4.536224px;}
.wsf4{word-spacing:-4.184323px;}
.wsf6{word-spacing:-4.183037px;}
.wse9{word-spacing:-4.063682px;}
.ws77{word-spacing:-4.059540px;}
.wse7{word-spacing:-4.058046px;}
.wse5{word-spacing:-4.055535px;}
.ws8f{word-spacing:-3.588146px;}
.ws90{word-spacing:-3.586536px;}
.wsab{word-spacing:-3.585866px;}
.ws1c{word-spacing:-3.466985px;}
.wsa0{word-spacing:-3.347434px;}
.ws3e{word-spacing:-3.048556px;}
.ws50{word-spacing:-2.988780px;}
.wsce{word-spacing:-2.871313px;}
.ws86{word-spacing:-2.869229px;}
.ws67{word-spacing:-2.809453px;}
.ws8e{word-spacing:-2.630126px;}
.ws2f{word-spacing:-2.587296px;}
.ws2e{word-spacing:-2.570351px;}
.wsa9{word-spacing:-2.461741px;}
.wsa6{word-spacing:-2.460831px;}
.wsa4{word-spacing:-2.458899px;}
.wsaa{word-spacing:-2.456804px;}
.ws88{word-spacing:-2.455947px;}
.wsa2{word-spacing:-2.455895px;}
.ws8a{word-spacing:-2.455791px;}
.ws126{word-spacing:-2.385040px;}
.ws4{word-spacing:-2.211697px;}
.ws128{word-spacing:-2.175826px;}
.ws69{word-spacing:-2.151922px;}
.ws23{word-spacing:-2.092146px;}
.ws30{word-spacing:-2.032370px;}
.ws84{word-spacing:-1.912819px;}
.ws33{word-spacing:-1.793268px;}
.wscd{word-spacing:-1.789640px;}
.ws2{word-spacing:-1.733492px;}
.ws6c{word-spacing:-1.673717px;}
.ws6b{word-spacing:-1.651775px;}
.ws136{word-spacing:-1.631869px;}
.ws68{word-spacing:-1.613941px;}
.wsee{word-spacing:-1.554166px;}
.ws120{word-spacing:-1.506341px;}
.ws13b{word-spacing:-1.422655px;}
.wsd4{word-spacing:-1.374839px;}
.ws3a{word-spacing:-1.255288px;}
.ws27{word-spacing:-1.135736px;}
.ws122{word-spacing:-1.129756px;}
.ws26{word-spacing:-1.075961px;}
.ws4e{word-spacing:-1.056534px;}
.ws4f{word-spacing:-1.016185px;}
.ws32{word-spacing:-0.956410px;}
.ws3d{word-spacing:-0.896634px;}
.ws123{word-spacing:-0.795013px;}
.ws37{word-spacing:-0.717307px;}
.ws5{word-spacing:-0.657532px;}
.ws85{word-spacing:-0.597756px;}
.ws13a{word-spacing:-0.585799px;}
.ws12d{word-spacing:-0.543956px;}
.ws9f{word-spacing:-0.537980px;}
.ws10f{word-spacing:-0.478205px;}
.ws71{word-spacing:-0.418429px;}
.ws92{word-spacing:-0.358654px;}
.wsfd{word-spacing:-0.298878px;}
.ws125{word-spacing:-0.292900px;}
.ws5b{word-spacing:-0.239102px;}
.wsfb{word-spacing:-0.218114px;}
.wsfa{word-spacing:-0.217806px;}
.ws9e{word-spacing:-0.179327px;}
.ws40{word-spacing:-0.059776px;}
.wsde{word-spacing:-0.013364px;}
.wsc7{word-spacing:-0.013069px;}
.ws112{word-spacing:-0.004797px;}
.wsdd{word-spacing:-0.004785px;}
.wsc0{word-spacing:-0.004680px;}
.ws109{word-spacing:-0.004677px;}
.wsf5{word-spacing:-0.004312px;}
.wse6{word-spacing:-0.004183px;}
.ws114{word-spacing:-0.004055px;}
.wsd9{word-spacing:-0.004044px;}
.wsc2{word-spacing:-0.003955px;}
.ws10b{word-spacing:-0.003953px;}
.wsf7{word-spacing:-0.003645px;}
.ws78{word-spacing:-0.003537px;}
.wse8{word-spacing:-0.003536px;}
.wsa3{word-spacing:-0.002535px;}
.ws89{word-spacing:-0.002532px;}
.wsa5{word-spacing:-0.002142px;}
.ws8b{word-spacing:-0.002140px;}
.ws104{word-spacing:-0.001133px;}
.ws0{word-spacing:0.000000px;}
.wsba{word-spacing:0.002134px;}
.wsd7{word-spacing:0.004534px;}
.wsa1{word-spacing:0.006503px;}
.wse4{word-spacing:0.010732px;}
.ws75{word-spacing:0.010736px;}
.wsf3{word-spacing:0.011063px;}
.ws87{word-spacing:0.011425px;}
.ws107{word-spacing:0.012000px;}
.wsbe{word-spacing:0.012007px;}
.wsd5{word-spacing:0.012277px;}
.ws110{word-spacing:0.012308px;}
.ws24{word-spacing:0.059776px;}
.ws62{word-spacing:0.119551px;}
.ws134{word-spacing:0.125528px;}
.ws3f{word-spacing:0.239102px;}
.wsb6{word-spacing:0.298878px;}
.ws49{word-spacing:0.358654px;}
.ws19{word-spacing:0.382565px;}
.wse{word-spacing:0.418429px;}
.ws65{word-spacing:0.537980px;}
.wsb2{word-spacing:0.597756px;}
.ws25{word-spacing:0.657532px;}
.ws13e{word-spacing:0.711328px;}
.ws5a{word-spacing:0.717307px;}
.ws94{word-spacing:0.777083px;}
.wsbc{word-spacing:0.836858px;}
.ws5e{word-spacing:0.896634px;}
.ws36{word-spacing:0.956410px;}
.ws63{word-spacing:1.016185px;}
.ws46{word-spacing:1.075961px;}
.ws52{word-spacing:1.135736px;}
.ws66{word-spacing:1.195512px;}
.ws28{word-spacing:1.255288px;}
.ws39{word-spacing:1.315063px;}
.ws54{word-spacing:1.434614px;}
.ws11c{word-spacing:1.464498px;}
.ws29{word-spacing:1.494390px;}
.ws12c{word-spacing:1.590026px;}
.ws12a{word-spacing:1.631869px;}
.ws61{word-spacing:1.673717px;}
.ws137{word-spacing:1.757398px;}
.ws31{word-spacing:1.793268px;}
.ws121{word-spacing:1.799240px;}
.ws9a{word-spacing:1.853044px;}
.ws51{word-spacing:1.912819px;}
.ws4d{word-spacing:1.972595px;}
.ws11d{word-spacing:2.008454px;}
.ws3b{word-spacing:2.032370px;}
.wsd2{word-spacing:2.092146px;}
.ws4c{word-spacing:2.211697px;}
.ws12e{word-spacing:2.217668px;}
.ws21{word-spacing:2.271473px;}
.ws11e{word-spacing:2.301354px;}
.ws5f{word-spacing:2.331248px;}
.wsd1{word-spacing:2.391024px;}
.ws44{word-spacing:2.450800px;}
.ws132{word-spacing:2.468725px;}
.ws139{word-spacing:2.510568px;}
.ws2d{word-spacing:2.510575px;}
.ws12f{word-spacing:2.552411px;}
.ws83{word-spacing:2.570351px;}
.ws105{word-spacing:2.630126px;}
.ws1d{word-spacing:2.689902px;}
.ws13d{word-spacing:2.719782px;}
.wsfc{word-spacing:2.809453px;}
.ws135{word-spacing:2.845310px;}
.ws103{word-spacing:2.869229px;}
.ws22{word-spacing:2.929004px;}
.ws35{word-spacing:2.988780px;}
.ws5d{word-spacing:3.048556px;}
.ws10{word-spacing:3.168107px;}
.ws6{word-spacing:3.227882px;}
.ws9d{word-spacing:3.287658px;}
.ws129{word-spacing:3.305581px;}
.ws34{word-spacing:3.347434px;}
.ws58{word-spacing:3.407209px;}
.ws12b{word-spacing:3.431110px;}
.ws5c{word-spacing:3.466985px;}
.ws127{word-spacing:3.514795px;}
.wsca{word-spacing:3.526760px;}
.wsbb{word-spacing:3.586536px;}
.ws13c{word-spacing:3.598481px;}
.ws98{word-spacing:3.646312px;}
.ws42{word-spacing:3.706087px;}
.wsf2{word-spacing:3.825638px;}
.ws124{word-spacing:3.849538px;}
.ws3{word-spacing:3.885414px;}
.ws3c{word-spacing:3.945190px;}
.wsb9{word-spacing:4.004965px;}
.ws64{word-spacing:4.064741px;}
.ws20{word-spacing:4.124516px;}
.ws10e{word-spacing:4.184292px;}
.wsf{word-spacing:4.244068px;}
.wsac{word-spacing:4.303843px;}
.wscb{word-spacing:4.423394px;}
.ws12{word-spacing:4.483170px;}
.ws108{word-spacing:4.536718px;}
.ws47{word-spacing:4.542946px;}
.ws53{word-spacing:4.602721px;}
.ws11f{word-spacing:4.770079px;}
.ws56{word-spacing:4.782048px;}
.ws138{word-spacing:4.853765px;}
.ws70{word-spacing:4.901599px;}
.wsa{word-spacing:4.961375px;}
.ws97{word-spacing:5.080926px;}
.wsd0{word-spacing:5.140702px;}
.ws15{word-spacing:5.260253px;}
.wsc{word-spacing:5.499355px;}
.ws11a{word-spacing:5.559131px;}
.ws130{word-spacing:5.606935px;}
.wsb4{word-spacing:5.618906px;}
.ws100{word-spacing:5.678682px;}
.wsb8{word-spacing:5.738458px;}
.ws4b{word-spacing:5.798233px;}
.ws82{word-spacing:5.858009px;}
.ws73{word-spacing:5.917784px;}
.ws99{word-spacing:5.977560px;}
.ws131{word-spacing:5.983520px;}
.ws55{word-spacing:6.037336px;}
.ws6f{word-spacing:6.156887px;}
.ws45{word-spacing:6.216662px;}
.ws7{word-spacing:6.276438px;}
.ws4a{word-spacing:6.455765px;}
.ws96{word-spacing:6.515540px;}
.wsad{word-spacing:6.575316px;}
.wsae{word-spacing:6.595301px;}
.wsbd{word-spacing:6.635092px;}
.ws74{word-spacing:6.694867px;}
.ws93{word-spacing:6.721750px;}
.ws1e{word-spacing:6.754643px;}
.ws59{word-spacing:6.814418px;}
.wsf0{word-spacing:6.874194px;}
.ws57{word-spacing:6.933970px;}
.ws48{word-spacing:7.173072px;}
.wsaf{word-spacing:7.232848px;}
.ws2a{word-spacing:7.292623px;}
.wscf{word-spacing:7.352399px;}
.ws1f{word-spacing:7.471950px;}
.ws6d{word-spacing:7.531726px;}
.ws16{word-spacing:7.591501px;}
.ws43{word-spacing:7.770828px;}
.ws11{word-spacing:7.890379px;}
.wsb7{word-spacing:7.950155px;}
.ws76{word-spacing:8.054148px;}
.wsb{word-spacing:8.129482px;}
.wscc{word-spacing:8.189257px;}
.ws9b{word-spacing:8.249033px;}
.ws2c{word-spacing:8.368584px;}
.wsef{word-spacing:8.428360px;}
.wsd{word-spacing:8.488135px;}
.ws6a{word-spacing:8.607686px;}
.ws2b{word-spacing:8.667462px;}
.wsb5{word-spacing:8.787013px;}
.ws9c{word-spacing:8.846789px;}
.ws102{word-spacing:8.906564px;}
.ws13{word-spacing:8.966340px;}
.ws60{word-spacing:9.205442px;}
.ws38{word-spacing:9.623872px;}
.ws6e{word-spacing:9.683647px;}
.ws14{word-spacing:10.102076px;}
.wsdf{word-spacing:10.221628px;}
.wse0{word-spacing:10.819384px;}
.ws18{word-spacing:11.901626px;}
.ws1{word-spacing:11.907329px;}
.ws7b{word-spacing:16.772534px;}
.ws1b{word-spacing:17.932800px;}
.wsf1{word-spacing:18.907966px;}
.ws72{word-spacing:19.783966px;}
.ws41{word-spacing:20.185966px;}
.wsd3{word-spacing:20.191966px;}
.ws101{word-spacing:20.557966px;}
.wsb3{word-spacing:20.767966px;}
.ws95{word-spacing:20.959966px;}
.ws119{word-spacing:21.103966px;}
.ws1a{word-spacing:21.519300px;}
.ws106{word-spacing:24.163966px;}
.ws8{word-spacing:26.449966px;}
.ws17{word-spacing:37.003661px;}
.ws8d{word-spacing:46.660026px;}
.wsa8{word-spacing:46.719085px;}
.wseb{word-spacing:77.102873px;}
.ws7a{word-spacing:77.131266px;}
.wsf9{word-spacing:79.477698px;}
.ws10d{word-spacing:86.210343px;}
.wsc5{word-spacing:86.258044px;}
.wsdb{word-spacing:88.200153px;}
.ws117{word-spacing:88.423325px;}
.wsb1{word-spacing:93.444984px;}
.ws91{word-spacing:100.527130px;}
.wsec{word-spacing:439.388150px;}
.wsc8{word-spacing:488.569720px;}
.wsb0{word-spacing:590.867387px;}
.wse2{word-spacing:619.786150px;}
.wse1{word-spacing:696.411037px;}
.wse3{word-spacing:854.874057px;}
.wsff{word-spacing:898.547291px;}
.wsfe{word-spacing:932.876028px;}
.wsc9{word-spacing:942.318889px;}
.wsed{word-spacing:1007.828741px;}
.ws118{word-spacing:1013.337077px;}
.ws7e{word-spacing:1211.197764px;}
.ws81{word-spacing:1211.293822px;}
.ws7f{word-spacing:1214.175568px;}
.ws7d{word-spacing:1264.606120px;}
.ws80{word-spacing:1286.027097px;}
.ws7c{word-spacing:1350.001854px;}
._29{margin-left:-10.662459px;}
._1a{margin-left:-9.012180px;}
._52{margin-left:-7.743599px;}
._7{margin-left:-6.694867px;}
._9{margin-left:-5.260253px;}
._8{margin-left:-4.244068px;}
._1{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._18{width:1.688773px;}
._17{width:3.962121px;}
._6f{width:5.472716px;}
._2c{width:10.879159px;}
._3a{width:13.031080px;}
._2b{width:14.071172px;}
._a{width:15.679416px;}
._10{width:16.952365px;}
._3{width:18.291334px;}
._2{width:20.000920px;}
._13{width:21.913739px;}
._f{width:23.850464px;}
._6{width:25.045976px;}
._d{width:26.659918px;}
._4{width:28.226048px;}
._15{width:29.887800px;}
._16{width:31.202863px;}
._5{width:33.546077px;}
._51{width:34.825268px;}
._12{width:36.761993px;}
._2a{width:38.256384px;}
._c{width:40.743054px;}
._14{width:43.038600px;}
._e{width:44.485011px;}
._11{width:46.744519px;}
._36{width:60.903351px;}
._35{width:72.544062px;}
._2d{width:79.420276px;}
._46{width:82.268231px;}
._33{width:84.823016px;}
._3f{width:86.540340px;}
._47{width:87.902294px;}
._2f{width:91.650115px;}
._3d{width:92.715884px;}
._39{width:96.365496px;}
._31{width:97.740214px;}
._45{width:104.060614px;}
._38{width:106.679555px;}
._30{width:109.380925px;}
._41{width:112.273337px;}
._37{width:115.471024px;}
._40{width:117.732093px;}
._34{width:118.958509px;}
._43{width:121.865212px;}
._3c{width:124.567833px;}
._32{width:127.111735px;}
._3e{width:130.026589px;}
._1c{width:131.204343px;}
._24{width:133.915660px;}
._69{width:135.195747px;}
._42{width:137.078111px;}
._44{width:139.567118px;}
._4d{width:146.547877px;}
._70{width:147.611764px;}
._59{width:149.582580px;}
._22{width:151.502045px;}
._6d{width:156.110930px;}
._67{width:167.191492px;}
._49{width:169.428958px;}
._58{width:173.243669px;}
._20{width:176.346432px;}
._63{width:183.017872px;}
._65{width:187.481722px;}
._26{width:190.618865px;}
._55{width:196.454236px;}
._5f{width:197.540966px;}
._74{width:199.484474px;}
._73{width:200.573788px;}
._4c{width:204.930953px;}
._53{width:209.637838px;}
._5e{width:211.958894px;}
._27{width:214.749683px;}
._23{width:216.941835px;}
._5c{width:219.850487px;}
._4e{width:227.630438px;}
._1b{width:230.500700px;}
._72{width:233.158347px;}
._5d{width:235.169461px;}
._71{width:238.169609px;}
._5a{width:243.727802px;}
._1e{width:248.525059px;}
._4b{width:250.329923px;}
._61{width:255.873286px;}
._60{width:258.380027px;}
._57{width:260.979611px;}
._56{width:266.271620px;}
._6a{width:269.889529px;}
._4a{width:273.029408px;}
._6e{width:274.217257px;}
._5b{width:281.590594px;}
._50{width:283.017182px;}
._54{width:284.190177px;}
._6b{width:291.484394px;}
._48{width:295.547298px;}
._4f{width:305.716667px;}
._66{width:308.436881px;}
._62{width:319.855180px;}
._6c{width:322.991465px;}
._64{width:328.727111px;}
._1d{width:332.963497px;}
._19{width:344.330210px;}
._68{width:349.024812px;}
._1f{width:353.261199px;}
._25{width:373.558901px;}
._28{width:393.856602px;}
._21{width:454.749707px;}
._3b{width:602.329381px;}
._2e{width:606.870873px;}
._b{width:1147.359649px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fsb{font-size:39.292752px;}
.fsf{font-size:39.342486px;}
.fs1c{font-size:41.842800px;}
.fs3{font-size:44.233800px;}
.fs2{font-size:47.820600px;}
.fsa{font-size:49.115817px;}
.fse{font-size:49.177984px;}
.fs1{font-size:59.775600px;}
.fs15{font-size:64.928898px;}
.fs7{font-size:64.952808px;}
.fs17{font-size:66.928755px;}
.fs5{font-size:71.731200px;}
.fs19{font-size:72.598366px;}
.fs11{font-size:72.638535px;}
.fs13{font-size:74.274000px;}
.fs1b{font-size:74.461934px;}
.fs9{font-size:76.846748px;}
.fsd{font-size:78.690710px;}
.fs14{font-size:81.160919px;}
.fs6{font-size:81.190806px;}
.fs16{font-size:83.660734px;}
.fs0{font-size:86.077200px;}
.fs18{font-size:90.747729px;}
.fs10{font-size:90.797941px;}
.fs12{font-size:92.842266px;}
.fs1a{font-size:93.077185px;}
.fs8{font-size:96.058194px;}
.fsc{font-size:98.363141px;}
.y0{bottom:0.000000px;}
.y21{bottom:134.047500px;}
.y18d{bottom:178.879500px;}
.y158{bottom:179.367000px;}
.y9a{bottom:182.802000px;}
.yb8{bottom:186.937500px;}
.y70{bottom:187.323000px;}
.yf3{bottom:187.923000px;}
.y118{bottom:191.061000px;}
.y1ec{bottom:192.328500px;}
.y18c{bottom:196.812000px;}
.yd8{bottom:196.945500px;}
.y157{bottom:197.301000px;}
.y99{bottom:200.734500px;}
.yb7{bottom:204.870000px;}
.y6f{bottom:205.255500px;}
.y1eb{bottom:205.779000px;}
.yf2{bottom:205.855500px;}
.y1c2{bottom:207.987000px;}
.y117{bottom:208.993500px;}
.y18b{bottom:214.744500px;}
.yd7{bottom:214.878000px;}
.y156{bottom:215.233500px;}
.y98{bottom:218.667000px;}
.y1c1{bottom:221.436000px;}
.yb6{bottom:222.802500px;}
.y132{bottom:223.098000px;}
.y6e{bottom:223.188000px;}
.yf1{bottom:223.788000px;}
.y116{bottom:226.926000px;}
.y1ea{bottom:230.554500px;}
.y18a{bottom:232.677000px;}
.yd6{bottom:232.810500px;}
.y1aa{bottom:233.010000px;}
.y155{bottom:233.166000px;}
.y97{bottom:236.599500px;}
.yb5{bottom:240.735000px;}
.y6d{bottom:241.120500px;}
.yf0{bottom:241.720500px;}
.y1e9{bottom:244.003500px;}
.y115{bottom:244.858500px;}
.y20{bottom:245.358000px;}
.y170{bottom:249.199500px;}
.yd5{bottom:250.743000px;}
.y1c0{bottom:251.847000px;}
.y96{bottom:254.533500px;}
.y1e8{bottom:257.452500px;}
.y48{bottom:257.932500px;}
.yb4{bottom:258.669000px;}
.y6c{bottom:259.053000px;}
.yef{bottom:259.653000px;}
.y189{bottom:260.697000px;}
.y114{bottom:262.791000px;}
.y1f{bottom:263.895000px;}
.yd4{bottom:268.675500px;}
.y95{bottom:272.466000px;}
.y1e{bottom:274.269000px;}
.y131{bottom:274.829377px;}
.y47{bottom:275.865000px;}
.yb3{bottom:276.601500px;}
.y6b{bottom:276.987000px;}
.y154{bottom:280.585500px;}
.y113{bottom:280.723500px;}
.y1e7{bottom:282.228000px;}
.y1a9{bottom:284.213683px;}
.yd3{bottom:286.609500px;}
.yee{bottom:287.673000px;}
.y94{bottom:290.398500px;}
.y1d{bottom:292.804500px;}
.y46{bottom:293.797500px;}
.y1bf{bottom:294.213000px;}
.yb2{bottom:294.534000px;}
.y6a{bottom:294.919500px;}
.y1e6{bottom:295.678500px;}
.y112{bottom:298.657500px;}
.y188{bottom:299.527500px;}
.y16f{bottom:300.930877px;}
.y130{bottom:304.338023px;}
.yd2{bottom:304.542000px;}
.y93{bottom:308.331000px;}
.y45{bottom:311.730000px;}
.y1a8{bottom:312.136558px;}
.y69{bottom:312.852000px;}
.y190{bottom:316.590000px;}
.y187{bottom:317.460000px;}
.y1e5{bottom:320.454000px;}
.yd1{bottom:322.474500px;}
.y92{bottom:326.263500px;}
.y111{bottom:326.677500px;}
.yed{bottom:327.462000px;}
.y44{bottom:329.664000px;}
.y16e{bottom:330.441991px;}
.y68{bottom:330.784500px;}
.y153{bottom:331.765849px;}
.y1e4{bottom:333.903000px;}
.y12f{bottom:334.831525px;}
.y186{bottom:335.392500px;}
.yd0{bottom:340.407000px;}
.y1a7{bottom:340.989028px;}
.yb1{bottom:341.953500px;}
.y13b{bottom:344.196000px;}
.y91{bottom:344.197500px;}
.y18f{bottom:344.610000px;}
.y1be{bottom:344.649000px;}
.yec{bottom:345.394500px;}
.y1e3{bottom:347.353500px;}
.y43{bottom:347.596500px;}
.y67{bottom:348.717000px;}
.y1c{bottom:353.796000px;}
.ycf{bottom:358.339500px;}
.y152{bottom:359.618250px;}
.y16d{bottom:360.933025px;}
.y90{bottom:362.130000px;}
.yeb{bottom:363.327000px;}
.y12e{bottom:364.340171px;}
.y42{bottom:365.529000px;}
.y110{bottom:366.465000px;}
.y66{bottom:366.649500px;}
.y185{bottom:368.482500px;}
.y1a6{bottom:368.914239px;}
.y1b{bottom:371.728500px;}
.y1e2{bottom:372.129000px;}
.yce{bottom:376.273500px;}
.y1bd{bottom:378.049500px;}
.y8f{bottom:380.062500px;}
.y41{bottom:383.461500px;}
.y10f{bottom:384.397500px;}
.y65{bottom:384.583500px;}
.y1e1{bottom:385.578000px;}
.y151{bottom:387.470650px;}
.y16c{bottom:390.441671px;}
.yb0{bottom:393.455751px;}
.ycd{bottom:394.206000px;}
.y12d{bottom:394.831204px;}
.y1a5{bottom:397.766709px;}
.y13a{bottom:397.995000px;}
.y1e0{bottom:399.027000px;}
.y1a{bottom:400.137000px;}
.y40{bottom:401.394000px;}
.yea{bottom:401.608500px;}
.y10e{bottom:402.330000px;}
.y64{bottom:402.516000px;}
.y8e{bottom:408.082500px;}
.ycc{bottom:412.138500px;}
.y139{bottom:415.927500px;}
.y150{bottom:416.252628px;}
.y19{bottom:418.069500px;}
.y184{bottom:418.742849px;}
.y3f{bottom:419.328000px;}
.y18e{bottom:420.262500px;}
.y10d{bottom:420.264000px;}
.y63{bottom:420.448500px;}
.y16b{bottom:420.935172px;}
.yaf{bottom:422.272920px;}
.y1df{bottom:423.802500px;}
.y1bc{bottom:428.484000px;}
.y138{bottom:433.860000px;}
.y12c{bottom:434.409000px;}
.y18{bottom:436.002000px;}
.y1de{bottom:437.253000px;}
.y3e{bottom:437.260500px;}
.y10c{bottom:438.196500px;}
.y62{bottom:438.381000px;}
.y1a4{bottom:438.699000px;}
.ycb{bottom:440.158500px;}
.y183{bottom:443.842917px;}
.y14f{bottom:444.105029px;}
.y1bb{bottom:446.418000px;}
.y8d{bottom:447.870000px;}
.ye9{bottom:448.421912px;}
.y1dd{bottom:450.702000px;}
.yae{bottom:451.090088px;}
.y137{bottom:451.792500px;}
.y17{bottom:453.934500px;}
.y3d{bottom:455.193000px;}
.y10b{bottom:456.129000px;}
.y61{bottom:456.313500px;}
.y1a3{bottom:456.633000px;}
.y16a{bottom:462.112500px;}
.ye8{bottom:463.175159px;}
.y8c{bottom:465.802500px;}
.y182{bottom:468.940886px;}
.y136{bottom:469.726500px;}
.y16{bottom:471.867000px;}
.y14e{bottom:472.887007px;}
.y3c{bottom:473.125500px;}
.y10a{bottom:474.061500px;}
.y60{bottom:474.246000px;}
.y1a2{bottom:474.565500px;}
.y1dc{bottom:475.477500px;}
.ye7{bottom:477.928406px;}
.y1ba{bottom:479.817000px;}
.yad{bottom:479.907257px;}
.y8b{bottom:483.736500px;}
.y12b{bottom:485.384370px;}
.y135{bottom:487.659000px;}
.y1db{bottom:488.926500px;}
.y15{bottom:489.801000px;}
.y3b{bottom:491.058000px;}
.y109{bottom:491.994000px;}
.y5f{bottom:492.180000px;}
.y1a1{bottom:492.498000px;}
.ye6{bottom:492.681653px;}
.y181{bottom:494.874403px;}
.yca{bottom:499.227000px;}
.y14d{bottom:501.666656px;}
.y8a{bottom:501.669000px;}
.y134{bottom:505.591500px;}
.ye5{bottom:507.436134px;}
.y14{bottom:507.733500px;}
.yac{bottom:508.724426px;}
.y3a{bottom:508.990500px;}
.y108{bottom:509.926500px;}
.y5e{bottom:510.112500px;}
.y1a0{bottom:510.430500px;}
.y169{bottom:512.123920px;}
.y12a{bottom:512.623479px;}
.y1da{bottom:513.702000px;}
.y89{bottom:519.601500px;}
.y180{bottom:519.974471px;}
.ye4{bottom:522.189381px;}
.y13{bottom:525.666000px;}
.y39{bottom:526.924500px;}
.y1d9{bottom:527.152500px;}
.y107{bottom:527.860500px;}
.y5d{bottom:528.045000px;}
.y19f{bottom:528.363000px;}
.y14c{bottom:529.519057px;}
.y1b9{bottom:530.253000px;}
.y133{bottom:533.611500px;}
.y168{bottom:537.284570px;}
.ye3{bottom:537.433786px;}
.y88{bottom:537.534000px;}
.yab{bottom:537.544006px;}
.y129{bottom:539.862588px;}
.y12{bottom:543.598500px;}
.y38{bottom:544.857000px;}
.y106{bottom:545.793000px;}
.y17f{bottom:545.907988px;}
.y5c{bottom:545.977500px;}
.y19e{bottom:546.295500px;}
.y1b8{bottom:548.185500px;}
.yc9{bottom:550.959185px;}
.y1d8{bottom:551.928000px;}
.ye2{bottom:552.188267px;}
.y87{bottom:555.466500px;}
.y14b{bottom:557.371457px;}
.y11{bottom:561.531000px;}
.y167{bottom:561.632602px;}
.y37{bottom:562.789500px;}
.y105{bottom:563.725500px;}
.y5b{bottom:563.910000px;}
.y19d{bottom:564.229500px;}
.y1d7{bottom:565.377000px;}
.yaa{bottom:566.361174px;}
.y128{bottom:567.101696px;}
.ye1{bottom:567.432672px;}
.y17e{bottom:571.005957px;}
.y86{bottom:573.399000px;}
.y10{bottom:579.463500px;}
.yc8{bottom:580.467831px;}
.y36{bottom:580.722000px;}
.y1b7{bottom:581.586000px;}
.y104{bottom:581.658000px;}
.y5a{bottom:581.844000px;}
.ye0{bottom:582.678311px;}
.y14a{bottom:585.226187px;}
.y166{bottom:585.980633px;}
.y1d6{bottom:590.152500px;}
.y85{bottom:591.333000px;}
.y127{bottom:595.249915px;}
.ya9{bottom:596.137710px;}
.y17d{bottom:596.941574px;}
.yf{bottom:597.397500px;}
.ydf{bottom:597.431559px;}
.y35{bottom:598.654500px;}
.y103{bottom:599.590500px;}
.y59{bottom:599.776500px;}
.y1d5{bottom:603.603000px;}
.y84{bottom:609.265500px;}
.y165{bottom:610.328664px;}
.yc7{bottom:610.961333px;}
.y19c{bottom:611.352000px;}
.yde{bottom:612.184806px;}
.y149{bottom:613.078587px;}
.ye{bottom:615.330000px;}
.y34{bottom:616.587000px;}
.y102{bottom:617.523000px;}
.y58{bottom:617.709000px;}
.y126{bottom:622.489024px;}
.ydd{bottom:626.938053px;}
.y83{bottom:627.198000px;}
.y1d4{bottom:628.378500px;}
.y1b6{bottom:632.020500px;}
.yd{bottom:633.262500px;}
.y33{bottom:634.521000px;}
.y164{bottom:634.676695px;}
.y17c{bottom:635.043000px;}
.y101{bottom:635.457000px;}
.y57{bottom:635.641500px;}
.ya8{bottom:638.326500px;}
.y148{bottom:640.930988px;}
.ydc{bottom:641.692534px;}
.y1d3{bottom:641.827500px;}
.y82{bottom:645.130500px;}
.y125{bottom:650.637242px;}
.yc6{bottom:650.790000px;}
.yc{bottom:651.195000px;}
.y32{bottom:652.453500px;}
.y17b{bottom:652.975500px;}
.y100{bottom:653.389500px;}
.y56{bottom:653.574000px;}
.ydb{bottom:656.936939px;}
.y163{bottom:659.837346px;}
.y81{bottom:663.063000px;}
.y19b{bottom:663.084185px;}
.y1b5{bottom:665.421000px;}
.y1d2{bottom:666.603000px;}
.yc5{bottom:668.722500px;}
.y147{bottom:668.783388px;}
.yb{bottom:669.127500px;}
.y31{bottom:670.386000px;}
.y17a{bottom:670.909500px;}
.yff{bottom:671.322000px;}
.y55{bottom:671.506500px;}
.yda{bottom:671.690186px;}
.y124{bottom:678.783182px;}
.y1d1{bottom:680.052000px;}
.y80{bottom:680.995500px;}
.y162{bottom:684.185377px;}
.yd9{bottom:686.935825px;}
.ya{bottom:687.060000px;}
.y30{bottom:688.318500px;}
.ya7{bottom:688.341276px;}
.y179{bottom:688.842000px;}
.yfe{bottom:689.254500px;}
.y54{bottom:689.440500px;}
.y19a{bottom:692.592831px;}
.y146{bottom:697.565367px;}
.y7f{bottom:698.929500px;}
.y1d0{bottom:704.827500px;}
.y9{bottom:704.994000px;}
.y123{bottom:706.024569px;}
.y2f{bottom:706.251000px;}
.y178{bottom:706.774500px;}
.yc4{bottom:707.004000px;}
.yfd{bottom:707.187000px;}
.y53{bottom:707.373000px;}
.y161{bottom:709.346028px;}
.ya6{bottom:712.698274px;}
.y1b4{bottom:715.857000px;}
.y7e{bottom:716.862000px;}
.y1cf{bottom:718.278000px;}
.y8{bottom:722.926500px;}
.y199{bottom:723.086333px;}
.y2e{bottom:724.183500px;}
.y177{bottom:724.707000px;}
.yfc{bottom:725.119500px;}
.y145{bottom:725.417767px;}
.y122{bottom:733.263678px;}
.y1b3{bottom:733.789500px;}
.y7d{bottom:734.794500px;}
.y52{bottom:735.393000px;}
.ya5{bottom:737.055271px;}
.y7{bottom:740.859000px;}
.y2d{bottom:742.117500px;}
.y176{bottom:742.639500px;}
.yfb{bottom:743.053500px;}
.y160{bottom:748.404000px;}
.y1b2{bottom:751.722000px;}
.y7c{bottom:752.727000px;}
.yc3{bottom:753.811031px;}
.y144{bottom:754.199746px;}
.y1ce{bottom:756.502500px;}
.y2c{bottom:760.050000px;}
.y121{bottom:760.502787px;}
.y175{bottom:760.573500px;}
.yfa{bottom:760.986000px;}
.ya4{bottom:761.412269px;}
.y51{bottom:763.413000px;}
.y198{bottom:764.113500px;}
.y6{bottom:767.758500px;}
.yc2{bottom:768.545628px;}
.y1b1{bottom:769.654500px;}
.y7b{bottom:770.659500px;}
.y1f4{bottom:776.637000px;}
.y2b{bottom:777.982500px;}
.y174{bottom:778.506000px;}
.y1cd{bottom:781.278000px;}
.y143{bottom:782.979394px;}
.yc1{bottom:783.281458px;}
.ya3{bottom:785.769266px;}
.y1b0{bottom:787.587000px;}
.y120{bottom:787.741896px;}
.y7a{bottom:788.592000px;}
.y1f3{bottom:790.087500px;}
.y1cc{bottom:794.727000px;}
.y2a{bottom:795.915000px;}
.y173{bottom:796.438500px;}
.yc0{bottom:798.016055px;}
.y50{bottom:799.801500px;}
.y15f{bottom:800.134569px;}
.y79{bottom:806.526000px;}
.yf9{bottom:808.405500px;}
.ya2{bottom:810.128301px;}
.y142{bottom:810.834124px;}
.ybf{bottom:812.750652px;}
.y29{bottom:813.847500px;}
.y172{bottom:814.371000px;}
.y11f{bottom:814.981005px;}
.y197{bottom:815.083642px;}
.y1f2{bottom:815.491500px;}
.y1cb{bottom:819.502500px;}
.y1af{bottom:820.987500px;}
.y78{bottom:824.458500px;}
.ybe{bottom:827.485250px;}
.y1f1{bottom:828.942000px;}
.y15e{bottom:829.643215px;}
.y28{bottom:831.781500px;}
.y171{bottom:832.303500px;}
.y1ca{bottom:832.953000px;}
.ya1{bottom:834.485298px;}
.y141{bottom:838.686525px;}
.ybd{bottom:842.219847px;}
.y11e{bottom:842.220113px;}
.y196{bottom:842.307688px;}
.y77{bottom:842.391000px;}
.y1c9{bottom:846.402000px;}
.y27{bottom:849.714000px;}
.y4f{bottom:850.236000px;}
.ybc{bottom:856.954444px;}
.ya0{bottom:858.842296px;}
.y15d{bottom:860.136717px;}
.yf8{bottom:860.136877px;}
.y76{bottom:860.323500px;}
.y140{bottom:866.538925px;}
.y26{bottom:867.646500px;}
.y5{bottom:867.796500px;}
.y4e{bottom:868.170000px;}
.y1ae{bottom:868.407000px;}
.y11d{bottom:869.461501px;}
.y195{bottom:869.534011px;}
.y1c8{bottom:871.177500px;}
.ybb{bottom:872.180811px;}
.y75{bottom:878.256000px;}
.y1f0{bottom:881.245500px;}
.y9f{bottom:883.199293px;}
.y1c7{bottom:884.628000px;}
.y25{bottom:885.579000px;}
.y4d{bottom:886.102500px;}
.yba{bottom:886.915408px;}
.y15c{bottom:889.645363px;}
.yf7{bottom:889.645523px;}
.y4{bottom:890.959500px;}
.y13f{bottom:894.391326px;}
.y74{bottom:896.188500px;}
.y11c{bottom:896.700610px;}
.y194{bottom:896.758056px;}
.yb9{bottom:902.141775px;}
.y24{bottom:903.511500px;}
.y4c{bottom:904.035000px;}
.y1ef{bottom:906.649500px;}
.y9e{bottom:907.556291px;}
.y1c6{bottom:909.403500px;}
.y3{bottom:914.122500px;}
.y1ee{bottom:920.100000px;}
.y1ad{bottom:920.138217px;}
.y15b{bottom:920.138864px;}
.yf6{bottom:920.139025px;}
.y23{bottom:921.444000px;}
.y4b{bottom:921.967500px;}
.y13e{bottom:923.173304px;}
.y11b{bottom:924.846550px;}
.y193{bottom:924.888431px;}
.y73{bottom:932.055000px;}
.y9d{bottom:932.726207px;}
.y1ed{bottom:933.549000px;}
.y1c5{bottom:934.179000px;}
.y4a{bottom:939.900000px;}
.y1c4{bottom:947.628000px;}
.y22{bottom:949.464000px;}
.y1ac{bottom:949.646863px;}
.y15a{bottom:949.647510px;}
.yf5{bottom:949.647671px;}
.y72{bottom:949.987500px;}
.y13d{bottom:951.025704px;}
.y11a{bottom:952.087937px;}
.y192{bottom:952.114754px;}
.y9c{bottom:957.083204px;}
.y49{bottom:957.832500px;}
.y2{bottom:958.954500px;}
.y71{bottom:967.920000px;}
.y1c3{bottom:972.403500px;}
.y13c{bottom:979.807683px;}
.y1ab{bottom:980.140364px;}
.y159{bottom:980.141012px;}
.yf4{bottom:980.141172px;}
.y119{bottom:980.233877px;}
.y191{bottom:980.245129px;}
.y9b{bottom:982.253120px;}
.y1{bottom:985.852500px;}
.h8{height:24.675533px;}
.h6{height:25.787366px;}
.h1a{height:28.787846px;}
.h1c{height:28.997846px;}
.h1d{height:30.963672px;}
.h3{height:32.804932px;}
.h7{height:32.900573px;}
.h11{height:33.791682px;}
.h13{height:33.834453px;}
.h1b{height:38.495846px;}
.h2{height:41.125613px;}
.hd{height:41.131613px;}
.h4{height:41.484266px;}
.hf{height:41.961802px;}
.hb{height:44.233944px;}
.ha{height:49.781453px;}
.h5{height:52.040387px;}
.hc{height:52.046387px;}
.h16{height:55.838712px;}
.he{height:55.859275px;}
.h17{height:57.558585px;}
.h1{height:59.221114px;}
.h9{height:59.737577px;}
.h18{height:62.434438px;}
.h14{height:62.468983px;}
.h15{height:63.875479px;}
.h19{height:64.037103px;}
.h10{height:66.088037px;}
.h12{height:67.673841px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x15{left:203.722170px;}
.xe{left:205.727138px;}
.x1{left:207.340500px;}
.x7{left:214.045500px;}
.x9{left:216.942000px;}
.xc{left:218.413966px;}
.x1e{left:220.515701px;}
.x8{left:222.172500px;}
.x10{left:227.731220px;}
.x2a{left:233.020500px;}
.x1c{left:236.170500px;}
.x11{left:240.306000px;}
.xb{left:243.145843px;}
.x25{left:244.438560px;}
.x28{left:247.014000px;}
.x1d{left:248.174049px;}
.x21{left:249.244013px;}
.x17{left:251.454000px;}
.x1b{left:253.074000px;}
.xf{left:256.882500px;}
.x24{left:264.372000px;}
.x2{left:266.614500px;}
.x16{left:268.359000px;}
.x22{left:269.680500px;}
.x4{left:293.067000px;}
.x5{left:307.503000px;}
.x1a{left:328.582582px;}
.x13{left:331.454058px;}
.x14{left:333.056315px;}
.x19{left:343.564131px;}
.x12{left:346.415436px;}
.x18{left:347.970978px;}
.x3{left:405.975000px;}
.xd{left:411.646146px;}
.x2b{left:420.838500px;}
.x23{left:423.947173px;}
.x27{left:443.243181px;}
.x26{left:449.416848px;}
.x20{left:450.963000px;}
.x2c{left:453.132000px;}
.xa{left:454.699500px;}
.x29{left:458.035276px;}
.x1f{left:459.313028px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.629333pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.003733pt;}
.ls1a{letter-spacing:2.155814pt;}
.ls27{letter-spacing:2.158542pt;}
.ls2a{letter-spacing:2.162930pt;}
.ls17{letter-spacing:2.165467pt;}
.ls24{letter-spacing:2.168208pt;}
.ls16{letter-spacing:2.182118pt;}
.ls29{letter-spacing:2.182266pt;}
.ls18{letter-spacing:2.182925pt;}
.ls19{letter-spacing:2.183889pt;}
.ls23{letter-spacing:2.184880pt;}
.ls25{letter-spacing:2.185688pt;}
.ls26{letter-spacing:2.186653pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658321pt;}
.ls50{letter-spacing:3.562352pt;}
.ls12{letter-spacing:3.563664pt;}
.ls4d{letter-spacing:3.578304pt;}
.lsd{letter-spacing:3.579621pt;}
.ls10{letter-spacing:3.603585pt;}
.ls4c{letter-spacing:3.605818pt;}
.lsc{letter-spacing:3.607146pt;}
.ls4e{letter-spacing:3.607152pt;}
.lsf{letter-spacing:3.608480pt;}
.ls4f{letter-spacing:3.608745pt;}
.ls11{letter-spacing:3.610074pt;}
.lse{letter-spacing:3.610829pt;}
.ls56{letter-spacing:3.679539pt;}
.ls53{letter-spacing:3.688518pt;}
.ls55{letter-spacing:3.712433pt;}
.ls52{letter-spacing:3.716880pt;}
.ls54{letter-spacing:3.718255pt;}
.ls38{letter-spacing:3.985344pt;}
.ls5f{letter-spacing:3.991237pt;}
.ls5c{letter-spacing:4.000977pt;}
.ls35{letter-spacing:4.003190pt;}
.ls5e{letter-spacing:4.026917pt;}
.ls5b{letter-spacing:4.031741pt;}
.ls5d{letter-spacing:4.033232pt;}
.ls34{letter-spacing:4.033972pt;}
.ls36{letter-spacing:4.035464pt;}
.ls37{letter-spacing:4.037246pt;}
.ls3a{letter-spacing:4.042073pt;}
.ls46{letter-spacing:4.075075pt;}
.ls65{letter-spacing:4.085386pt;}
.ls43{letter-spacing:4.093323pt;}
.ls62{letter-spacing:4.103680pt;}
.ls42{letter-spacing:4.124797pt;}
.ls44{letter-spacing:4.126323pt;}
.ls45{letter-spacing:4.128145pt;}
.ls61{letter-spacing:4.135234pt;}
.ls63{letter-spacing:4.136764pt;}
.ls64{letter-spacing:4.138591pt;}
.ls15{letter-spacing:4.235110pt;}
.ls14{letter-spacing:4.268163pt;}
.ls20{letter-spacing:4.336732pt;}
.ls1f{letter-spacing:4.370579pt;}
.ls6{letter-spacing:4.407566pt;}
.ls3{letter-spacing:4.408530pt;}
.ls22{letter-spacing:4.412899pt;}
.ls2f{letter-spacing:4.413863pt;}
.ls69{letter-spacing:4.572714pt;}
.ls5{letter-spacing:6.535870pt;}
.ls7{letter-spacing:6.536174pt;}
.ls1d{letter-spacing:8.811145pt;}
.ls2d{letter-spacing:8.816479pt;}
.ls3f{letter-spacing:9.397812pt;}
.ls1e{letter-spacing:10.053812pt;}
.ls2e{letter-spacing:10.064479pt;}
.ls4b{letter-spacing:10.094400pt;}
.ls1c{letter-spacing:10.099733pt;}
.ls2c{letter-spacing:10.105067pt;}
.ls3c{letter-spacing:10.315145pt;}
.lsa{letter-spacing:10.421812pt;}
.ls40{letter-spacing:10.688479pt;}
.ls41{letter-spacing:10.729067pt;}
.ls3e{letter-spacing:10.734400pt;}
.ls4{letter-spacing:11.463200pt;}
.ls59{letter-spacing:11.600479pt;}
.ls3d{letter-spacing:11.680479pt;}
.ls3b{letter-spacing:11.721067pt;}
.ls67{letter-spacing:11.760479pt;}
.ls32{letter-spacing:11.765812pt;}
.lsb{letter-spacing:11.792479pt;}
.ls9{letter-spacing:11.838400pt;}
.ls1b{letter-spacing:13.060254pt;}
.ls5a{letter-spacing:13.061812pt;}
.ls28{letter-spacing:13.076784pt;}
.ls2b{letter-spacing:13.081172pt;}
.ls58{letter-spacing:13.107733pt;}
.ls33{letter-spacing:13.237812pt;}
.ls68{letter-spacing:13.243145pt;}
.ls31{letter-spacing:13.283733pt;}
.ls49{letter-spacing:17.120479pt;}
.ls30{letter-spacing:20.609867pt;}
.ls21{letter-spacing:20.737867pt;}
.ls51{letter-spacing:21.581279pt;}
.ls13{letter-spacing:21.589227pt;}
.ls57{letter-spacing:22.253463pt;}
.ls4a{letter-spacing:22.880479pt;}
.ls48{letter-spacing:22.921067pt;}
.ls60{letter-spacing:24.138579pt;}
.ls39{letter-spacing:24.143834pt;}
.ls47{letter-spacing:24.687435pt;}
.ls66{letter-spacing:24.749901pt;}
.ws116{word-spacing:-24.820583pt;}
.wsda{word-spacing:-24.757938pt;}
.wsc4{word-spacing:-24.212784pt;}
.ws10c{word-spacing:-24.199395pt;}
.wsf8{word-spacing:-22.309529pt;}
.ws79{word-spacing:-21.650882pt;}
.wsea{word-spacing:-21.642912pt;}
.ws11b{word-spacing:-19.128267pt;}
.ws9{word-spacing:-13.283467pt;}
.wsa7{word-spacing:-13.114129pt;}
.ws8c{word-spacing:-13.097551pt;}
.ws133{word-spacing:-9.298400pt;}
.ws115{word-spacing:-4.140014pt;}
.ws113{word-spacing:-4.136764pt;}
.ws111{word-spacing:-4.131710pt;}
.wsd6{word-spacing:-4.128783pt;}
.wsd8{word-spacing:-4.126323pt;}
.wsdc{word-spacing:-4.120809pt;}
.wsc3{word-spacing:-4.040300pt;}
.wsc1{word-spacing:-4.035464pt;}
.wsc6{word-spacing:-4.034782pt;}
.ws10a{word-spacing:-4.033232pt;}
.wsbf{word-spacing:-4.032199pt;}
.wsf4{word-spacing:-3.719398pt;}
.wsf6{word-spacing:-3.718255pt;}
.wse9{word-spacing:-3.612162pt;}
.ws77{word-spacing:-3.608480pt;}
.wse7{word-spacing:-3.607152pt;}
.wse5{word-spacing:-3.604920pt;}
.ws8f{word-spacing:-3.189463pt;}
.ws90{word-spacing:-3.188032pt;}
.wsab{word-spacing:-3.187437pt;}
.ws1c{word-spacing:-3.081764pt;}
.wsa0{word-spacing:-2.975497pt;}
.ws3e{word-spacing:-2.709827pt;}
.ws50{word-spacing:-2.656693pt;}
.wsce{word-spacing:-2.552278pt;}
.ws86{word-spacing:-2.550426pt;}
.ws67{word-spacing:-2.497292pt;}
.ws8e{word-spacing:-2.337890pt;}
.ws2f{word-spacing:-2.299819pt;}
.ws2e{word-spacing:-2.284756pt;}
.wsa9{word-spacing:-2.188214pt;}
.wsa6{word-spacing:-2.187406pt;}
.wsa4{word-spacing:-2.185688pt;}
.wsaa{word-spacing:-2.183826pt;}
.ws88{word-spacing:-2.183064pt;}
.wsa2{word-spacing:-2.183018pt;}
.ws8a{word-spacing:-2.182925pt;}
.ws126{word-spacing:-2.120035pt;}
.ws4{word-spacing:-1.965953pt;}
.ws128{word-spacing:-1.934067pt;}
.ws69{word-spacing:-1.912819pt;}
.ws23{word-spacing:-1.859685pt;}
.ws30{word-spacing:-1.806551pt;}
.ws84{word-spacing:-1.700284pt;}
.ws33{word-spacing:-1.594016pt;}
.wscd{word-spacing:-1.590791pt;}
.ws2{word-spacing:-1.540882pt;}
.ws6c{word-spacing:-1.487748pt;}
.ws6b{word-spacing:-1.468244pt;}
.ws136{word-spacing:-1.450550pt;}
.ws68{word-spacing:-1.434614pt;}
.wsee{word-spacing:-1.381481pt;}
.ws120{word-spacing:-1.338970pt;}
.ws13b{word-spacing:-1.264582pt;}
.wsd4{word-spacing:-1.222079pt;}
.ws3a{word-spacing:-1.115811pt;}
.ws27{word-spacing:-1.009543pt;}
.ws122{word-spacing:-1.004227pt;}
.ws26{word-spacing:-0.956410pt;}
.ws4e{word-spacing:-0.939141pt;}
.ws4f{word-spacing:-0.903276pt;}
.ws32{word-spacing:-0.850142pt;}
.ws3d{word-spacing:-0.797008pt;}
.ws123{word-spacing:-0.706678pt;}
.ws37{word-spacing:-0.637606pt;}
.ws5{word-spacing:-0.584473pt;}
.ws85{word-spacing:-0.531339pt;}
.ws13a{word-spacing:-0.520710pt;}
.ws12d{word-spacing:-0.483517pt;}
.ws9f{word-spacing:-0.478205pt;}
.ws10f{word-spacing:-0.425071pt;}
.ws71{word-spacing:-0.371937pt;}
.ws92{word-spacing:-0.318803pt;}
.wsfd{word-spacing:-0.265669pt;}
.ws125{word-spacing:-0.260355pt;}
.ws5b{word-spacing:-0.212535pt;}
.wsfb{word-spacing:-0.193879pt;}
.wsfa{word-spacing:-0.193605pt;}
.ws9e{word-spacing:-0.159402pt;}
.ws40{word-spacing:-0.053134pt;}
.wsde{word-spacing:-0.011879pt;}
.wsc7{word-spacing:-0.011617pt;}
.ws112{word-spacing:-0.004264pt;}
.wsdd{word-spacing:-0.004254pt;}
.wsc0{word-spacing:-0.004160pt;}
.ws109{word-spacing:-0.004158pt;}
.wsf5{word-spacing:-0.003833pt;}
.wse6{word-spacing:-0.003718pt;}
.ws114{word-spacing:-0.003604pt;}
.wsd9{word-spacing:-0.003595pt;}
.wsc2{word-spacing:-0.003516pt;}
.ws10b{word-spacing:-0.003514pt;}
.wsf7{word-spacing:-0.003240pt;}
.ws78{word-spacing:-0.003144pt;}
.wse8{word-spacing:-0.003143pt;}
.wsa3{word-spacing:-0.002253pt;}
.ws89{word-spacing:-0.002250pt;}
.wsa5{word-spacing:-0.001904pt;}
.ws8b{word-spacing:-0.001902pt;}
.ws104{word-spacing:-0.001007pt;}
.ws0{word-spacing:0.000000pt;}
.wsba{word-spacing:0.001897pt;}
.wsd7{word-spacing:0.004030pt;}
.wsa1{word-spacing:0.005780pt;}
.wse4{word-spacing:0.009540pt;}
.ws75{word-spacing:0.009543pt;}
.wsf3{word-spacing:0.009834pt;}
.ws87{word-spacing:0.010155pt;}
.ws107{word-spacing:0.010667pt;}
.wsbe{word-spacing:0.010673pt;}
.wsd5{word-spacing:0.010913pt;}
.ws110{word-spacing:0.010940pt;}
.ws24{word-spacing:0.053134pt;}
.ws62{word-spacing:0.106268pt;}
.ws134{word-spacing:0.111581pt;}
.ws3f{word-spacing:0.212535pt;}
.wsb6{word-spacing:0.265669pt;}
.ws49{word-spacing:0.318803pt;}
.ws19{word-spacing:0.340058pt;}
.wse{word-spacing:0.371937pt;}
.ws65{word-spacing:0.478205pt;}
.wsb2{word-spacing:0.531339pt;}
.ws25{word-spacing:0.584473pt;}
.ws13e{word-spacing:0.632291pt;}
.ws5a{word-spacing:0.637606pt;}
.ws94{word-spacing:0.690740pt;}
.wsbc{word-spacing:0.743874pt;}
.ws5e{word-spacing:0.797008pt;}
.ws36{word-spacing:0.850142pt;}
.ws63{word-spacing:0.903276pt;}
.ws46{word-spacing:0.956410pt;}
.ws52{word-spacing:1.009543pt;}
.ws66{word-spacing:1.062677pt;}
.ws28{word-spacing:1.115811pt;}
.ws39{word-spacing:1.168945pt;}
.ws54{word-spacing:1.275213pt;}
.ws11c{word-spacing:1.301776pt;}
.ws29{word-spacing:1.328347pt;}
.ws12c{word-spacing:1.413357pt;}
.ws12a{word-spacing:1.450550pt;}
.ws61{word-spacing:1.487748pt;}
.ws137{word-spacing:1.562131pt;}
.ws31{word-spacing:1.594016pt;}
.ws121{word-spacing:1.599325pt;}
.ws9a{word-spacing:1.647150pt;}
.ws51{word-spacing:1.700284pt;}
.ws4d{word-spacing:1.753418pt;}
.ws11d{word-spacing:1.785293pt;}
.ws3b{word-spacing:1.806551pt;}
.wsd2{word-spacing:1.859685pt;}
.ws4c{word-spacing:1.965953pt;}
.ws12e{word-spacing:1.971261pt;}
.ws21{word-spacing:2.019087pt;}
.ws11e{word-spacing:2.045648pt;}
.ws5f{word-spacing:2.072221pt;}
.wsd1{word-spacing:2.125355pt;}
.ws44{word-spacing:2.178489pt;}
.ws132{word-spacing:2.194422pt;}
.ws139{word-spacing:2.231616pt;}
.ws2d{word-spacing:2.231622pt;}
.ws12f{word-spacing:2.268810pt;}
.ws83{word-spacing:2.284756pt;}
.ws105{word-spacing:2.337890pt;}
.ws1d{word-spacing:2.391024pt;}
.ws13d{word-spacing:2.417584pt;}
.wsfc{word-spacing:2.497292pt;}
.ws135{word-spacing:2.529165pt;}
.ws103{word-spacing:2.550426pt;}
.ws22{word-spacing:2.603559pt;}
.ws35{word-spacing:2.656693pt;}
.ws5d{word-spacing:2.709827pt;}
.ws10{word-spacing:2.816095pt;}
.ws6{word-spacing:2.869229pt;}
.ws9d{word-spacing:2.922363pt;}
.ws129{word-spacing:2.938294pt;}
.ws34{word-spacing:2.975497pt;}
.ws58{word-spacing:3.028630pt;}
.ws12b{word-spacing:3.049875pt;}
.ws5c{word-spacing:3.081764pt;}
.ws127{word-spacing:3.124262pt;}
.wsca{word-spacing:3.134898pt;}
.wsbb{word-spacing:3.188032pt;}
.ws13c{word-spacing:3.198650pt;}
.ws98{word-spacing:3.241166pt;}
.ws42{word-spacing:3.294300pt;}
.wsf2{word-spacing:3.400567pt;}
.ws124{word-spacing:3.421811pt;}
.ws3{word-spacing:3.453701pt;}
.ws3c{word-spacing:3.506835pt;}
.wsb9{word-spacing:3.559969pt;}
.ws64{word-spacing:3.613103pt;}
.ws20{word-spacing:3.666237pt;}
.ws10e{word-spacing:3.719371pt;}
.wsf{word-spacing:3.772505pt;}
.wsac{word-spacing:3.825638pt;}
.wscb{word-spacing:3.931906pt;}
.ws12{word-spacing:3.985040pt;}
.ws108{word-spacing:4.032638pt;}
.ws47{word-spacing:4.038174pt;}
.ws53{word-spacing:4.091308pt;}
.ws11f{word-spacing:4.240070pt;}
.ws56{word-spacing:4.250709pt;}
.ws138{word-spacing:4.314458pt;}
.ws70{word-spacing:4.356977pt;}
.wsa{word-spacing:4.410111pt;}
.ws97{word-spacing:4.516379pt;}
.wsd0{word-spacing:4.569513pt;}
.ws15{word-spacing:4.675780pt;}
.wsc{word-spacing:4.888316pt;}
.ws11a{word-spacing:4.941450pt;}
.ws130{word-spacing:4.983942pt;}
.wsb4{word-spacing:4.994583pt;}
.ws100{word-spacing:5.047717pt;}
.wsb8{word-spacing:5.100851pt;}
.ws4b{word-spacing:5.153985pt;}
.ws82{word-spacing:5.207119pt;}
.ws73{word-spacing:5.260253pt;}
.ws99{word-spacing:5.313387pt;}
.ws131{word-spacing:5.318685pt;}
.ws55{word-spacing:5.366521pt;}
.ws6f{word-spacing:5.472788pt;}
.ws45{word-spacing:5.525922pt;}
.ws7{word-spacing:5.579056pt;}
.ws4a{word-spacing:5.738458pt;}
.ws96{word-spacing:5.791591pt;}
.wsad{word-spacing:5.844725pt;}
.wsae{word-spacing:5.862490pt;}
.wsbd{word-spacing:5.897859pt;}
.ws74{word-spacing:5.950993pt;}
.ws93{word-spacing:5.974889pt;}
.ws1e{word-spacing:6.004127pt;}
.ws59{word-spacing:6.057261pt;}
.wsf0{word-spacing:6.110395pt;}
.ws57{word-spacing:6.163529pt;}
.ws48{word-spacing:6.376064pt;}
.wsaf{word-spacing:6.429198pt;}
.ws2a{word-spacing:6.482332pt;}
.wscf{word-spacing:6.535466pt;}
.ws1f{word-spacing:6.641733pt;}
.ws6d{word-spacing:6.694867pt;}
.ws16{word-spacing:6.748001pt;}
.ws43{word-spacing:6.907403pt;}
.ws11{word-spacing:7.013670pt;}
.wsb7{word-spacing:7.066804pt;}
.ws76{word-spacing:7.159243pt;}
.wsb{word-spacing:7.226206pt;}
.wscc{word-spacing:7.279340pt;}
.ws9b{word-spacing:7.332474pt;}
.ws2c{word-spacing:7.438741pt;}
.wsef{word-spacing:7.491875pt;}
.wsd{word-spacing:7.545009pt;}
.ws6a{word-spacing:7.651277pt;}
.ws2b{word-spacing:7.704411pt;}
.wsb5{word-spacing:7.810678pt;}
.ws9c{word-spacing:7.863812pt;}
.ws102{word-spacing:7.916946pt;}
.ws13{word-spacing:7.970080pt;}
.ws60{word-spacing:8.182615pt;}
.ws38{word-spacing:8.554553pt;}
.ws6e{word-spacing:8.607686pt;}
.ws14{word-spacing:8.979623pt;}
.wsdf{word-spacing:9.085891pt;}
.wse0{word-spacing:9.617230pt;}
.ws18{word-spacing:10.579223pt;}
.ws1{word-spacing:10.584293pt;}
.ws7b{word-spacing:14.908919pt;}
.ws1b{word-spacing:15.940267pt;}
.wsf1{word-spacing:16.807081pt;}
.ws72{word-spacing:17.585748pt;}
.ws41{word-spacing:17.943081pt;}
.wsd3{word-spacing:17.948414pt;}
.ws101{word-spacing:18.273748pt;}
.wsb3{word-spacing:18.460414pt;}
.ws95{word-spacing:18.631081pt;}
.ws119{word-spacing:18.759081pt;}
.ws1a{word-spacing:19.128267pt;}
.ws106{word-spacing:21.479081pt;}
.ws8{word-spacing:23.511081pt;}
.ws17{word-spacing:32.892143pt;}
.ws8d{word-spacing:41.475579pt;}
.wsa8{word-spacing:41.528075pt;}
.wseb{word-spacing:68.535887pt;}
.ws7a{word-spacing:68.561125pt;}
.wsf9{word-spacing:70.646842pt;}
.ws10d{word-spacing:76.631416pt;}
.wsc5{word-spacing:76.673817pt;}
.wsdb{word-spacing:78.400136pt;}
.ws117{word-spacing:78.598511pt;}
.wsb1{word-spacing:83.062208pt;}
.ws91{word-spacing:89.357449pt;}
.wsec{word-spacing:390.567244pt;}
.wsc8{word-spacing:434.284196pt;}
.wsb0{word-spacing:525.215455pt;}
.wse2{word-spacing:550.921023pt;}
.wse1{word-spacing:619.032033pt;}
.wse3{word-spacing:759.888051pt;}
.wsff{word-spacing:798.708703pt;}
.wsfe{word-spacing:829.223136pt;}
.wsc9{word-spacing:837.616790pt;}
.wsed{word-spacing:895.847770pt;}
.ws118{word-spacing:900.744068pt;}
.ws7e{word-spacing:1076.620235pt;}
.ws81{word-spacing:1076.705620pt;}
.ws7f{word-spacing:1079.267172pt;}
.ws7d{word-spacing:1124.094329pt;}
.ws80{word-spacing:1143.135197pt;}
.ws7c{word-spacing:1200.001648pt;}
._29{margin-left:-9.477742pt;}
._1a{margin-left:-8.010826pt;}
._52{margin-left:-6.883199pt;}
._7{margin-left:-5.950993pt;}
._9{margin-left:-4.675781pt;}
._8{margin-left:-3.772505pt;}
._1{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._18{width:1.501132pt;}
._17{width:3.521886pt;}
._6f{width:4.864637pt;}
._2c{width:9.670363pt;}
._3a{width:11.583182pt;}
._2b{width:12.507708pt;}
._a{width:13.937259pt;}
._10{width:15.068769pt;}
._3{width:16.258963pt;}
._2{width:17.778596pt;}
._13{width:19.478879pt;}
._f{width:21.200413pt;}
._6{width:22.263090pt;}
._d{width:23.697705pt;}
._4{width:25.089821pt;}
._15{width:26.566933pt;}
._16{width:27.735878pt;}
._5{width:29.818735pt;}
._51{width:30.955794pt;}
._12{width:32.677327pt;}
._2a{width:34.005675pt;}
._c{width:36.216048pt;}
._14{width:38.256533pt;}
._e{width:39.542232pt;}
._11{width:41.550684pt;}
._36{width:54.136312pt;}
._35{width:64.483611pt;}
._2d{width:70.595801pt;}
._46{width:73.127317pt;}
._33{width:75.398237pt;}
._3f{width:76.924747pt;}
._47{width:78.135373pt;}
._2f{width:81.466769pt;}
._3d{width:82.414119pt;}
._39{width:85.658218pt;}
._31{width:86.880190pt;}
._45{width:92.498323pt;}
._38{width:94.826271pt;}
._30{width:97.227489pt;}
._41{width:99.798522pt;}
._37{width:102.640910pt;}
._40{width:104.650750pt;}
._34{width:105.740897pt;}
._43{width:108.324632pt;}
._3c{width:110.726963pt;}
._32{width:112.988209pt;}
._3e{width:115.579191pt;}
._1c{width:116.626083pt;}
._24{width:119.036142pt;}
._69{width:120.173997pt;}
._42{width:121.847209pt;}
._44{width:124.059661pt;}
._4d{width:130.264779pt;}
._70{width:131.210457pt;}
._59{width:132.962293pt;}
._22{width:134.668484pt;}
._6d{width:138.765271pt;}
._67{width:148.614660pt;}
._49{width:150.603518pt;}
._58{width:153.994373pt;}
._20{width:156.752384pt;}
._63{width:162.682553pt;}
._65{width:166.650420pt;}
._26{width:169.438991pt;}
._55{width:174.625987pt;}
._5f{width:175.591970pt;}
._74{width:177.319532pt;}
._73{width:178.287812pt;}
._4c{width:182.160847pt;}
._53{width:186.344744pt;}
._5e{width:188.407906pt;}
._27{width:190.888607pt;}
._23{width:192.837187pt;}
._5c{width:195.422655pt;}
._4e{width:202.338167pt;}
._1b{width:204.889511pt;}
._72{width:207.251864pt;}
._5d{width:209.039521pt;}
._71{width:211.706319pt;}
._5a{width:216.646936pt;}
._1e{width:220.911163pt;}
._4b{width:222.515487pt;}
._61{width:227.442921pt;}
._60{width:229.671135pt;}
._57{width:231.981876pt;}
._56{width:236.685884pt;}
._6a{width:239.901803pt;}
._4a{width:242.692807pt;}
._6e{width:243.748673pt;}
._5b{width:250.302750pt;}
._50{width:251.570828pt;}
._54{width:252.613491pt;}
._6b{width:259.097239pt;}
._48{width:262.708709pt;}
._4f{width:271.748148pt;}
._66{width:274.166117pt;}
._62{width:284.315716pt;}
._6c{width:287.103525pt;}
._64{width:292.201876pt;}
._1d{width:295.967553pt;}
._19{width:306.071298pt;}
._68{width:310.244278pt;}
._1f{width:314.009955pt;}
._25{width:332.052356pt;}
._28{width:350.094757pt;}
._21{width:404.221962pt;}
._3b{width:535.403894pt;}
._2e{width:539.440776pt;}
._b{width:1019.875243pt;}
.fs4{font-size:31.880533pt;}
.fsb{font-size:34.926891pt;}
.fsf{font-size:34.971099pt;}
.fs1c{font-size:37.193600pt;}
.fs3{font-size:39.318933pt;}
.fs2{font-size:42.507200pt;}
.fsa{font-size:43.658504pt;}
.fse{font-size:43.713763pt;}
.fs1{font-size:53.133867pt;}
.fs15{font-size:57.714576pt;}
.fs7{font-size:57.735829pt;}
.fs17{font-size:59.492227pt;}
.fs5{font-size:63.761067pt;}
.fs19{font-size:64.531881pt;}
.fs11{font-size:64.567587pt;}
.fs13{font-size:66.021333pt;}
.fs1b{font-size:66.188386pt;}
.fs9{font-size:68.308220pt;}
.fsd{font-size:69.947298pt;}
.fs14{font-size:72.143039pt;}
.fs6{font-size:72.169606pt;}
.fs16{font-size:74.365097pt;}
.fs0{font-size:76.513067pt;}
.fs18{font-size:80.664648pt;}
.fs10{font-size:80.709281pt;}
.fs12{font-size:82.526459pt;}
.fs1a{font-size:82.735275pt;}
.fs8{font-size:85.385061pt;}
.fsc{font-size:87.433903pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:119.153333pt;}
.y18d{bottom:159.004000pt;}
.y158{bottom:159.437333pt;}
.y9a{bottom:162.490667pt;}
.yb8{bottom:166.166667pt;}
.y70{bottom:166.509333pt;}
.yf3{bottom:167.042667pt;}
.y118{bottom:169.832000pt;}
.y1ec{bottom:170.958667pt;}
.y18c{bottom:174.944000pt;}
.yd8{bottom:175.062667pt;}
.y157{bottom:175.378667pt;}
.y99{bottom:178.430667pt;}
.yb7{bottom:182.106667pt;}
.y6f{bottom:182.449333pt;}
.y1eb{bottom:182.914667pt;}
.yf2{bottom:182.982667pt;}
.y1c2{bottom:184.877333pt;}
.y117{bottom:185.772000pt;}
.y18b{bottom:190.884000pt;}
.yd7{bottom:191.002667pt;}
.y156{bottom:191.318667pt;}
.y98{bottom:194.370667pt;}
.y1c1{bottom:196.832000pt;}
.yb6{bottom:198.046667pt;}
.y132{bottom:198.309333pt;}
.y6e{bottom:198.389333pt;}
.yf1{bottom:198.922667pt;}
.y116{bottom:201.712000pt;}
.y1ea{bottom:204.937333pt;}
.y18a{bottom:206.824000pt;}
.yd6{bottom:206.942667pt;}
.y1aa{bottom:207.120000pt;}
.y155{bottom:207.258667pt;}
.y97{bottom:210.310667pt;}
.yb5{bottom:213.986667pt;}
.y6d{bottom:214.329333pt;}
.yf0{bottom:214.862667pt;}
.y1e9{bottom:216.892000pt;}
.y115{bottom:217.652000pt;}
.y20{bottom:218.096000pt;}
.y170{bottom:221.510667pt;}
.yd5{bottom:222.882667pt;}
.y1c0{bottom:223.864000pt;}
.y96{bottom:226.252000pt;}
.y1e8{bottom:228.846667pt;}
.y48{bottom:229.273333pt;}
.yb4{bottom:229.928000pt;}
.y6c{bottom:230.269333pt;}
.yef{bottom:230.802667pt;}
.y189{bottom:231.730667pt;}
.y114{bottom:233.592000pt;}
.y1f{bottom:234.573333pt;}
.yd4{bottom:238.822667pt;}
.y95{bottom:242.192000pt;}
.y1e{bottom:243.794667pt;}
.y131{bottom:244.292779pt;}
.y47{bottom:245.213333pt;}
.yb3{bottom:245.868000pt;}
.y6b{bottom:246.210667pt;}
.y154{bottom:249.409333pt;}
.y113{bottom:249.532000pt;}
.y1e7{bottom:250.869333pt;}
.y1a9{bottom:252.634385pt;}
.yd3{bottom:254.764000pt;}
.yee{bottom:255.709333pt;}
.y94{bottom:258.132000pt;}
.y1d{bottom:260.270667pt;}
.y46{bottom:261.153333pt;}
.y1bf{bottom:261.522667pt;}
.yb2{bottom:261.808000pt;}
.y6a{bottom:262.150667pt;}
.y1e6{bottom:262.825333pt;}
.y112{bottom:265.473333pt;}
.y188{bottom:266.246667pt;}
.y16f{bottom:267.494113pt;}
.y130{bottom:270.522687pt;}
.yd2{bottom:270.704000pt;}
.y93{bottom:274.072000pt;}
.y45{bottom:277.093333pt;}
.y1a8{bottom:277.454719pt;}
.y69{bottom:278.090667pt;}
.y190{bottom:281.413333pt;}
.y187{bottom:282.186667pt;}
.y1e5{bottom:284.848000pt;}
.yd1{bottom:286.644000pt;}
.y92{bottom:290.012000pt;}
.y111{bottom:290.380000pt;}
.yed{bottom:291.077333pt;}
.y44{bottom:293.034667pt;}
.y16e{bottom:293.726214pt;}
.y68{bottom:294.030667pt;}
.y153{bottom:294.902977pt;}
.y1e4{bottom:296.802667pt;}
.y12f{bottom:297.628022pt;}
.y186{bottom:298.126667pt;}
.yd0{bottom:302.584000pt;}
.y1a7{bottom:303.101358pt;}
.yb1{bottom:303.958667pt;}
.y13b{bottom:305.952000pt;}
.y91{bottom:305.953333pt;}
.y18f{bottom:306.320000pt;}
.y1be{bottom:306.354667pt;}
.yec{bottom:307.017333pt;}
.y1e3{bottom:308.758667pt;}
.y43{bottom:308.974667pt;}
.y67{bottom:309.970667pt;}
.y1c{bottom:314.485333pt;}
.ycf{bottom:318.524000pt;}
.y152{bottom:319.660666pt;}
.y16d{bottom:320.829355pt;}
.y90{bottom:321.893333pt;}
.yeb{bottom:322.957333pt;}
.y12e{bottom:323.857930pt;}
.y42{bottom:324.914667pt;}
.y110{bottom:325.746667pt;}
.y66{bottom:325.910667pt;}
.y185{bottom:327.540000pt;}
.y1a6{bottom:327.923768pt;}
.y1b{bottom:330.425333pt;}
.y1e2{bottom:330.781333pt;}
.yce{bottom:334.465333pt;}
.y1bd{bottom:336.044000pt;}
.y8f{bottom:337.833333pt;}
.y41{bottom:340.854667pt;}
.y10f{bottom:341.686667pt;}
.y65{bottom:341.852000pt;}
.y1e1{bottom:342.736000pt;}
.y151{bottom:344.418355pt;}
.y16c{bottom:347.059263pt;}
.yb0{bottom:349.738445pt;}
.ycd{bottom:350.405333pt;}
.y12d{bottom:350.961070pt;}
.y1a5{bottom:353.570408pt;}
.y13a{bottom:353.773333pt;}
.y1e0{bottom:354.690667pt;}
.y1a{bottom:355.677333pt;}
.y40{bottom:356.794667pt;}
.yea{bottom:356.985333pt;}
.y10e{bottom:357.626667pt;}
.y64{bottom:357.792000pt;}
.y8e{bottom:362.740000pt;}
.ycc{bottom:366.345333pt;}
.y139{bottom:369.713333pt;}
.y150{bottom:370.002336pt;}
.y19{bottom:371.617333pt;}
.y184{bottom:372.215866pt;}
.y3f{bottom:372.736000pt;}
.y18e{bottom:373.566667pt;}
.y10d{bottom:373.568000pt;}
.y63{bottom:373.732000pt;}
.y16b{bottom:374.164598pt;}
.yaf{bottom:375.353706pt;}
.y1df{bottom:376.713333pt;}
.y1bc{bottom:380.874667pt;}
.y138{bottom:385.653333pt;}
.y12c{bottom:386.141333pt;}
.y18{bottom:387.557333pt;}
.y1de{bottom:388.669333pt;}
.y3e{bottom:388.676000pt;}
.y10c{bottom:389.508000pt;}
.y62{bottom:389.672000pt;}
.y1a4{bottom:389.954667pt;}
.ycb{bottom:391.252000pt;}
.y183{bottom:394.527037pt;}
.y14f{bottom:394.760026pt;}
.y1bb{bottom:396.816000pt;}
.y8d{bottom:398.106667pt;}
.ye9{bottom:398.597255pt;}
.y1dd{bottom:400.624000pt;}
.yae{bottom:400.968968pt;}
.y137{bottom:401.593333pt;}
.y17{bottom:403.497333pt;}
.y3d{bottom:404.616000pt;}
.y10b{bottom:405.448000pt;}
.y61{bottom:405.612000pt;}
.y1a3{bottom:405.896000pt;}
.y16a{bottom:410.766667pt;}
.ye8{bottom:411.711252pt;}
.y8c{bottom:414.046667pt;}
.y182{bottom:416.836343pt;}
.y136{bottom:417.534667pt;}
.y16{bottom:419.437333pt;}
.y14e{bottom:420.344007pt;}
.y3c{bottom:420.556000pt;}
.y10a{bottom:421.388000pt;}
.y60{bottom:421.552000pt;}
.y1a2{bottom:421.836000pt;}
.y1dc{bottom:422.646667pt;}
.ye7{bottom:424.825250pt;}
.y1ba{bottom:426.504000pt;}
.yad{bottom:426.584229pt;}
.y8b{bottom:429.988000pt;}
.y12b{bottom:431.452773pt;}
.y135{bottom:433.474667pt;}
.y1db{bottom:434.601333pt;}
.y15{bottom:435.378667pt;}
.y3b{bottom:436.496000pt;}
.y109{bottom:437.328000pt;}
.y5f{bottom:437.493333pt;}
.y1a1{bottom:437.776000pt;}
.ye6{bottom:437.939247pt;}
.y181{bottom:439.888358pt;}
.yca{bottom:443.757333pt;}
.y14d{bottom:445.925917pt;}
.y8a{bottom:445.928000pt;}
.y134{bottom:449.414667pt;}
.ye5{bottom:451.054342pt;}
.y14{bottom:451.318667pt;}
.yac{bottom:452.199490pt;}
.y3a{bottom:452.436000pt;}
.y108{bottom:453.268000pt;}
.y5e{bottom:453.433333pt;}
.y1a0{bottom:453.716000pt;}
.y169{bottom:455.221262pt;}
.y12a{bottom:455.665314pt;}
.y1da{bottom:456.624000pt;}
.y89{bottom:461.868000pt;}
.y180{bottom:462.199530pt;}
.ye4{bottom:464.168339pt;}
.y13{bottom:467.258667pt;}
.y39{bottom:468.377333pt;}
.y1d9{bottom:468.580000pt;}
.y107{bottom:469.209333pt;}
.y5d{bottom:469.373333pt;}
.y19f{bottom:469.656000pt;}
.y14c{bottom:470.683606pt;}
.y1b9{bottom:471.336000pt;}
.y133{bottom:474.321333pt;}
.y168{bottom:477.586285pt;}
.ye3{bottom:477.718921pt;}
.y88{bottom:477.808000pt;}
.yab{bottom:477.816894pt;}
.y129{bottom:479.877856pt;}
.y12{bottom:483.198667pt;}
.y38{bottom:484.317333pt;}
.y106{bottom:485.149333pt;}
.y17f{bottom:485.251545pt;}
.y5c{bottom:485.313333pt;}
.y19e{bottom:485.596000pt;}
.y1b8{bottom:487.276000pt;}
.yc9{bottom:489.741498pt;}
.y1d8{bottom:490.602667pt;}
.ye2{bottom:490.834016pt;}
.y87{bottom:493.748000pt;}
.y14b{bottom:495.441295pt;}
.y11{bottom:499.138667pt;}
.y167{bottom:499.228979pt;}
.y37{bottom:500.257333pt;}
.y105{bottom:501.089333pt;}
.y5b{bottom:501.253333pt;}
.y19d{bottom:501.537333pt;}
.y1d7{bottom:502.557333pt;}
.yaa{bottom:503.432155pt;}
.y128{bottom:504.090397pt;}
.ye1{bottom:504.384598pt;}
.y17e{bottom:507.560851pt;}
.y86{bottom:509.688000pt;}
.y10{bottom:515.078667pt;}
.yc8{bottom:515.971405pt;}
.y36{bottom:516.197333pt;}
.y1b7{bottom:516.965333pt;}
.y104{bottom:517.029333pt;}
.y5a{bottom:517.194667pt;}
.ye0{bottom:517.936277pt;}
.y14a{bottom:520.201055pt;}
.y166{bottom:520.871674pt;}
.y1d6{bottom:524.580000pt;}
.y85{bottom:525.629333pt;}
.y127{bottom:529.111035pt;}
.ya9{bottom:529.900187pt;}
.y17d{bottom:530.614732pt;}
.yf{bottom:531.020000pt;}
.ydf{bottom:531.050274pt;}
.y35{bottom:532.137333pt;}
.y103{bottom:532.969333pt;}
.y59{bottom:533.134667pt;}
.y1d5{bottom:536.536000pt;}
.y84{bottom:541.569333pt;}
.y165{bottom:542.514368pt;}
.yc7{bottom:543.076740pt;}
.y19c{bottom:543.424000pt;}
.yde{bottom:544.164272pt;}
.y149{bottom:544.958744pt;}
.ye{bottom:546.960000pt;}
.y34{bottom:548.077333pt;}
.y102{bottom:548.909333pt;}
.y58{bottom:549.074667pt;}
.y126{bottom:553.323577pt;}
.ydd{bottom:557.278269pt;}
.y83{bottom:557.509333pt;}
.y1d4{bottom:558.558667pt;}
.y1b6{bottom:561.796000pt;}
.yd{bottom:562.900000pt;}
.y33{bottom:564.018667pt;}
.y164{bottom:564.157062pt;}
.y17c{bottom:564.482667pt;}
.y101{bottom:564.850667pt;}
.y57{bottom:565.014667pt;}
.ya8{bottom:567.401333pt;}
.y148{bottom:569.716434pt;}
.ydc{bottom:570.393363pt;}
.y1d3{bottom:570.513333pt;}
.y82{bottom:573.449333pt;}
.y125{bottom:578.344215pt;}
.yc6{bottom:578.480000pt;}
.yc{bottom:578.840000pt;}
.y32{bottom:579.958667pt;}
.y17b{bottom:580.422667pt;}
.y100{bottom:580.790667pt;}
.y56{bottom:580.954667pt;}
.ydb{bottom:583.943946pt;}
.y163{bottom:586.522085pt;}
.y81{bottom:589.389333pt;}
.y19b{bottom:589.408164pt;}
.y1b5{bottom:591.485333pt;}
.y1d2{bottom:592.536000pt;}
.yc5{bottom:594.420000pt;}
.y147{bottom:594.474123pt;}
.yb{bottom:594.780000pt;}
.y31{bottom:595.898667pt;}
.y17a{bottom:596.364000pt;}
.yff{bottom:596.730667pt;}
.y55{bottom:596.894667pt;}
.yda{bottom:597.057943pt;}
.y124{bottom:603.362828pt;}
.y1d1{bottom:604.490667pt;}
.y80{bottom:605.329333pt;}
.y162{bottom:608.164780pt;}
.yd9{bottom:610.609622pt;}
.ya{bottom:610.720000pt;}
.y30{bottom:611.838667pt;}
.ya7{bottom:611.858912pt;}
.y179{bottom:612.304000pt;}
.yfe{bottom:612.670667pt;}
.y54{bottom:612.836000pt;}
.y19a{bottom:615.638072pt;}
.y146{bottom:620.058104pt;}
.y7f{bottom:621.270667pt;}
.y1d0{bottom:626.513333pt;}
.y9{bottom:626.661333pt;}
.y123{bottom:627.577395pt;}
.y2f{bottom:627.778667pt;}
.y178{bottom:628.244000pt;}
.yc4{bottom:628.448000pt;}
.yfd{bottom:628.610667pt;}
.y53{bottom:628.776000pt;}
.y161{bottom:630.529802pt;}
.ya6{bottom:633.509577pt;}
.y1b4{bottom:636.317333pt;}
.y7e{bottom:637.210667pt;}
.y1cf{bottom:638.469333pt;}
.y8{bottom:642.601333pt;}
.y199{bottom:642.743407pt;}
.y2e{bottom:643.718667pt;}
.y177{bottom:644.184000pt;}
.yfc{bottom:644.550667pt;}
.y145{bottom:644.815793pt;}
.y122{bottom:651.789936pt;}
.y1b3{bottom:652.257333pt;}
.y7d{bottom:653.150667pt;}
.y52{bottom:653.682667pt;}
.ya5{bottom:655.160241pt;}
.y7{bottom:658.541333pt;}
.y2d{bottom:659.660000pt;}
.y176{bottom:660.124000pt;}
.yfb{bottom:660.492000pt;}
.y160{bottom:665.248000pt;}
.y1b2{bottom:668.197333pt;}
.y7c{bottom:669.090667pt;}
.yc3{bottom:670.054249pt;}
.y144{bottom:670.399774pt;}
.y1ce{bottom:672.446667pt;}
.y2c{bottom:675.600000pt;}
.y121{bottom:676.002477pt;}
.y175{bottom:676.065333pt;}
.yfa{bottom:676.432000pt;}
.ya4{bottom:676.810905pt;}
.y51{bottom:678.589333pt;}
.y198{bottom:679.212000pt;}
.y6{bottom:682.452000pt;}
.yc2{bottom:683.151669pt;}
.y1b1{bottom:684.137333pt;}
.y7b{bottom:685.030667pt;}
.y1f4{bottom:690.344000pt;}
.y2b{bottom:691.540000pt;}
.y174{bottom:692.005333pt;}
.y1cd{bottom:694.469333pt;}
.y143{bottom:695.981684pt;}
.yc1{bottom:696.250185pt;}
.ya3{bottom:698.461570pt;}
.y1b0{bottom:700.077333pt;}
.y120{bottom:700.215018pt;}
.y7a{bottom:700.970667pt;}
.y1f3{bottom:702.300000pt;}
.y1cc{bottom:706.424000pt;}
.y2a{bottom:707.480000pt;}
.y173{bottom:707.945333pt;}
.yc0{bottom:709.347604pt;}
.y50{bottom:710.934667pt;}
.y15f{bottom:711.230728pt;}
.y79{bottom:716.912000pt;}
.yf9{bottom:718.582667pt;}
.ya2{bottom:720.114045pt;}
.y142{bottom:720.741444pt;}
.ybf{bottom:722.445024pt;}
.y29{bottom:723.420000pt;}
.y172{bottom:723.885333pt;}
.y11f{bottom:724.427560pt;}
.y197{bottom:724.518793pt;}
.y1f2{bottom:724.881333pt;}
.y1cb{bottom:728.446667pt;}
.y1af{bottom:729.766667pt;}
.y78{bottom:732.852000pt;}
.ybe{bottom:735.542444pt;}
.y1f1{bottom:736.837333pt;}
.y15e{bottom:737.460635pt;}
.y28{bottom:739.361333pt;}
.y171{bottom:739.825333pt;}
.y1ca{bottom:740.402667pt;}
.ya1{bottom:741.764710pt;}
.y141{bottom:745.499133pt;}
.ybd{bottom:748.639864pt;}
.y11e{bottom:748.640101pt;}
.y196{bottom:748.717945pt;}
.y77{bottom:748.792000pt;}
.y1c9{bottom:752.357333pt;}
.y27{bottom:755.301333pt;}
.y4f{bottom:755.765333pt;}
.ybc{bottom:761.737284pt;}
.ya0{bottom:763.415374pt;}
.y15d{bottom:764.565970pt;}
.yf8{bottom:764.566113pt;}
.y76{bottom:764.732000pt;}
.y140{bottom:770.256822pt;}
.y26{bottom:771.241333pt;}
.y5{bottom:771.374667pt;}
.y4e{bottom:771.706667pt;}
.y1ae{bottom:771.917333pt;}
.y11d{bottom:772.854667pt;}
.y195{bottom:772.919121pt;}
.y1c8{bottom:774.380000pt;}
.ybb{bottom:775.271832pt;}
.y75{bottom:780.672000pt;}
.y1f0{bottom:783.329333pt;}
.y9f{bottom:785.066038pt;}
.y1c7{bottom:786.336000pt;}
.y25{bottom:787.181333pt;}
.y4d{bottom:787.646667pt;}
.yba{bottom:788.369252pt;}
.y15c{bottom:790.795878pt;}
.yf7{bottom:790.796020pt;}
.y4{bottom:791.964000pt;}
.y13f{bottom:795.014512pt;}
.y74{bottom:796.612000pt;}
.y11c{bottom:797.067209pt;}
.y194{bottom:797.118272pt;}
.yb9{bottom:801.903800pt;}
.y24{bottom:803.121333pt;}
.y4c{bottom:803.586667pt;}
.y1ef{bottom:805.910667pt;}
.y9e{bottom:806.716703pt;}
.y1c6{bottom:808.358667pt;}
.y3{bottom:812.553333pt;}
.y1ee{bottom:817.866667pt;}
.y1ad{bottom:817.900637pt;}
.y15b{bottom:817.901213pt;}
.yf6{bottom:817.901355pt;}
.y23{bottom:819.061333pt;}
.y4b{bottom:819.526667pt;}
.y13e{bottom:820.598493pt;}
.y11b{bottom:822.085822pt;}
.y193{bottom:822.123050pt;}
.y73{bottom:828.493333pt;}
.y9d{bottom:829.089962pt;}
.y1ed{bottom:829.821333pt;}
.y1c5{bottom:830.381333pt;}
.y4a{bottom:835.466667pt;}
.y1c4{bottom:842.336000pt;}
.y22{bottom:843.968000pt;}
.y1ac{bottom:844.130545pt;}
.y15a{bottom:844.131120pt;}
.yf5{bottom:844.131263pt;}
.y72{bottom:844.433333pt;}
.y13d{bottom:845.356182pt;}
.y11a{bottom:846.300388pt;}
.y192{bottom:846.324226pt;}
.y9c{bottom:850.740626pt;}
.y49{bottom:851.406667pt;}
.y2{bottom:852.404000pt;}
.y71{bottom:860.373333pt;}
.y1c3{bottom:864.358667pt;}
.y13c{bottom:870.940163pt;}
.y1ab{bottom:871.235879pt;}
.y159{bottom:871.236455pt;}
.yf4{bottom:871.236598pt;}
.y119{bottom:871.319002pt;}
.y191{bottom:871.329004pt;}
.y9b{bottom:873.113885pt;}
.y1{bottom:876.313333pt;}
.h8{height:21.933807pt;}
.h6{height:22.922103pt;}
.h1a{height:25.589197pt;}
.h1c{height:25.775863pt;}
.h1d{height:27.523264pt;}
.h3{height:29.159939pt;}
.h7{height:29.244954pt;}
.h11{height:30.037051pt;}
.h13{height:30.075069pt;}
.h1b{height:34.218530pt;}
.h2{height:36.556100pt;}
.hd{height:36.561434pt;}
.h4{height:36.874903pt;}
.hf{height:37.299379pt;}
.hb{height:39.319061pt;}
.ha{height:44.250180pt;}
.h5{height:46.258122pt;}
.hc{height:46.263455pt;}
.h16{height:49.634411pt;}
.he{height:49.652689pt;}
.h17{height:51.163187pt;}
.h1{height:52.640990pt;}
.h9{height:53.100068pt;}
.h18{height:55.497278pt;}
.h14{height:55.527985pt;}
.h15{height:56.778204pt;}
.h19{height:56.921869pt;}
.h10{height:58.744922pt;}
.h12{height:60.154525pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x15{left:181.086373pt;}
.xe{left:182.868568pt;}
.x1{left:184.302667pt;}
.x7{left:190.262667pt;}
.x9{left:192.837333pt;}
.xc{left:194.145748pt;}
.x1e{left:196.013957pt;}
.x8{left:197.486667pt;}
.x10{left:202.427751pt;}
.x2a{left:207.129333pt;}
.x1c{left:209.929333pt;}
.x11{left:213.605333pt;}
.xb{left:216.129638pt;}
.x25{left:217.278720pt;}
.x28{left:219.568000pt;}
.x1d{left:220.599154pt;}
.x21{left:221.550234pt;}
.x17{left:223.514667pt;}
.x1b{left:224.954667pt;}
.xf{left:228.340000pt;}
.x24{left:234.997333pt;}
.x2{left:236.990667pt;}
.x16{left:238.541333pt;}
.x22{left:239.716000pt;}
.x4{left:260.504000pt;}
.x5{left:273.336000pt;}
.x1a{left:292.073406pt;}
.x13{left:294.625829pt;}
.x14{left:296.050057pt;}
.x19{left:305.390339pt;}
.x12{left:307.924832pt;}
.x18{left:309.307536pt;}
.x3{left:360.866667pt;}
.xd{left:365.907685pt;}
.x2b{left:374.078667pt;}
.x23{left:376.841932pt;}
.x27{left:393.993939pt;}
.x26{left:399.481643pt;}
.x20{left:400.856000pt;}
.x2c{left:402.784000pt;}
.xa{left:404.177333pt;}
.x29{left:407.142468pt;}
.x1f{left:408.278247pt;}
}




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