
    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_cc392f5514a9fa3e2c033c84.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943000;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_11b74106e6ff7471aac9daa0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.018000;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_e516273af6f1fce39a2bf649.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937000;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_efe0c20c8894efd9afa3b73f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d069bffa602d2e5e4a29bcdd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.681641;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_abed1c64d259557271308866.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730000;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_5a65bec1742911d5b021f6c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.954102;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_10b7f60a82da7e57f002d224.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937000;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_437db88bdf8077084feb49c5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bdb4d0b9e165433d69b284a1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692871;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_b2cf35da7fef779b1b29c9e9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.687500;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.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);}
.m2{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:23.975400px;}
.ls24{letter-spacing:-4.704000px;}
.ls1e{letter-spacing:-4.608000px;}
.ls21{letter-spacing:-4.128000px;}
.ls27{letter-spacing:-1.200000px;}
.ls17{letter-spacing:-1.080000px;}
.ls25{letter-spacing:-1.020000px;}
.lse{letter-spacing:-0.840000px;}
.ls18{letter-spacing:-0.816000px;}
.ls8{letter-spacing:-0.810000px;}
.ls19{letter-spacing:-0.768000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.702000px;}
.ls2a{letter-spacing:-0.672000px;}
.ls22{letter-spacing:-0.624000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.384000px;}
.ls28{letter-spacing:-0.378000px;}
.ls26{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.336000px;}
.ls16{letter-spacing:-0.300000px;}
.ls11{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.192000px;}
.ls15{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020976px;}
.ls5{letter-spacing:0.021000px;}
.lsc{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.240000px;}
.ls1d{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.780000px;}
.ls10{letter-spacing:4.002000px;}
.ls4{letter-spacing:43.199328px;}
.ls0{letter-spacing:43.199928px;}
.ls2{letter-spacing:43.220544px;}
.ls3{letter-spacing:43.220976px;}
.ls23{letter-spacing:324.413162px;}
.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;}
}
.wsf1{word-spacing:-337.642570px;}
.wsf2{word-spacing:-65.171400px;}
.ws4{word-spacing:-54.000000px;}
.ws0{word-spacing:-31.122000px;}
.ws1c{word-spacing:-20.748000px;}
.ws7{word-spacing:-17.784000px;}
.ws133{word-spacing:-14.820000px;}
.ws3{word-spacing:-13.338000px;}
.ws8{word-spacing:-13.122000px;}
.ws5{word-spacing:-12.798000px;}
.ws9{word-spacing:-12.258000px;}
.ws134{word-spacing:-11.556000px;}
.ws6{word-spacing:-11.448000px;}
.ws1{word-spacing:-11.214000px;}
.ws2{word-spacing:-10.896000px;}
.ws16f{word-spacing:-10.560000px;}
.ws9c{word-spacing:-10.416000px;}
.wse7{word-spacing:-10.320000px;}
.ws137{word-spacing:-10.272000px;}
.ws135{word-spacing:-10.224000px;}
.ws136{word-spacing:-10.080000px;}
.wse3{word-spacing:-5.808000px;}
.wsfe{word-spacing:-3.900000px;}
.ws63{word-spacing:-3.840000px;}
.ws75{word-spacing:-3.660000px;}
.ws146{word-spacing:-3.360000px;}
.ws175{word-spacing:-3.216000px;}
.wsbf{word-spacing:-3.180000px;}
.ws115{word-spacing:-2.940000px;}
.wsc1{word-spacing:-2.880000px;}
.ws14f{word-spacing:-2.832000px;}
.wsa3{word-spacing:-2.820000px;}
.wsb2{word-spacing:-2.760000px;}
.ws53{word-spacing:-2.700000px;}
.ws145{word-spacing:-2.688000px;}
.ws101{word-spacing:-2.640000px;}
.wsbe{word-spacing:-2.580000px;}
.ws15b{word-spacing:-2.544000px;}
.ws5e{word-spacing:-2.520000px;}
.wsd9{word-spacing:-2.430000px;}
.wsa7{word-spacing:-2.400000px;}
.wsb{word-spacing:-2.376000px;}
.ws87{word-spacing:-2.340000px;}
.ws141{word-spacing:-2.322000px;}
.ws130{word-spacing:-2.280000px;}
.ws112{word-spacing:-2.220000px;}
.wsda{word-spacing:-2.214000px;}
.ws120{word-spacing:-2.100000px;}
.ws5c{word-spacing:-2.040000px;}
.ws149{word-spacing:-2.016000px;}
.wsd{word-spacing:-1.998000px;}
.ws5f{word-spacing:-1.980000px;}
.ws161{word-spacing:-1.968000px;}
.ws6c{word-spacing:-1.920000px;}
.ws6b{word-spacing:-1.860000px;}
.wsdc{word-spacing:-1.824000px;}
.wsad{word-spacing:-1.800000px;}
.ws147{word-spacing:-1.776000px;}
.ws90{word-spacing:-1.740000px;}
.ws143{word-spacing:-1.680000px;}
.ws13f{word-spacing:-1.512000px;}
.ws50{word-spacing:-1.500000px;}
.ws51{word-spacing:-1.440000px;}
.ws14a{word-spacing:-1.392000px;}
.ws113{word-spacing:-1.380000px;}
.wsc8{word-spacing:-1.320000px;}
.ws131{word-spacing:-1.296000px;}
.ws46{word-spacing:-1.260000px;}
.ws117{word-spacing:-1.200000px;}
.ws15d{word-spacing:-1.152000px;}
.ws1d{word-spacing:-1.140000px;}
.ws14{word-spacing:-1.134000px;}
.wsab{word-spacing:-1.080000px;}
.ws127{word-spacing:-1.020000px;}
.wsbb{word-spacing:-0.960000px;}
.ws1b{word-spacing:-0.936000px;}
.ws140{word-spacing:-0.918000px;}
.ws3e{word-spacing:-0.900000px;}
.wsaa{word-spacing:-0.840000px;}
.ws15c{word-spacing:-0.816000px;}
.wsbc{word-spacing:-0.780000px;}
.ws22{word-spacing:-0.720000px;}
.wsa9{word-spacing:-0.660000px;}
.ws65{word-spacing:-0.600000px;}
.ws14d{word-spacing:-0.576000px;}
.ws57{word-spacing:-0.540000px;}
.ws69{word-spacing:-0.420000px;}
.ws14e{word-spacing:-0.384000px;}
.ws12{word-spacing:-0.378000px;}
.wsfd{word-spacing:-0.360000px;}
.ws15a{word-spacing:-0.336000px;}
.ws40{word-spacing:-0.300000px;}
.ws159{word-spacing:-0.288000px;}
.ws92{word-spacing:-0.240000px;}
.wsb1{word-spacing:-0.180000px;}
.wsec{word-spacing:-0.120000px;}
.wsea{word-spacing:-0.096000px;}
.ws5b{word-spacing:-0.060000px;}
.ws14b{word-spacing:-0.048000px;}
.wsa{word-spacing:0.000000px;}
.ws60{word-spacing:0.120000px;}
.ws27{word-spacing:0.180000px;}
.wse{word-spacing:0.216000px;}
.ws5a{word-spacing:0.240000px;}
.ws160{word-spacing:0.288000px;}
.ws23{word-spacing:0.300000px;}
.ws34{word-spacing:0.360000px;}
.ws138{word-spacing:0.378000px;}
.ws9a{word-spacing:0.384000px;}
.ws56{word-spacing:0.420000px;}
.ws103{word-spacing:0.480000px;}
.ws150{word-spacing:0.528000px;}
.ws1a{word-spacing:0.540000px;}
.wsdb{word-spacing:0.576000px;}
.ws20{word-spacing:0.600000px;}
.ws170{word-spacing:0.624000px;}
.wsf6{word-spacing:0.720000px;}
.ws16b{word-spacing:0.768000px;}
.ws98{word-spacing:0.780000px;}
.ws18{word-spacing:0.869400px;}
.ws99{word-spacing:0.900000px;}
.ws91{word-spacing:0.960000px;}
.ws10{word-spacing:0.972000px;}
.ws76{word-spacing:1.020000px;}
.ws12c{word-spacing:1.080000px;}
.ws88{word-spacing:1.140000px;}
.ws111{word-spacing:1.260000px;}
.ws132{word-spacing:1.296000px;}
.ws3d{word-spacing:1.320000px;}
.ws11f{word-spacing:1.380000px;}
.ws17{word-spacing:1.436400px;}
.ws93{word-spacing:1.440000px;}
.ws95{word-spacing:1.500000px;}
.ws174{word-spacing:1.536000px;}
.wsa8{word-spacing:1.560000px;}
.ws11a{word-spacing:1.620000px;}
.ws11{word-spacing:1.674000px;}
.ws118{word-spacing:1.680000px;}
.ws13{word-spacing:1.728000px;}
.ws37{word-spacing:1.740000px;}
.ws54{word-spacing:1.860000px;}
.ws164{word-spacing:1.872000px;}
.wsa2{word-spacing:1.980000px;}
.wsf{word-spacing:1.998000px;}
.ws173{word-spacing:2.016000px;}
.ws8e{word-spacing:2.040000px;}
.wsdd{word-spacing:2.064000px;}
.ws62{word-spacing:2.100000px;}
.wsa5{word-spacing:2.160000px;}
.ws16a{word-spacing:2.208000px;}
.wsc0{word-spacing:2.220000px;}
.wsfc{word-spacing:2.280000px;}
.ws11d{word-spacing:2.340000px;}
.ws168{word-spacing:2.352000px;}
.ws97{word-spacing:2.400000px;}
.ws6a{word-spacing:2.460000px;}
.ws78{word-spacing:2.520000px;}
.ws148{word-spacing:2.544000px;}
.ws38{word-spacing:2.580000px;}
.ws21{word-spacing:2.640000px;}
.ws7d{word-spacing:2.700000px;}
.ws2a{word-spacing:2.760000px;}
.ws81{word-spacing:2.820000px;}
.ws19{word-spacing:2.835000px;}
.ws100{word-spacing:2.880000px;}
.ws165{word-spacing:2.928000px;}
.wsc5{word-spacing:2.940000px;}
.ws16e{word-spacing:2.976000px;}
.wsa6{word-spacing:3.000000px;}
.ws104{word-spacing:3.060000px;}
.ws142{word-spacing:3.072000px;}
.wsae{word-spacing:3.120000px;}
.ws139{word-spacing:3.132000px;}
.ws171{word-spacing:3.168000px;}
.ws8f{word-spacing:3.180000px;}
.wsff{word-spacing:3.240000px;}
.ws86{word-spacing:3.300000px;}
.ws166{word-spacing:3.312000px;}
.wsed{word-spacing:3.360000px;}
.ws158{word-spacing:3.408000px;}
.ws105{word-spacing:3.420000px;}
.ws16{word-spacing:3.456000px;}
.ws66{word-spacing:3.480000px;}
.ws16c{word-spacing:3.552000px;}
.ws13e{word-spacing:3.564000px;}
.ws33{word-spacing:3.600000px;}
.ws61{word-spacing:3.660000px;}
.ws28{word-spacing:3.720000px;}
.ws15e{word-spacing:3.744000px;}
.ws64{word-spacing:3.780000px;}
.ws176{word-spacing:3.792000px;}
.ws13c{word-spacing:3.834000px;}
.wsc6{word-spacing:3.900000px;}
.wsd6{word-spacing:3.960000px;}
.ws68{word-spacing:4.020000px;}
.ws13b{word-spacing:4.050000px;}
.ws82{word-spacing:4.080000px;}
.wseb{word-spacing:4.128000px;}
.ws3b{word-spacing:4.140000px;}
.wsc{word-spacing:4.158000px;}
.ws31{word-spacing:4.200000px;}
.wsb4{word-spacing:4.212000px;}
.ws172{word-spacing:4.224000px;}
.wsa4{word-spacing:4.260000px;}
.ws3f{word-spacing:4.320000px;}
.ws5d{word-spacing:4.380000px;}
.wsd7{word-spacing:4.440000px;}
.ws41{word-spacing:4.500000px;}
.wsac{word-spacing:4.560000px;}
.wsb3{word-spacing:4.590000px;}
.ws119{word-spacing:4.620000px;}
.wsbd{word-spacing:4.740000px;}
.ws2b{word-spacing:4.800000px;}
.ws83{word-spacing:4.860000px;}
.ws73{word-spacing:4.920000px;}
.ws177{word-spacing:4.944000px;}
.ws167{word-spacing:4.992000px;}
.ws7f{word-spacing:5.040000px;}
.ws15f{word-spacing:5.088000px;}
.ws4d{word-spacing:5.100000px;}
.ws156{word-spacing:5.136000px;}
.ws121{word-spacing:5.220000px;}
.ws70{word-spacing:5.280000px;}
.ws153{word-spacing:5.328000px;}
.ws71{word-spacing:5.340000px;}
.ws8b{word-spacing:5.460000px;}
.ws35{word-spacing:5.580000px;}
.wsc3{word-spacing:5.640000px;}
.ws2d{word-spacing:5.700000px;}
.wsde{word-spacing:5.760000px;}
.ws15{word-spacing:5.778000px;}
.ws154{word-spacing:5.808000px;}
.ws2e{word-spacing:5.880000px;}
.wsd5{word-spacing:5.940000px;}
.ws72{word-spacing:6.000000px;}
.ws125{word-spacing:6.060000px;}
.ws128{word-spacing:6.120000px;}
.ws13a{word-spacing:6.156000px;}
.wsce{word-spacing:6.180000px;}
.wscd{word-spacing:6.240000px;}
.ws32{word-spacing:6.300000px;}
.ws152{word-spacing:6.336000px;}
.ws96{word-spacing:6.360000px;}
.wsca{word-spacing:6.480000px;}
.ws52{word-spacing:6.600000px;}
.wsfb{word-spacing:6.660000px;}
.ws114{word-spacing:6.720000px;}
.ws55{word-spacing:6.780000px;}
.ws122{word-spacing:6.840000px;}
.ws39{word-spacing:6.900000px;}
.ws3c{word-spacing:6.960000px;}
.ws163{word-spacing:7.008000px;}
.wsc4{word-spacing:7.020000px;}
.wsd0{word-spacing:7.080000px;}
.ws94{word-spacing:7.140000px;}
.ws4c{word-spacing:7.200000px;}
.ws30{word-spacing:7.260000px;}
.wsfa{word-spacing:7.320000px;}
.ws7e{word-spacing:7.380000px;}
.wsd1{word-spacing:7.440000px;}
.ws3a{word-spacing:7.500000px;}
.ws2c{word-spacing:7.620000px;}
.ws67{word-spacing:7.680000px;}
.wsf8{word-spacing:7.740000px;}
.ws58{word-spacing:7.800000px;}
.ws102{word-spacing:7.860000px;}
.ws110{word-spacing:7.980000px;}
.ws4f{word-spacing:8.040000px;}
.wscc{word-spacing:8.100000px;}
.wsf9{word-spacing:8.160000px;}
.wsd4{word-spacing:8.220000px;}
.ws12a{word-spacing:8.280000px;}
.ws7c{word-spacing:8.352000px;}
.ws77{word-spacing:8.400000px;}
.ws10f{word-spacing:8.580000px;}
.wsf5{word-spacing:8.640000px;}
.ws48{word-spacing:8.700000px;}
.ws36{word-spacing:8.760000px;}
.ws157{word-spacing:8.784000px;}
.ws151{word-spacing:8.832000px;}
.ws129{word-spacing:8.880000px;}
.ws123{word-spacing:9.180000px;}
.ws9f{word-spacing:9.300000px;}
.ws1f{word-spacing:9.360000px;}
.ws10e{word-spacing:9.420000px;}
.ws89{word-spacing:9.480000px;}
.ws85{word-spacing:9.600000px;}
.wsc2{word-spacing:9.720000px;}
.ws74{word-spacing:9.780000px;}
.wsf7{word-spacing:9.900000px;}
.ws2f{word-spacing:9.960000px;}
.ws25{word-spacing:10.020000px;}
.wsaf{word-spacing:10.080000px;}
.ws44{word-spacing:10.380000px;}
.wsa1{word-spacing:10.440000px;}
.ws43{word-spacing:10.500000px;}
.ws11e{word-spacing:10.560000px;}
.ws26{word-spacing:10.620000px;}
.wsa0{word-spacing:10.680000px;}
.ws6e{word-spacing:10.740000px;}
.ws47{word-spacing:10.800000px;}
.ws126{word-spacing:10.980000px;}
.ws12b{word-spacing:11.040000px;}
.wsdf{word-spacing:11.088000px;}
.ws4b{word-spacing:11.100000px;}
.ws14c{word-spacing:11.136000px;}
.wsd8{word-spacing:11.220000px;}
.ws162{word-spacing:11.328000px;}
.wsc7{word-spacing:11.340000px;}
.ws80{word-spacing:11.460000px;}
.ws59{word-spacing:11.520000px;}
.ws11b{word-spacing:11.580000px;}
.wsb0{word-spacing:11.760000px;}
.ws13d{word-spacing:11.826000px;}
.ws29{word-spacing:11.940000px;}
.ws144{word-spacing:12.000000px;}
.ws12d{word-spacing:12.060000px;}
.wsd2{word-spacing:12.180000px;}
.ws1e{word-spacing:12.300000px;}
.ws155{word-spacing:12.672000px;}
.ws45{word-spacing:12.720000px;}
.ws11c{word-spacing:12.780000px;}
.wsd3{word-spacing:12.960000px;}
.ws84{word-spacing:13.080000px;}
.ws106{word-spacing:13.320000px;}
.ws116{word-spacing:13.380000px;}
.ws124{word-spacing:13.560000px;}
.wsc9{word-spacing:13.620000px;}
.ws7a{word-spacing:14.340000px;}
.wsf4{word-spacing:14.700000px;}
.wscb{word-spacing:14.760000px;}
.wscf{word-spacing:15.060000px;}
.ws12e{word-spacing:15.120000px;}
.ws169{word-spacing:15.504000px;}
.ws24{word-spacing:16.200000px;}
.ws6d{word-spacing:16.260000px;}
.ws7b{word-spacing:16.560000px;}
.ws49{word-spacing:16.680000px;}
.ws178{word-spacing:16.704000px;}
.wsf3{word-spacing:17.160000px;}
.ws12f{word-spacing:17.520000px;}
.ws79{word-spacing:17.760000px;}
.ws8d{word-spacing:18.300000px;}
.ws4a{word-spacing:18.420000px;}
.ws8a{word-spacing:18.540000px;}
.ws42{word-spacing:18.720000px;}
.ws16d{word-spacing:18.960000px;}
.ws179{word-spacing:19.872000px;}
.ws8c{word-spacing:21.240000px;}
.ws4e{word-spacing:21.480000px;}
.wse4{word-spacing:145.242600px;}
.wse6{word-spacing:155.826600px;}
.wse8{word-spacing:163.863600px;}
.ws9d{word-spacing:183.426000px;}
.wse5{word-spacing:194.949600px;}
.ws9e{word-spacing:209.417400px;}
.wsb9{word-spacing:259.628400px;}
.ws6f{word-spacing:288.508800px;}
.wsb8{word-spacing:320.230800px;}
.wsb6{word-spacing:324.670200px;}
.wsb7{word-spacing:329.974800px;}
.wsba{word-spacing:337.030200px;}
.wse2{word-spacing:343.788000px;}
.wse9{word-spacing:393.227400px;}
.ws107{word-spacing:409.768800px;}
.ws9b{word-spacing:456.611400px;}
.wsb5{word-spacing:456.612000px;}
.ws10a{word-spacing:661.602600px;}
.ws10b{word-spacing:689.341800px;}
.ws108{word-spacing:706.957800px;}
.ws109{word-spacing:749.629800px;}
.wse0{word-spacing:761.840400px;}
.wsf0{word-spacing:766.261800px;}
.wsef{word-spacing:767.125800px;}
.ws10d{word-spacing:790.813800px;}
.wsee{word-spacing:791.845200px;}
.ws10c{word-spacing:824.797800px;}
.wse1{word-spacing:975.821400px;}
._7{margin-left:-2824.069200px;}
._61{margin-left:-324.413162px;}
._94{margin-left:-7.206000px;}
._4{margin-left:-6.203400px;}
._2{margin-left:-4.765800px;}
._3{margin-left:-3.096000px;}
._0{margin-left:-1.852200px;}
._1{width:1.650600px;}
._57{width:2.928000px;}
._2d{width:4.128000px;}
._2c{width:5.280000px;}
._6{width:16.944000px;}
._5{width:22.320000px;}
._93{width:43.152600px;}
._d{width:51.868800px;}
._23{width:89.400600px;}
._55{width:94.630800px;}
._c{width:99.104400px;}
._1c{width:118.312800px;}
._14{width:129.789000px;}
._62{width:131.453400px;}
._b{width:146.290800px;}
._1b{width:160.725000px;}
._6a{width:166.300200px;}
._59{width:180.659400px;}
._2a{width:182.071800px;}
._24{width:190.429800px;}
._1a{width:193.602000px;}
._19{width:205.026600px;}
._58{width:209.212200px;}
._15{width:216.116400px;}
._54{width:220.315800px;}
._18{width:227.394000px;}
._25{width:228.407400px;}
._71{width:229.420800px;}
._63{width:232.299000px;}
._67{width:237.771000px;}
._16{width:240.642600px;}
._77{width:242.478000px;}
._9{width:249.508200px;}
._40{width:252.973800px;}
._a{width:254.549400px;}
._73{width:255.724200px;}
._26{width:262.114800px;}
._51{width:263.193000px;}
._6f{width:266.011200px;}
._10{width:271.107000px;}
._4c{width:279.106200px;}
._52{width:281.488200px;}
._68{width:287.747400px;}
._49{width:289.306200px;}
._2b{width:291.697200px;}
._69{width:295.396800px;}
._27{width:296.929800px;}
._6d{width:299.730000px;}
._6e{width:302.332200px;}
._74{width:304.108200px;}
._46{width:307.258800px;}
._4f{width:308.846400px;}
._64{width:310.787400px;}
._22{width:312.271200px;}
._53{width:314.107800px;}
._6b{width:317.511000px;}
._72{width:318.899400px;}
._1f{width:323.278800px;}
._1e{width:324.740400px;}
._50{width:328.107000px;}
._70{width:333.827400px;}
._f{width:335.542800px;}
._11{width:336.808200px;}
._e{width:337.893600px;}
._6c{width:342.768600px;}
._28{width:347.421600px;}
._75{width:348.672000px;}
._78{width:360.375600px;}
._7b{width:361.627200px;}
._29{width:365.206800px;}
._20{width:368.590800px;}
._44{width:372.803400px;}
._66{width:374.352000px;}
._7a{width:376.263000px;}
._13{width:380.399400px;}
._21{width:387.041400px;}
._31{width:388.501800px;}
._5f{width:393.405600px;}
._41{width:396.541200px;}
._65{width:398.475600px;}
._12{width:404.632200px;}
._5a{width:425.483400px;}
._33{width:443.172600px;}
._1d{width:445.992000px;}
._30{width:454.692600px;}
._36{width:466.212000px;}
._3f{width:477.732000px;}
._7d{width:487.762800px;}
._17{width:494.961600px;}
._80{width:499.282800px;}
._8e{width:510.802800px;}
._56{width:512.344200px;}
._90{width:522.322800px;}
._47{width:523.595400px;}
._76{width:532.062000px;}
._83{width:533.842200px;}
._89{width:545.362200px;}
._7e{width:551.001600px;}
._85{width:555.219600px;}
._2e{width:557.146200px;}
._4d{width:558.153600px;}
._4a{width:561.849600px;}
._48{width:564.462600px;}
._32{width:567.073200px;}
._88{width:576.993000px;}
._81{width:579.229200px;}
._82{width:583.587600px;}
._4b{width:585.666000px;}
._5c{width:588.114000px;}
._5e{width:590.095800px;}
._45{width:598.687200px;}
._37{width:607.378200px;}
._79{width:612.835800px;}
._4e{width:631.303800px;}
._42{width:642.201000px;}
._87{width:646.543800px;}
._34{width:647.791800px;}
._84{width:656.835600px;}
._5b{width:665.091600px;}
._5d{width:668.355600px;}
._7f{width:670.727400px;}
._8f{width:690.522000px;}
._60{width:715.083600px;}
._7c{width:723.037800px;}
._3d{width:724.351200px;}
._43{width:726.857400px;}
._2f{width:740.391000px;}
._3b{width:746.550600px;}
._39{width:753.726600px;}
._8c{width:755.533800px;}
._91{width:772.381800px;}
._86{width:774.709800px;}
._8b{width:791.835600px;}
._38{width:793.224600px;}
._8d{width:805.453800px;}
._35{width:830.033400px;}
._3e{width:909.940200px;}
._3c{width:922.804800px;}
._3a{width:931.090200px;}
._8a{width:2114.314200px;}
._92{width:2363.549400px;}
._8{width:2376.487200px;}
.fc5{color:transparent;}
.fc4{color:rgb(112,109,110);}
.fc3{color:rgb(90,87,88);}
.fc1{color:rgb(31,100,48);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fsb{font-size:58.537200px;}
.fs9{font-size:60.000000px;}
.fsc{font-size:65.171400px;}
.fsa{font-size:71.415600px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs0{font-size:126.000000px;}
.y151{bottom:-14.421450px;}
.y0{bottom:0.000000px;}
.y23{bottom:64.661700px;}
.y22{bottom:77.261700px;}
.y21{bottom:89.861700px;}
.y1af{bottom:107.267700px;}
.ye8{bottom:107.291250px;}
.yaf{bottom:107.291400px;}
.y1ae{bottom:125.267700px;}
.y5c{bottom:125.291250px;}
.yae{bottom:125.291400px;}
.y9d{bottom:128.784450px;}
.y1ad{bottom:143.267700px;}
.y5b{bottom:143.291250px;}
.yad{bottom:143.291400px;}
.y9c{bottom:146.862600px;}
.y1ac{bottom:161.267700px;}
.y5a{bottom:161.291250px;}
.yac{bottom:161.291400px;}
.y9b{bottom:164.940900px;}
.y1ab{bottom:179.267700px;}
.y59{bottom:179.291250px;}
.yab{bottom:179.291400px;}
.y9a{bottom:179.940900px;}
.y184{bottom:181.741800px;}
.ye5{bottom:188.848050px;}
.y20{bottom:190.989000px;}
.y1aa{bottom:197.267700px;}
.y58{bottom:197.291250px;}
.yaa{bottom:197.291400px;}
.y99{bottom:198.019050px;}
.y17a{bottom:200.151450px;}
.ye4{bottom:206.926200px;}
.y179{bottom:215.151450px;}
.y1a9{bottom:215.267700px;}
.y57{bottom:215.291250px;}
.ya9{bottom:215.291400px;}
.y98{bottom:216.097200px;}
.y1f{bottom:217.493100px;}
.ye3{bottom:225.004350px;}
.y97{bottom:231.097200px;}
.y1a8{bottom:233.267700px;}
.y56{bottom:233.291250px;}
.ya8{bottom:233.291400px;}
.y178{bottom:238.132800px;}
.y183{bottom:241.771500px;}
.ye2{bottom:243.082650px;}
.y13e{bottom:249.158250px;}
.y96{bottom:249.175500px;}
.y1a7{bottom:251.267700px;}
.y55{bottom:251.291250px;}
.ya7{bottom:251.291400px;}
.y177{bottom:256.210950px;}
.ye1{bottom:261.160800px;}
.ye0{bottom:264.238950px;}
.y95{bottom:267.253650px;}
.y1a6{bottom:269.267700px;}
.y54{bottom:269.291250px;}
.y142{bottom:269.291400px;}
.y182{bottom:272.527500px;}
.y176{bottom:274.289250px;}
.y1e{bottom:278.012700px;}
.ydf{bottom:279.238950px;}
.y94{bottom:282.253650px;}
.y1a5{bottom:287.267700px;}
.y53{bottom:287.291250px;}
.y141{bottom:287.291400px;}
.ya6{bottom:290.527650px;}
.y175{bottom:292.367400px;}
.y1d{bottom:296.012700px;}
.yde{bottom:297.317250px;}
.y93{bottom:300.331950px;}
.y11c{bottom:302.590650px;}
.y1a4{bottom:305.267700px;}
.y52{bottom:305.291250px;}
.y140{bottom:305.291400px;}
.y174{bottom:310.445700px;}
.y1c{bottom:314.012700px;}
.y92{bottom:315.331950px;}
.ydd{bottom:315.395400px;}
.y11b{bottom:320.668800px;}
.y1a3{bottom:323.267700px;}
.y51{bottom:323.291250px;}
.y13f{bottom:323.291400px;}
.y173{bottom:328.523850px;}
.y91{bottom:333.410100px;}
.ydc{bottom:333.473700px;}
.ydb{bottom:336.551850px;}
.y11a{bottom:338.747100px;}
.y1b{bottom:340.516650px;}
.y1a2{bottom:341.267700px;}
.y50{bottom:341.291250px;}
.ya5{bottom:341.291400px;}
.y172{bottom:346.602000px;}
.y90{bottom:351.488250px;}
.yda{bottom:351.551850px;}
.y119{bottom:356.825250px;}
.y1a{bottom:358.516650px;}
.y1a1{bottom:359.267700px;}
.y4f{bottom:359.291250px;}
.ya4{bottom:359.291400px;}
.y171{bottom:364.680300px;}
.y8f{bottom:369.566550px;}
.yd9{bottom:369.630000px;}
.y118{bottom:374.903400px;}
.y19{bottom:376.516650px;}
.y1a0{bottom:377.267700px;}
.y4e{bottom:377.291250px;}
.ya3{bottom:377.291400px;}
.y170{bottom:383.423700px;}
.y8e{bottom:387.644700px;}
.yd8{bottom:387.708300px;}
.y117{bottom:392.981700px;}
.y18{bottom:394.516650px;}
.y19f{bottom:395.267700px;}
.y10b{bottom:395.277900px;}
.y4d{bottom:395.291250px;}
.ya2{bottom:395.291400px;}
.y16f{bottom:401.501850px;}
.yd7{bottom:405.786450px;}
.y10a{bottom:410.277900px;}
.y116{bottom:411.059850px;}
.y17{bottom:412.516650px;}
.y19e{bottom:413.267700px;}
.y4c{bottom:413.291250px;}
.ya1{bottom:413.291400px;}
.y8d{bottom:415.499550px;}
.y16e{bottom:419.580150px;}
.yd6{bottom:423.864600px;}
.y109{bottom:425.277900px;}
.y115{bottom:429.138000px;}
.y16{bottom:430.516650px;}
.y19d{bottom:431.267700px;}
.y4b{bottom:431.291250px;}
.ya0{bottom:431.291400px;}
.y16d{bottom:437.658300px;}
.y108{bottom:440.277900px;}
.yd5{bottom:441.942900px;}
.y114{bottom:447.216300px;}
.y15{bottom:448.516650px;}
.y19c{bottom:449.267700px;}
.y4a{bottom:449.291250px;}
.y9f{bottom:449.291400px;}
.y107{bottom:455.277900px;}
.y16c{bottom:455.736450px;}
.yd4{bottom:460.021050px;}
.y113{bottom:465.294600px;}
.y19b{bottom:467.267700px;}
.y64{bottom:467.291250px;}
.y88{bottom:467.291400px;}
.y106{bottom:470.277900px;}
.y16b{bottom:473.814750px;}
.y14{bottom:475.020600px;}
.yd3{bottom:478.099200px;}
.y49{bottom:481.015650px;}
.y112{bottom:483.372750px;}
.y19a{bottom:485.267700px;}
.y63{bottom:485.291250px;}
.y87{bottom:485.291400px;}
.y16a{bottom:491.892900px;}
.y105{bottom:493.259100px;}
.yd2{bottom:496.177500px;}
.y111{bottom:501.450900px;}
.y13{bottom:501.524550px;}
.y199{bottom:503.267700px;}
.y62{bottom:503.291250px;}
.y86{bottom:503.291400px;}
.y169{bottom:509.971050px;}
.y104{bottom:511.337400px;}
.y48{bottom:511.771650px;}
.yd1{bottom:514.255650px;}
.y12{bottom:519.524550px;}
.y110{bottom:519.529200px;}
.y198{bottom:521.267700px;}
.y61{bottom:521.291250px;}
.y85{bottom:521.291400px;}
.y168{bottom:528.049350px;}
.y103{bottom:529.415550px;}
.yd0{bottom:532.333950px;}
.y10f{bottom:537.607350px;}
.y197{bottom:539.267700px;}
.y60{bottom:539.291250px;}
.y84{bottom:539.291400px;}
.y11{bottom:546.028500px;}
.y167{bottom:546.127500px;}
.y102{bottom:547.493850px;}
.ycf{bottom:550.412100px;}
.y10e{bottom:555.685500px;}
.y196{bottom:557.267700px;}
.ye9{bottom:557.291250px;}
.y83{bottom:557.291400px;}
.y14f{bottom:558.608250px;}
.y166{bottom:561.127500px;}
.y101{bottom:562.493850px;}
.y10{bottom:564.028500px;}
.yce{bottom:568.490250px;}
.y5f{bottom:572.031450px;}
.y10d{bottom:574.138800px;}
.y195{bottom:575.267700px;}
.y47{bottom:575.291250px;}
.y82{bottom:575.291400px;}
.y165{bottom:576.127500px;}
.y14e{bottom:576.686550px;}
.y100{bottom:580.572000px;}
.ycd{bottom:586.568550px;}
.yf{bottom:590.532450px;}
.y194{bottom:593.267700px;}
.y46{bottom:593.291250px;}
.y81{bottom:593.291400px;}
.y14d{bottom:594.764700px;}
.yff{bottom:595.572000px;}
.yfe{bottom:598.650300px;}
.y10c{bottom:601.993500px;}
.y164{bottom:603.982350px;}
.ycc{bottom:604.646700px;}
.y193{bottom:611.267700px;}
.y45{bottom:611.291250px;}
.y80{bottom:611.291400px;}
.y14c{bottom:612.843000px;}
.yfd{bottom:613.650300px;}
.ycb{bottom:622.725000px;}
.y192{bottom:629.267700px;}
.y44{bottom:629.291250px;}
.y7f{bottom:629.291400px;}
.y14b{bottom:631.296150px;}
.yfc{bottom:631.728450px;}
.y17f{bottom:638.407950px;}
.yca{bottom:640.803150px;}
.y13d{bottom:645.753600px;}
.ye{bottom:646.800150px;}
.y191{bottom:647.267700px;}
.y43{bottom:647.291250px;}
.y7e{bottom:647.291400px;}
.yfb{bottom:649.806600px;}
.y17e{bottom:656.486100px;}
.y14a{bottom:659.151000px;}
.y13c{bottom:660.753600px;}
.yd{bottom:664.800150px;}
.y190{bottom:665.267700px;}
.y42{bottom:665.291250px;}
.y7d{bottom:665.291400px;}
.yfa{bottom:667.884900px;}
.yc9{bottom:668.658000px;}
.y17d{bottom:674.564400px;}
.y13b{bottom:675.753600px;}
.yc{bottom:682.800150px;}
.y9e{bottom:683.103000px;}
.y18f{bottom:683.267700px;}
.y41{bottom:683.291250px;}
.y7c{bottom:683.291400px;}
.yf9{bottom:685.963050px;}
.y181{bottom:686.527500px;}
.yc8{bottom:686.658000px;}
.y13a{bottom:690.753600px;}
.y17c{bottom:692.642550px;}
.y149{bottom:693.691650px;}
.y18e{bottom:701.267700px;}
.y40{bottom:701.291250px;}
.y7b{bottom:701.291400px;}
.yf8{bottom:704.041200px;}
.y139{bottom:708.831900px;}
.y17b{bottom:710.720700px;}
.y148{bottom:711.769950px;}
.yb{bottom:717.808050px;}
.y18d{bottom:719.267700px;}
.y3f{bottom:719.291250px;}
.y8c{bottom:719.291400px;}
.yf7{bottom:722.119500px;}
.y138{bottom:723.831900px;}
.yc7{bottom:728.799000px;}
.y147{bottom:729.848100px;}
.y7a{bottom:734.031450px;}
.y18c{bottom:737.267700px;}
.y3e{bottom:737.291250px;}
.y8b{bottom:737.291400px;}
.y137{bottom:738.831900px;}
.yf6{bottom:740.197650px;}
.yc6{bottom:746.877150px;}
.y146{bottom:747.926400px;}
.y5e{bottom:752.031450px;}
.y136{bottom:753.831900px;}
.y18b{bottom:755.267700px;}
.y3d{bottom:755.291250px;}
.y8a{bottom:755.291400px;}
.yf5{bottom:758.275950px;}
.yc5{bottom:764.955300px;}
.ya{bottom:765.571800px;}
.y145{bottom:766.004550px;}
.y135{bottom:771.910050px;}
.y18a{bottom:773.267700px;}
.y3c{bottom:773.291250px;}
.y89{bottom:773.291400px;}
.yf4{bottom:776.354100px;}
.yc4{bottom:783.033600px;}
.y144{bottom:785.374650px;}
.y134{bottom:786.910050px;}
.y3b{bottom:791.291250px;}
.y79{bottom:791.291400px;}
.y9{bottom:792.075750px;}
.y180{bottom:793.216950px;}
.yf3{bottom:794.432250px;}
.yc3{bottom:801.111750px;}
.y133{bottom:801.910050px;}
.y189{bottom:804.023550px;}
.y3a{bottom:809.291250px;}
.y78{bottom:809.291400px;}
.y8{bottom:810.075750px;}
.yf2{bottom:812.510550px;}
.y143{bottom:813.229500px;}
.y132{bottom:816.910050px;}
.yc2{bottom:819.189900px;}
.y39{bottom:827.291250px;}
.y77{bottom:827.291400px;}
.y7{bottom:828.075750px;}
.yf1{bottom:830.588700px;}
.y131{bottom:834.988350px;}
.yc1{bottom:837.268200px;}
.y38{bottom:845.291250px;}
.y76{bottom:845.291400px;}
.yf0{bottom:848.667000px;}
.y130{bottom:849.988350px;}
.y6{bottom:854.579700px;}
.yc0{bottom:855.346500px;}
.y37{bottom:863.291250px;}
.y75{bottom:863.291400px;}
.y12f{bottom:864.988350px;}
.yef{bottom:866.745150px;}
.y163{bottom:868.417350px;}
.ybf{bottom:873.424650px;}
.y5{bottom:876.179700px;}
.y12e{bottom:879.988350px;}
.y36{bottom:881.291250px;}
.y74{bottom:881.291400px;}
.yee{bottom:884.823300px;}
.y150{bottom:889.474500px;}
.ybe{bottom:891.502800px;}
.y12d{bottom:894.988350px;}
.y35{bottom:899.291250px;}
.y73{bottom:899.291400px;}
.y162{bottom:900.841650px;}
.y187{bottom:901.741950px;}
.yed{bottom:902.901600px;}
.ybd{bottom:909.580950px;}
.y12c{bottom:909.988350px;}
.y4{bottom:915.778200px;}
.y34{bottom:917.291250px;}
.y72{bottom:917.291400px;}
.yec{bottom:920.979750px;}
.y12b{bottom:924.988350px;}
.y160{bottom:925.126271px;}
.ybc{bottom:927.659250px;}
.y33{bottom:935.291250px;}
.y71{bottom:935.291400px;}
.y161{bottom:936.842250px;}
.yeb{bottom:939.432900px;}
.y12a{bottom:939.988350px;}
.y158{bottom:944.180129px;}
.ybb{bottom:945.737400px;}
.y32{bottom:953.291250px;}
.y70{bottom:953.291400px;}
.y3{bottom:953.578200px;}
.y129{bottom:954.988350px;}
.y186{bottom:955.741950px;}
.yba{bottom:963.815700px;}
.yea{bottom:967.287900px;}
.y128{bottom:969.988350px;}
.y31{bottom:971.291250px;}
.y6f{bottom:971.291400px;}
.y157{bottom:971.795053px;}
.y159{bottom:972.599940px;}
.y156{bottom:977.487796px;}
.yb9{bottom:981.893850px;}
.y127{bottom:988.066500px;}
.y30{bottom:989.291250px;}
.y6e{bottom:989.291400px;}
.y2{bottom:991.378200px;}
.y1b9{bottom:994.315500px;}
.yb8{bottom:999.972150px;}
.y15a{bottom:1001.019750px;}
.y126{bottom:1003.066500px;}
.y2f{bottom:1007.291250px;}
.y6d{bottom:1007.291400px;}
.y185{bottom:1009.741800px;}
.y1b8{bottom:1012.315500px;}
.yb7{bottom:1018.050300px;}
.y125{bottom:1018.066500px;}
.y155{bottom:1022.956566px;}
.y2e{bottom:1025.291250px;}
.y6c{bottom:1025.291400px;}
.y1{bottom:1029.178200px;}
.y15b{bottom:1029.439561px;}
.y1b7{bottom:1030.315500px;}
.y124{bottom:1033.066500px;}
.yb6{bottom:1036.128450px;}
.y2d{bottom:1043.291250px;}
.y6b{bottom:1043.291400px;}
.y154{bottom:1045.683634px;}
.y123{bottom:1048.066500px;}
.y1b6{bottom:1048.315500px;}
.yb5{bottom:1054.206600px;}
.y15c{bottom:1057.859372px;}
.y2c{bottom:1061.291250px;}
.y6a{bottom:1061.291400px;}
.y122{bottom:1063.066500px;}
.y1b5{bottom:1066.315500px;}
.yb4{bottom:1072.284900px;}
.y121{bottom:1078.066500px;}
.y2b{bottom:1079.291250px;}
.y69{bottom:1079.291400px;}
.y188{bottom:1081.741800px;}
.y1b4{bottom:1084.315500px;}
.y15d{bottom:1086.279182px;}
.yb3{bottom:1090.363200px;}
.y153{bottom:1091.181673px;}
.y120{bottom:1093.066500px;}
.y2a{bottom:1097.291250px;}
.y68{bottom:1097.291400px;}
.y1b3{bottom:1102.315500px;}
.y11f{bottom:1108.066500px;}
.yb2{bottom:1108.441350px;}
.y15e{bottom:1114.698993px;}
.y29{bottom:1115.291250px;}
.y67{bottom:1115.291400px;}
.y1b2{bottom:1120.315500px;}
.yb1{bottom:1126.519500px;}
.y11e{bottom:1126.519650px;}
.y26{bottom:1126.725000px;}
.y152{bottom:1130.957700px;}
.ye7{bottom:1133.291250px;}
.y66{bottom:1133.291400px;}
.y1b1{bottom:1138.315500px;}
.y15f{bottom:1143.118803px;}
.y28{bottom:1148.449350px;}
.y5d{bottom:1150.819500px;}
.ye6{bottom:1151.291250px;}
.y65{bottom:1151.291400px;}
.yb0{bottom:1154.374350px;}
.y11d{bottom:1154.374500px;}
.y1b0{bottom:1156.315500px;}
.y25{bottom:1166.037750px;}
.y24{bottom:1183.789800px;}
.y27{bottom:1193.518650px;}
.ha{height:27.575100px;}
.hb{height:32.827500px;}
.hc{height:33.947754px;}
.h4{height:34.176000px;}
.hf{height:34.272000px;}
.h5{height:35.016000px;}
.h6{height:36.528000px;}
.h7{height:39.555000px;}
.h12{height:40.015664px;}
.h8{height:41.094000px;}
.h14{height:43.950000px;}
.h13{height:44.550762px;}
.he{height:45.660000px;}
.h11{height:48.819258px;}
.h9{height:52.740000px;}
.h3{height:54.792000px;}
.hd{height:61.530000px;}
.h2{height:92.295000px;}
.h10{height:275.760000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:705.685500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:93.543300px;}
.x14{left:97.795200px;}
.x2e{left:104.447850px;}
.x11{left:110.551200px;}
.x47{left:122.813250px;}
.x4e{left:128.774400px;}
.x45{left:132.011794px;}
.x2f{left:134.984550px;}
.xb{left:139.609350px;}
.xa{left:142.537650px;}
.x3{left:145.222950px;}
.x3e{left:150.141900px;}
.x46{left:156.729127px;}
.x9{left:159.103800px;}
.xc{left:160.938300px;}
.x8{left:166.794900px;}
.x1e{left:173.985600px;}
.x48{left:183.799200px;}
.x2d{left:194.677950px;}
.x27{left:197.845950px;}
.x2a{left:202.183500px;}
.x2b{left:205.501500px;}
.x22{left:206.587650px;}
.x28{left:208.183350px;}
.x2{left:211.839150px;}
.x26{left:213.013200px;}
.x23{left:215.083200px;}
.x2c{left:219.463050px;}
.x15{left:221.102400px;}
.x25{left:229.104750px;}
.x24{left:231.708750px;}
.x1f{left:233.286750px;}
.x21{left:235.950900px;}
.x20{left:238.854750px;}
.x4{left:239.963400px;}
.x16{left:242.362200px;}
.x44{left:262.710727px;}
.x30{left:274.404300px;}
.x36{left:279.750450px;}
.x35{left:287.214000px;}
.x5{left:295.057350px;}
.x10{left:322.202400px;}
.x29{left:343.386450px;}
.x42{left:351.233608px;}
.x37{left:370.673850px;}
.xf{left:375.582450px;}
.x6{left:403.621200px;}
.x49{left:433.452300px;}
.x41{left:439.756489px;}
.x34{left:445.287450px;}
.x33{left:446.433750px;}
.x3a{left:448.270050px;}
.x32{left:450.207900px;}
.x31{left:452.938050px;}
.x12{left:455.456700px;}
.x3b{left:458.991600px;}
.x7{left:460.306050px;}
.x38{left:463.311750px;}
.x39{left:470.943750px;}
.x13{left:472.464450px;}
.x3d{left:493.503300px;}
.x3c{left:527.972550px;}
.x4a{left:547.299150px;}
.x17{left:560.027400px;}
.x4b{left:576.608850px;}
.xe{left:601.212750px;}
.x40{left:616.802250px;}
.x1c{left:638.650050px;}
.x18{left:657.471750px;}
.x1d{left:661.185750px;}
.x1a{left:663.267750px;}
.x1b{left:665.955750px;}
.x19{left:669.267600px;}
.x4c{left:678.718200px;}
.x4d{left:694.011900px;}
.xd{left:697.333950px;}
.x43{left:705.310496px;}
.x3f{left:707.998350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.311467pt;}
.ls24{letter-spacing:-4.181333pt;}
.ls1e{letter-spacing:-4.096000pt;}
.ls21{letter-spacing:-3.669333pt;}
.ls27{letter-spacing:-1.066667pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls25{letter-spacing:-0.906667pt;}
.lse{letter-spacing:-0.746667pt;}
.ls18{letter-spacing:-0.725333pt;}
.ls8{letter-spacing:-0.720000pt;}
.ls19{letter-spacing:-0.682667pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.624000pt;}
.ls2a{letter-spacing:-0.597333pt;}
.ls22{letter-spacing:-0.554667pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.341333pt;}
.ls28{letter-spacing:-0.336000pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.298667pt;}
.ls16{letter-spacing:-0.266667pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.170667pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.018645pt;}
.ls5{letter-spacing:0.018667pt;}
.lsc{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls1d{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.693333pt;}
.ls10{letter-spacing:3.557333pt;}
.ls4{letter-spacing:38.399403pt;}
.ls0{letter-spacing:38.399936pt;}
.ls2{letter-spacing:38.418261pt;}
.ls3{letter-spacing:38.418645pt;}
.ls23{letter-spacing:288.367255pt;}
.wsf1{word-spacing:-300.126729pt;}
.wsf2{word-spacing:-57.930133pt;}
.ws4{word-spacing:-48.000000pt;}
.ws0{word-spacing:-27.664000pt;}
.ws1c{word-spacing:-18.442667pt;}
.ws7{word-spacing:-15.808000pt;}
.ws133{word-spacing:-13.173333pt;}
.ws3{word-spacing:-11.856000pt;}
.ws8{word-spacing:-11.664000pt;}
.ws5{word-spacing:-11.376000pt;}
.ws9{word-spacing:-10.896000pt;}
.ws134{word-spacing:-10.272000pt;}
.ws6{word-spacing:-10.176000pt;}
.ws1{word-spacing:-9.968000pt;}
.ws2{word-spacing:-9.685333pt;}
.ws16f{word-spacing:-9.386667pt;}
.ws9c{word-spacing:-9.258667pt;}
.wse7{word-spacing:-9.173333pt;}
.ws137{word-spacing:-9.130667pt;}
.ws135{word-spacing:-9.088000pt;}
.ws136{word-spacing:-8.960000pt;}
.wse3{word-spacing:-5.162667pt;}
.wsfe{word-spacing:-3.466667pt;}
.ws63{word-spacing:-3.413333pt;}
.ws75{word-spacing:-3.253333pt;}
.ws146{word-spacing:-2.986667pt;}
.ws175{word-spacing:-2.858667pt;}
.wsbf{word-spacing:-2.826667pt;}
.ws115{word-spacing:-2.613333pt;}
.wsc1{word-spacing:-2.560000pt;}
.ws14f{word-spacing:-2.517333pt;}
.wsa3{word-spacing:-2.506667pt;}
.wsb2{word-spacing:-2.453333pt;}
.ws53{word-spacing:-2.400000pt;}
.ws145{word-spacing:-2.389333pt;}
.ws101{word-spacing:-2.346667pt;}
.wsbe{word-spacing:-2.293333pt;}
.ws15b{word-spacing:-2.261333pt;}
.ws5e{word-spacing:-2.240000pt;}
.wsd9{word-spacing:-2.160000pt;}
.wsa7{word-spacing:-2.133333pt;}
.wsb{word-spacing:-2.112000pt;}
.ws87{word-spacing:-2.080000pt;}
.ws141{word-spacing:-2.064000pt;}
.ws130{word-spacing:-2.026667pt;}
.ws112{word-spacing:-1.973333pt;}
.wsda{word-spacing:-1.968000pt;}
.ws120{word-spacing:-1.866667pt;}
.ws5c{word-spacing:-1.813333pt;}
.ws149{word-spacing:-1.792000pt;}
.wsd{word-spacing:-1.776000pt;}
.ws5f{word-spacing:-1.760000pt;}
.ws161{word-spacing:-1.749333pt;}
.ws6c{word-spacing:-1.706667pt;}
.ws6b{word-spacing:-1.653333pt;}
.wsdc{word-spacing:-1.621333pt;}
.wsad{word-spacing:-1.600000pt;}
.ws147{word-spacing:-1.578667pt;}
.ws90{word-spacing:-1.546667pt;}
.ws143{word-spacing:-1.493333pt;}
.ws13f{word-spacing:-1.344000pt;}
.ws50{word-spacing:-1.333333pt;}
.ws51{word-spacing:-1.280000pt;}
.ws14a{word-spacing:-1.237333pt;}
.ws113{word-spacing:-1.226667pt;}
.wsc8{word-spacing:-1.173333pt;}
.ws131{word-spacing:-1.152000pt;}
.ws46{word-spacing:-1.120000pt;}
.ws117{word-spacing:-1.066667pt;}
.ws15d{word-spacing:-1.024000pt;}
.ws1d{word-spacing:-1.013333pt;}
.ws14{word-spacing:-1.008000pt;}
.wsab{word-spacing:-0.960000pt;}
.ws127{word-spacing:-0.906667pt;}
.wsbb{word-spacing:-0.853333pt;}
.ws1b{word-spacing:-0.832000pt;}
.ws140{word-spacing:-0.816000pt;}
.ws3e{word-spacing:-0.800000pt;}
.wsaa{word-spacing:-0.746667pt;}
.ws15c{word-spacing:-0.725333pt;}
.wsbc{word-spacing:-0.693333pt;}
.ws22{word-spacing:-0.640000pt;}
.wsa9{word-spacing:-0.586667pt;}
.ws65{word-spacing:-0.533333pt;}
.ws14d{word-spacing:-0.512000pt;}
.ws57{word-spacing:-0.480000pt;}
.ws69{word-spacing:-0.373333pt;}
.ws14e{word-spacing:-0.341333pt;}
.ws12{word-spacing:-0.336000pt;}
.wsfd{word-spacing:-0.320000pt;}
.ws15a{word-spacing:-0.298667pt;}
.ws40{word-spacing:-0.266667pt;}
.ws159{word-spacing:-0.256000pt;}
.ws92{word-spacing:-0.213333pt;}
.wsb1{word-spacing:-0.160000pt;}
.wsec{word-spacing:-0.106667pt;}
.wsea{word-spacing:-0.085333pt;}
.ws5b{word-spacing:-0.053333pt;}
.ws14b{word-spacing:-0.042667pt;}
.wsa{word-spacing:0.000000pt;}
.ws60{word-spacing:0.106667pt;}
.ws27{word-spacing:0.160000pt;}
.wse{word-spacing:0.192000pt;}
.ws5a{word-spacing:0.213333pt;}
.ws160{word-spacing:0.256000pt;}
.ws23{word-spacing:0.266667pt;}
.ws34{word-spacing:0.320000pt;}
.ws138{word-spacing:0.336000pt;}
.ws9a{word-spacing:0.341333pt;}
.ws56{word-spacing:0.373333pt;}
.ws103{word-spacing:0.426667pt;}
.ws150{word-spacing:0.469333pt;}
.ws1a{word-spacing:0.480000pt;}
.wsdb{word-spacing:0.512000pt;}
.ws20{word-spacing:0.533333pt;}
.ws170{word-spacing:0.554667pt;}
.wsf6{word-spacing:0.640000pt;}
.ws16b{word-spacing:0.682667pt;}
.ws98{word-spacing:0.693333pt;}
.ws18{word-spacing:0.772800pt;}
.ws99{word-spacing:0.800000pt;}
.ws91{word-spacing:0.853333pt;}
.ws10{word-spacing:0.864000pt;}
.ws76{word-spacing:0.906667pt;}
.ws12c{word-spacing:0.960000pt;}
.ws88{word-spacing:1.013333pt;}
.ws111{word-spacing:1.120000pt;}
.ws132{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.173333pt;}
.ws11f{word-spacing:1.226667pt;}
.ws17{word-spacing:1.276800pt;}
.ws93{word-spacing:1.280000pt;}
.ws95{word-spacing:1.333333pt;}
.ws174{word-spacing:1.365333pt;}
.wsa8{word-spacing:1.386667pt;}
.ws11a{word-spacing:1.440000pt;}
.ws11{word-spacing:1.488000pt;}
.ws118{word-spacing:1.493333pt;}
.ws13{word-spacing:1.536000pt;}
.ws37{word-spacing:1.546667pt;}
.ws54{word-spacing:1.653333pt;}
.ws164{word-spacing:1.664000pt;}
.wsa2{word-spacing:1.760000pt;}
.wsf{word-spacing:1.776000pt;}
.ws173{word-spacing:1.792000pt;}
.ws8e{word-spacing:1.813333pt;}
.wsdd{word-spacing:1.834667pt;}
.ws62{word-spacing:1.866667pt;}
.wsa5{word-spacing:1.920000pt;}
.ws16a{word-spacing:1.962667pt;}
.wsc0{word-spacing:1.973333pt;}
.wsfc{word-spacing:2.026667pt;}
.ws11d{word-spacing:2.080000pt;}
.ws168{word-spacing:2.090667pt;}
.ws97{word-spacing:2.133333pt;}
.ws6a{word-spacing:2.186667pt;}
.ws78{word-spacing:2.240000pt;}
.ws148{word-spacing:2.261333pt;}
.ws38{word-spacing:2.293333pt;}
.ws21{word-spacing:2.346667pt;}
.ws7d{word-spacing:2.400000pt;}
.ws2a{word-spacing:2.453333pt;}
.ws81{word-spacing:2.506667pt;}
.ws19{word-spacing:2.520000pt;}
.ws100{word-spacing:2.560000pt;}
.ws165{word-spacing:2.602667pt;}
.wsc5{word-spacing:2.613333pt;}
.ws16e{word-spacing:2.645333pt;}
.wsa6{word-spacing:2.666667pt;}
.ws104{word-spacing:2.720000pt;}
.ws142{word-spacing:2.730667pt;}
.wsae{word-spacing:2.773333pt;}
.ws139{word-spacing:2.784000pt;}
.ws171{word-spacing:2.816000pt;}
.ws8f{word-spacing:2.826667pt;}
.wsff{word-spacing:2.880000pt;}
.ws86{word-spacing:2.933333pt;}
.ws166{word-spacing:2.944000pt;}
.wsed{word-spacing:2.986667pt;}
.ws158{word-spacing:3.029333pt;}
.ws105{word-spacing:3.040000pt;}
.ws16{word-spacing:3.072000pt;}
.ws66{word-spacing:3.093333pt;}
.ws16c{word-spacing:3.157333pt;}
.ws13e{word-spacing:3.168000pt;}
.ws33{word-spacing:3.200000pt;}
.ws61{word-spacing:3.253333pt;}
.ws28{word-spacing:3.306667pt;}
.ws15e{word-spacing:3.328000pt;}
.ws64{word-spacing:3.360000pt;}
.ws176{word-spacing:3.370667pt;}
.ws13c{word-spacing:3.408000pt;}
.wsc6{word-spacing:3.466667pt;}
.wsd6{word-spacing:3.520000pt;}
.ws68{word-spacing:3.573333pt;}
.ws13b{word-spacing:3.600000pt;}
.ws82{word-spacing:3.626667pt;}
.wseb{word-spacing:3.669333pt;}
.ws3b{word-spacing:3.680000pt;}
.wsc{word-spacing:3.696000pt;}
.ws31{word-spacing:3.733333pt;}
.wsb4{word-spacing:3.744000pt;}
.ws172{word-spacing:3.754667pt;}
.wsa4{word-spacing:3.786667pt;}
.ws3f{word-spacing:3.840000pt;}
.ws5d{word-spacing:3.893333pt;}
.wsd7{word-spacing:3.946667pt;}
.ws41{word-spacing:4.000000pt;}
.wsac{word-spacing:4.053333pt;}
.wsb3{word-spacing:4.080000pt;}
.ws119{word-spacing:4.106667pt;}
.wsbd{word-spacing:4.213333pt;}
.ws2b{word-spacing:4.266667pt;}
.ws83{word-spacing:4.320000pt;}
.ws73{word-spacing:4.373333pt;}
.ws177{word-spacing:4.394667pt;}
.ws167{word-spacing:4.437333pt;}
.ws7f{word-spacing:4.480000pt;}
.ws15f{word-spacing:4.522667pt;}
.ws4d{word-spacing:4.533333pt;}
.ws156{word-spacing:4.565333pt;}
.ws121{word-spacing:4.640000pt;}
.ws70{word-spacing:4.693333pt;}
.ws153{word-spacing:4.736000pt;}
.ws71{word-spacing:4.746667pt;}
.ws8b{word-spacing:4.853333pt;}
.ws35{word-spacing:4.960000pt;}
.wsc3{word-spacing:5.013333pt;}
.ws2d{word-spacing:5.066667pt;}
.wsde{word-spacing:5.120000pt;}
.ws15{word-spacing:5.136000pt;}
.ws154{word-spacing:5.162667pt;}
.ws2e{word-spacing:5.226667pt;}
.wsd5{word-spacing:5.280000pt;}
.ws72{word-spacing:5.333333pt;}
.ws125{word-spacing:5.386667pt;}
.ws128{word-spacing:5.440000pt;}
.ws13a{word-spacing:5.472000pt;}
.wsce{word-spacing:5.493333pt;}
.wscd{word-spacing:5.546667pt;}
.ws32{word-spacing:5.600000pt;}
.ws152{word-spacing:5.632000pt;}
.ws96{word-spacing:5.653333pt;}
.wsca{word-spacing:5.760000pt;}
.ws52{word-spacing:5.866667pt;}
.wsfb{word-spacing:5.920000pt;}
.ws114{word-spacing:5.973333pt;}
.ws55{word-spacing:6.026667pt;}
.ws122{word-spacing:6.080000pt;}
.ws39{word-spacing:6.133333pt;}
.ws3c{word-spacing:6.186667pt;}
.ws163{word-spacing:6.229333pt;}
.wsc4{word-spacing:6.240000pt;}
.wsd0{word-spacing:6.293333pt;}
.ws94{word-spacing:6.346667pt;}
.ws4c{word-spacing:6.400000pt;}
.ws30{word-spacing:6.453333pt;}
.wsfa{word-spacing:6.506667pt;}
.ws7e{word-spacing:6.560000pt;}
.wsd1{word-spacing:6.613333pt;}
.ws3a{word-spacing:6.666667pt;}
.ws2c{word-spacing:6.773333pt;}
.ws67{word-spacing:6.826667pt;}
.wsf8{word-spacing:6.880000pt;}
.ws58{word-spacing:6.933333pt;}
.ws102{word-spacing:6.986667pt;}
.ws110{word-spacing:7.093333pt;}
.ws4f{word-spacing:7.146667pt;}
.wscc{word-spacing:7.200000pt;}
.wsf9{word-spacing:7.253333pt;}
.wsd4{word-spacing:7.306667pt;}
.ws12a{word-spacing:7.360000pt;}
.ws7c{word-spacing:7.424000pt;}
.ws77{word-spacing:7.466667pt;}
.ws10f{word-spacing:7.626667pt;}
.wsf5{word-spacing:7.680000pt;}
.ws48{word-spacing:7.733333pt;}
.ws36{word-spacing:7.786667pt;}
.ws157{word-spacing:7.808000pt;}
.ws151{word-spacing:7.850667pt;}
.ws129{word-spacing:7.893333pt;}
.ws123{word-spacing:8.160000pt;}
.ws9f{word-spacing:8.266667pt;}
.ws1f{word-spacing:8.320000pt;}
.ws10e{word-spacing:8.373333pt;}
.ws89{word-spacing:8.426667pt;}
.ws85{word-spacing:8.533333pt;}
.wsc2{word-spacing:8.640000pt;}
.ws74{word-spacing:8.693333pt;}
.wsf7{word-spacing:8.800000pt;}
.ws2f{word-spacing:8.853333pt;}
.ws25{word-spacing:8.906667pt;}
.wsaf{word-spacing:8.960000pt;}
.ws44{word-spacing:9.226667pt;}
.wsa1{word-spacing:9.280000pt;}
.ws43{word-spacing:9.333333pt;}
.ws11e{word-spacing:9.386667pt;}
.ws26{word-spacing:9.440000pt;}
.wsa0{word-spacing:9.493333pt;}
.ws6e{word-spacing:9.546667pt;}
.ws47{word-spacing:9.600000pt;}
.ws126{word-spacing:9.760000pt;}
.ws12b{word-spacing:9.813333pt;}
.wsdf{word-spacing:9.856000pt;}
.ws4b{word-spacing:9.866667pt;}
.ws14c{word-spacing:9.898667pt;}
.wsd8{word-spacing:9.973333pt;}
.ws162{word-spacing:10.069333pt;}
.wsc7{word-spacing:10.080000pt;}
.ws80{word-spacing:10.186667pt;}
.ws59{word-spacing:10.240000pt;}
.ws11b{word-spacing:10.293333pt;}
.wsb0{word-spacing:10.453333pt;}
.ws13d{word-spacing:10.512000pt;}
.ws29{word-spacing:10.613333pt;}
.ws144{word-spacing:10.666667pt;}
.ws12d{word-spacing:10.720000pt;}
.wsd2{word-spacing:10.826667pt;}
.ws1e{word-spacing:10.933333pt;}
.ws155{word-spacing:11.264000pt;}
.ws45{word-spacing:11.306667pt;}
.ws11c{word-spacing:11.360000pt;}
.wsd3{word-spacing:11.520000pt;}
.ws84{word-spacing:11.626667pt;}
.ws106{word-spacing:11.840000pt;}
.ws116{word-spacing:11.893333pt;}
.ws124{word-spacing:12.053333pt;}
.wsc9{word-spacing:12.106667pt;}
.ws7a{word-spacing:12.746667pt;}
.wsf4{word-spacing:13.066667pt;}
.wscb{word-spacing:13.120000pt;}
.wscf{word-spacing:13.386667pt;}
.ws12e{word-spacing:13.440000pt;}
.ws169{word-spacing:13.781333pt;}
.ws24{word-spacing:14.400000pt;}
.ws6d{word-spacing:14.453333pt;}
.ws7b{word-spacing:14.720000pt;}
.ws49{word-spacing:14.826667pt;}
.ws178{word-spacing:14.848000pt;}
.wsf3{word-spacing:15.253333pt;}
.ws12f{word-spacing:15.573333pt;}
.ws79{word-spacing:15.786667pt;}
.ws8d{word-spacing:16.266667pt;}
.ws4a{word-spacing:16.373333pt;}
.ws8a{word-spacing:16.480000pt;}
.ws42{word-spacing:16.640000pt;}
.ws16d{word-spacing:16.853333pt;}
.ws179{word-spacing:17.664000pt;}
.ws8c{word-spacing:18.880000pt;}
.ws4e{word-spacing:19.093333pt;}
.wse4{word-spacing:129.104533pt;}
.wse6{word-spacing:138.512533pt;}
.wse8{word-spacing:145.656533pt;}
.ws9d{word-spacing:163.045333pt;}
.wse5{word-spacing:173.288533pt;}
.ws9e{word-spacing:186.148800pt;}
.wsb9{word-spacing:230.780800pt;}
.ws6f{word-spacing:256.452267pt;}
.wsb8{word-spacing:284.649600pt;}
.wsb6{word-spacing:288.595733pt;}
.wsb7{word-spacing:293.310933pt;}
.wsba{word-spacing:299.582400pt;}
.wse2{word-spacing:305.589333pt;}
.wse9{word-spacing:349.535467pt;}
.ws107{word-spacing:364.238933pt;}
.ws9b{word-spacing:405.876800pt;}
.wsb5{word-spacing:405.877333pt;}
.ws10a{word-spacing:588.091200pt;}
.ws10b{word-spacing:612.748267pt;}
.ws108{word-spacing:628.406933pt;}
.ws109{word-spacing:666.337600pt;}
.wse0{word-spacing:677.191467pt;}
.wsf0{word-spacing:681.121600pt;}
.wsef{word-spacing:681.889600pt;}
.ws10d{word-spacing:702.945600pt;}
.wsee{word-spacing:703.862400pt;}
.ws10c{word-spacing:733.153600pt;}
.wse1{word-spacing:867.396800pt;}
._7{margin-left:-2510.283733pt;}
._61{margin-left:-288.367255pt;}
._94{margin-left:-6.405333pt;}
._4{margin-left:-5.514133pt;}
._2{margin-left:-4.236267pt;}
._3{margin-left:-2.752000pt;}
._0{margin-left:-1.646400pt;}
._1{width:1.467200pt;}
._57{width:2.602667pt;}
._2d{width:3.669333pt;}
._2c{width:4.693333pt;}
._6{width:15.061333pt;}
._5{width:19.840000pt;}
._93{width:38.357867pt;}
._d{width:46.105600pt;}
._23{width:79.467200pt;}
._55{width:84.116267pt;}
._c{width:88.092800pt;}
._1c{width:105.166933pt;}
._14{width:115.368000pt;}
._62{width:116.847467pt;}
._b{width:130.036267pt;}
._1b{width:142.866667pt;}
._6a{width:147.822400pt;}
._59{width:160.586133pt;}
._2a{width:161.841600pt;}
._24{width:169.270933pt;}
._1a{width:172.090667pt;}
._19{width:182.245867pt;}
._58{width:185.966400pt;}
._15{width:192.103467pt;}
._54{width:195.836267pt;}
._18{width:202.128000pt;}
._25{width:203.028800pt;}
._71{width:203.929600pt;}
._63{width:206.488000pt;}
._67{width:211.352000pt;}
._16{width:213.904533pt;}
._77{width:215.536000pt;}
._9{width:221.785067pt;}
._40{width:224.865600pt;}
._a{width:226.266133pt;}
._73{width:227.310400pt;}
._26{width:232.990933pt;}
._51{width:233.949333pt;}
._6f{width:236.454400pt;}
._10{width:240.984000pt;}
._4c{width:248.094400pt;}
._52{width:250.211733pt;}
._68{width:255.775467pt;}
._49{width:257.161067pt;}
._2b{width:259.286400pt;}
._69{width:262.574933pt;}
._27{width:263.937600pt;}
._6d{width:266.426667pt;}
._6e{width:268.739733pt;}
._74{width:270.318400pt;}
._46{width:273.118933pt;}
._4f{width:274.530133pt;}
._64{width:276.255467pt;}
._22{width:277.574400pt;}
._53{width:279.206933pt;}
._6b{width:282.232000pt;}
._72{width:283.466133pt;}
._1f{width:287.358933pt;}
._1e{width:288.658133pt;}
._50{width:291.650667pt;}
._70{width:296.735467pt;}
._f{width:298.260267pt;}
._11{width:299.385067pt;}
._e{width:300.349867pt;}
._6c{width:304.683200pt;}
._28{width:308.819200pt;}
._75{width:309.930667pt;}
._78{width:320.333867pt;}
._7b{width:321.446400pt;}
._29{width:324.628267pt;}
._20{width:327.636267pt;}
._44{width:331.380800pt;}
._66{width:332.757333pt;}
._7a{width:334.456000pt;}
._13{width:338.132800pt;}
._21{width:344.036800pt;}
._31{width:345.334933pt;}
._5f{width:349.693867pt;}
._41{width:352.481067pt;}
._65{width:354.200533pt;}
._12{width:359.673067pt;}
._5a{width:378.207467pt;}
._33{width:393.931200pt;}
._1d{width:396.437333pt;}
._30{width:404.171200pt;}
._36{width:414.410667pt;}
._3f{width:424.650667pt;}
._7d{width:433.566933pt;}
._17{width:439.965867pt;}
._80{width:443.806933pt;}
._8e{width:454.046933pt;}
._56{width:455.417067pt;}
._90{width:464.286933pt;}
._47{width:465.418133pt;}
._76{width:472.944000pt;}
._83{width:474.526400pt;}
._89{width:484.766400pt;}
._7e{width:489.779200pt;}
._85{width:493.528533pt;}
._2e{width:495.241067pt;}
._4d{width:496.136533pt;}
._4a{width:499.421867pt;}
._48{width:501.744533pt;}
._32{width:504.065067pt;}
._88{width:512.882667pt;}
._81{width:514.870400pt;}
._82{width:518.744533pt;}
._4b{width:520.592000pt;}
._5c{width:522.768000pt;}
._5e{width:524.529600pt;}
._45{width:532.166400pt;}
._37{width:539.891733pt;}
._79{width:544.742933pt;}
._4e{width:561.158933pt;}
._42{width:570.845333pt;}
._87{width:574.705600pt;}
._34{width:575.814933pt;}
._84{width:583.853867pt;}
._5b{width:591.192533pt;}
._5d{width:594.093867pt;}
._7f{width:596.202133pt;}
._8f{width:613.797333pt;}
._60{width:635.629867pt;}
._7c{width:642.700267pt;}
._3d{width:643.867733pt;}
._43{width:646.095467pt;}
._2f{width:658.125333pt;}
._3b{width:663.600533pt;}
._39{width:669.979200pt;}
._8c{width:671.585600pt;}
._91{width:686.561600pt;}
._86{width:688.630933pt;}
._8b{width:703.853867pt;}
._38{width:705.088533pt;}
._8d{width:715.958933pt;}
._35{width:737.807467pt;}
._3e{width:808.835733pt;}
._3c{width:820.270933pt;}
._3a{width:827.635733pt;}
._8a{width:1879.390400pt;}
._92{width:2100.932800pt;}
._8{width:2112.433067pt;}
.fs6{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fsb{font-size:52.033067pt;}
.fs9{font-size:53.333333pt;}
.fsc{font-size:57.930133pt;}
.fsa{font-size:63.480533pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs0{font-size:112.000000pt;}
.y151{bottom:-12.819067pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:57.477067pt;}
.y22{bottom:68.677067pt;}
.y21{bottom:79.877067pt;}
.y1af{bottom:95.349067pt;}
.ye8{bottom:95.370000pt;}
.yaf{bottom:95.370133pt;}
.y1ae{bottom:111.349067pt;}
.y5c{bottom:111.370000pt;}
.yae{bottom:111.370133pt;}
.y9d{bottom:114.475067pt;}
.y1ad{bottom:127.349067pt;}
.y5b{bottom:127.370000pt;}
.yad{bottom:127.370133pt;}
.y9c{bottom:130.544533pt;}
.y1ac{bottom:143.349067pt;}
.y5a{bottom:143.370000pt;}
.yac{bottom:143.370133pt;}
.y9b{bottom:146.614133pt;}
.y1ab{bottom:159.349067pt;}
.y59{bottom:159.370000pt;}
.yab{bottom:159.370133pt;}
.y9a{bottom:159.947467pt;}
.y184{bottom:161.548267pt;}
.ye5{bottom:167.864933pt;}
.y20{bottom:169.768000pt;}
.y1aa{bottom:175.349067pt;}
.y58{bottom:175.370000pt;}
.yaa{bottom:175.370133pt;}
.y99{bottom:176.016933pt;}
.y17a{bottom:177.912400pt;}
.ye4{bottom:183.934400pt;}
.y179{bottom:191.245733pt;}
.y1a9{bottom:191.349067pt;}
.y57{bottom:191.370000pt;}
.ya9{bottom:191.370133pt;}
.y98{bottom:192.086400pt;}
.y1f{bottom:193.327200pt;}
.ye3{bottom:200.003867pt;}
.y97{bottom:205.419733pt;}
.y1a8{bottom:207.349067pt;}
.y56{bottom:207.370000pt;}
.ya8{bottom:207.370133pt;}
.y178{bottom:211.673600pt;}
.y183{bottom:214.908000pt;}
.ye2{bottom:216.073467pt;}
.y13e{bottom:221.474000pt;}
.y96{bottom:221.489333pt;}
.y1a7{bottom:223.349067pt;}
.y55{bottom:223.370000pt;}
.ya7{bottom:223.370133pt;}
.y177{bottom:227.743067pt;}
.ye1{bottom:232.142933pt;}
.ye0{bottom:234.879067pt;}
.y95{bottom:237.558800pt;}
.y1a6{bottom:239.349067pt;}
.y54{bottom:239.370000pt;}
.y142{bottom:239.370133pt;}
.y182{bottom:242.246667pt;}
.y176{bottom:243.812667pt;}
.y1e{bottom:247.122400pt;}
.ydf{bottom:248.212400pt;}
.y94{bottom:250.892133pt;}
.y1a5{bottom:255.349067pt;}
.y53{bottom:255.370000pt;}
.y141{bottom:255.370133pt;}
.ya6{bottom:258.246800pt;}
.y175{bottom:259.882133pt;}
.y1d{bottom:263.122400pt;}
.yde{bottom:264.282000pt;}
.y93{bottom:266.961733pt;}
.y11c{bottom:268.969467pt;}
.y1a4{bottom:271.349067pt;}
.y52{bottom:271.370000pt;}
.y140{bottom:271.370133pt;}
.y174{bottom:275.951733pt;}
.y1c{bottom:279.122400pt;}
.y92{bottom:280.295067pt;}
.ydd{bottom:280.351467pt;}
.y11b{bottom:285.038933pt;}
.y1a3{bottom:287.349067pt;}
.y51{bottom:287.370000pt;}
.y13f{bottom:287.370133pt;}
.y173{bottom:292.021200pt;}
.y91{bottom:296.364533pt;}
.ydc{bottom:296.421067pt;}
.ydb{bottom:299.157200pt;}
.y11a{bottom:301.108533pt;}
.y1b{bottom:302.681467pt;}
.y1a2{bottom:303.349067pt;}
.y50{bottom:303.370000pt;}
.ya5{bottom:303.370133pt;}
.y172{bottom:308.090667pt;}
.y90{bottom:312.434000pt;}
.yda{bottom:312.490533pt;}
.y119{bottom:317.178000pt;}
.y1a{bottom:318.681467pt;}
.y1a1{bottom:319.349067pt;}
.y4f{bottom:319.370000pt;}
.ya4{bottom:319.370133pt;}
.y171{bottom:324.160267pt;}
.y8f{bottom:328.503600pt;}
.yd9{bottom:328.560000pt;}
.y118{bottom:333.247467pt;}
.y19{bottom:334.681467pt;}
.y1a0{bottom:335.349067pt;}
.y4e{bottom:335.370000pt;}
.ya3{bottom:335.370133pt;}
.y170{bottom:340.821067pt;}
.y8e{bottom:344.573067pt;}
.yd8{bottom:344.629600pt;}
.y117{bottom:349.317067pt;}
.y18{bottom:350.681467pt;}
.y19f{bottom:351.349067pt;}
.y10b{bottom:351.358133pt;}
.y4d{bottom:351.370000pt;}
.ya2{bottom:351.370133pt;}
.y16f{bottom:356.890533pt;}
.yd7{bottom:360.699067pt;}
.y10a{bottom:364.691467pt;}
.y116{bottom:365.386533pt;}
.y17{bottom:366.681467pt;}
.y19e{bottom:367.349067pt;}
.y4c{bottom:367.370000pt;}
.ya1{bottom:367.370133pt;}
.y8d{bottom:369.332933pt;}
.y16e{bottom:372.960133pt;}
.yd6{bottom:376.768533pt;}
.y109{bottom:378.024800pt;}
.y115{bottom:381.456000pt;}
.y16{bottom:382.681467pt;}
.y19d{bottom:383.349067pt;}
.y4b{bottom:383.370000pt;}
.ya0{bottom:383.370133pt;}
.y16d{bottom:389.029600pt;}
.y108{bottom:391.358133pt;}
.yd5{bottom:392.838133pt;}
.y114{bottom:397.525600pt;}
.y15{bottom:398.681467pt;}
.y19c{bottom:399.349067pt;}
.y4a{bottom:399.370000pt;}
.y9f{bottom:399.370133pt;}
.y107{bottom:404.691467pt;}
.y16c{bottom:405.099067pt;}
.yd4{bottom:408.907600pt;}
.y113{bottom:413.595200pt;}
.y19b{bottom:415.349067pt;}
.y64{bottom:415.370000pt;}
.y88{bottom:415.370133pt;}
.y106{bottom:418.024800pt;}
.y16b{bottom:421.168667pt;}
.y14{bottom:422.240533pt;}
.yd3{bottom:424.977067pt;}
.y49{bottom:427.569467pt;}
.y112{bottom:429.664667pt;}
.y19a{bottom:431.349067pt;}
.y63{bottom:431.370000pt;}
.y87{bottom:431.370133pt;}
.y16a{bottom:437.238133pt;}
.y105{bottom:438.452533pt;}
.yd2{bottom:441.046667pt;}
.y111{bottom:445.734133pt;}
.y13{bottom:445.799600pt;}
.y199{bottom:447.349067pt;}
.y62{bottom:447.370000pt;}
.y86{bottom:447.370133pt;}
.y169{bottom:453.307600pt;}
.y104{bottom:454.522133pt;}
.y48{bottom:454.908133pt;}
.yd1{bottom:457.116133pt;}
.y12{bottom:461.799600pt;}
.y110{bottom:461.803733pt;}
.y198{bottom:463.349067pt;}
.y61{bottom:463.370000pt;}
.y85{bottom:463.370133pt;}
.y168{bottom:469.377200pt;}
.y103{bottom:470.591600pt;}
.yd0{bottom:473.185733pt;}
.y10f{bottom:477.873200pt;}
.y197{bottom:479.349067pt;}
.y60{bottom:479.370000pt;}
.y84{bottom:479.370133pt;}
.y11{bottom:485.358667pt;}
.y167{bottom:485.446667pt;}
.y102{bottom:486.661200pt;}
.ycf{bottom:489.255200pt;}
.y10e{bottom:493.942667pt;}
.y196{bottom:495.349067pt;}
.ye9{bottom:495.370000pt;}
.y83{bottom:495.370133pt;}
.y14f{bottom:496.540667pt;}
.y166{bottom:498.780000pt;}
.y101{bottom:499.994533pt;}
.y10{bottom:501.358667pt;}
.yce{bottom:505.324667pt;}
.y5f{bottom:508.472400pt;}
.y10d{bottom:510.345600pt;}
.y195{bottom:511.349067pt;}
.y47{bottom:511.370000pt;}
.y82{bottom:511.370133pt;}
.y165{bottom:512.113333pt;}
.y14e{bottom:512.610267pt;}
.y100{bottom:516.064000pt;}
.ycd{bottom:521.394267pt;}
.yf{bottom:524.917733pt;}
.y194{bottom:527.349067pt;}
.y46{bottom:527.370000pt;}
.y81{bottom:527.370133pt;}
.y14d{bottom:528.679733pt;}
.yff{bottom:529.397333pt;}
.yfe{bottom:532.133600pt;}
.y10c{bottom:535.105333pt;}
.y164{bottom:536.873200pt;}
.ycc{bottom:537.463733pt;}
.y193{bottom:543.349067pt;}
.y45{bottom:543.370000pt;}
.y80{bottom:543.370133pt;}
.y14c{bottom:544.749333pt;}
.yfd{bottom:545.466933pt;}
.ycb{bottom:553.533333pt;}
.y192{bottom:559.349067pt;}
.y44{bottom:559.370000pt;}
.y7f{bottom:559.370133pt;}
.y14b{bottom:561.152133pt;}
.yfc{bottom:561.536400pt;}
.y17f{bottom:567.473733pt;}
.yca{bottom:569.602800pt;}
.y13d{bottom:574.003200pt;}
.ye{bottom:574.933467pt;}
.y191{bottom:575.349067pt;}
.y43{bottom:575.370000pt;}
.y7e{bottom:575.370133pt;}
.yfb{bottom:577.605867pt;}
.y17e{bottom:583.543200pt;}
.y14a{bottom:585.912000pt;}
.y13c{bottom:587.336533pt;}
.yd{bottom:590.933467pt;}
.y190{bottom:591.349067pt;}
.y42{bottom:591.370000pt;}
.y7d{bottom:591.370133pt;}
.yfa{bottom:593.675467pt;}
.yc9{bottom:594.362667pt;}
.y17d{bottom:599.612800pt;}
.y13b{bottom:600.669867pt;}
.yc{bottom:606.933467pt;}
.y9e{bottom:607.202667pt;}
.y18f{bottom:607.349067pt;}
.y41{bottom:607.370000pt;}
.y7c{bottom:607.370133pt;}
.yf9{bottom:609.744933pt;}
.y181{bottom:610.246667pt;}
.yc8{bottom:610.362667pt;}
.y13a{bottom:614.003200pt;}
.y17c{bottom:615.682267pt;}
.y149{bottom:616.614800pt;}
.y18e{bottom:623.349067pt;}
.y40{bottom:623.370000pt;}
.y7b{bottom:623.370133pt;}
.yf8{bottom:625.814400pt;}
.y139{bottom:630.072800pt;}
.y17b{bottom:631.751733pt;}
.y148{bottom:632.684400pt;}
.yb{bottom:638.051600pt;}
.y18d{bottom:639.349067pt;}
.y3f{bottom:639.370000pt;}
.y8c{bottom:639.370133pt;}
.yf7{bottom:641.884000pt;}
.y138{bottom:643.406133pt;}
.yc7{bottom:647.821333pt;}
.y147{bottom:648.753867pt;}
.y7a{bottom:652.472400pt;}
.y18c{bottom:655.349067pt;}
.y3e{bottom:655.370000pt;}
.y8b{bottom:655.370133pt;}
.y137{bottom:656.739467pt;}
.yf6{bottom:657.953467pt;}
.yc6{bottom:663.890800pt;}
.y146{bottom:664.823467pt;}
.y5e{bottom:668.472400pt;}
.y136{bottom:670.072800pt;}
.y18b{bottom:671.349067pt;}
.y3d{bottom:671.370000pt;}
.y8a{bottom:671.370133pt;}
.yf5{bottom:674.023067pt;}
.yc5{bottom:679.960267pt;}
.ya{bottom:680.508267pt;}
.y145{bottom:680.892933pt;}
.y135{bottom:686.142267pt;}
.y18a{bottom:687.349067pt;}
.y3c{bottom:687.370000pt;}
.y89{bottom:687.370133pt;}
.yf4{bottom:690.092533pt;}
.yc4{bottom:696.029867pt;}
.y144{bottom:698.110800pt;}
.y134{bottom:699.475600pt;}
.y3b{bottom:703.370000pt;}
.y79{bottom:703.370133pt;}
.y9{bottom:704.067333pt;}
.y180{bottom:705.081733pt;}
.yf3{bottom:706.162000pt;}
.yc3{bottom:712.099333pt;}
.y133{bottom:712.808933pt;}
.y189{bottom:714.687600pt;}
.y3a{bottom:719.370000pt;}
.y78{bottom:719.370133pt;}
.y8{bottom:720.067333pt;}
.yf2{bottom:722.231600pt;}
.y143{bottom:722.870667pt;}
.y132{bottom:726.142267pt;}
.yc2{bottom:728.168800pt;}
.y39{bottom:735.370000pt;}
.y77{bottom:735.370133pt;}
.y7{bottom:736.067333pt;}
.yf1{bottom:738.301067pt;}
.y131{bottom:742.211867pt;}
.yc1{bottom:744.238400pt;}
.y38{bottom:751.370000pt;}
.y76{bottom:751.370133pt;}
.yf0{bottom:754.370667pt;}
.y130{bottom:755.545200pt;}
.y6{bottom:759.626400pt;}
.yc0{bottom:760.308000pt;}
.y37{bottom:767.370000pt;}
.y75{bottom:767.370133pt;}
.y12f{bottom:768.878533pt;}
.yef{bottom:770.440133pt;}
.y163{bottom:771.926533pt;}
.ybf{bottom:776.377467pt;}
.y5{bottom:778.826400pt;}
.y12e{bottom:782.211867pt;}
.y36{bottom:783.370000pt;}
.y74{bottom:783.370133pt;}
.yee{bottom:786.509600pt;}
.y150{bottom:790.644000pt;}
.ybe{bottom:792.446933pt;}
.y12d{bottom:795.545200pt;}
.y35{bottom:799.370000pt;}
.y73{bottom:799.370133pt;}
.y162{bottom:800.748133pt;}
.y187{bottom:801.548400pt;}
.yed{bottom:802.579200pt;}
.ybd{bottom:808.516400pt;}
.y12c{bottom:808.878533pt;}
.y4{bottom:814.025067pt;}
.y34{bottom:815.370000pt;}
.y72{bottom:815.370133pt;}
.yec{bottom:818.648667pt;}
.y12b{bottom:822.211867pt;}
.y160{bottom:822.334463pt;}
.ybc{bottom:824.586000pt;}
.y33{bottom:831.370000pt;}
.y71{bottom:831.370133pt;}
.y161{bottom:832.748667pt;}
.yeb{bottom:835.051467pt;}
.y12a{bottom:835.545200pt;}
.y158{bottom:839.271226pt;}
.ybb{bottom:840.655467pt;}
.y32{bottom:847.370000pt;}
.y70{bottom:847.370133pt;}
.y3{bottom:847.625067pt;}
.y129{bottom:848.878533pt;}
.y186{bottom:849.548400pt;}
.yba{bottom:856.725067pt;}
.yea{bottom:859.811467pt;}
.y128{bottom:862.211867pt;}
.y31{bottom:863.370000pt;}
.y6f{bottom:863.370133pt;}
.y157{bottom:863.817825pt;}
.y159{bottom:864.533280pt;}
.y156{bottom:868.878041pt;}
.yb9{bottom:872.794533pt;}
.y127{bottom:878.281333pt;}
.y30{bottom:879.370000pt;}
.y6e{bottom:879.370133pt;}
.y2{bottom:881.225067pt;}
.y1b9{bottom:883.836000pt;}
.yb8{bottom:888.864133pt;}
.y15a{bottom:889.795334pt;}
.y126{bottom:891.614667pt;}
.y2f{bottom:895.370000pt;}
.y6d{bottom:895.370133pt;}
.y185{bottom:897.548267pt;}
.y1b8{bottom:899.836000pt;}
.yb7{bottom:904.933600pt;}
.y125{bottom:904.948000pt;}
.y155{bottom:909.294725pt;}
.y2e{bottom:911.370000pt;}
.y6c{bottom:911.370133pt;}
.y1{bottom:914.825067pt;}
.y15b{bottom:915.057387pt;}
.y1b7{bottom:915.836000pt;}
.y124{bottom:918.281333pt;}
.yb6{bottom:921.003067pt;}
.y2d{bottom:927.370000pt;}
.y6b{bottom:927.370133pt;}
.y154{bottom:929.496563pt;}
.y123{bottom:931.614667pt;}
.y1b6{bottom:931.836000pt;}
.yb5{bottom:937.072533pt;}
.y15c{bottom:940.319441pt;}
.y2c{bottom:943.370000pt;}
.y6a{bottom:943.370133pt;}
.y122{bottom:944.948000pt;}
.y1b5{bottom:947.836000pt;}
.yb4{bottom:953.142133pt;}
.y121{bottom:958.281333pt;}
.y2b{bottom:959.370000pt;}
.y69{bottom:959.370133pt;}
.y188{bottom:961.548267pt;}
.y1b4{bottom:963.836000pt;}
.y15d{bottom:965.581495pt;}
.yb3{bottom:969.211733pt;}
.y153{bottom:969.939265pt;}
.y120{bottom:971.614667pt;}
.y2a{bottom:975.370000pt;}
.y68{bottom:975.370133pt;}
.y1b3{bottom:979.836000pt;}
.y11f{bottom:984.948000pt;}
.yb2{bottom:985.281200pt;}
.y15e{bottom:990.843549pt;}
.y29{bottom:991.370000pt;}
.y67{bottom:991.370133pt;}
.y1b2{bottom:995.836000pt;}
.yb1{bottom:1001.350667pt;}
.y11e{bottom:1001.350800pt;}
.y26{bottom:1001.533333pt;}
.y152{bottom:1005.295733pt;}
.ye7{bottom:1007.370000pt;}
.y66{bottom:1007.370133pt;}
.y1b1{bottom:1011.836000pt;}
.y15f{bottom:1016.105603pt;}
.y28{bottom:1020.843867pt;}
.y5d{bottom:1022.950667pt;}
.ye6{bottom:1023.370000pt;}
.y65{bottom:1023.370133pt;}
.yb0{bottom:1026.110533pt;}
.y11d{bottom:1026.110667pt;}
.y1b0{bottom:1027.836000pt;}
.y25{bottom:1036.478000pt;}
.y24{bottom:1052.257600pt;}
.y27{bottom:1060.905467pt;}
.ha{height:24.511200pt;}
.hb{height:29.180000pt;}
.hc{height:30.175781pt;}
.h4{height:30.378667pt;}
.hf{height:30.464000pt;}
.h5{height:31.125333pt;}
.h6{height:32.469333pt;}
.h7{height:35.160000pt;}
.h12{height:35.569479pt;}
.h8{height:36.528000pt;}
.h14{height:39.066667pt;}
.h13{height:39.600677pt;}
.he{height:40.586667pt;}
.h11{height:43.394896pt;}
.h9{height:46.880000pt;}
.h3{height:48.704000pt;}
.hd{height:54.693333pt;}
.h2{height:82.040000pt;}
.h10{height:245.120000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:627.276000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:83.149600pt;}
.x14{left:86.929067pt;}
.x2e{left:92.842533pt;}
.x11{left:98.267733pt;}
.x47{left:109.167333pt;}
.x4e{left:114.466133pt;}
.x45{left:117.343817pt;}
.x2f{left:119.986267pt;}
.xb{left:124.097200pt;}
.xa{left:126.700133pt;}
.x3{left:129.087067pt;}
.x3e{left:133.459467pt;}
.x46{left:139.314779pt;}
.x9{left:141.425600pt;}
.xc{left:143.056267pt;}
.x8{left:148.262133pt;}
.x1e{left:154.653867pt;}
.x48{left:163.377067pt;}
.x2d{left:173.047067pt;}
.x27{left:175.863067pt;}
.x2a{left:179.718667pt;}
.x2b{left:182.668000pt;}
.x22{left:183.633467pt;}
.x28{left:185.051867pt;}
.x2{left:188.301467pt;}
.x26{left:189.345067pt;}
.x23{left:191.185067pt;}
.x2c{left:195.078267pt;}
.x15{left:196.535467pt;}
.x25{left:203.648667pt;}
.x24{left:205.963333pt;}
.x1f{left:207.366000pt;}
.x21{left:209.734133pt;}
.x20{left:212.315333pt;}
.x4{left:213.300800pt;}
.x16{left:215.433067pt;}
.x44{left:233.520646pt;}
.x30{left:243.914933pt;}
.x36{left:248.667067pt;}
.x35{left:255.301333pt;}
.x5{left:262.273200pt;}
.x10{left:286.402133pt;}
.x29{left:305.232400pt;}
.x42{left:312.207651pt;}
.x37{left:329.487867pt;}
.xf{left:333.851067pt;}
.x6{left:358.774400pt;}
.x49{left:385.290933pt;}
.x41{left:390.894657pt;}
.x34{left:395.811067pt;}
.x33{left:396.830000pt;}
.x3a{left:398.462267pt;}
.x32{left:400.184800pt;}
.x31{left:402.611600pt;}
.x12{left:404.850400pt;}
.x3b{left:407.992533pt;}
.x7{left:409.160933pt;}
.x38{left:411.832667pt;}
.x39{left:418.616667pt;}
.x13{left:419.968400pt;}
.x3d{left:438.669600pt;}
.x3c{left:469.308933pt;}
.x4a{left:486.488133pt;}
.x17{left:497.802133pt;}
.x4b{left:512.541200pt;}
.xe{left:534.411333pt;}
.x40{left:548.268667pt;}
.x1c{left:567.688933pt;}
.x18{left:584.419333pt;}
.x1d{left:587.720667pt;}
.x1a{left:589.571333pt;}
.x1b{left:591.960667pt;}
.x19{left:594.904533pt;}
.x4c{left:603.305067pt;}
.x4d{left:616.899467pt;}
.xd{left:619.852400pt;}
.x43{left:626.942663pt;}
.x3f{left:629.331867pt;}
}




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