
    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_d060ec14978a5a788b42a234.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.192383;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_4fc5748ca20744b81d800335.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_3d27cf35ea0c7858c552505f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f9ca75cd35395145b1b0ecf8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.191406;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_5c50ecc6962c7581fd4fb06c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.349000;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_6b7e515678b9f52d17ae583e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.362000;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_b46cf4ce503e596b70e4ca85.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_aafaaa3d9971fa3747223db5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.190918;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_371519adcf2654ed0ec932b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.192383;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_632024b167ab03c47eb1ad97.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.384000;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_e0c2f2671d5a8265a95dd14d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.392000;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_c0a64a3f7b09905dccf45ec5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.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);}
.va{vertical-align:-49.995850px;}
.v9{vertical-align:-35.506348px;}
.vb{vertical-align:-18.629974px;}
.v3{vertical-align:-17.594971px;}
.v7{vertical-align:-14.489502px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:15.524780px;}
.v4{vertical-align:17.594971px;}
.v2{vertical-align:18.629974px;}
.v1{vertical-align:20.700073px;}
.v6{vertical-align:22.500000px;}
.v8{vertical-align:35.506348px;}
.v5{vertical-align:49.500000px;}
.ls16{letter-spacing:-7.506000px;}
.ls12{letter-spacing:-5.166000px;}
.ls15{letter-spacing:-4.860000px;}
.ls20{letter-spacing:-3.750000px;}
.ls37{letter-spacing:-2.790000px;}
.ls28{letter-spacing:-1.974000px;}
.ls21{letter-spacing:-1.566000px;}
.ls2a{letter-spacing:-1.188000px;}
.ls29{letter-spacing:-1.092000px;}
.ls38{letter-spacing:-1.026000px;}
.ls33{letter-spacing:-0.990000px;}
.ls30{letter-spacing:-0.855000px;}
.ls1b{letter-spacing:-0.750000px;}
.ls32{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.702000px;}
.ls35{letter-spacing:-0.585000px;}
.ls1d{letter-spacing:-0.562500px;}
.ls27{letter-spacing:-0.546000px;}
.ls1e{letter-spacing:-0.525000px;}
.ls26{letter-spacing:-0.504000px;}
.ls2e{letter-spacing:-0.495000px;}
.lsf{letter-spacing:-0.486000px;}
.ls31{letter-spacing:-0.450000px;}
.ls39{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.420000px;}
.ls1c{letter-spacing:-0.375000px;}
.ls34{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.315000px;}
.ls11{letter-spacing:-0.210000px;}
.ls1f{letter-spacing:-0.187500px;}
.ls2d{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.168000px;}
.lsc{letter-spacing:-0.108000px;}
.lsa{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000006px;}
.ls6{letter-spacing:0.000008px;}
.ls7{letter-spacing:0.000012px;}
.ls22{letter-spacing:0.000018px;}
.lse{letter-spacing:0.000044px;}
.ls2c{letter-spacing:0.000088px;}
.ls5{letter-spacing:0.000104px;}
.ls36{letter-spacing:0.000316px;}
.ls8{letter-spacing:0.011429px;}
.ls4{letter-spacing:0.011454px;}
.ls1{letter-spacing:0.013800px;}
.ls2{letter-spacing:0.014254px;}
.ls0{letter-spacing:0.014438px;}
.ls3{letter-spacing:0.014440px;}
.ls14{letter-spacing:0.210000px;}
.ls25{letter-spacing:0.270000px;}
.ls2b{letter-spacing:0.467007px;}
.ls24{letter-spacing:0.754670px;}
.ls9{letter-spacing:3.000000px;}
.ls23{letter-spacing:135.595729px;}
.ls19{letter-spacing:187.281958px;}
.ls1a{letter-spacing:187.283057px;}
.ls17{letter-spacing:225.958228px;}
.ls18{letter-spacing:233.703040px;}
.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;}
}
.ws5{word-spacing:-15.000000px;}
.ws61{word-spacing:-13.596000px;}
.wsa0{word-spacing:-12.528000px;}
.ws2{word-spacing:-12.366000px;}
.ws1b{word-spacing:-12.258000px;}
.ws10b{word-spacing:-11.718000px;}
.ws1{word-spacing:-11.664000px;}
.ws11e{word-spacing:-11.232000px;}
.ws8d{word-spacing:-10.800000px;}
.wsb8{word-spacing:-10.638000px;}
.wse3{word-spacing:-10.305000px;}
.wse5{word-spacing:-10.215000px;}
.wse8{word-spacing:-10.125000px;}
.wse7{word-spacing:-9.990000px;}
.wse2{word-spacing:-9.765000px;}
.wsa9{word-spacing:-9.618000px;}
.wse6{word-spacing:-9.585000px;}
.wse4{word-spacing:-9.360000px;}
.ws0{word-spacing:-8.652000px;}
.ws3{word-spacing:-8.580600px;}
.ws7c{word-spacing:-8.212500px;}
.ws7a{word-spacing:-7.762500px;}
.wsa4{word-spacing:-7.560000px;}
.ws4{word-spacing:-7.140000px;}
.wsaa{word-spacing:-6.732600px;}
.wsa8{word-spacing:-6.673800px;}
.ws6a{word-spacing:-5.508000px;}
.wsde{word-spacing:-4.914000px;}
.ws63{word-spacing:-4.368000px;}
.wsb7{word-spacing:-4.284000px;}
.ws106{word-spacing:-4.275000px;}
.ws105{word-spacing:-4.230000px;}
.ws8{word-spacing:-4.080000px;}
.ws26{word-spacing:-3.996000px;}
.ws89{word-spacing:-3.825000px;}
.ws73{word-spacing:-3.780000px;}
.ws10{word-spacing:-3.672000px;}
.ws5f{word-spacing:-2.754000px;}
.wsae{word-spacing:-2.646000px;}
.ws7{word-spacing:-2.640000px;}
.ws9a{word-spacing:-2.484000px;}
.wsfe{word-spacing:-2.475000px;}
.wsc9{word-spacing:-2.430000px;}
.wsb{word-spacing:-2.340000px;}
.wsdb{word-spacing:-2.268000px;}
.ws98{word-spacing:-2.214000px;}
.ws39{word-spacing:-2.106000px;}
.wsd2{word-spacing:-2.052000px;}
.wsb9{word-spacing:-1.998000px;}
.ws108{word-spacing:-1.980000px;}
.wsbd{word-spacing:-1.890000px;}
.ws109{word-spacing:-1.845000px;}
.wsd4{word-spacing:-1.836000px;}
.wsfc{word-spacing:-1.800000px;}
.wsbc{word-spacing:-1.782000px;}
.ws10d{word-spacing:-1.755000px;}
.ws91{word-spacing:-1.728000px;}
.ws71{word-spacing:-1.674000px;}
.wsff{word-spacing:-1.620000px;}
.ws65{word-spacing:-1.566000px;}
.wsc6{word-spacing:-1.512000px;}
.ws111{word-spacing:-1.485000px;}
.ws9{word-spacing:-1.440000px;}
.ws54{word-spacing:-1.350000px;}
.ws27{word-spacing:-1.296000px;}
.wsba{word-spacing:-1.242000px;}
.ws110{word-spacing:-1.215000px;}
.ws50{word-spacing:-1.188000px;}
.wsfb{word-spacing:-1.170000px;}
.wsa{word-spacing:-1.140000px;}
.ws68{word-spacing:-1.134000px;}
.ws67{word-spacing:-1.026000px;}
.ws41{word-spacing:-0.972000px;}
.ws100{word-spacing:-0.945000px;}
.ws12{word-spacing:-0.918000px;}
.ws1c{word-spacing:-0.864000px;}
.ws59{word-spacing:-0.810000px;}
.ws6f{word-spacing:-0.756000px;}
.ws37{word-spacing:-0.702000px;}
.ws5c{word-spacing:-0.648000px;}
.ws93{word-spacing:-0.594000px;}
.wscd{word-spacing:-0.540000px;}
.ws9c{word-spacing:-0.486000px;}
.ws117{word-spacing:-0.450000px;}
.wscc{word-spacing:-0.432000px;}
.ws94{word-spacing:-0.378000px;}
.ws55{word-spacing:-0.324000px;}
.wsed{word-spacing:-0.315000px;}
.ws49{word-spacing:-0.216000px;}
.ws76{word-spacing:-0.210000px;}
.ws8b{word-spacing:-0.187500px;}
.ws107{word-spacing:-0.180000px;}
.wsf4{word-spacing:-0.135000px;}
.ws20{word-spacing:-0.108000px;}
.wsb0{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.wsf9{word-spacing:0.045000px;}
.ws48{word-spacing:0.054000px;}
.ws1a{word-spacing:0.108000px;}
.ws8a{word-spacing:0.150000px;}
.ws34{word-spacing:0.162000px;}
.ws75{word-spacing:0.168000px;}
.ws87{word-spacing:0.187500px;}
.ws74{word-spacing:0.210000px;}
.wse{word-spacing:0.216000px;}
.ws1d{word-spacing:0.270000px;}
.wsef{word-spacing:0.315000px;}
.ws40{word-spacing:0.324000px;}
.wsfa{word-spacing:0.360000px;}
.ws88{word-spacing:0.375000px;}
.wsec{word-spacing:0.405000px;}
.wsc5{word-spacing:0.432000px;}
.wseb{word-spacing:0.450000px;}
.ws47{word-spacing:0.486000px;}
.ws10c{word-spacing:0.495000px;}
.ws11d{word-spacing:0.540000px;}
.wsf3{word-spacing:0.585000px;}
.ws6b{word-spacing:0.648000px;}
.wsf0{word-spacing:0.675000px;}
.ws10e{word-spacing:0.720000px;}
.ws86{word-spacing:0.750000px;}
.ws16{word-spacing:0.756000px;}
.wsfd{word-spacing:0.765000px;}
.ws2e{word-spacing:0.810000px;}
.ws112{word-spacing:0.855000px;}
.wsf8{word-spacing:0.900000px;}
.wsf7{word-spacing:0.990000px;}
.ws51{word-spacing:1.080000px;}
.wsb6{word-spacing:1.092000px;}
.ws4c{word-spacing:1.188000px;}
.wse9{word-spacing:1.215000px;}
.ws6d{word-spacing:1.350000px;}
.ws19{word-spacing:1.377000px;}
.wsea{word-spacing:1.395000px;}
.ws58{word-spacing:1.404000px;}
.ws104{word-spacing:1.440000px;}
.ws3c{word-spacing:1.458000px;}
.ws35{word-spacing:1.512000px;}
.wsdc{word-spacing:1.566000px;}
.ws10a{word-spacing:1.575000px;}
.wsda{word-spacing:1.620000px;}
.wscf{word-spacing:1.674000px;}
.ws29{word-spacing:1.782000px;}
.wsb3{word-spacing:1.836000px;}
.wsdd{word-spacing:1.890000px;}
.wsee{word-spacing:1.935000px;}
.wsce{word-spacing:1.944000px;}
.ws119{word-spacing:2.025000px;}
.wse1{word-spacing:2.052000px;}
.ws11{word-spacing:2.106000px;}
.wsf5{word-spacing:2.115000px;}
.wsc{word-spacing:2.160000px;}
.ws13{word-spacing:2.214000px;}
.wsb1{word-spacing:2.268000px;}
.ws5b{word-spacing:2.322000px;}
.ws9f{word-spacing:2.376000px;}
.ws60{word-spacing:2.430000px;}
.ws45{word-spacing:2.484000px;}
.wsd8{word-spacing:2.538000px;}
.wsd6{word-spacing:2.700000px;}
.wsf6{word-spacing:2.745000px;}
.ws4e{word-spacing:2.754000px;}
.ws114{word-spacing:2.790000px;}
.ws4a{word-spacing:2.808000px;}
.ws97{word-spacing:2.862000px;}
.ws6e{word-spacing:2.916000px;}
.ws95{word-spacing:2.970000px;}
.ws36{word-spacing:3.024000px;}
.ws22{word-spacing:3.132000px;}
.ws1f{word-spacing:3.186000px;}
.ws52{word-spacing:3.240000px;}
.ws8c{word-spacing:3.375000px;}
.ws66{word-spacing:3.402000px;}
.ws11c{word-spacing:3.456000px;}
.ws8e{word-spacing:3.510000px;}
.ws2a{word-spacing:3.564000px;}
.wsc0{word-spacing:3.672000px;}
.ws6c{word-spacing:3.726000px;}
.wsf1{word-spacing:3.735000px;}
.ws17{word-spacing:3.780000px;}
.ws72{word-spacing:3.834000px;}
.ws32{word-spacing:3.888000px;}
.ws10f{word-spacing:3.915000px;}
.ws14{word-spacing:3.942000px;}
.ws101{word-spacing:3.960000px;}
.ws5e{word-spacing:4.050000px;}
.ws70{word-spacing:4.104000px;}
.ws15{word-spacing:4.158000px;}
.wsf2{word-spacing:4.185000px;}
.wscb{word-spacing:4.212000px;}
.ws103{word-spacing:4.230000px;}
.wsd5{word-spacing:4.266000px;}
.ws3e{word-spacing:4.320000px;}
.ws42{word-spacing:4.482000px;}
.ws102{word-spacing:4.500000px;}
.ws2f{word-spacing:4.536000px;}
.wsc8{word-spacing:4.590000px;}
.ws118{word-spacing:4.635000px;}
.ws2d{word-spacing:4.644000px;}
.ws3d{word-spacing:4.752000px;}
.ws3f{word-spacing:4.860000px;}
.ws113{word-spacing:4.950000px;}
.ws44{word-spacing:4.968000px;}
.ws21{word-spacing:5.076000px;}
.wsf{word-spacing:5.130000px;}
.wsc4{word-spacing:5.184000px;}
.wsdf{word-spacing:5.238000px;}
.wsc3{word-spacing:5.292000px;}
.ws31{word-spacing:5.346000px;}
.ws11a{word-spacing:5.562000px;}
.wsc1{word-spacing:5.616000px;}
.wse0{word-spacing:5.670000px;}
.ws18{word-spacing:5.724000px;}
.wsb5{word-spacing:5.778000px;}
.ws5d{word-spacing:5.832000px;}
.wsc7{word-spacing:5.940000px;}
.ws99{word-spacing:5.994000px;}
.ws115{word-spacing:6.075000px;}
.ws116{word-spacing:6.165000px;}
.ws23{word-spacing:6.210000px;}
.ws53{word-spacing:6.264000px;}
.ws28{word-spacing:6.372000px;}
.ws9b{word-spacing:6.426000px;}
.ws11b{word-spacing:6.588000px;}
.wsb4{word-spacing:6.642000px;}
.ws4f{word-spacing:6.696000px;}
.ws43{word-spacing:6.750000px;}
.wsc2{word-spacing:6.804000px;}
.ws92{word-spacing:6.858000px;}
.wsbe{word-spacing:6.966000px;}
.ws2c{word-spacing:7.020000px;}
.ws33{word-spacing:7.074000px;}
.ws3b{word-spacing:7.182000px;}
.ws46{word-spacing:7.290000px;}
.ws77{word-spacing:7.506000px;}
.ws24{word-spacing:7.614000px;}
.ws30{word-spacing:7.722000px;}
.ws90{word-spacing:7.830000px;}
.wsd7{word-spacing:7.884000px;}
.ws8f{word-spacing:7.992000px;}
.wsd9{word-spacing:8.154000px;}
.ws3a{word-spacing:8.208000px;}
.ws9e{word-spacing:8.262000px;}
.ws38{word-spacing:8.370000px;}
.ws56{word-spacing:8.748000px;}
.ws69{word-spacing:8.910000px;}
.ws9d{word-spacing:9.234000px;}
.wsb2{word-spacing:9.504000px;}
.ws2b{word-spacing:9.774000px;}
.ws57{word-spacing:9.936000px;}
.wsaf{word-spacing:10.044000px;}
.wsd{word-spacing:10.476000px;}
.wsd0{word-spacing:10.584000px;}
.ws1e{word-spacing:10.638000px;}
.wsca{word-spacing:10.746000px;}
.ws5a{word-spacing:11.124000px;}
.ws4b{word-spacing:11.178000px;}
.ws64{word-spacing:11.286000px;}
.wsbf{word-spacing:11.556000px;}
.ws4d{word-spacing:11.718000px;}
.wsd3{word-spacing:12.258000px;}
.ws96{word-spacing:13.122000px;}
.wsbb{word-spacing:14.040000px;}
.wsd1{word-spacing:14.364000px;}
.ws25{word-spacing:15.444000px;}
.wsac{word-spacing:32.990479px;}
.wsa7{word-spacing:32.990552px;}
.wsad{word-spacing:37.190552px;}
.wsa6{word-spacing:53.150479px;}
.wsa2{word-spacing:79.652481px;}
.ws7e{word-spacing:89.089417px;}
.ws80{word-spacing:113.819458px;}
.ws84{word-spacing:113.820374px;}
.ws82{word-spacing:113.820557px;}
.ws7d{word-spacing:126.869458px;}
.wsa3{word-spacing:130.765731px;}
.ws85{word-spacing:131.444458px;}
.ws81{word-spacing:154.039417px;}
.ws62{word-spacing:154.117329px;}
.ws7f{word-spacing:178.769458px;}
.wsa1{word-spacing:183.263449px;}
.ws83{word-spacing:225.190540px;}
.wsa5{word-spacing:285.108001px;}
.ws78{word-spacing:289.712714px;}
.ws79{word-spacing:292.029364px;}
.wsab{word-spacing:299.473249px;}
.ws7b{word-spacing:306.928015px;}
._7{margin-left:-15.912000px;}
._69{margin-left:-14.715000px;}
._12{margin-left:-13.644000px;}
._f{margin-left:-12.588044px;}
._13{margin-left:-11.504982px;}
._11{margin-left:-10.296677px;}
._10{margin-left:-8.657942px;}
._5a{margin-left:-7.649373px;}
._e{margin-left:-6.630012px;}
._0{margin-left:-5.382000px;}
._8{margin-left:-4.378200px;}
._3{margin-left:-2.804348px;}
._1{margin-left:-1.176000px;}
._5{width:1.203026px;}
._2{width:2.495960px;}
._4{width:3.954000px;}
._a{width:5.232600px;}
._9{width:7.179300px;}
._68{width:8.379000px;}
._59{width:10.107697px;}
._14{width:11.876361px;}
._c{width:13.219642px;}
._b{width:14.740853px;}
._6{width:17.230779px;}
._67{width:23.085000px;}
._50{width:30.827129px;}
._42{width:38.327129px;}
._16{width:41.887818px;}
._15{width:43.064826px;}
._1d{width:44.539146px;}
._60{width:46.303433px;}
._3b{width:50.457861px;}
._57{width:52.202129px;}
._3a{width:56.961205px;}
._35{width:60.499329px;}
._5b{width:63.152818px;}
._22{width:64.699146px;}
._17{width:68.072990px;}
._5e{width:72.134281px;}
._64{width:76.579249px;}
._3f{width:83.515540px;}
._33{width:84.859146px;}
._27{width:88.549818px;}
._1f{width:90.565818px;}
._5d{width:92.294281px;}
._18{width:96.451146px;}
._47{width:98.140962px;}
._5f{width:109.201708px;}
._24{width:110.725818px;}
._28{width:116.604505px;}
._30{width:118.620505px;}
._63{width:122.987360px;}
._2f{width:130.885818px;}
._5c{width:132.491449px;}
._34{width:134.580505px;}
._20{width:138.780505px;}
._1a{width:142.477818px;}
._41{width:143.616243px;}
._62{width:150.665360px;}
._4c{width:157.491243px;}
._44{width:162.551917px;}
._61{width:163.665080px;}
._1b{width:170.533055px;}
._51{width:171.894324px;}
._3d{width:173.683228px;}
._4f{width:179.011277px;}
._40{width:180.278723px;}
._46{width:187.329865px;}
._4b{width:194.153723px;}
._2a{width:208.297146px;}
._65{width:214.011560px;}
._55{width:215.673757px;}
._1e{width:219.965537px;}
._43{width:225.026837px;}
._52{width:226.252515px;}
._26{width:238.744865px;}
._23{width:240.125537px;}
._2e{width:260.285537px;}
._19{width:271.877537px;}
._31{width:294.718800px;}
._49{width:330.466223px;}
._4d{width:353.883605px;}
._2d{width:361.960800px;}
._2c{width:383.723537px;}
._2b{width:388.084800px;}
._36{width:406.471148px;}
._4a{width:412.673105px;}
._38{width:420.256800px;}
._25{width:432.142800px;}
._48{width:435.998105px;}
._53{width:452.634605px;}
._21{width:455.368800px;}
._56{width:464.348105px;}
._32{width:485.893148px;}
._37{width:494.743096px;}
._39{width:511.281000px;}
._4e{width:521.423105px;}
._29{width:526.558800px;}
._54{width:527.843079px;}
._58{width:542.257779px;}
._45{width:556.008605px;}
._1c{width:561.838800px;}
._3e{width:587.508605px;}
._3c{width:905.505932px;}
._66{width:2255.070077px;}
._d{width:2285.831429px;}
.fc3{color:rgb(205,23,25);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(217,228,235);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.400000px;}
.fsd{font-size:31.500000px;}
.fs5{font-size:35.699999px;}
.fsa{font-size:37.500000px;}
.fs4{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs0{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:2.550745px;}
.y2f{bottom:27.634050px;}
.y30{bottom:27.643049px;}
.y13f{bottom:62.918249px;}
.yb4{bottom:63.006002px;}
.y74{bottom:64.980148px;}
.yb3{bottom:65.556747px;}
.y1f0{bottom:65.847902px;}
.y164{bottom:67.598099px;}
.y2d{bottom:68.031452px;}
.yf0{bottom:69.236698px;}
.y197{bottom:75.038400px;}
.yd6{bottom:77.558252px;}
.y13e{bottom:77.918249px;}
.y1ef{bottom:78.447899px;}
.y7d{bottom:78.524998px;}
.y73{bottom:79.980148px;}
.y163{bottom:82.598099px;}
.y2c{bottom:83.031452px;}
.yef{bottom:84.236698px;}
.y196{bottom:90.038400px;}
.y1ee{bottom:91.047900px;}
.yd5{bottom:92.558252px;}
.y13d{bottom:92.918249px;}
.y7c{bottom:93.524998px;}
.y72{bottom:94.980148px;}
.yad{bottom:95.024998px;}
.y162{bottom:97.598099px;}
.y2b{bottom:98.031452px;}
.yee{bottom:99.236698px;}
.y1ed{bottom:103.647903px;}
.y195{bottom:105.038395px;}
.y22e{bottom:105.110400px;}
.yd4{bottom:107.558247px;}
.y13c{bottom:107.918255px;}
.y7b{bottom:108.524998px;}
.yac{bottom:111.524998px;}
.y161{bottom:112.598099px;}
.y2a{bottom:113.031452px;}
.yed{bottom:114.236698px;}
.y1ec{bottom:116.247894px;}
.y194{bottom:120.038395px;}
.y22d{bottom:120.110400px;}
.yd3{bottom:122.558247px;}
.y13b{bottom:122.918255px;}
.y7a{bottom:123.524998px;}
.y71{bottom:124.980148px;}
.y160{bottom:127.598099px;}
.yab{bottom:128.024998px;}
.y1eb{bottom:128.847897px;}
.yec{bottom:129.236698px;}
.y29{bottom:132.430195px;}
.y193{bottom:135.038395px;}
.yd2{bottom:137.558247px;}
.y13a{bottom:137.918255px;}
.y79{bottom:138.524998px;}
.y70{bottom:139.980148px;}
.y1ea{bottom:141.447899px;}
.y15f{bottom:142.598099px;}
.y22c{bottom:142.678950px;}
.y28{bottom:143.031452px;}
.yeb{bottom:144.236698px;}
.yaa{bottom:144.524998px;}
.y192{bottom:150.038395px;}
.yd1{bottom:152.558247px;}
.y139{bottom:152.918255px;}
.y78{bottom:153.524998px;}
.y1e9{bottom:154.047900px;}
.y6f{bottom:154.980148px;}
.y15e{bottom:157.598099px;}
.yea{bottom:159.236698px;}
.ya9{bottom:161.024998px;}
.y27{bottom:162.430195px;}
.y191{bottom:165.038395px;}
.y22b{bottom:165.247353px;}
.y1e8{bottom:166.647903px;}
.yd0{bottom:167.558247px;}
.y138{bottom:167.918255px;}
.y77{bottom:168.524998px;}
.y6e{bottom:169.980148px;}
.y15d{bottom:172.598099px;}
.ye9{bottom:174.236698px;}
.ya8{bottom:177.524998px;}
.y1e7{bottom:179.247894px;}
.y190{bottom:180.038395px;}
.ycf{bottom:182.558247px;}
.y137{bottom:182.918255px;}
.y76{bottom:183.524998px;}
.y6d{bottom:184.980148px;}
.y15c{bottom:187.598099px;}
.y22a{bottom:187.815903px;}
.ye8{bottom:189.236698px;}
.y1e6{bottom:191.847897px;}
.ya7{bottom:194.025009px;}
.y18f{bottom:195.038406px;}
.y136{bottom:197.918243px;}
.y6c{bottom:199.980148px;}
.y26{bottom:202.329140px;}
.y15b{bottom:202.598099px;}
.y229{bottom:202.815903px;}
.ye7{bottom:204.236710px;}
.y1e5{bottom:204.447899px;}
.ya6{bottom:210.525009px;}
.y135{bottom:212.918243px;}
.y6b{bottom:214.980148px;}
.yce{bottom:215.558258px;}
.y1e4{bottom:217.047890px;}
.y25{bottom:217.329140px;}
.y15a{bottom:217.598099px;}
.y228{bottom:217.815903px;}
.ye6{bottom:219.236710px;}
.ya5{bottom:227.025009px;}
.y134{bottom:227.918243px;}
.y18e{bottom:228.038406px;}
.y1e3{bottom:229.647903px;}
.y6a{bottom:229.980148px;}
.ycd{bottom:230.558258px;}
.y24{bottom:232.329140px;}
.y159{bottom:232.598099px;}
.ye5{bottom:234.236710px;}
.y1e2{bottom:242.247894px;}
.y133{bottom:242.918243px;}
.y18d{bottom:243.038406px;}
.ya4{bottom:243.525009px;}
.y69{bottom:244.980148px;}
.ycc{bottom:245.558258px;}
.y23{bottom:247.329140px;}
.y158{bottom:247.598099px;}
.ye4{bottom:249.236710px;}
.y227{bottom:250.815903px;}
.yaf{bottom:253.896149px;}
.y1e1{bottom:254.847908px;}
.y132{bottom:257.918243px;}
.y18c{bottom:258.038406px;}
.y68{bottom:259.980148px;}
.ya3{bottom:260.025009px;}
.ycb{bottom:260.558258px;}
.y22{bottom:262.329140px;}
.y157{bottom:262.598099px;}
.ye3{bottom:264.236710px;}
.y226{bottom:265.815903px;}
.y1e0{bottom:267.447899px;}
.y131{bottom:272.918243px;}
.y18b{bottom:273.038406px;}
.y67{bottom:274.980148px;}
.yca{bottom:275.558258px;}
.ya2{bottom:276.525009px;}
.y21{bottom:277.329140px;}
.y156{bottom:277.598099px;}
.ye2{bottom:279.236710px;}
.y1df{bottom:280.047890px;}
.y225{bottom:280.815903px;}
.y130{bottom:287.918243px;}
.y18a{bottom:288.038406px;}
.y66{bottom:289.980148px;}
.yc9{bottom:290.558258px;}
.y20{bottom:292.329140px;}
.y155{bottom:292.598099px;}
.y1de{bottom:292.647903px;}
.ya1{bottom:293.025009px;}
.ye1{bottom:294.236710px;}
.y224{bottom:295.815903px;}
.y12f{bottom:302.918243px;}
.y189{bottom:303.038406px;}
.y65{bottom:304.980148px;}
.y1dd{bottom:305.247894px;}
.yc8{bottom:305.558258px;}
.y1f{bottom:307.329140px;}
.y154{bottom:307.598099px;}
.y1dc{bottom:317.847908px;}
.y12e{bottom:317.918243px;}
.y188{bottom:318.038406px;}
.y64{bottom:319.980148px;}
.yc7{bottom:320.558258px;}
.y1e{bottom:322.329140px;}
.y153{bottom:322.598099px;}
.ya0{bottom:324.926994px;}
.y223{bottom:328.815903px;}
.y1db{bottom:330.447899px;}
.y12d{bottom:332.918243px;}
.y187{bottom:333.038406px;}
.y63{bottom:334.980148px;}
.yc6{bottom:335.558258px;}
.y1d{bottom:337.329140px;}
.y152{bottom:337.598099px;}
.yb0{bottom:339.271202px;}
.y9f{bottom:342.509995px;}
.y1da{bottom:343.047890px;}
.y222{bottom:343.815903px;}
.y12c{bottom:347.918243px;}
.y186{bottom:348.038406px;}
.y62{bottom:349.980148px;}
.yc5{bottom:350.558258px;}
.y11d{bottom:352.097855px;}
.y1c{bottom:352.329140px;}
.y151{bottom:352.598099px;}
.y1d9{bottom:355.647903px;}
.y9e{bottom:360.262939px;}
.y12b{bottom:362.918243px;}
.y185{bottom:363.038406px;}
.y61{bottom:364.980148px;}
.yc4{bottom:365.558258px;}
.y1b{bottom:367.329140px;}
.y150{bottom:367.598099px;}
.y1d8{bottom:368.247894px;}
.y11c{bottom:368.597855px;}
.y221{bottom:376.815903px;}
.y12a{bottom:377.918243px;}
.y9d{bottom:378.016045px;}
.y184{bottom:378.038406px;}
.y60{bottom:379.980148px;}
.y1d7{bottom:380.847908px;}
.y1a{bottom:382.329140px;}
.y14f{bottom:382.598099px;}
.y11b{bottom:385.097855px;}
.y129{bottom:392.918243px;}
.y183{bottom:393.038406px;}
.y1d6{bottom:393.447922px;}
.yc3{bottom:395.558258px;}
.y9c{bottom:395.769150px;}
.y19{bottom:397.329163px;}
.y14e{bottom:397.598099px;}
.y11a{bottom:401.597855px;}
.y1d5{bottom:406.047913px;}
.y128{bottom:407.918243px;}
.y182{bottom:408.038406px;}
.y220{bottom:409.815903px;}
.yc2{bottom:410.558258px;}
.y14d{bottom:412.598099px;}
.y5f{bottom:412.980148px;}
.y9b{bottom:413.522232px;}
.y119{bottom:418.097855px;}
.y1d4{bottom:418.647903px;}
.y127{bottom:422.918243px;}
.y181{bottom:423.038406px;}
.y21f{bottom:424.815903px;}
.yc1{bottom:425.558258px;}
.y14c{bottom:427.598099px;}
.y5e{bottom:427.980148px;}
.y18{bottom:430.329163px;}
.y1d3{bottom:431.247894px;}
.y9a{bottom:431.275360px;}
.y118{bottom:434.597855px;}
.y126{bottom:437.918243px;}
.y180{bottom:438.038406px;}
.y21e{bottom:439.815903px;}
.yc0{bottom:440.558258px;}
.y14b{bottom:442.598099px;}
.y5d{bottom:442.980148px;}
.y1d2{bottom:443.847885px;}
.y99{bottom:449.028442px;}
.y117{bottom:451.097855px;}
.y125{bottom:452.918243px;}
.y17f{bottom:453.038406px;}
.ybf{bottom:455.558258px;}
.y1d1{bottom:456.447922px;}
.y5c{bottom:457.980148px;}
.y17{bottom:459.585022px;}
.y98{bottom:466.781570px;}
.y116{bottom:467.597855px;}
.y124{bottom:467.918243px;}
.y17e{bottom:468.038406px;}
.y1d0{bottom:469.047913px;}
.ybe{bottom:470.558258px;}
.y21d{bottom:472.815903px;}
.y5b{bottom:472.980148px;}
.y16{bottom:476.085022px;}
.y1cf{bottom:481.647903px;}
.y123{bottom:482.918243px;}
.y17d{bottom:483.038406px;}
.y115{bottom:484.097855px;}
.y97{bottom:484.534515px;}
.ybd{bottom:485.558258px;}
.y21c{bottom:487.815903px;}
.y5a{bottom:487.980148px;}
.y15{bottom:492.585022px;}
.y1ce{bottom:494.247894px;}
.y122{bottom:497.918243px;}
.y17c{bottom:498.038406px;}
.y171{bottom:500.459244px;}
.ybc{bottom:500.558258px;}
.y114{bottom:500.597855px;}
.yb1{bottom:502.012344px;}
.y96{bottom:502.287598px;}
.y21b{bottom:502.815903px;}
.y59{bottom:502.980148px;}
.y1cd{bottom:506.847885px;}
.y14{bottom:509.085022px;}
.y121{bottom:512.918243px;}
.y17b{bottom:513.038406px;}
.y170{bottom:515.459244px;}
.ybb{bottom:515.558258px;}
.y113{bottom:517.097855px;}
.y21a{bottom:517.815903px;}
.y58{bottom:517.980148px;}
.y1cc{bottom:519.447922px;}
.y95{bottom:520.040680px;}
.y13{bottom:525.585022px;}
.y120{bottom:527.918243px;}
.y17a{bottom:528.038406px;}
.y16f{bottom:530.459244px;}
.yba{bottom:530.558258px;}
.y1cb{bottom:532.047913px;}
.y219{bottom:532.815903px;}
.y57{bottom:532.980148px;}
.y112{bottom:533.597855px;}
.y7e{bottom:535.245758px;}
.y94{bottom:537.793808px;}
.y12{bottom:542.085022px;}
.y11f{bottom:542.918243px;}
.y179{bottom:543.038406px;}
.y1ca{bottom:544.647903px;}
.y16e{bottom:545.459244px;}
.yb9{bottom:545.558258px;}
.y56{bottom:547.980148px;}
.y111{bottom:550.097855px;}
.y93{bottom:555.546890px;}
.y1c9{bottom:557.247894px;}
.y11e{bottom:557.918243px;}
.y178{bottom:558.038406px;}
.y11{bottom:558.585022px;}
.y16d{bottom:560.459244px;}
.yb8{bottom:560.558258px;}
.yb2{bottom:561.136185px;}
.y55{bottom:562.980148px;}
.y218{bottom:565.815903px;}
.y110{bottom:566.597855px;}
.y1c8{bottom:569.847885px;}
.y177{bottom:573.038406px;}
.y92{bottom:573.300018px;}
.y10{bottom:575.085022px;}
.y16c{bottom:575.459244px;}
.yb7{bottom:575.558258px;}
.y54{bottom:577.980148px;}
.y217{bottom:580.815903px;}
.y1c7{bottom:582.447922px;}
.y10f{bottom:583.097855px;}
.y176{bottom:588.038406px;}
.y16b{bottom:590.459244px;}
.yb6{bottom:590.558258px;}
.y91{bottom:590.844772px;}
.yf{bottom:591.585022px;}
.yae{bottom:592.626434px;}
.y53{bottom:592.980148px;}
.y1c6{bottom:595.047913px;}
.y216{bottom:595.815903px;}
.y10e{bottom:599.597855px;}
.y175{bottom:603.038406px;}
.y16a{bottom:605.459244px;}
.y1c5{bottom:607.647903px;}
.y52{bottom:607.980148px;}
.ye{bottom:608.085022px;}
.y215{bottom:610.815903px;}
.y14a{bottom:615.779572px;}
.y174{bottom:618.038406px;}
.y1c4{bottom:620.247894px;}
.y169{bottom:620.459244px;}
.y51{bottom:622.980148px;}
.yd{bottom:624.585022px;}
.y214{bottom:625.815903px;}
.y149{bottom:630.779572px;}
.y10d{bottom:631.499863px;}
.y1c3{bottom:632.847885px;}
.y173{bottom:633.038406px;}
.y168{bottom:635.459244px;}
.y50{bottom:637.980148px;}
.y213{bottom:640.815903px;}
.yc{bottom:641.085022px;}
.y1c2{bottom:645.447922px;}
.y148{bottom:645.779572px;}
.y90{bottom:646.980148px;}
.y172{bottom:648.038406px;}
.ye0{bottom:648.419540px;}
.y10c{bottom:649.082840px;}
.y167{bottom:650.459244px;}
.y4f{bottom:652.980148px;}
.yb{bottom:657.585022px;}
.y1c1{bottom:658.047913px;}
.y147{bottom:660.779572px;}
.y8f{bottom:661.980148px;}
.ydf{bottom:663.419540px;}
.y166{bottom:665.459244px;}
.y10b{bottom:666.835968px;}
.y4e{bottom:667.980148px;}
.y1c0{bottom:670.647903px;}
.y212{bottom:673.815903px;}
.ya{bottom:674.085022px;}
.y146{bottom:675.779572px;}
.y8e{bottom:676.980148px;}
.yde{bottom:678.419540px;}
.y165{bottom:680.459244px;}
.y4d{bottom:682.980148px;}
.y1bf{bottom:683.247894px;}
.y10a{bottom:684.588913px;}
.y211{bottom:686.415894px;}
.y145{bottom:690.779572px;}
.y8d{bottom:691.980148px;}
.ydd{bottom:693.419540px;}
.y1be{bottom:695.847885px;}
.y4c{bottom:697.980148px;}
.y210{bottom:699.015884px;}
.y109{bottom:702.341995px;}
.y9{bottom:703.978821px;}
.y144{bottom:705.779572px;}
.y1a3{bottom:705.899689px;}
.ydc{bottom:708.419540px;}
.y1bd{bottom:708.447922px;}
.y20f{bottom:711.615921px;}
.y4b{bottom:712.980148px;}
.y108{bottom:720.095078px;}
.y143{bottom:720.779572px;}
.y1a2{bottom:720.899689px;}
.y1bc{bottom:721.047913px;}
.y8{bottom:721.978821px;}
.ydb{bottom:723.419540px;}
.y20e{bottom:724.215912px;}
.y8c{bottom:724.980148px;}
.y4a{bottom:727.980148px;}
.y1bb{bottom:733.647903px;}
.y142{bottom:735.779572px;}
.y1a1{bottom:735.899689px;}
.y20d{bottom:736.815903px;}
.y107{bottom:737.848206px;}
.yda{bottom:738.419540px;}
.y7{bottom:739.978821px;}
.y8b{bottom:739.980148px;}
.y49{bottom:742.980148px;}
.y1ba{bottom:746.247894px;}
.y20c{bottom:749.415894px;}
.y141{bottom:750.779572px;}
.y1a0{bottom:750.899689px;}
.yd9{bottom:753.419540px;}
.y8a{bottom:754.980148px;}
.y106{bottom:755.601288px;}
.y6{bottom:757.978821px;}
.y48{bottom:757.980148px;}
.y1b9{bottom:758.847885px;}
.y20b{bottom:762.015884px;}
.y140{bottom:765.779572px;}
.y19f{bottom:765.899689px;}
.yd8{bottom:768.419586px;}
.y89{bottom:769.980194px;}
.y1b8{bottom:771.447876px;}
.y47{bottom:772.980194px;}
.y105{bottom:773.354370px;}
.y20a{bottom:774.615875px;}
.y5{bottom:775.978821px;}
.y19e{bottom:780.899689px;}
.yd7{bottom:783.419586px;}
.y1b7{bottom:784.047913px;}
.y88{bottom:784.980194px;}
.y209{bottom:787.215912px;}
.y46{bottom:787.980194px;}
.y104{bottom:791.107544px;}
.y19d{bottom:795.899689px;}
.y1b6{bottom:796.647858px;}
.y208{bottom:799.815857px;}
.y87{bottom:799.980194px;}
.y45{bottom:802.980194px;}
.y103{bottom:808.860626px;}
.y4{bottom:808.945679px;}
.y1b5{bottom:809.247894px;}
.y19c{bottom:810.899689px;}
.y207{bottom:812.415894px;}
.y86{bottom:814.980194px;}
.y44{bottom:817.980194px;}
.y1b4{bottom:821.847931px;}
.y206{bottom:825.015930px;}
.y19b{bottom:825.899689px;}
.y102{bottom:826.613525px;}
.y85{bottom:829.980194px;}
.y43{bottom:832.980194px;}
.y1b3{bottom:834.447876px;}
.y205{bottom:837.615875px;}
.y19a{bottom:840.899689px;}
.y101{bottom:844.366608px;}
.y84{bottom:844.980194px;}
.y1b2{bottom:847.047913px;}
.y42{bottom:847.980194px;}
.y204{bottom:850.215912px;}
.y3{bottom:853.945679px;}
.y199{bottom:855.899689px;}
.y1b1{bottom:859.647858px;}
.y83{bottom:859.980194px;}
.y100{bottom:862.119781px;}
.y203{bottom:862.815857px;}
.y41{bottom:862.980194px;}
.y198{bottom:870.899689px;}
.y1b0{bottom:872.247894px;}
.y82{bottom:874.980194px;}
.y202{bottom:875.415894px;}
.y40{bottom:877.980194px;}
.yff{bottom:879.872681px;}
.y1af{bottom:884.847931px;}
.y201{bottom:888.015930px;}
.y81{bottom:889.980194px;}
.y3f{bottom:892.980194px;}
.y1ae{bottom:897.447876px;}
.yfe{bottom:897.625946px;}
.y2{bottom:898.945679px;}
.y200{bottom:900.615875px;}
.y80{bottom:904.980194px;}
.y3e{bottom:907.980194px;}
.y1ad{bottom:910.047913px;}
.y1ff{bottom:913.215912px;}
.yfd{bottom:915.378937px;}
.y7f{bottom:919.980194px;}
.y22f{bottom:921.780121px;}
.y1ac{bottom:922.647858px;}
.y3d{bottom:922.980194px;}
.yfc{bottom:924.255432px;}
.y1fe{bottom:925.815857px;}
.y1ab{bottom:935.247894px;}
.y3c{bottom:937.980194px;}
.y1fd{bottom:938.415894px;}
.y1{bottom:943.945679px;}
.y1aa{bottom:947.847931px;}
.yfb{bottom:950.885100px;}
.y1fc{bottom:951.015930px;}
.y2e{bottom:952.050934px;}
.y3b{bottom:952.980194px;}
.y1a9{bottom:960.447876px;}
.yf8{bottom:963.013184px;}
.y1fb{bottom:963.615875px;}
.y3a{bottom:967.980194px;}
.yfa{bottom:968.638184px;}
.y1a8{bottom:973.047913px;}
.yf7{bottom:974.263184px;}
.y1fa{bottom:976.215912px;}
.y39{bottom:982.980194px;}
.yf9{bottom:986.391266px;}
.y1f9{bottom:988.815857px;}
.y38{bottom:997.980194px;}
.y1f8{bottom:1001.415894px;}
.yf6{bottom:1004.144440px;}
.y37{bottom:1012.980194px;}
.y1f7{bottom:1014.015930px;}
.yf5{bottom:1021.897522px;}
.y1a7{bottom:1024.024384px;}
.y1f6{bottom:1026.615875px;}
.y36{bottom:1027.980194px;}
.y1f5{bottom:1039.215912px;}
.yf4{bottom:1039.650421px;}
.y35{bottom:1042.980194px;}
.y1f4{bottom:1051.815857px;}
.y1a6{bottom:1055.524384px;}
.yf3{bottom:1057.403595px;}
.y34{bottom:1057.980194px;}
.y1f3{bottom:1064.415894px;}
.yf2{bottom:1068.653595px;}
.y1a5{bottom:1070.524384px;}
.y33{bottom:1072.980194px;}
.y1f2{bottom:1077.015930px;}
.y1a4{bottom:1085.524384px;}
.yf1{bottom:1086.198303px;}
.y32{bottom:1087.980194px;}
.y1f1{bottom:1089.615875px;}
.y31{bottom:1140.708343px;}
.y75{bottom:1140.800079px;}
.h9{height:25.676806px;}
.hb{height:30.939697px;}
.h10{height:34.523438px;}
.h24{height:35.411133px;}
.hd{height:36.681152px;}
.h1d{height:37.087500px;}
.h1a{height:38.400000px;}
.h1c{height:38.700000px;}
.h5{height:38.838867px;}
.h19{height:41.538000px;}
.h21{height:42.084000px;}
.h18{height:43.008000px;}
.h11{height:43.154297px;}
.ha{height:43.271777px;}
.h26{height:44.505000px;}
.h27{height:45.090000px;}
.hf{height:45.679688px;}
.h25{height:46.080000px;}
.h28{height:46.678280px;}
.h29{height:47.469727px;}
.hc{height:48.534668px;}
.h4{height:51.416016px;}
.h6{height:53.406000px;}
.h17{height:54.108000px;}
.h16{height:55.296000px;}
.h23{height:55.728000px;}
.h12{height:56.013350px;}
.h15{height:56.014083px;}
.h7{height:56.014174px;}
.h14{height:56.014197px;}
.h1f{height:56.014220px;}
.h8{height:56.014266px;}
.h3{height:57.128906px;}
.h13{height:62.841797px;}
.h20{height:64.584000px;}
.h22{height:77.044348px;}
.h1b{height:87.900000px;}
.he{height:102.832031px;}
.h2{height:148.535156px;}
.h1e{height:1035.000000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:87.805498px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:34.735931px;}
.x4{left:61.653448px;}
.x20{left:108.378445px;}
.x3{left:140.352448px;}
.x7{left:193.338593px;}
.x1{left:233.858253px;}
.x9{left:238.570793px;}
.x2{left:251.858253px;}
.x22{left:252.992249px;}
.x5{left:338.775604px;}
.x21{left:352.340996px;}
.x8{left:426.656982px;}
.x1f{left:494.184448px;}
.xb{left:504.962723px;}
.xc{left:517.337723px;}
.xd{left:534.064636px;}
.xe{left:550.999969px;}
.xf{left:567.935120px;}
.x6{left:585.853363px;}
.x10{left:601.805420px;}
.x11{left:618.740707px;}
.x12{left:635.675858px;}
.x13{left:652.611008px;}
.x14{left:669.546295px;}
.x15{left:686.481583px;}
.x16{left:703.416733px;}
.x17{left:720.351883px;}
.x18{left:737.117111px;}
.x1a{left:743.453979px;}
.x19{left:765.814957px;}
.xa{left:779.603577px;}
.x1c{left:790.564911px;}
.x1d{left:802.939911px;}
.x1e{left:815.314911px;}
@media print{
.va{vertical-align:-44.440755pt;}
.v9{vertical-align:-31.561198pt;}
.vb{vertical-align:-16.559977pt;}
.v3{vertical-align:-15.639974pt;}
.v7{vertical-align:-12.879557pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:13.799805pt;}
.v4{vertical-align:15.639974pt;}
.v2{vertical-align:16.559977pt;}
.v1{vertical-align:18.400065pt;}
.v6{vertical-align:20.000000pt;}
.v8{vertical-align:31.561198pt;}
.v5{vertical-align:44.000000pt;}
.ls16{letter-spacing:-6.672000pt;}
.ls12{letter-spacing:-4.592000pt;}
.ls15{letter-spacing:-4.320000pt;}
.ls20{letter-spacing:-3.333333pt;}
.ls37{letter-spacing:-2.480000pt;}
.ls28{letter-spacing:-1.754667pt;}
.ls21{letter-spacing:-1.392000pt;}
.ls2a{letter-spacing:-1.056000pt;}
.ls29{letter-spacing:-0.970667pt;}
.ls38{letter-spacing:-0.912000pt;}
.ls33{letter-spacing:-0.880000pt;}
.ls30{letter-spacing:-0.760000pt;}
.ls1b{letter-spacing:-0.666667pt;}
.ls32{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.624000pt;}
.ls35{letter-spacing:-0.520000pt;}
.ls1d{letter-spacing:-0.500000pt;}
.ls27{letter-spacing:-0.485333pt;}
.ls1e{letter-spacing:-0.466667pt;}
.ls26{letter-spacing:-0.448000pt;}
.ls2e{letter-spacing:-0.440000pt;}
.lsf{letter-spacing:-0.432000pt;}
.ls31{letter-spacing:-0.400000pt;}
.ls39{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.373333pt;}
.ls1c{letter-spacing:-0.333333pt;}
.ls34{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.280000pt;}
.ls11{letter-spacing:-0.186667pt;}
.ls1f{letter-spacing:-0.166667pt;}
.ls2d{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.149333pt;}
.lsc{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000005pt;}
.ls6{letter-spacing:0.000007pt;}
.ls7{letter-spacing:0.000011pt;}
.ls22{letter-spacing:0.000016pt;}
.lse{letter-spacing:0.000039pt;}
.ls2c{letter-spacing:0.000078pt;}
.ls5{letter-spacing:0.000092pt;}
.ls36{letter-spacing:0.000281pt;}
.ls8{letter-spacing:0.010159pt;}
.ls4{letter-spacing:0.010182pt;}
.ls1{letter-spacing:0.012267pt;}
.ls2{letter-spacing:0.012671pt;}
.ls0{letter-spacing:0.012833pt;}
.ls3{letter-spacing:0.012835pt;}
.ls14{letter-spacing:0.186667pt;}
.ls25{letter-spacing:0.240000pt;}
.ls2b{letter-spacing:0.415117pt;}
.ls24{letter-spacing:0.670818pt;}
.ls9{letter-spacing:2.666667pt;}
.ls23{letter-spacing:120.529537pt;}
.ls19{letter-spacing:166.472852pt;}
.ls1a{letter-spacing:166.473828pt;}
.ls17{letter-spacing:200.851758pt;}
.ls18{letter-spacing:207.736035pt;}
.ws5{word-spacing:-13.333333pt;}
.ws61{word-spacing:-12.085333pt;}
.wsa0{word-spacing:-11.136000pt;}
.ws2{word-spacing:-10.992000pt;}
.ws1b{word-spacing:-10.896000pt;}
.ws10b{word-spacing:-10.416000pt;}
.ws1{word-spacing:-10.368000pt;}
.ws11e{word-spacing:-9.984000pt;}
.ws8d{word-spacing:-9.600000pt;}
.wsb8{word-spacing:-9.456000pt;}
.wse3{word-spacing:-9.160000pt;}
.wse5{word-spacing:-9.080000pt;}
.wse8{word-spacing:-9.000000pt;}
.wse7{word-spacing:-8.880000pt;}
.wse2{word-spacing:-8.680000pt;}
.wsa9{word-spacing:-8.549333pt;}
.wse6{word-spacing:-8.520000pt;}
.wse4{word-spacing:-8.320000pt;}
.ws0{word-spacing:-7.690667pt;}
.ws3{word-spacing:-7.627200pt;}
.ws7c{word-spacing:-7.300000pt;}
.ws7a{word-spacing:-6.900000pt;}
.wsa4{word-spacing:-6.720000pt;}
.ws4{word-spacing:-6.346666pt;}
.wsaa{word-spacing:-5.984533pt;}
.wsa8{word-spacing:-5.932267pt;}
.ws6a{word-spacing:-4.896000pt;}
.wsde{word-spacing:-4.368000pt;}
.ws63{word-spacing:-3.882667pt;}
.wsb7{word-spacing:-3.808000pt;}
.ws106{word-spacing:-3.800000pt;}
.ws105{word-spacing:-3.760000pt;}
.ws8{word-spacing:-3.626667pt;}
.ws26{word-spacing:-3.552000pt;}
.ws89{word-spacing:-3.400000pt;}
.ws73{word-spacing:-3.360000pt;}
.ws10{word-spacing:-3.264000pt;}
.ws5f{word-spacing:-2.448000pt;}
.wsae{word-spacing:-2.352000pt;}
.ws7{word-spacing:-2.346667pt;}
.ws9a{word-spacing:-2.208000pt;}
.wsfe{word-spacing:-2.200000pt;}
.wsc9{word-spacing:-2.160000pt;}
.wsb{word-spacing:-2.080000pt;}
.wsdb{word-spacing:-2.016000pt;}
.ws98{word-spacing:-1.968000pt;}
.ws39{word-spacing:-1.872000pt;}
.wsd2{word-spacing:-1.824000pt;}
.wsb9{word-spacing:-1.776000pt;}
.ws108{word-spacing:-1.760000pt;}
.wsbd{word-spacing:-1.680000pt;}
.ws109{word-spacing:-1.640000pt;}
.wsd4{word-spacing:-1.632000pt;}
.wsfc{word-spacing:-1.600000pt;}
.wsbc{word-spacing:-1.584000pt;}
.ws10d{word-spacing:-1.560000pt;}
.ws91{word-spacing:-1.536000pt;}
.ws71{word-spacing:-1.488000pt;}
.wsff{word-spacing:-1.440000pt;}
.ws65{word-spacing:-1.392000pt;}
.wsc6{word-spacing:-1.344000pt;}
.ws111{word-spacing:-1.320000pt;}
.ws9{word-spacing:-1.280000pt;}
.ws54{word-spacing:-1.200000pt;}
.ws27{word-spacing:-1.152000pt;}
.wsba{word-spacing:-1.104000pt;}
.ws110{word-spacing:-1.080000pt;}
.ws50{word-spacing:-1.056000pt;}
.wsfb{word-spacing:-1.040000pt;}
.wsa{word-spacing:-1.013333pt;}
.ws68{word-spacing:-1.008000pt;}
.ws67{word-spacing:-0.912000pt;}
.ws41{word-spacing:-0.864000pt;}
.ws100{word-spacing:-0.840000pt;}
.ws12{word-spacing:-0.816000pt;}
.ws1c{word-spacing:-0.768000pt;}
.ws59{word-spacing:-0.720000pt;}
.ws6f{word-spacing:-0.672000pt;}
.ws37{word-spacing:-0.624000pt;}
.ws5c{word-spacing:-0.576000pt;}
.ws93{word-spacing:-0.528000pt;}
.wscd{word-spacing:-0.480000pt;}
.ws9c{word-spacing:-0.432000pt;}
.ws117{word-spacing:-0.400000pt;}
.wscc{word-spacing:-0.384000pt;}
.ws94{word-spacing:-0.336000pt;}
.ws55{word-spacing:-0.288000pt;}
.wsed{word-spacing:-0.280000pt;}
.ws49{word-spacing:-0.192000pt;}
.ws76{word-spacing:-0.186667pt;}
.ws8b{word-spacing:-0.166667pt;}
.ws107{word-spacing:-0.160000pt;}
.wsf4{word-spacing:-0.120000pt;}
.ws20{word-spacing:-0.096000pt;}
.wsb0{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.wsf9{word-spacing:0.040000pt;}
.ws48{word-spacing:0.048000pt;}
.ws1a{word-spacing:0.096000pt;}
.ws8a{word-spacing:0.133333pt;}
.ws34{word-spacing:0.144000pt;}
.ws75{word-spacing:0.149333pt;}
.ws87{word-spacing:0.166667pt;}
.ws74{word-spacing:0.186667pt;}
.wse{word-spacing:0.192000pt;}
.ws1d{word-spacing:0.240000pt;}
.wsef{word-spacing:0.280000pt;}
.ws40{word-spacing:0.288000pt;}
.wsfa{word-spacing:0.320000pt;}
.ws88{word-spacing:0.333333pt;}
.wsec{word-spacing:0.360000pt;}
.wsc5{word-spacing:0.384000pt;}
.wseb{word-spacing:0.400000pt;}
.ws47{word-spacing:0.432000pt;}
.ws10c{word-spacing:0.440000pt;}
.ws11d{word-spacing:0.480000pt;}
.wsf3{word-spacing:0.520000pt;}
.ws6b{word-spacing:0.576000pt;}
.wsf0{word-spacing:0.600000pt;}
.ws10e{word-spacing:0.640000pt;}
.ws86{word-spacing:0.666667pt;}
.ws16{word-spacing:0.672000pt;}
.wsfd{word-spacing:0.680000pt;}
.ws2e{word-spacing:0.720000pt;}
.ws112{word-spacing:0.760000pt;}
.wsf8{word-spacing:0.800000pt;}
.wsf7{word-spacing:0.880000pt;}
.ws51{word-spacing:0.960000pt;}
.wsb6{word-spacing:0.970667pt;}
.ws4c{word-spacing:1.056000pt;}
.wse9{word-spacing:1.080000pt;}
.ws6d{word-spacing:1.200000pt;}
.ws19{word-spacing:1.224000pt;}
.wsea{word-spacing:1.240000pt;}
.ws58{word-spacing:1.248000pt;}
.ws104{word-spacing:1.280000pt;}
.ws3c{word-spacing:1.296000pt;}
.ws35{word-spacing:1.344000pt;}
.wsdc{word-spacing:1.392000pt;}
.ws10a{word-spacing:1.400000pt;}
.wsda{word-spacing:1.440000pt;}
.wscf{word-spacing:1.488000pt;}
.ws29{word-spacing:1.584000pt;}
.wsb3{word-spacing:1.632000pt;}
.wsdd{word-spacing:1.680000pt;}
.wsee{word-spacing:1.720000pt;}
.wsce{word-spacing:1.728000pt;}
.ws119{word-spacing:1.800000pt;}
.wse1{word-spacing:1.824000pt;}
.ws11{word-spacing:1.872000pt;}
.wsf5{word-spacing:1.880000pt;}
.wsc{word-spacing:1.920000pt;}
.ws13{word-spacing:1.968000pt;}
.wsb1{word-spacing:2.016000pt;}
.ws5b{word-spacing:2.064000pt;}
.ws9f{word-spacing:2.112000pt;}
.ws60{word-spacing:2.160000pt;}
.ws45{word-spacing:2.208000pt;}
.wsd8{word-spacing:2.256000pt;}
.wsd6{word-spacing:2.400000pt;}
.wsf6{word-spacing:2.440000pt;}
.ws4e{word-spacing:2.448000pt;}
.ws114{word-spacing:2.480000pt;}
.ws4a{word-spacing:2.496000pt;}
.ws97{word-spacing:2.544000pt;}
.ws6e{word-spacing:2.592000pt;}
.ws95{word-spacing:2.640000pt;}
.ws36{word-spacing:2.688000pt;}
.ws22{word-spacing:2.784000pt;}
.ws1f{word-spacing:2.832000pt;}
.ws52{word-spacing:2.880000pt;}
.ws8c{word-spacing:3.000000pt;}
.ws66{word-spacing:3.024000pt;}
.ws11c{word-spacing:3.072000pt;}
.ws8e{word-spacing:3.120000pt;}
.ws2a{word-spacing:3.168000pt;}
.wsc0{word-spacing:3.264000pt;}
.ws6c{word-spacing:3.312000pt;}
.wsf1{word-spacing:3.320000pt;}
.ws17{word-spacing:3.360000pt;}
.ws72{word-spacing:3.408000pt;}
.ws32{word-spacing:3.456000pt;}
.ws10f{word-spacing:3.480000pt;}
.ws14{word-spacing:3.504000pt;}
.ws101{word-spacing:3.520000pt;}
.ws5e{word-spacing:3.600000pt;}
.ws70{word-spacing:3.648000pt;}
.ws15{word-spacing:3.696000pt;}
.wsf2{word-spacing:3.720000pt;}
.wscb{word-spacing:3.744000pt;}
.ws103{word-spacing:3.760000pt;}
.wsd5{word-spacing:3.792000pt;}
.ws3e{word-spacing:3.840000pt;}
.ws42{word-spacing:3.984000pt;}
.ws102{word-spacing:4.000000pt;}
.ws2f{word-spacing:4.032000pt;}
.wsc8{word-spacing:4.080000pt;}
.ws118{word-spacing:4.120000pt;}
.ws2d{word-spacing:4.128000pt;}
.ws3d{word-spacing:4.224000pt;}
.ws3f{word-spacing:4.320000pt;}
.ws113{word-spacing:4.400000pt;}
.ws44{word-spacing:4.416000pt;}
.ws21{word-spacing:4.512000pt;}
.wsf{word-spacing:4.560000pt;}
.wsc4{word-spacing:4.608000pt;}
.wsdf{word-spacing:4.656000pt;}
.wsc3{word-spacing:4.704000pt;}
.ws31{word-spacing:4.752000pt;}
.ws11a{word-spacing:4.944000pt;}
.wsc1{word-spacing:4.992000pt;}
.wse0{word-spacing:5.040000pt;}
.ws18{word-spacing:5.088000pt;}
.wsb5{word-spacing:5.136000pt;}
.ws5d{word-spacing:5.184000pt;}
.wsc7{word-spacing:5.280000pt;}
.ws99{word-spacing:5.328000pt;}
.ws115{word-spacing:5.400000pt;}
.ws116{word-spacing:5.480000pt;}
.ws23{word-spacing:5.520000pt;}
.ws53{word-spacing:5.568000pt;}
.ws28{word-spacing:5.664000pt;}
.ws9b{word-spacing:5.712000pt;}
.ws11b{word-spacing:5.856000pt;}
.wsb4{word-spacing:5.904000pt;}
.ws4f{word-spacing:5.952000pt;}
.ws43{word-spacing:6.000000pt;}
.wsc2{word-spacing:6.048000pt;}
.ws92{word-spacing:6.096000pt;}
.wsbe{word-spacing:6.192000pt;}
.ws2c{word-spacing:6.240000pt;}
.ws33{word-spacing:6.288000pt;}
.ws3b{word-spacing:6.384000pt;}
.ws46{word-spacing:6.480000pt;}
.ws77{word-spacing:6.672000pt;}
.ws24{word-spacing:6.768000pt;}
.ws30{word-spacing:6.864000pt;}
.ws90{word-spacing:6.960000pt;}
.wsd7{word-spacing:7.008000pt;}
.ws8f{word-spacing:7.104000pt;}
.wsd9{word-spacing:7.248000pt;}
.ws3a{word-spacing:7.296000pt;}
.ws9e{word-spacing:7.344000pt;}
.ws38{word-spacing:7.440000pt;}
.ws56{word-spacing:7.776000pt;}
.ws69{word-spacing:7.920000pt;}
.ws9d{word-spacing:8.208000pt;}
.wsb2{word-spacing:8.448000pt;}
.ws2b{word-spacing:8.688000pt;}
.ws57{word-spacing:8.832000pt;}
.wsaf{word-spacing:8.928000pt;}
.wsd{word-spacing:9.312000pt;}
.wsd0{word-spacing:9.408000pt;}
.ws1e{word-spacing:9.456000pt;}
.wsca{word-spacing:9.552000pt;}
.ws5a{word-spacing:9.888000pt;}
.ws4b{word-spacing:9.936000pt;}
.ws64{word-spacing:10.032000pt;}
.wsbf{word-spacing:10.272000pt;}
.ws4d{word-spacing:10.416000pt;}
.wsd3{word-spacing:10.896000pt;}
.ws96{word-spacing:11.664000pt;}
.wsbb{word-spacing:12.480000pt;}
.wsd1{word-spacing:12.768000pt;}
.ws25{word-spacing:13.728000pt;}
.wsac{word-spacing:29.324870pt;}
.wsa7{word-spacing:29.324935pt;}
.wsad{word-spacing:33.058268pt;}
.wsa6{word-spacing:47.244870pt;}
.wsa2{word-spacing:70.802205pt;}
.ws7e{word-spacing:79.190592pt;}
.ws80{word-spacing:101.172852pt;}
.ws84{word-spacing:101.173665pt;}
.ws82{word-spacing:101.173828pt;}
.ws7d{word-spacing:112.772852pt;}
.wsa3{word-spacing:116.236206pt;}
.ws85{word-spacing:116.839518pt;}
.ws81{word-spacing:136.923926pt;}
.ws62{word-spacing:136.993181pt;}
.ws7f{word-spacing:158.906185pt;}
.wsa1{word-spacing:162.900843pt;}
.ws83{word-spacing:200.169368pt;}
.wsa5{word-spacing:253.429334pt;}
.ws78{word-spacing:257.522412pt;}
.ws79{word-spacing:259.581657pt;}
.wsab{word-spacing:266.198443pt;}
.ws7b{word-spacing:272.824902pt;}
._7{margin-left:-14.144000pt;}
._69{margin-left:-13.080000pt;}
._12{margin-left:-12.128000pt;}
._f{margin-left:-11.189372pt;}
._13{margin-left:-10.226651pt;}
._11{margin-left:-9.152602pt;}
._10{margin-left:-7.695949pt;}
._5a{margin-left:-6.799443pt;}
._e{margin-left:-5.893344pt;}
._0{margin-left:-4.784000pt;}
._8{margin-left:-3.891733pt;}
._3{margin-left:-2.492754pt;}
._1{margin-left:-1.045333pt;}
._5{width:1.069356pt;}
._2{width:2.218631pt;}
._4{width:3.514667pt;}
._a{width:4.651200pt;}
._9{width:6.381600pt;}
._68{width:7.448000pt;}
._59{width:8.984619pt;}
._14{width:10.556765pt;}
._c{width:11.750793pt;}
._b{width:13.102980pt;}
._6{width:15.316248pt;}
._67{width:20.520000pt;}
._50{width:27.401892pt;}
._42{width:34.068559pt;}
._16{width:37.233616pt;}
._15{width:38.279846pt;}
._1d{width:39.590352pt;}
._60{width:41.158607pt;}
._3b{width:44.851432pt;}
._57{width:46.401892pt;}
._3a{width:50.632182pt;}
._35{width:53.777181pt;}
._5b{width:56.135839pt;}
._22{width:57.510352pt;}
._17{width:60.509325pt;}
._5e{width:64.119361pt;}
._64{width:68.070443pt;}
._3f{width:74.236035pt;}
._33{width:75.430352pt;}
._27{width:78.710949pt;}
._1f{width:80.502949pt;}
._5d{width:82.039361pt;}
._18{width:85.734352pt;}
._47{width:87.236411pt;}
._5f{width:97.068185pt;}
._24{width:98.422949pt;}
._28{width:103.648449pt;}
._30{width:105.440449pt;}
._63{width:109.322098pt;}
._2f{width:116.342949pt;}
._5c{width:117.770177pt;}
._34{width:119.627116pt;}
._20{width:123.360449pt;}
._1a{width:126.646949pt;}
._41{width:127.658882pt;}
._62{width:133.924764pt;}
._4c{width:139.992216pt;}
._44{width:144.490592pt;}
._61{width:145.480071pt;}
._1b{width:151.584937pt;}
._51{width:152.794954pt;}
._3d{width:154.385091pt;}
._4f{width:159.121135pt;}
._40{width:160.247754pt;}
._46{width:166.515436pt;}
._4b{width:172.581087pt;}
._2a{width:185.153018pt;}
._65{width:190.232498pt;}
._55{width:191.710007pt;}
._1e{width:195.524922pt;}
._43{width:200.023855pt;}
._52{width:201.113346pt;}
._26{width:212.217658pt;}
._23{width:213.444922pt;}
._2e{width:231.364922pt;}
._19{width:241.668922pt;}
._31{width:261.972266pt;}
._49{width:293.747754pt;}
._4d{width:314.563204pt;}
._2d{width:321.742933pt;}
._2c{width:341.087589pt;}
._2b{width:344.964266pt;}
._36{width:361.307687pt;}
._4a{width:366.820538pt;}
._38{width:373.561600pt;}
._25{width:384.126933pt;}
._48{width:387.553871pt;}
._53{width:402.341871pt;}
._21{width:404.772266pt;}
._56{width:412.753871pt;}
._32{width:431.905020pt;}
._37{width:439.771641pt;}
._39{width:454.472000pt;}
._4e{width:463.487204pt;}
._29{width:468.052266pt;}
._54{width:469.193848pt;}
._58{width:482.006915pt;}
._45{width:494.229871pt;}
._1c{width:499.412266pt;}
._3e{width:522.229871pt;}
._3c{width:804.894162pt;}
._66{width:2004.506735pt;}
._d{width:2031.850159pt;}
.fsb{font-size:26.133333pt;}
.fsd{font-size:28.000000pt;}
.fs5{font-size:31.733332pt;}
.fsa{font-size:33.333333pt;}
.fs4{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs0{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:2.267329pt;}
.y2f{bottom:24.563600pt;}
.y30{bottom:24.571599pt;}
.y13f{bottom:55.927333pt;}
.yb4{bottom:56.005335pt;}
.y74{bottom:57.760132pt;}
.yb3{bottom:58.272664pt;}
.y1f0{bottom:58.531469pt;}
.y164{bottom:60.087199pt;}
.y2d{bottom:60.472402pt;}
.yf0{bottom:61.543732pt;}
.y197{bottom:66.700800pt;}
.yd6{bottom:68.940669pt;}
.y13e{bottom:69.260666pt;}
.y1ef{bottom:69.731466pt;}
.y7d{bottom:69.799998pt;}
.y73{bottom:71.093465pt;}
.y163{bottom:73.420532pt;}
.y2c{bottom:73.805735pt;}
.yef{bottom:74.877065pt;}
.y196{bottom:80.034133pt;}
.y1ee{bottom:80.931467pt;}
.yd5{bottom:82.274002pt;}
.y13d{bottom:82.593999pt;}
.y7c{bottom:83.133331pt;}
.y72{bottom:84.426799pt;}
.yad{bottom:84.466665pt;}
.y162{bottom:86.753866pt;}
.y2b{bottom:87.139069pt;}
.yee{bottom:88.210398pt;}
.y1ed{bottom:92.131470pt;}
.y195{bottom:93.367462pt;}
.y22e{bottom:93.431467pt;}
.yd4{bottom:95.607330pt;}
.y13c{bottom:95.927338pt;}
.y7b{bottom:96.466665pt;}
.yac{bottom:99.133331pt;}
.y161{bottom:100.087199pt;}
.y2a{bottom:100.472402pt;}
.yed{bottom:101.543732pt;}
.y1ec{bottom:103.331462pt;}
.y194{bottom:106.700795pt;}
.y22d{bottom:106.764800pt;}
.yd3{bottom:108.940664pt;}
.y13b{bottom:109.260671pt;}
.y7a{bottom:109.799998pt;}
.y71{bottom:111.093465pt;}
.y160{bottom:113.420532pt;}
.yab{bottom:113.799998pt;}
.y1eb{bottom:114.531464pt;}
.yec{bottom:114.877065pt;}
.y29{bottom:117.715729pt;}
.y193{bottom:120.034129pt;}
.yd2{bottom:122.273997pt;}
.y13a{bottom:122.594004pt;}
.y79{bottom:123.133331pt;}
.y70{bottom:124.426799pt;}
.y1ea{bottom:125.731466pt;}
.y15f{bottom:126.753866pt;}
.y22c{bottom:126.825733pt;}
.y28{bottom:127.139069pt;}
.yeb{bottom:128.210398pt;}
.yaa{bottom:128.466665pt;}
.y192{bottom:133.367462pt;}
.yd1{bottom:135.607330pt;}
.y139{bottom:135.927338pt;}
.y78{bottom:136.466665pt;}
.y1e9{bottom:136.931467pt;}
.y6f{bottom:137.760132pt;}
.y15e{bottom:140.087199pt;}
.yea{bottom:141.543732pt;}
.ya9{bottom:143.133331pt;}
.y27{bottom:144.382395pt;}
.y191{bottom:146.700795pt;}
.y22b{bottom:146.886536pt;}
.y1e8{bottom:148.131470pt;}
.yd0{bottom:148.940664pt;}
.y138{bottom:149.260671pt;}
.y77{bottom:149.799998pt;}
.y6e{bottom:151.093465pt;}
.y15d{bottom:153.420532pt;}
.ye9{bottom:154.877065pt;}
.ya8{bottom:157.799998pt;}
.y1e7{bottom:159.331462pt;}
.y190{bottom:160.034129pt;}
.ycf{bottom:162.273997pt;}
.y137{bottom:162.594004pt;}
.y76{bottom:163.133331pt;}
.y6d{bottom:164.426799pt;}
.y15c{bottom:166.753866pt;}
.y22a{bottom:166.947469pt;}
.ye8{bottom:168.210398pt;}
.y1e6{bottom:170.531464pt;}
.ya7{bottom:172.466675pt;}
.y18f{bottom:173.367472pt;}
.y136{bottom:175.927327pt;}
.y6c{bottom:177.760132pt;}
.y26{bottom:179.848124pt;}
.y15b{bottom:180.087199pt;}
.y229{bottom:180.280802pt;}
.ye7{bottom:181.543742pt;}
.y1e5{bottom:181.731466pt;}
.ya6{bottom:187.133341pt;}
.y135{bottom:189.260661pt;}
.y6b{bottom:191.093465pt;}
.yce{bottom:191.607340pt;}
.y1e4{bottom:192.931458pt;}
.y25{bottom:193.181458pt;}
.y15a{bottom:193.420532pt;}
.y228{bottom:193.614136pt;}
.ye6{bottom:194.877075pt;}
.ya5{bottom:201.800008pt;}
.y134{bottom:202.593994pt;}
.y18e{bottom:202.700806pt;}
.y1e3{bottom:204.131470pt;}
.y6a{bottom:204.426799pt;}
.ycd{bottom:204.940674pt;}
.y24{bottom:206.514791pt;}
.y159{bottom:206.753866pt;}
.ye5{bottom:208.210409pt;}
.y1e2{bottom:215.331462pt;}
.y133{bottom:215.927327pt;}
.y18d{bottom:216.034139pt;}
.ya4{bottom:216.466675pt;}
.y69{bottom:217.760132pt;}
.ycc{bottom:218.274007pt;}
.y23{bottom:219.848124pt;}
.y158{bottom:220.087199pt;}
.ye4{bottom:221.543742pt;}
.y227{bottom:222.947469pt;}
.yaf{bottom:225.685465pt;}
.y1e1{bottom:226.531474pt;}
.y132{bottom:229.260661pt;}
.y18c{bottom:229.367472pt;}
.y68{bottom:231.093465pt;}
.ya3{bottom:231.133341pt;}
.ycb{bottom:231.607340pt;}
.y22{bottom:233.181458pt;}
.y157{bottom:233.420532pt;}
.ye3{bottom:234.877075pt;}
.y226{bottom:236.280802pt;}
.y1e0{bottom:237.731466pt;}
.y131{bottom:242.593994pt;}
.y18b{bottom:242.700806pt;}
.y67{bottom:244.426799pt;}
.yca{bottom:244.940674pt;}
.ya2{bottom:245.800008pt;}
.y21{bottom:246.514791pt;}
.y156{bottom:246.753866pt;}
.ye2{bottom:248.210409pt;}
.y1df{bottom:248.931458pt;}
.y225{bottom:249.614136pt;}
.y130{bottom:255.927327pt;}
.y18a{bottom:256.034139pt;}
.y66{bottom:257.760132pt;}
.yc9{bottom:258.274007pt;}
.y20{bottom:259.848124pt;}
.y155{bottom:260.087199pt;}
.y1de{bottom:260.131470pt;}
.ya1{bottom:260.466675pt;}
.ye1{bottom:261.543742pt;}
.y224{bottom:262.947469pt;}
.y12f{bottom:269.260661pt;}
.y189{bottom:269.367472pt;}
.y65{bottom:271.093465pt;}
.y1dd{bottom:271.331462pt;}
.yc8{bottom:271.607340pt;}
.y1f{bottom:273.181458pt;}
.y154{bottom:273.420532pt;}
.y1dc{bottom:282.531474pt;}
.y12e{bottom:282.593994pt;}
.y188{bottom:282.700806pt;}
.y64{bottom:284.426799pt;}
.yc7{bottom:284.940674pt;}
.y1e{bottom:286.514791pt;}
.y153{bottom:286.753866pt;}
.ya0{bottom:288.823995pt;}
.y223{bottom:292.280802pt;}
.y1db{bottom:293.731466pt;}
.y12d{bottom:295.927327pt;}
.y187{bottom:296.034139pt;}
.y63{bottom:297.760132pt;}
.yc6{bottom:298.274007pt;}
.y1d{bottom:299.848124pt;}
.y152{bottom:300.087199pt;}
.yb0{bottom:301.574402pt;}
.y9f{bottom:304.453328pt;}
.y1da{bottom:304.931458pt;}
.y222{bottom:305.614136pt;}
.y12c{bottom:309.260661pt;}
.y186{bottom:309.367472pt;}
.y62{bottom:311.093465pt;}
.yc5{bottom:311.607340pt;}
.y11d{bottom:312.975871pt;}
.y1c{bottom:313.181458pt;}
.y151{bottom:313.420532pt;}
.y1d9{bottom:316.131470pt;}
.y9e{bottom:320.233724pt;}
.y12b{bottom:322.593994pt;}
.y185{bottom:322.700806pt;}
.y61{bottom:324.426799pt;}
.yc4{bottom:324.940674pt;}
.y1b{bottom:326.514791pt;}
.y150{bottom:326.753866pt;}
.y1d8{bottom:327.331462pt;}
.y11c{bottom:327.642537pt;}
.y221{bottom:334.947469pt;}
.y12a{bottom:335.927327pt;}
.y9d{bottom:336.014262pt;}
.y184{bottom:336.034139pt;}
.y60{bottom:337.760132pt;}
.y1d7{bottom:338.531474pt;}
.y1a{bottom:339.848124pt;}
.y14f{bottom:340.087199pt;}
.y11b{bottom:342.309204pt;}
.y129{bottom:349.260661pt;}
.y183{bottom:349.367472pt;}
.y1d6{bottom:349.731486pt;}
.yc3{bottom:351.607340pt;}
.y9c{bottom:351.794800pt;}
.y19{bottom:353.181478pt;}
.y14e{bottom:353.420532pt;}
.y11a{bottom:356.975871pt;}
.y1d5{bottom:360.931478pt;}
.y128{bottom:362.593994pt;}
.y182{bottom:362.700806pt;}
.y220{bottom:364.280802pt;}
.yc2{bottom:364.940674pt;}
.y14d{bottom:366.753866pt;}
.y5f{bottom:367.093465pt;}
.y9b{bottom:367.575317pt;}
.y119{bottom:371.642537pt;}
.y1d4{bottom:372.131470pt;}
.y127{bottom:375.927327pt;}
.y181{bottom:376.034139pt;}
.y21f{bottom:377.614136pt;}
.yc1{bottom:378.274007pt;}
.y14c{bottom:380.087199pt;}
.y5e{bottom:380.426799pt;}
.y18{bottom:382.514811pt;}
.y1d3{bottom:383.331462pt;}
.y9a{bottom:383.355876pt;}
.y118{bottom:386.309204pt;}
.y126{bottom:389.260661pt;}
.y180{bottom:389.367472pt;}
.y21e{bottom:390.947469pt;}
.yc0{bottom:391.607340pt;}
.y14b{bottom:393.420532pt;}
.y5d{bottom:393.760132pt;}
.y1d2{bottom:394.531453pt;}
.y99{bottom:399.136393pt;}
.y117{bottom:400.975871pt;}
.y125{bottom:402.593994pt;}
.y17f{bottom:402.700806pt;}
.ybf{bottom:404.940674pt;}
.y1d1{bottom:405.731486pt;}
.y5c{bottom:407.093465pt;}
.y17{bottom:408.520020pt;}
.y98{bottom:414.916951pt;}
.y116{bottom:415.642537pt;}
.y124{bottom:415.927327pt;}
.y17e{bottom:416.034139pt;}
.y1d0{bottom:416.931478pt;}
.ybe{bottom:418.274007pt;}
.y21d{bottom:420.280802pt;}
.y5b{bottom:420.426799pt;}
.y16{bottom:423.186686pt;}
.y1cf{bottom:428.131470pt;}
.y123{bottom:429.260661pt;}
.y17d{bottom:429.367472pt;}
.y115{bottom:430.309204pt;}
.y97{bottom:430.697347pt;}
.ybd{bottom:431.607340pt;}
.y21c{bottom:433.614136pt;}
.y5a{bottom:433.760132pt;}
.y15{bottom:437.853353pt;}
.y1ce{bottom:439.331462pt;}
.y122{bottom:442.593994pt;}
.y17c{bottom:442.700806pt;}
.y171{bottom:444.852661pt;}
.ybc{bottom:444.940674pt;}
.y114{bottom:444.975871pt;}
.yb1{bottom:446.233195pt;}
.y96{bottom:446.477865pt;}
.y21b{bottom:446.947469pt;}
.y59{bottom:447.093465pt;}
.y1cd{bottom:450.531453pt;}
.y14{bottom:452.520020pt;}
.y121{bottom:455.927327pt;}
.y17b{bottom:456.034139pt;}
.y170{bottom:458.185994pt;}
.ybb{bottom:458.274007pt;}
.y113{bottom:459.642537pt;}
.y21a{bottom:460.280802pt;}
.y58{bottom:460.426799pt;}
.y1cc{bottom:461.731486pt;}
.y95{bottom:462.258382pt;}
.y13{bottom:467.186686pt;}
.y120{bottom:469.260661pt;}
.y17a{bottom:469.367472pt;}
.y16f{bottom:471.519328pt;}
.yba{bottom:471.607340pt;}
.y1cb{bottom:472.931478pt;}
.y219{bottom:473.614136pt;}
.y57{bottom:473.760132pt;}
.y112{bottom:474.309204pt;}
.y7e{bottom:475.774007pt;}
.y94{bottom:478.038940pt;}
.y12{bottom:481.853353pt;}
.y11f{bottom:482.593994pt;}
.y179{bottom:482.700806pt;}
.y1ca{bottom:484.131470pt;}
.y16e{bottom:484.852661pt;}
.yb9{bottom:484.940674pt;}
.y56{bottom:487.093465pt;}
.y111{bottom:488.975871pt;}
.y93{bottom:493.819458pt;}
.y1c9{bottom:495.331462pt;}
.y11e{bottom:495.927327pt;}
.y178{bottom:496.034139pt;}
.y11{bottom:496.520020pt;}
.y16d{bottom:498.185994pt;}
.yb8{bottom:498.274007pt;}
.yb2{bottom:498.787720pt;}
.y55{bottom:500.426799pt;}
.y218{bottom:502.947469pt;}
.y110{bottom:503.642537pt;}
.y1c8{bottom:506.531453pt;}
.y177{bottom:509.367472pt;}
.y92{bottom:509.600016pt;}
.y10{bottom:511.186686pt;}
.y16c{bottom:511.519328pt;}
.yb7{bottom:511.607340pt;}
.y54{bottom:513.760132pt;}
.y217{bottom:516.280802pt;}
.y1c7{bottom:517.731486pt;}
.y10f{bottom:518.309204pt;}
.y176{bottom:522.700806pt;}
.y16b{bottom:524.852661pt;}
.yb6{bottom:524.940674pt;}
.y91{bottom:525.195353pt;}
.yf{bottom:525.853353pt;}
.yae{bottom:526.779053pt;}
.y53{bottom:527.093465pt;}
.y1c6{bottom:528.931478pt;}
.y216{bottom:529.614136pt;}
.y10e{bottom:532.975871pt;}
.y175{bottom:536.034139pt;}
.y16a{bottom:538.185994pt;}
.y1c5{bottom:540.131470pt;}
.y52{bottom:540.426799pt;}
.ye{bottom:540.520020pt;}
.y215{bottom:542.947469pt;}
.y14a{bottom:547.359619pt;}
.y174{bottom:549.367472pt;}
.y1c4{bottom:551.331462pt;}
.y169{bottom:551.519328pt;}
.y51{bottom:553.760132pt;}
.yd{bottom:555.186686pt;}
.y214{bottom:556.280802pt;}
.y149{bottom:560.692952pt;}
.y10d{bottom:561.333211pt;}
.y1c3{bottom:562.531453pt;}
.y173{bottom:562.700806pt;}
.y168{bottom:564.852661pt;}
.y50{bottom:567.093465pt;}
.y213{bottom:569.614136pt;}
.yc{bottom:569.853353pt;}
.y1c2{bottom:573.731486pt;}
.y148{bottom:574.026286pt;}
.y90{bottom:575.093465pt;}
.y172{bottom:576.034139pt;}
.ye0{bottom:576.372925pt;}
.y10c{bottom:576.962524pt;}
.y167{bottom:578.185994pt;}
.y4f{bottom:580.426799pt;}
.yb{bottom:584.520020pt;}
.y1c1{bottom:584.931478pt;}
.y147{bottom:587.359619pt;}
.y8f{bottom:588.426799pt;}
.ydf{bottom:589.706258pt;}
.y166{bottom:591.519328pt;}
.y10b{bottom:592.743083pt;}
.y4e{bottom:593.760132pt;}
.y1c0{bottom:596.131470pt;}
.y212{bottom:598.947469pt;}
.ya{bottom:599.186686pt;}
.y146{bottom:600.692952pt;}
.y8e{bottom:601.760132pt;}
.yde{bottom:603.039591pt;}
.y165{bottom:604.852661pt;}
.y4d{bottom:607.093465pt;}
.y1bf{bottom:607.331462pt;}
.y10a{bottom:608.523478pt;}
.y211{bottom:610.147461pt;}
.y145{bottom:614.026286pt;}
.y8d{bottom:615.093465pt;}
.ydd{bottom:616.372925pt;}
.y1be{bottom:618.531453pt;}
.y4c{bottom:620.426799pt;}
.y210{bottom:621.347453pt;}
.y109{bottom:624.303996pt;}
.y9{bottom:625.758952pt;}
.y144{bottom:627.359619pt;}
.y1a3{bottom:627.466390pt;}
.ydc{bottom:629.706258pt;}
.y1bd{bottom:629.731486pt;}
.y20f{bottom:632.547485pt;}
.y4b{bottom:633.760132pt;}
.y108{bottom:640.084513pt;}
.y143{bottom:640.692952pt;}
.y1a2{bottom:640.799723pt;}
.y1bc{bottom:640.931478pt;}
.y8{bottom:641.758952pt;}
.ydb{bottom:643.039591pt;}
.y20e{bottom:643.747477pt;}
.y8c{bottom:644.426799pt;}
.y4a{bottom:647.093465pt;}
.y1bb{bottom:652.131470pt;}
.y142{bottom:654.026286pt;}
.y1a1{bottom:654.133057pt;}
.y20d{bottom:654.947469pt;}
.y107{bottom:655.865072pt;}
.yda{bottom:656.372925pt;}
.y7{bottom:657.758952pt;}
.y8b{bottom:657.760132pt;}
.y49{bottom:660.426799pt;}
.y1ba{bottom:663.331462pt;}
.y20c{bottom:666.147461pt;}
.y141{bottom:667.359619pt;}
.y1a0{bottom:667.466390pt;}
.yd9{bottom:669.706258pt;}
.y8a{bottom:671.093465pt;}
.y106{bottom:671.645589pt;}
.y6{bottom:673.758952pt;}
.y48{bottom:673.760132pt;}
.y1b9{bottom:674.531453pt;}
.y20b{bottom:677.347453pt;}
.y140{bottom:680.692952pt;}
.y19f{bottom:680.799723pt;}
.yd8{bottom:683.039632pt;}
.y89{bottom:684.426839pt;}
.y1b8{bottom:685.731445pt;}
.y47{bottom:687.093506pt;}
.y105{bottom:687.426107pt;}
.y20a{bottom:688.547445pt;}
.y5{bottom:689.758952pt;}
.y19e{bottom:694.133057pt;}
.yd7{bottom:696.372965pt;}
.y1b7{bottom:696.931478pt;}
.y88{bottom:697.760173pt;}
.y209{bottom:699.747477pt;}
.y46{bottom:700.426839pt;}
.y104{bottom:703.206706pt;}
.y19d{bottom:707.466390pt;}
.y1b6{bottom:708.131429pt;}
.y208{bottom:710.947428pt;}
.y87{bottom:711.093506pt;}
.y45{bottom:713.760173pt;}
.y103{bottom:718.987223pt;}
.y4{bottom:719.062826pt;}
.y1b5{bottom:719.331462pt;}
.y19c{bottom:720.799723pt;}
.y207{bottom:722.147461pt;}
.y86{bottom:724.426839pt;}
.y44{bottom:727.093506pt;}
.y1b4{bottom:730.531494pt;}
.y206{bottom:733.347493pt;}
.y19b{bottom:734.133057pt;}
.y102{bottom:734.767578pt;}
.y85{bottom:737.760173pt;}
.y43{bottom:740.426839pt;}
.y1b3{bottom:741.731445pt;}
.y205{bottom:744.547445pt;}
.y19a{bottom:747.466390pt;}
.y101{bottom:750.548096pt;}
.y84{bottom:751.093506pt;}
.y1b2{bottom:752.931478pt;}
.y42{bottom:753.760173pt;}
.y204{bottom:755.747477pt;}
.y3{bottom:759.062826pt;}
.y199{bottom:760.799723pt;}
.y1b1{bottom:764.131429pt;}
.y83{bottom:764.426839pt;}
.y100{bottom:766.328695pt;}
.y203{bottom:766.947428pt;}
.y41{bottom:767.093506pt;}
.y198{bottom:774.133057pt;}
.y1b0{bottom:775.331462pt;}
.y82{bottom:777.760173pt;}
.y202{bottom:778.147461pt;}
.y40{bottom:780.426839pt;}
.yff{bottom:782.109049pt;}
.y1af{bottom:786.531494pt;}
.y201{bottom:789.347493pt;}
.y81{bottom:791.093506pt;}
.y3f{bottom:793.760173pt;}
.y1ae{bottom:797.731445pt;}
.yfe{bottom:797.889730pt;}
.y2{bottom:799.062826pt;}
.y200{bottom:800.547445pt;}
.y80{bottom:804.426839pt;}
.y3e{bottom:807.093506pt;}
.y1ad{bottom:808.931478pt;}
.y1ff{bottom:811.747477pt;}
.yfd{bottom:813.670166pt;}
.y7f{bottom:817.760173pt;}
.y22f{bottom:819.360107pt;}
.y1ac{bottom:820.131429pt;}
.y3d{bottom:820.426839pt;}
.yfc{bottom:821.560384pt;}
.y1fe{bottom:822.947428pt;}
.y1ab{bottom:831.331462pt;}
.y3c{bottom:833.760173pt;}
.y1fd{bottom:834.147461pt;}
.y1{bottom:839.062826pt;}
.y1aa{bottom:842.531494pt;}
.yfb{bottom:845.231200pt;}
.y1fc{bottom:845.347493pt;}
.y2e{bottom:846.267497pt;}
.y3b{bottom:847.093506pt;}
.y1a9{bottom:853.731445pt;}
.yf8{bottom:856.011719pt;}
.y1fb{bottom:856.547445pt;}
.y3a{bottom:860.426839pt;}
.yfa{bottom:861.011719pt;}
.y1a8{bottom:864.931478pt;}
.yf7{bottom:866.011719pt;}
.y1fa{bottom:867.747477pt;}
.y39{bottom:873.760173pt;}
.yf9{bottom:876.792236pt;}
.y1f9{bottom:878.947428pt;}
.y38{bottom:887.093506pt;}
.y1f8{bottom:890.147461pt;}
.yf6{bottom:892.572835pt;}
.y37{bottom:900.426839pt;}
.y1f7{bottom:901.347493pt;}
.yf5{bottom:908.353353pt;}
.y1a7{bottom:910.243896pt;}
.y1f6{bottom:912.547445pt;}
.y36{bottom:913.760173pt;}
.y1f5{bottom:923.747477pt;}
.yf4{bottom:924.133708pt;}
.y35{bottom:927.093506pt;}
.y1f4{bottom:934.947428pt;}
.y1a6{bottom:938.243896pt;}
.yf3{bottom:939.914307pt;}
.y34{bottom:940.426839pt;}
.y1f3{bottom:946.147461pt;}
.yf2{bottom:949.914307pt;}
.y1a5{bottom:951.577230pt;}
.y33{bottom:953.760173pt;}
.y1f2{bottom:957.347493pt;}
.y1a4{bottom:964.910563pt;}
.yf1{bottom:965.509603pt;}
.y32{bottom:967.093506pt;}
.y1f1{bottom:968.547445pt;}
.y31{bottom:1013.962972pt;}
.y75{bottom:1014.044515pt;}
.h9{height:22.823827pt;}
.hb{height:27.501953pt;}
.h10{height:30.687500pt;}
.h24{height:31.476562pt;}
.hd{height:32.605469pt;}
.h1d{height:32.966667pt;}
.h1a{height:34.133333pt;}
.h1c{height:34.400000pt;}
.h5{height:34.523438pt;}
.h19{height:36.922667pt;}
.h21{height:37.408000pt;}
.h18{height:38.229333pt;}
.h11{height:38.359375pt;}
.ha{height:38.463801pt;}
.h26{height:39.560000pt;}
.h27{height:40.080000pt;}
.hf{height:40.604167pt;}
.h25{height:40.960000pt;}
.h28{height:41.491805pt;}
.h29{height:42.195312pt;}
.hc{height:43.141927pt;}
.h4{height:45.703125pt;}
.h6{height:47.472000pt;}
.h17{height:48.096000pt;}
.h16{height:49.152000pt;}
.h23{height:49.536000pt;}
.h12{height:49.789645pt;}
.h15{height:49.790296pt;}
.h7{height:49.790377pt;}
.h14{height:49.790398pt;}
.h1f{height:49.790418pt;}
.h8{height:49.790459pt;}
.h3{height:50.781250pt;}
.h13{height:55.859375pt;}
.h20{height:57.408000pt;}
.h22{height:68.483865pt;}
.h1b{height:78.133333pt;}
.he{height:91.406250pt;}
.h2{height:132.031250pt;}
.h1e{height:920.000000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:78.049332pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:30.876383pt;}
.x4{left:54.803065pt;}
.x20{left:96.336395pt;}
.x3{left:124.757731pt;}
.x7{left:171.856527pt;}
.x1{left:207.874003pt;}
.x9{left:212.062927pt;}
.x2{left:223.874003pt;}
.x22{left:224.881999pt;}
.x5{left:301.133870pt;}
.x21{left:313.191996pt;}
.x8{left:379.250651pt;}
.x1f{left:439.275065pt;}
.xb{left:448.855754pt;}
.xc{left:459.855754pt;}
.xd{left:474.724121pt;}
.xe{left:489.777751pt;}
.xf{left:504.831217pt;}
.x6{left:520.758545pt;}
.x10{left:534.938151pt;}
.x11{left:549.991740pt;}
.x12{left:565.045207pt;}
.x13{left:580.098674pt;}
.x14{left:595.152262pt;}
.x15{left:610.205851pt;}
.x16{left:625.259318pt;}
.x17{left:640.312785pt;}
.x18{left:655.215210pt;}
.x1a{left:660.847982pt;}
.x19{left:680.724406pt;}
.xa{left:692.980957pt;}
.x1c{left:702.724365pt;}
.x1d{left:713.724365pt;}
.x1e{left:724.724365pt;}
}




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