
    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_9772e58ebca643766ea00e22.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_556e8914ec97ae538d6f254e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_6606ca191eb5d98df2e00750.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_939de40d399da2899a9f38da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_c5a1027a7d48fbf17e919fd3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.304000;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_9471ccab36b2d7aded5ff31f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.431000;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_a88bf315e7327c34e3161734.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.664000;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_0bf27f233b55ef77ffb36ee9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929000;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_87cfc17bbabde6ea8f1a4fbf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893000;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_b1b47dfe0e06533cd4bfa3b5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.431000;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_50563ade63e082a01f31be0c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.431000;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_687f89c36dc6898ae68ab33f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.854000;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_af5c57c55145555760d8dbdd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.854000;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_e94f1aed10f4b3730e4b28dd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_586f0afbc17999e25b143b66.woff2')format("woff");}.fff{font-family:fff;line-height:0.699000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000141px;}
.ls6{letter-spacing:0.000557px;}
.ls7{letter-spacing:0.001002px;}
.ls4{letter-spacing:2.987468px;}
.ls2{letter-spacing:6.925679px;}
.ls8{letter-spacing:9.216557px;}
.lsb{letter-spacing:13.030800px;}
.lsc{letter-spacing:17.720400px;}
.lsa{letter-spacing:19.055510px;}
.ls1{letter-spacing:21.266915px;}
.ls3{letter-spacing:21.973409px;}
.ls9{letter-spacing:23.672400px;}
.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;}
}
.ws1a{word-spacing:-13.449600px;}
.ws155{word-spacing:-10.460700px;}
.ws64{word-spacing:-2.958912px;}
.ws43{word-spacing:-2.851315px;}
.ws90{word-spacing:-2.797517px;}
.ws16{word-spacing:-2.636122px;}
.ws196{word-spacing:-2.510568px;}
.ws2b{word-spacing:-2.474726px;}
.ws189{word-spacing:-2.426882px;}
.ws6b{word-spacing:-2.420928px;}
.ws50{word-spacing:-2.367130px;}
.ws121{word-spacing:-2.313331px;}
.ws9e{word-spacing:-2.259533px;}
.ws164{word-spacing:-2.259511px;}
.ws13{word-spacing:-2.205734px;}
.ws1f{word-spacing:-2.044339px;}
.ws131{word-spacing:-1.990541px;}
.ws1c{word-spacing:-1.936742px;}
.ws17b{word-spacing:-1.924769px;}
.ws177{word-spacing:-1.799240px;}
.ws16a{word-spacing:-1.757398px;}
.ws3e{word-spacing:-1.721549px;}
.ws12d{word-spacing:-1.667750px;}
.ws146{word-spacing:-1.613952px;}
.wsa5{word-spacing:-1.560154px;}
.ws9a{word-spacing:-1.506355px;}
.ws10b{word-spacing:-1.503667px;}
.ws10a{word-spacing:-1.483046px;}
.ws68{word-spacing:-1.452557px;}
.wsf0{word-spacing:-1.440490px;}
.wsef{word-spacing:-1.437024px;}
.ws18d{word-spacing:-1.422655px;}
.ws4f{word-spacing:-1.344960px;}
.ws59{word-spacing:-1.291162px;}
.ws19c{word-spacing:-1.255284px;}
.ws127{word-spacing:-1.237363px;}
.wsa{word-spacing:-1.183565px;}
.ws11a{word-spacing:-1.129766px;}
.ws172{word-spacing:-1.087913px;}
.wsc5{word-spacing:-1.083024px;}
.wsb2{word-spacing:-1.075968px;}
.wsc4{word-spacing:-1.069334px;}
.ws125{word-spacing:-1.067846px;}
.ws11f{word-spacing:-1.032490px;}
.ws120{word-spacing:-1.024291px;}
.ws11e{word-spacing:-1.023091px;}
.ws70{word-spacing:-1.022170px;}
.ws190{word-spacing:-0.962384px;}
.wsa4{word-spacing:-0.914573px;}
.wsc{word-spacing:-0.860774px;}
.ws123{word-spacing:-0.806976px;}
.ws178{word-spacing:-0.795013px;}
.ws81{word-spacing:-0.699379px;}
.ws15d{word-spacing:-0.669485px;}
.ws115{word-spacing:-0.645581px;}
.ws102{word-spacing:-0.594240px;}
.ws104{word-spacing:-0.591782px;}
.ws179{word-spacing:-0.585799px;}
.ws103{word-spacing:-0.565046px;}
.ws47{word-spacing:-0.484186px;}
.ws119{word-spacing:-0.471091px;}
.ws7a{word-spacing:-0.430387px;}
.ws78{word-spacing:-0.376589px;}
.ws132{word-spacing:-0.322790px;}
.wsf1{word-spacing:-0.309024px;}
.ws133{word-spacing:-0.268992px;}
.ws76{word-spacing:-0.215194px;}
.ws44{word-spacing:-0.161395px;}
.ws19b{word-spacing:-0.125528px;}
.ws3{word-spacing:-0.107597px;}
.ws9{word-spacing:-0.053798px;}
.ws34{word-spacing:-0.049315px;}
.ws5{word-spacing:-0.047821px;}
.ws14f{word-spacing:-0.041843px;}
.ws14e{word-spacing:-0.000300px;}
.ws17f{word-spacing:-0.000059px;}
.ws0{word-spacing:0.000000px;}
.ws157{word-spacing:0.001992px;}
.ws166{word-spacing:0.041843px;}
.ws3b{word-spacing:0.053798px;}
.ws14b{word-spacing:0.083686px;}
.ws84{word-spacing:0.107597px;}
.ws4d{word-spacing:0.161395px;}
.ws105{word-spacing:0.169709px;}
.ws20{word-spacing:0.215194px;}
.wsb8{word-spacing:0.268992px;}
.ws197{word-spacing:0.334742px;}
.ws6a{word-spacing:0.376589px;}
.ws1d{word-spacing:0.430387px;}
.ws153{word-spacing:0.502114px;}
.ws10c{word-spacing:0.506976px;}
.ws98{word-spacing:0.537984px;}
.ws130{word-spacing:0.576144px;}
.ws16f{word-spacing:0.585799px;}
.wsc9{word-spacing:0.590976px;}
.wsca{word-spacing:0.591782px;}
.wsc8{word-spacing:0.597600px;}
.ws18f{word-spacing:0.627642px;}
.wse2{word-spacing:0.645581px;}
.ws3a{word-spacing:0.699379px;}
.ws99{word-spacing:0.753178px;}
.ws18{word-spacing:0.806976px;}
.ws126{word-spacing:0.860774px;}
.wsce{word-spacing:0.914573px;}
.ws17a{word-spacing:0.920542px;}
.wscf{word-spacing:0.926976px;}
.ws181{word-spacing:0.962384px;}
.wsff{word-spacing:0.968371px;}
.ws113{word-spacing:0.989510px;}
.ws100{word-spacing:1.022170px;}
.ws16c{word-spacing:1.129756px;}
.ws4c{word-spacing:1.129766px;}
.ws96{word-spacing:1.183565px;}
.ws53{word-spacing:1.237363px;}
.ws2f{word-spacing:1.291162px;}
.ws14d{word-spacing:1.297127px;}
.wsa9{word-spacing:1.344960px;}
.ws5f{word-spacing:1.398758px;}
.ws101{word-spacing:1.418976px;}
.ws4e{word-spacing:1.452557px;}
.ws2d{word-spacing:1.506355px;}
.wsac{word-spacing:1.560154px;}
.ws37{word-spacing:1.613952px;}
.ws58{word-spacing:1.667750px;}
.ws15e{word-spacing:1.673712px;}
.ws15f{word-spacing:1.715555px;}
.ws36{word-spacing:1.721549px;}
.ws79{word-spacing:1.775347px;}
.ws149{word-spacing:1.799240px;}
.ws61{word-spacing:1.829146px;}
.ws142{word-spacing:1.936742px;}
.ws112{word-spacing:1.952400px;}
.ws169{word-spacing:1.966612px;}
.wsf7{word-spacing:1.990541px;}
.ws8{word-spacing:2.044339px;}
.ws159{word-spacing:2.092140px;}
.ws9b{word-spacing:2.098138px;}
.ws12b{word-spacing:2.151936px;}
.ws150{word-spacing:2.175826px;}
.ws4a{word-spacing:2.205734px;}
.ws12e{word-spacing:2.259533px;}
.ws18c{word-spacing:2.301354px;}
.ws48{word-spacing:2.313331px;}
.wsf{word-spacing:2.367130px;}
.wse{word-spacing:2.420928px;}
.ws67{word-spacing:2.528525px;}
.ws180{word-spacing:2.552411px;}
.ws49{word-spacing:2.582323px;}
.ws14{word-spacing:2.636122px;}
.ws19e{word-spacing:2.677939px;}
.ws185{word-spacing:2.719782px;}
.ws71{word-spacing:2.743718px;}
.wse3{word-spacing:2.797517px;}
.ws18a{word-spacing:2.803468px;}
.ws18b{word-spacing:2.845310px;}
.ws116{word-spacing:2.851315px;}
.ws160{word-spacing:2.887153px;}
.ws5b{word-spacing:2.905114px;}
.ws163{word-spacing:2.928996px;}
.wsec{word-spacing:2.958912px;}
.ws27{word-spacing:3.066509px;}
.ws16b{word-spacing:3.096367px;}
.wsb{word-spacing:3.120307px;}
.ws83{word-spacing:3.174106px;}
.ws12f{word-spacing:3.227904px;}
.ws152{word-spacing:3.263738px;}
.ws35{word-spacing:3.281702px;}
.ws151{word-spacing:3.305581px;}
.wsda{word-spacing:3.316675px;}
.wsd6{word-spacing:3.322666px;}
.wsd5{word-spacing:3.325555px;}
.wsd8{word-spacing:3.328666px;}
.ws8e{word-spacing:3.335501px;}
.ws16e{word-spacing:3.389267px;}
.ws12c{word-spacing:3.389299px;}
.ws42{word-spacing:3.443098px;}
.ws4b{word-spacing:3.496896px;}
.wseb{word-spacing:3.550694px;}
.ws19d{word-spacing:3.640324px;}
.ws54{word-spacing:3.658291px;}
.wsf2{word-spacing:3.712090px;}
.ws40{word-spacing:3.765888px;}
.wse4{word-spacing:3.769814px;}
.wsaa{word-spacing:3.819686px;}
.ws176{word-spacing:3.849538px;}
.wsdc{word-spacing:3.873485px;}
.ws191{word-spacing:3.891380px;}
.ws77{word-spacing:3.927283px;}
.ws17c{word-spacing:3.933223px;}
.ws65{word-spacing:3.981082px;}
.wsf3{word-spacing:3.995510px;}
.ws30{word-spacing:4.034880px;}
.ws15c{word-spacing:4.058752px;}
.ws2e{word-spacing:4.088678px;}
.wsc3{word-spacing:4.136976px;}
.wsc2{word-spacing:4.138310px;}
.ws195{word-spacing:4.142437px;}
.ws31{word-spacing:4.142477px;}
.ws139{word-spacing:4.196275px;}
.ws111{word-spacing:4.250074px;}
.wsd9{word-spacing:4.287178px;}
.wsd7{word-spacing:4.291814px;}
.wsb6{word-spacing:4.303872px;}
.ws51{word-spacing:4.357670px;}
.ws14a{word-spacing:4.393494px;}
.ws187{word-spacing:4.435337px;}
.ws6d{word-spacing:4.465267px;}
.wsab{word-spacing:4.519066px;}
.ws167{word-spacing:4.560865px;}
.ws8d{word-spacing:4.572864px;}
.ws170{word-spacing:4.600652px;}
.ws161{word-spacing:4.605098px;}
.ws154{word-spacing:4.606348px;}
.ws141{word-spacing:4.626662px;}
.ws165{word-spacing:4.644551px;}
.wsa1{word-spacing:4.680461px;}
.wsb1{word-spacing:4.788058px;}
.ws75{word-spacing:4.841856px;}
.ws52{word-spacing:4.895654px;}
.ws18e{word-spacing:4.937450px;}
.ws5c{word-spacing:5.003251px;}
.wsbf{word-spacing:5.057050px;}
.ws13d{word-spacing:5.110848px;}
.wsf4{word-spacing:5.120976px;}
.wsa0{word-spacing:5.164646px;}
.ws8c{word-spacing:5.218445px;}
.ws162{word-spacing:5.230350px;}
.wsd{word-spacing:5.326042px;}
.wsf5{word-spacing:5.346845px;}
.ws7e{word-spacing:5.379840px;}
.ws32{word-spacing:5.388144px;}
.wsb9{word-spacing:5.433638px;}
.ws194{word-spacing:5.439564px;}
.wsfa{word-spacing:5.449709px;}
.ws22{word-spacing:5.487437px;}
.ws19{word-spacing:5.541235px;}
.ws198{word-spacing:5.565092px;}
.wsd4{word-spacing:5.593776px;}
.wsd2{word-spacing:5.594976px;}
.ws7d{word-spacing:5.595034px;}
.wsd3{word-spacing:5.595821px;}
.ws97{word-spacing:5.648832px;}
.ws60{word-spacing:5.702630px;}
.ws9f{word-spacing:5.756429px;}
.ws72{word-spacing:5.810227px;}
.ws135{word-spacing:5.864026px;}
.ws10{word-spacing:5.917824px;}
.ws9c{word-spacing:5.971622px;}
.wsc6{word-spacing:6.025421px;}
.ws188{word-spacing:6.067206px;}
.ws23{word-spacing:6.133018px;}
.ws93{word-spacing:6.186816px;}
.ws158{word-spacing:6.192734px;}
.ws16d{word-spacing:6.234577px;}
.ws28{word-spacing:6.240614px;}
.wsa7{word-spacing:6.294413px;}
.ws8f{word-spacing:6.348211px;}
.wsd1{word-spacing:6.368976px;}
.ws57{word-spacing:6.402010px;}
.ws69{word-spacing:6.455808px;}
.wse1{word-spacing:6.482976px;}
.wsa2{word-spacing:6.509606px;}
.wsdb{word-spacing:6.542237px;}
.ws94{word-spacing:6.563405px;}
.ws19a{word-spacing:6.611162px;}
.ws19f{word-spacing:6.653005px;}
.ws15{word-spacing:6.724800px;}
.ws6f{word-spacing:6.778598px;}
.ws45{word-spacing:6.832397px;}
.wsdd{word-spacing:6.939994px;}
.ws128{word-spacing:6.942144px;}
.ws122{word-spacing:6.993792px;}
.ws95{word-spacing:7.101389px;}
.ws29{word-spacing:7.155187px;}
.wsc7{word-spacing:7.166976px;}
.ws192{word-spacing:7.190248px;}
.ws193{word-spacing:7.196962px;}
.ws2c{word-spacing:7.208986px;}
.ws174{word-spacing:7.280647px;}
.ws134{word-spacing:7.370381px;}
.ws87{word-spacing:7.477978px;}
.ws17e{word-spacing:7.573547px;}
.wsb4{word-spacing:7.585574px;}
.ws80{word-spacing:7.693171px;}
.wscc{word-spacing:7.746970px;}
.ws17{word-spacing:7.800768px;}
.ws5a{word-spacing:7.854566px;}
.ws39{word-spacing:7.908365px;}
.wsa3{word-spacing:7.962163px;}
.ws199{word-spacing:8.033818px;}
.ws66{word-spacing:8.069760px;}
.wse6{word-spacing:8.103245px;}
.wsea{word-spacing:8.123558px;}
.ws109{word-spacing:8.177357px;}
.ws11b{word-spacing:8.231155px;}
.ws11d{word-spacing:8.243510px;}
.ws1a1{word-spacing:8.284874px;}
.ws136{word-spacing:8.284954px;}
.ws173{word-spacing:8.326717px;}
.wsae{word-spacing:8.338752px;}
.ws175{word-spacing:8.368560px;}
.ws26{word-spacing:8.392550px;}
.ws11c{word-spacing:8.403619px;}
.wsaf{word-spacing:8.500147px;}
.wsd0{word-spacing:8.607744px;}
.ws6e{word-spacing:8.661542px;}
.ws156{word-spacing:8.703302px;}
.ws14c{word-spacing:8.790354px;}
.wsde{word-spacing:8.822938px;}
.ws9d{word-spacing:8.930534px;}
.ws46{word-spacing:8.984333px;}
.ws7c{word-spacing:9.038131px;}
.ws168{word-spacing:9.079888px;}
.ws2a{word-spacing:9.091930px;}
.ws8a{word-spacing:9.145728px;}
.wsc0{word-spacing:9.199526px;}
.ws86{word-spacing:9.253325px;}
.ws21{word-spacing:9.307123px;}
.ws108{word-spacing:9.307555px;}
.ws92{word-spacing:9.414720px;}
.ws3f{word-spacing:9.468518px;}
.ws55{word-spacing:9.522317px;}
.ws124{word-spacing:9.683712px;}
.wsfb{word-spacing:9.719510px;}
.wsfc{word-spacing:9.722909px;}
.wsfd{word-spacing:9.737510px;}
.wscd{word-spacing:9.752976px;}
.wsb5{word-spacing:9.845107px;}
.ws10e{word-spacing:9.880070px;}
.ws10d{word-spacing:9.883709px;}
.ws10f{word-spacing:9.884909px;}
.ws110{word-spacing:9.898906px;}
.ws85{word-spacing:9.952704px;}
.ws25{word-spacing:10.006502px;}
.wsdf{word-spacing:10.078666px;}
.wsed{word-spacing:10.221696px;}
.ws13f{word-spacing:10.275494px;}
.ws5e{word-spacing:10.329293px;}
.ws1b{word-spacing:10.383091px;}
.wsc1{word-spacing:10.420666px;}
.ws12{word-spacing:10.436890px;}
.ws88{word-spacing:10.490688px;}
.ws56{word-spacing:10.598285px;}
.ws38{word-spacing:10.652083px;}
.ws74{word-spacing:10.705882px;}
.wsa8{word-spacing:10.759680px;}
.wse0{word-spacing:10.867277px;}
.ws24{word-spacing:11.082470px;}
.ws62{word-spacing:11.136269px;}
.wsee{word-spacing:11.181178px;}
.ws7b{word-spacing:11.297664px;}
.ws15a{word-spacing:11.506770px;}
.ws89{word-spacing:11.512858px;}
.ws1a0{word-spacing:11.632298px;}
.wsb7{word-spacing:11.781850px;}
.ws171{word-spacing:11.799670px;}
.ws41{word-spacing:11.835648px;}
.wse5{word-spacing:11.889446px;}
.wscb{word-spacing:11.943245px;}
.ws144{word-spacing:12.212237px;}
.ws148{word-spacing:12.259940px;}
.ws137{word-spacing:12.319834px;}
.wsad{word-spacing:12.481229px;}
.ws106{word-spacing:12.533222px;}
.ws6c{word-spacing:12.696422px;}
.ws6{word-spacing:13.246306px;}
.ws8b{word-spacing:13.395802px;}
.ws13e{word-spacing:13.449600px;}
.ws143{word-spacing:13.610995px;}
.wsb0{word-spacing:13.718592px;}
.ws140{word-spacing:13.879987px;}
.ws33{word-spacing:14.202778px;}
.ws73{word-spacing:14.310374px;}
.ws82{word-spacing:14.417971px;}
.wsa6{word-spacing:14.633165px;}
.ws1{word-spacing:14.902157px;}
.ws1e{word-spacing:15.386342px;}
.ws145{word-spacing:15.601536px;}
.ws15b{word-spacing:15.607364px;}
.ws7f{word-spacing:15.655334px;}
.ws91{word-spacing:15.978125px;}
.ws182{word-spacing:16.067635px;}
.ws17d{word-spacing:16.235006px;}
.wsb3{word-spacing:16.462310px;}
.ws3c{word-spacing:16.557841px;}
.ws7{word-spacing:16.977024px;}
.ws12a{word-spacing:17.269286px;}
.ws184{word-spacing:17.615819px;}
.ws4{word-spacing:18.213692px;}
.wsf9{word-spacing:19.005208px;}
.ws138{word-spacing:19.044634px;}
.ws117{word-spacing:19.098432px;}
.ws118{word-spacing:19.123709px;}
.ws114{word-spacing:19.636416px;}
.ws183{word-spacing:19.833487px;}
.ws129{word-spacing:20.228198px;}
.ws63{word-spacing:20.497190px;}
.wse9{word-spacing:21.500206px;}
.ws186{word-spacing:23.573700px;}
.wsba{word-spacing:23.862479px;}
.wse8{word-spacing:24.532070px;}
.ws107{word-spacing:24.901688px;}
.ws2{word-spacing:29.804314px;}
.wse7{word-spacing:30.341140px;}
.wsfe{word-spacing:30.347140px;}
.wsf8{word-spacing:32.194813px;}
.wsf6{word-spacing:32.200813px;}
.ws13a{word-spacing:43.642040px;}
.ws147{word-spacing:51.299273px;}
.ws5d{word-spacing:61.268400px;}
.ws3d{word-spacing:61.274400px;}
.ws13b{word-spacing:66.906637px;}
.ws13c{word-spacing:90.171234px;}
.ws11{word-spacing:95.581184px;}
.wsbc{word-spacing:142.432891px;}
.wsbe{word-spacing:165.697488px;}
.wsbb{word-spacing:168.040685px;}
.wsbd{word-spacing:188.962085px;}
._41{margin-left:-17.252688px;}
._4{margin-left:-7.800768px;}
._1{margin-left:-6.186816px;}
._5{margin-left:-4.961358px;}
._6{margin-left:-3.712090px;}
._3{margin-left:-2.689920px;}
._0{margin-left:-1.613952px;}
._2{width:1.344960px;}
._8{width:3.205488px;}
._c{width:9.038131px;}
._4c{width:10.078009px;}
._19{width:11.213870px;}
._9{width:12.490090px;}
._1e{width:13.619386px;}
._e{width:15.493939px;}
._f{width:16.838899px;}
._7{width:18.399053px;}
._4d{width:19.498806px;}
._1f{width:20.550989px;}
._b{width:21.895949px;}
._4a{width:23.139068px;}
._43{width:24.352510px;}
._10{width:26.306129px;}
._3f{width:28.734084px;}
._44{width:29.983370px;}
._4b{width:31.644170px;}
._42{width:34.544236px;}
._46{width:35.931046px;}
._4f{width:37.198310px;}
._47{width:38.788276px;}
._4e{width:41.161396px;}
._48{width:42.261228px;}
._40{width:43.337268px;}
._45{width:44.342316px;}
._3e{width:47.826320px;}
._24{width:55.274339px;}
._38{width:57.868592px;}
._49{width:65.944253px;}
._23{width:66.990323px;}
._21{width:69.291677px;}
._26{width:78.538936px;}
._a{width:95.640960px;}
._2d{width:101.803532px;}
._22{width:104.146729px;}
._39{width:120.632792px;}
._3b{width:129.880051px;}
._3d{width:132.528128px;}
._3a{width:153.144648px;}
._2c{width:155.194945px;}
._17{width:165.697488px;}
._3c{width:167.508709px;}
._15{width:177.329786px;}
._29{width:178.459542px;}
._11{width:184.987019px;}
._18{width:188.962085px;}
._16{width:190.886854px;}
._14{width:200.594383px;}
._27{width:201.724139px;}
._13{width:218.796001px;}
._1b{width:223.858980px;}
._12{width:229.113256px;}
._33{width:232.269383px;}
._36{width:234.528894px;}
._35{width:257.793491px;}
._34{width:299.678134px;}
._1c{width:321.185333px;}
._37{width:332.189989px;}
._1d{width:353.697188px;}
._31{width:377.744879px;}
._2f{width:384.732626px;}
._1a{width:395.623674px;}
._2e{width:398.666279px;}
._2a{width:407.997223px;}
._30{width:410.298577px;}
._25{width:419.587679px;}
._28{width:421.930876px;}
._2b{width:433.563174px;}
._20{width:455.417035px;}
._32{width:456.785928px;}
._d{width:2737.308185px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs8{font-size:49.315200px;}
.fs0{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yaf{bottom:42.400500px;}
.y60{bottom:42.402000px;}
.y5f{bottom:57.345000px;}
.y5e{bottom:108.453000px;}
.y39{bottom:111.046500px;}
.y172{bottom:112.936500px;}
.y1e1{bottom:117.420000px;}
.y19a{bottom:120.408000px;}
.y5d{bottom:123.397500px;}
.y171{bottom:127.881000px;}
.y1e0{bottom:129.375000px;}
.y199{bottom:132.363000px;}
.y99{bottom:138.340500px;}
.y5c{bottom:138.342000px;}
.y1df{bottom:141.330000px;}
.y170{bottom:142.825500px;}
.y5b{bottom:153.285000px;}
.y198{bottom:154.779000px;}
.y38{bottom:156.237000px;}
.y1de{bottom:165.240000px;}
.yae{bottom:168.228000px;}
.y5a{bottom:168.229500px;}
.y37{bottom:171.181500px;}
.y16f{bottom:172.435500px;}
.y1dd{bottom:177.195000px;}
.y98{bottom:183.172500px;}
.y59{bottom:183.174000px;}
.y16e{bottom:184.390500px;}
.y36{bottom:186.124500px;}
.y1dc{bottom:189.150000px;}
.y197{bottom:196.324500px;}
.y16d{bottom:196.345500px;}
.y58{bottom:198.117000px;}
.y35{bottom:201.069000px;}
.y1db{bottom:201.105000px;}
.y16c{bottom:208.300500px;}
.y196{bottom:211.267500px;}
.yf6{bottom:211.567500px;}
.y131{bottom:212.346000px;}
.yad{bottom:213.060000px;}
.y57{bottom:213.061500px;}
.y34{bottom:216.013500px;}
.y16b{bottom:220.255500px;}
.y1da{bottom:225.016500px;}
.y195{bottom:226.212000px;}
.y130{bottom:227.290500px;}
.y97{bottom:228.004500px;}
.y56{bottom:228.006000px;}
.y33{bottom:230.956500px;}
.y1d9{bottom:236.971500px;}
.y16a{bottom:237.681000px;}
.y194{bottom:241.155000px;}
.y12f{bottom:242.235000px;}
.y55{bottom:242.949000px;}
.y32{bottom:245.901000px;}
.yf5{bottom:247.249500px;}
.y1d8{bottom:248.926500px;}
.y169{bottom:249.637500px;}
.y193{bottom:256.099500px;}
.y12e{bottom:257.178000px;}
.yac{bottom:257.892000px;}
.y54{bottom:257.893500px;}
.y31{bottom:260.845500px;}
.y1d7{bottom:260.881500px;}
.y168{bottom:261.592500px;}
.yf4{bottom:262.194000px;}
.y12d{bottom:272.122500px;}
.y53{bottom:272.836500px;}
.y167{bottom:273.547500px;}
.y30{bottom:275.788500px;}
.yf3{bottom:277.138500px;}
.y1d6{bottom:284.791500px;}
.y192{bottom:285.987000px;}
.y12c{bottom:287.067000px;}
.y52{bottom:287.781000px;}
.y2f{bottom:290.733000px;}
.y166{bottom:290.973000px;}
.yf2{bottom:292.081500px;}
.y1d5{bottom:296.746500px;}
.y12b{bottom:302.010000px;}
.y51{bottom:302.725500px;}
.y165{bottom:302.928000px;}
.y2e{bottom:305.676000px;}
.yf1{bottom:307.026000px;}
.y1d4{bottom:308.703000px;}
.y164{bottom:314.883000px;}
.y96{bottom:316.174500px;}
.y12a{bottom:316.954500px;}
.y50{bottom:317.668500px;}
.y2d{bottom:320.620500px;}
.y1d3{bottom:320.658000px;}
.yf0{bottom:321.969000px;}
.y163{bottom:326.839500px;}
.y191{bottom:328.428000px;}
.y129{bottom:331.897500px;}
.y4f{bottom:332.613000px;}
.y2c{bottom:335.565000px;}
.yef{bottom:336.913500px;}
.y162{bottom:338.794500px;}
.y190{bottom:343.372500px;}
.y1d2{bottom:344.568000px;}
.y128{bottom:346.842000px;}
.y4e{bottom:347.557500px;}
.y2b{bottom:350.508000px;}
.y161{bottom:350.749500px;}
.yee{bottom:351.858000px;}
.y95{bottom:355.029000px;}
.y1d1{bottom:356.523000px;}
.y18f{bottom:358.317000px;}
.y127{bottom:361.786500px;}
.y4d{bottom:362.500500px;}
.y160{bottom:362.704500px;}
.y2a{bottom:365.452500px;}
.yed{bottom:366.801000px;}
.y1d0{bottom:368.478000px;}
.y94{bottom:369.972000px;}
.y18e{bottom:373.260000px;}
.y126{bottom:376.729500px;}
.y4c{bottom:377.445000px;}
.y15f{bottom:380.130000px;}
.y29{bottom:380.397000px;}
.y1cf{bottom:380.433000px;}
.yec{bottom:381.745500px;}
.y93{bottom:384.916500px;}
.y18d{bottom:388.204500px;}
.y15e{bottom:392.085000px;}
.y107{bottom:392.388000px;}
.y4b{bottom:392.389500px;}
.y28{bottom:395.340000px;}
.yeb{bottom:396.690000px;}
.yab{bottom:399.859500px;}
.y92{bottom:399.861000px;}
.y18c{bottom:403.149000px;}
.y15d{bottom:404.041500px;}
.y1ce{bottom:404.343000px;}
.y125{bottom:406.618500px;}
.y4a{bottom:407.332500px;}
.y27{bottom:410.284500px;}
.yea{bottom:411.633000px;}
.y91{bottom:414.804000px;}
.y15c{bottom:415.996500px;}
.y1cd{bottom:416.299500px;}
.y18b{bottom:418.092000px;}
.y124{bottom:421.561500px;}
.y49{bottom:422.277000px;}
.y26{bottom:425.229000px;}
.ye9{bottom:426.577500px;}
.y15b{bottom:427.951500px;}
.y1cc{bottom:428.254500px;}
.y90{bottom:429.748500px;}
.y18a{bottom:433.036500px;}
.y123{bottom:436.506000px;}
.yc6{bottom:437.220000px;}
.y48{bottom:437.221500px;}
.y15a{bottom:439.906500px;}
.y25{bottom:440.172000px;}
.y1cb{bottom:440.209500px;}
.ye8{bottom:441.522000px;}
.yaa{bottom:444.691500px;}
.y8f{bottom:444.693000px;}
.y189{bottom:447.979500px;}
.y141{bottom:450.670500px;}
.y122{bottom:451.450500px;}
.y47{bottom:452.164500px;}
.y24{bottom:455.116500px;}
.ye7{bottom:456.465000px;}
.y159{bottom:457.332000px;}
.y8e{bottom:459.636000px;}
.y188{bottom:462.924000px;}
.y1ca{bottom:464.119500px;}
.yc5{bottom:465.613500px;}
.y121{bottom:466.393500px;}
.y46{bottom:467.109000px;}
.y158{bottom:469.287000px;}
.y23{bottom:470.061000px;}
.ye6{bottom:471.409500px;}
.y8d{bottom:474.580500px;}
.y1c9{bottom:476.074500px;}
.y187{bottom:477.868500px;}
.y157{bottom:481.243500px;}
.y120{bottom:481.338000px;}
.y106{bottom:482.052000px;}
.y45{bottom:482.053500px;}
.y22{bottom:485.004000px;}
.y140{bottom:485.073000px;}
.ye5{bottom:486.354000px;}
.y1c8{bottom:488.029500px;}
.ya9{bottom:489.523500px;}
.y8c{bottom:489.525000px;}
.y186{bottom:492.811500px;}
.y156{bottom:493.198500px;}
.y11f{bottom:496.282500px;}
.y21{bottom:499.948500px;}
.y1c7{bottom:499.984500px;}
.y13f{bottom:500.016000px;}
.ye4{bottom:501.297000px;}
.y8b{bottom:504.468000px;}
.y155{bottom:505.153500px;}
.y185{bottom:507.756000px;}
.y44{bottom:510.447000px;}
.y11e{bottom:511.225500px;}
.y1c6{bottom:511.939500px;}
.yc4{bottom:511.941000px;}
.y20{bottom:514.891500px;}
.y13e{bottom:514.960500px;}
.ye3{bottom:516.241500px;}
.y8a{bottom:519.412500px;}
.y154{bottom:522.579000px;}
.y1c5{bottom:523.896000px;}
.y11d{bottom:526.170000px;}
.yc3{bottom:526.884000px;}
.y1f{bottom:529.836000px;}
.y13d{bottom:529.905000px;}
.ye2{bottom:531.184500px;}
.ya8{bottom:534.355500px;}
.y89{bottom:534.357000px;}
.y153{bottom:534.534000px;}
.y1c4{bottom:535.851000px;}
.y184{bottom:536.149500px;}
.y43{bottom:540.334500px;}
.y11c{bottom:541.113000px;}
.yc2{bottom:541.828500px;}
.y1e{bottom:544.780500px;}
.y13c{bottom:544.848000px;}
.ye1{bottom:546.129000px;}
.y152{bottom:546.489000px;}
.y1c3{bottom:547.806000px;}
.y88{bottom:549.300000px;}
.y11b{bottom:556.057500px;}
.yc1{bottom:556.773000px;}
.y1d{bottom:559.723500px;}
.y1c2{bottom:559.761000px;}
.y13b{bottom:559.792500px;}
.ye0{bottom:561.073500px;}
.y151{bottom:563.916000px;}
.y87{bottom:564.244500px;}
.y183{bottom:569.623500px;}
.y11a{bottom:571.002000px;}
.yc0{bottom:571.716000px;}
.y1c{bottom:574.668000px;}
.y13a{bottom:574.735500px;}
.y150{bottom:575.871000px;}
.y86{bottom:579.187500px;}
.y1c1{bottom:583.671000px;}
.y182{bottom:584.568000px;}
.y119{bottom:585.945000px;}
.ybf{bottom:586.660500px;}
.y14f{bottom:587.826000px;}
.ydf{bottom:589.467000px;}
.y1b{bottom:589.612500px;}
.y139{bottom:589.680000px;}
.y85{bottom:594.132000px;}
.y1c0{bottom:595.626000px;}
.y181{bottom:599.512500px;}
.y14e{bottom:599.781000px;}
.y118{bottom:600.889500px;}
.y105{bottom:601.603500px;}
.ybe{bottom:601.605000px;}
.y1a{bottom:604.555500px;}
.y138{bottom:604.624500px;}
.y42{bottom:605.743500px;}
.y1bf{bottom:607.581000px;}
.ya7{bottom:609.075000px;}
.y84{bottom:609.076500px;}
.y180{bottom:614.455500px;}
.y117{bottom:615.834000px;}
.ybd{bottom:616.548000px;}
.y14d{bottom:617.208000px;}
.y19{bottom:619.500000px;}
.y1be{bottom:619.536000px;}
.y137{bottom:619.567500px;}
.y41{bottom:620.688000px;}
.y83{bottom:624.019500px;}
.y14c{bottom:629.163000px;}
.y17f{bottom:629.400000px;}
.y116{bottom:630.777000px;}
.ybc{bottom:631.492500px;}
.y18{bottom:634.444500px;}
.y136{bottom:634.512000px;}
.y40{bottom:635.632500px;}
.y82{bottom:638.964000px;}
.y14b{bottom:641.118000px;}
.y1bd{bottom:643.447500px;}
.y17e{bottom:644.344500px;}
.y115{bottom:645.721500px;}
.ybb{bottom:646.435500px;}
.y17{bottom:649.387500px;}
.y3f{bottom:650.575500px;}
.y14a{bottom:653.073000px;}
.ya6{bottom:653.907000px;}
.y81{bottom:653.908500px;}
.y1bc{bottom:655.402500px;}
.y17d{bottom:659.287500px;}
.y114{bottom:660.666000px;}
.yba{bottom:661.380000px;}
.y16{bottom:664.332000px;}
.y149{bottom:665.028000px;}
.y3e{bottom:665.520000px;}
.y1bb{bottom:667.357500px;}
.y80{bottom:668.851500px;}
.yde{bottom:671.595000px;}
.y17c{bottom:674.232000px;}
.y113{bottom:675.609000px;}
.yb9{bottom:676.324500px;}
.y135{bottom:678.628500px;}
.y15{bottom:679.276500px;}
.y1ba{bottom:679.312500px;}
.y3d{bottom:680.464500px;}
.y148{bottom:682.453500px;}
.ydd{bottom:683.550000px;}
.y7f{bottom:683.796000px;}
.y17b{bottom:689.176500px;}
.y112{bottom:690.553500px;}
.yb8{bottom:691.267500px;}
.y134{bottom:693.571500px;}
.y14{bottom:694.219500px;}
.y147{bottom:694.410000px;}
.y3c{bottom:695.407500px;}
.ydc{bottom:695.505000px;}
.ya5{bottom:698.739000px;}
.y7e{bottom:698.740500px;}
.y1b9{bottom:703.222500px;}
.y1ee{bottom:703.224000px;}
.y17a{bottom:704.119500px;}
.y111{bottom:705.498000px;}
.yb7{bottom:706.212000px;}
.y146{bottom:706.365000px;}
.ydb{bottom:707.460000px;}
.y3b{bottom:710.352000px;}
.y7d{bottom:713.683500px;}
.y1b8{bottom:715.177500px;}
.y1ed{bottom:715.179000px;}
.y145{bottom:718.320000px;}
.y179{bottom:719.064000px;}
.y110{bottom:720.441000px;}
.yb6{bottom:721.156500px;}
.y13{bottom:724.108500px;}
.yda{bottom:724.885500px;}
.y3a{bottom:725.296500px;}
.y1b7{bottom:727.132500px;}
.y1ec{bottom:727.134000px;}
.y7c{bottom:728.628000px;}
.y144{bottom:730.275000px;}
.y178{bottom:734.007000px;}
.y10f{bottom:735.385500px;}
.yb5{bottom:736.099500px;}
.yd9{bottom:736.842000px;}
.y1b6{bottom:739.089000px;}
.y7b{bottom:743.572500px;}
.y177{bottom:748.951500px;}
.y10e{bottom:750.328500px;}
.yb4{bottom:751.044000px;}
.ya4{bottom:757.021500px;}
.y143{bottom:757.921500px;}
.y7a{bottom:758.515500px;}
.y1b5{bottom:762.999000px;}
.y176{bottom:763.896000px;}
.yd8{bottom:764.487000px;}
.y10d{bottom:765.273000px;}
.yb3{bottom:765.988500px;}
.y1b4{bottom:774.954000px;}
.y104{bottom:778.690500px;}
.y175{bottom:778.839000px;}
.y142{bottom:779.290500px;}
.yb2{bottom:780.931500px;}
.yd7{bottom:785.857500px;}
.y79{bottom:786.909000px;}
.y103{bottom:793.633500px;}
.y174{bottom:793.783500px;}
.y10c{bottom:795.160500px;}
.ya3{bottom:795.876000px;}
.y1b3{bottom:798.864000px;}
.y12{bottom:802.465500px;}
.y102{bottom:808.578000px;}
.ya2{bottom:810.819000px;}
.yb1{bottom:810.820500px;}
.y11{bottom:818.904000px;}
.y173{bottom:822.177000px;}
.y1b2{bottom:822.774000px;}
.y1eb{bottom:822.775500px;}
.y101{bottom:823.522500px;}
.y78{bottom:825.763500px;}
.yd6{bottom:827.440500px;}
.y1b1{bottom:834.729000px;}
.y1ea{bottom:834.730500px;}
.y10{bottom:835.342500px;}
.y100{bottom:838.465500px;}
.y10b{bottom:840.025500px;}
.ya1{bottom:840.706500px;}
.y77{bottom:840.708000px;}
.yd5{bottom:842.385000px;}
.y1b0{bottom:846.685500px;}
.yf{bottom:851.781000px;}
.yff{bottom:853.410000px;}
.y10a{bottom:854.970000px;}
.y76{bottom:855.651000px;}
.yd4{bottom:857.328000px;}
.y1af{bottom:858.640500px;}
.ye{bottom:868.219500px;}
.yfe{bottom:868.354500px;}
.yb0{bottom:869.101500px;}
.y109{bottom:869.913000px;}
.y75{bottom:870.595500px;}
.yd3{bottom:872.272500px;}
.y1ae{bottom:882.550500px;}
.yfd{bottom:883.297500px;}
.yd{bottom:884.658000px;}
.y108{bottom:884.857500px;}
.ya0{bottom:885.538500px;}
.y74{bottom:885.540000px;}
.yd2{bottom:887.215500px;}
.y1ad{bottom:894.505500px;}
.yfc{bottom:898.242000px;}
.y73{bottom:900.483000px;}
.yc{bottom:901.095000px;}
.yd1{bottom:902.160000px;}
.y1ac{bottom:906.460500px;}
.y1e9{bottom:906.462000px;}
.yfb{bottom:913.186500px;}
.y72{bottom:915.427500px;}
.yd0{bottom:917.104500px;}
.yb{bottom:917.533500px;}
.y1ab{bottom:918.415500px;}
.y1e8{bottom:918.417000px;}
.yfa{bottom:928.129500px;}
.y9f{bottom:930.370500px;}
.y71{bottom:930.372000px;}
.ycf{bottom:932.047500px;}
.ya{bottom:933.972000px;}
.y1aa{bottom:942.327000px;}
.yf9{bottom:943.074000px;}
.y70{bottom:945.315000px;}
.yce{bottom:946.992000px;}
.y9{bottom:950.410500px;}
.y133{bottom:951.147000px;}
.y1a9{bottom:954.282000px;}
.yf8{bottom:958.018500px;}
.y6f{bottom:960.259500px;}
.ycd{bottom:961.936500px;}
.y132{bottom:966.091500px;}
.y1a8{bottom:966.237000px;}
.y9e{bottom:975.202500px;}
.y6e{bottom:975.204000px;}
.ycc{bottom:976.879500px;}
.y1a7{bottom:978.192000px;}
.y8{bottom:981.021000px;}
.yf7{bottom:986.412000px;}
.y6d{bottom:990.147000px;}
.ycb{bottom:991.824000px;}
.y7{bottom:1000.185000px;}
.y1a6{bottom:1002.102000px;}
.y6c{bottom:1005.091500px;}
.yca{bottom:1006.768500px;}
.y1a5{bottom:1014.057000px;}
.y1e7{bottom:1014.058500px;}
.y6{bottom:1016.587500px;}
.y9d{bottom:1020.034500px;}
.y6b{bottom:1020.036000px;}
.yc9{bottom:1021.711500px;}
.y1a4{bottom:1026.012000px;}
.y1e6{bottom:1026.013500px;}
.y6a{bottom:1034.979000px;}
.y1a3{bottom:1037.967000px;}
.y1e5{bottom:1037.968500px;}
.y5{bottom:1049.665500px;}
.y9c{bottom:1049.922000px;}
.y69{bottom:1049.923500px;}
.yc8{bottom:1050.105000px;}
.y1a2{bottom:1061.878500px;}
.y68{bottom:1064.866500px;}
.y1a1{bottom:1073.833500px;}
.y4{bottom:1079.553000px;}
.y67{bottom:1079.811000px;}
.yc7{bottom:1079.994000px;}
.y1a0{bottom:1085.788500px;}
.y9b{bottom:1094.754000px;}
.y66{bottom:1094.755500px;}
.y19f{bottom:1097.743500px;}
.y3{bottom:1109.440500px;}
.y65{bottom:1109.698500px;}
.y19e{bottom:1121.653500px;}
.y1e4{bottom:1121.655000px;}
.y64{bottom:1124.643000px;}
.y19d{bottom:1133.608500px;}
.y1e3{bottom:1133.610000px;}
.y9a{bottom:1139.586000px;}
.y63{bottom:1139.587500px;}
.y19c{bottom:1145.563500px;}
.y1e2{bottom:1145.565000px;}
.y62{bottom:1154.530500px;}
.y19b{bottom:1157.520000px;}
.y2{bottom:1166.307000px;}
.y61{bottom:1169.475000px;}
.y1{bottom:1202.173500px;}
.hb{height:16.677504px;}
.h6{height:19.845499px;}
.hf{height:29.750231px;}
.h10{height:30.170231px;}
.hd{height:31.047358px;}
.h7{height:35.435065px;}
.hc{height:35.482885px;}
.h9{height:38.250662px;}
.he{height:38.519654px;}
.h3{height:39.864614px;}
.h2{height:39.918413px;}
.ha{height:42.310902px;}
.h8{height:44.293720px;}
.h5{height:55.554699px;}
.h4{height:79.729229px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.780000px;}
.x8{left:69.010500px;}
.x2{left:78.723000px;}
.x9{left:86.196000px;}
.x3{left:463.464000px;}
.xb{left:468.694500px;}
.x4{left:478.408500px;}
.x7{left:484.386000px;}
.xa{left:485.880000px;}
.xc{left:539.758500px;}
.xd{left:547.311000px;}
.x11{left:558.405000px;}
.x6{left:604.903500px;}
.xe{left:628.269000px;}
.x5{left:659.689500px;}
.x12{left:717.802500px;}
.xf{left:763.687500px;}
.x10{left:821.874000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000125pt;}
.ls6{letter-spacing:0.000495pt;}
.ls7{letter-spacing:0.000891pt;}
.ls4{letter-spacing:2.655527pt;}
.ls2{letter-spacing:6.156159pt;}
.ls8{letter-spacing:8.192495pt;}
.lsb{letter-spacing:11.582933pt;}
.lsc{letter-spacing:15.751467pt;}
.lsa{letter-spacing:16.938231pt;}
.ls1{letter-spacing:18.903925pt;}
.ls3{letter-spacing:19.531919pt;}
.ls9{letter-spacing:21.042133pt;}
.ws1a{word-spacing:-11.955200pt;}
.ws155{word-spacing:-9.298400pt;}
.ws64{word-spacing:-2.630144pt;}
.ws43{word-spacing:-2.534502pt;}
.ws90{word-spacing:-2.486682pt;}
.ws16{word-spacing:-2.343219pt;}
.ws196{word-spacing:-2.231616pt;}
.ws2b{word-spacing:-2.199757pt;}
.ws189{word-spacing:-2.157229pt;}
.ws6b{word-spacing:-2.151936pt;}
.ws50{word-spacing:-2.104115pt;}
.ws121{word-spacing:-2.056294pt;}
.ws9e{word-spacing:-2.008474pt;}
.ws164{word-spacing:-2.008454pt;}
.ws13{word-spacing:-1.960653pt;}
.ws1f{word-spacing:-1.817190pt;}
.ws131{word-spacing:-1.769370pt;}
.ws1c{word-spacing:-1.721549pt;}
.ws17b{word-spacing:-1.710906pt;}
.ws177{word-spacing:-1.599325pt;}
.ws16a{word-spacing:-1.562131pt;}
.ws3e{word-spacing:-1.530266pt;}
.ws12d{word-spacing:-1.482445pt;}
.ws146{word-spacing:-1.434624pt;}
.wsa5{word-spacing:-1.386803pt;}
.ws9a{word-spacing:-1.338982pt;}
.ws10b{word-spacing:-1.336593pt;}
.ws10a{word-spacing:-1.318263pt;}
.ws68{word-spacing:-1.291162pt;}
.wsf0{word-spacing:-1.280435pt;}
.wsef{word-spacing:-1.277355pt;}
.ws18d{word-spacing:-1.264582pt;}
.ws4f{word-spacing:-1.195520pt;}
.ws59{word-spacing:-1.147699pt;}
.ws19c{word-spacing:-1.115808pt;}
.ws127{word-spacing:-1.099878pt;}
.wsa{word-spacing:-1.052058pt;}
.ws11a{word-spacing:-1.004237pt;}
.ws172{word-spacing:-0.967034pt;}
.wsc5{word-spacing:-0.962688pt;}
.wsb2{word-spacing:-0.956416pt;}
.wsc4{word-spacing:-0.950519pt;}
.ws125{word-spacing:-0.949197pt;}
.ws11f{word-spacing:-0.917769pt;}
.ws120{word-spacing:-0.910481pt;}
.ws11e{word-spacing:-0.909414pt;}
.ws70{word-spacing:-0.908595pt;}
.ws190{word-spacing:-0.855453pt;}
.wsa4{word-spacing:-0.812954pt;}
.wsc{word-spacing:-0.765133pt;}
.ws123{word-spacing:-0.717312pt;}
.ws178{word-spacing:-0.706678pt;}
.ws81{word-spacing:-0.621670pt;}
.ws15d{word-spacing:-0.595098pt;}
.ws115{word-spacing:-0.573850pt;}
.ws102{word-spacing:-0.528213pt;}
.ws104{word-spacing:-0.526029pt;}
.ws179{word-spacing:-0.520710pt;}
.ws103{word-spacing:-0.502263pt;}
.ws47{word-spacing:-0.430387pt;}
.ws119{word-spacing:-0.418748pt;}
.ws7a{word-spacing:-0.382566pt;}
.ws78{word-spacing:-0.334746pt;}
.ws132{word-spacing:-0.286925pt;}
.wsf1{word-spacing:-0.274688pt;}
.ws133{word-spacing:-0.239104pt;}
.ws76{word-spacing:-0.191283pt;}
.ws44{word-spacing:-0.143462pt;}
.ws19b{word-spacing:-0.111581pt;}
.ws3{word-spacing:-0.095642pt;}
.ws9{word-spacing:-0.047821pt;}
.ws34{word-spacing:-0.043836pt;}
.ws5{word-spacing:-0.042507pt;}
.ws14f{word-spacing:-0.037194pt;}
.ws14e{word-spacing:-0.000267pt;}
.ws17f{word-spacing:-0.000052pt;}
.ws0{word-spacing:0.000000pt;}
.ws157{word-spacing:0.001771pt;}
.ws166{word-spacing:0.037194pt;}
.ws3b{word-spacing:0.047821pt;}
.ws14b{word-spacing:0.074387pt;}
.ws84{word-spacing:0.095642pt;}
.ws4d{word-spacing:0.143462pt;}
.ws105{word-spacing:0.150852pt;}
.ws20{word-spacing:0.191283pt;}
.wsb8{word-spacing:0.239104pt;}
.ws197{word-spacing:0.297549pt;}
.ws6a{word-spacing:0.334746pt;}
.ws1d{word-spacing:0.382566pt;}
.ws153{word-spacing:0.446323pt;}
.ws10c{word-spacing:0.450645pt;}
.ws98{word-spacing:0.478208pt;}
.ws130{word-spacing:0.512128pt;}
.ws16f{word-spacing:0.520710pt;}
.wsc9{word-spacing:0.525312pt;}
.wsca{word-spacing:0.526029pt;}
.wsc8{word-spacing:0.531200pt;}
.ws18f{word-spacing:0.557904pt;}
.wse2{word-spacing:0.573850pt;}
.ws3a{word-spacing:0.621670pt;}
.ws99{word-spacing:0.669491pt;}
.ws18{word-spacing:0.717312pt;}
.ws126{word-spacing:0.765133pt;}
.wsce{word-spacing:0.812954pt;}
.ws17a{word-spacing:0.818259pt;}
.wscf{word-spacing:0.823979pt;}
.ws181{word-spacing:0.855453pt;}
.wsff{word-spacing:0.860774pt;}
.ws113{word-spacing:0.879565pt;}
.ws100{word-spacing:0.908595pt;}
.ws16c{word-spacing:1.004227pt;}
.ws4c{word-spacing:1.004237pt;}
.ws96{word-spacing:1.052058pt;}
.ws53{word-spacing:1.099878pt;}
.ws2f{word-spacing:1.147699pt;}
.ws14d{word-spacing:1.153002pt;}
.wsa9{word-spacing:1.195520pt;}
.ws5f{word-spacing:1.243341pt;}
.ws101{word-spacing:1.261312pt;}
.ws4e{word-spacing:1.291162pt;}
.ws2d{word-spacing:1.338982pt;}
.wsac{word-spacing:1.386803pt;}
.ws37{word-spacing:1.434624pt;}
.ws58{word-spacing:1.482445pt;}
.ws15e{word-spacing:1.487744pt;}
.ws15f{word-spacing:1.524938pt;}
.ws36{word-spacing:1.530266pt;}
.ws79{word-spacing:1.578086pt;}
.ws149{word-spacing:1.599325pt;}
.ws61{word-spacing:1.625907pt;}
.ws142{word-spacing:1.721549pt;}
.ws112{word-spacing:1.735467pt;}
.ws169{word-spacing:1.748099pt;}
.wsf7{word-spacing:1.769370pt;}
.ws8{word-spacing:1.817190pt;}
.ws159{word-spacing:1.859680pt;}
.ws9b{word-spacing:1.865011pt;}
.ws12b{word-spacing:1.912832pt;}
.ws150{word-spacing:1.934067pt;}
.ws4a{word-spacing:1.960653pt;}
.ws12e{word-spacing:2.008474pt;}
.ws18c{word-spacing:2.045648pt;}
.ws48{word-spacing:2.056294pt;}
.wsf{word-spacing:2.104115pt;}
.wse{word-spacing:2.151936pt;}
.ws67{word-spacing:2.247578pt;}
.ws180{word-spacing:2.268810pt;}
.ws49{word-spacing:2.295398pt;}
.ws14{word-spacing:2.343219pt;}
.ws19e{word-spacing:2.380390pt;}
.ws185{word-spacing:2.417584pt;}
.ws71{word-spacing:2.438861pt;}
.wse3{word-spacing:2.486682pt;}
.ws18a{word-spacing:2.491971pt;}
.ws18b{word-spacing:2.529165pt;}
.ws116{word-spacing:2.534502pt;}
.ws160{word-spacing:2.566358pt;}
.ws5b{word-spacing:2.582323pt;}
.ws163{word-spacing:2.603552pt;}
.wsec{word-spacing:2.630144pt;}
.ws27{word-spacing:2.725786pt;}
.ws16b{word-spacing:2.752326pt;}
.wsb{word-spacing:2.773606pt;}
.ws83{word-spacing:2.821427pt;}
.ws12f{word-spacing:2.869248pt;}
.ws152{word-spacing:2.901101pt;}
.ws35{word-spacing:2.917069pt;}
.ws151{word-spacing:2.938294pt;}
.wsda{word-spacing:2.948156pt;}
.wsd6{word-spacing:2.953481pt;}
.wsd5{word-spacing:2.956049pt;}
.wsd8{word-spacing:2.958814pt;}
.ws8e{word-spacing:2.964890pt;}
.ws16e{word-spacing:3.012682pt;}
.ws12c{word-spacing:3.012710pt;}
.ws42{word-spacing:3.060531pt;}
.ws4b{word-spacing:3.108352pt;}
.wseb{word-spacing:3.156173pt;}
.ws19d{word-spacing:3.235843pt;}
.ws54{word-spacing:3.251814pt;}
.wsf2{word-spacing:3.299635pt;}
.ws40{word-spacing:3.347456pt;}
.wse4{word-spacing:3.350946pt;}
.wsaa{word-spacing:3.395277pt;}
.ws176{word-spacing:3.421811pt;}
.wsdc{word-spacing:3.443098pt;}
.ws191{word-spacing:3.459005pt;}
.ws77{word-spacing:3.490918pt;}
.ws17c{word-spacing:3.496198pt;}
.ws65{word-spacing:3.538739pt;}
.wsf3{word-spacing:3.551565pt;}
.ws30{word-spacing:3.586560pt;}
.ws15c{word-spacing:3.607779pt;}
.ws2e{word-spacing:3.634381pt;}
.wsc3{word-spacing:3.677312pt;}
.wsc2{word-spacing:3.678498pt;}
.ws195{word-spacing:3.682166pt;}
.ws31{word-spacing:3.682202pt;}
.ws139{word-spacing:3.730022pt;}
.ws111{word-spacing:3.777843pt;}
.wsd9{word-spacing:3.810825pt;}
.wsd7{word-spacing:3.814946pt;}
.wsb6{word-spacing:3.825664pt;}
.ws51{word-spacing:3.873485pt;}
.ws14a{word-spacing:3.905328pt;}
.ws187{word-spacing:3.942522pt;}
.ws6d{word-spacing:3.969126pt;}
.wsab{word-spacing:4.016947pt;}
.ws167{word-spacing:4.054102pt;}
.ws8d{word-spacing:4.064768pt;}
.ws170{word-spacing:4.089469pt;}
.ws161{word-spacing:4.093421pt;}
.ws154{word-spacing:4.094531pt;}
.ws141{word-spacing:4.112589pt;}
.ws165{word-spacing:4.128490pt;}
.wsa1{word-spacing:4.160410pt;}
.wsb1{word-spacing:4.256051pt;}
.ws75{word-spacing:4.303872pt;}
.ws52{word-spacing:4.351693pt;}
.ws18e{word-spacing:4.388845pt;}
.ws5c{word-spacing:4.447334pt;}
.wsbf{word-spacing:4.495155pt;}
.ws13d{word-spacing:4.542976pt;}
.wsf4{word-spacing:4.551979pt;}
.wsa0{word-spacing:4.590797pt;}
.ws8c{word-spacing:4.638618pt;}
.ws162{word-spacing:4.649200pt;}
.wsd{word-spacing:4.734259pt;}
.wsf5{word-spacing:4.752751pt;}
.ws7e{word-spacing:4.782080pt;}
.ws32{word-spacing:4.789461pt;}
.wsb9{word-spacing:4.829901pt;}
.ws194{word-spacing:4.835168pt;}
.wsfa{word-spacing:4.844186pt;}
.ws22{word-spacing:4.877722pt;}
.ws19{word-spacing:4.925542pt;}
.ws198{word-spacing:4.946749pt;}
.wsd4{word-spacing:4.972245pt;}
.wsd2{word-spacing:4.973312pt;}
.ws7d{word-spacing:4.973363pt;}
.wsd3{word-spacing:4.974063pt;}
.ws97{word-spacing:5.021184pt;}
.ws60{word-spacing:5.069005pt;}
.ws9f{word-spacing:5.116826pt;}
.ws72{word-spacing:5.164646pt;}
.ws135{word-spacing:5.212467pt;}
.ws10{word-spacing:5.260288pt;}
.ws9c{word-spacing:5.308109pt;}
.wsc6{word-spacing:5.355930pt;}
.ws188{word-spacing:5.393072pt;}
.ws23{word-spacing:5.451571pt;}
.ws93{word-spacing:5.499392pt;}
.ws158{word-spacing:5.504653pt;}
.ws16d{word-spacing:5.541846pt;}
.ws28{word-spacing:5.547213pt;}
.wsa7{word-spacing:5.595034pt;}
.ws8f{word-spacing:5.642854pt;}
.wsd1{word-spacing:5.661312pt;}
.ws57{word-spacing:5.690675pt;}
.ws69{word-spacing:5.738496pt;}
.wse1{word-spacing:5.762645pt;}
.wsa2{word-spacing:5.786317pt;}
.wsdb{word-spacing:5.815322pt;}
.ws94{word-spacing:5.834138pt;}
.ws19a{word-spacing:5.876589pt;}
.ws19f{word-spacing:5.913782pt;}
.ws15{word-spacing:5.977600pt;}
.ws6f{word-spacing:6.025421pt;}
.ws45{word-spacing:6.073242pt;}
.wsdd{word-spacing:6.168883pt;}
.ws128{word-spacing:6.170795pt;}
.ws122{word-spacing:6.216704pt;}
.ws95{word-spacing:6.312346pt;}
.ws29{word-spacing:6.360166pt;}
.wsc7{word-spacing:6.370645pt;}
.ws192{word-spacing:6.391331pt;}
.ws193{word-spacing:6.397299pt;}
.ws2c{word-spacing:6.407987pt;}
.ws174{word-spacing:6.471686pt;}
.ws134{word-spacing:6.551450pt;}
.ws87{word-spacing:6.647091pt;}
.ws17e{word-spacing:6.732042pt;}
.wsb4{word-spacing:6.742733pt;}
.ws80{word-spacing:6.838374pt;}
.wscc{word-spacing:6.886195pt;}
.ws17{word-spacing:6.934016pt;}
.ws5a{word-spacing:6.981837pt;}
.ws39{word-spacing:7.029658pt;}
.wsa3{word-spacing:7.077478pt;}
.ws199{word-spacing:7.141171pt;}
.ws66{word-spacing:7.173120pt;}
.wse6{word-spacing:7.202884pt;}
.wsea{word-spacing:7.220941pt;}
.ws109{word-spacing:7.268762pt;}
.ws11b{word-spacing:7.316582pt;}
.ws11d{word-spacing:7.327565pt;}
.ws1a1{word-spacing:7.364333pt;}
.ws136{word-spacing:7.364403pt;}
.ws173{word-spacing:7.401526pt;}
.wsae{word-spacing:7.412224pt;}
.ws175{word-spacing:7.438720pt;}
.ws26{word-spacing:7.460045pt;}
.ws11c{word-spacing:7.469884pt;}
.wsaf{word-spacing:7.555686pt;}
.wsd0{word-spacing:7.651328pt;}
.ws6e{word-spacing:7.699149pt;}
.ws156{word-spacing:7.736269pt;}
.ws14c{word-spacing:7.813648pt;}
.wsde{word-spacing:7.842611pt;}
.ws9d{word-spacing:7.938253pt;}
.ws46{word-spacing:7.986074pt;}
.ws7c{word-spacing:8.033894pt;}
.ws168{word-spacing:8.071011pt;}
.ws2a{word-spacing:8.081715pt;}
.ws8a{word-spacing:8.129536pt;}
.wsc0{word-spacing:8.177357pt;}
.ws86{word-spacing:8.225178pt;}
.ws21{word-spacing:8.272998pt;}
.ws108{word-spacing:8.273382pt;}
.ws92{word-spacing:8.368640pt;}
.ws3f{word-spacing:8.416461pt;}
.ws55{word-spacing:8.464282pt;}
.ws124{word-spacing:8.607744pt;}
.wsfb{word-spacing:8.639565pt;}
.wsfc{word-spacing:8.642586pt;}
.wsfd{word-spacing:8.655565pt;}
.wscd{word-spacing:8.669312pt;}
.wsb5{word-spacing:8.751206pt;}
.ws10e{word-spacing:8.782285pt;}
.ws10d{word-spacing:8.785519pt;}
.ws10f{word-spacing:8.786586pt;}
.ws110{word-spacing:8.799027pt;}
.ws85{word-spacing:8.846848pt;}
.ws25{word-spacing:8.894669pt;}
.wsdf{word-spacing:8.958814pt;}
.wsed{word-spacing:9.085952pt;}
.ws13f{word-spacing:9.133773pt;}
.ws5e{word-spacing:9.181594pt;}
.ws1b{word-spacing:9.229414pt;}
.wsc1{word-spacing:9.262814pt;}
.ws12{word-spacing:9.277235pt;}
.ws88{word-spacing:9.325056pt;}
.ws56{word-spacing:9.420698pt;}
.ws38{word-spacing:9.468518pt;}
.ws74{word-spacing:9.516339pt;}
.wsa8{word-spacing:9.564160pt;}
.wse0{word-spacing:9.659802pt;}
.ws24{word-spacing:9.851085pt;}
.ws62{word-spacing:9.898906pt;}
.wsee{word-spacing:9.938825pt;}
.ws7b{word-spacing:10.042368pt;}
.ws15a{word-spacing:10.228240pt;}
.ws89{word-spacing:10.233651pt;}
.ws1a0{word-spacing:10.339821pt;}
.wsb7{word-spacing:10.472755pt;}
.ws171{word-spacing:10.488595pt;}
.ws41{word-spacing:10.520576pt;}
.wse5{word-spacing:10.568397pt;}
.wscb{word-spacing:10.616218pt;}
.ws144{word-spacing:10.855322pt;}
.ws148{word-spacing:10.897725pt;}
.ws137{word-spacing:10.950963pt;}
.wsad{word-spacing:11.094426pt;}
.ws106{word-spacing:11.140642pt;}
.ws6c{word-spacing:11.285709pt;}
.ws6{word-spacing:11.774494pt;}
.ws8b{word-spacing:11.907379pt;}
.ws13e{word-spacing:11.955200pt;}
.ws143{word-spacing:12.098662pt;}
.wsb0{word-spacing:12.194304pt;}
.ws140{word-spacing:12.337766pt;}
.ws33{word-spacing:12.624691pt;}
.ws73{word-spacing:12.720333pt;}
.ws82{word-spacing:12.815974pt;}
.wsa6{word-spacing:13.007258pt;}
.ws1{word-spacing:13.246362pt;}
.ws1e{word-spacing:13.676749pt;}
.ws145{word-spacing:13.868032pt;}
.ws15b{word-spacing:13.873213pt;}
.ws7f{word-spacing:13.915853pt;}
.ws91{word-spacing:14.202778pt;}
.ws182{word-spacing:14.282342pt;}
.ws17d{word-spacing:14.431117pt;}
.wsb3{word-spacing:14.633165pt;}
.ws3c{word-spacing:14.718081pt;}
.ws7{word-spacing:15.090688pt;}
.ws12a{word-spacing:15.350477pt;}
.ws184{word-spacing:15.658506pt;}
.ws4{word-spacing:16.189948pt;}
.wsf9{word-spacing:16.893519pt;}
.ws138{word-spacing:16.928563pt;}
.ws117{word-spacing:16.976384pt;}
.ws118{word-spacing:16.998852pt;}
.ws114{word-spacing:17.454592pt;}
.ws183{word-spacing:17.629766pt;}
.ws129{word-spacing:17.980621pt;}
.ws63{word-spacing:18.219725pt;}
.wse9{word-spacing:19.111294pt;}
.ws186{word-spacing:20.954400pt;}
.wsba{word-spacing:21.211093pt;}
.wse8{word-spacing:21.806285pt;}
.ws107{word-spacing:22.134833pt;}
.ws2{word-spacing:26.492723pt;}
.wse7{word-spacing:26.969902pt;}
.wsfe{word-spacing:26.975235pt;}
.wsf8{word-spacing:28.617612pt;}
.wsf6{word-spacing:28.622945pt;}
.ws13a{word-spacing:38.792925pt;}
.ws147{word-spacing:45.599354pt;}
.ws5d{word-spacing:54.460800pt;}
.ws3d{word-spacing:54.466133pt;}
.ws13b{word-spacing:59.472566pt;}
.ws13c{word-spacing:80.152208pt;}
.ws11{word-spacing:84.961053pt;}
.wsbc{word-spacing:126.607014pt;}
.wsbe{word-spacing:147.286656pt;}
.wsbb{word-spacing:149.369498pt;}
.wsbd{word-spacing:167.966298pt;}
._41{margin-left:-15.335723pt;}
._4{margin-left:-6.934016pt;}
._1{margin-left:-5.499392pt;}
._5{margin-left:-4.410096pt;}
._6{margin-left:-3.299635pt;}
._3{margin-left:-2.391040pt;}
._0{margin-left:-1.434624pt;}
._2{width:1.195520pt;}
._8{width:2.849323pt;}
._c{width:8.033894pt;}
._4c{width:8.958230pt;}
._19{width:9.967885pt;}
._9{width:11.102302pt;}
._1e{width:12.106121pt;}
._e{width:13.772390pt;}
._f{width:14.967910pt;}
._7{width:16.354714pt;}
._4d{width:17.332272pt;}
._1f{width:18.267546pt;}
._b{width:19.463066pt;}
._4a{width:20.568061pt;}
._43{width:21.646675pt;}
._10{width:23.383226pt;}
._3f{width:25.541408pt;}
._44{width:26.651885pt;}
._4b{width:28.128151pt;}
._42{width:30.705987pt;}
._46{width:31.938707pt;}
._4f{width:33.065165pt;}
._47{width:34.478467pt;}
._4e{width:36.587907pt;}
._48{width:37.565536pt;}
._40{width:38.522016pt;}
._45{width:39.415392pt;}
._3e{width:42.512285pt;}
._24{width:49.132746pt;}
._38{width:51.438749pt;}
._49{width:58.617114pt;}
._23{width:59.546954pt;}
._21{width:61.592602pt;}
._26{width:69.812387pt;}
._a{width:85.014187pt;}
._2d{width:90.492029pt;}
._22{width:92.574870pt;}
._39{width:107.229149pt;}
._3b{width:115.448934pt;}
._3d{width:117.802781pt;}
._3a{width:136.128576pt;}
._2c{width:137.951062pt;}
._17{width:147.286656pt;}
._3c{width:148.896630pt;}
._15{width:157.626477pt;}
._29{width:158.630704pt;}
._11{width:164.432906pt;}
._18{width:167.966298pt;}
._16{width:169.677203pt;}
._14{width:178.306118pt;}
._27{width:179.310346pt;}
._13{width:194.485334pt;}
._1b{width:198.985760pt;}
._12{width:203.656227pt;}
._33{width:206.461674pt;}
._36{width:208.470128pt;}
._35{width:229.149770pt;}
._34{width:266.380563pt;}
._1c{width:285.498074pt;}
._37{width:295.279990pt;}
._1d{width:314.397501pt;}
._31{width:335.773226pt;}
._2f{width:341.984557pt;}
._1a{width:351.665488pt;}
._2e{width:354.370026pt;}
._2a{width:362.664198pt;}
._30{width:364.709846pt;}
._25{width:372.966826pt;}
._28{width:375.049667pt;}
._2b{width:385.389488pt;}
._20{width:404.815142pt;}
._32{width:406.031936pt;}
._d{width:2433.162831pt;}
.fs4{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs8{font-size:43.835733pt;}
.fs0{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:37.689333pt;}
.y60{bottom:37.690667pt;}
.y5f{bottom:50.973333pt;}
.y5e{bottom:96.402667pt;}
.y39{bottom:98.708000pt;}
.y172{bottom:100.388000pt;}
.y1e1{bottom:104.373333pt;}
.y19a{bottom:107.029333pt;}
.y5d{bottom:109.686667pt;}
.y171{bottom:113.672000pt;}
.y1e0{bottom:115.000000pt;}
.y199{bottom:117.656000pt;}
.y99{bottom:122.969333pt;}
.y5c{bottom:122.970667pt;}
.y1df{bottom:125.626667pt;}
.y170{bottom:126.956000pt;}
.y5b{bottom:136.253333pt;}
.y198{bottom:137.581333pt;}
.y38{bottom:138.877333pt;}
.y1de{bottom:146.880000pt;}
.yae{bottom:149.536000pt;}
.y5a{bottom:149.537333pt;}
.y37{bottom:152.161333pt;}
.y16f{bottom:153.276000pt;}
.y1dd{bottom:157.506667pt;}
.y98{bottom:162.820000pt;}
.y59{bottom:162.821333pt;}
.y16e{bottom:163.902667pt;}
.y36{bottom:165.444000pt;}
.y1dc{bottom:168.133333pt;}
.y197{bottom:174.510667pt;}
.y16d{bottom:174.529333pt;}
.y58{bottom:176.104000pt;}
.y35{bottom:178.728000pt;}
.y1db{bottom:178.760000pt;}
.y16c{bottom:185.156000pt;}
.y196{bottom:187.793333pt;}
.yf6{bottom:188.060000pt;}
.y131{bottom:188.752000pt;}
.yad{bottom:189.386667pt;}
.y57{bottom:189.388000pt;}
.y34{bottom:192.012000pt;}
.y16b{bottom:195.782667pt;}
.y1da{bottom:200.014667pt;}
.y195{bottom:201.077333pt;}
.y130{bottom:202.036000pt;}
.y97{bottom:202.670667pt;}
.y56{bottom:202.672000pt;}
.y33{bottom:205.294667pt;}
.y1d9{bottom:210.641333pt;}
.y16a{bottom:211.272000pt;}
.y194{bottom:214.360000pt;}
.y12f{bottom:215.320000pt;}
.y55{bottom:215.954667pt;}
.y32{bottom:218.578667pt;}
.yf5{bottom:219.777333pt;}
.y1d8{bottom:221.268000pt;}
.y169{bottom:221.900000pt;}
.y193{bottom:227.644000pt;}
.y12e{bottom:228.602667pt;}
.yac{bottom:229.237333pt;}
.y54{bottom:229.238667pt;}
.y31{bottom:231.862667pt;}
.y1d7{bottom:231.894667pt;}
.y168{bottom:232.526667pt;}
.yf4{bottom:233.061333pt;}
.y12d{bottom:241.886667pt;}
.y53{bottom:242.521333pt;}
.y167{bottom:243.153333pt;}
.y30{bottom:245.145333pt;}
.yf3{bottom:246.345333pt;}
.y1d6{bottom:253.148000pt;}
.y192{bottom:254.210667pt;}
.y12c{bottom:255.170667pt;}
.y52{bottom:255.805333pt;}
.y2f{bottom:258.429333pt;}
.y166{bottom:258.642667pt;}
.yf2{bottom:259.628000pt;}
.y1d5{bottom:263.774667pt;}
.y12b{bottom:268.453333pt;}
.y51{bottom:269.089333pt;}
.y165{bottom:269.269333pt;}
.y2e{bottom:271.712000pt;}
.yf1{bottom:272.912000pt;}
.y1d4{bottom:274.402667pt;}
.y164{bottom:279.896000pt;}
.y96{bottom:281.044000pt;}
.y12a{bottom:281.737333pt;}
.y50{bottom:282.372000pt;}
.y2d{bottom:284.996000pt;}
.y1d3{bottom:285.029333pt;}
.yf0{bottom:286.194667pt;}
.y163{bottom:290.524000pt;}
.y191{bottom:291.936000pt;}
.y129{bottom:295.020000pt;}
.y4f{bottom:295.656000pt;}
.y2c{bottom:298.280000pt;}
.yef{bottom:299.478667pt;}
.y162{bottom:301.150667pt;}
.y190{bottom:305.220000pt;}
.y1d2{bottom:306.282667pt;}
.y128{bottom:308.304000pt;}
.y4e{bottom:308.940000pt;}
.y2b{bottom:311.562667pt;}
.y161{bottom:311.777333pt;}
.yee{bottom:312.762667pt;}
.y95{bottom:315.581333pt;}
.y1d1{bottom:316.909333pt;}
.y18f{bottom:318.504000pt;}
.y127{bottom:321.588000pt;}
.y4d{bottom:322.222667pt;}
.y160{bottom:322.404000pt;}
.y2a{bottom:324.846667pt;}
.yed{bottom:326.045333pt;}
.y1d0{bottom:327.536000pt;}
.y94{bottom:328.864000pt;}
.y18e{bottom:331.786667pt;}
.y126{bottom:334.870667pt;}
.y4c{bottom:335.506667pt;}
.y15f{bottom:337.893333pt;}
.y29{bottom:338.130667pt;}
.y1cf{bottom:338.162667pt;}
.yec{bottom:339.329333pt;}
.y93{bottom:342.148000pt;}
.y18d{bottom:345.070667pt;}
.y15e{bottom:348.520000pt;}
.y107{bottom:348.789333pt;}
.y4b{bottom:348.790667pt;}
.y28{bottom:351.413333pt;}
.yeb{bottom:352.613333pt;}
.yab{bottom:355.430667pt;}
.y92{bottom:355.432000pt;}
.y18c{bottom:358.354667pt;}
.y15d{bottom:359.148000pt;}
.y1ce{bottom:359.416000pt;}
.y125{bottom:361.438667pt;}
.y4a{bottom:362.073333pt;}
.y27{bottom:364.697333pt;}
.yea{bottom:365.896000pt;}
.y91{bottom:368.714667pt;}
.y15c{bottom:369.774667pt;}
.y1cd{bottom:370.044000pt;}
.y18b{bottom:371.637333pt;}
.y124{bottom:374.721333pt;}
.y49{bottom:375.357333pt;}
.y26{bottom:377.981333pt;}
.ye9{bottom:379.180000pt;}
.y15b{bottom:380.401333pt;}
.y1cc{bottom:380.670667pt;}
.y90{bottom:381.998667pt;}
.y18a{bottom:384.921333pt;}
.y123{bottom:388.005333pt;}
.yc6{bottom:388.640000pt;}
.y48{bottom:388.641333pt;}
.y15a{bottom:391.028000pt;}
.y25{bottom:391.264000pt;}
.y1cb{bottom:391.297333pt;}
.ye8{bottom:392.464000pt;}
.yaa{bottom:395.281333pt;}
.y8f{bottom:395.282667pt;}
.y189{bottom:398.204000pt;}
.y141{bottom:400.596000pt;}
.y122{bottom:401.289333pt;}
.y47{bottom:401.924000pt;}
.y24{bottom:404.548000pt;}
.ye7{bottom:405.746667pt;}
.y159{bottom:406.517333pt;}
.y8e{bottom:408.565333pt;}
.y188{bottom:411.488000pt;}
.y1ca{bottom:412.550667pt;}
.yc5{bottom:413.878667pt;}
.y121{bottom:414.572000pt;}
.y46{bottom:415.208000pt;}
.y158{bottom:417.144000pt;}
.y23{bottom:417.832000pt;}
.ye6{bottom:419.030667pt;}
.y8d{bottom:421.849333pt;}
.y1c9{bottom:423.177333pt;}
.y187{bottom:424.772000pt;}
.y157{bottom:427.772000pt;}
.y120{bottom:427.856000pt;}
.y106{bottom:428.490667pt;}
.y45{bottom:428.492000pt;}
.y22{bottom:431.114667pt;}
.y140{bottom:431.176000pt;}
.ye5{bottom:432.314667pt;}
.y1c8{bottom:433.804000pt;}
.ya9{bottom:435.132000pt;}
.y8c{bottom:435.133333pt;}
.y186{bottom:438.054667pt;}
.y156{bottom:438.398667pt;}
.y11f{bottom:441.140000pt;}
.y21{bottom:444.398667pt;}
.y1c7{bottom:444.430667pt;}
.y13f{bottom:444.458667pt;}
.ye4{bottom:445.597333pt;}
.y8b{bottom:448.416000pt;}
.y155{bottom:449.025333pt;}
.y185{bottom:451.338667pt;}
.y44{bottom:453.730667pt;}
.y11e{bottom:454.422667pt;}
.y1c6{bottom:455.057333pt;}
.yc4{bottom:455.058667pt;}
.y20{bottom:457.681333pt;}
.y13e{bottom:457.742667pt;}
.ye3{bottom:458.881333pt;}
.y8a{bottom:461.700000pt;}
.y154{bottom:464.514667pt;}
.y1c5{bottom:465.685333pt;}
.y11d{bottom:467.706667pt;}
.yc3{bottom:468.341333pt;}
.y1f{bottom:470.965333pt;}
.y13d{bottom:471.026667pt;}
.ye2{bottom:472.164000pt;}
.ya8{bottom:474.982667pt;}
.y89{bottom:474.984000pt;}
.y153{bottom:475.141333pt;}
.y1c4{bottom:476.312000pt;}
.y184{bottom:476.577333pt;}
.y43{bottom:480.297333pt;}
.y11c{bottom:480.989333pt;}
.yc2{bottom:481.625333pt;}
.y1e{bottom:484.249333pt;}
.y13c{bottom:484.309333pt;}
.ye1{bottom:485.448000pt;}
.y152{bottom:485.768000pt;}
.y1c3{bottom:486.938667pt;}
.y88{bottom:488.266667pt;}
.y11b{bottom:494.273333pt;}
.yc1{bottom:494.909333pt;}
.y1d{bottom:497.532000pt;}
.y1c2{bottom:497.565333pt;}
.y13b{bottom:497.593333pt;}
.ye0{bottom:498.732000pt;}
.y151{bottom:501.258667pt;}
.y87{bottom:501.550667pt;}
.y183{bottom:506.332000pt;}
.y11a{bottom:507.557333pt;}
.yc0{bottom:508.192000pt;}
.y1c{bottom:510.816000pt;}
.y13a{bottom:510.876000pt;}
.y150{bottom:511.885333pt;}
.y86{bottom:514.833333pt;}
.y1c1{bottom:518.818667pt;}
.y182{bottom:519.616000pt;}
.y119{bottom:520.840000pt;}
.ybf{bottom:521.476000pt;}
.y14f{bottom:522.512000pt;}
.ydf{bottom:523.970667pt;}
.y1b{bottom:524.100000pt;}
.y139{bottom:524.160000pt;}
.y85{bottom:528.117333pt;}
.y1c0{bottom:529.445333pt;}
.y181{bottom:532.900000pt;}
.y14e{bottom:533.138667pt;}
.y118{bottom:534.124000pt;}
.y105{bottom:534.758667pt;}
.ybe{bottom:534.760000pt;}
.y1a{bottom:537.382667pt;}
.y138{bottom:537.444000pt;}
.y42{bottom:538.438667pt;}
.y1bf{bottom:540.072000pt;}
.ya7{bottom:541.400000pt;}
.y84{bottom:541.401333pt;}
.y180{bottom:546.182667pt;}
.y117{bottom:547.408000pt;}
.ybd{bottom:548.042667pt;}
.y14d{bottom:548.629333pt;}
.y19{bottom:550.666667pt;}
.y1be{bottom:550.698667pt;}
.y137{bottom:550.726667pt;}
.y41{bottom:551.722667pt;}
.y83{bottom:554.684000pt;}
.y14c{bottom:559.256000pt;}
.y17f{bottom:559.466667pt;}
.y116{bottom:560.690667pt;}
.ybc{bottom:561.326667pt;}
.y18{bottom:563.950667pt;}
.y136{bottom:564.010667pt;}
.y40{bottom:565.006667pt;}
.y82{bottom:567.968000pt;}
.y14b{bottom:569.882667pt;}
.y1bd{bottom:571.953333pt;}
.y17e{bottom:572.750667pt;}
.y115{bottom:573.974667pt;}
.ybb{bottom:574.609333pt;}
.y17{bottom:577.233333pt;}
.y3f{bottom:578.289333pt;}
.y14a{bottom:580.509333pt;}
.ya6{bottom:581.250667pt;}
.y81{bottom:581.252000pt;}
.y1bc{bottom:582.580000pt;}
.y17d{bottom:586.033333pt;}
.y114{bottom:587.258667pt;}
.yba{bottom:587.893333pt;}
.y16{bottom:590.517333pt;}
.y149{bottom:591.136000pt;}
.y3e{bottom:591.573333pt;}
.y1bb{bottom:593.206667pt;}
.y80{bottom:594.534667pt;}
.yde{bottom:596.973333pt;}
.y17c{bottom:599.317333pt;}
.y113{bottom:600.541333pt;}
.yb9{bottom:601.177333pt;}
.y135{bottom:603.225333pt;}
.y15{bottom:603.801333pt;}
.y1ba{bottom:603.833333pt;}
.y3d{bottom:604.857333pt;}
.y148{bottom:606.625333pt;}
.ydd{bottom:607.600000pt;}
.y7f{bottom:607.818667pt;}
.y17b{bottom:612.601333pt;}
.y112{bottom:613.825333pt;}
.yb8{bottom:614.460000pt;}
.y134{bottom:616.508000pt;}
.y14{bottom:617.084000pt;}
.y147{bottom:617.253333pt;}
.y3c{bottom:618.140000pt;}
.ydc{bottom:618.226667pt;}
.ya5{bottom:621.101333pt;}
.y7e{bottom:621.102667pt;}
.y1b9{bottom:625.086667pt;}
.y1ee{bottom:625.088000pt;}
.y17a{bottom:625.884000pt;}
.y111{bottom:627.109333pt;}
.yb7{bottom:627.744000pt;}
.y146{bottom:627.880000pt;}
.ydb{bottom:628.853333pt;}
.y3b{bottom:631.424000pt;}
.y7d{bottom:634.385333pt;}
.y1b8{bottom:635.713333pt;}
.y1ed{bottom:635.714667pt;}
.y145{bottom:638.506667pt;}
.y179{bottom:639.168000pt;}
.y110{bottom:640.392000pt;}
.yb6{bottom:641.028000pt;}
.y13{bottom:643.652000pt;}
.yda{bottom:644.342667pt;}
.y3a{bottom:644.708000pt;}
.y1b7{bottom:646.340000pt;}
.y1ec{bottom:646.341333pt;}
.y7c{bottom:647.669333pt;}
.y144{bottom:649.133333pt;}
.y178{bottom:652.450667pt;}
.y10f{bottom:653.676000pt;}
.yb5{bottom:654.310667pt;}
.yd9{bottom:654.970667pt;}
.y1b6{bottom:656.968000pt;}
.y7b{bottom:660.953333pt;}
.y177{bottom:665.734667pt;}
.y10e{bottom:666.958667pt;}
.yb4{bottom:667.594667pt;}
.ya4{bottom:672.908000pt;}
.y143{bottom:673.708000pt;}
.y7a{bottom:674.236000pt;}
.y1b5{bottom:678.221333pt;}
.y176{bottom:679.018667pt;}
.yd8{bottom:679.544000pt;}
.y10d{bottom:680.242667pt;}
.yb3{bottom:680.878667pt;}
.y1b4{bottom:688.848000pt;}
.y104{bottom:692.169333pt;}
.y175{bottom:692.301333pt;}
.y142{bottom:692.702667pt;}
.yb2{bottom:694.161333pt;}
.yd7{bottom:698.540000pt;}
.y79{bottom:699.474667pt;}
.y103{bottom:705.452000pt;}
.y174{bottom:705.585333pt;}
.y10c{bottom:706.809333pt;}
.ya3{bottom:707.445333pt;}
.y1b3{bottom:710.101333pt;}
.y12{bottom:713.302667pt;}
.y102{bottom:718.736000pt;}
.ya2{bottom:720.728000pt;}
.yb1{bottom:720.729333pt;}
.y11{bottom:727.914667pt;}
.y173{bottom:730.824000pt;}
.y1b2{bottom:731.354667pt;}
.y1eb{bottom:731.356000pt;}
.y101{bottom:732.020000pt;}
.y78{bottom:734.012000pt;}
.yd6{bottom:735.502667pt;}
.y1b1{bottom:741.981333pt;}
.y1ea{bottom:741.982667pt;}
.y10{bottom:742.526667pt;}
.y100{bottom:745.302667pt;}
.y10b{bottom:746.689333pt;}
.ya1{bottom:747.294667pt;}
.y77{bottom:747.296000pt;}
.yd5{bottom:748.786667pt;}
.y1b0{bottom:752.609333pt;}
.yf{bottom:757.138667pt;}
.yff{bottom:758.586667pt;}
.y10a{bottom:759.973333pt;}
.y76{bottom:760.578667pt;}
.yd4{bottom:762.069333pt;}
.y1af{bottom:763.236000pt;}
.ye{bottom:771.750667pt;}
.yfe{bottom:771.870667pt;}
.yb0{bottom:772.534667pt;}
.y109{bottom:773.256000pt;}
.y75{bottom:773.862667pt;}
.yd3{bottom:775.353333pt;}
.y1ae{bottom:784.489333pt;}
.yfd{bottom:785.153333pt;}
.yd{bottom:786.362667pt;}
.y108{bottom:786.540000pt;}
.ya0{bottom:787.145333pt;}
.y74{bottom:787.146667pt;}
.yd2{bottom:788.636000pt;}
.y1ad{bottom:795.116000pt;}
.yfc{bottom:798.437333pt;}
.y73{bottom:800.429333pt;}
.yc{bottom:800.973333pt;}
.yd1{bottom:801.920000pt;}
.y1ac{bottom:805.742667pt;}
.y1e9{bottom:805.744000pt;}
.yfb{bottom:811.721333pt;}
.y72{bottom:813.713333pt;}
.yd0{bottom:815.204000pt;}
.yb{bottom:815.585333pt;}
.y1ab{bottom:816.369333pt;}
.y1e8{bottom:816.370667pt;}
.yfa{bottom:825.004000pt;}
.y9f{bottom:826.996000pt;}
.y71{bottom:826.997333pt;}
.ycf{bottom:828.486667pt;}
.ya{bottom:830.197333pt;}
.y1aa{bottom:837.624000pt;}
.yf9{bottom:838.288000pt;}
.y70{bottom:840.280000pt;}
.yce{bottom:841.770667pt;}
.y9{bottom:844.809333pt;}
.y133{bottom:845.464000pt;}
.y1a9{bottom:848.250667pt;}
.yf8{bottom:851.572000pt;}
.y6f{bottom:853.564000pt;}
.ycd{bottom:855.054667pt;}
.y132{bottom:858.748000pt;}
.y1a8{bottom:858.877333pt;}
.y9e{bottom:866.846667pt;}
.y6e{bottom:866.848000pt;}
.ycc{bottom:868.337333pt;}
.y1a7{bottom:869.504000pt;}
.y8{bottom:872.018667pt;}
.yf7{bottom:876.810667pt;}
.y6d{bottom:880.130667pt;}
.ycb{bottom:881.621333pt;}
.y7{bottom:889.053333pt;}
.y1a6{bottom:890.757333pt;}
.y6c{bottom:893.414667pt;}
.yca{bottom:894.905333pt;}
.y1a5{bottom:901.384000pt;}
.y1e7{bottom:901.385333pt;}
.y6{bottom:903.633333pt;}
.y9d{bottom:906.697333pt;}
.y6b{bottom:906.698667pt;}
.yc9{bottom:908.188000pt;}
.y1a4{bottom:912.010667pt;}
.y1e6{bottom:912.012000pt;}
.y6a{bottom:919.981333pt;}
.y1a3{bottom:922.637333pt;}
.y1e5{bottom:922.638667pt;}
.y5{bottom:933.036000pt;}
.y9c{bottom:933.264000pt;}
.y69{bottom:933.265333pt;}
.yc8{bottom:933.426667pt;}
.y1a2{bottom:943.892000pt;}
.y68{bottom:946.548000pt;}
.y1a1{bottom:954.518667pt;}
.y4{bottom:959.602667pt;}
.y67{bottom:959.832000pt;}
.yc7{bottom:959.994667pt;}
.y1a0{bottom:965.145333pt;}
.y9b{bottom:973.114667pt;}
.y66{bottom:973.116000pt;}
.y19f{bottom:975.772000pt;}
.y3{bottom:986.169333pt;}
.y65{bottom:986.398667pt;}
.y19e{bottom:997.025333pt;}
.y1e4{bottom:997.026667pt;}
.y64{bottom:999.682667pt;}
.y19d{bottom:1007.652000pt;}
.y1e3{bottom:1007.653333pt;}
.y9a{bottom:1012.965333pt;}
.y63{bottom:1012.966667pt;}
.y19c{bottom:1018.278667pt;}
.y1e2{bottom:1018.280000pt;}
.y62{bottom:1026.249333pt;}
.y19b{bottom:1028.906667pt;}
.y2{bottom:1036.717333pt;}
.y61{bottom:1039.533333pt;}
.y1{bottom:1068.598667pt;}
.hb{height:14.824448pt;}
.h6{height:17.640444pt;}
.hf{height:26.444650pt;}
.h10{height:26.817983pt;}
.hd{height:27.597651pt;}
.h7{height:31.497835pt;}
.hc{height:31.540342pt;}
.h9{height:34.000589pt;}
.he{height:34.239693pt;}
.h3{height:35.435213pt;}
.h2{height:35.483034pt;}
.ha{height:37.609691pt;}
.h8{height:39.372195pt;}
.h5{height:49.381955pt;}
.h4{height:70.870426pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.693333pt;}
.x8{left:61.342667pt;}
.x2{left:69.976000pt;}
.x9{left:76.618667pt;}
.x3{left:411.968000pt;}
.xb{left:416.617333pt;}
.x4{left:425.252000pt;}
.x7{left:430.565333pt;}
.xa{left:431.893333pt;}
.xc{left:479.785333pt;}
.xd{left:486.498667pt;}
.x11{left:496.360000pt;}
.x6{left:537.692000pt;}
.xe{left:558.461333pt;}
.x5{left:586.390667pt;}
.x12{left:638.046667pt;}
.xf{left:678.833333pt;}
.x10{left:730.554667pt;}
}




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