
    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_e26262bf83ccc70de71234a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_b0976d317aa3646df7a877d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_7de637fbccbd501055a46c54.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_5ac4cfcb9a3b1ba4a2766c84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_b4ea398a3a739dabb04830d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_0659542192ce0fbbd58e822e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_7cc95b8c22db05a2a4591d3c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_55848bbaaf3d6416b40c7060.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.767578;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_a052fea8cfb855aa8a39beb7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_0bb06cf65a885cd7a1a543f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_cbb2b5e99b213235255a34dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.962402;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_1cf44ce8dc4f67cfb1d04fdd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933105;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_2d3d5fbff4e0a3233a4c69d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_8e08fa64944fd6f017c7e745.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.941406;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_9c84252f02b04068d7bc11df.woff2')format("woff");}.fff{font-family:fff;line-height:0.933105;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:ff10;src:url('chunks/assets/font_71f951930614094af8e877c2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.040039;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;}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250976,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls20{letter-spacing:-0.936000px;}
.ls18{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.109200px;}
.ls24{letter-spacing:-0.097423px;}
.ls19{letter-spacing:-0.080917px;}
.ls2c{letter-spacing:-0.078201px;}
.ls1b{letter-spacing:-0.074938px;}
.ls1e{letter-spacing:-0.074540px;}
.ls2d{letter-spacing:-0.072037px;}
.ls5{letter-spacing:-0.072000px;}
.ls25{letter-spacing:-0.071722px;}
.ls1a{letter-spacing:-0.068560px;}
.ls1f{letter-spacing:-0.062183px;}
.ls2e{letter-spacing:-0.060095px;}
.ls1c{letter-spacing:-0.056204px;}
.ls2b{letter-spacing:-0.054317px;}
.ls27{letter-spacing:-0.051999px;}
.ls1d{letter-spacing:-0.049826px;}
.ls26{letter-spacing:-0.045424px;}
.ls2f{letter-spacing:-0.045360px;}
.lsd{letter-spacing:-0.021126px;}
.lse{letter-spacing:-0.015844px;}
.lsf{letter-spacing:-0.010563px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.005281px;}
.lsa{letter-spacing:0.010563px;}
.lsc{letter-spacing:0.015844px;}
.lsb{letter-spacing:0.021126px;}
.ls10{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.159582px;}
.ls6{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.269400px;}
.ls12{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.576000px;}
.ls30{letter-spacing:0.612000px;}
.ls13{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.792000px;}
.ls28{letter-spacing:0.840000px;}
.ls11{letter-spacing:0.864000px;}
.ls17{letter-spacing:124.490264px;}
.ls15{letter-spacing:146.015062px;}
.ls2a{letter-spacing:154.865293px;}
.ls16{letter-spacing:165.028634px;}
.ls14{letter-spacing:193.847947px;}
.ls29{letter-spacing:249.746109px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws3c{word-spacing:-18.864000px;}
.ws8d{word-spacing:-18.792000px;}
.ws3f{word-spacing:-18.720000px;}
.ws3e{word-spacing:-18.648000px;}
.ws66{word-spacing:-18.576000px;}
.ws3d{word-spacing:-18.432000px;}
.ws0{word-spacing:-18.305520px;}
.ws1{word-spacing:-18.144000px;}
.ws3b{word-spacing:-18.072000px;}
.ws68{word-spacing:-18.027980px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws40{word-spacing:-17.280000px;}
.ws65{word-spacing:-17.064000px;}
.ws18{word-spacing:-13.224761px;}
.ws8e{word-spacing:-12.329400px;}
.ws8c{word-spacing:-12.014640px;}
.ws49{word-spacing:-11.995491px;}
.ws5{word-spacing:0.000000px;}
.ws47{word-spacing:16.692979px;}
.ws46{word-spacing:19.392448px;}
.ws45{word-spacing:21.762966px;}
.ws44{word-spacing:21.962768px;}
.ws78{word-spacing:23.118002px;}
.ws86{word-spacing:23.328720px;}
.ws43{word-spacing:24.071301px;}
.wsb{word-spacing:29.366646px;}
.ws89{word-spacing:30.131978px;}
.ws48{word-spacing:40.686951px;}
.ws70{word-spacing:41.910124px;}
.ws6e{word-spacing:44.157909px;}
.ws61{word-spacing:52.858427px;}
.ws84{word-spacing:53.242565px;}
.ws42{word-spacing:55.000742px;}
.ws53{word-spacing:55.098002px;}
.ws72{word-spacing:55.585404px;}
.ws5c{word-spacing:57.495925px;}
.ws41{word-spacing:57.742264px;}
.ws87{word-spacing:57.932770px;}
.ws51{word-spacing:62.408063px;}
.ws77{word-spacing:62.425067px;}
.ws73{word-spacing:71.856135px;}
.ws79{word-spacing:74.076184px;}
.ws62{word-spacing:74.206841px;}
.ws7d{word-spacing:76.356040px;}
.wse{word-spacing:76.706081px;}
.ws71{word-spacing:78.711881px;}
.ws5b{word-spacing:81.364135px;}
.ws58{word-spacing:81.583967px;}
.ws39{word-spacing:82.042110px;}
.ws60{word-spacing:83.949802px;}
.ws56{word-spacing:86.141544px;}
.ws5a{word-spacing:88.539467px;}
.ws5e{word-spacing:88.739568px;}
.ws8b{word-spacing:89.072111px;}
.ws20{word-spacing:89.909716px;}
.ws1d{word-spacing:90.025908px;}
.ws7a{word-spacing:90.389868px;}
.ws54{word-spacing:93.560126px;}
.ws4a{word-spacing:98.074653px;}
.ws88{word-spacing:99.539530px;}
.ws52{word-spacing:100.472576px;}
.ws4b{word-spacing:103.077275px;}
.ws50{word-spacing:112.494773px;}
.ws8a{word-spacing:120.303135px;}
.ws4c{word-spacing:122.210429px;}
.ws82{word-spacing:124.957804px;}
.ws13{word-spacing:132.228248px;}
.ws7e{word-spacing:136.679899px;}
.ws2c{word-spacing:140.194442px;}
.ws64{word-spacing:141.224001px;}
.ws3a{word-spacing:143.050828px;}
.ws35{word-spacing:145.401076px;}
.ws7f{word-spacing:145.843525px;}
.ws2a{word-spacing:148.131587px;}
.ws17{word-spacing:148.253061px;}
.ws76{word-spacing:150.678286px;}
.ws1a{word-spacing:150.782877px;}
.ws25{word-spacing:150.793440px;}
.ws34{word-spacing:153.398077px;}
.ws74{word-spacing:154.944841px;}
.ws85{word-spacing:155.088915px;}
.ws11{word-spacing:155.990391px;}
.ws21{word-spacing:156.053769px;}
.ws24{word-spacing:158.699777px;}
.ws80{word-spacing:159.705062px;}
.ws7c{word-spacing:161.986843px;}
.ws36{word-spacing:166.557701px;}
.ws30{word-spacing:169.146494px;}
.ws4e{word-spacing:170.043314px;}
.ws83{word-spacing:171.306871px;}
.ws7b{word-spacing:175.968088px;}
.ws63{word-spacing:177.218247px;}
.ws4f{word-spacing:179.609891px;}
.ws37{word-spacing:182.461040px;}
.ws2e{word-spacing:182.577232px;}
.ws2f{word-spacing:182.592196px;}
.ws1e{word-spacing:185.075360px;}
.ws14{word-spacing:185.222360px;}
.ws75{word-spacing:187.524826px;}
.ws26{word-spacing:190.250305px;}
.ws1b{word-spacing:190.362095px;}
.ws1f{word-spacing:190.396425px;}
.wsf{word-spacing:190.503814px;}
.ws2b{word-spacing:193.033631px;}
.ws23{word-spacing:195.617142px;}
.ws12{word-spacing:195.633867px;}
.wsa{word-spacing:195.677879px;}
.wsc{word-spacing:195.737736px;}
.ws6a{word-spacing:196.982408px;}
.ws38{word-spacing:198.381984px;}
.ws28{word-spacing:203.600060px;}
.ws15{word-spacing:203.708330px;}
.ws6b{word-spacing:204.401176px;}
.ws1c{word-spacing:206.348177px;}
.ws69{word-spacing:207.773316px;}
.ws10{word-spacing:208.881515px;}
.ws27{word-spacing:216.911085px;}
.ws33{word-spacing:230.105919px;}
.ws2d{word-spacing:230.135847px;}
.ws32{word-spacing:230.145530px;}
.ws22{word-spacing:232.545950px;}
.wsd{word-spacing:235.186678px;}
.ws31{word-spacing:235.311672px;}
.ws9{word-spacing:240.803504px;}
.ws81{word-spacing:254.656085px;}
.ws55{word-spacing:289.705247px;}
.ws6c{word-spacing:323.150472px;}
.ws6d{word-spacing:337.722038px;}
.ws67{word-spacing:341.033513px;}
.ws4d{word-spacing:359.182512px;}
.ws19{word-spacing:695.222466px;}
.ws16{word-spacing:732.215532px;}
.ws29{word-spacing:737.496986px;}
.ws6f{word-spacing:802.942004px;}
.ws5f{word-spacing:1867.233782px;}
.ws59{word-spacing:2068.291341px;}
.ws5d{word-spacing:2212.029159px;}
.ws57{word-spacing:2226.339164px;}
._50{margin-left:-3.634760px;}
._5{margin-left:-2.614320px;}
._0{margin-left:-1.026240px;}
._1{width:1.254240px;}
._2{width:2.566787px;}
._4e{width:3.845806px;}
._5a{width:9.368643px;}
._5b{width:14.281736px;}
._55{width:16.569874px;}
._53{width:19.344200px;}
._52{width:20.735018px;}
._51{width:27.043088px;}
._3a{width:29.235130px;}
._59{width:30.967678px;}
._7{width:34.582962px;}
._58{width:36.699480px;}
._22{width:39.933075px;}
._41{width:42.931509px;}
._3e{width:47.714797px;}
._3b{width:50.853150px;}
._54{width:56.136002px;}
._60{width:58.458942px;}
._69{width:62.369418px;}
._1f{width:66.294574px;}
._42{width:69.251208px;}
._21{width:73.892826px;}
._d{width:77.110992px;}
._1a{width:81.969155px;}
._65{width:83.626785px;}
._66{width:88.147165px;}
._11{width:89.901899px;}
._56{width:92.998432px;}
._62{width:95.491737px;}
._24{width:97.867107px;}
._e{width:100.793913px;}
._1e{width:103.171448px;}
._57{width:107.139773px;}
._a{width:108.668561px;}
._46{width:114.998227px;}
._2f{width:116.700773px;}
._12{width:124.490918px;}
._5f{width:125.683714px;}
._8{width:127.068268px;}
._b{width:129.893846px;}
._4{width:134.983407px;}
._2e{width:137.525547px;}
._5d{width:138.945886px;}
._31{width:142.886223px;}
._26{width:145.607052px;}
._2d{width:150.987974px;}
._33{width:153.513389px;}
._19{width:156.101302px;}
._1d{width:158.656645px;}
._16{width:161.467259px;}
._20{width:164.055172px;}
._3d{width:165.368449px;}
._9{width:166.758396px;}
._2a{width:167.791026px;}
._17{width:169.499471px;}
._28{width:170.545304px;}
._29{width:171.829472px;}
._39{width:174.699063px;}
._f{width:180.155685px;}
._4c{width:181.964265px;}
._2b{width:185.479391px;}
._64{width:187.454500px;}
._4b{width:189.139198px;}
._40{width:191.530842px;}
._25{width:193.023068px;}
._5e{width:194.944110px;}
._23{width:198.478810px;}
._1b{width:201.124819px;}
._1c{width:203.535803px;}
._13{width:208.904401px;}
._6{width:211.698290px;}
._32{width:214.523868px;}
._14{width:219.761310px;}
._4a{width:221.176945px;}
._63{width:224.669821px;}
._2c{width:229.843606px;}
._15{width:238.102040px;}
._37{width:243.286668px;}
._67{width:245.638752px;}
._61{width:251.382106px;}
._3{width:253.875984px;}
._4f{width:262.909452px;}
._c{width:285.508373px;}
._4d{width:296.962492px;}
._3f{width:370.925145px;}
._38{width:372.798488px;}
._5c{width:430.419118px;}
._44{width:456.900611px;}
._68{width:479.554392px;}
._48{width:627.208700px;}
._18{width:690.085372px;}
._35{width:695.341299px;}
._30{width:697.907206px;}
._27{width:703.188660px;}
._34{width:708.605671px;}
._10{width:716.490883px;}
._36{width:750.911000px;}
._47{width:868.964071px;}
._49{width:1211.420818px;}
._45{width:1393.212487px;}
._43{width:1898.248027px;}
._3c{width:2185.188434px;}
._6a{width:2198.640000px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(0,112,192);}
.fc6{color:rgb(55,86,35);}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs8{font-size:41.700562px;}
.fs6{font-size:43.149248px;}
.fs2{font-size:47.533088px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:64.848847px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:3.300912px;}
.y6a{bottom:3.322918px;}
.y224{bottom:3.453249px;}
.y161{bottom:3.573110px;}
.y8f{bottom:3.945246px;}
.y1f4{bottom:4.482659px;}
.y1ed{bottom:4.482692px;}
.y1e8{bottom:5.379214px;}
.y1f7{bottom:5.416633px;}
.y223{bottom:17.369776px;}
.y160{bottom:17.948292px;}
.y8e{bottom:19.790048px;}
.y1f6{bottom:27.008311px;}
.y222{bottom:31.286014px;}
.y15f{bottom:32.323070px;}
.y8d{bottom:35.661919px;}
.y221{bottom:45.202251px;}
.y15e{bottom:46.697849px;}
.y1f5{bottom:48.599662px;}
.y8c{bottom:51.505181px;}
.y4{bottom:56.520000px;}
.y220{bottom:59.094414px;}
.y15d{bottom:61.072627px;}
.y8b{bottom:67.378152px;}
.y1f2{bottom:70.191064px;}
.y21f{bottom:73.010653px;}
.y3{bottom:75.420000px;}
.y15c{bottom:75.447406px;}
.y8a{bottom:83.222514px;}
.y21e{bottom:86.926889px;}
.y15b{bottom:89.822185px;}
.y1f1{bottom:91.782443px;}
.y89{bottom:99.093284px;}
.y21d{bottom:100.842164px;}
.y15a{bottom:104.195966px;}
.yad{bottom:111.060000px;}
.yf9{bottom:112.500000px;}
.y1f0{bottom:113.411179px;}
.y21c{bottom:114.758401px;}
.y88{bottom:114.937647px;}
.y2dd{bottom:117.000000px;}
.y2f5{bottom:117.360000px;}
.y2b3{bottom:117.720000px;}
.y1e6{bottom:118.260000px;}
.y159{bottom:118.595657px;}
.y249{bottom:120.240000px;}
.y14a{bottom:121.860000px;}
.y1a2{bottom:123.480000px;}
.y276{bottom:123.660000px;}
.y28d{bottom:124.200000px;}
.y2d{bottom:124.560000px;}
.ye4{bottom:127.800000px;}
.yac{bottom:128.340000px;}
.y21b{bottom:128.674641px;}
.y87{bottom:130.815019px;}
.y158{bottom:132.975418px;}
.y136{bottom:133.200000px;}
.y325{bottom:134.460000px;}
.yf8{bottom:134.820000px;}
.y1ef{bottom:135.002558px;}
.y1cf{bottom:136.440000px;}
.y2b2{bottom:138.420000px;}
.y2dc{bottom:139.320000px;}
.y2f4{bottom:139.680000px;}
.y248{bottom:140.940000px;}
.y21a{bottom:142.590878px;}
.y149{bottom:144.180000px;}
.y275{bottom:144.360000px;}
.y28c{bottom:144.900000px;}
.y217{bottom:145.080000px;}
.yab{bottom:145.620000px;}
.y53{bottom:145.800000px;}
.y86{bottom:146.659381px;}
.y2c{bottom:146.880000px;}
.y157{bottom:147.345214px;}
.ye3{bottom:150.120000px;}
.y2d3{bottom:151.740000px;}
.y59{bottom:151.920000px;}
.y1e5{bottom:152.460000px;}
.yc0{bottom:156.240000px;}
.y1ee{bottom:156.590949px;}
.y324{bottom:156.780000px;}
.y1ce{bottom:158.760000px;}
.y3e{bottom:158.940000px;}
.y2b1{bottom:159.120000px;}
.y308{bottom:159.840000px;}
.y247{bottom:161.640000px;}
.y156{bottom:161.724975px;}
.y2db{bottom:161.820000px;}
.y2f3{bottom:162.000000px;}
.y85{bottom:162.525750px;}
.yaa{bottom:162.900000px;}
.y311{bottom:163.620000px;}
.y274{bottom:165.060000px;}
.y28b{bottom:165.600000px;}
.y148{bottom:166.500000px;}
.ya9{bottom:167.400000px;}
.y1a1{bottom:168.120000px;}
.yf7{bottom:169.200000px;}
.y219{bottom:170.404082px;}
.y227{bottom:170.820000px;}
.ye2{bottom:172.440000px;}
.y2d2{bottom:174.060000px;}
.y32a{bottom:174.240000px;}
.y31d{bottom:174.600000px;}
.y155{bottom:176.094770px;}
.y1eb{bottom:178.182326px;}
.y84{bottom:178.370113px;}
.ybf{bottom:178.560000px;}
.y2b0{bottom:179.820000px;}
.y52{bottom:180.180000px;}
.ya8{bottom:180.360000px;}
.y2b{bottom:181.080000px;}
.y3d{bottom:181.260000px;}
.y307{bottom:182.340000px;}
.y188{bottom:182.880000px;}
.y273{bottom:185.760000px;}
.y310{bottom:185.940000px;}
.y58{bottom:186.300000px;}
.y1e4{bottom:186.840000px;}
.y323{bottom:187.020000px;}
.y147{bottom:188.820000px;}
.y216{bottom:189.720000px;}
.y1a0{bottom:190.440000px;}
.y154{bottom:190.474532px;}
.y179{bottom:191.520000px;}
.y1cd{bottom:192.960000px;}
.y83{bottom:194.247485px;}
.ye1{bottom:194.760000px;}
.y246{bottom:196.020000px;}
.y2d1{bottom:196.380000px;}
.y31c{bottom:196.920000px;}
.y1ea{bottom:199.773704px;}
.y2af{bottom:200.550000px;}
.ybe{bottom:200.910000px;}
.y135{bottom:201.810000px;}
.y2a{bottom:203.430000px;}
.y3c{bottom:203.610000px;}
.y306{bottom:204.690000px;}
.y153{bottom:204.844327px;}
.y187{bottom:205.230000px;}
.y272{bottom:206.490000px;}
.y11a{bottom:206.850000px;}
.y28a{bottom:207.030000px;}
.y30f{bottom:208.290000px;}
.y82{bottom:210.091847px;}
.y215{bottom:212.070000px;}
.y19f{bottom:212.790000px;}
.y190{bottom:213.870000px;}
.y51{bottom:214.410000px;}
.y1cc{bottom:215.310000px;}
.y245{bottom:216.750000px;}
.ye0{bottom:217.110000px;}
.y2d0{bottom:218.730000px;}
.y152{bottom:219.224089px;}
.y57{bottom:220.710000px;}
.y1e3{bottom:221.250000px;}
.ybd{bottom:223.230000px;}
.y329{bottom:224.130000px;}
.y29{bottom:225.930000px;}
.y81{bottom:225.958216px;}
.y305{bottom:227.010000px;}
.y271{bottom:227.190000px;}
.y31b{bottom:227.370000px;}
.y186{bottom:227.550000px;}
.y289{bottom:227.730000px;}
.y119{bottom:229.170000px;}
.y2da{bottom:230.430000px;}
.y151{bottom:233.623780px;}
.y214{bottom:234.390000px;}
.y134{bottom:236.190000px;}
.y244{bottom:237.450000px;}
.y1cb{bottom:237.810000px;}
.ydf{bottom:239.430000px;}
.ya7{bottom:240.330000px;}
.y2cf{bottom:241.050000px;}
.y80{bottom:241.802579px;}
.y2ae{bottom:241.950000px;}
.y30e{bottom:242.670000px;}
.ybc{bottom:245.550000px;}
.y328{bottom:246.450000px;}
.y19e{bottom:247.170000px;}
.y270{bottom:247.890000px;}
.y150{bottom:247.993575px;}
.y28{bottom:248.250000px;}
.y288{bottom:248.430000px;}
.y50{bottom:248.790000px;}
.y304{bottom:249.330000px;}
.y185{bottom:249.870000px;}
.y118{bottom:251.490000px;}
.y2d9{bottom:252.750000px;}
.y56{bottom:254.910000px;}
.y1e2{bottom:255.630000px;}
.y213{bottom:256.890000px;}
.y146{bottom:257.430000px;}
.y7f{bottom:257.679950px;}
.y243{bottom:258.150000px;}
.y1ca{bottom:260.130000px;}
.yde{bottom:261.930000px;}
.y14f{bottom:262.373336px;}
.ya6{bottom:262.650000px;}
.y2ce{bottom:263.370000px;}
.y30d{bottom:264.990000px;}
.y26f{bottom:268.590000px;}
.y327{bottom:268.950000px;}
.y287{bottom:269.130000px;}
.y19d{bottom:269.490000px;}
.y27{bottom:270.570000px;}
.y4f{bottom:271.110000px;}
.y303{bottom:271.650000px;}
.y184{bottom:272.190000px;}
.y7e{bottom:273.524310px;}
.y2d8{bottom:275.070000px;}
.y14e{bottom:276.743133px;}
.y242{bottom:278.850000px;}
.y145{bottom:279.750000px;}
.ybb{bottom:279.930000px;}
.y1c9{bottom:282.450000px;}
.y2ad{bottom:283.350000px;}
.ydd{bottom:284.250000px;}
.ya5{bottom:284.970000px;}
.y117{bottom:285.870000px;}
.y55{bottom:289.290000px;}
.y7b{bottom:289.390682px;}
.y1e1{bottom:289.830000px;}
.y212{bottom:291.090000px;}
.y14d{bottom:291.122893px;}
.y16e{bottom:291.270000px;}
.y19c{bottom:291.810000px;}
.y26{bottom:292.890000px;}
.y183{bottom:294.510000px;}
.y30c{bottom:295.410000px;}
.y2d7{bottom:297.390000px;}
.y241{bottom:299.550000px;}
.y2e3{bottom:301.350000px;}
.yba{bottom:302.250000px;}
.y2ac{bottom:304.050000px;}
.y1c8{bottom:304.770000px;}
.y133{bottom:304.950000px;}
.y7a{bottom:305.235044px;}
.y4e{bottom:305.490000px;}
.y14c{bottom:305.492667px;}
.y302{bottom:306.030000px;}
.ydc{bottom:306.570000px;}
.ya4{bottom:307.290000px;}
.y116{bottom:308.190000px;}
.y26e{bottom:309.990000px;}
.y286{bottom:310.530000px;}
.y1e0{bottom:312.150000px;}
.y211{bottom:313.410000px;}
.y16d{bottom:313.590000px;}
.y19b{bottom:314.130000px;}
.y25{bottom:315.210000px;}
.y182{bottom:316.830000px;}
.y1a8{bottom:318.450000px;}
.y54{bottom:319.530000px;}
.y2d6{bottom:319.710000px;}
.y2cd{bottom:320.070000px;}
.y240{bottom:320.250000px;}
.y5a{bottom:320.535000px;}
.y79{bottom:321.112416px;}
.y2e2{bottom:323.670000px;}
.yb9{bottom:324.570000px;}
.y2ab{bottom:324.750000px;}
.y326{bottom:325.470000px;}
.y3b{bottom:327.270000px;}
.y301{bottom:328.350000px;}
.ydb{bottom:328.890000px;}
.ya3{bottom:329.610000px;}
.y115{bottom:330.510000px;}
.y26d{bottom:330.690000px;}
.y285{bottom:331.230000px;}
.y1df{bottom:334.650000px;}
.y210{bottom:335.730000px;}
.y16c{bottom:335.910000px;}
.y19a{bottom:336.450000px;}
.y78{bottom:336.956779px;}
.yf6{bottom:337.530000px;}
.y132{bottom:339.150000px;}
.y4d{bottom:339.870000px;}
.y1a7{bottom:340.950000px;}
.y2cc{bottom:342.390000px;}
.y2aa{bottom:345.270000px;}
.yb8{bottom:346.890000px;}
.y24{bottom:349.590000px;}
.y300{bottom:350.670000px;}
.yda{bottom:351.210000px;}
.y26c{bottom:351.390000px;}
.ya2{bottom:351.930000px;}
.y77{bottom:352.823148px;}
.y114{bottom:352.830000px;}
.y2d5{bottom:354.090000px;}
.y1de{bottom:356.970000px;}
.y2e1{bottom:358.050000px;}
.y16b{bottom:358.230000px;}
.y199{bottom:358.770000px;}
.yf5{bottom:359.850000px;}
.y181{bottom:361.470000px;}
.y23f{bottom:361.650000px;}
.y4c{bottom:362.190000px;}
.y1a6{bottom:363.270000px;}
.y2cb{bottom:364.710000px;}
.y2a9{bottom:365.970000px;}
.y76{bottom:368.667510px;}
.yb7{bottom:369.210000px;}
.y23{bottom:371.910000px;}
.y26b{bottom:372.090000px;}
.y284{bottom:372.630000px;}
.yd9{bottom:373.530000px;}
.y113{bottom:375.150000px;}
.y2d4{bottom:376.410000px;}
.y2f2{bottom:376.770000px;}
.y1dd{bottom:379.290000px;}
.y20f{bottom:380.550000px;}
.y198{bottom:381.090000px;}
.yf4{bottom:382.170000px;}
.y178{bottom:382.350000px;}
.y1c7{bottom:383.790000px;}
.y4b{bottom:384.510000px;}
.y75{bottom:384.544882px;}
.y2ff{bottom:385.050000px;}
.y1a5{bottom:385.590000px;}
.ya1{bottom:386.310000px;}
.y2a8{bottom:386.670000px;}
.y2ca{bottom:387.210000px;}
.yb6{bottom:391.530000px;}
.y2e0{bottom:392.430000px;}
.y16a{bottom:392.610000px;}
.y26a{bottom:392.790000px;}
.y283{bottom:393.330000px;}
.y22{bottom:394.230000px;}
.yd8{bottom:395.850000px;}
.y112{bottom:397.470000px;}
.y2f1{bottom:399.090000px;}
.y74{bottom:400.389245px;}
.y1dc{bottom:401.610000px;}
.y3a{bottom:402.330000px;}
.y20e{bottom:402.870000px;}
.y23e{bottom:403.050000px;}
.y197{bottom:403.410000px;}
.yf3{bottom:404.490000px;}
.y177{bottom:404.670000px;}
.y1c6{bottom:406.110000px;}
.y18f{bottom:406.290000px;}
.y4a{bottom:406.830000px;}
.y2a7{bottom:407.370000px;}
.y131{bottom:407.910000px;}
.y269{bottom:413.490000px;}
.yb5{bottom:413.850000px;}
.y282{bottom:414.030000px;}
.y2df{bottom:414.750000px;}
.y73{bottom:416.255613px;}
.y21{bottom:416.550000px;}
.yd7{bottom:418.170000px;}
.y111{bottom:419.790000px;}
.ya0{bottom:420.690000px;}
.y2c9{bottom:421.410000px;}
.y23d{bottom:423.750000px;}
.y1db{bottom:423.930000px;}
.y20d{bottom:425.190000px;}
.y196{bottom:425.730000px;}
.y169{bottom:426.810000px;}
.y2a6{bottom:428.070000px;}
.y1c5{bottom:428.430000px;}
.y18e{bottom:428.610000px;}
.y49{bottom:429.150000px;}
.y130{bottom:430.230000px;}
.y72{bottom:432.099976px;}
.y268{bottom:434.190000px;}
.y281{bottom:434.730000px;}
.yb4{bottom:436.215000px;}
.y2de{bottom:437.115000px;}
.y20{bottom:438.915000px;}
.y180{bottom:440.535000px;}
.y2fe{bottom:441.795000px;}
.y110{bottom:442.335000px;}
.y9f{bottom:443.055000px;}
.y2c8{bottom:443.775000px;}
.y23c{bottom:446.115000px;}
.y1da{bottom:446.295000px;}
.y20c{bottom:447.555000px;}
.y71{bottom:447.977348px;}
.y195{bottom:448.275000px;}
.y2a5{bottom:448.815000px;}
.y1c4{bottom:450.795000px;}
.y18d{bottom:450.975000px;}
.y48{bottom:451.515000px;}
.yd6{bottom:452.595000px;}
.y267{bottom:454.935000px;}
.y280{bottom:455.475000px;}
.y1f{bottom:461.235000px;}
.y17f{bottom:462.855000px;}
.y70{bottom:463.821711px;}
.y10f{bottom:464.655000px;}
.y9e{bottom:465.375000px;}
.y2c7{bottom:466.275000px;}
.y1b5{bottom:467.355000px;}
.y23b{bottom:468.435000px;}
.y2a4{bottom:469.515000px;}
.y20b{bottom:469.875000px;}
.yb3{bottom:470.595000px;}
.y1c3{bottom:473.115000px;}
.yf2{bottom:473.295000px;}
.y47{bottom:473.835000px;}
.y2fd{bottom:474.375000px;}
.y12f{bottom:474.915000px;}
.y266{bottom:475.635000px;}
.y27f{bottom:476.175000px;}
.y2f0{bottom:478.155000px;}
.y6f{bottom:479.688079px;}
.y1d9{bottom:480.675000px;}
.y1e{bottom:483.555000px;}
.y17e{bottom:485.355000px;}
.yd5{bottom:486.975000px;}
.y9d{bottom:487.695000px;}
.y2c6{bottom:488.595000px;}
.y23a{bottom:489.135000px;}
.y1b4{bottom:489.675000px;}
.y144{bottom:492.915000px;}
.y1be{bottom:494.715000px;}
.y2fc{bottom:495.075000px;}
.y1c2{bottom:495.435000px;}
.y6e{bottom:495.532442px;}
.yf1{bottom:495.615000px;}
.y46{bottom:496.335000px;}
.y27e{bottom:496.875000px;}
.y12e{bottom:497.235000px;}
.y1d8{bottom:502.995000px;}
.y2a3{bottom:503.895000px;}
.y20a{bottom:504.255000px;}
.yb2{bottom:504.975000px;}
.y1d{bottom:505.875000px;}
.yd4{bottom:509.295000px;}
.y239{bottom:509.835000px;}
.y9c{bottom:510.015000px;}
.y2c5{bottom:510.915000px;}
.y6d{bottom:511.409814px;}
.y1b3{bottom:511.995000px;}
.y2ef{bottom:512.535000px;}
.y143{bottom:515.235000px;}
.y2fb{bottom:515.775000px;}
.y1bd{bottom:517.035000px;}
.y27d{bottom:517.575000px;}
.yf0{bottom:517.935000px;}
.y45{bottom:518.655000px;}
.y12d{bottom:519.555000px;}
.y10e{bottom:521.355000px;}
.y2a2{bottom:524.595000px;}
.y1d7{bottom:525.315000px;}
.y6c{bottom:527.254176px;}
.y1c{bottom:528.195000px;}
.y1c1{bottom:529.815000px;}
.y238{bottom:530.535000px;}
.yd3{bottom:531.615000px;}
.y2c4{bottom:533.235000px;}
.y1b2{bottom:534.315000px;}
.y2ee{bottom:534.855000px;}
.y2fa{bottom:536.475000px;}
.y142{bottom:537.555000px;}
.y265{bottom:537.735000px;}
.y27c{bottom:538.275000px;}
.y209{bottom:538.635000px;}
.yb1{bottom:539.355000px;}
.y1bc{bottom:539.535000px;}
.yef{bottom:540.255000px;}
.y12c{bottom:541.875000px;}
.y6b{bottom:543.120536px;}
.y68{bottom:543.120545px;}
.y9b{bottom:544.395000px;}
.y2a1{bottom:545.295000px;}
.y1d6{bottom:547.635000px;}
.y1b{bottom:550.695000px;}
.y237{bottom:551.235000px;}
.y18c{bottom:552.315000px;}
.y44{bottom:552.855000px;}
.yd2{bottom:553.935000px;}
.y10d{bottom:555.555000px;}
.y1b1{bottom:556.635000px;}
.y2ed{bottom:557.175000px;}
.y264{bottom:558.435000px;}
.y67{bottom:558.964908px;}
.y27b{bottom:558.975000px;}
.y141{bottom:559.875000px;}
.y208{bottom:560.955000px;}
.yb0{bottom:561.675000px;}
.y1bb{bottom:561.855000px;}
.yee{bottom:562.575000px;}
.y176{bottom:562.755000px;}
.y12b{bottom:564.195000px;}
.y2a0{bottom:565.995000px;}
.y1d5{bottom:569.955000px;}
.y2f9{bottom:570.855000px;}
.y236{bottom:571.935000px;}
.y18b{bottom:574.635000px;}
.y66{bottom:574.842279px;}
.y43{bottom:575.175000px;}
.yd1{bottom:576.255000px;}
.y10c{bottom:577.875000px;}
.y9a{bottom:578.775000px;}
.y1b0{bottom:578.955000px;}
.y263{bottom:579.135000px;}
.y2ec{bottom:579.495000px;}
.y140{bottom:582.195000px;}
.y207{bottom:583.275000px;}
.yaf{bottom:583.995000px;}
.y1ba{bottom:584.175000px;}
.y1a{bottom:584.895000px;}
.y1c0{bottom:586.515000px;}
.y12a{bottom:586.695000px;}
.y65{bottom:590.686642px;}
.y7c{bottom:590.758402px;}
.y1d4{bottom:592.275000px;}
.y235{bottom:592.635000px;}
.y27a{bottom:593.355000px;}
.y168{bottom:596.955000px;}
.y42{bottom:597.675000px;}
.yd0{bottom:598.575000px;}
.y262{bottom:599.835000px;}
.y10b{bottom:600.195000px;}
.y99{bottom:601.095000px;}
.y1af{bottom:601.275000px;}
.y2eb{bottom:601.815000px;}
.y2f8{bottom:603.615000px;}
.y13f{bottom:604.515000px;}
.y206{bottom:605.595000px;}
.y1b9{bottom:606.495000px;}
.y64{bottom:606.553011px;}
.y19{bottom:607.215000px;}
.y29f{bottom:607.395000px;}
.y18a{bottom:609.015000px;}
.y1a4{bottom:610.635000px;}
.y2c3{bottom:612.255000px;}
.y234{bottom:613.335000px;}
.y279{bottom:614.055000px;}
.yae{bottom:614.235000px;}
.y1d3{bottom:614.595000px;}
.y1bf{bottom:616.935000px;}
.y175{bottom:619.275000px;}
.y261{bottom:620.535000px;}
.ycf{bottom:620.895000px;}
.y322{bottom:621.075000px;}
.y63{bottom:622.397374px;}
.y10a{bottom:622.695000px;}
.y98{bottom:623.415000px;}
.y1ae{bottom:623.595000px;}
.y2ea{bottom:624.135000px;}
.y2f7{bottom:624.315000px;}
.y31a{bottom:625.215000px;}
.y13e{bottom:626.835000px;}
.y205{bottom:627.915000px;}
.y41{bottom:628.095000px;}
.y18{bottom:629.715000px;}
.y167{bottom:631.335000px;}
.y1a3{bottom:632.955000px;}
.y233{bottom:634.035000px;}
.y278{bottom:634.755000px;}
.y1d2{bottom:636.915000px;}
.y62{bottom:638.274745px;}
.y1b8{bottom:640.875000px;}
.y260{bottom:641.235000px;}
.y226{bottom:641.595000px;}
.y174{bottom:641.775000px;}
.yce{bottom:643.215000px;}
.y321{bottom:643.395000px;}
.y2f6{bottom:645.015000px;}
.y97{bottom:645.735000px;}
.y1ad{bottom:646.095000px;}
.y2c2{bottom:646.635000px;}
.y319{bottom:647.535000px;}
.y29e{bottom:648.795000px;}
.y13d{bottom:649.335000px;}
.y204{bottom:650.235000px;}
.y17{bottom:652.035000px;}
.y166{bottom:653.655000px;}
.y61{bottom:654.119109px;}
.y232{bottom:654.735000px;}
.y129{bottom:655.275000px;}
.y277{bottom:655.455000px;}
.y109{bottom:656.895000px;}
.y2e9{bottom:658.515000px;}
.y1d1{bottom:659.415000px;}
.y194{bottom:661.215000px;}
.y25f{bottom:661.935000px;}
.y1b7{bottom:663.195000px;}
.yed{bottom:663.915000px;}
.y173{bottom:664.095000px;}
.ycd{bottom:665.715000px;}
.y96{bottom:668.055000px;}
.y1ac{bottom:668.415000px;}
.y2c1{bottom:668.955000px;}
.y29d{bottom:669.495000px;}
.y60{bottom:669.985477px;}
.y318{bottom:670.035000px;}
.y13c{bottom:671.655000px;}
.y203{bottom:672.555000px;}
.y16{bottom:674.385000px;}
.y231{bottom:675.465000px;}
.y189{bottom:676.005000px;}
.y128{bottom:677.625000px;}
.y108{bottom:679.245000px;}
.y25e{bottom:682.665000px;}
.y193{bottom:683.565000px;}
.y5f{bottom:685.829840px;}
.y225{bottom:686.265000px;}
.y172{bottom:686.445000px;}
.ycc{bottom:688.065000px;}
.y1d0{bottom:689.685000px;}
.y1e9{bottom:689.702520px;}
.y95{bottom:690.405000px;}
.y2c0{bottom:691.305000px;}
.y317{bottom:692.385000px;}
.y2e8{bottom:692.925000px;}
.y1b6{bottom:693.465000px;}
.y13b{bottom:694.005000px;}
.y230{bottom:696.165000px;}
.y15{bottom:696.705000px;}
.yec{bottom:698.325000px;}
.y127{bottom:699.945000px;}
.y320{bottom:700.125000px;}
.y5e{bottom:701.707211px;}
.y107{bottom:701.745000px;}
.y1ab{bottom:702.645000px;}
.y25d{bottom:703.365000px;}
.y29c{bottom:703.905000px;}
.y192{bottom:705.885000px;}
.y202{bottom:706.965000px;}
.y171{bottom:708.765000px;}
.ycb{bottom:710.385000px;}
.y94{bottom:712.725000px;}
.y2bf{bottom:713.625000px;}
.y316{bottom:714.705000px;}
.y2e7{bottom:715.245000px;}
.y13a{bottom:716.325000px;}
.y22f{bottom:716.865000px;}
.y5d{bottom:717.551575px;}
.y14{bottom:719.025000px;}
.yeb{bottom:720.645000px;}
.y126{bottom:722.265000px;}
.y106{bottom:724.065000px;}
.y29b{bottom:724.605000px;}
.y1aa{bottom:724.965000px;}
.y201{bottom:729.285000px;}
.y165{bottom:732.705000px;}
.y5c{bottom:733.417942px;}
.y1f3{bottom:733.819552px;}
.y31f{bottom:734.505000px;}
.y2be{bottom:735.945000px;}
.y191{bottom:736.305000px;}
.y315{bottom:737.025000px;}
.y2e6{bottom:737.565000px;}
.y139{bottom:738.645000px;}
.yea{bottom:742.965000px;}
.y170{bottom:743.145000px;}
.yca{bottom:744.585000px;}
.y25c{bottom:744.765000px;}
.y29a{bottom:745.305000px;}
.y105{bottom:746.385000px;}
.y93{bottom:747.105000px;}
.y22e{bottom:751.245000px;}
.y200{bottom:751.605000px;}
.y13{bottom:753.405000px;}
.y164{bottom:755.025000px;}
.y1a9{bottom:755.385000px;}
.y125{bottom:756.645000px;}
.y2bd{bottom:758.265000px;}
.y2e5{bottom:759.885000px;}
.y31e{bottom:764.745000px;}
.y5b{bottom:765.139675px;}
.ye9{bottom:765.285000px;}
.y25b{bottom:765.465000px;}
.y299{bottom:766.005000px;}
.yc9{bottom:767.085000px;}
.y104{bottom:768.705000px;}
.y314{bottom:771.405000px;}
.y22d{bottom:771.945000px;}
.y138{bottom:773.025000px;}
.y1ff{bottom:773.925000px;}
.y12{bottom:775.725000px;}
.y163{bottom:777.345000px;}
.y124{bottom:778.965000px;}
.y2bc{bottom:780.585000px;}
.y91{bottom:781.485000px;}
.y25a{bottom:786.165000px;}
.y298{bottom:786.705000px;}
.ye8{bottom:787.605000px;}
.y92{bottom:788.325000px;}
.yc8{bottom:789.405000px;}
.y2e4{bottom:790.305000px;}
.y103{bottom:791.025000px;}
.y22c{bottom:792.645000px;}
.y313{bottom:793.725000px;}
.y1fe{bottom:796.245000px;}
.y11{bottom:798.045000px;}
.y162{bottom:799.665000px;}
.y123{bottom:801.285000px;}
.y2bb{bottom:802.905000px;}
.y137{bottom:803.085000px;}
.y14b{bottom:803.670000px;}
.y90{bottom:803.805000px;}
.y259{bottom:806.865000px;}
.y297{bottom:807.405000px;}
.y30b{bottom:809.565000px;}
.yc7{bottom:811.725000px;}
.y102{bottom:813.345000px;}
.y1fd{bottom:818.565000px;}
.y10{bottom:820.365000px;}
.ye7{bottom:821.985000px;}
.y122{bottom:823.605000px;}
.y312{bottom:823.965000px;}
.y2ba{bottom:825.225000px;}
.y258{bottom:827.565000px;}
.y296{bottom:828.105000px;}
.y30a{bottom:831.885000px;}
.y39{bottom:834.045000px;}
.y101{bottom:835.665000px;}
.y1fc{bottom:840.885000px;}
.yf{bottom:842.685000px;}
.y121{bottom:846.105000px;}
.y2b9{bottom:847.545000px;}
.y257{bottom:848.265000px;}
.y295{bottom:848.805000px;}
.y22b{bottom:854.745000px;}
.y38{bottom:856.365000px;}
.y17d{bottom:857.985000px;}
.y69{bottom:860.332622px;}
.y309{bottom:862.305000px;}
.y1fb{bottom:863.385000px;}
.y1ec{bottom:863.402130px;}
.ye{bottom:865.005000px;}
.y120{bottom:868.425000px;}
.y256{bottom:868.965000px;}
.y294{bottom:869.505000px;}
.y2b8{bottom:869.865000px;}
.y100{bottom:870.045000px;}
.y22a{bottom:877.065000px;}
.y37{bottom:878.685000px;}
.y17c{bottom:880.305000px;}
.y1fa{bottom:885.705000px;}
.yd{bottom:887.325000px;}
.y255{bottom:889.665000px;}
.y293{bottom:890.205000px;}
.ye6{bottom:890.745000px;}
.yff{bottom:892.365000px;}
.y229{bottom:899.385000px;}
.y36{bottom:901.005000px;}
.y17b{bottom:902.625000px;}
.y2b7{bottom:904.245000px;}
.y1e7{bottom:906.584915px;}
.y1f9{bottom:908.025000px;}
.yc{bottom:909.645000px;}
.y254{bottom:910.365000px;}
.y292{bottom:910.905000px;}
.ye5{bottom:913.110000px;}
.yfe{bottom:914.730000px;}
.y35{bottom:923.370000px;}
.y17a{bottom:924.990000px;}
.y253{bottom:931.110000px;}
.y291{bottom:931.650000px;}
.y228{bottom:933.810000px;}
.yc6{bottom:935.430000px;}
.yfd{bottom:937.050000px;}
.y1f8{bottom:938.130000px;}
.y2b6{bottom:938.670000px;}
.y218{bottom:939.120000px;}
.yb{bottom:944.070000px;}
.y34{bottom:945.690000px;}
.y11f{bottom:947.490000px;}
.y252{bottom:951.810000px;}
.y290{bottom:952.350000px;}
.yc5{bottom:957.750000px;}
.yfc{bottom:959.370000px;}
.y16f{bottom:965.850000px;}
.y33{bottom:968.010000px;}
.y11e{bottom:969.810000px;}
.y251{bottom:972.510000px;}
.y28f{bottom:973.050000px;}
.ya{bottom:978.450000px;}
.yc4{bottom:980.070000px;}
.yfb{bottom:981.690000px;}
.y11d{bottom:992.130000px;}
.y250{bottom:993.210000px;}
.y28e{bottom:993.750000px;}
.y32{bottom:1002.390000px;}
.yfa{bottom:1004.010000px;}
.y2b5{bottom:1007.430000px;}
.y9{bottom:1012.830000px;}
.y24f{bottom:1013.910000px;}
.y11c{bottom:1014.450000px;}
.yc3{bottom:1024.710000px;}
.y40{bottom:1026.510000px;}
.y24e{bottom:1034.610000px;}
.y8{bottom:1035.150000px;}
.y31{bottom:1036.770000px;}
.y2b4{bottom:1041.630000px;}
.yc2{bottom:1047.030000px;}
.y3f{bottom:1048.830000px;}
.y24d{bottom:1055.310000px;}
.y11b{bottom:1059.090000px;}
.y7{bottom:1069.350000px;}
.y30{bottom:1071.150000px;}
.y24c{bottom:1076.010000px;}
.yc1{bottom:1081.410000px;}
.y2f{bottom:1093.470000px;}
.y24b{bottom:1096.710000px;}
.y6{bottom:1103.730000px;}
.y2e{bottom:1115.790000px;}
.y24a{bottom:1117.410000px;}
.y5{bottom:1138.110000px;}
.y2{bottom:1174.140000px;}
.y1{bottom:1194.120000px;}
.hb{height:15.184184px;}
.ha{height:15.211691px;}
.h18{height:20.694871px;}
.h13{height:20.694905px;}
.h16{height:20.694932px;}
.hd{height:28.419609px;}
.h1b{height:31.356868px;}
.h1c{height:31.519761px;}
.h11{height:32.446212px;}
.hc{height:33.683203px;}
.h9{height:35.742654px;}
.hf{height:41.726953px;}
.h12{height:42.917489px;}
.he{height:43.681992px;}
.h19{height:47.401721px;}
.h3{height:48.418594px;}
.h14{height:48.763293px;}
.h17{height:49.016609px;}
.h5{height:50.273438px;}
.h4{height:50.800781px;}
.h7{height:58.429688px;}
.h6{height:59.343750px;}
.h1d{height:61.043203px;}
.h2{height:65.884219px;}
.h1a{height:180.853952px;}
.h15{height:237.579959px;}
.h10{height:316.275680px;}
.h8{height:777.023511px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:85.857162px;}
.w5{width:97.073852px;}
.wa{width:100.855702px;}
.w8{width:273.740496px;}
.w9{width:414.174761px;}
.w7{width:676.275660px;}
.w3{width:676.278427px;}
.wb{width:676.369916px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.979417px;}
.x16{left:3.299028px;}
.x1d{left:5.278446px;}
.x2c{left:7.780165px;}
.x14{left:9.897080px;}
.x2b{left:13.191367px;}
.x15{left:15.203015px;}
.x13{left:17.182430px;}
.x1f{left:18.502045px;}
.x19{left:19.821652px;}
.x18{left:21.141263px;}
.x22{left:22.460880px;}
.x17{left:23.780484px;}
.x3b{left:24.968211px;}
.x1a{left:27.079511px;}
.x11{left:28.399119px;}
.x23{left:29.718738px;}
.x1e{left:31.038344px;}
.x20{left:33.017762px;}
.x39{left:35.116054px;}
.x2d{left:49.723227px;}
.x10{left:99.740565px;}
.x2{left:108.035987px;}
.x27{left:110.915987px;}
.x2e{left:111.995987px;}
.xa{left:113.615987px;}
.x21{left:116.235703px;}
.x9{left:118.475987px;}
.x45{left:120.275987px;}
.x44{left:121.355987px;}
.x31{left:122.795987px;}
.xb{left:124.415987px;}
.xd{left:126.755987px;}
.xe{left:128.915987px;}
.x41{left:133.235987px;}
.x3f{left:136.835987px;}
.x28{left:141.155987px;}
.x3a{left:143.159690px;}
.x2f{left:149.615987px;}
.x42{left:158.249987px;}
.x3c{left:162.029987px;}
.x3d{left:166.529987px;}
.x29{left:171.929987px;}
.x36{left:176.429987px;}
.x2a{left:191.691231px;}
.x38{left:239.248492px;}
.x34{left:292.394987px;}
.x1c{left:324.272304px;}
.x1b{left:328.594891px;}
.x32{left:333.794987px;}
.x6{left:339.554987px;}
.x24{left:345.494973px;}
.x25{left:351.614987px;}
.xf{left:353.954987px;}
.x4{left:397.334987px;}
.x1{left:433.334987px;}
.x3{left:437.294987px;}
.x7{left:446.474987px;}
.x5{left:575.564987px;}
.x37{left:654.584987px;}
.x33{left:703.229987px;}
.x43{left:705.749987px;}
.x30{left:715.469987px;}
.x40{left:717.989987px;}
.x8{left:719.969987px;}
.x35{left:733.469987px;}
.x26{left:743.909987px;}
.x47{left:750.029987px;}
.x3e{left:753.629987px;}
.x46{left:781.709987px;}
.xc{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls20{letter-spacing:-0.832000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls24{letter-spacing:-0.086598pt;}
.ls19{letter-spacing:-0.071926pt;}
.ls2c{letter-spacing:-0.069512pt;}
.ls1b{letter-spacing:-0.066612pt;}
.ls1e{letter-spacing:-0.066257pt;}
.ls2d{letter-spacing:-0.064033pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls25{letter-spacing:-0.063753pt;}
.ls1a{letter-spacing:-0.060943pt;}
.ls1f{letter-spacing:-0.055274pt;}
.ls2e{letter-spacing:-0.053418pt;}
.ls1c{letter-spacing:-0.049959pt;}
.ls2b{letter-spacing:-0.048281pt;}
.ls27{letter-spacing:-0.046221pt;}
.ls1d{letter-spacing:-0.044290pt;}
.ls26{letter-spacing:-0.040377pt;}
.ls2f{letter-spacing:-0.040320pt;}
.lsd{letter-spacing:-0.018779pt;}
.lse{letter-spacing:-0.014084pt;}
.lsf{letter-spacing:-0.009389pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.004695pt;}
.lsa{letter-spacing:0.009389pt;}
.lsc{letter-spacing:0.014084pt;}
.lsb{letter-spacing:0.018779pt;}
.ls10{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.141851pt;}
.ls6{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.239467pt;}
.ls12{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.512000pt;}
.ls30{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.704000pt;}
.ls28{letter-spacing:0.746667pt;}
.ls11{letter-spacing:0.768000pt;}
.ls17{letter-spacing:110.658013pt;}
.ls15{letter-spacing:129.791166pt;}
.ls2a{letter-spacing:137.658038pt;}
.ls16{letter-spacing:146.692119pt;}
.ls14{letter-spacing:172.309286pt;}
.ls29{letter-spacing:221.996541pt;}
.ws6{word-spacing:-64.000000pt;}
.ws3c{word-spacing:-16.768000pt;}
.ws8d{word-spacing:-16.704000pt;}
.ws3f{word-spacing:-16.640000pt;}
.ws3e{word-spacing:-16.576000pt;}
.ws66{word-spacing:-16.512000pt;}
.ws3d{word-spacing:-16.384000pt;}
.ws0{word-spacing:-16.271573pt;}
.ws1{word-spacing:-16.128000pt;}
.ws3b{word-spacing:-16.064000pt;}
.ws68{word-spacing:-16.024871pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws40{word-spacing:-15.360000pt;}
.ws65{word-spacing:-15.168000pt;}
.ws18{word-spacing:-11.755343pt;}
.ws8e{word-spacing:-10.959467pt;}
.ws8c{word-spacing:-10.679680pt;}
.ws49{word-spacing:-10.662659pt;}
.ws5{word-spacing:0.000000pt;}
.ws47{word-spacing:14.838204pt;}
.ws46{word-spacing:17.237732pt;}
.ws45{word-spacing:19.344859pt;}
.ws44{word-spacing:19.522460pt;}
.ws78{word-spacing:20.549335pt;}
.ws86{word-spacing:20.736640pt;}
.ws43{word-spacing:21.396712pt;}
.wsb{word-spacing:26.103685pt;}
.ws89{word-spacing:26.783981pt;}
.ws48{word-spacing:36.166178pt;}
.ws70{word-spacing:37.253443pt;}
.ws6e{word-spacing:39.251475pt;}
.ws61{word-spacing:46.985268pt;}
.ws84{word-spacing:47.326724pt;}
.ws42{word-spacing:48.889548pt;}
.ws53{word-spacing:48.976002pt;}
.ws72{word-spacing:49.409248pt;}
.ws5c{word-spacing:51.107488pt;}
.ws41{word-spacing:51.326457pt;}
.ws87{word-spacing:51.495796pt;}
.ws51{word-spacing:55.473834pt;}
.ws77{word-spacing:55.488948pt;}
.ws73{word-spacing:63.872120pt;}
.ws79{word-spacing:65.845497pt;}
.ws62{word-spacing:65.961636pt;}
.ws7d{word-spacing:67.872035pt;}
.wse{word-spacing:68.183183pt;}
.ws71{word-spacing:69.966116pt;}
.ws5b{word-spacing:72.323676pt;}
.ws58{word-spacing:72.519082pt;}
.ws39{word-spacing:72.926320pt;}
.ws60{word-spacing:74.622046pt;}
.ws56{word-spacing:76.570262pt;}
.ws5a{word-spacing:78.701748pt;}
.ws5e{word-spacing:78.879616pt;}
.ws8b{word-spacing:79.175210pt;}
.ws20{word-spacing:79.919748pt;}
.ws1d{word-spacing:80.023030pt;}
.ws7a{word-spacing:80.346549pt;}
.ws54{word-spacing:83.164556pt;}
.ws4a{word-spacing:87.177470pt;}
.ws88{word-spacing:88.479582pt;}
.ws52{word-spacing:89.308956pt;}
.ws4b{word-spacing:91.624245pt;}
.ws50{word-spacing:99.995354pt;}
.ws8a{word-spacing:106.936120pt;}
.ws4c{word-spacing:108.631493pt;}
.ws82{word-spacing:111.073603pt;}
.ws13{word-spacing:117.536221pt;}
.ws7e{word-spacing:121.493244pt;}
.ws2c{word-spacing:124.617282pt;}
.ws64{word-spacing:125.532445pt;}
.ws3a{word-spacing:127.156292pt;}
.ws35{word-spacing:129.245400pt;}
.ws7f{word-spacing:129.638689pt;}
.ws2a{word-spacing:131.672522pt;}
.ws17{word-spacing:131.780499pt;}
.ws76{word-spacing:133.936255pt;}
.ws1a{word-spacing:134.029224pt;}
.ws25{word-spacing:134.038614pt;}
.ws34{word-spacing:136.353847pt;}
.ws74{word-spacing:137.728748pt;}
.ws85{word-spacing:137.856814pt;}
.ws11{word-spacing:138.658126pt;}
.ws21{word-spacing:138.714461pt;}
.ws24{word-spacing:141.066469pt;}
.ws80{word-spacing:141.960055pt;}
.ws7c{word-spacing:143.988305pt;}
.ws36{word-spacing:148.051290pt;}
.ws30{word-spacing:150.352439pt;}
.ws4e{word-spacing:151.149612pt;}
.ws83{word-spacing:152.272774pt;}
.ws7b{word-spacing:156.416078pt;}
.ws63{word-spacing:157.527330pt;}
.ws4f{word-spacing:159.653236pt;}
.ws37{word-spacing:162.187591pt;}
.ws2e{word-spacing:162.290873pt;}
.ws2f{word-spacing:162.304174pt;}
.ws1e{word-spacing:164.511431pt;}
.ws14{word-spacing:164.642098pt;}
.ws75{word-spacing:166.688734pt;}
.ws26{word-spacing:169.111382pt;}
.ws1b{word-spacing:169.210751pt;}
.ws1f{word-spacing:169.241266pt;}
.wsf{word-spacing:169.336724pt;}
.ws2b{word-spacing:171.585450pt;}
.ws23{word-spacing:173.881904pt;}
.ws12{word-spacing:173.896771pt;}
.wsa{word-spacing:173.935892pt;}
.wsc{word-spacing:173.989098pt;}
.ws6a{word-spacing:175.095474pt;}
.ws38{word-spacing:176.339541pt;}
.ws28{word-spacing:180.977831pt;}
.ws15{word-spacing:181.074071pt;}
.ws6b{word-spacing:181.689934pt;}
.ws1c{word-spacing:183.420602pt;}
.ws69{word-spacing:184.687392pt;}
.ws10{word-spacing:185.672457pt;}
.ws27{word-spacing:192.809854pt;}
.ws33{word-spacing:204.538594pt;}
.ws2d{word-spacing:204.565197pt;}
.ws32{word-spacing:204.573804pt;}
.ws22{word-spacing:206.707512pt;}
.wsd{word-spacing:209.054825pt;}
.ws31{word-spacing:209.165931pt;}
.ws9{word-spacing:214.047559pt;}
.ws81{word-spacing:226.360964pt;}
.ws55{word-spacing:257.515775pt;}
.ws6c{word-spacing:287.244864pt;}
.ws6d{word-spacing:300.197367pt;}
.ws67{word-spacing:303.140901pt;}
.ws4d{word-spacing:319.273344pt;}
.ws19{word-spacing:617.975526pt;}
.ws16{word-spacing:650.858251pt;}
.ws29{word-spacing:655.552877pt;}
.ws6f{word-spacing:713.726226pt;}
.ws5f{word-spacing:1659.763362pt;}
.ws59{word-spacing:1838.481192pt;}
.ws5d{word-spacing:1966.248142pt;}
.ws57{word-spacing:1978.968146pt;}
._50{margin-left:-3.230897pt;}
._5{margin-left:-2.323840pt;}
._0{margin-left:-0.912213pt;}
._1{width:1.114880pt;}
._2{width:2.281588pt;}
._4e{width:3.418494pt;}
._5a{width:8.327682pt;}
._5b{width:12.694876pt;}
._55{width:14.728777pt;}
._53{width:17.194845pt;}
._52{width:18.431128pt;}
._51{width:24.038301pt;}
._3a{width:25.986783pt;}
._59{width:27.526825pt;}
._7{width:30.740411pt;}
._58{width:32.621760pt;}
._22{width:35.496067pt;}
._41{width:38.161341pt;}
._3e{width:42.413153pt;}
._3b{width:45.202800pt;}
._54{width:49.898669pt;}
._60{width:51.963504pt;}
._69{width:55.439482pt;}
._1f{width:58.928510pt;}
._42{width:61.556630pt;}
._21{width:65.682512pt;}
._d{width:68.543104pt;}
._1a{width:72.861471pt;}
._65{width:74.334920pt;}
._66{width:78.353036pt;}
._11{width:79.912799pt;}
._56{width:82.665273pt;}
._62{width:84.881544pt;}
._24{width:86.992984pt;}
._e{width:89.594589pt;}
._1e{width:91.707954pt;}
._57{width:95.235354pt;}
._a{width:96.594277pt;}
._46{width:102.220646pt;}
._2f{width:103.734020pt;}
._12{width:110.658594pt;}
._5f{width:111.718857pt;}
._8{width:112.949571pt;}
._b{width:115.461196pt;}
._4{width:119.985251pt;}
._2e{width:122.244931pt;}
._5d{width:123.507455pt;}
._31{width:127.009976pt;}
._26{width:129.428491pt;}
._2d{width:134.211532pt;}
._33{width:136.456346pt;}
._19{width:138.756713pt;}
._1d{width:141.028129pt;}
._16{width:143.526453pt;}
._20{width:145.826819pt;}
._3d{width:146.994177pt;}
._9{width:148.229685pt;}
._2a{width:149.147579pt;}
._17{width:150.666196pt;}
._28{width:151.595826pt;}
._29{width:152.737309pt;}
._39{width:155.288056pt;}
._f{width:160.138387pt;}
._4c{width:161.746014pt;}
._2b{width:164.870570pt;}
._64{width:166.626222pt;}
._4b{width:168.123732pt;}
._40{width:170.249638pt;}
._25{width:171.576060pt;}
._5e{width:173.283653pt;}
._23{width:176.425609pt;}
._1b{width:178.777617pt;}
._1c{width:180.920713pt;}
._13{width:185.692801pt;}
._6{width:188.176258pt;}
._32{width:190.687883pt;}
._14{width:195.343387pt;}
._4a{width:196.601729pt;}
._63{width:199.706508pt;}
._2c{width:204.305428pt;}
._15{width:211.646258pt;}
._37{width:216.254816pt;}
._67{width:218.345557pt;}
._61{width:223.450761pt;}
._3{width:225.667541pt;}
._4f{width:233.697290pt;}
._c{width:253.785221pt;}
._4d{width:263.966660pt;}
._3f{width:329.711240pt;}
._38{width:331.376434pt;}
._5c{width:382.594772pt;}
._44{width:406.133876pt;}
._68{width:426.270571pt;}
._48{width:557.518844pt;}
._18{width:613.409219pt;}
._35{width:618.081155pt;}
._30{width:620.361961pt;}
._27{width:625.056587pt;}
._34{width:629.871708pt;}
._10{width:636.880784pt;}
._36{width:667.476444pt;}
._47{width:772.412508pt;}
._49{width:1076.818505pt;}
._45{width:1238.411099pt;}
._43{width:1687.331580pt;}
._3c{width:1942.389719pt;}
._6a{width:1954.346667pt;}
.fs4{font-size:34.560000pt;}
.fs8{font-size:37.067166pt;}
.fs6{font-size:38.354887pt;}
.fs2{font-size:42.251634pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:57.643420pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:2.934144pt;}
.y6a{bottom:2.953704pt;}
.y224{bottom:3.069555pt;}
.y161{bottom:3.176098pt;}
.y8f{bottom:3.506885pt;}
.y1f4{bottom:3.984586pt;}
.y1ed{bottom:3.984615pt;}
.y1e8{bottom:4.781523pt;}
.y1f7{bottom:4.814785pt;}
.y223{bottom:15.439801pt;}
.y160{bottom:15.954037pt;}
.y8e{bottom:17.591154pt;}
.y1f6{bottom:24.007387pt;}
.y222{bottom:27.809790pt;}
.y15f{bottom:28.731618pt;}
.y8d{bottom:31.699483pt;}
.y221{bottom:40.179779pt;}
.y15e{bottom:41.509199pt;}
.y1f5{bottom:43.199700pt;}
.y8c{bottom:45.782383pt;}
.y4{bottom:50.240000pt;}
.y220{bottom:52.528368pt;}
.y15d{bottom:54.286780pt;}
.y8b{bottom:59.891690pt;}
.y1f2{bottom:62.392057pt;}
.y21f{bottom:64.898358pt;}
.y3{bottom:67.040000pt;}
.y15c{bottom:67.064361pt;}
.y8a{bottom:73.975568pt;}
.y21e{bottom:77.268346pt;}
.y15b{bottom:79.841942pt;}
.y1f1{bottom:81.584394pt;}
.y89{bottom:88.082919pt;}
.y21d{bottom:89.637479pt;}
.y15a{bottom:92.618636pt;}
.yad{bottom:98.720000pt;}
.yf9{bottom:100.000000pt;}
.y1f0{bottom:100.809937pt;}
.y21c{bottom:102.007468pt;}
.y88{bottom:102.166797pt;}
.y2dd{bottom:104.000000pt;}
.y2f5{bottom:104.320000pt;}
.y2b3{bottom:104.640000pt;}
.y1e6{bottom:105.120000pt;}
.y159{bottom:105.418362pt;}
.y249{bottom:106.880000pt;}
.y14a{bottom:108.320000pt;}
.y1a2{bottom:109.760000pt;}
.y276{bottom:109.920000pt;}
.y28d{bottom:110.400000pt;}
.y2d{bottom:110.720000pt;}
.ye4{bottom:113.600000pt;}
.yac{bottom:114.080000pt;}
.y21b{bottom:114.377458pt;}
.y87{bottom:116.280017pt;}
.y158{bottom:118.200372pt;}
.y136{bottom:118.400000pt;}
.y325{bottom:119.520000pt;}
.yf8{bottom:119.840000pt;}
.y1ef{bottom:120.002274pt;}
.y1cf{bottom:121.280000pt;}
.y2b2{bottom:123.040000pt;}
.y2dc{bottom:123.840000pt;}
.y2f4{bottom:124.160000pt;}
.y248{bottom:125.280000pt;}
.y21a{bottom:126.747447pt;}
.y149{bottom:128.160000pt;}
.y275{bottom:128.320000pt;}
.y28c{bottom:128.800000pt;}
.y217{bottom:128.960000pt;}
.yab{bottom:129.440000pt;}
.y53{bottom:129.600000pt;}
.y86{bottom:130.363894pt;}
.y2c{bottom:130.560000pt;}
.y157{bottom:130.973523pt;}
.ye3{bottom:133.440000pt;}
.y2d3{bottom:134.880000pt;}
.y59{bottom:135.040000pt;}
.y1e5{bottom:135.520000pt;}
.yc0{bottom:138.880000pt;}
.y1ee{bottom:139.191954pt;}
.y324{bottom:139.360000pt;}
.y1ce{bottom:141.120000pt;}
.y3e{bottom:141.280000pt;}
.y2b1{bottom:141.440000pt;}
.y308{bottom:142.080000pt;}
.y247{bottom:143.680000pt;}
.y156{bottom:143.755533pt;}
.y2db{bottom:143.840000pt;}
.y2f3{bottom:144.000000pt;}
.y85{bottom:144.467333pt;}
.yaa{bottom:144.800000pt;}
.y311{bottom:145.440000pt;}
.y274{bottom:146.720000pt;}
.y28b{bottom:147.200000pt;}
.y148{bottom:148.000000pt;}
.ya9{bottom:148.800000pt;}
.y1a1{bottom:149.440000pt;}
.yf7{bottom:150.400000pt;}
.y219{bottom:151.470295pt;}
.y227{bottom:151.840000pt;}
.ye2{bottom:153.280000pt;}
.y2d2{bottom:154.720000pt;}
.y32a{bottom:154.880000pt;}
.y31d{bottom:155.200000pt;}
.y155{bottom:156.528685pt;}
.y1eb{bottom:158.384290pt;}
.y84{bottom:158.551211pt;}
.ybf{bottom:158.720000pt;}
.y2b0{bottom:159.840000pt;}
.y52{bottom:160.160000pt;}
.ya8{bottom:160.320000pt;}
.y2b{bottom:160.960000pt;}
.y3d{bottom:161.120000pt;}
.y307{bottom:162.080000pt;}
.y188{bottom:162.560000pt;}
.y273{bottom:165.120000pt;}
.y310{bottom:165.280000pt;}
.y58{bottom:165.600000pt;}
.y1e4{bottom:166.080000pt;}
.y323{bottom:166.240000pt;}
.y147{bottom:167.840000pt;}
.y216{bottom:168.640000pt;}
.y1a0{bottom:169.280000pt;}
.y154{bottom:169.310695pt;}
.y179{bottom:170.240000pt;}
.y1cd{bottom:171.520000pt;}
.y83{bottom:172.664431pt;}
.ye1{bottom:173.120000pt;}
.y246{bottom:174.240000pt;}
.y2d1{bottom:174.560000pt;}
.y31c{bottom:175.040000pt;}
.y1ea{bottom:177.576625pt;}
.y2af{bottom:178.266667pt;}
.ybe{bottom:178.586667pt;}
.y135{bottom:179.386667pt;}
.y2a{bottom:180.826667pt;}
.y3c{bottom:180.986667pt;}
.y306{bottom:181.946667pt;}
.y153{bottom:182.083846pt;}
.y187{bottom:182.426667pt;}
.y272{bottom:183.546667pt;}
.y11a{bottom:183.866667pt;}
.y28a{bottom:184.026667pt;}
.y30f{bottom:185.146667pt;}
.y82{bottom:186.748309pt;}
.y215{bottom:188.506667pt;}
.y19f{bottom:189.146667pt;}
.y190{bottom:190.106667pt;}
.y51{bottom:190.586667pt;}
.y1cc{bottom:191.386667pt;}
.y245{bottom:192.666667pt;}
.ye0{bottom:192.986667pt;}
.y2d0{bottom:194.426667pt;}
.y152{bottom:194.865857pt;}
.y57{bottom:196.186667pt;}
.y1e3{bottom:196.666667pt;}
.ybd{bottom:198.426667pt;}
.y329{bottom:199.226667pt;}
.y29{bottom:200.826667pt;}
.y81{bottom:200.851748pt;}
.y305{bottom:201.786667pt;}
.y271{bottom:201.946667pt;}
.y31b{bottom:202.106667pt;}
.y186{bottom:202.266667pt;}
.y289{bottom:202.426667pt;}
.y119{bottom:203.706667pt;}
.y2da{bottom:204.826667pt;}
.y151{bottom:207.665582pt;}
.y214{bottom:208.346667pt;}
.y134{bottom:209.946667pt;}
.y244{bottom:211.066667pt;}
.y1cb{bottom:211.386667pt;}
.ydf{bottom:212.826667pt;}
.ya7{bottom:213.626667pt;}
.y2cf{bottom:214.266667pt;}
.y80{bottom:214.935625pt;}
.y2ae{bottom:215.066667pt;}
.y30e{bottom:215.706667pt;}
.ybc{bottom:218.266667pt;}
.y328{bottom:219.066667pt;}
.y19e{bottom:219.706667pt;}
.y270{bottom:220.346667pt;}
.y150{bottom:220.438734pt;}
.y28{bottom:220.666667pt;}
.y288{bottom:220.826667pt;}
.y50{bottom:221.146667pt;}
.y304{bottom:221.626667pt;}
.y185{bottom:222.106667pt;}
.y118{bottom:223.546667pt;}
.y2d9{bottom:224.666667pt;}
.y56{bottom:226.586667pt;}
.y1e2{bottom:227.226667pt;}
.y213{bottom:228.346667pt;}
.y146{bottom:228.826667pt;}
.y7f{bottom:229.048845pt;}
.y243{bottom:229.466667pt;}
.y1ca{bottom:231.226667pt;}
.yde{bottom:232.826667pt;}
.y14f{bottom:233.220743pt;}
.ya6{bottom:233.466667pt;}
.y2ce{bottom:234.106667pt;}
.y30d{bottom:235.546667pt;}
.y26f{bottom:238.746667pt;}
.y327{bottom:239.066667pt;}
.y287{bottom:239.226667pt;}
.y19d{bottom:239.546667pt;}
.y27{bottom:240.506667pt;}
.y4f{bottom:240.986667pt;}
.y303{bottom:241.466667pt;}
.y184{bottom:241.946667pt;}
.y7e{bottom:243.132720pt;}
.y2d8{bottom:244.506667pt;}
.y14e{bottom:245.993896pt;}
.y242{bottom:247.866667pt;}
.y145{bottom:248.666667pt;}
.ybb{bottom:248.826667pt;}
.y1c9{bottom:251.066667pt;}
.y2ad{bottom:251.866667pt;}
.ydd{bottom:252.666667pt;}
.ya5{bottom:253.306667pt;}
.y117{bottom:254.106667pt;}
.y55{bottom:257.146667pt;}
.y7b{bottom:257.236162pt;}
.y1e1{bottom:257.626667pt;}
.y212{bottom:258.746667pt;}
.y14d{bottom:258.775905pt;}
.y16e{bottom:258.906667pt;}
.y19c{bottom:259.386667pt;}
.y26{bottom:260.346667pt;}
.y183{bottom:261.786667pt;}
.y30c{bottom:262.586667pt;}
.y2d7{bottom:264.346667pt;}
.y241{bottom:266.266667pt;}
.y2e3{bottom:267.866667pt;}
.yba{bottom:268.666667pt;}
.y2ac{bottom:270.266667pt;}
.y1c8{bottom:270.906667pt;}
.y133{bottom:271.066667pt;}
.y7a{bottom:271.320039pt;}
.y4e{bottom:271.546667pt;}
.y14c{bottom:271.549037pt;}
.y302{bottom:272.026667pt;}
.ydc{bottom:272.506667pt;}
.ya4{bottom:273.146667pt;}
.y116{bottom:273.946667pt;}
.y26e{bottom:275.546667pt;}
.y286{bottom:276.026667pt;}
.y1e0{bottom:277.466667pt;}
.y211{bottom:278.586667pt;}
.y16d{bottom:278.746667pt;}
.y19b{bottom:279.226667pt;}
.y25{bottom:280.186667pt;}
.y182{bottom:281.626667pt;}
.y1a8{bottom:283.066667pt;}
.y54{bottom:284.026667pt;}
.y2d6{bottom:284.186667pt;}
.y2cd{bottom:284.506667pt;}
.y240{bottom:284.666667pt;}
.y5a{bottom:284.920000pt;}
.y79{bottom:285.433259pt;}
.y2e2{bottom:287.706667pt;}
.yb9{bottom:288.506667pt;}
.y2ab{bottom:288.666667pt;}
.y326{bottom:289.306667pt;}
.y3b{bottom:290.906667pt;}
.y301{bottom:291.866667pt;}
.ydb{bottom:292.346667pt;}
.ya3{bottom:292.986667pt;}
.y115{bottom:293.786667pt;}
.y26d{bottom:293.946667pt;}
.y285{bottom:294.426667pt;}
.y1df{bottom:297.466667pt;}
.y210{bottom:298.426667pt;}
.y16c{bottom:298.586667pt;}
.y19a{bottom:299.066667pt;}
.y78{bottom:299.517136pt;}
.yf6{bottom:300.026667pt;}
.y132{bottom:301.466667pt;}
.y4d{bottom:302.106667pt;}
.y1a7{bottom:303.066667pt;}
.y2cc{bottom:304.346667pt;}
.y2aa{bottom:306.906667pt;}
.yb8{bottom:308.346667pt;}
.y24{bottom:310.746667pt;}
.y300{bottom:311.706667pt;}
.yda{bottom:312.186667pt;}
.y26c{bottom:312.346667pt;}
.ya2{bottom:312.826667pt;}
.y77{bottom:313.620576pt;}
.y114{bottom:313.626667pt;}
.y2d5{bottom:314.746667pt;}
.y1de{bottom:317.306667pt;}
.y2e1{bottom:318.266667pt;}
.y16b{bottom:318.426667pt;}
.y199{bottom:318.906667pt;}
.yf5{bottom:319.866667pt;}
.y181{bottom:321.306667pt;}
.y23f{bottom:321.466667pt;}
.y4c{bottom:321.946667pt;}
.y1a6{bottom:322.906667pt;}
.y2cb{bottom:324.186667pt;}
.y2a9{bottom:325.306667pt;}
.y76{bottom:327.704454pt;}
.yb7{bottom:328.186667pt;}
.y23{bottom:330.586667pt;}
.y26b{bottom:330.746667pt;}
.y284{bottom:331.226667pt;}
.yd9{bottom:332.026667pt;}
.y113{bottom:333.466667pt;}
.y2d4{bottom:334.586667pt;}
.y2f2{bottom:334.906667pt;}
.y1dd{bottom:337.146667pt;}
.y20f{bottom:338.266667pt;}
.y198{bottom:338.746667pt;}
.yf4{bottom:339.706667pt;}
.y178{bottom:339.866667pt;}
.y1c7{bottom:341.146667pt;}
.y4b{bottom:341.786667pt;}
.y75{bottom:341.817673pt;}
.y2ff{bottom:342.266667pt;}
.y1a5{bottom:342.746667pt;}
.ya1{bottom:343.386667pt;}
.y2a8{bottom:343.706667pt;}
.y2ca{bottom:344.186667pt;}
.yb6{bottom:348.026667pt;}
.y2e0{bottom:348.826667pt;}
.y16a{bottom:348.986667pt;}
.y26a{bottom:349.146667pt;}
.y283{bottom:349.626667pt;}
.y22{bottom:350.426667pt;}
.yd8{bottom:351.866667pt;}
.y112{bottom:353.306667pt;}
.y2f1{bottom:354.746667pt;}
.y74{bottom:355.901551pt;}
.y1dc{bottom:356.986667pt;}
.y3a{bottom:357.626667pt;}
.y20e{bottom:358.106667pt;}
.y23e{bottom:358.266667pt;}
.y197{bottom:358.586667pt;}
.yf3{bottom:359.546667pt;}
.y177{bottom:359.706667pt;}
.y1c6{bottom:360.986667pt;}
.y18f{bottom:361.146667pt;}
.y4a{bottom:361.626667pt;}
.y2a7{bottom:362.106667pt;}
.y131{bottom:362.586667pt;}
.y269{bottom:367.546667pt;}
.yb5{bottom:367.866667pt;}
.y282{bottom:368.026667pt;}
.y2df{bottom:368.666667pt;}
.y73{bottom:370.004990pt;}
.y21{bottom:370.266667pt;}
.yd7{bottom:371.706667pt;}
.y111{bottom:373.146667pt;}
.ya0{bottom:373.946667pt;}
.y2c9{bottom:374.586667pt;}
.y23d{bottom:376.666667pt;}
.y1db{bottom:376.826667pt;}
.y20d{bottom:377.946667pt;}
.y196{bottom:378.426667pt;}
.y169{bottom:379.386667pt;}
.y2a6{bottom:380.506667pt;}
.y1c5{bottom:380.826667pt;}
.y18e{bottom:380.986667pt;}
.y49{bottom:381.466667pt;}
.y130{bottom:382.426667pt;}
.y72{bottom:384.088868pt;}
.y268{bottom:385.946667pt;}
.y281{bottom:386.426667pt;}
.yb4{bottom:387.746667pt;}
.y2de{bottom:388.546667pt;}
.y20{bottom:390.146667pt;}
.y180{bottom:391.586667pt;}
.y2fe{bottom:392.706667pt;}
.y110{bottom:393.186667pt;}
.y9f{bottom:393.826667pt;}
.y2c8{bottom:394.466667pt;}
.y23c{bottom:396.546667pt;}
.y1da{bottom:396.706667pt;}
.y20c{bottom:397.826667pt;}
.y71{bottom:398.202087pt;}
.y195{bottom:398.466667pt;}
.y2a5{bottom:398.946667pt;}
.y1c4{bottom:400.706667pt;}
.y18d{bottom:400.866667pt;}
.y48{bottom:401.346667pt;}
.yd6{bottom:402.306667pt;}
.y267{bottom:404.386667pt;}
.y280{bottom:404.866667pt;}
.y1f{bottom:409.986667pt;}
.y17f{bottom:411.426667pt;}
.y70{bottom:412.285965pt;}
.y10f{bottom:413.026667pt;}
.y9e{bottom:413.666667pt;}
.y2c7{bottom:414.466667pt;}
.y1b5{bottom:415.426667pt;}
.y23b{bottom:416.386667pt;}
.y2a4{bottom:417.346667pt;}
.y20b{bottom:417.666667pt;}
.yb3{bottom:418.306667pt;}
.y1c3{bottom:420.546667pt;}
.yf2{bottom:420.706667pt;}
.y47{bottom:421.186667pt;}
.y2fd{bottom:421.666667pt;}
.y12f{bottom:422.146667pt;}
.y266{bottom:422.786667pt;}
.y27f{bottom:423.266667pt;}
.y2f0{bottom:425.026667pt;}
.y6f{bottom:426.389404pt;}
.y1d9{bottom:427.266667pt;}
.y1e{bottom:429.826667pt;}
.y17e{bottom:431.426667pt;}
.yd5{bottom:432.866667pt;}
.y9d{bottom:433.506667pt;}
.y2c6{bottom:434.306667pt;}
.y23a{bottom:434.786667pt;}
.y1b4{bottom:435.266667pt;}
.y144{bottom:438.146667pt;}
.y1be{bottom:439.746667pt;}
.y2fc{bottom:440.066667pt;}
.y1c2{bottom:440.386667pt;}
.y6e{bottom:440.473282pt;}
.yf1{bottom:440.546667pt;}
.y46{bottom:441.186667pt;}
.y27e{bottom:441.666667pt;}
.y12e{bottom:441.986667pt;}
.y1d8{bottom:447.106667pt;}
.y2a3{bottom:447.906667pt;}
.y20a{bottom:448.226667pt;}
.yb2{bottom:448.866667pt;}
.y1d{bottom:449.666667pt;}
.yd4{bottom:452.706667pt;}
.y239{bottom:453.186667pt;}
.y9c{bottom:453.346667pt;}
.y2c5{bottom:454.146667pt;}
.y6d{bottom:454.586501pt;}
.y1b3{bottom:455.106667pt;}
.y2ef{bottom:455.586667pt;}
.y143{bottom:457.986667pt;}
.y2fb{bottom:458.466667pt;}
.y1bd{bottom:459.586667pt;}
.y27d{bottom:460.066667pt;}
.yf0{bottom:460.386667pt;}
.y45{bottom:461.026667pt;}
.y12d{bottom:461.826667pt;}
.y10e{bottom:463.426667pt;}
.y2a2{bottom:466.306667pt;}
.y1d7{bottom:466.946667pt;}
.y6c{bottom:468.670379pt;}
.y1c{bottom:469.506667pt;}
.y1c1{bottom:470.946667pt;}
.y238{bottom:471.586667pt;}
.yd3{bottom:472.546667pt;}
.y2c4{bottom:473.986667pt;}
.y1b2{bottom:474.946667pt;}
.y2ee{bottom:475.426667pt;}
.y2fa{bottom:476.866667pt;}
.y142{bottom:477.826667pt;}
.y265{bottom:477.986667pt;}
.y27c{bottom:478.466667pt;}
.y209{bottom:478.786667pt;}
.yb1{bottom:479.426667pt;}
.y1bc{bottom:479.586667pt;}
.yef{bottom:480.226667pt;}
.y12c{bottom:481.666667pt;}
.y6b{bottom:482.773810pt;}
.y68{bottom:482.773818pt;}
.y9b{bottom:483.906667pt;}
.y2a1{bottom:484.706667pt;}
.y1d6{bottom:486.786667pt;}
.y1b{bottom:489.506667pt;}
.y237{bottom:489.986667pt;}
.y18c{bottom:490.946667pt;}
.y44{bottom:491.426667pt;}
.yd2{bottom:492.386667pt;}
.y10d{bottom:493.826667pt;}
.y1b1{bottom:494.786667pt;}
.y2ed{bottom:495.266667pt;}
.y264{bottom:496.386667pt;}
.y67{bottom:496.857696pt;}
.y27b{bottom:496.866667pt;}
.y141{bottom:497.666667pt;}
.y208{bottom:498.626667pt;}
.yb0{bottom:499.266667pt;}
.y1bb{bottom:499.426667pt;}
.yee{bottom:500.066667pt;}
.y176{bottom:500.226667pt;}
.y12b{bottom:501.506667pt;}
.y2a0{bottom:503.106667pt;}
.y1d5{bottom:506.626667pt;}
.y2f9{bottom:507.426667pt;}
.y236{bottom:508.386667pt;}
.y18b{bottom:510.786667pt;}
.y66{bottom:510.970915pt;}
.y43{bottom:511.266667pt;}
.yd1{bottom:512.226667pt;}
.y10c{bottom:513.666667pt;}
.y9a{bottom:514.466667pt;}
.y1b0{bottom:514.626667pt;}
.y263{bottom:514.786667pt;}
.y2ec{bottom:515.106667pt;}
.y140{bottom:517.506667pt;}
.y207{bottom:518.466667pt;}
.yaf{bottom:519.106667pt;}
.y1ba{bottom:519.266667pt;}
.y1a{bottom:519.906667pt;}
.y1c0{bottom:521.346667pt;}
.y12a{bottom:521.506667pt;}
.y65{bottom:525.054793pt;}
.y7c{bottom:525.118579pt;}
.y1d4{bottom:526.466667pt;}
.y235{bottom:526.786667pt;}
.y27a{bottom:527.426667pt;}
.y168{bottom:530.626667pt;}
.y42{bottom:531.266667pt;}
.yd0{bottom:532.066667pt;}
.y262{bottom:533.186667pt;}
.y10b{bottom:533.506667pt;}
.y99{bottom:534.306667pt;}
.y1af{bottom:534.466667pt;}
.y2eb{bottom:534.946667pt;}
.y2f8{bottom:536.546667pt;}
.y13f{bottom:537.346667pt;}
.y206{bottom:538.306667pt;}
.y1b9{bottom:539.106667pt;}
.y64{bottom:539.158232pt;}
.y19{bottom:539.746667pt;}
.y29f{bottom:539.906667pt;}
.y18a{bottom:541.346667pt;}
.y1a4{bottom:542.786667pt;}
.y2c3{bottom:544.226667pt;}
.y234{bottom:545.186667pt;}
.y279{bottom:545.826667pt;}
.yae{bottom:545.986667pt;}
.y1d3{bottom:546.306667pt;}
.y1bf{bottom:548.386667pt;}
.y175{bottom:550.466667pt;}
.y261{bottom:551.586667pt;}
.ycf{bottom:551.906667pt;}
.y322{bottom:552.066667pt;}
.y63{bottom:553.242110pt;}
.y10a{bottom:553.506667pt;}
.y98{bottom:554.146667pt;}
.y1ae{bottom:554.306667pt;}
.y2ea{bottom:554.786667pt;}
.y2f7{bottom:554.946667pt;}
.y31a{bottom:555.746667pt;}
.y13e{bottom:557.186667pt;}
.y205{bottom:558.146667pt;}
.y41{bottom:558.306667pt;}
.y18{bottom:559.746667pt;}
.y167{bottom:561.186667pt;}
.y1a3{bottom:562.626667pt;}
.y233{bottom:563.586667pt;}
.y278{bottom:564.226667pt;}
.y1d2{bottom:566.146667pt;}
.y62{bottom:567.355329pt;}
.y1b8{bottom:569.666667pt;}
.y260{bottom:569.986667pt;}
.y226{bottom:570.306667pt;}
.y174{bottom:570.466667pt;}
.yce{bottom:571.746667pt;}
.y321{bottom:571.906667pt;}
.y2f6{bottom:573.346667pt;}
.y97{bottom:573.986667pt;}
.y1ad{bottom:574.306667pt;}
.y2c2{bottom:574.786667pt;}
.y319{bottom:575.586667pt;}
.y29e{bottom:576.706667pt;}
.y13d{bottom:577.186667pt;}
.y204{bottom:577.986667pt;}
.y17{bottom:579.586667pt;}
.y166{bottom:581.026667pt;}
.y61{bottom:581.439208pt;}
.y232{bottom:581.986667pt;}
.y129{bottom:582.466667pt;}
.y277{bottom:582.626667pt;}
.y109{bottom:583.906667pt;}
.y2e9{bottom:585.346667pt;}
.y1d1{bottom:586.146667pt;}
.y194{bottom:587.746667pt;}
.y25f{bottom:588.386667pt;}
.y1b7{bottom:589.506667pt;}
.yed{bottom:590.146667pt;}
.y173{bottom:590.306667pt;}
.ycd{bottom:591.746667pt;}
.y96{bottom:593.826667pt;}
.y1ac{bottom:594.146667pt;}
.y2c1{bottom:594.626667pt;}
.y29d{bottom:595.106667pt;}
.y60{bottom:595.542646pt;}
.y318{bottom:595.586667pt;}
.y13c{bottom:597.026667pt;}
.y203{bottom:597.826667pt;}
.y16{bottom:599.453333pt;}
.y231{bottom:600.413333pt;}
.y189{bottom:600.893333pt;}
.y128{bottom:602.333333pt;}
.y108{bottom:603.773333pt;}
.y25e{bottom:606.813333pt;}
.y193{bottom:607.613333pt;}
.y5f{bottom:609.626524pt;}
.y225{bottom:610.013333pt;}
.y172{bottom:610.173333pt;}
.ycc{bottom:611.613333pt;}
.y1d0{bottom:613.053333pt;}
.y1e9{bottom:613.068907pt;}
.y95{bottom:613.693333pt;}
.y2c0{bottom:614.493333pt;}
.y317{bottom:615.453333pt;}
.y2e8{bottom:615.933333pt;}
.y1b6{bottom:616.413333pt;}
.y13b{bottom:616.893333pt;}
.y230{bottom:618.813333pt;}
.y15{bottom:619.293333pt;}
.yec{bottom:620.733333pt;}
.y127{bottom:622.173333pt;}
.y320{bottom:622.333333pt;}
.y5e{bottom:623.739743pt;}
.y107{bottom:623.773333pt;}
.y1ab{bottom:624.573333pt;}
.y25d{bottom:625.213333pt;}
.y29c{bottom:625.693333pt;}
.y192{bottom:627.453333pt;}
.y202{bottom:628.413333pt;}
.y171{bottom:630.013333pt;}
.ycb{bottom:631.453333pt;}
.y94{bottom:633.533333pt;}
.y2bf{bottom:634.333333pt;}
.y316{bottom:635.293333pt;}
.y2e7{bottom:635.773333pt;}
.y13a{bottom:636.733333pt;}
.y22f{bottom:637.213333pt;}
.y5d{bottom:637.823622pt;}
.y14{bottom:639.133333pt;}
.yeb{bottom:640.573333pt;}
.y126{bottom:642.013333pt;}
.y106{bottom:643.613333pt;}
.y29b{bottom:644.093333pt;}
.y1aa{bottom:644.413333pt;}
.y201{bottom:648.253333pt;}
.y165{bottom:651.293333pt;}
.y5c{bottom:651.927060pt;}
.y1f3{bottom:652.284046pt;}
.y31f{bottom:652.893333pt;}
.y2be{bottom:654.173333pt;}
.y191{bottom:654.493333pt;}
.y315{bottom:655.133333pt;}
.y2e6{bottom:655.613333pt;}
.y139{bottom:656.573333pt;}
.yea{bottom:660.413333pt;}
.y170{bottom:660.573333pt;}
.yca{bottom:661.853333pt;}
.y25c{bottom:662.013333pt;}
.y29a{bottom:662.493333pt;}
.y105{bottom:663.453333pt;}
.y93{bottom:664.093333pt;}
.y22e{bottom:667.773333pt;}
.y200{bottom:668.093333pt;}
.y13{bottom:669.693333pt;}
.y164{bottom:671.133333pt;}
.y1a9{bottom:671.453333pt;}
.y125{bottom:672.573333pt;}
.y2bd{bottom:674.013333pt;}
.y2e5{bottom:675.453333pt;}
.y31e{bottom:679.773333pt;}
.y5b{bottom:680.124155pt;}
.ye9{bottom:680.253333pt;}
.y25b{bottom:680.413333pt;}
.y299{bottom:680.893333pt;}
.yc9{bottom:681.853333pt;}
.y104{bottom:683.293333pt;}
.y314{bottom:685.693333pt;}
.y22d{bottom:686.173333pt;}
.y138{bottom:687.133333pt;}
.y1ff{bottom:687.933333pt;}
.y12{bottom:689.533333pt;}
.y163{bottom:690.973333pt;}
.y124{bottom:692.413333pt;}
.y2bc{bottom:693.853333pt;}
.y91{bottom:694.653333pt;}
.y25a{bottom:698.813333pt;}
.y298{bottom:699.293333pt;}
.ye8{bottom:700.093333pt;}
.y92{bottom:700.733333pt;}
.yc8{bottom:701.693333pt;}
.y2e4{bottom:702.493333pt;}
.y103{bottom:703.133333pt;}
.y22c{bottom:704.573333pt;}
.y313{bottom:705.533333pt;}
.y1fe{bottom:707.773333pt;}
.y11{bottom:709.373333pt;}
.y162{bottom:710.813333pt;}
.y123{bottom:712.253333pt;}
.y2bb{bottom:713.693333pt;}
.y137{bottom:713.853333pt;}
.y14b{bottom:714.373333pt;}
.y90{bottom:714.493333pt;}
.y259{bottom:717.213333pt;}
.y297{bottom:717.693333pt;}
.y30b{bottom:719.613333pt;}
.yc7{bottom:721.533333pt;}
.y102{bottom:722.973333pt;}
.y1fd{bottom:727.613333pt;}
.y10{bottom:729.213333pt;}
.ye7{bottom:730.653333pt;}
.y122{bottom:732.093333pt;}
.y312{bottom:732.413333pt;}
.y2ba{bottom:733.533333pt;}
.y258{bottom:735.613333pt;}
.y296{bottom:736.093333pt;}
.y30a{bottom:739.453333pt;}
.y39{bottom:741.373333pt;}
.y101{bottom:742.813333pt;}
.y1fc{bottom:747.453333pt;}
.yf{bottom:749.053333pt;}
.y121{bottom:752.093333pt;}
.y2b9{bottom:753.373333pt;}
.y257{bottom:754.013333pt;}
.y295{bottom:754.493333pt;}
.y22b{bottom:759.773333pt;}
.y38{bottom:761.213333pt;}
.y17d{bottom:762.653333pt;}
.y69{bottom:764.740108pt;}
.y309{bottom:766.493333pt;}
.y1fb{bottom:767.453333pt;}
.y1ec{bottom:767.468560pt;}
.ye{bottom:768.893333pt;}
.y120{bottom:771.933333pt;}
.y256{bottom:772.413333pt;}
.y294{bottom:772.893333pt;}
.y2b8{bottom:773.213333pt;}
.y100{bottom:773.373333pt;}
.y22a{bottom:779.613333pt;}
.y37{bottom:781.053333pt;}
.y17c{bottom:782.493333pt;}
.y1fa{bottom:787.293333pt;}
.yd{bottom:788.733333pt;}
.y255{bottom:790.813333pt;}
.y293{bottom:791.293333pt;}
.ye6{bottom:791.773333pt;}
.yff{bottom:793.213333pt;}
.y229{bottom:799.453333pt;}
.y36{bottom:800.893333pt;}
.y17b{bottom:802.333333pt;}
.y2b7{bottom:803.773333pt;}
.y1e7{bottom:805.853258pt;}
.y1f9{bottom:807.133333pt;}
.yc{bottom:808.573333pt;}
.y254{bottom:809.213333pt;}
.y292{bottom:809.693333pt;}
.ye5{bottom:811.653333pt;}
.yfe{bottom:813.093333pt;}
.y35{bottom:820.773333pt;}
.y17a{bottom:822.213333pt;}
.y253{bottom:827.653333pt;}
.y291{bottom:828.133333pt;}
.y228{bottom:830.053333pt;}
.yc6{bottom:831.493333pt;}
.yfd{bottom:832.933333pt;}
.y1f8{bottom:833.893333pt;}
.y2b6{bottom:834.373333pt;}
.y218{bottom:834.773333pt;}
.yb{bottom:839.173333pt;}
.y34{bottom:840.613333pt;}
.y11f{bottom:842.213333pt;}
.y252{bottom:846.053333pt;}
.y290{bottom:846.533333pt;}
.yc5{bottom:851.333333pt;}
.yfc{bottom:852.773333pt;}
.y16f{bottom:858.533333pt;}
.y33{bottom:860.453333pt;}
.y11e{bottom:862.053333pt;}
.y251{bottom:864.453333pt;}
.y28f{bottom:864.933333pt;}
.ya{bottom:869.733333pt;}
.yc4{bottom:871.173333pt;}
.yfb{bottom:872.613333pt;}
.y11d{bottom:881.893333pt;}
.y250{bottom:882.853333pt;}
.y28e{bottom:883.333333pt;}
.y32{bottom:891.013333pt;}
.yfa{bottom:892.453333pt;}
.y2b5{bottom:895.493333pt;}
.y9{bottom:900.293333pt;}
.y24f{bottom:901.253333pt;}
.y11c{bottom:901.733333pt;}
.yc3{bottom:910.853333pt;}
.y40{bottom:912.453333pt;}
.y24e{bottom:919.653333pt;}
.y8{bottom:920.133333pt;}
.y31{bottom:921.573333pt;}
.y2b4{bottom:925.893333pt;}
.yc2{bottom:930.693333pt;}
.y3f{bottom:932.293333pt;}
.y24d{bottom:938.053333pt;}
.y11b{bottom:941.413333pt;}
.y7{bottom:950.533333pt;}
.y30{bottom:952.133333pt;}
.y24c{bottom:956.453333pt;}
.yc1{bottom:961.253333pt;}
.y2f{bottom:971.973333pt;}
.y24b{bottom:974.853333pt;}
.y6{bottom:981.093333pt;}
.y2e{bottom:991.813333pt;}
.y24a{bottom:993.253333pt;}
.y5{bottom:1011.653333pt;}
.y2{bottom:1043.680000pt;}
.y1{bottom:1061.440000pt;}
.hb{height:13.497052pt;}
.ha{height:13.521503pt;}
.h18{height:18.395441pt;}
.h13{height:18.395471pt;}
.h16{height:18.395495pt;}
.hd{height:25.261875pt;}
.h1b{height:27.872771pt;}
.h1c{height:28.017565pt;}
.h11{height:28.841077pt;}
.hc{height:29.940625pt;}
.h9{height:31.771248pt;}
.hf{height:37.090625pt;}
.h12{height:38.148879pt;}
.he{height:38.828437pt;}
.h19{height:42.134863pt;}
.h3{height:43.038750pt;}
.h14{height:43.345150pt;}
.h17{height:43.570319pt;}
.h5{height:44.687500pt;}
.h4{height:45.156250pt;}
.h7{height:51.937500pt;}
.h6{height:52.750000pt;}
.h1d{height:54.260625pt;}
.h2{height:58.563750pt;}
.h1a{height:160.759069pt;}
.h15{height:211.182186pt;}
.h10{height:281.133938pt;}
.h8{height:690.687565pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:76.317477pt;}
.w5{width:86.287868pt;}
.wa{width:89.649513pt;}
.w8{width:243.324885pt;}
.w9{width:368.155343pt;}
.w7{width:601.133920pt;}
.w3{width:601.136380pt;}
.wb{width:601.217703pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.759481pt;}
.x16{left:2.932469pt;}
.x1d{left:4.691952pt;}
.x2c{left:6.915702pt;}
.x14{left:8.797405pt;}
.x2b{left:11.725659pt;}
.x15{left:13.513791pt;}
.x13{left:15.273271pt;}
.x1f{left:16.446262pt;}
.x19{left:17.619247pt;}
.x18{left:18.792234pt;}
.x22{left:19.965226pt;}
.x17{left:21.138208pt;}
.x3b{left:22.193965pt;}
.x1a{left:24.070676pt;}
.x11{left:25.243662pt;}
.x23{left:26.416656pt;}
.x1e{left:27.589639pt;}
.x20{left:29.349121pt;}
.x39{left:31.214270pt;}
.x2d{left:44.198424pt;}
.x10{left:88.658280pt;}
.x2{left:96.031988pt;}
.x27{left:98.591988pt;}
.x2e{left:99.551988pt;}
.xa{left:100.991988pt;}
.x21{left:103.320625pt;}
.x9{left:105.311988pt;}
.x45{left:106.911988pt;}
.x44{left:107.871988pt;}
.x31{left:109.151988pt;}
.xb{left:110.591988pt;}
.xd{left:112.671988pt;}
.xe{left:114.591988pt;}
.x41{left:118.431988pt;}
.x3f{left:121.631988pt;}
.x28{left:125.471988pt;}
.x3a{left:127.253058pt;}
.x2f{left:132.991988pt;}
.x42{left:140.666655pt;}
.x3c{left:144.026655pt;}
.x3d{left:148.026655pt;}
.x29{left:152.826655pt;}
.x36{left:156.826655pt;}
.x2a{left:170.392205pt;}
.x38{left:212.665326pt;}
.x34{left:259.906655pt;}
.x1c{left:288.242048pt;}
.x1b{left:292.084347pt;}
.x32{left:296.706655pt;}
.x6{left:301.826655pt;}
.x24{left:307.106643pt;}
.x25{left:312.546655pt;}
.xf{left:314.626655pt;}
.x4{left:353.186655pt;}
.x1{left:385.186655pt;}
.x3{left:388.706655pt;}
.x7{left:396.866655pt;}
.x5{left:511.613322pt;}
.x37{left:581.853322pt;}
.x33{left:625.093322pt;}
.x43{left:627.333322pt;}
.x30{left:635.973322pt;}
.x40{left:638.213322pt;}
.x8{left:639.973322pt;}
.x35{left:651.973322pt;}
.x26{left:661.253322pt;}
.x47{left:666.693322pt;}
.x3e{left:669.893322pt;}
.x46{left:694.853322pt;}
.xc{left:698.053322pt;}
}




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