
    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_9c5bef1a29d035bba79f9683.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_b9f883357724bb7e22c14a47.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977500;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_774971d1f38fc0ac9f27a299.woff')format("woff");}.ff3{font-family:ff3;line-height:0.719500;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_4f7f5067d7232cf12b7982e7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973000;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_b777bfd8d530db7aa8ba5db5.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1613a9aebbfe828dfd3cb779.woff')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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_8e7ea505845ebab3ccd4c4fb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.961000;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_34b419eb87027201c54d2364.woff')format("woff");}.ff8{font-family:ff8;line-height:0.964844;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_7b6734e5ef1e66aef18773ac.woff')format("woff");}.ff9{font-family:ff9;line-height:0.977500;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_5af9e8e667b14bf0cef2ab3d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_763bb314bbb1d56fc51b9041.woff')format("woff");}.ffb{font-family:ffb;line-height:0.808105;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:ffc;src:url('chunks/assets/font_5775c9a3a5ec05f16bbc3af5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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:ffd;src:url('chunks/assets/font_5af9e8e667b14bf0cef2ab3d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.960000;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:ffe;src:url('chunks/assets/font_5775c9a3a5ec05f16bbc3af5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.700000;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:fff;src:url('chunks/assets/font_813d83621bd42962daaee67b.woff')format("woff");}.fff{font-family:fff;line-height:0.722656;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;}
.m6{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);}
.m5{transform:matrix(0.156937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156937,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{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);}
.v4{vertical-align:-19.980000px;}
.v3{vertical-align:-5.334000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.375000px;}
.v6{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v7{vertical-align:36.000000px;}
.v8{vertical-align:72.000000px;}
.ls20{letter-spacing:-2.400000px;}
.ls8{letter-spacing:-1.677000px;}
.ls3d{letter-spacing:-1.566000px;}
.ls2e{letter-spacing:-1.200000px;}
.ls35{letter-spacing:-1.134000px;}
.ls3{letter-spacing:-1.056000px;}
.lsa{letter-spacing:-0.900000px;}
.ls40{letter-spacing:-0.810000px;}
.ls6{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.720000px;}
.ls38{letter-spacing:-0.702000px;}
.ls3b{letter-spacing:-0.675000px;}
.ls39{letter-spacing:-0.648000px;}
.ls2b{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.576000px;}
.ls21{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.504000px;}
.ls2a{letter-spacing:-0.480000px;}
.lsb{letter-spacing:-0.454740px;}
.ls34{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.419760px;}
.ls2d{letter-spacing:-0.384780px;}
.lse{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.349800px;}
.ls19{letter-spacing:-0.345000px;}
.ls3c{letter-spacing:-0.270000px;}
.ls37{letter-spacing:-0.251856px;}
.ls2c{letter-spacing:-0.244860px;}
.ls36{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.125928px;}
.ls30{letter-spacing:-0.045000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000060px;}
.ls26{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.175200px;}
.ls0{letter-spacing:0.198000px;}
.ls1b{letter-spacing:0.215625px;}
.ls3e{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.300000px;}
.ls3a{letter-spacing:0.324000px;}
.ls15{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.454740px;}
.lsf{letter-spacing:0.600000px;}
.ls2f{letter-spacing:0.900000px;}
.ls5{letter-spacing:1.200000px;}
.ls31{letter-spacing:1.500000px;}
.ls24{letter-spacing:1.800000px;}
.ls3f{letter-spacing:40.219800px;}
.ls18{letter-spacing:62.880000px;}
.ls16{letter-spacing:71.040000px;}
.ls1e{letter-spacing:78.192000px;}
.ls1c{letter-spacing:82.929375px;}
.ls17{letter-spacing:93.120000px;}
.ls32{letter-spacing:111.624000px;}
.ls28{letter-spacing:161.784000px;}
.ls27{letter-spacing:184.143750px;}
.ls25{letter-spacing:200.220000px;}
.ls14{letter-spacing:202.380000px;}
.ls23{letter-spacing:228.747000px;}
.ls1d{letter-spacing:246.564000px;}
.ls1a{letter-spacing:270.135000px;}
.ls29{letter-spacing:292.474800px;}
.ls12{letter-spacing:611.946600px;}
.ls13{letter-spacing:692.997000px;}
.ls1f{letter-spacing:1032.005934px;}
.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;}
}
.ws9d{word-spacing:-1032.005934px;}
.wsaa{word-spacing:-292.474800px;}
.ws8a{word-spacing:-280.010625px;}
.ws8d{word-spacing:-246.618000px;}
.ws86{word-spacing:-216.120000px;}
.wsa5{word-spacing:-200.220000px;}
.wsa8{word-spacing:-184.143750px;}
.wsa9{word-spacing:-161.784000px;}
.ws9b{word-spacing:-93.120000px;}
.ws8c{word-spacing:-92.805000px;}
.ws88{word-spacing:-84.780000px;}
.ws8e{word-spacing:-78.246000px;}
.ws9c{word-spacing:-62.880000px;}
.ws1{word-spacing:-48.000000px;}
.ws23{word-spacing:-16.302000px;}
.wse4{word-spacing:-15.120000px;}
.ws4b{word-spacing:-14.820000px;}
.ws92{word-spacing:-14.220000px;}
.ws87{word-spacing:-14.100000px;}
.ws85{word-spacing:-13.920000px;}
.ws68{word-spacing:-13.740000px;}
.ws25{word-spacing:-13.620000px;}
.ws5{word-spacing:-13.338000px;}
.ws6c{word-spacing:-13.260000px;}
.ws90{word-spacing:-13.080000px;}
.ws26{word-spacing:-12.900000px;}
.ws67{word-spacing:-12.840000px;}
.ws6{word-spacing:-12.258000px;}
.wsa4{word-spacing:-12.015000px;}
.wsd5{word-spacing:-11.970000px;}
.ws3{word-spacing:-11.856000px;}
.wsf4{word-spacing:-11.718000px;}
.ws100{word-spacing:-11.556000px;}
.ws118{word-spacing:-11.448000px;}
.ws8f{word-spacing:-11.340000px;}
.ws0{word-spacing:-11.214000px;}
.ws150{word-spacing:-11.205000px;}
.ws108{word-spacing:-11.178000px;}
.ws125{word-spacing:-11.136000px;}
.ws4{word-spacing:-10.896000px;}
.ws2{word-spacing:-10.800000px;}
.ws89{word-spacing:-9.530625px;}
.ws91{word-spacing:-8.465160px;}
.ws66{word-spacing:-8.010420px;}
.ws24{word-spacing:-7.940460px;}
.wsbe{word-spacing:-7.765560px;}
.ws6b{word-spacing:-7.660620px;}
.wsbf{word-spacing:-7.625640px;}
.ws6a{word-spacing:-7.590660px;}
.ws69{word-spacing:-7.555680px;}
.ws104{word-spacing:-7.506000px;}
.wsf6{word-spacing:-6.831594px;}
.wsf5{word-spacing:-6.705666px;}
.wsf7{word-spacing:-6.579738px;}
.ws12a{word-spacing:-4.752000px;}
.wse2{word-spacing:-4.500000px;}
.wsce{word-spacing:-4.200000px;}
.wse1{word-spacing:-3.840000px;}
.ws7a{word-spacing:-3.780000px;}
.ws7b{word-spacing:-3.720000px;}
.ws13d{word-spacing:-3.510000px;}
.ws5b{word-spacing:-3.420000px;}
.ws16{word-spacing:-3.186000px;}
.ws159{word-spacing:-2.880000px;}
.ws71{word-spacing:-2.700000px;}
.ws126{word-spacing:-2.640000px;}
.ws74{word-spacing:-2.460000px;}
.ws7f{word-spacing:-2.400000px;}
.wsba{word-spacing:-2.340000px;}
.ws13a{word-spacing:-2.304000px;}
.ws57{word-spacing:-2.280000px;}
.ws128{word-spacing:-2.268000px;}
.ws50{word-spacing:-2.220000px;}
.ws34{word-spacing:-2.160000px;}
.ws33{word-spacing:-2.100000px;}
.ws14a{word-spacing:-2.052000px;}
.ws2a{word-spacing:-1.980000px;}
.ws9{word-spacing:-1.965600px;}
.wsf{word-spacing:-1.920000px;}
.ws36{word-spacing:-1.800000px;}
.ws2c{word-spacing:-1.680000px;}
.wsa2{word-spacing:-1.620000px;}
.ws95{word-spacing:-1.560000px;}
.ws83{word-spacing:-1.536000px;}
.ws30{word-spacing:-1.440000px;}
.ws13{word-spacing:-1.404000px;}
.ws3d{word-spacing:-1.380000px;}
.ws49{word-spacing:-1.344000px;}
.wsd3{word-spacing:-1.320000px;}
.wsd2{word-spacing:-1.260000px;}
.wsaf{word-spacing:-1.200000px;}
.ws19{word-spacing:-1.134000px;}
.wsc{word-spacing:-1.092000px;}
.ws4d{word-spacing:-1.080000px;}
.wsd9{word-spacing:-1.020000px;}
.ws141{word-spacing:-0.972000px;}
.ws77{word-spacing:-0.960000px;}
.ws11c{word-spacing:-0.918000px;}
.ws75{word-spacing:-0.900000px;}
.ws17{word-spacing:-0.810000px;}
.ws54{word-spacing:-0.780000px;}
.wscd{word-spacing:-0.720000px;}
.wsf2{word-spacing:-0.660000px;}
.ws7{word-spacing:-0.633600px;}
.wsb8{word-spacing:-0.600000px;}
.ws99{word-spacing:-0.540000px;}
.wsa{word-spacing:-0.529200px;}
.wsb{word-spacing:-0.491400px;}
.ws59{word-spacing:-0.480000px;}
.ws44{word-spacing:-0.420000px;}
.ws21{word-spacing:-0.378000px;}
.wsd1{word-spacing:-0.360000px;}
.ws111{word-spacing:-0.324000px;}
.ws31{word-spacing:-0.300000px;}
.ws11a{word-spacing:-0.270000px;}
.ws72{word-spacing:-0.240000px;}
.ws11b{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.162000px;}
.ws107{word-spacing:-0.108000px;}
.wsa6{word-spacing:-0.060000px;}
.ws8{word-spacing:0.000000px;}
.wsde{word-spacing:0.060000px;}
.ws2e{word-spacing:0.120000px;}
.ws12{word-spacing:0.162000px;}
.ws80{word-spacing:0.180000px;}
.ws105{word-spacing:0.216000px;}
.wsea{word-spacing:0.240000px;}
.ws28{word-spacing:0.300000px;}
.wsa7{word-spacing:0.345000px;}
.wse9{word-spacing:0.360000px;}
.ws45{word-spacing:0.420000px;}
.ws102{word-spacing:0.432000px;}
.ws48{word-spacing:0.480000px;}
.ws22{word-spacing:0.504000px;}
.wsa0{word-spacing:0.540000px;}
.wsd{word-spacing:0.576000px;}
.ws123{word-spacing:0.594000px;}
.ws106{word-spacing:0.648000px;}
.ws6e{word-spacing:0.720000px;}
.ws9e{word-spacing:0.840000px;}
.ws154{word-spacing:0.864000px;}
.ws79{word-spacing:0.900000px;}
.ws13e{word-spacing:0.918000px;}
.ws82{word-spacing:0.960000px;}
.ws136{word-spacing:0.972000px;}
.ws41{word-spacing:1.020000px;}
.ws132{word-spacing:1.026000px;}
.ws103{word-spacing:1.134000px;}
.ws3a{word-spacing:1.140000px;}
.ws12e{word-spacing:1.188000px;}
.ws3f{word-spacing:1.200000px;}
.ws146{word-spacing:1.242000px;}
.ws56{word-spacing:1.260000px;}
.ws2b{word-spacing:1.380000px;}
.ws13f{word-spacing:1.404000px;}
.ws32{word-spacing:1.440000px;}
.wse7{word-spacing:1.500000px;}
.wsb0{word-spacing:1.560000px;}
.ws76{word-spacing:1.620000px;}
.wsc0{word-spacing:1.680000px;}
.ws53{word-spacing:1.740000px;}
.ws13c{word-spacing:1.782000px;}
.ws46{word-spacing:1.920000px;}
.wsb7{word-spacing:1.980000px;}
.ws18{word-spacing:1.998000px;}
.wsc6{word-spacing:2.040000px;}
.wsac{word-spacing:2.100000px;}
.ws20{word-spacing:2.160000px;}
.wsc1{word-spacing:2.220000px;}
.ws7d{word-spacing:2.280000px;}
.wsd8{word-spacing:2.340000px;}
.ws120{word-spacing:2.400000px;}
.wsc9{word-spacing:2.460000px;}
.ws1c{word-spacing:2.484000px;}
.ws9a{word-spacing:2.520000px;}
.ws14{word-spacing:2.538000px;}
.ws43{word-spacing:2.580000px;}
.ws3e{word-spacing:2.640000px;}
.ws81{word-spacing:2.688000px;}
.wsed{word-spacing:2.700000px;}
.ws51{word-spacing:2.760000px;}
.wsb9{word-spacing:2.820000px;}
.wsc8{word-spacing:2.880000px;}
.ws122{word-spacing:2.940000px;}
.wsad{word-spacing:3.000000px;}
.ws1e{word-spacing:3.024000px;}
.ws42{word-spacing:3.060000px;}
.ws1f{word-spacing:3.078000px;}
.wsd6{word-spacing:3.120000px;}
.wsec{word-spacing:3.180000px;}
.ws58{word-spacing:3.240000px;}
.ws47{word-spacing:3.300000px;}
.ws14c{word-spacing:3.348000px;}
.wscf{word-spacing:3.360000px;}
.ws61{word-spacing:3.480000px;}
.ws2d{word-spacing:3.540000px;}
.ws133{word-spacing:3.564000px;}
.ws127{word-spacing:3.600000px;}
.ws7e{word-spacing:3.660000px;}
.ws98{word-spacing:3.720000px;}
.ws3b{word-spacing:3.780000px;}
.wse6{word-spacing:3.840000px;}
.ws65{word-spacing:3.900000px;}
.ws135{word-spacing:3.942000px;}
.wse8{word-spacing:3.960000px;}
.wsb4{word-spacing:4.140000px;}
.ws131{word-spacing:4.212000px;}
.ws4f{word-spacing:4.260000px;}
.ws62{word-spacing:4.380000px;}
.wse{word-spacing:4.416000px;}
.ws1d{word-spacing:4.482000px;}
.ws37{word-spacing:4.500000px;}
.wsd0{word-spacing:4.560000px;}
.ws134{word-spacing:4.590000px;}
.ws39{word-spacing:4.620000px;}
.ws5d{word-spacing:4.740000px;}
.ws55{word-spacing:4.800000px;}
.ws97{word-spacing:4.980000px;}
.ws137{word-spacing:5.022000px;}
.wscb{word-spacing:5.040000px;}
.wsbb{word-spacing:5.160000px;}
.ws4c{word-spacing:5.220000px;}
.ws140{word-spacing:5.238000px;}
.ws157{word-spacing:5.280000px;}
.wsc7{word-spacing:5.400000px;}
.ws1a{word-spacing:5.508000px;}
.wseb{word-spacing:5.520000px;}
.ws73{word-spacing:5.580000px;}
.ws7c{word-spacing:5.640000px;}
.wsf0{word-spacing:5.700000px;}
.ws12d{word-spacing:5.724000px;}
.wsb3{word-spacing:5.760000px;}
.ws60{word-spacing:5.820000px;}
.ws6f{word-spacing:5.940000px;}
.ws78{word-spacing:6.000000px;}
.wsa3{word-spacing:6.060000px;}
.ws63{word-spacing:6.120000px;}
.ws155{word-spacing:6.156000px;}
.wse5{word-spacing:6.180000px;}
.ws1b{word-spacing:6.210000px;}
.wsb5{word-spacing:6.240000px;}
.ws64{word-spacing:6.300000px;}
.ws29{word-spacing:6.360000px;}
.wsb6{word-spacing:6.480000px;}
.wsa1{word-spacing:6.540000px;}
.wsab{word-spacing:6.660000px;}
.ws38{word-spacing:6.840000px;}
.ws3c{word-spacing:6.900000px;}
.ws27{word-spacing:6.960000px;}
.ws93{word-spacing:7.020000px;}
.ws11{word-spacing:7.128000px;}
.ws129{word-spacing:7.182000px;}
.wsc5{word-spacing:7.200000px;}
.ws94{word-spacing:7.440000px;}
.ws142{word-spacing:7.452000px;}
.wsdf{word-spacing:7.500000px;}
.ws5a{word-spacing:7.560000px;}
.ws35{word-spacing:7.740000px;}
.ws96{word-spacing:7.800000px;}
.ws52{word-spacing:7.980000px;}
.ws148{word-spacing:8.262000px;}
.wsdd{word-spacing:8.280000px;}
.ws12f{word-spacing:8.370000px;}
.ws4e{word-spacing:8.400000px;}
.ws2f{word-spacing:8.820000px;}
.wsae{word-spacing:9.000000px;}
.ws121{word-spacing:9.060000px;}
.wse0{word-spacing:9.300000px;}
.wsd7{word-spacing:9.480000px;}
.ws40{word-spacing:9.600000px;}
.wsb2{word-spacing:9.720000px;}
.wsbc{word-spacing:9.780000px;}
.ws14e{word-spacing:9.828000px;}
.wsc3{word-spacing:9.900000px;}
.ws139{word-spacing:10.032000px;}
.ws143{word-spacing:10.152000px;}
.ws10{word-spacing:10.368000px;}
.wsb1{word-spacing:10.380000px;}
.wsc2{word-spacing:10.620000px;}
.ws13b{word-spacing:10.800000px;}
.ws158{word-spacing:11.100000px;}
.ws145{word-spacing:11.178000px;}
.ws14d{word-spacing:11.556000px;}
.wsef{word-spacing:11.580000px;}
.ws138{word-spacing:11.934000px;}
.ws9f{word-spacing:12.300000px;}
.ws5e{word-spacing:12.360000px;}
.ws5f{word-spacing:12.600000px;}
.ws152{word-spacing:13.014000px;}
.ws12c{word-spacing:13.662000px;}
.wsf1{word-spacing:14.160000px;}
.wse3{word-spacing:15.180000px;}
.wsc4{word-spacing:15.420000px;}
.ws12b{word-spacing:15.498000px;}
.ws14b{word-spacing:15.552000px;}
.ws5c{word-spacing:15.960000px;}
.wsdb{word-spacing:16.560000px;}
.wsda{word-spacing:16.740000px;}
.wsdc{word-spacing:16.800000px;}
.ws147{word-spacing:17.226000px;}
.ws144{word-spacing:18.630000px;}
.ws151{word-spacing:19.386000px;}
.wsee{word-spacing:19.620000px;}
.ws153{word-spacing:22.734000px;}
.ws156{word-spacing:23.706000px;}
.ws130{word-spacing:34.074000px;}
.ws149{word-spacing:49.032000px;}
.ws11f{word-spacing:54.822000px;}
.ws8b{word-spacing:85.732500px;}
.ws10d{word-spacing:115.131000px;}
.ws115{word-spacing:128.091000px;}
.wsf9{word-spacing:152.494800px;}
.ws114{word-spacing:188.340000px;}
.ws10f{word-spacing:190.914000px;}
.ws109{word-spacing:202.703400px;}
.ws11e{word-spacing:216.286800px;}
.ws119{word-spacing:225.899400px;}
.wsfc{word-spacing:228.215400px;}
.ws101{word-spacing:241.176000px;}
.wsfd{word-spacing:244.785600px;}
.wsfb{word-spacing:246.567600px;}
.ws10e{word-spacing:290.322600px;}
.ws10c{word-spacing:295.134000px;}
.ws116{word-spacing:304.947600px;}
.wsfa{word-spacing:352.780800px;}
.ws117{word-spacing:374.337600px;}
.wsff{word-spacing:417.665400px;}
.ws110{word-spacing:418.356600px;}
.ws10b{word-spacing:420.022800px;}
.ws10a{word-spacing:468.954600px;}
.ws113{word-spacing:469.810800px;}
.wsfe{word-spacing:528.090000px;}
.wsf8{word-spacing:528.090600px;}
.ws70{word-spacing:756.300000px;}
.ws6d{word-spacing:796.080000px;}
.wscc{word-spacing:856.440000px;}
.wsca{word-spacing:868.920000px;}
.ws124{word-spacing:1351.331400px;}
.wsf3{word-spacing:1352.186400px;}
.wsbd{word-spacing:1352.209200px;}
.ws11d{word-spacing:1352.298600px;}
.ws84{word-spacing:1353.176400px;}
.ws14f{word-spacing:1353.535800px;}
.wsd4{word-spacing:1353.648600px;}
.ws112{word-spacing:1359.048000px;}
.ws4a{word-spacing:1359.228600px;}
._15{margin-left:-202.500000px;}
._17{margin-left:-93.063750px;}
._16{margin-left:-71.880000px;}
._18{margin-left:-68.094000px;}
._7a{margin-left:-58.415400px;}
._19{margin-left:-13.176000px;}
._c{margin-left:-8.761800px;}
._4{margin-left:-6.804000px;}
._6{margin-left:-5.244960px;}
._3{margin-left:-3.928620px;}
._1{margin-left:-2.482680px;}
._0{margin-left:-1.115100px;}
._2{width:1.323480px;}
._a{width:2.403000px;}
._b{width:3.636600px;}
._9{width:5.138520px;}
._8{width:6.955200px;}
._f{width:8.208000px;}
._7{width:9.913080px;}
._11{width:11.751780px;}
._22{width:13.684680px;}
._1d{width:14.810880px;}
._10{width:16.048200px;}
._20{width:17.285100px;}
._21{width:19.061940px;}
._79{width:20.730600px;}
._5{width:22.320000px;}
._77{width:23.568000px;}
._1c{width:29.811600px;}
._14{width:31.392000px;}
._e{width:34.080000px;}
._d{width:35.424000px;}
._56{width:44.540400px;}
._73{width:49.152000px;}
._3d{width:121.383900px;}
._2e{width:126.304200px;}
._3a{width:127.389000px;}
._41{width:138.410100px;}
._3f{width:139.546920px;}
._32{width:140.774100px;}
._29{width:145.751580px;}
._45{width:149.225400px;}
._37{width:150.700200px;}
._4d{width:153.593760px;}
._36{width:155.598000px;}
._4c{width:160.682700px;}
._50{width:163.652760px;}
._28{width:164.834280px;}
._3c{width:168.216360px;}
._4f{width:170.186700px;}
._40{width:176.668800px;}
._26{width:177.712800px;}
._46{width:179.486580px;}
._49{width:180.729900px;}
._39{width:189.041400px;}
._47{width:196.911000px;}
._2f{width:198.068100px;}
._3b{width:201.228480px;}
._43{width:202.257600px;}
._2a{width:207.489960px;}
._42{width:214.062300px;}
._38{width:215.289900px;}
._54{width:217.790280px;}
._6b{width:218.933400px;}
._78{width:221.058600px;}
._44{width:226.024680px;}
._58{width:228.544800px;}
._74{width:233.673000px;}
._52{width:237.121920px;}
._5d{width:238.157400px;}
._23{width:240.391920px;}
._5f{width:241.505400px;}
._33{width:245.865600px;}
._3e{width:247.309380px;}
._34{width:250.085400px;}
._25{width:253.434000px;}
._27{width:258.521640px;}
._4a{width:259.821000px;}
._24{width:261.096900px;}
._30{width:262.986000px;}
._48{width:269.649360px;}
._4b{width:277.471320px;}
._53{width:279.616560px;}
._4e{width:289.009260px;}
._2c{width:290.112600px;}
._55{width:323.309400px;}
._72{width:326.465400px;}
._59{width:371.569200px;}
._75{width:374.113200px;}
._62{width:384.529200px;}
._6c{width:387.877200px;}
._71{width:395.845980px;}
._5b{width:397.489800px;}
._70{width:491.913360px;}
._1a{width:516.960000px;}
._13{width:672.243600px;}
._76{width:695.687400px;}
._12{width:711.569100px;}
._1b{width:756.960000px;}
._1f{width:772.543920px;}
._1e{width:785.162280px;}
._51{width:983.989200px;}
._2b{width:1212.173400px;}
._35{width:1221.786000px;}
._2d{width:1225.132800px;}
._31{width:1234.746000px;}
._60{width:1326.264780px;}
._61{width:1679.877480px;}
._69{width:1731.107100px;}
._66{width:1771.575660px;}
._6f{width:1782.099120px;}
._68{width:1789.606680px;}
._6d{width:1796.444400px;}
._64{width:1817.513400px;}
._65{width:1829.762820px;}
._6a{width:1832.894400px;}
._5c{width:1869.706200px;}
._5a{width:1874.404200px;}
._5e{width:1875.690300px;}
._63{width:1890.144060px;}
._67{width:1908.620880px;}
._57{width:1917.731100px;}
._6e{width:1937.927100px;}
.fc2{color:rgb(107,19,25);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:31.482000px;}
.fsb{font-size:34.980000px;}
.fs1{font-size:37.800000px;}
.fs4{font-size:38.478000px;}
.fs9{font-size:39.000000px;}
.fs0{font-size:39.600000px;}
.fs5{font-size:42.000000px;}
.fsc{font-size:43.125000px;}
.fs8{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fse{font-size:81.000000px;}
.fs2{font-size:84.000000px;}
.fsd{font-size:86.022000px;}
.y0{bottom:0.000000px;}
.yc4{bottom:3.749550px;}
.ye4{bottom:3.750150px;}
.ye3{bottom:14.718900px;}
.yc7{bottom:17.812050px;}
.ye6{bottom:17.812650px;}
.yc2{bottom:19.499550px;}
.ye0{bottom:19.500150px;}
.y4{bottom:55.872300px;}
.y3{bottom:68.472300px;}
.y18b{bottom:76.535250px;}
.yae{bottom:76.535400px;}
.y55{bottom:76.535550px;}
.y2{bottom:81.072300px;}
.y189{bottom:82.488000px;}
.y186{bottom:82.488150px;}
.y1c3{bottom:82.488300px;}
.y154{bottom:83.772300px;}
.y156{bottom:85.893300px;}
.y1cf{bottom:86.177700px;}
.y82{bottom:87.400500px;}
.yad{bottom:91.535400px;}
.y54{bottom:91.535700px;}
.y110{bottom:96.244650px;}
.y18d{bottom:98.874900px;}
.y153{bottom:101.772300px;}
.y1ce{bottom:104.177700px;}
.y81{bottom:105.400500px;}
.yac{bottom:106.535400px;}
.y53{bottom:106.535700px;}
.y243{bottom:108.291150px;}
.y10f{bottom:114.244650px;}
.y24{bottom:116.686050px;}
.y18c{bottom:118.938450px;}
.y155{bottom:119.469900px;}
.y152{bottom:119.772300px;}
.yab{bottom:121.535400px;}
.y1cd{bottom:122.177700px;}
.y80{bottom:123.400500px;}
.y242{bottom:126.291150px;}
.y137{bottom:129.306750px;}
.ydd{bottom:131.996700px;}
.y10e{bottom:132.244650px;}
.yaa{bottom:136.535400px;}
.y151{bottom:137.772300px;}
.y1cc{bottom:140.177700px;}
.y7f{bottom:141.400500px;}
.y241{bottom:144.291150px;}
.y1b5{bottom:148.865850px;}
.ydc{bottom:149.996700px;}
.y10d{bottom:150.244650px;}
.y136{bottom:151.558800px;}
.y23{bottom:151.693800px;}
.y218{bottom:152.696700px;}
.y52{bottom:154.634400px;}
.y150{bottom:155.772300px;}
.y1cb{bottom:158.177700px;}
.y7e{bottom:159.400500px;}
.y240{bottom:162.291150px;}
.ydb{bottom:167.996700px;}
.y10c{bottom:168.244800px;}
.y22{bottom:169.693800px;}
.y217{bottom:170.696700px;}
.y51{bottom:172.634400px;}
.ya9{bottom:173.748750px;}
.y14f{bottom:173.772300px;}
.y135{bottom:173.810700px;}
.y7d{bottom:177.400500px;}
.y23f{bottom:180.291150px;}
.yda{bottom:185.996700px;}
.y10b{bottom:186.244800px;}
.y216{bottom:188.696700px;}
.y50{bottom:190.634400px;}
.ya8{bottom:191.748750px;}
.y14e{bottom:191.772300px;}
.y134{bottom:191.810700px;}
.y21{bottom:191.945850px;}
.y1ca{bottom:193.185600px;}
.y7c{bottom:195.400500px;}
.y23e{bottom:198.291150px;}
.yd9{bottom:203.996700px;}
.y10a{bottom:204.244800px;}
.y215{bottom:206.696700px;}
.y4f{bottom:208.634400px;}
.ya7{bottom:209.748750px;}
.y14d{bottom:209.772300px;}
.y7b{bottom:213.400500px;}
.y23d{bottom:216.291150px;}
.y18e{bottom:219.799650px;}
.yd8{bottom:221.996700px;}
.y109{bottom:222.244800px;}
.y20{bottom:222.453750px;}
.y133{bottom:222.566700px;}
.y191{bottom:222.917850px;}
.y214{bottom:224.696700px;}
.y15a{bottom:225.250050px;}
.y190{bottom:226.312950px;}
.y4e{bottom:226.634400px;}
.y159{bottom:227.207700px;}
.ya6{bottom:227.748750px;}
.y14c{bottom:227.772300px;}
.y15c{bottom:227.916300px;}
.y18f{bottom:228.270750px;}
.y15b{bottom:229.029900px;}
.y158{bottom:230.312550px;}
.y7a{bottom:231.400500px;}
.y23c{bottom:234.291150px;}
.y192{bottom:236.154600px;}
.y18a{bottom:239.607000px;}
.y188{bottom:239.607300px;}
.yd7{bottom:239.996700px;}
.y108{bottom:240.244800px;}
.y1f{bottom:240.453750px;}
.y157{bottom:240.754800px;}
.y213{bottom:242.696700px;}
.y4d{bottom:244.634400px;}
.y1e8{bottom:245.727000px;}
.ya5{bottom:245.748750px;}
.y14b{bottom:245.772300px;}
.y132{bottom:249.070650px;}
.y79{bottom:249.400500px;}
.y23b{bottom:252.291150px;}
.y1c4{bottom:253.912200px;}
.yd6{bottom:257.996700px;}
.y107{bottom:258.244800px;}
.y1e{bottom:258.453750px;}
.y212{bottom:260.696700px;}
.y4c{bottom:262.634400px;}
.y1c9{bottom:263.443200px;}
.ya4{bottom:263.748750px;}
.y14a{bottom:263.772300px;}
.y131{bottom:267.070650px;}
.y78{bottom:267.400500px;}
.y23a{bottom:270.291150px;}
.y1c5{bottom:270.361800px;}
.y1e6{bottom:272.558700px;}
.y1c8{bottom:272.933550px;}
.y1c2{bottom:275.046300px;}
.yd5{bottom:275.996700px;}
.y106{bottom:276.244800px;}
.y1d{bottom:276.453750px;}
.y211{bottom:278.696700px;}
.y1c6{bottom:280.452900px;}
.y4b{bottom:280.634400px;}
.y1e5{bottom:281.558700px;}
.ya3{bottom:281.748750px;}
.y149{bottom:281.772300px;}
.y1c7{bottom:283.963050px;}
.y77{bottom:285.400500px;}
.y239{bottom:288.291150px;}
.y130{bottom:289.322550px;}
.y1e7{bottom:290.558700px;}
.y160{bottom:293.077200px;}
.y105{bottom:294.244800px;}
.y1c{bottom:294.453750px;}
.y161{bottom:295.074900px;}
.y210{bottom:296.696700px;}
.y195{bottom:297.124350px;}
.yd4{bottom:298.248750px;}
.y4a{bottom:298.634400px;}
.y196{bottom:299.567550px;}
.ya2{bottom:299.748750px;}
.y148{bottom:299.772300px;}
.y197{bottom:301.019100px;}
.y194{bottom:302.774100px;}
.y15f{bottom:303.121050px;}
.y76{bottom:303.400500px;}
.y193{bottom:304.340100px;}
.y238{bottom:306.291150px;}
.y162{bottom:306.334050px;}
.y12f{bottom:307.322550px;}
.y15e{bottom:309.486300px;}
.y15d{bottom:309.655050px;}
.y104{bottom:312.244800px;}
.y1e3{bottom:312.278550px;}
.y1b{bottom:312.453750px;}
.y20f{bottom:314.696700px;}
.yd3{bottom:316.248750px;}
.y49{bottom:316.634400px;}
.ya1{bottom:317.748750px;}
.y147{bottom:317.772300px;}
.y1e2{bottom:321.278550px;}
.y75{bottom:321.400500px;}
.y237{bottom:324.291150px;}
.y12e{bottom:329.574600px;}
.y250{bottom:329.719500px;}
.y103{bottom:330.244800px;}
.y1e4{bottom:330.278550px;}
.y1a{bottom:330.453750px;}
.y20e{bottom:332.696700px;}
.yd2{bottom:334.248750px;}
.y48{bottom:334.634400px;}
.ya0{bottom:335.748750px;}
.y146{bottom:335.772300px;}
.y74{bottom:339.400500px;}
.y236{bottom:342.291150px;}
.y12d{bottom:347.574600px;}
.y24f{bottom:347.719500px;}
.y102{bottom:348.244800px;}
.y19{bottom:348.453750px;}
.y20d{bottom:350.696700px;}
.y1e1{bottom:351.998550px;}
.yd1{bottom:352.248750px;}
.y47{bottom:352.634400px;}
.y9f{bottom:353.748750px;}
.y145{bottom:353.772300px;}
.y73{bottom:357.400500px;}
.y24e{bottom:365.719500px;}
.y101{bottom:366.244800px;}
.y18{bottom:366.453750px;}
.y20c{bottom:368.696700px;}
.y1e0{bottom:369.998550px;}
.yd0{bottom:370.248750px;}
.y46{bottom:370.634400px;}
.y9e{bottom:371.748750px;}
.y144{bottom:371.772300px;}
.y72{bottom:375.400500px;}
.y1b4{bottom:376.936950px;}
.y235{bottom:377.299050px;}
.y12c{bottom:378.330450px;}
.y100{bottom:384.244800px;}
.y20b{bottom:386.696700px;}
.y199{bottom:388.531050px;}
.y45{bottom:388.634400px;}
.y17{bottom:388.705650px;}
.y9d{bottom:389.748750px;}
.y143{bottom:389.772300px;}
.y1df{bottom:391.718400px;}
.y168{bottom:393.161850px;}
.y165{bottom:393.209250px;}
.y71{bottom:393.400500px;}
.y198{bottom:399.608400px;}
.y24d{bottom:400.727400px;}
.y167{bottom:401.950050px;}
.y166{bottom:401.963700px;}
.yff{bottom:402.244800px;}
.y163{bottom:402.976800px;}
.y20a{bottom:404.696700px;}
.y12b{bottom:404.834400px;}
.y44{bottom:406.634400px;}
.y16{bottom:406.705650px;}
.y9c{bottom:407.748750px;}
.y142{bottom:407.772300px;}
.y1de{bottom:409.718400px;}
.y70{bottom:411.400500px;}
.y164{bottom:416.435550px;}
.yfe{bottom:420.244800px;}
.y209{bottom:422.696700px;}
.y12a{bottom:422.834400px;}
.y43{bottom:424.634400px;}
.y15{bottom:424.705650px;}
.y9b{bottom:425.748750px;}
.y141{bottom:425.772300px;}
.y234{bottom:426.862800px;}
.ycf{bottom:428.748750px;}
.y6f{bottom:429.400500px;}
.y1dd{bottom:431.438250px;}
.yfd{bottom:438.244800px;}
.y208{bottom:440.696700px;}
.y129{bottom:440.834400px;}
.y42{bottom:442.634400px;}
.y14{bottom:442.705650px;}
.y9a{bottom:443.748750px;}
.y140{bottom:443.772300px;}
.y233{bottom:444.862800px;}
.yce{bottom:446.748750px;}
.y6e{bottom:447.400500px;}
.y1dc{bottom:449.438250px;}
.y24c{bottom:450.291150px;}
.yfc{bottom:456.244800px;}
.y207{bottom:458.696700px;}
.y128{bottom:458.834400px;}
.y41{bottom:460.634400px;}
.y13{bottom:460.705650px;}
.y99{bottom:461.748750px;}
.y13f{bottom:461.772300px;}
.y232{bottom:462.862800px;}
.ycd{bottom:464.748750px;}
.y6d{bottom:465.400500px;}
.y24b{bottom:468.291150px;}
.y1db{bottom:471.158100px;}
.yfb{bottom:474.244800px;}
.y206{bottom:476.696700px;}
.y127{bottom:476.834400px;}
.y40{bottom:478.634400px;}
.y12{bottom:478.705650px;}
.y98{bottom:479.748750px;}
.y13e{bottom:479.772300px;}
.y1d8{bottom:480.158100px;}
.y231{bottom:480.862800px;}
.ycc{bottom:482.748750px;}
.y6c{bottom:483.400500px;}
.y24a{bottom:486.291150px;}
.y16c{bottom:487.105050px;}
.y16b{bottom:489.062700px;}
.y1da{bottom:489.158100px;}
.y16e{bottom:489.771450px;}
.y19a{bottom:489.799650px;}
.y16d{bottom:490.885050px;}
.y16a{bottom:492.167700px;}
.yfa{bottom:492.244800px;}
.y19d{bottom:492.917850px;}
.y205{bottom:494.696700px;}
.y126{bottom:494.834400px;}
.y19c{bottom:496.312950px;}
.y3f{bottom:496.634400px;}
.y11{bottom:496.705650px;}
.y97{bottom:497.748750px;}
.y13d{bottom:497.772300px;}
.y1d7{bottom:498.158100px;}
.y19b{bottom:498.270750px;}
.y230{bottom:498.862800px;}
.y6b{bottom:501.400500px;}
.y169{bottom:502.609950px;}
.y249{bottom:504.291150px;}
.ycb{bottom:505.000650px;}
.y19e{bottom:506.154600px;}
.y1d9{bottom:507.158100px;}
.yf9{bottom:510.244800px;}
.y204{bottom:512.696700px;}
.y125{bottom:512.834400px;}
.y3e{bottom:514.634400px;}
.y10{bottom:514.705650px;}
.y13c{bottom:515.772300px;}
.y22f{bottom:516.862800px;}
.y6a{bottom:519.400500px;}
.y96{bottom:520.000650px;}
.y248{bottom:522.291150px;}
.yca{bottom:523.000650px;}
.yf8{bottom:528.244800px;}
.y1d6{bottom:528.877950px;}
.y203{bottom:530.696700px;}
.y124{bottom:530.834400px;}
.y3d{bottom:532.634400px;}
.yf{bottom:532.705650px;}
.y13b{bottom:533.772300px;}
.y22e{bottom:534.862800px;}
.y69{bottom:537.400500px;}
.y1d3{bottom:537.877950px;}
.y95{bottom:538.000650px;}
.y247{bottom:540.291150px;}
.yf7{bottom:546.244650px;}
.y1d5{bottom:546.877950px;}
.yc1{bottom:546.954000px;}
.y202{bottom:548.696700px;}
.y123{bottom:548.834400px;}
.y3c{bottom:550.634400px;}
.yc8{bottom:550.703550px;}
.ye{bottom:550.705650px;}
.y13a{bottom:551.772300px;}
.y22d{bottom:552.862800px;}
.y172{bottom:554.932200px;}
.y68{bottom:555.400500px;}
.y1d2{bottom:555.877950px;}
.y94{bottom:556.000650px;}
.y173{bottom:556.930050px;}
.y246{bottom:558.291150px;}
.yc3{bottom:561.672300px;}
.yc9{bottom:563.359800px;}
.yf6{bottom:564.244650px;}
.y1d4{bottom:564.877950px;}
.y171{bottom:564.976200px;}
.yc6{bottom:566.453550px;}
.yc0{bottom:566.512500px;}
.y201{bottom:566.696700px;}
.y122{bottom:566.834400px;}
.y1a1{bottom:567.124350px;}
.y174{bottom:568.189200px;}
.y3b{bottom:568.634400px;}
.y1a2{bottom:569.567550px;}
.y139{bottom:569.772300px;}
.y22c{bottom:570.862800px;}
.y1a3{bottom:571.019100px;}
.y170{bottom:571.341450px;}
.y16f{bottom:571.510050px;}
.y1a0{bottom:572.774100px;}
.yd{bottom:572.957700px;}
.y67{bottom:573.400500px;}
.y19f{bottom:574.340100px;}
.y245{bottom:576.291150px;}
.y93{bottom:578.252700px;}
.yc5{bottom:581.219100px;}
.yf5{bottom:582.244650px;}
.y200{bottom:584.696700px;}
.y121{bottom:584.834400px;}
.y3a{bottom:586.634400px;}
.y138{bottom:587.772300px;}
.y22b{bottom:588.862800px;}
.y66{bottom:591.400500px;}
.y1d1{bottom:595.524150px;}
.y92{bottom:596.252700px;}
.yf4{bottom:600.244650px;}
.y1ff{bottom:602.696700px;}
.y120{bottom:602.834400px;}
.y39{bottom:604.634400px;}
.ybf{bottom:605.772300px;}
.y22a{bottom:606.862800px;}
.y65{bottom:609.400500px;}
.y244{bottom:611.299050px;}
.y1d0{bottom:613.524150px;}
.y91{bottom:614.252700px;}
.y1b7{bottom:614.454450px;}
.y1b6{bottom:615.790950px;}
.yc{bottom:616.469550px;}
.y1b8{bottom:616.897500px;}
.yf3{bottom:618.244650px;}
.y1b9{bottom:618.349200px;}
.y1fe{bottom:620.696700px;}
.y11f{bottom:620.834400px;}
.y38{bottom:622.634400px;}
.ybe{bottom:623.772300px;}
.y229{bottom:624.862800px;}
.y64{bottom:627.400500px;}
.yb{bottom:631.469550px;}
.y90{bottom:632.252700px;}
.yf2{bottom:636.244650px;}
.y1fd{bottom:638.696700px;}
.y11e{bottom:638.834400px;}
.y37{bottom:640.634400px;}
.ybd{bottom:641.772300px;}
.y228{bottom:642.862800px;}
.y63{bottom:645.400500px;}
.y1b3{bottom:646.937100px;}
.y1a6{bottom:648.542550px;}
.y8f{bottom:650.252700px;}
.y1a7{bottom:651.093750px;}
.y187{bottom:652.611000px;}
.y1a5{bottom:653.321100px;}
.yf1{bottom:654.244650px;}
.y1fc{bottom:656.696700px;}
.y11d{bottom:656.834400px;}
.y36{bottom:658.634400px;}
.ya{bottom:659.225400px;}
.y1f6{bottom:659.655150px;}
.ybc{bottom:659.772300px;}
.y227{bottom:660.862800px;}
.y62{bottom:663.400500px;}
.y176{bottom:663.917850px;}
.y179{bottom:670.735200px;}
.y8e{bottom:671.252700px;}
.yf0{bottom:672.244650px;}
.y175{bottom:673.645800px;}
.y177{bottom:673.772850px;}
.y178{bottom:674.090100px;}
.y1fb{bottom:674.696700px;}
.y11c{bottom:674.834400px;}
.y1a4{bottom:675.779850px;}
.y35{bottom:676.634400px;}
.y1a8{bottom:677.418750px;}
.ybb{bottom:677.772300px;}
.y226{bottom:678.862800px;}
.y61{bottom:681.400500px;}
.y1f5{bottom:686.486700px;}
.y8d{bottom:689.252700px;}
.yef{bottom:690.244650px;}
.y1fa{bottom:692.696700px;}
.y11b{bottom:692.834400px;}
.y1bb{bottom:693.387300px;}
.y1ba{bottom:694.608300px;}
.y34{bottom:694.634400px;}
.y1bc{bottom:695.714850px;}
.yba{bottom:695.772300px;}
.y225{bottom:696.862800px;}
.y1bd{bottom:697.166400px;}
.y60{bottom:699.400500px;}
.y9{bottom:699.737250px;}
.y8c{bottom:707.252700px;}
.y1f4{bottom:708.206700px;}
.yee{bottom:708.244650px;}
.y1f9{bottom:710.696700px;}
.y11a{bottom:710.834400px;}
.y33{bottom:712.634400px;}
.yb9{bottom:713.772300px;}
.y224{bottom:714.862800px;}
.y5f{bottom:717.400500px;}
.y1f3{bottom:726.206700px;}
.y8{bottom:726.241200px;}
.yed{bottom:726.244650px;}
.y1f8{bottom:728.696700px;}
.y119{bottom:728.834400px;}
.y32{bottom:730.634400px;}
.yb8{bottom:731.772300px;}
.y223{bottom:732.862800px;}
.y8b{bottom:733.756650px;}
.y5e{bottom:735.400500px;}
.y118{bottom:746.834400px;}
.y1f2{bottom:747.926550px;}
.yec{bottom:748.496700px;}
.y31{bottom:748.634400px;}
.yb7{bottom:749.772300px;}
.y222{bottom:750.862800px;}
.y8a{bottom:760.260450px;}
.y1f7{bottom:763.704600px;}
.y7{bottom:764.039850px;}
.y17d{bottom:764.194950px;}
.y117{bottom:764.834400px;}
.y1f1{bottom:765.926550px;}
.y17c{bottom:766.152600px;}
.y30{bottom:766.634400px;}
.y17f{bottom:766.861350px;}
.yb6{bottom:767.772300px;}
.y17e{bottom:767.974950px;}
.y221{bottom:768.862800px;}
.y17b{bottom:769.257600px;}
.y5d{bottom:770.408400px;}
.yeb{bottom:770.748750px;}
.y1a9{bottom:770.804550px;}
.y1ac{bottom:773.922750px;}
.y1be{bottom:774.372300px;}
.y1bf{bottom:775.917900px;}
.y1ab{bottom:777.318000px;}
.y89{bottom:778.260450px;}
.y1c0{bottom:779.157750px;}
.y1aa{bottom:779.275650px;}
.y17a{bottom:779.699850px;}
.y116{bottom:782.834400px;}
.y1c1{bottom:784.071600px;}
.y2f{bottom:784.634400px;}
.yb5{bottom:785.772300px;}
.y220{bottom:786.862800px;}
.y1ad{bottom:787.159500px;}
.y1ef{bottom:787.646400px;}
.y6{bottom:789.239850px;}
.y5c{bottom:790.208400px;}
.yea{bottom:793.000650px;}
.y88{bottom:800.512500px;}
.y115{bottom:800.834400px;}
.y2e{bottom:802.634400px;}
.yb4{bottom:803.772300px;}
.y21f{bottom:804.862800px;}
.y1ee{bottom:805.646400px;}
.ye9{bottom:811.000650px;}
.y5{bottom:814.439700px;}
.y1f0{bottom:814.646400px;}
.y114{bottom:818.834400px;}
.y2d{bottom:820.634400px;}
.yb3{bottom:821.772300px;}
.y87{bottom:822.764400px;}
.y21e{bottom:822.862800px;}
.y1ed{bottom:823.646400px;}
.y183{bottom:830.967150px;}
.y184{bottom:832.964850px;}
.ydf{bottom:835.378500px;}
.y113{bottom:836.834400px;}
.y2c{bottom:838.634400px;}
.ye7{bottom:839.128650px;}
.y5b{bottom:839.772150px;}
.yb2{bottom:839.772300px;}
.y86{bottom:840.764400px;}
.y21d{bottom:840.862800px;}
.y182{bottom:841.011150px;}
.y1ec{bottom:841.646400px;}
.y185{bottom:844.224000px;}
.y181{bottom:847.376400px;}
.y180{bottom:847.545000px;}
.y1b0{bottom:848.129250px;}
.ye2{bottom:850.097400px;}
.y1b1{bottom:850.572450px;}
.ye8{bottom:851.784900px;}
.y1b2{bottom:852.024000px;}
.y1af{bottom:853.779000px;}
.yde{bottom:854.512500px;}
.y112{bottom:854.834400px;}
.ye1{bottom:854.878650px;}
.y1ae{bottom:855.345000px;}
.y2b{bottom:856.634400px;}
.y5a{bottom:857.772150px;}
.yb1{bottom:857.772300px;}
.y85{bottom:858.764400px;}
.y21c{bottom:858.862800px;}
.y1eb{bottom:863.366250px;}
.ye5{bottom:869.644200px;}
.y2a{bottom:874.634400px;}
.y59{bottom:875.772150px;}
.yb0{bottom:875.772300px;}
.y21b{bottom:876.862800px;}
.y84{bottom:885.268350px;}
.y111{bottom:889.842150px;}
.y58{bottom:893.772150px;}
.yaf{bottom:893.772300px;}
.y1ea{bottom:894.012300px;}
.y21a{bottom:894.862800px;}
.y29{bottom:909.642300px;}
.y57{bottom:911.772150px;}
.y83{bottom:911.772300px;}
.y1e9{bottom:912.012300px;}
.y219{bottom:912.862800px;}
.y1{bottom:915.399750px;}
.y26{bottom:943.435350px;}
.y25{bottom:960.287250px;}
.y28{bottom:964.299450px;}
.y56{bottom:965.632950px;}
.y27{bottom:965.770050px;}
.h2{height:29.007000px;}
.h3{height:29.106000px;}
.hd{height:30.030000px;}
.h19{height:30.187500px;}
.h14{height:30.705000px;}
.hc{height:32.340000px;}
.h17{height:32.343750px;}
.hb{height:33.947754px;}
.h6{height:34.176000px;}
.h8{height:34.368000px;}
.he{height:34.650000px;}
.h7{height:35.160000px;}
.ha{height:38.664000px;}
.h1b{height:38.718000px;}
.h9{height:39.555000px;}
.h15{height:40.500000px;}
.h1a{height:40.554594px;}
.h13{height:42.720000px;}
.h10{height:42.960000px;}
.h1e{height:43.359375px;}
.h11{height:45.025680px;}
.h12{height:46.500000px;}
.hf{height:48.345000px;}
.h5{height:51.606060px;}
.h18{height:60.750000px;}
.h4{height:61.530000px;}
.h16{height:64.516500px;}
.h1d{height:74.664000px;}
.h1c{height:110.664000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w3{width:117.000000px;}
.w2{width:237.000000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x18{left:2.766000px;}
.x1b{left:18.703500px;}
.x1f{left:28.172250px;}
.x1d{left:39.562800px;}
.x11{left:42.937950px;}
.x22{left:49.078500px;}
.x16{left:52.453500px;}
.x20{left:55.687800px;}
.x14{left:59.062950px;}
.x2{left:78.661350px;}
.x73{left:84.614100px;}
.x25{left:89.326350px;}
.xd{left:95.669250px;}
.x7d{left:99.921300px;}
.xc{left:102.661350px;}
.x5c{left:107.326350px;}
.x24{left:112.677150px;}
.x28{left:119.972400px;}
.x53{left:121.803600px;}
.x9{left:124.846800px;}
.x6e{left:126.509850px;}
.x2c{left:128.972400px;}
.x55{left:130.803600px;}
.x3{left:134.311500px;}
.x6f{left:136.344150px;}
.x29{left:137.972400px;}
.x54{left:139.803600px;}
.x2d{left:146.972400px;}
.x56{left:148.803600px;}
.x7b{left:151.204350px;}
.x26{left:155.972400px;}
.x2e{left:164.972400px;}
.x57{left:166.803600px;}
.x6b{left:170.898450px;}
.x27{left:173.972400px;}
.x4{left:181.755300px;}
.x2f{left:182.972400px;}
.xf{left:189.656700px;}
.x2a{left:191.972400px;}
.x30{left:200.972400px;}
.x2b{left:209.972400px;}
.x42{left:213.692250px;}
.xe{left:232.287000px;}
.x5d{left:235.412250px;}
.x7c{left:237.991350px;}
.x43{left:244.412100px;}
.x10{left:246.162450px;}
.x31{left:249.692250px;}
.x44{left:253.412100px;}
.x5e{left:257.132100px;}
.x13{left:263.834250px;}
.x32{left:271.412100px;}
.x15{left:275.224950px;}
.x12{left:278.131200px;}
.x6c{left:279.497850px;}
.x33{left:289.412100px;}
.x5{left:293.088300px;}
.x5f{left:300.571800px;}
.x1a{left:302.412300px;}
.x1{left:303.902400px;}
.x70{left:309.079050px;}
.x34{left:311.132100px;}
.x74{left:317.023800px;}
.x60{left:322.291650px;}
.x45{left:323.851800px;}
.x6d{left:328.049400px;}
.x35{left:329.132100px;}
.x21{left:331.849800px;}
.x46{left:332.851800px;}
.x1e{left:334.756050px;}
.x37{left:338.132100px;}
.x6{left:341.023950px;}
.x61{left:344.011650px;}
.x36{left:347.132100px;}
.x47{left:354.571650px;}
.x62{left:362.011650px;}
.x38{left:368.851950px;}
.x48{left:372.571650px;}
.x19{left:378.396750px;}
.x63{left:383.731500px;}
.x39{left:390.571800px;}
.x1c{left:393.490500px;}
.x58{left:394.937550px;}
.xa{left:401.057100px;}
.x64{left:405.451350px;}
.x23{left:409.287300px;}
.x59{left:412.937550px;}
.x49{left:416.011350px;}
.x65{left:427.171200px;}
.x3a{left:430.291650px;}
.x4a{left:434.011350px;}
.x7{left:440.945400px;}
.x3b{left:448.291650px;}
.x5a{left:452.657400px;}
.x72{left:455.089650px;}
.x71{left:456.838050px;}
.x7a{left:459.707250px;}
.x77{left:461.489100px;}
.x79{left:462.947250px;}
.x4b{left:464.731350px;}
.xb{left:466.749000px;}
.x17{left:469.287450px;}
.x66{left:470.611050px;}
.x75{left:471.863550px;}
.x4c{left:473.731350px;}
.x3c{left:488.011500px;}
.x78{left:491.350650px;}
.x8{left:492.708750px;}
.x5b{left:501.208950px;}
.x4d{left:504.451200px;}
.x3d{left:506.011500px;}
.x4e{left:513.451200px;}
.x76{left:515.400450px;}
.x3e{left:527.731350px;}
.x67{left:535.770600px;}
.x4f{left:544.171050px;}
.x3f{left:549.451200px;}
.x50{left:553.171050px;}
.x68{left:557.490450px;}
.x40{left:571.171200px;}
.x51{left:574.890900px;}
.x69{left:579.210450px;}
.x52{left:596.610750px;}
.x41{left:598.002750px;}
.x6a{left:600.930300px;}
@media print{
.v4{vertical-align:-17.760000pt;}
.v3{vertical-align:-4.741333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:11.000000pt;}
.v6{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v7{vertical-align:32.000000pt;}
.v8{vertical-align:64.000000pt;}
.ls20{letter-spacing:-2.133333pt;}
.ls8{letter-spacing:-1.490667pt;}
.ls3d{letter-spacing:-1.392000pt;}
.ls2e{letter-spacing:-1.066667pt;}
.ls35{letter-spacing:-1.008000pt;}
.ls3{letter-spacing:-0.938667pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls40{letter-spacing:-0.720000pt;}
.ls6{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls38{letter-spacing:-0.624000pt;}
.ls3b{letter-spacing:-0.600000pt;}
.ls39{letter-spacing:-0.576000pt;}
.ls2b{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.448000pt;}
.ls2a{letter-spacing:-0.426667pt;}
.lsb{letter-spacing:-0.404213pt;}
.ls34{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.373120pt;}
.ls2d{letter-spacing:-0.342027pt;}
.lse{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.310933pt;}
.ls19{letter-spacing:-0.306667pt;}
.ls3c{letter-spacing:-0.240000pt;}
.ls37{letter-spacing:-0.223872pt;}
.ls2c{letter-spacing:-0.217653pt;}
.ls36{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.111936pt;}
.ls30{letter-spacing:-0.040000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000053pt;}
.ls26{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.155733pt;}
.ls0{letter-spacing:0.176000pt;}
.ls1b{letter-spacing:0.191667pt;}
.ls3e{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.266667pt;}
.ls3a{letter-spacing:0.288000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.404213pt;}
.lsf{letter-spacing:0.533333pt;}
.ls2f{letter-spacing:0.800000pt;}
.ls5{letter-spacing:1.066667pt;}
.ls31{letter-spacing:1.333333pt;}
.ls24{letter-spacing:1.600000pt;}
.ls3f{letter-spacing:35.750933pt;}
.ls18{letter-spacing:55.893333pt;}
.ls16{letter-spacing:63.146667pt;}
.ls1e{letter-spacing:69.504000pt;}
.ls1c{letter-spacing:73.715000pt;}
.ls17{letter-spacing:82.773333pt;}
.ls32{letter-spacing:99.221333pt;}
.ls28{letter-spacing:143.808000pt;}
.ls27{letter-spacing:163.683333pt;}
.ls25{letter-spacing:177.973333pt;}
.ls14{letter-spacing:179.893333pt;}
.ls23{letter-spacing:203.330667pt;}
.ls1d{letter-spacing:219.168000pt;}
.ls1a{letter-spacing:240.120000pt;}
.ls29{letter-spacing:259.977600pt;}
.ls12{letter-spacing:543.952533pt;}
.ls13{letter-spacing:615.997333pt;}
.ls1f{letter-spacing:917.338608pt;}
.ws9d{word-spacing:-917.338608pt;}
.wsaa{word-spacing:-259.977600pt;}
.ws8a{word-spacing:-248.898333pt;}
.ws8d{word-spacing:-219.216000pt;}
.ws86{word-spacing:-192.106667pt;}
.wsa5{word-spacing:-177.973333pt;}
.wsa8{word-spacing:-163.683333pt;}
.wsa9{word-spacing:-143.808000pt;}
.ws9b{word-spacing:-82.773333pt;}
.ws8c{word-spacing:-82.493333pt;}
.ws88{word-spacing:-75.360000pt;}
.ws8e{word-spacing:-69.552000pt;}
.ws9c{word-spacing:-55.893333pt;}
.ws1{word-spacing:-42.666667pt;}
.ws23{word-spacing:-14.490667pt;}
.wse4{word-spacing:-13.440000pt;}
.ws4b{word-spacing:-13.173333pt;}
.ws92{word-spacing:-12.640000pt;}
.ws87{word-spacing:-12.533333pt;}
.ws85{word-spacing:-12.373333pt;}
.ws68{word-spacing:-12.213333pt;}
.ws25{word-spacing:-12.106667pt;}
.ws5{word-spacing:-11.856000pt;}
.ws6c{word-spacing:-11.786667pt;}
.ws90{word-spacing:-11.626667pt;}
.ws26{word-spacing:-11.466667pt;}
.ws67{word-spacing:-11.413333pt;}
.ws6{word-spacing:-10.896000pt;}
.wsa4{word-spacing:-10.680000pt;}
.wsd5{word-spacing:-10.640000pt;}
.ws3{word-spacing:-10.538667pt;}
.wsf4{word-spacing:-10.416000pt;}
.ws100{word-spacing:-10.272000pt;}
.ws118{word-spacing:-10.176000pt;}
.ws8f{word-spacing:-10.080000pt;}
.ws0{word-spacing:-9.968000pt;}
.ws150{word-spacing:-9.960000pt;}
.ws108{word-spacing:-9.936000pt;}
.ws125{word-spacing:-9.898667pt;}
.ws4{word-spacing:-9.685333pt;}
.ws2{word-spacing:-9.600000pt;}
.ws89{word-spacing:-8.471667pt;}
.ws91{word-spacing:-7.524587pt;}
.ws66{word-spacing:-7.120373pt;}
.ws24{word-spacing:-7.058187pt;}
.wsbe{word-spacing:-6.902720pt;}
.ws6b{word-spacing:-6.809440pt;}
.wsbf{word-spacing:-6.778347pt;}
.ws6a{word-spacing:-6.747253pt;}
.ws69{word-spacing:-6.716160pt;}
.ws104{word-spacing:-6.672000pt;}
.wsf6{word-spacing:-6.072528pt;}
.wsf5{word-spacing:-5.960592pt;}
.wsf7{word-spacing:-5.848656pt;}
.ws12a{word-spacing:-4.224000pt;}
.wse2{word-spacing:-4.000000pt;}
.wsce{word-spacing:-3.733333pt;}
.wse1{word-spacing:-3.413333pt;}
.ws7a{word-spacing:-3.360000pt;}
.ws7b{word-spacing:-3.306667pt;}
.ws13d{word-spacing:-3.120000pt;}
.ws5b{word-spacing:-3.040000pt;}
.ws16{word-spacing:-2.832000pt;}
.ws159{word-spacing:-2.560000pt;}
.ws71{word-spacing:-2.400000pt;}
.ws126{word-spacing:-2.346667pt;}
.ws74{word-spacing:-2.186667pt;}
.ws7f{word-spacing:-2.133333pt;}
.wsba{word-spacing:-2.080000pt;}
.ws13a{word-spacing:-2.048000pt;}
.ws57{word-spacing:-2.026667pt;}
.ws128{word-spacing:-2.016000pt;}
.ws50{word-spacing:-1.973333pt;}
.ws34{word-spacing:-1.920000pt;}
.ws33{word-spacing:-1.866667pt;}
.ws14a{word-spacing:-1.824000pt;}
.ws2a{word-spacing:-1.760000pt;}
.ws9{word-spacing:-1.747200pt;}
.wsf{word-spacing:-1.706667pt;}
.ws36{word-spacing:-1.600000pt;}
.ws2c{word-spacing:-1.493333pt;}
.wsa2{word-spacing:-1.440000pt;}
.ws95{word-spacing:-1.386667pt;}
.ws83{word-spacing:-1.365333pt;}
.ws30{word-spacing:-1.280000pt;}
.ws13{word-spacing:-1.248000pt;}
.ws3d{word-spacing:-1.226667pt;}
.ws49{word-spacing:-1.194667pt;}
.wsd3{word-spacing:-1.173333pt;}
.wsd2{word-spacing:-1.120000pt;}
.wsaf{word-spacing:-1.066667pt;}
.ws19{word-spacing:-1.008000pt;}
.wsc{word-spacing:-0.970667pt;}
.ws4d{word-spacing:-0.960000pt;}
.wsd9{word-spacing:-0.906667pt;}
.ws141{word-spacing:-0.864000pt;}
.ws77{word-spacing:-0.853333pt;}
.ws11c{word-spacing:-0.816000pt;}
.ws75{word-spacing:-0.800000pt;}
.ws17{word-spacing:-0.720000pt;}
.ws54{word-spacing:-0.693333pt;}
.wscd{word-spacing:-0.640000pt;}
.wsf2{word-spacing:-0.586667pt;}
.ws7{word-spacing:-0.563200pt;}
.wsb8{word-spacing:-0.533333pt;}
.ws99{word-spacing:-0.480000pt;}
.wsa{word-spacing:-0.470400pt;}
.wsb{word-spacing:-0.436800pt;}
.ws59{word-spacing:-0.426667pt;}
.ws44{word-spacing:-0.373333pt;}
.ws21{word-spacing:-0.336000pt;}
.wsd1{word-spacing:-0.320000pt;}
.ws111{word-spacing:-0.288000pt;}
.ws31{word-spacing:-0.266667pt;}
.ws11a{word-spacing:-0.240000pt;}
.ws72{word-spacing:-0.213333pt;}
.ws11b{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.144000pt;}
.ws107{word-spacing:-0.096000pt;}
.wsa6{word-spacing:-0.053333pt;}
.ws8{word-spacing:0.000000pt;}
.wsde{word-spacing:0.053333pt;}
.ws2e{word-spacing:0.106667pt;}
.ws12{word-spacing:0.144000pt;}
.ws80{word-spacing:0.160000pt;}
.ws105{word-spacing:0.192000pt;}
.wsea{word-spacing:0.213333pt;}
.ws28{word-spacing:0.266667pt;}
.wsa7{word-spacing:0.306667pt;}
.wse9{word-spacing:0.320000pt;}
.ws45{word-spacing:0.373333pt;}
.ws102{word-spacing:0.384000pt;}
.ws48{word-spacing:0.426667pt;}
.ws22{word-spacing:0.448000pt;}
.wsa0{word-spacing:0.480000pt;}
.wsd{word-spacing:0.512000pt;}
.ws123{word-spacing:0.528000pt;}
.ws106{word-spacing:0.576000pt;}
.ws6e{word-spacing:0.640000pt;}
.ws9e{word-spacing:0.746667pt;}
.ws154{word-spacing:0.768000pt;}
.ws79{word-spacing:0.800000pt;}
.ws13e{word-spacing:0.816000pt;}
.ws82{word-spacing:0.853333pt;}
.ws136{word-spacing:0.864000pt;}
.ws41{word-spacing:0.906667pt;}
.ws132{word-spacing:0.912000pt;}
.ws103{word-spacing:1.008000pt;}
.ws3a{word-spacing:1.013333pt;}
.ws12e{word-spacing:1.056000pt;}
.ws3f{word-spacing:1.066667pt;}
.ws146{word-spacing:1.104000pt;}
.ws56{word-spacing:1.120000pt;}
.ws2b{word-spacing:1.226667pt;}
.ws13f{word-spacing:1.248000pt;}
.ws32{word-spacing:1.280000pt;}
.wse7{word-spacing:1.333333pt;}
.wsb0{word-spacing:1.386667pt;}
.ws76{word-spacing:1.440000pt;}
.wsc0{word-spacing:1.493333pt;}
.ws53{word-spacing:1.546667pt;}
.ws13c{word-spacing:1.584000pt;}
.ws46{word-spacing:1.706667pt;}
.wsb7{word-spacing:1.760000pt;}
.ws18{word-spacing:1.776000pt;}
.wsc6{word-spacing:1.813333pt;}
.wsac{word-spacing:1.866667pt;}
.ws20{word-spacing:1.920000pt;}
.wsc1{word-spacing:1.973333pt;}
.ws7d{word-spacing:2.026667pt;}
.wsd8{word-spacing:2.080000pt;}
.ws120{word-spacing:2.133333pt;}
.wsc9{word-spacing:2.186667pt;}
.ws1c{word-spacing:2.208000pt;}
.ws9a{word-spacing:2.240000pt;}
.ws14{word-spacing:2.256000pt;}
.ws43{word-spacing:2.293333pt;}
.ws3e{word-spacing:2.346667pt;}
.ws81{word-spacing:2.389333pt;}
.wsed{word-spacing:2.400000pt;}
.ws51{word-spacing:2.453333pt;}
.wsb9{word-spacing:2.506667pt;}
.wsc8{word-spacing:2.560000pt;}
.ws122{word-spacing:2.613333pt;}
.wsad{word-spacing:2.666667pt;}
.ws1e{word-spacing:2.688000pt;}
.ws42{word-spacing:2.720000pt;}
.ws1f{word-spacing:2.736000pt;}
.wsd6{word-spacing:2.773333pt;}
.wsec{word-spacing:2.826667pt;}
.ws58{word-spacing:2.880000pt;}
.ws47{word-spacing:2.933333pt;}
.ws14c{word-spacing:2.976000pt;}
.wscf{word-spacing:2.986667pt;}
.ws61{word-spacing:3.093333pt;}
.ws2d{word-spacing:3.146667pt;}
.ws133{word-spacing:3.168000pt;}
.ws127{word-spacing:3.200000pt;}
.ws7e{word-spacing:3.253333pt;}
.ws98{word-spacing:3.306667pt;}
.ws3b{word-spacing:3.360000pt;}
.wse6{word-spacing:3.413333pt;}
.ws65{word-spacing:3.466667pt;}
.ws135{word-spacing:3.504000pt;}
.wse8{word-spacing:3.520000pt;}
.wsb4{word-spacing:3.680000pt;}
.ws131{word-spacing:3.744000pt;}
.ws4f{word-spacing:3.786667pt;}
.ws62{word-spacing:3.893333pt;}
.wse{word-spacing:3.925333pt;}
.ws1d{word-spacing:3.984000pt;}
.ws37{word-spacing:4.000000pt;}
.wsd0{word-spacing:4.053333pt;}
.ws134{word-spacing:4.080000pt;}
.ws39{word-spacing:4.106667pt;}
.ws5d{word-spacing:4.213333pt;}
.ws55{word-spacing:4.266667pt;}
.ws97{word-spacing:4.426667pt;}
.ws137{word-spacing:4.464000pt;}
.wscb{word-spacing:4.480000pt;}
.wsbb{word-spacing:4.586667pt;}
.ws4c{word-spacing:4.640000pt;}
.ws140{word-spacing:4.656000pt;}
.ws157{word-spacing:4.693333pt;}
.wsc7{word-spacing:4.800000pt;}
.ws1a{word-spacing:4.896000pt;}
.wseb{word-spacing:4.906667pt;}
.ws73{word-spacing:4.960000pt;}
.ws7c{word-spacing:5.013333pt;}
.wsf0{word-spacing:5.066667pt;}
.ws12d{word-spacing:5.088000pt;}
.wsb3{word-spacing:5.120000pt;}
.ws60{word-spacing:5.173333pt;}
.ws6f{word-spacing:5.280000pt;}
.ws78{word-spacing:5.333333pt;}
.wsa3{word-spacing:5.386667pt;}
.ws63{word-spacing:5.440000pt;}
.ws155{word-spacing:5.472000pt;}
.wse5{word-spacing:5.493333pt;}
.ws1b{word-spacing:5.520000pt;}
.wsb5{word-spacing:5.546667pt;}
.ws64{word-spacing:5.600000pt;}
.ws29{word-spacing:5.653333pt;}
.wsb6{word-spacing:5.760000pt;}
.wsa1{word-spacing:5.813333pt;}
.wsab{word-spacing:5.920000pt;}
.ws38{word-spacing:6.080000pt;}
.ws3c{word-spacing:6.133333pt;}
.ws27{word-spacing:6.186667pt;}
.ws93{word-spacing:6.240000pt;}
.ws11{word-spacing:6.336000pt;}
.ws129{word-spacing:6.384000pt;}
.wsc5{word-spacing:6.400000pt;}
.ws94{word-spacing:6.613333pt;}
.ws142{word-spacing:6.624000pt;}
.wsdf{word-spacing:6.666667pt;}
.ws5a{word-spacing:6.720000pt;}
.ws35{word-spacing:6.880000pt;}
.ws96{word-spacing:6.933333pt;}
.ws52{word-spacing:7.093333pt;}
.ws148{word-spacing:7.344000pt;}
.wsdd{word-spacing:7.360000pt;}
.ws12f{word-spacing:7.440000pt;}
.ws4e{word-spacing:7.466667pt;}
.ws2f{word-spacing:7.840000pt;}
.wsae{word-spacing:8.000000pt;}
.ws121{word-spacing:8.053333pt;}
.wse0{word-spacing:8.266667pt;}
.wsd7{word-spacing:8.426667pt;}
.ws40{word-spacing:8.533333pt;}
.wsb2{word-spacing:8.640000pt;}
.wsbc{word-spacing:8.693333pt;}
.ws14e{word-spacing:8.736000pt;}
.wsc3{word-spacing:8.800000pt;}
.ws139{word-spacing:8.917333pt;}
.ws143{word-spacing:9.024000pt;}
.ws10{word-spacing:9.216000pt;}
.wsb1{word-spacing:9.226667pt;}
.wsc2{word-spacing:9.440000pt;}
.ws13b{word-spacing:9.600000pt;}
.ws158{word-spacing:9.866667pt;}
.ws145{word-spacing:9.936000pt;}
.ws14d{word-spacing:10.272000pt;}
.wsef{word-spacing:10.293333pt;}
.ws138{word-spacing:10.608000pt;}
.ws9f{word-spacing:10.933333pt;}
.ws5e{word-spacing:10.986667pt;}
.ws5f{word-spacing:11.200000pt;}
.ws152{word-spacing:11.568000pt;}
.ws12c{word-spacing:12.144000pt;}
.wsf1{word-spacing:12.586667pt;}
.wse3{word-spacing:13.493333pt;}
.wsc4{word-spacing:13.706667pt;}
.ws12b{word-spacing:13.776000pt;}
.ws14b{word-spacing:13.824000pt;}
.ws5c{word-spacing:14.186667pt;}
.wsdb{word-spacing:14.720000pt;}
.wsda{word-spacing:14.880000pt;}
.wsdc{word-spacing:14.933333pt;}
.ws147{word-spacing:15.312000pt;}
.ws144{word-spacing:16.560000pt;}
.ws151{word-spacing:17.232000pt;}
.wsee{word-spacing:17.440000pt;}
.ws153{word-spacing:20.208000pt;}
.ws156{word-spacing:21.072000pt;}
.ws130{word-spacing:30.288000pt;}
.ws149{word-spacing:43.584000pt;}
.ws11f{word-spacing:48.730667pt;}
.ws8b{word-spacing:76.206667pt;}
.ws10d{word-spacing:102.338667pt;}
.ws115{word-spacing:113.858667pt;}
.wsf9{word-spacing:135.550933pt;}
.ws114{word-spacing:167.413333pt;}
.ws10f{word-spacing:169.701333pt;}
.ws109{word-spacing:180.180800pt;}
.ws11e{word-spacing:192.254933pt;}
.ws119{word-spacing:200.799467pt;}
.wsfc{word-spacing:202.858133pt;}
.ws101{word-spacing:214.378667pt;}
.wsfd{word-spacing:217.587200pt;}
.wsfb{word-spacing:219.171200pt;}
.ws10e{word-spacing:258.064533pt;}
.ws10c{word-spacing:262.341333pt;}
.ws116{word-spacing:271.064533pt;}
.wsfa{word-spacing:313.582933pt;}
.ws117{word-spacing:332.744533pt;}
.wsff{word-spacing:371.258133pt;}
.ws110{word-spacing:371.872533pt;}
.ws10b{word-spacing:373.353600pt;}
.ws10a{word-spacing:416.848533pt;}
.ws113{word-spacing:417.609600pt;}
.wsfe{word-spacing:469.413333pt;}
.wsf8{word-spacing:469.413867pt;}
.ws70{word-spacing:672.266667pt;}
.ws6d{word-spacing:707.626667pt;}
.wscc{word-spacing:761.280000pt;}
.wsca{word-spacing:772.373333pt;}
.ws124{word-spacing:1201.183467pt;}
.wsf3{word-spacing:1201.943467pt;}
.wsbd{word-spacing:1201.963733pt;}
.ws11d{word-spacing:1202.043200pt;}
.ws84{word-spacing:1202.823467pt;}
.ws14f{word-spacing:1203.142933pt;}
.wsd4{word-spacing:1203.243200pt;}
.ws112{word-spacing:1208.042667pt;}
.ws4a{word-spacing:1208.203200pt;}
._15{margin-left:-180.000000pt;}
._17{margin-left:-82.723333pt;}
._16{margin-left:-63.893333pt;}
._18{margin-left:-60.528000pt;}
._7a{margin-left:-51.924800pt;}
._19{margin-left:-11.712000pt;}
._c{margin-left:-7.788267pt;}
._4{margin-left:-6.048000pt;}
._6{margin-left:-4.662187pt;}
._3{margin-left:-3.492107pt;}
._1{margin-left:-2.206827pt;}
._0{margin-left:-0.991200pt;}
._2{width:1.176427pt;}
._a{width:2.136000pt;}
._b{width:3.232533pt;}
._9{width:4.567573pt;}
._8{width:6.182400pt;}
._f{width:7.296000pt;}
._7{width:8.811627pt;}
._11{width:10.446027pt;}
._22{width:12.164160pt;}
._1d{width:13.165227pt;}
._10{width:14.265067pt;}
._20{width:15.364533pt;}
._21{width:16.943947pt;}
._79{width:18.427200pt;}
._5{width:19.840000pt;}
._77{width:20.949333pt;}
._1c{width:26.499200pt;}
._14{width:27.904000pt;}
._e{width:30.293333pt;}
._d{width:31.488000pt;}
._56{width:39.591467pt;}
._73{width:43.690667pt;}
._3d{width:107.896800pt;}
._2e{width:112.270400pt;}
._3a{width:113.234667pt;}
._41{width:123.031200pt;}
._3f{width:124.041707pt;}
._32{width:125.132533pt;}
._29{width:129.556960pt;}
._45{width:132.644800pt;}
._37{width:133.955733pt;}
._4d{width:136.527787pt;}
._36{width:138.309333pt;}
._4c{width:142.829067pt;}
._50{width:145.469120pt;}
._28{width:146.519360pt;}
._3c{width:149.525653pt;}
._4f{width:151.277067pt;}
._40{width:157.038933pt;}
._26{width:157.966933pt;}
._46{width:159.543627pt;}
._49{width:160.648800pt;}
._39{width:168.036800pt;}
._47{width:175.032000pt;}
._2f{width:176.060533pt;}
._3b{width:178.869760pt;}
._43{width:179.784533pt;}
._2a{width:184.435520pt;}
._42{width:190.277600pt;}
._38{width:191.368800pt;}
._54{width:193.591360pt;}
._6b{width:194.607467pt;}
._78{width:196.496533pt;}
._44{width:200.910827pt;}
._58{width:203.150933pt;}
._74{width:207.709333pt;}
._52{width:210.775040pt;}
._5d{width:211.695467pt;}
._23{width:213.681707pt;}
._5f{width:214.671467pt;}
._33{width:218.547200pt;}
._3e{width:219.830560pt;}
._34{width:222.298133pt;}
._25{width:225.274667pt;}
._27{width:229.797013pt;}
._4a{width:230.952000pt;}
._24{width:232.086133pt;}
._30{width:233.765333pt;}
._48{width:239.688320pt;}
._4b{width:246.641173pt;}
._53{width:248.548053pt;}
._4e{width:256.897120pt;}
._2c{width:257.877867pt;}
._55{width:287.386133pt;}
._72{width:290.191467pt;}
._59{width:330.283733pt;}
._75{width:332.545067pt;}
._62{width:341.803733pt;}
._6c{width:344.779733pt;}
._71{width:351.863093pt;}
._5b{width:353.324267pt;}
._70{width:437.256320pt;}
._1a{width:459.520000pt;}
._13{width:597.549867pt;}
._76{width:618.388800pt;}
._12{width:632.505867pt;}
._1b{width:672.853333pt;}
._1f{width:686.705707pt;}
._1e{width:697.922027pt;}
._51{width:874.657067pt;}
._2b{width:1077.487467pt;}
._35{width:1086.032000pt;}
._2d{width:1089.006933pt;}
._31{width:1097.552000pt;}
._60{width:1178.902027pt;}
._61{width:1493.224427pt;}
._69{width:1538.761867pt;}
._66{width:1574.733920pt;}
._6f{width:1584.088107pt;}
._68{width:1590.761493pt;}
._6d{width:1596.839467pt;}
._64{width:1615.567467pt;}
._65{width:1626.455840pt;}
._6a{width:1629.239467pt;}
._5c{width:1661.961067pt;}
._5a{width:1666.137067pt;}
._5e{width:1667.280267pt;}
._63{width:1680.128053pt;}
._67{width:1696.551893pt;}
._57{width:1704.649867pt;}
._6e{width:1722.601867pt;}
.fsf{font-size:27.984000pt;}
.fsb{font-size:31.093333pt;}
.fs1{font-size:33.600000pt;}
.fs4{font-size:34.202667pt;}
.fs9{font-size:34.666667pt;}
.fs0{font-size:35.200000pt;}
.fs5{font-size:37.333333pt;}
.fsc{font-size:38.333333pt;}
.fs8{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fse{font-size:72.000000pt;}
.fs2{font-size:74.666667pt;}
.fsd{font-size:76.464000pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:3.332933pt;}
.ye4{bottom:3.333467pt;}
.ye3{bottom:13.083467pt;}
.yc7{bottom:15.832933pt;}
.ye6{bottom:15.833467pt;}
.yc2{bottom:17.332933pt;}
.ye0{bottom:17.333467pt;}
.y4{bottom:49.664267pt;}
.y3{bottom:60.864267pt;}
.y18b{bottom:68.031333pt;}
.yae{bottom:68.031467pt;}
.y55{bottom:68.031600pt;}
.y2{bottom:72.064267pt;}
.y189{bottom:73.322667pt;}
.y186{bottom:73.322800pt;}
.y1c3{bottom:73.322933pt;}
.y154{bottom:74.464267pt;}
.y156{bottom:76.349600pt;}
.y1cf{bottom:76.602400pt;}
.y82{bottom:77.689333pt;}
.yad{bottom:81.364800pt;}
.y54{bottom:81.365067pt;}
.y110{bottom:85.550800pt;}
.y18d{bottom:87.888800pt;}
.y153{bottom:90.464267pt;}
.y1ce{bottom:92.602400pt;}
.y81{bottom:93.689333pt;}
.yac{bottom:94.698133pt;}
.y53{bottom:94.698400pt;}
.y243{bottom:96.258800pt;}
.y10f{bottom:101.550800pt;}
.y24{bottom:103.720933pt;}
.y18c{bottom:105.723067pt;}
.y155{bottom:106.195467pt;}
.y152{bottom:106.464267pt;}
.yab{bottom:108.031467pt;}
.y1cd{bottom:108.602400pt;}
.y80{bottom:109.689333pt;}
.y242{bottom:112.258800pt;}
.y137{bottom:114.939333pt;}
.ydd{bottom:117.330400pt;}
.y10e{bottom:117.550800pt;}
.yaa{bottom:121.364800pt;}
.y151{bottom:122.464267pt;}
.y1cc{bottom:124.602400pt;}
.y7f{bottom:125.689333pt;}
.y241{bottom:128.258800pt;}
.y1b5{bottom:132.325200pt;}
.ydc{bottom:133.330400pt;}
.y10d{bottom:133.550800pt;}
.y136{bottom:134.718933pt;}
.y23{bottom:134.838933pt;}
.y218{bottom:135.730400pt;}
.y52{bottom:137.452800pt;}
.y150{bottom:138.464267pt;}
.y1cb{bottom:140.602400pt;}
.y7e{bottom:141.689333pt;}
.y240{bottom:144.258800pt;}
.ydb{bottom:149.330400pt;}
.y10c{bottom:149.550933pt;}
.y22{bottom:150.838933pt;}
.y217{bottom:151.730400pt;}
.y51{bottom:153.452800pt;}
.ya9{bottom:154.443333pt;}
.y14f{bottom:154.464267pt;}
.y135{bottom:154.498400pt;}
.y7d{bottom:157.689333pt;}
.y23f{bottom:160.258800pt;}
.yda{bottom:165.330400pt;}
.y10b{bottom:165.550933pt;}
.y216{bottom:167.730400pt;}
.y50{bottom:169.452800pt;}
.ya8{bottom:170.443333pt;}
.y14e{bottom:170.464267pt;}
.y134{bottom:170.498400pt;}
.y21{bottom:170.618533pt;}
.y1ca{bottom:171.720533pt;}
.y7c{bottom:173.689333pt;}
.y23e{bottom:176.258800pt;}
.yd9{bottom:181.330400pt;}
.y10a{bottom:181.550933pt;}
.y215{bottom:183.730400pt;}
.y4f{bottom:185.452800pt;}
.ya7{bottom:186.443333pt;}
.y14d{bottom:186.464267pt;}
.y7b{bottom:189.689333pt;}
.y23d{bottom:192.258800pt;}
.y18e{bottom:195.377467pt;}
.yd8{bottom:197.330400pt;}
.y109{bottom:197.550933pt;}
.y20{bottom:197.736667pt;}
.y133{bottom:197.837067pt;}
.y191{bottom:198.149200pt;}
.y214{bottom:199.730400pt;}
.y15a{bottom:200.222267pt;}
.y190{bottom:201.167067pt;}
.y4e{bottom:201.452800pt;}
.y159{bottom:201.962400pt;}
.ya6{bottom:202.443333pt;}
.y14c{bottom:202.464267pt;}
.y15c{bottom:202.592267pt;}
.y18f{bottom:202.907333pt;}
.y15b{bottom:203.582133pt;}
.y158{bottom:204.722267pt;}
.y7a{bottom:205.689333pt;}
.y23c{bottom:208.258800pt;}
.y192{bottom:209.915200pt;}
.y18a{bottom:212.984000pt;}
.y188{bottom:212.984267pt;}
.yd7{bottom:213.330400pt;}
.y108{bottom:213.550933pt;}
.y1f{bottom:213.736667pt;}
.y157{bottom:214.004267pt;}
.y213{bottom:215.730400pt;}
.y4d{bottom:217.452800pt;}
.y1e8{bottom:218.424000pt;}
.ya5{bottom:218.443333pt;}
.y14b{bottom:218.464267pt;}
.y132{bottom:221.396133pt;}
.y79{bottom:221.689333pt;}
.y23b{bottom:224.258800pt;}
.y1c4{bottom:225.699733pt;}
.yd6{bottom:229.330400pt;}
.y107{bottom:229.550933pt;}
.y1e{bottom:229.736667pt;}
.y212{bottom:231.730400pt;}
.y4c{bottom:233.452800pt;}
.y1c9{bottom:234.171733pt;}
.ya4{bottom:234.443333pt;}
.y14a{bottom:234.464267pt;}
.y131{bottom:237.396133pt;}
.y78{bottom:237.689333pt;}
.y23a{bottom:240.258800pt;}
.y1c5{bottom:240.321600pt;}
.y1e6{bottom:242.274400pt;}
.y1c8{bottom:242.607600pt;}
.y1c2{bottom:244.485600pt;}
.yd5{bottom:245.330400pt;}
.y106{bottom:245.550933pt;}
.y1d{bottom:245.736667pt;}
.y211{bottom:247.730400pt;}
.y1c6{bottom:249.291467pt;}
.y4b{bottom:249.452800pt;}
.y1e5{bottom:250.274400pt;}
.ya3{bottom:250.443333pt;}
.y149{bottom:250.464267pt;}
.y1c7{bottom:252.411600pt;}
.y77{bottom:253.689333pt;}
.y239{bottom:256.258800pt;}
.y130{bottom:257.175600pt;}
.y1e7{bottom:258.274400pt;}
.y160{bottom:260.513067pt;}
.y105{bottom:261.550933pt;}
.y1c{bottom:261.736667pt;}
.y161{bottom:262.288800pt;}
.y210{bottom:263.730400pt;}
.y195{bottom:264.110533pt;}
.yd4{bottom:265.110000pt;}
.y4a{bottom:265.452800pt;}
.y196{bottom:266.282267pt;}
.ya2{bottom:266.443333pt;}
.y148{bottom:266.464267pt;}
.y197{bottom:267.572533pt;}
.y194{bottom:269.132533pt;}
.y15f{bottom:269.440933pt;}
.y76{bottom:269.689333pt;}
.y193{bottom:270.524533pt;}
.y238{bottom:272.258800pt;}
.y162{bottom:272.296933pt;}
.y12f{bottom:273.175600pt;}
.y15e{bottom:275.098933pt;}
.y15d{bottom:275.248933pt;}
.y104{bottom:277.550933pt;}
.y1e3{bottom:277.580933pt;}
.y1b{bottom:277.736667pt;}
.y20f{bottom:279.730400pt;}
.yd3{bottom:281.110000pt;}
.y49{bottom:281.452800pt;}
.ya1{bottom:282.443333pt;}
.y147{bottom:282.464267pt;}
.y1e2{bottom:285.580933pt;}
.y75{bottom:285.689333pt;}
.y237{bottom:288.258800pt;}
.y12e{bottom:292.955200pt;}
.y250{bottom:293.084000pt;}
.y103{bottom:293.550933pt;}
.y1e4{bottom:293.580933pt;}
.y1a{bottom:293.736667pt;}
.y20e{bottom:295.730400pt;}
.yd2{bottom:297.110000pt;}
.y48{bottom:297.452800pt;}
.ya0{bottom:298.443333pt;}
.y146{bottom:298.464267pt;}
.y74{bottom:301.689333pt;}
.y236{bottom:304.258800pt;}
.y12d{bottom:308.955200pt;}
.y24f{bottom:309.084000pt;}
.y102{bottom:309.550933pt;}
.y19{bottom:309.736667pt;}
.y20d{bottom:311.730400pt;}
.y1e1{bottom:312.887600pt;}
.yd1{bottom:313.110000pt;}
.y47{bottom:313.452800pt;}
.y9f{bottom:314.443333pt;}
.y145{bottom:314.464267pt;}
.y73{bottom:317.689333pt;}
.y24e{bottom:325.084000pt;}
.y101{bottom:325.550933pt;}
.y18{bottom:325.736667pt;}
.y20c{bottom:327.730400pt;}
.y1e0{bottom:328.887600pt;}
.yd0{bottom:329.110000pt;}
.y46{bottom:329.452800pt;}
.y9e{bottom:330.443333pt;}
.y144{bottom:330.464267pt;}
.y72{bottom:333.689333pt;}
.y1b4{bottom:335.055067pt;}
.y235{bottom:335.376933pt;}
.y12c{bottom:336.293733pt;}
.y100{bottom:341.550933pt;}
.y20b{bottom:343.730400pt;}
.y199{bottom:345.360933pt;}
.y45{bottom:345.452800pt;}
.y17{bottom:345.516133pt;}
.y9d{bottom:346.443333pt;}
.y143{bottom:346.464267pt;}
.y1df{bottom:348.194133pt;}
.y168{bottom:349.477200pt;}
.y165{bottom:349.519333pt;}
.y71{bottom:349.689333pt;}
.y198{bottom:355.207467pt;}
.y24d{bottom:356.202133pt;}
.y167{bottom:357.288933pt;}
.y166{bottom:357.301067pt;}
.yff{bottom:357.550933pt;}
.y163{bottom:358.201600pt;}
.y20a{bottom:359.730400pt;}
.y12b{bottom:359.852800pt;}
.y44{bottom:361.452800pt;}
.y16{bottom:361.516133pt;}
.y9c{bottom:362.443333pt;}
.y142{bottom:362.464267pt;}
.y1de{bottom:364.194133pt;}
.y70{bottom:365.689333pt;}
.y164{bottom:370.164933pt;}
.yfe{bottom:373.550933pt;}
.y209{bottom:375.730400pt;}
.y12a{bottom:375.852800pt;}
.y43{bottom:377.452800pt;}
.y15{bottom:377.516133pt;}
.y9b{bottom:378.443333pt;}
.y141{bottom:378.464267pt;}
.y234{bottom:379.433600pt;}
.ycf{bottom:381.110000pt;}
.y6f{bottom:381.689333pt;}
.y1dd{bottom:383.500667pt;}
.yfd{bottom:389.550933pt;}
.y208{bottom:391.730400pt;}
.y129{bottom:391.852800pt;}
.y42{bottom:393.452800pt;}
.y14{bottom:393.516133pt;}
.y9a{bottom:394.443333pt;}
.y140{bottom:394.464267pt;}
.y233{bottom:395.433600pt;}
.yce{bottom:397.110000pt;}
.y6e{bottom:397.689333pt;}
.y1dc{bottom:399.500667pt;}
.y24c{bottom:400.258800pt;}
.yfc{bottom:405.550933pt;}
.y207{bottom:407.730400pt;}
.y128{bottom:407.852800pt;}
.y41{bottom:409.452800pt;}
.y13{bottom:409.516133pt;}
.y99{bottom:410.443333pt;}
.y13f{bottom:410.464267pt;}
.y232{bottom:411.433600pt;}
.ycd{bottom:413.110000pt;}
.y6d{bottom:413.689333pt;}
.y24b{bottom:416.258800pt;}
.y1db{bottom:418.807200pt;}
.yfb{bottom:421.550933pt;}
.y206{bottom:423.730400pt;}
.y127{bottom:423.852800pt;}
.y40{bottom:425.452800pt;}
.y12{bottom:425.516133pt;}
.y98{bottom:426.443333pt;}
.y13e{bottom:426.464267pt;}
.y1d8{bottom:426.807200pt;}
.y231{bottom:427.433600pt;}
.ycc{bottom:429.110000pt;}
.y6c{bottom:429.689333pt;}
.y24a{bottom:432.258800pt;}
.y16c{bottom:432.982267pt;}
.y16b{bottom:434.722400pt;}
.y1da{bottom:434.807200pt;}
.y16e{bottom:435.352400pt;}
.y19a{bottom:435.377467pt;}
.y16d{bottom:436.342267pt;}
.y16a{bottom:437.482400pt;}
.yfa{bottom:437.550933pt;}
.y19d{bottom:438.149200pt;}
.y205{bottom:439.730400pt;}
.y126{bottom:439.852800pt;}
.y19c{bottom:441.167067pt;}
.y3f{bottom:441.452800pt;}
.y11{bottom:441.516133pt;}
.y97{bottom:442.443333pt;}
.y13d{bottom:442.464267pt;}
.y1d7{bottom:442.807200pt;}
.y19b{bottom:442.907333pt;}
.y230{bottom:443.433600pt;}
.y6b{bottom:445.689333pt;}
.y169{bottom:446.764400pt;}
.y249{bottom:448.258800pt;}
.ycb{bottom:448.889467pt;}
.y19e{bottom:449.915200pt;}
.y1d9{bottom:450.807200pt;}
.yf9{bottom:453.550933pt;}
.y204{bottom:455.730400pt;}
.y125{bottom:455.852800pt;}
.y3e{bottom:457.452800pt;}
.y10{bottom:457.516133pt;}
.y13c{bottom:458.464267pt;}
.y22f{bottom:459.433600pt;}
.y6a{bottom:461.689333pt;}
.y96{bottom:462.222800pt;}
.y248{bottom:464.258800pt;}
.yca{bottom:464.889467pt;}
.yf8{bottom:469.550933pt;}
.y1d6{bottom:470.113733pt;}
.y203{bottom:471.730400pt;}
.y124{bottom:471.852800pt;}
.y3d{bottom:473.452800pt;}
.yf{bottom:473.516133pt;}
.y13b{bottom:474.464267pt;}
.y22e{bottom:475.433600pt;}
.y69{bottom:477.689333pt;}
.y1d3{bottom:478.113733pt;}
.y95{bottom:478.222800pt;}
.y247{bottom:480.258800pt;}
.yf7{bottom:485.550800pt;}
.y1d5{bottom:486.113733pt;}
.yc1{bottom:486.181333pt;}
.y202{bottom:487.730400pt;}
.y123{bottom:487.852800pt;}
.y3c{bottom:489.452800pt;}
.yc8{bottom:489.514267pt;}
.ye{bottom:489.516133pt;}
.y13a{bottom:490.464267pt;}
.y22d{bottom:491.433600pt;}
.y172{bottom:493.273067pt;}
.y68{bottom:493.689333pt;}
.y1d2{bottom:494.113733pt;}
.y94{bottom:494.222800pt;}
.y173{bottom:495.048933pt;}
.y246{bottom:496.258800pt;}
.yc3{bottom:499.264267pt;}
.yc9{bottom:500.764267pt;}
.yf6{bottom:501.550800pt;}
.y1d4{bottom:502.113733pt;}
.y171{bottom:502.201067pt;}
.yc6{bottom:503.514267pt;}
.yc0{bottom:503.566667pt;}
.y201{bottom:503.730400pt;}
.y122{bottom:503.852800pt;}
.y1a1{bottom:504.110533pt;}
.y174{bottom:505.057067pt;}
.y3b{bottom:505.452800pt;}
.y1a2{bottom:506.282267pt;}
.y139{bottom:506.464267pt;}
.y22c{bottom:507.433600pt;}
.y1a3{bottom:507.572533pt;}
.y170{bottom:507.859067pt;}
.y16f{bottom:508.008933pt;}
.y1a0{bottom:509.132533pt;}
.yd{bottom:509.295733pt;}
.y67{bottom:509.689333pt;}
.y19f{bottom:510.524533pt;}
.y245{bottom:512.258800pt;}
.y93{bottom:514.002400pt;}
.yc5{bottom:516.639200pt;}
.yf5{bottom:517.550800pt;}
.y200{bottom:519.730400pt;}
.y121{bottom:519.852800pt;}
.y3a{bottom:521.452800pt;}
.y138{bottom:522.464267pt;}
.y22b{bottom:523.433600pt;}
.y66{bottom:525.689333pt;}
.y1d1{bottom:529.354800pt;}
.y92{bottom:530.002400pt;}
.yf4{bottom:533.550800pt;}
.y1ff{bottom:535.730400pt;}
.y120{bottom:535.852800pt;}
.y39{bottom:537.452800pt;}
.ybf{bottom:538.464267pt;}
.y22a{bottom:539.433600pt;}
.y65{bottom:541.689333pt;}
.y244{bottom:543.376933pt;}
.y1d0{bottom:545.354800pt;}
.y91{bottom:546.002400pt;}
.y1b7{bottom:546.181733pt;}
.y1b6{bottom:547.369733pt;}
.yc{bottom:547.972933pt;}
.y1b8{bottom:548.353333pt;}
.yf3{bottom:549.550800pt;}
.y1b9{bottom:549.643733pt;}
.y1fe{bottom:551.730400pt;}
.y11f{bottom:551.852800pt;}
.y38{bottom:553.452800pt;}
.ybe{bottom:554.464267pt;}
.y229{bottom:555.433600pt;}
.y64{bottom:557.689333pt;}
.yb{bottom:561.306267pt;}
.y90{bottom:562.002400pt;}
.yf2{bottom:565.550800pt;}
.y1fd{bottom:567.730400pt;}
.y11e{bottom:567.852800pt;}
.y37{bottom:569.452800pt;}
.ybd{bottom:570.464267pt;}
.y228{bottom:571.433600pt;}
.y63{bottom:573.689333pt;}
.y1b3{bottom:575.055200pt;}
.y1a6{bottom:576.482267pt;}
.y8f{bottom:578.002400pt;}
.y1a7{bottom:578.750000pt;}
.y187{bottom:580.098667pt;}
.y1a5{bottom:580.729867pt;}
.yf1{bottom:581.550800pt;}
.y1fc{bottom:583.730400pt;}
.y11d{bottom:583.852800pt;}
.y36{bottom:585.452800pt;}
.ya{bottom:585.978133pt;}
.y1f6{bottom:586.360133pt;}
.ybc{bottom:586.464267pt;}
.y227{bottom:587.433600pt;}
.y62{bottom:589.689333pt;}
.y176{bottom:590.149200pt;}
.y179{bottom:596.209067pt;}
.y8e{bottom:596.669067pt;}
.yf0{bottom:597.550800pt;}
.y175{bottom:598.796267pt;}
.y177{bottom:598.909200pt;}
.y178{bottom:599.191200pt;}
.y1fb{bottom:599.730400pt;}
.y11c{bottom:599.852800pt;}
.y1a4{bottom:600.693200pt;}
.y35{bottom:601.452800pt;}
.y1a8{bottom:602.150000pt;}
.ybb{bottom:602.464267pt;}
.y226{bottom:603.433600pt;}
.y61{bottom:605.689333pt;}
.y1f5{bottom:610.210400pt;}
.y8d{bottom:612.669067pt;}
.yef{bottom:613.550800pt;}
.y1fa{bottom:615.730400pt;}
.y11b{bottom:615.852800pt;}
.y1bb{bottom:616.344267pt;}
.y1ba{bottom:617.429600pt;}
.y34{bottom:617.452800pt;}
.y1bc{bottom:618.413200pt;}
.yba{bottom:618.464267pt;}
.y225{bottom:619.433600pt;}
.y1bd{bottom:619.703467pt;}
.y60{bottom:621.689333pt;}
.y9{bottom:621.988667pt;}
.y8c{bottom:628.669067pt;}
.y1f4{bottom:629.517067pt;}
.yee{bottom:629.550800pt;}
.y1f9{bottom:631.730400pt;}
.y11a{bottom:631.852800pt;}
.y33{bottom:633.452800pt;}
.yb9{bottom:634.464267pt;}
.y224{bottom:635.433600pt;}
.y5f{bottom:637.689333pt;}
.y1f3{bottom:645.517067pt;}
.y8{bottom:645.547733pt;}
.yed{bottom:645.550800pt;}
.y1f8{bottom:647.730400pt;}
.y119{bottom:647.852800pt;}
.y32{bottom:649.452800pt;}
.yb8{bottom:650.464267pt;}
.y223{bottom:651.433600pt;}
.y8b{bottom:652.228133pt;}
.y5e{bottom:653.689333pt;}
.y118{bottom:663.852800pt;}
.y1f2{bottom:664.823600pt;}
.yec{bottom:665.330400pt;}
.y31{bottom:665.452800pt;}
.yb7{bottom:666.464267pt;}
.y222{bottom:667.433600pt;}
.y8a{bottom:675.787067pt;}
.y1f7{bottom:678.848533pt;}
.y7{bottom:679.146533pt;}
.y17d{bottom:679.284400pt;}
.y117{bottom:679.852800pt;}
.y1f1{bottom:680.823600pt;}
.y17c{bottom:681.024533pt;}
.y30{bottom:681.452800pt;}
.y17f{bottom:681.654533pt;}
.yb6{bottom:682.464267pt;}
.y17e{bottom:682.644400pt;}
.y221{bottom:683.433600pt;}
.y17b{bottom:683.784533pt;}
.y5d{bottom:684.807467pt;}
.yeb{bottom:685.110000pt;}
.y1a9{bottom:685.159600pt;}
.y1ac{bottom:687.931333pt;}
.y1be{bottom:688.330933pt;}
.y1bf{bottom:689.704800pt;}
.y1ab{bottom:690.949333pt;}
.y89{bottom:691.787067pt;}
.y1c0{bottom:692.584667pt;}
.y1aa{bottom:692.689467pt;}
.y17a{bottom:693.066533pt;}
.y116{bottom:695.852800pt;}
.y1c1{bottom:696.952533pt;}
.y2f{bottom:697.452800pt;}
.yb5{bottom:698.464267pt;}
.y220{bottom:699.433600pt;}
.y1ad{bottom:699.697333pt;}
.y1ef{bottom:700.130133pt;}
.y6{bottom:701.546533pt;}
.y5c{bottom:702.407467pt;}
.yea{bottom:704.889467pt;}
.y88{bottom:711.566667pt;}
.y115{bottom:711.852800pt;}
.y2e{bottom:713.452800pt;}
.yb4{bottom:714.464267pt;}
.y21f{bottom:715.433600pt;}
.y1ee{bottom:716.130133pt;}
.ye9{bottom:720.889467pt;}
.y5{bottom:723.946400pt;}
.y1f0{bottom:724.130133pt;}
.y114{bottom:727.852800pt;}
.y2d{bottom:729.452800pt;}
.yb3{bottom:730.464267pt;}
.y87{bottom:731.346133pt;}
.y21e{bottom:731.433600pt;}
.y1ed{bottom:732.130133pt;}
.y183{bottom:738.637467pt;}
.y184{bottom:740.413200pt;}
.ydf{bottom:742.558667pt;}
.y113{bottom:743.852800pt;}
.y2c{bottom:745.452800pt;}
.ye7{bottom:745.892133pt;}
.y5b{bottom:746.464133pt;}
.yb2{bottom:746.464267pt;}
.y86{bottom:747.346133pt;}
.y21d{bottom:747.433600pt;}
.y182{bottom:747.565467pt;}
.y1ec{bottom:748.130133pt;}
.y185{bottom:750.421333pt;}
.y181{bottom:753.223467pt;}
.y180{bottom:753.373333pt;}
.y1b0{bottom:753.892667pt;}
.ye2{bottom:755.642133pt;}
.y1b1{bottom:756.064400pt;}
.ye8{bottom:757.142133pt;}
.y1b2{bottom:757.354667pt;}
.y1af{bottom:758.914667pt;}
.yde{bottom:759.566667pt;}
.y112{bottom:759.852800pt;}
.ye1{bottom:759.892133pt;}
.y1ae{bottom:760.306667pt;}
.y2b{bottom:761.452800pt;}
.y5a{bottom:762.464133pt;}
.yb1{bottom:762.464267pt;}
.y85{bottom:763.346133pt;}
.y21c{bottom:763.433600pt;}
.y1eb{bottom:767.436667pt;}
.ye5{bottom:773.017067pt;}
.y2a{bottom:777.452800pt;}
.y59{bottom:778.464133pt;}
.yb0{bottom:778.464267pt;}
.y21b{bottom:779.433600pt;}
.y84{bottom:786.905200pt;}
.y111{bottom:790.970800pt;}
.y58{bottom:794.464133pt;}
.yaf{bottom:794.464267pt;}
.y1ea{bottom:794.677600pt;}
.y21a{bottom:795.433600pt;}
.y29{bottom:808.570933pt;}
.y57{bottom:810.464133pt;}
.y83{bottom:810.464267pt;}
.y1e9{bottom:810.677600pt;}
.y219{bottom:811.433600pt;}
.y1{bottom:813.688667pt;}
.y26{bottom:838.609200pt;}
.y25{bottom:853.588667pt;}
.y28{bottom:857.155067pt;}
.y56{bottom:858.340400pt;}
.y27{bottom:858.462267pt;}
.h2{height:25.784000pt;}
.h3{height:25.872000pt;}
.hd{height:26.693333pt;}
.h19{height:26.833333pt;}
.h14{height:27.293333pt;}
.hc{height:28.746667pt;}
.h17{height:28.750000pt;}
.hb{height:30.175781pt;}
.h6{height:30.378667pt;}
.h8{height:30.549333pt;}
.he{height:30.800000pt;}
.h7{height:31.253333pt;}
.ha{height:34.368000pt;}
.h1b{height:34.416000pt;}
.h9{height:35.160000pt;}
.h15{height:36.000000pt;}
.h1a{height:36.048528pt;}
.h13{height:37.973333pt;}
.h10{height:38.186667pt;}
.h1e{height:38.541667pt;}
.h11{height:40.022827pt;}
.h12{height:41.333333pt;}
.hf{height:42.973333pt;}
.h5{height:45.872053pt;}
.h18{height:54.000000pt;}
.h4{height:54.693333pt;}
.h16{height:57.348000pt;}
.h1d{height:66.368000pt;}
.h1c{height:98.368000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w3{width:104.000000pt;}
.w2{width:210.666667pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x18{left:2.458667pt;}
.x1b{left:16.625333pt;}
.x1f{left:25.042000pt;}
.x1d{left:35.166933pt;}
.x11{left:38.167067pt;}
.x22{left:43.625333pt;}
.x16{left:46.625333pt;}
.x20{left:49.500267pt;}
.x14{left:52.500400pt;}
.x2{left:69.921200pt;}
.x73{left:75.212533pt;}
.x25{left:79.401200pt;}
.xd{left:85.039333pt;}
.x7d{left:88.818933pt;}
.xc{left:91.254533pt;}
.x5c{left:95.401200pt;}
.x24{left:100.157467pt;}
.x28{left:106.642133pt;}
.x53{left:108.269867pt;}
.x9{left:110.974933pt;}
.x6e{left:112.453200pt;}
.x2c{left:114.642133pt;}
.x55{left:116.269867pt;}
.x3{left:119.388000pt;}
.x6f{left:121.194800pt;}
.x29{left:122.642133pt;}
.x54{left:124.269867pt;}
.x2d{left:130.642133pt;}
.x56{left:132.269867pt;}
.x7b{left:134.403867pt;}
.x26{left:138.642133pt;}
.x2e{left:146.642133pt;}
.x57{left:148.269867pt;}
.x6b{left:151.909733pt;}
.x27{left:154.642133pt;}
.x4{left:161.560267pt;}
.x2f{left:162.642133pt;}
.xf{left:168.583733pt;}
.x2a{left:170.642133pt;}
.x30{left:178.642133pt;}
.x2b{left:186.642133pt;}
.x42{left:189.948667pt;}
.xe{left:206.477333pt;}
.x5d{left:209.255333pt;}
.x7c{left:211.547867pt;}
.x43{left:217.255200pt;}
.x10{left:218.811067pt;}
.x31{left:221.948667pt;}
.x44{left:225.255200pt;}
.x5e{left:228.561867pt;}
.x13{left:234.519333pt;}
.x32{left:241.255200pt;}
.x15{left:244.644400pt;}
.x12{left:247.227733pt;}
.x6c{left:248.442533pt;}
.x33{left:257.255200pt;}
.x5{left:260.522933pt;}
.x5f{left:267.174933pt;}
.x1a{left:268.810933pt;}
.x1{left:270.135467pt;}
.x70{left:274.736933pt;}
.x34{left:276.561867pt;}
.x74{left:281.798933pt;}
.x60{left:286.481467pt;}
.x45{left:287.868267pt;}
.x6d{left:291.599467pt;}
.x35{left:292.561867pt;}
.x21{left:294.977600pt;}
.x46{left:295.868267pt;}
.x1e{left:297.560933pt;}
.x37{left:300.561867pt;}
.x6{left:303.132400pt;}
.x61{left:305.788133pt;}
.x36{left:308.561867pt;}
.x47{left:315.174800pt;}
.x62{left:321.788133pt;}
.x38{left:327.868400pt;}
.x48{left:331.174800pt;}
.x19{left:336.352667pt;}
.x63{left:341.094667pt;}
.x39{left:347.174933pt;}
.x1c{left:349.769333pt;}
.x58{left:351.055600pt;}
.xa{left:356.495200pt;}
.x64{left:360.401200pt;}
.x23{left:363.810933pt;}
.x59{left:367.055600pt;}
.x49{left:369.787867pt;}
.x65{left:379.707733pt;}
.x3a{left:382.481467pt;}
.x4a{left:385.787867pt;}
.x7{left:391.951467pt;}
.x3b{left:398.481467pt;}
.x5a{left:402.362133pt;}
.x72{left:404.524133pt;}
.x71{left:406.078267pt;}
.x7a{left:408.628667pt;}
.x77{left:410.212533pt;}
.x79{left:411.508667pt;}
.x4b{left:413.094533pt;}
.xb{left:414.888000pt;}
.x17{left:417.144400pt;}
.x66{left:418.320933pt;}
.x75{left:419.434267pt;}
.x4c{left:421.094533pt;}
.x3c{left:433.788000pt;}
.x78{left:436.756133pt;}
.x8{left:437.963333pt;}
.x5b{left:445.519067pt;}
.x4d{left:448.401067pt;}
.x3d{left:449.788000pt;}
.x4e{left:456.401067pt;}
.x76{left:458.133733pt;}
.x3e{left:469.094533pt;}
.x67{left:476.240533pt;}
.x4f{left:483.707600pt;}
.x3f{left:488.401067pt;}
.x50{left:491.707600pt;}
.x68{left:495.547067pt;}
.x40{left:507.707733pt;}
.x51{left:511.014133pt;}
.x69{left:514.853733pt;}
.x52{left:530.320667pt;}
.x41{left:531.558000pt;}
.x6a{left:534.160267pt;}
}




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