
    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_ebcf6096c2ced1dc021902a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.052000;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_5dfd06c05a8294ec374fa8ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_72e0fa20858708a81b637fc8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9aafa120edd8d27cb3674f26.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861328;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_e80b06c6f5c993f13be1e051.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_e182a76b0542374804eb7dd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_702abbdefef1415508109c32.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947000;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_9eb6f4e84fb7ad416a98a33e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c363997fe19c216128082c23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-28.199400px;}
.v4{vertical-align:-17.820000px;}
.v2{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.780000px;}
.ls25{letter-spacing:-6.300000px;}
.ls27{letter-spacing:-5.820000px;}
.ls2c{letter-spacing:-5.292000px;}
.ls34{letter-spacing:-3.510000px;}
.ls7{letter-spacing:-3.480000px;}
.ls13{letter-spacing:-2.400000px;}
.ls2b{letter-spacing:-2.280000px;}
.ls1b{letter-spacing:-2.160000px;}
.ls15{letter-spacing:-1.620000px;}
.ls20{letter-spacing:-1.350000px;}
.ls2a{letter-spacing:-1.200000px;}
.ls17{letter-spacing:-1.140000px;}
.ls28{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-1.026000px;}
.ls8{letter-spacing:-1.020000px;}
.lsa{letter-spacing:-0.960000px;}
.ls30{letter-spacing:-0.918000px;}
.ls38{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.780000px;}
.ls33{letter-spacing:-0.756000px;}
.ls6{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.702000px;}
.ls14{letter-spacing:-0.660000px;}
.lsb{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.486000px;}
.ls26{letter-spacing:-0.480000px;}
.ls1f{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.420000px;}
.ls2e{letter-spacing:-0.378000px;}
.ls16{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.300000px;}
.ls2d{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.240000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.178800px;}
.ls10{letter-spacing:0.179400px;}
.lsf{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.240000px;}
.ls37{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.300000px;}
.ls35{letter-spacing:0.324000px;}
.ls32{letter-spacing:0.378000px;}
.lse{letter-spacing:0.480000px;}
.ls36{letter-spacing:0.702000px;}
.ls31{letter-spacing:0.756000px;}
.ls2f{letter-spacing:1.080000px;}
.ls24{letter-spacing:1.394400px;}
.ls0{letter-spacing:2.223000px;}
.ls2{letter-spacing:2.565000px;}
.ls1{letter-spacing:2.581200px;}
.ls22{letter-spacing:3.687000px;}
.ls23{letter-spacing:4.582800px;}
.lsd{letter-spacing:9.475200px;}
.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;}
}
.ws4{word-spacing:-24.408000px;}
.ws1{word-spacing:-19.530000px;}
.ws5{word-spacing:-15.447000px;}
.ws2{word-spacing:-15.105000px;}
.ws54{word-spacing:-14.100000px;}
.ws9{word-spacing:-13.920000px;}
.ws53{word-spacing:-13.860000px;}
.ws4f{word-spacing:-13.800000px;}
.wsb{word-spacing:-13.740000px;}
.ws52{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.620000px;}
.wsd{word-spacing:-13.500000px;}
.ws51{word-spacing:-13.440000px;}
.ws55{word-spacing:-13.380000px;}
.ws4b{word-spacing:-13.320000px;}
.ws7{word-spacing:-13.200000px;}
.wsc{word-spacing:-13.140000px;}
.wscc{word-spacing:-13.080000px;}
.wse{word-spacing:-13.020000px;}
.ws4e{word-spacing:-12.960000px;}
.wsa{word-spacing:-12.900000px;}
.ws3{word-spacing:-12.882000px;}
.ws4c{word-spacing:-12.840000px;}
.ws110{word-spacing:-12.798000px;}
.ws4d{word-spacing:-12.720000px;}
.ws50{word-spacing:-12.600000px;}
.wsce{word-spacing:-12.540000px;}
.ws111{word-spacing:-12.474000px;}
.wsd0{word-spacing:-12.420000px;}
.ws15a{word-spacing:-12.366000px;}
.wsa6{word-spacing:-12.258000px;}
.wsd1{word-spacing:-12.120000px;}
.ws112{word-spacing:-12.096000px;}
.ws15e{word-spacing:-12.042000px;}
.ws10f{word-spacing:-11.988000px;}
.ws10e{word-spacing:-11.880000px;}
.wsad{word-spacing:-11.826000px;}
.ws15f{word-spacing:-11.772000px;}
.wsd4{word-spacing:-11.718000px;}
.ws10c{word-spacing:-11.664000px;}
.ws160{word-spacing:-11.556000px;}
.ws161{word-spacing:-11.502000px;}
.ws10b{word-spacing:-11.448000px;}
.wsd3{word-spacing:-11.340000px;}
.ws15b{word-spacing:-11.178000px;}
.ws15c{word-spacing:-10.962000px;}
.ws162{word-spacing:-10.908000px;}
.ws10d{word-spacing:-10.206000px;}
.ws6{word-spacing:-8.689560px;}
.ws15d{word-spacing:-8.208000px;}
.wscd{word-spacing:-7.800000px;}
.wscb{word-spacing:-7.320000px;}
.ws106{word-spacing:-3.294000px;}
.ws5f{word-spacing:-2.940000px;}
.wsa5{word-spacing:-2.904000px;}
.ws8a{word-spacing:-2.700000px;}
.wsbd{word-spacing:-2.580000px;}
.ws71{word-spacing:-2.460000px;}
.ws166{word-spacing:-2.430000px;}
.ws27{word-spacing:-2.400000px;}
.ws16e{word-spacing:-2.376000px;}
.ws20{word-spacing:-2.340000px;}
.ws136{word-spacing:-2.322000px;}
.ws7b{word-spacing:-2.220000px;}
.ws13d{word-spacing:-2.214000px;}
.wsea{word-spacing:-2.160000px;}
.wsd9{word-spacing:-2.040000px;}
.wsd2{word-spacing:-1.992000px;}
.wsed{word-spacing:-1.980000px;}
.wsc6{word-spacing:-1.890000px;}
.ws95{word-spacing:-1.860000px;}
.ws157{word-spacing:-1.782000px;}
.ws168{word-spacing:-1.728000px;}
.ws149{word-spacing:-1.674000px;}
.ws137{word-spacing:-1.620000px;}
.ws186{word-spacing:-1.566000px;}
.ws59{word-spacing:-1.560000px;}
.ws11a{word-spacing:-1.512000px;}
.ws5b{word-spacing:-1.500000px;}
.ws133{word-spacing:-1.404000px;}
.ws41{word-spacing:-1.380000px;}
.ws11f{word-spacing:-1.350000px;}
.ws91{word-spacing:-1.320000px;}
.ws24{word-spacing:-1.260000px;}
.ws8b{word-spacing:-1.200000px;}
.wsdb{word-spacing:-1.140000px;}
.ws150{word-spacing:-1.134000px;}
.ws34{word-spacing:-1.080000px;}
.wsc7{word-spacing:-1.026000px;}
.wsf6{word-spacing:-1.020000px;}
.ws10a{word-spacing:-0.972000px;}
.ws18{word-spacing:-0.960000px;}
.ws109{word-spacing:-0.918000px;}
.ws97{word-spacing:-0.900000px;}
.ws65{word-spacing:-0.840000px;}
.ws16c{word-spacing:-0.810000px;}
.wsda{word-spacing:-0.780000px;}
.ws107{word-spacing:-0.756000px;}
.wsc1{word-spacing:-0.720000px;}
.ws11d{word-spacing:-0.702000px;}
.ws100{word-spacing:-0.660000px;}
.ws14d{word-spacing:-0.648000px;}
.ws1b{word-spacing:-0.600000px;}
.ws16b{word-spacing:-0.594000px;}
.ws35{word-spacing:-0.540000px;}
.ws151{word-spacing:-0.486000px;}
.ws26{word-spacing:-0.480000px;}
.ws155{word-spacing:-0.432000px;}
.ws6e{word-spacing:-0.360000px;}
.ws17c{word-spacing:-0.324000px;}
.ws25{word-spacing:-0.300000px;}
.wsa2{word-spacing:-0.240000px;}
.ws8d{word-spacing:-0.180000px;}
.wsaf{word-spacing:-0.120000px;}
.ws134{word-spacing:-0.108000px;}
.wsa3{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.054000px;}
.wsf{word-spacing:0.000000px;}
.ws13b{word-spacing:0.054000px;}
.wse6{word-spacing:0.060000px;}
.ws16a{word-spacing:0.108000px;}
.ws6a{word-spacing:0.180000px;}
.ws152{word-spacing:0.216000px;}
.wsb4{word-spacing:0.240000px;}
.ws56{word-spacing:0.300000px;}
.ws12c{word-spacing:0.324000px;}
.ws32{word-spacing:0.360000px;}
.ws141{word-spacing:0.378000px;}
.ws58{word-spacing:0.420000px;}
.wsc5{word-spacing:0.486000px;}
.ws3d{word-spacing:0.540000px;}
.ws17d{word-spacing:0.594000px;}
.ws158{word-spacing:0.648000px;}
.wsab{word-spacing:0.702000px;}
.ws1a{word-spacing:0.720000px;}
.wsf0{word-spacing:0.780000px;}
.ws9a{word-spacing:0.840000px;}
.wsb0{word-spacing:0.900000px;}
.ws73{word-spacing:0.960000px;}
.ws135{word-spacing:0.972000px;}
.ws6f{word-spacing:1.020000px;}
.wsc8{word-spacing:1.026000px;}
.ws63{word-spacing:1.080000px;}
.ws16d{word-spacing:1.134000px;}
.ws33{word-spacing:1.140000px;}
.wsfc{word-spacing:1.200000px;}
.ws101{word-spacing:1.242000px;}
.wsb9{word-spacing:1.260000px;}
.wsca{word-spacing:1.296000px;}
.ws7c{word-spacing:1.320000px;}
.ws2a{word-spacing:1.380000px;}
.ws77{word-spacing:1.500000px;}
.ws117{word-spacing:1.512000px;}
.wsa4{word-spacing:1.560000px;}
.ws11e{word-spacing:1.566000px;}
.ws3e{word-spacing:1.620000px;}
.ws165{word-spacing:1.674000px;}
.wsfb{word-spacing:1.680000px;}
.ws102{word-spacing:1.728000px;}
.ws82{word-spacing:1.740000px;}
.ws115{word-spacing:1.782000px;}
.ws81{word-spacing:1.800000px;}
.ws142{word-spacing:1.836000px;}
.wse4{word-spacing:1.860000px;}
.ws114{word-spacing:1.890000px;}
.wse9{word-spacing:1.920000px;}
.ws131{word-spacing:1.944000px;}
.ws83{word-spacing:1.980000px;}
.wscf{word-spacing:1.992000px;}
.ws84{word-spacing:2.040000px;}
.wsac{word-spacing:2.052000px;}
.ws2f{word-spacing:2.100000px;}
.ws144{word-spacing:2.106000px;}
.ws57{word-spacing:2.160000px;}
.wse5{word-spacing:2.220000px;}
.ws11{word-spacing:2.241000px;}
.ws170{word-spacing:2.268000px;}
.ws45{word-spacing:2.280000px;}
.ws11b{word-spacing:2.376000px;}
.ws60{word-spacing:2.400000px;}
.ws15{word-spacing:2.430000px;}
.ws85{word-spacing:2.460000px;}
.ws177{word-spacing:2.484000px;}
.ws42{word-spacing:2.520000px;}
.ws10{word-spacing:2.565000px;}
.ws28{word-spacing:2.580000px;}
.ws147{word-spacing:2.592000px;}
.ws89{word-spacing:2.640000px;}
.ws126{word-spacing:2.646000px;}
.ws96{word-spacing:2.700000px;}
.ws7a{word-spacing:2.760000px;}
.ws30{word-spacing:2.940000px;}
.ws14{word-spacing:2.970000px;}
.ws78{word-spacing:3.000000px;}
.ws3c{word-spacing:3.060000px;}
.ws14e{word-spacing:3.078000px;}
.ws12d{word-spacing:3.132000px;}
.ws31{word-spacing:3.180000px;}
.ws139{word-spacing:3.186000px;}
.ws9e{word-spacing:3.240000px;}
.wsc4{word-spacing:3.294000px;}
.ws44{word-spacing:3.300000px;}
.ws2b{word-spacing:3.360000px;}
.ws9f{word-spacing:3.420000px;}
.ws14c{word-spacing:3.456000px;}
.ws1d{word-spacing:3.480000px;}
.ws43{word-spacing:3.540000px;}
.ws185{word-spacing:3.564000px;}
.wse1{word-spacing:3.600000px;}
.ws121{word-spacing:3.618000px;}
.ws21{word-spacing:3.660000px;}
.ws12f{word-spacing:3.672000px;}
.ws3f{word-spacing:3.720000px;}
.ws13a{word-spacing:3.726000px;}
.wsb3{word-spacing:3.780000px;}
.ws104{word-spacing:3.834000px;}
.wsa1{word-spacing:3.840000px;}
.ws12{word-spacing:3.870000px;}
.ws125{word-spacing:3.888000px;}
.ws172{word-spacing:3.942000px;}
.ws13{word-spacing:3.960000px;}
.ws164{word-spacing:4.050000px;}
.ws130{word-spacing:4.104000px;}
.ws16f{word-spacing:4.158000px;}
.wsb7{word-spacing:4.200000px;}
.wsb8{word-spacing:4.260000px;}
.ws132{word-spacing:4.266000px;}
.ws17{word-spacing:4.320000px;}
.wsf2{word-spacing:4.380000px;}
.ws176{word-spacing:4.428000px;}
.ws1e{word-spacing:4.440000px;}
.ws159{word-spacing:4.482000px;}
.ws88{word-spacing:4.500000px;}
.wsfd{word-spacing:4.560000px;}
.ws48{word-spacing:4.620000px;}
.ws12a{word-spacing:4.644000px;}
.ws2e{word-spacing:4.680000px;}
.wsa0{word-spacing:4.740000px;}
.ws154{word-spacing:4.752000px;}
.ws68{word-spacing:4.800000px;}
.ws11c{word-spacing:4.806000px;}
.wsaa{word-spacing:4.860000px;}
.wsf4{word-spacing:4.920000px;}
.ws129{word-spacing:4.968000px;}
.ws29{word-spacing:4.980000px;}
.ws118{word-spacing:5.022000px;}
.wsd7{word-spacing:5.040000px;}
.ws36{word-spacing:5.100000px;}
.wsf3{word-spacing:5.160000px;}
.ws7f{word-spacing:5.220000px;}
.ws143{word-spacing:5.238000px;}
.ws6d{word-spacing:5.280000px;}
.ws105{word-spacing:5.292000px;}
.wsa7{word-spacing:5.340000px;}
.ws12b{word-spacing:5.346000px;}
.ws98{word-spacing:5.400000px;}
.ws138{word-spacing:5.454000px;}
.wsf1{word-spacing:5.460000px;}
.ws179{word-spacing:5.508000px;}
.ws3b{word-spacing:5.580000px;}
.ws13c{word-spacing:5.616000px;}
.wse0{word-spacing:5.640000px;}
.wsbf{word-spacing:5.700000px;}
.ws19{word-spacing:5.760000px;}
.wsd8{word-spacing:5.820000px;}
.ws120{word-spacing:5.886000px;}
.wsf5{word-spacing:5.940000px;}
.ws156{word-spacing:5.994000px;}
.wsef{word-spacing:6.000000px;}
.ws153{word-spacing:6.048000px;}
.wsb5{word-spacing:6.060000px;}
.ws93{word-spacing:6.120000px;}
.ws14a{word-spacing:6.156000px;}
.ws40{word-spacing:6.180000px;}
.ws145{word-spacing:6.210000px;}
.ws1f{word-spacing:6.240000px;}
.ws64{word-spacing:6.300000px;}
.ws13e{word-spacing:6.318000px;}
.ws116{word-spacing:6.372000px;}
.ws79{word-spacing:6.420000px;}
.ws169{word-spacing:6.426000px;}
.ws69{word-spacing:6.480000px;}
.ws163{word-spacing:6.534000px;}
.ws17e{word-spacing:6.588000px;}
.wsb2{word-spacing:6.600000px;}
.ws127{word-spacing:6.642000px;}
.ws148{word-spacing:6.696000px;}
.ws70{word-spacing:6.720000px;}
.ws22{word-spacing:6.780000px;}
.ws167{word-spacing:6.804000px;}
.ws46{word-spacing:6.840000px;}
.ws13f{word-spacing:6.858000px;}
.ws47{word-spacing:6.900000px;}
.ws146{word-spacing:6.912000px;}
.ws1c{word-spacing:6.960000px;}
.ws140{word-spacing:6.966000px;}
.wsc9{word-spacing:7.020000px;}
.wsb6{word-spacing:7.080000px;}
.ws14b{word-spacing:7.128000px;}
.ws178{word-spacing:7.182000px;}
.ws61{word-spacing:7.200000px;}
.ws62{word-spacing:7.260000px;}
.ws8c{word-spacing:7.320000px;}
.ws124{word-spacing:7.398000px;}
.ws67{word-spacing:7.500000px;}
.ws182{word-spacing:7.668000px;}
.ws38{word-spacing:7.680000px;}
.ws80{word-spacing:7.740000px;}
.ws94{word-spacing:7.800000px;}
.ws6b{word-spacing:7.860000px;}
.ws66{word-spacing:7.920000px;}
.ws5d{word-spacing:8.040000px;}
.ws5c{word-spacing:8.100000px;}
.wsd5{word-spacing:8.160000px;}
.ws128{word-spacing:8.316000px;}
.ws3a{word-spacing:8.340000px;}
.ws122{word-spacing:8.424000px;}
.wsfe{word-spacing:8.460000px;}
.wsc3{word-spacing:8.478000px;}
.wsec{word-spacing:8.520000px;}
.wsff{word-spacing:8.640000px;}
.wsa9{word-spacing:8.700000px;}
.ws39{word-spacing:8.760000px;}
.ws119{word-spacing:8.802000px;}
.ws6c{word-spacing:8.940000px;}
.ws123{word-spacing:9.018000px;}
.ws7e{word-spacing:9.060000px;}
.ws17a{word-spacing:9.234000px;}
.wsd6{word-spacing:9.240000px;}
.ws14f{word-spacing:9.396000px;}
.ws5e{word-spacing:9.480000px;}
.ws171{word-spacing:9.504000px;}
.ws90{word-spacing:9.660000px;}
.ws7d{word-spacing:9.720000px;}
.wsc2{word-spacing:9.780000px;}
.wsee{word-spacing:9.960000px;}
.wsba{word-spacing:10.080000px;}
.wse3{word-spacing:10.380000px;}
.ws23{word-spacing:10.440000px;}
.ws184{word-spacing:10.476000px;}
.ws9b{word-spacing:10.560000px;}
.wse8{word-spacing:10.740000px;}
.wsf7{word-spacing:11.040000px;}
.wsb1{word-spacing:11.280000px;}
.wseb{word-spacing:11.460000px;}
.wse2{word-spacing:11.520000px;}
.wsf8{word-spacing:11.640000px;}
.ws16{word-spacing:11.760000px;}
.ws5a{word-spacing:11.940000px;}
.wsdd{word-spacing:12.000000px;}
.ws103{word-spacing:12.150000px;}
.ws49{word-spacing:12.240000px;}
.ws4a{word-spacing:12.360000px;}
.wsf9{word-spacing:12.540000px;}
.ws113{word-spacing:12.744000px;}
.ws8e{word-spacing:12.840000px;}
.ws8f{word-spacing:12.960000px;}
.ws12e{word-spacing:13.122000px;}
.wsde{word-spacing:13.260000px;}
.wsfa{word-spacing:13.560000px;}
.wsbe{word-spacing:14.340000px;}
.wsdf{word-spacing:14.400000px;}
.wsbc{word-spacing:14.640000px;}
.ws86{word-spacing:14.700000px;}
.ws75{word-spacing:14.820000px;}
.ws74{word-spacing:15.000000px;}
.wsc0{word-spacing:15.060000px;}
.ws87{word-spacing:15.240000px;}
.ws76{word-spacing:15.540000px;}
.ws9d{word-spacing:15.780000px;}
.wsa8{word-spacing:16.080000px;}
.ws183{word-spacing:16.308000px;}
.ws175{word-spacing:16.362000px;}
.ws99{word-spacing:16.680000px;}
.ws9c{word-spacing:16.800000px;}
.ws173{word-spacing:16.848000px;}
.ws174{word-spacing:17.010000px;}
.ws17b{word-spacing:17.766000px;}
.ws72{word-spacing:18.480000px;}
.wsae{word-spacing:18.660000px;}
.wsbb{word-spacing:18.780000px;}
.ws92{word-spacing:19.860000px;}
.ws37{word-spacing:19.980000px;}
.wse7{word-spacing:20.820000px;}
.ws180{word-spacing:25.326000px;}
.ws108{word-spacing:25.488000px;}
.ws181{word-spacing:25.758000px;}
.wsdc{word-spacing:27.780000px;}
.ws17f{word-spacing:34.884000px;}
.ws2d{word-spacing:42.000000px;}
.ws2c{word-spacing:43.380000px;}
._f{margin-left:-29.650800px;}
._10{margin-left:-16.920000px;}
._d{margin-left:-9.100200px;}
._8{margin-left:-8.058000px;}
._7{margin-left:-6.747000px;}
._6{margin-left:-5.016000px;}
._4{margin-left:-3.687600px;}
._3{margin-left:-2.149200px;}
._0{margin-left:-1.085400px;}
._1{width:1.800000px;}
._5{width:3.006600px;}
._11{width:4.077000px;}
._b{width:5.196000px;}
._a{width:6.227400px;}
._c{width:7.416000px;}
._e{width:8.830800px;}
._9{width:11.631600px;}
._2{width:1499.563200px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.320000px;}
.fs7{font-size:38.280000px;}
.fs9{font-size:48.000000px;}
.fs5{font-size:49.800000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:90.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:62.334000px;}
.y32{bottom:75.534000px;}
.y1{bottom:76.260600px;}
.y31{bottom:88.734000px;}
.yf6{bottom:111.417750px;}
.y6d{bottom:111.495150px;}
.ybe{bottom:111.534150px;}
.y85{bottom:111.675150px;}
.y72{bottom:111.689850px;}
.y7b{bottom:112.318200px;}
.y75{bottom:112.378650px;}
.y30{bottom:114.008550px;}
.y12f{bottom:118.578150px;}
.yf5{bottom:126.537750px;}
.ybd{bottom:126.654300px;}
.y84{bottom:126.795150px;}
.y71{bottom:126.809850px;}
.y7a{bottom:127.438200px;}
.y74{bottom:127.498650px;}
.y6c{bottom:128.295150px;}
.y2f{bottom:130.808550px;}
.y12e{bottom:133.698150px;}
.yf4{bottom:141.657750px;}
.y83{bottom:141.915150px;}
.y70{bottom:141.929850px;}
.y79{bottom:142.558200px;}
.y73{bottom:142.618650px;}
.y6b{bottom:145.095150px;}
.ybc{bottom:146.578950px;}
.y2e{bottom:147.608550px;}
.y12d{bottom:153.070050px;}
.y82{bottom:157.035150px;}
.y6f{bottom:157.049850px;}
.y78{bottom:157.678200px;}
.ybb{bottom:161.698950px;}
.y6a{bottom:161.895150px;}
.yf3{bottom:163.070700px;}
.y2d{bottom:164.408550px;}
.y12c{bottom:168.190050px;}
.y81{bottom:172.155150px;}
.y6e{bottom:172.169850px;}
.y77{bottom:172.798200px;}
.yf2{bottom:178.190700px;}
.y69{bottom:178.695150px;}
.y2c{bottom:181.208550px;}
.yba{bottom:181.623750px;}
.y12b{bottom:183.310050px;}
.y80{bottom:187.275150px;}
.y76{bottom:187.918200px;}
.yf1{bottom:193.310700px;}
.y68{bottom:195.495150px;}
.yb9{bottom:196.743750px;}
.y2b{bottom:198.008550px;}
.y12a{bottom:198.430050px;}
.y7f{bottom:202.395150px;}
.yf0{bottom:208.430700px;}
.yb8{bottom:211.863600px;}
.y67{bottom:212.295150px;}
.y129{bottom:213.550050px;}
.y2a{bottom:214.808550px;}
.y7e{bottom:217.515150px;}
.yef{bottom:223.550700px;}
.y128{bottom:228.670050px;}
.y66{bottom:229.095150px;}
.y29{bottom:231.608550px;}
.yb7{bottom:231.788400px;}
.y7d{bottom:232.635150px;}
.yee{bottom:238.670700px;}
.y65{bottom:245.895150px;}
.yb6{bottom:246.908400px;}
.y127{bottom:248.041950px;}
.y28{bottom:248.408550px;}
.yed{bottom:260.083500px;}
.yb5{bottom:262.028400px;}
.y64{bottom:262.695150px;}
.y7c{bottom:262.875150px;}
.y126{bottom:263.161950px;}
.y27{bottom:265.208550px;}
.yec{bottom:275.203650px;}
.y63{bottom:279.495150px;}
.yb4{bottom:281.953050px;}
.y26{bottom:282.008550px;}
.y125{bottom:282.534000px;}
.yeb{bottom:290.323650px;}
.y62{bottom:296.295150px;}
.yb3{bottom:297.073200px;}
.y124{bottom:297.654000px;}
.y25{bottom:298.808550px;}
.yea{bottom:311.736450px;}
.y123{bottom:312.774000px;}
.y61{bottom:313.095150px;}
.y24{bottom:315.608550px;}
.yb2{bottom:316.997850px;}
.ye9{bottom:326.856450px;}
.y122{bottom:327.894000px;}
.y60{bottom:329.895150px;}
.yb1{bottom:332.117850px;}
.y23{bottom:332.408550px;}
.ye8{bottom:341.976450px;}
.y5f{bottom:346.695150px;}
.yb0{bottom:347.237850px;}
.y121{bottom:347.266050px;}
.y22{bottom:349.208550px;}
.ye7{bottom:357.096450px;}
.y120{bottom:362.385900px;}
.y5e{bottom:363.495150px;}
.y21{bottom:366.008550px;}
.yaf{bottom:367.162650px;}
.y11f{bottom:377.505900px;}
.ye6{bottom:378.509400px;}
.y5d{bottom:380.295150px;}
.yae{bottom:382.282500px;}
.y20{bottom:382.808550px;}
.y11e{bottom:392.625900px;}
.ye5{bottom:393.629400px;}
.y5c{bottom:397.095150px;}
.yad{bottom:397.402650px;}
.y1f{bottom:399.608550px;}
.y11d{bottom:411.997950px;}
.yac{bottom:412.522500px;}
.y5b{bottom:413.895150px;}
.ye4{bottom:415.042350px;}
.y1e{bottom:416.408550px;}
.y11c{bottom:427.117950px;}
.yab{bottom:427.642500px;}
.ye3{bottom:430.162350px;}
.y5a{bottom:430.695150px;}
.y1d{bottom:433.208550px;}
.y11b{bottom:442.237950px;}
.ye2{bottom:445.282350px;}
.y59{bottom:447.495150px;}
.yaa{bottom:447.567300px;}
.y1c{bottom:450.008550px;}
.y11a{bottom:457.357950px;}
.ya9{bottom:462.687300px;}
.y58{bottom:464.295150px;}
.ye1{bottom:466.695300px;}
.y119{bottom:476.729850px;}
.y57{bottom:481.095150px;}
.ye0{bottom:481.815300px;}
.ya8{bottom:482.611950px;}
.y118{bottom:491.849850px;}
.ydf{bottom:496.935300px;}
.ya7{bottom:497.732100px;}
.y56{bottom:497.895150px;}
.y1b{bottom:503.506800px;}
.y117{bottom:506.969850px;}
.yde{bottom:512.055300px;}
.ya6{bottom:512.851950px;}
.y55{bottom:514.695150px;}
.y116{bottom:522.089850px;}
.y1a{bottom:522.631800px;}
.ydd{bottom:527.175300px;}
.y54{bottom:531.495150px;}
.ya5{bottom:532.776750px;}
.y115{bottom:537.209850px;}
.ya4{bottom:547.896750px;}
.y53{bottom:548.295150px;}
.ydc{bottom:548.588100px;}
.y19{bottom:550.237650px;}
.y114{bottom:552.329850px;}
.ya3{bottom:563.016750px;}
.ydb{bottom:563.708250px;}
.y52{bottom:565.095150px;}
.y113{bottom:567.449850px;}
.y18{bottom:577.843650px;}
.ya2{bottom:578.136750px;}
.yda{bottom:578.828100px;}
.y51{bottom:581.895150px;}
.y112{bottom:586.821900px;}
.yd9{bottom:593.948100px;}
.y17{bottom:597.148650px;}
.ya1{bottom:598.061400px;}
.y50{bottom:598.695150px;}
.y111{bottom:601.941900px;}
.yd8{bottom:609.068100px;}
.ya0{bottom:613.181550px;}
.y4f{bottom:615.495150px;}
.y16{bottom:616.273650px;}
.y110{bottom:617.061900px;}
.yd7{bottom:624.188100px;}
.y9f{bottom:628.301400px;}
.y15{bottom:630.943650px;}
.y10f{bottom:632.181900px;}
.y4e{bottom:632.295150px;}
.yd6{bottom:639.308100px;}
.y9e{bottom:643.421400px;}
.y10e{bottom:647.301900px;}
.y4d{bottom:649.095150px;}
.y14{bottom:650.248650px;}
.yd5{bottom:654.428100px;}
.y9d{bottom:663.346200px;}
.y13{bottom:664.918650px;}
.y4c{bottom:665.895150px;}
.y10d{bottom:666.673800px;}
.yd4{bottom:669.548100px;}
.y9c{bottom:678.466200px;}
.y10c{bottom:681.793800px;}
.y4b{bottom:682.695150px;}
.y12{bottom:684.223650px;}
.yd3{bottom:684.668100px;}
.y9b{bottom:693.586200px;}
.y10b{bottom:696.913800px;}
.y4a{bottom:699.495150px;}
.yd2{bottom:699.788250px;}
.y11{bottom:703.348650px;}
.y9a{bottom:708.706200px;}
.y10a{bottom:712.033800px;}
.y49{bottom:716.295150px;}
.y10{bottom:718.018650px;}
.yd1{bottom:721.201050px;}
.y99{bottom:723.826200px;}
.y109{bottom:731.405850px;}
.y48{bottom:733.095150px;}
.yd0{bottom:736.321050px;}
.yf{bottom:737.323650px;}
.y98{bottom:738.946200px;}
.y108{bottom:746.525850px;}
.y47{bottom:749.895150px;}
.ycf{bottom:751.441050px;}
.ye{bottom:751.993650px;}
.y97{bottom:758.870850px;}
.y107{bottom:761.645850px;}
.yce{bottom:766.561050px;}
.y46{bottom:766.695150px;}
.yd{bottom:771.298500px;}
.y96{bottom:773.991000px;}
.y106{bottom:781.017750px;}
.y45{bottom:783.495150px;}
.ycd{bottom:787.974000px;}
.y95{bottom:789.111000px;}
.y105{bottom:796.137750px;}
.y44{bottom:800.295150px;}
.ycc{bottom:803.094000px;}
.y94{bottom:804.230850px;}
.y104{bottom:811.257750px;}
.yc{bottom:815.293500px;}
.y43{bottom:817.095150px;}
.ycb{bottom:818.214000px;}
.y93{bottom:824.155650px;}
.y103{bottom:826.377750px;}
.yca{bottom:833.334000px;}
.yb{bottom:833.443500px;}
.y42{bottom:833.895150px;}
.y92{bottom:839.275650px;}
.y102{bottom:841.497750px;}
.yc9{bottom:848.454000px;}
.y41{bottom:850.695150px;}
.ya{bottom:851.593500px;}
.y91{bottom:854.395650px;}
.y136{bottom:856.617750px;}
.y101{bottom:860.869650px;}
.y40{bottom:867.495150px;}
.y90{bottom:869.515650px;}
.yc8{bottom:869.866950px;}
.y135{bottom:871.737750px;}
.y100{bottom:875.989800px;}
.y3f{bottom:884.295150px;}
.yc7{bottom:884.986950px;}
.y134{bottom:886.857750px;}
.yff{bottom:891.109800px;}
.y8f{bottom:899.755650px;}
.yc6{bottom:900.106950px;}
.y3e{bottom:901.095150px;}
.y9{bottom:903.343500px;}
.yfe{bottom:906.229650px;}
.yc5{bottom:915.226800px;}
.y3d{bottom:917.895150px;}
.y133{bottom:921.349800px;}
.yfd{bottom:925.601700px;}
.y8{bottom:930.343500px;}
.y3c{bottom:934.695150px;}
.y132{bottom:936.469800px;}
.yc4{bottom:936.639750px;}
.yfc{bottom:940.721700px;}
.y8e{bottom:949.225650px;}
.y3b{bottom:951.495150px;}
.y131{bottom:951.589800px;}
.yc3{bottom:951.759750px;}
.yfb{bottom:955.841700px;}
.y7{bottom:957.343500px;}
.y8d{bottom:964.345650px;}
.y3a{bottom:968.295150px;}
.yfa{bottom:970.961700px;}
.yc2{bottom:973.172700px;}
.y8c{bottom:979.465650px;}
.y39{bottom:985.095150px;}
.yc1{bottom:988.292700px;}
.yf9{bottom:990.333750px;}
.y8b{bottom:994.585650px;}
.y38{bottom:1001.895150px;}
.yc0{bottom:1003.412700px;}
.yf8{bottom:1005.453600px;}
.y8a{bottom:1009.705650px;}
.ybf{bottom:1018.532700px;}
.y37{bottom:1018.695150px;}
.yf7{bottom:1020.573600px;}
.y3{bottom:1021.123050px;}
.y89{bottom:1024.825650px;}
.y36{bottom:1035.495150px;}
.y130{bottom:1035.693750px;}
.y88{bottom:1039.945650px;}
.y35{bottom:1052.295150px;}
.y87{bottom:1055.065650px;}
.y34{bottom:1069.095150px;}
.y86{bottom:1070.185650px;}
.y6{bottom:1097.480100px;}
.y5{bottom:1097.690850px;}
.y2{bottom:1104.201450px;}
.y4{bottom:1120.136550px;}
.h9{height:25.110000px;}
.h6{height:34.042969px;}
.hb{height:34.453125px;}
.h3{height:38.448000px;}
.hc{height:38.556000px;}
.h7{height:39.493652px;}
.ha{height:42.930000px;}
.h5{height:45.628725px;}
.h2{height:47.700000px;}
.h8{height:52.470000px;}
.h4{height:64.260000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:86.433000px;}
.x1{left:87.790950px;}
.x14{left:90.871050px;}
.x11{left:95.652450px;}
.x13{left:103.590900px;}
.xf{left:108.503700px;}
.x10{left:114.544650px;}
.xd{left:120.792900px;}
.xb{left:130.892100px;}
.x6{left:176.536650px;}
.x12{left:200.092650px;}
.x1f{left:231.303300px;}
.x9{left:239.777400px;}
.x16{left:247.187700px;}
.x8{left:274.048800px;}
.xa{left:321.482250px;}
.x7{left:323.250750px;}
.x18{left:327.952500px;}
.xc{left:332.374350px;}
.x17{left:352.548150px;}
.x3{left:369.068850px;}
.x15{left:379.897200px;}
.x1c{left:400.716300px;}
.x2{left:402.499800px;}
.xe{left:411.888000px;}
.x19{left:457.086600px;}
.x1a{left:474.094500px;}
.x1d{left:491.102400px;}
.x1e{left:576.304200px;}
.x4{left:642.809850px;}
.x1b{left:783.809850px;}
@media print{
.v1{vertical-align:-25.066133pt;}
.v4{vertical-align:-15.840000pt;}
.v2{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.360000pt;}
.ls25{letter-spacing:-5.600000pt;}
.ls27{letter-spacing:-5.173333pt;}
.ls2c{letter-spacing:-4.704000pt;}
.ls34{letter-spacing:-3.120000pt;}
.ls7{letter-spacing:-3.093333pt;}
.ls13{letter-spacing:-2.133333pt;}
.ls2b{letter-spacing:-2.026667pt;}
.ls1b{letter-spacing:-1.920000pt;}
.ls15{letter-spacing:-1.440000pt;}
.ls20{letter-spacing:-1.200000pt;}
.ls2a{letter-spacing:-1.066667pt;}
.ls17{letter-spacing:-1.013333pt;}
.ls28{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.912000pt;}
.ls8{letter-spacing:-0.906667pt;}
.lsa{letter-spacing:-0.853333pt;}
.ls30{letter-spacing:-0.816000pt;}
.ls38{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls33{letter-spacing:-0.672000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.624000pt;}
.ls14{letter-spacing:-0.586667pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.432000pt;}
.ls26{letter-spacing:-0.426667pt;}
.ls1f{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls2e{letter-spacing:-0.336000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.266667pt;}
.ls2d{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.158933pt;}
.ls10{letter-spacing:0.159467pt;}
.lsf{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls37{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls35{letter-spacing:0.288000pt;}
.ls32{letter-spacing:0.336000pt;}
.lse{letter-spacing:0.426667pt;}
.ls36{letter-spacing:0.624000pt;}
.ls31{letter-spacing:0.672000pt;}
.ls2f{letter-spacing:0.960000pt;}
.ls24{letter-spacing:1.239467pt;}
.ls0{letter-spacing:1.976000pt;}
.ls2{letter-spacing:2.280000pt;}
.ls1{letter-spacing:2.294400pt;}
.ls22{letter-spacing:3.277333pt;}
.ls23{letter-spacing:4.073600pt;}
.lsd{letter-spacing:8.422400pt;}
.ws4{word-spacing:-21.696000pt;}
.ws1{word-spacing:-17.360000pt;}
.ws5{word-spacing:-13.730667pt;}
.ws2{word-spacing:-13.426667pt;}
.ws54{word-spacing:-12.533333pt;}
.ws9{word-spacing:-12.373333pt;}
.ws53{word-spacing:-12.320000pt;}
.ws4f{word-spacing:-12.266667pt;}
.wsb{word-spacing:-12.213333pt;}
.ws52{word-spacing:-12.160000pt;}
.ws8{word-spacing:-12.106667pt;}
.wsd{word-spacing:-12.000000pt;}
.ws51{word-spacing:-11.946667pt;}
.ws55{word-spacing:-11.893333pt;}
.ws4b{word-spacing:-11.840000pt;}
.ws7{word-spacing:-11.733333pt;}
.wsc{word-spacing:-11.680000pt;}
.wscc{word-spacing:-11.626667pt;}
.wse{word-spacing:-11.573333pt;}
.ws4e{word-spacing:-11.520000pt;}
.wsa{word-spacing:-11.466667pt;}
.ws3{word-spacing:-11.450667pt;}
.ws4c{word-spacing:-11.413333pt;}
.ws110{word-spacing:-11.376000pt;}
.ws4d{word-spacing:-11.306667pt;}
.ws50{word-spacing:-11.200000pt;}
.wsce{word-spacing:-11.146667pt;}
.ws111{word-spacing:-11.088000pt;}
.wsd0{word-spacing:-11.040000pt;}
.ws15a{word-spacing:-10.992000pt;}
.wsa6{word-spacing:-10.896000pt;}
.wsd1{word-spacing:-10.773333pt;}
.ws112{word-spacing:-10.752000pt;}
.ws15e{word-spacing:-10.704000pt;}
.ws10f{word-spacing:-10.656000pt;}
.ws10e{word-spacing:-10.560000pt;}
.wsad{word-spacing:-10.512000pt;}
.ws15f{word-spacing:-10.464000pt;}
.wsd4{word-spacing:-10.416000pt;}
.ws10c{word-spacing:-10.368000pt;}
.ws160{word-spacing:-10.272000pt;}
.ws161{word-spacing:-10.224000pt;}
.ws10b{word-spacing:-10.176000pt;}
.wsd3{word-spacing:-10.080000pt;}
.ws15b{word-spacing:-9.936000pt;}
.ws15c{word-spacing:-9.744000pt;}
.ws162{word-spacing:-9.696000pt;}
.ws10d{word-spacing:-9.072000pt;}
.ws6{word-spacing:-7.724053pt;}
.ws15d{word-spacing:-7.296000pt;}
.wscd{word-spacing:-6.933333pt;}
.wscb{word-spacing:-6.506667pt;}
.ws106{word-spacing:-2.928000pt;}
.ws5f{word-spacing:-2.613333pt;}
.wsa5{word-spacing:-2.581333pt;}
.ws8a{word-spacing:-2.400000pt;}
.wsbd{word-spacing:-2.293333pt;}
.ws71{word-spacing:-2.186667pt;}
.ws166{word-spacing:-2.160000pt;}
.ws27{word-spacing:-2.133333pt;}
.ws16e{word-spacing:-2.112000pt;}
.ws20{word-spacing:-2.080000pt;}
.ws136{word-spacing:-2.064000pt;}
.ws7b{word-spacing:-1.973333pt;}
.ws13d{word-spacing:-1.968000pt;}
.wsea{word-spacing:-1.920000pt;}
.wsd9{word-spacing:-1.813333pt;}
.wsd2{word-spacing:-1.770667pt;}
.wsed{word-spacing:-1.760000pt;}
.wsc6{word-spacing:-1.680000pt;}
.ws95{word-spacing:-1.653333pt;}
.ws157{word-spacing:-1.584000pt;}
.ws168{word-spacing:-1.536000pt;}
.ws149{word-spacing:-1.488000pt;}
.ws137{word-spacing:-1.440000pt;}
.ws186{word-spacing:-1.392000pt;}
.ws59{word-spacing:-1.386667pt;}
.ws11a{word-spacing:-1.344000pt;}
.ws5b{word-spacing:-1.333333pt;}
.ws133{word-spacing:-1.248000pt;}
.ws41{word-spacing:-1.226667pt;}
.ws11f{word-spacing:-1.200000pt;}
.ws91{word-spacing:-1.173333pt;}
.ws24{word-spacing:-1.120000pt;}
.ws8b{word-spacing:-1.066667pt;}
.wsdb{word-spacing:-1.013333pt;}
.ws150{word-spacing:-1.008000pt;}
.ws34{word-spacing:-0.960000pt;}
.wsc7{word-spacing:-0.912000pt;}
.wsf6{word-spacing:-0.906667pt;}
.ws10a{word-spacing:-0.864000pt;}
.ws18{word-spacing:-0.853333pt;}
.ws109{word-spacing:-0.816000pt;}
.ws97{word-spacing:-0.800000pt;}
.ws65{word-spacing:-0.746667pt;}
.ws16c{word-spacing:-0.720000pt;}
.wsda{word-spacing:-0.693333pt;}
.ws107{word-spacing:-0.672000pt;}
.wsc1{word-spacing:-0.640000pt;}
.ws11d{word-spacing:-0.624000pt;}
.ws100{word-spacing:-0.586667pt;}
.ws14d{word-spacing:-0.576000pt;}
.ws1b{word-spacing:-0.533333pt;}
.ws16b{word-spacing:-0.528000pt;}
.ws35{word-spacing:-0.480000pt;}
.ws151{word-spacing:-0.432000pt;}
.ws26{word-spacing:-0.426667pt;}
.ws155{word-spacing:-0.384000pt;}
.ws6e{word-spacing:-0.320000pt;}
.ws17c{word-spacing:-0.288000pt;}
.ws25{word-spacing:-0.266667pt;}
.wsa2{word-spacing:-0.213333pt;}
.ws8d{word-spacing:-0.160000pt;}
.wsaf{word-spacing:-0.106667pt;}
.ws134{word-spacing:-0.096000pt;}
.wsa3{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.048000pt;}
.wsf{word-spacing:0.000000pt;}
.ws13b{word-spacing:0.048000pt;}
.wse6{word-spacing:0.053333pt;}
.ws16a{word-spacing:0.096000pt;}
.ws6a{word-spacing:0.160000pt;}
.ws152{word-spacing:0.192000pt;}
.wsb4{word-spacing:0.213333pt;}
.ws56{word-spacing:0.266667pt;}
.ws12c{word-spacing:0.288000pt;}
.ws32{word-spacing:0.320000pt;}
.ws141{word-spacing:0.336000pt;}
.ws58{word-spacing:0.373333pt;}
.wsc5{word-spacing:0.432000pt;}
.ws3d{word-spacing:0.480000pt;}
.ws17d{word-spacing:0.528000pt;}
.ws158{word-spacing:0.576000pt;}
.wsab{word-spacing:0.624000pt;}
.ws1a{word-spacing:0.640000pt;}
.wsf0{word-spacing:0.693333pt;}
.ws9a{word-spacing:0.746667pt;}
.wsb0{word-spacing:0.800000pt;}
.ws73{word-spacing:0.853333pt;}
.ws135{word-spacing:0.864000pt;}
.ws6f{word-spacing:0.906667pt;}
.wsc8{word-spacing:0.912000pt;}
.ws63{word-spacing:0.960000pt;}
.ws16d{word-spacing:1.008000pt;}
.ws33{word-spacing:1.013333pt;}
.wsfc{word-spacing:1.066667pt;}
.ws101{word-spacing:1.104000pt;}
.wsb9{word-spacing:1.120000pt;}
.wsca{word-spacing:1.152000pt;}
.ws7c{word-spacing:1.173333pt;}
.ws2a{word-spacing:1.226667pt;}
.ws77{word-spacing:1.333333pt;}
.ws117{word-spacing:1.344000pt;}
.wsa4{word-spacing:1.386667pt;}
.ws11e{word-spacing:1.392000pt;}
.ws3e{word-spacing:1.440000pt;}
.ws165{word-spacing:1.488000pt;}
.wsfb{word-spacing:1.493333pt;}
.ws102{word-spacing:1.536000pt;}
.ws82{word-spacing:1.546667pt;}
.ws115{word-spacing:1.584000pt;}
.ws81{word-spacing:1.600000pt;}
.ws142{word-spacing:1.632000pt;}
.wse4{word-spacing:1.653333pt;}
.ws114{word-spacing:1.680000pt;}
.wse9{word-spacing:1.706667pt;}
.ws131{word-spacing:1.728000pt;}
.ws83{word-spacing:1.760000pt;}
.wscf{word-spacing:1.770667pt;}
.ws84{word-spacing:1.813333pt;}
.wsac{word-spacing:1.824000pt;}
.ws2f{word-spacing:1.866667pt;}
.ws144{word-spacing:1.872000pt;}
.ws57{word-spacing:1.920000pt;}
.wse5{word-spacing:1.973333pt;}
.ws11{word-spacing:1.992000pt;}
.ws170{word-spacing:2.016000pt;}
.ws45{word-spacing:2.026667pt;}
.ws11b{word-spacing:2.112000pt;}
.ws60{word-spacing:2.133333pt;}
.ws15{word-spacing:2.160000pt;}
.ws85{word-spacing:2.186667pt;}
.ws177{word-spacing:2.208000pt;}
.ws42{word-spacing:2.240000pt;}
.ws10{word-spacing:2.280000pt;}
.ws28{word-spacing:2.293333pt;}
.ws147{word-spacing:2.304000pt;}
.ws89{word-spacing:2.346667pt;}
.ws126{word-spacing:2.352000pt;}
.ws96{word-spacing:2.400000pt;}
.ws7a{word-spacing:2.453333pt;}
.ws30{word-spacing:2.613333pt;}
.ws14{word-spacing:2.640000pt;}
.ws78{word-spacing:2.666667pt;}
.ws3c{word-spacing:2.720000pt;}
.ws14e{word-spacing:2.736000pt;}
.ws12d{word-spacing:2.784000pt;}
.ws31{word-spacing:2.826667pt;}
.ws139{word-spacing:2.832000pt;}
.ws9e{word-spacing:2.880000pt;}
.wsc4{word-spacing:2.928000pt;}
.ws44{word-spacing:2.933333pt;}
.ws2b{word-spacing:2.986667pt;}
.ws9f{word-spacing:3.040000pt;}
.ws14c{word-spacing:3.072000pt;}
.ws1d{word-spacing:3.093333pt;}
.ws43{word-spacing:3.146667pt;}
.ws185{word-spacing:3.168000pt;}
.wse1{word-spacing:3.200000pt;}
.ws121{word-spacing:3.216000pt;}
.ws21{word-spacing:3.253333pt;}
.ws12f{word-spacing:3.264000pt;}
.ws3f{word-spacing:3.306667pt;}
.ws13a{word-spacing:3.312000pt;}
.wsb3{word-spacing:3.360000pt;}
.ws104{word-spacing:3.408000pt;}
.wsa1{word-spacing:3.413333pt;}
.ws12{word-spacing:3.440000pt;}
.ws125{word-spacing:3.456000pt;}
.ws172{word-spacing:3.504000pt;}
.ws13{word-spacing:3.520000pt;}
.ws164{word-spacing:3.600000pt;}
.ws130{word-spacing:3.648000pt;}
.ws16f{word-spacing:3.696000pt;}
.wsb7{word-spacing:3.733333pt;}
.wsb8{word-spacing:3.786667pt;}
.ws132{word-spacing:3.792000pt;}
.ws17{word-spacing:3.840000pt;}
.wsf2{word-spacing:3.893333pt;}
.ws176{word-spacing:3.936000pt;}
.ws1e{word-spacing:3.946667pt;}
.ws159{word-spacing:3.984000pt;}
.ws88{word-spacing:4.000000pt;}
.wsfd{word-spacing:4.053333pt;}
.ws48{word-spacing:4.106667pt;}
.ws12a{word-spacing:4.128000pt;}
.ws2e{word-spacing:4.160000pt;}
.wsa0{word-spacing:4.213333pt;}
.ws154{word-spacing:4.224000pt;}
.ws68{word-spacing:4.266667pt;}
.ws11c{word-spacing:4.272000pt;}
.wsaa{word-spacing:4.320000pt;}
.wsf4{word-spacing:4.373333pt;}
.ws129{word-spacing:4.416000pt;}
.ws29{word-spacing:4.426667pt;}
.ws118{word-spacing:4.464000pt;}
.wsd7{word-spacing:4.480000pt;}
.ws36{word-spacing:4.533333pt;}
.wsf3{word-spacing:4.586667pt;}
.ws7f{word-spacing:4.640000pt;}
.ws143{word-spacing:4.656000pt;}
.ws6d{word-spacing:4.693333pt;}
.ws105{word-spacing:4.704000pt;}
.wsa7{word-spacing:4.746667pt;}
.ws12b{word-spacing:4.752000pt;}
.ws98{word-spacing:4.800000pt;}
.ws138{word-spacing:4.848000pt;}
.wsf1{word-spacing:4.853333pt;}
.ws179{word-spacing:4.896000pt;}
.ws3b{word-spacing:4.960000pt;}
.ws13c{word-spacing:4.992000pt;}
.wse0{word-spacing:5.013333pt;}
.wsbf{word-spacing:5.066667pt;}
.ws19{word-spacing:5.120000pt;}
.wsd8{word-spacing:5.173333pt;}
.ws120{word-spacing:5.232000pt;}
.wsf5{word-spacing:5.280000pt;}
.ws156{word-spacing:5.328000pt;}
.wsef{word-spacing:5.333333pt;}
.ws153{word-spacing:5.376000pt;}
.wsb5{word-spacing:5.386667pt;}
.ws93{word-spacing:5.440000pt;}
.ws14a{word-spacing:5.472000pt;}
.ws40{word-spacing:5.493333pt;}
.ws145{word-spacing:5.520000pt;}
.ws1f{word-spacing:5.546667pt;}
.ws64{word-spacing:5.600000pt;}
.ws13e{word-spacing:5.616000pt;}
.ws116{word-spacing:5.664000pt;}
.ws79{word-spacing:5.706667pt;}
.ws169{word-spacing:5.712000pt;}
.ws69{word-spacing:5.760000pt;}
.ws163{word-spacing:5.808000pt;}
.ws17e{word-spacing:5.856000pt;}
.wsb2{word-spacing:5.866667pt;}
.ws127{word-spacing:5.904000pt;}
.ws148{word-spacing:5.952000pt;}
.ws70{word-spacing:5.973333pt;}
.ws22{word-spacing:6.026667pt;}
.ws167{word-spacing:6.048000pt;}
.ws46{word-spacing:6.080000pt;}
.ws13f{word-spacing:6.096000pt;}
.ws47{word-spacing:6.133333pt;}
.ws146{word-spacing:6.144000pt;}
.ws1c{word-spacing:6.186667pt;}
.ws140{word-spacing:6.192000pt;}
.wsc9{word-spacing:6.240000pt;}
.wsb6{word-spacing:6.293333pt;}
.ws14b{word-spacing:6.336000pt;}
.ws178{word-spacing:6.384000pt;}
.ws61{word-spacing:6.400000pt;}
.ws62{word-spacing:6.453333pt;}
.ws8c{word-spacing:6.506667pt;}
.ws124{word-spacing:6.576000pt;}
.ws67{word-spacing:6.666667pt;}
.ws182{word-spacing:6.816000pt;}
.ws38{word-spacing:6.826667pt;}
.ws80{word-spacing:6.880000pt;}
.ws94{word-spacing:6.933333pt;}
.ws6b{word-spacing:6.986667pt;}
.ws66{word-spacing:7.040000pt;}
.ws5d{word-spacing:7.146667pt;}
.ws5c{word-spacing:7.200000pt;}
.wsd5{word-spacing:7.253333pt;}
.ws128{word-spacing:7.392000pt;}
.ws3a{word-spacing:7.413333pt;}
.ws122{word-spacing:7.488000pt;}
.wsfe{word-spacing:7.520000pt;}
.wsc3{word-spacing:7.536000pt;}
.wsec{word-spacing:7.573333pt;}
.wsff{word-spacing:7.680000pt;}
.wsa9{word-spacing:7.733333pt;}
.ws39{word-spacing:7.786667pt;}
.ws119{word-spacing:7.824000pt;}
.ws6c{word-spacing:7.946667pt;}
.ws123{word-spacing:8.016000pt;}
.ws7e{word-spacing:8.053333pt;}
.ws17a{word-spacing:8.208000pt;}
.wsd6{word-spacing:8.213333pt;}
.ws14f{word-spacing:8.352000pt;}
.ws5e{word-spacing:8.426667pt;}
.ws171{word-spacing:8.448000pt;}
.ws90{word-spacing:8.586667pt;}
.ws7d{word-spacing:8.640000pt;}
.wsc2{word-spacing:8.693333pt;}
.wsee{word-spacing:8.853333pt;}
.wsba{word-spacing:8.960000pt;}
.wse3{word-spacing:9.226667pt;}
.ws23{word-spacing:9.280000pt;}
.ws184{word-spacing:9.312000pt;}
.ws9b{word-spacing:9.386667pt;}
.wse8{word-spacing:9.546667pt;}
.wsf7{word-spacing:9.813333pt;}
.wsb1{word-spacing:10.026667pt;}
.wseb{word-spacing:10.186667pt;}
.wse2{word-spacing:10.240000pt;}
.wsf8{word-spacing:10.346667pt;}
.ws16{word-spacing:10.453333pt;}
.ws5a{word-spacing:10.613333pt;}
.wsdd{word-spacing:10.666667pt;}
.ws103{word-spacing:10.800000pt;}
.ws49{word-spacing:10.880000pt;}
.ws4a{word-spacing:10.986667pt;}
.wsf9{word-spacing:11.146667pt;}
.ws113{word-spacing:11.328000pt;}
.ws8e{word-spacing:11.413333pt;}
.ws8f{word-spacing:11.520000pt;}
.ws12e{word-spacing:11.664000pt;}
.wsde{word-spacing:11.786667pt;}
.wsfa{word-spacing:12.053333pt;}
.wsbe{word-spacing:12.746667pt;}
.wsdf{word-spacing:12.800000pt;}
.wsbc{word-spacing:13.013333pt;}
.ws86{word-spacing:13.066667pt;}
.ws75{word-spacing:13.173333pt;}
.ws74{word-spacing:13.333333pt;}
.wsc0{word-spacing:13.386667pt;}
.ws87{word-spacing:13.546667pt;}
.ws76{word-spacing:13.813333pt;}
.ws9d{word-spacing:14.026667pt;}
.wsa8{word-spacing:14.293333pt;}
.ws183{word-spacing:14.496000pt;}
.ws175{word-spacing:14.544000pt;}
.ws99{word-spacing:14.826667pt;}
.ws9c{word-spacing:14.933333pt;}
.ws173{word-spacing:14.976000pt;}
.ws174{word-spacing:15.120000pt;}
.ws17b{word-spacing:15.792000pt;}
.ws72{word-spacing:16.426667pt;}
.wsae{word-spacing:16.586667pt;}
.wsbb{word-spacing:16.693333pt;}
.ws92{word-spacing:17.653333pt;}
.ws37{word-spacing:17.760000pt;}
.wse7{word-spacing:18.506667pt;}
.ws180{word-spacing:22.512000pt;}
.ws108{word-spacing:22.656000pt;}
.ws181{word-spacing:22.896000pt;}
.wsdc{word-spacing:24.693333pt;}
.ws17f{word-spacing:31.008000pt;}
.ws2d{word-spacing:37.333333pt;}
.ws2c{word-spacing:38.560000pt;}
._f{margin-left:-26.356267pt;}
._10{margin-left:-15.040000pt;}
._d{margin-left:-8.089067pt;}
._8{margin-left:-7.162667pt;}
._7{margin-left:-5.997333pt;}
._6{margin-left:-4.458667pt;}
._4{margin-left:-3.277867pt;}
._3{margin-left:-1.910400pt;}
._0{margin-left:-0.964800pt;}
._1{width:1.600000pt;}
._5{width:2.672533pt;}
._11{width:3.624000pt;}
._b{width:4.618667pt;}
._a{width:5.535467pt;}
._c{width:6.592000pt;}
._e{width:7.849600pt;}
._9{width:10.339200pt;}
._2{width:1332.945067pt;}
.fs8{font-size:27.840000pt;}
.fs7{font-size:34.026667pt;}
.fs9{font-size:42.666667pt;}
.fs5{font-size:44.266667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:80.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:55.408000pt;}
.y32{bottom:67.141333pt;}
.y1{bottom:67.787200pt;}
.y31{bottom:78.874667pt;}
.yf6{bottom:99.038000pt;}
.y6d{bottom:99.106800pt;}
.ybe{bottom:99.141467pt;}
.y85{bottom:99.266800pt;}
.y72{bottom:99.279867pt;}
.y7b{bottom:99.838400pt;}
.y75{bottom:99.892133pt;}
.y30{bottom:101.340933pt;}
.y12f{bottom:105.402800pt;}
.yf5{bottom:112.478000pt;}
.ybd{bottom:112.581600pt;}
.y84{bottom:112.706800pt;}
.y71{bottom:112.719867pt;}
.y7a{bottom:113.278400pt;}
.y74{bottom:113.332133pt;}
.y6c{bottom:114.040133pt;}
.y2f{bottom:116.274267pt;}
.y12e{bottom:118.842800pt;}
.yf4{bottom:125.918000pt;}
.y83{bottom:126.146800pt;}
.y70{bottom:126.159867pt;}
.y79{bottom:126.718400pt;}
.y73{bottom:126.772133pt;}
.y6b{bottom:128.973467pt;}
.ybc{bottom:130.292400pt;}
.y2e{bottom:131.207600pt;}
.y12d{bottom:136.062267pt;}
.y82{bottom:139.586800pt;}
.y6f{bottom:139.599867pt;}
.y78{bottom:140.158400pt;}
.ybb{bottom:143.732400pt;}
.y6a{bottom:143.906800pt;}
.yf3{bottom:144.951733pt;}
.y2d{bottom:146.140933pt;}
.y12c{bottom:149.502267pt;}
.y81{bottom:153.026800pt;}
.y6e{bottom:153.039867pt;}
.y77{bottom:153.598400pt;}
.yf2{bottom:158.391733pt;}
.y69{bottom:158.840133pt;}
.y2c{bottom:161.074267pt;}
.yba{bottom:161.443333pt;}
.y12b{bottom:162.942267pt;}
.y80{bottom:166.466800pt;}
.y76{bottom:167.038400pt;}
.yf1{bottom:171.831733pt;}
.y68{bottom:173.773467pt;}
.yb9{bottom:174.883333pt;}
.y2b{bottom:176.007600pt;}
.y12a{bottom:176.382267pt;}
.y7f{bottom:179.906800pt;}
.yf0{bottom:185.271733pt;}
.yb8{bottom:188.323200pt;}
.y67{bottom:188.706800pt;}
.y129{bottom:189.822267pt;}
.y2a{bottom:190.940933pt;}
.y7e{bottom:193.346800pt;}
.yef{bottom:198.711733pt;}
.y128{bottom:203.262267pt;}
.y66{bottom:203.640133pt;}
.y29{bottom:205.874267pt;}
.yb7{bottom:206.034133pt;}
.y7d{bottom:206.786800pt;}
.yee{bottom:212.151733pt;}
.y65{bottom:218.573467pt;}
.yb6{bottom:219.474133pt;}
.y127{bottom:220.481733pt;}
.y28{bottom:220.807600pt;}
.yed{bottom:231.185333pt;}
.yb5{bottom:232.914133pt;}
.y64{bottom:233.506800pt;}
.y7c{bottom:233.666800pt;}
.y126{bottom:233.921733pt;}
.y27{bottom:235.740933pt;}
.yec{bottom:244.625467pt;}
.y63{bottom:248.440133pt;}
.yb4{bottom:250.624933pt;}
.y26{bottom:250.674267pt;}
.y125{bottom:251.141333pt;}
.yeb{bottom:258.065467pt;}
.y62{bottom:263.373467pt;}
.yb3{bottom:264.065067pt;}
.y124{bottom:264.581333pt;}
.y25{bottom:265.607600pt;}
.yea{bottom:277.099067pt;}
.y123{bottom:278.021333pt;}
.y61{bottom:278.306800pt;}
.y24{bottom:280.540933pt;}
.yb2{bottom:281.775867pt;}
.ye9{bottom:290.539067pt;}
.y122{bottom:291.461333pt;}
.y60{bottom:293.240133pt;}
.yb1{bottom:295.215867pt;}
.y23{bottom:295.474267pt;}
.ye8{bottom:303.979067pt;}
.y5f{bottom:308.173467pt;}
.yb0{bottom:308.655867pt;}
.y121{bottom:308.680933pt;}
.y22{bottom:310.407600pt;}
.ye7{bottom:317.419067pt;}
.y120{bottom:322.120800pt;}
.y5e{bottom:323.106800pt;}
.y21{bottom:325.340933pt;}
.yaf{bottom:326.366800pt;}
.y11f{bottom:335.560800pt;}
.ye6{bottom:336.452800pt;}
.y5d{bottom:338.040133pt;}
.yae{bottom:339.806667pt;}
.y20{bottom:340.274267pt;}
.y11e{bottom:349.000800pt;}
.ye5{bottom:349.892800pt;}
.y5c{bottom:352.973467pt;}
.yad{bottom:353.246800pt;}
.y1f{bottom:355.207600pt;}
.y11d{bottom:366.220400pt;}
.yac{bottom:366.686667pt;}
.y5b{bottom:367.906800pt;}
.ye4{bottom:368.926533pt;}
.y1e{bottom:370.140933pt;}
.y11c{bottom:379.660400pt;}
.yab{bottom:380.126667pt;}
.ye3{bottom:382.366533pt;}
.y5a{bottom:382.840133pt;}
.y1d{bottom:385.074267pt;}
.y11b{bottom:393.100400pt;}
.ye2{bottom:395.806533pt;}
.y59{bottom:397.773467pt;}
.yaa{bottom:397.837600pt;}
.y1c{bottom:400.007600pt;}
.y11a{bottom:406.540400pt;}
.ya9{bottom:411.277600pt;}
.y58{bottom:412.706800pt;}
.ye1{bottom:414.840267pt;}
.y119{bottom:423.759867pt;}
.y57{bottom:427.640133pt;}
.ye0{bottom:428.280267pt;}
.ya8{bottom:428.988400pt;}
.y118{bottom:437.199867pt;}
.ydf{bottom:441.720267pt;}
.ya7{bottom:442.428533pt;}
.y56{bottom:442.573467pt;}
.y1b{bottom:447.561600pt;}
.y117{bottom:450.639867pt;}
.yde{bottom:455.160267pt;}
.ya6{bottom:455.868400pt;}
.y55{bottom:457.506800pt;}
.y116{bottom:464.079867pt;}
.y1a{bottom:464.561600pt;}
.ydd{bottom:468.600267pt;}
.y54{bottom:472.440133pt;}
.ya5{bottom:473.579333pt;}
.y115{bottom:477.519867pt;}
.ya4{bottom:487.019333pt;}
.y53{bottom:487.373467pt;}
.ydc{bottom:487.633867pt;}
.y19{bottom:489.100133pt;}
.y114{bottom:490.959867pt;}
.ya3{bottom:500.459333pt;}
.ydb{bottom:501.074000pt;}
.y52{bottom:502.306800pt;}
.y113{bottom:504.399867pt;}
.y18{bottom:513.638800pt;}
.ya2{bottom:513.899333pt;}
.yda{bottom:514.513867pt;}
.y51{bottom:517.240133pt;}
.y112{bottom:521.619467pt;}
.yd9{bottom:527.953867pt;}
.y17{bottom:530.798800pt;}
.ya1{bottom:531.610133pt;}
.y50{bottom:532.173467pt;}
.y111{bottom:535.059467pt;}
.yd8{bottom:541.393867pt;}
.ya0{bottom:545.050267pt;}
.y4f{bottom:547.106800pt;}
.y16{bottom:547.798800pt;}
.y110{bottom:548.499467pt;}
.yd7{bottom:554.833867pt;}
.y9f{bottom:558.490133pt;}
.y15{bottom:560.838800pt;}
.y10f{bottom:561.939467pt;}
.y4e{bottom:562.040133pt;}
.yd6{bottom:568.273867pt;}
.y9e{bottom:571.930133pt;}
.y10e{bottom:575.379467pt;}
.y4d{bottom:576.973467pt;}
.y14{bottom:577.998800pt;}
.yd5{bottom:581.713867pt;}
.y9d{bottom:589.641067pt;}
.y13{bottom:591.038800pt;}
.y4c{bottom:591.906800pt;}
.y10d{bottom:592.598933pt;}
.yd4{bottom:595.153867pt;}
.y9c{bottom:603.081067pt;}
.y10c{bottom:606.038933pt;}
.y4b{bottom:606.840133pt;}
.y12{bottom:608.198800pt;}
.yd3{bottom:608.593867pt;}
.y9b{bottom:616.521067pt;}
.y10b{bottom:619.478933pt;}
.y4a{bottom:621.773467pt;}
.yd2{bottom:622.034000pt;}
.y11{bottom:625.198800pt;}
.y9a{bottom:629.961067pt;}
.y10a{bottom:632.918933pt;}
.y49{bottom:636.706800pt;}
.y10{bottom:638.238800pt;}
.yd1{bottom:641.067600pt;}
.y99{bottom:643.401067pt;}
.y109{bottom:650.138533pt;}
.y48{bottom:651.640133pt;}
.yd0{bottom:654.507600pt;}
.yf{bottom:655.398800pt;}
.y98{bottom:656.841067pt;}
.y108{bottom:663.578533pt;}
.y47{bottom:666.573467pt;}
.ycf{bottom:667.947600pt;}
.ye{bottom:668.438800pt;}
.y97{bottom:674.551867pt;}
.y107{bottom:677.018533pt;}
.yce{bottom:681.387600pt;}
.y46{bottom:681.506800pt;}
.yd{bottom:685.598667pt;}
.y96{bottom:687.992000pt;}
.y106{bottom:694.238000pt;}
.y45{bottom:696.440133pt;}
.ycd{bottom:700.421333pt;}
.y95{bottom:701.432000pt;}
.y105{bottom:707.678000pt;}
.y44{bottom:711.373467pt;}
.ycc{bottom:713.861333pt;}
.y94{bottom:714.871867pt;}
.y104{bottom:721.118000pt;}
.yc{bottom:724.705333pt;}
.y43{bottom:726.306800pt;}
.ycb{bottom:727.301333pt;}
.y93{bottom:732.582800pt;}
.y103{bottom:734.558000pt;}
.yca{bottom:740.741333pt;}
.yb{bottom:740.838667pt;}
.y42{bottom:741.240133pt;}
.y92{bottom:746.022800pt;}
.y102{bottom:747.998000pt;}
.yc9{bottom:754.181333pt;}
.y41{bottom:756.173467pt;}
.ya{bottom:756.972000pt;}
.y91{bottom:759.462800pt;}
.y136{bottom:761.438000pt;}
.y101{bottom:765.217467pt;}
.y40{bottom:771.106800pt;}
.y90{bottom:772.902800pt;}
.yc8{bottom:773.215067pt;}
.y135{bottom:774.878000pt;}
.y100{bottom:778.657600pt;}
.y3f{bottom:786.040133pt;}
.yc7{bottom:786.655067pt;}
.y134{bottom:788.318000pt;}
.yff{bottom:792.097600pt;}
.y8f{bottom:799.782800pt;}
.yc6{bottom:800.095067pt;}
.y3e{bottom:800.973467pt;}
.y9{bottom:802.972000pt;}
.yfe{bottom:805.537467pt;}
.yc5{bottom:813.534933pt;}
.y3d{bottom:815.906800pt;}
.y133{bottom:818.977600pt;}
.yfd{bottom:822.757067pt;}
.y8{bottom:826.972000pt;}
.y3c{bottom:830.840133pt;}
.y132{bottom:832.417600pt;}
.yc4{bottom:832.568667pt;}
.yfc{bottom:836.197067pt;}
.y8e{bottom:843.756133pt;}
.y3b{bottom:845.773467pt;}
.y131{bottom:845.857600pt;}
.yc3{bottom:846.008667pt;}
.yfb{bottom:849.637067pt;}
.y7{bottom:850.972000pt;}
.y8d{bottom:857.196133pt;}
.y3a{bottom:860.706800pt;}
.yfa{bottom:863.077067pt;}
.yc2{bottom:865.042400pt;}
.y8c{bottom:870.636133pt;}
.y39{bottom:875.640133pt;}
.yc1{bottom:878.482400pt;}
.yf9{bottom:880.296667pt;}
.y8b{bottom:884.076133pt;}
.y38{bottom:890.573467pt;}
.yc0{bottom:891.922400pt;}
.yf8{bottom:893.736533pt;}
.y8a{bottom:897.516133pt;}
.ybf{bottom:905.362400pt;}
.y37{bottom:905.506800pt;}
.yf7{bottom:907.176533pt;}
.y3{bottom:907.664933pt;}
.y89{bottom:910.956133pt;}
.y36{bottom:920.440133pt;}
.y130{bottom:920.616667pt;}
.y88{bottom:924.396133pt;}
.y35{bottom:935.373467pt;}
.y87{bottom:937.836133pt;}
.y34{bottom:950.306800pt;}
.y86{bottom:951.276133pt;}
.y6{bottom:975.537867pt;}
.y5{bottom:975.725200pt;}
.y2{bottom:981.512400pt;}
.y4{bottom:995.676933pt;}
.h9{height:22.320000pt;}
.h6{height:30.260417pt;}
.hb{height:30.625000pt;}
.h3{height:34.176000pt;}
.hc{height:34.272000pt;}
.h7{height:35.105469pt;}
.ha{height:38.160000pt;}
.h5{height:40.558867pt;}
.h2{height:42.400000pt;}
.h8{height:46.640000pt;}
.h4{height:57.120000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:76.829333pt;}
.x1{left:78.036400pt;}
.x14{left:80.774267pt;}
.x11{left:85.024400pt;}
.x13{left:92.080800pt;}
.xf{left:96.447733pt;}
.x10{left:101.817467pt;}
.xd{left:107.371467pt;}
.xb{left:116.348533pt;}
.x6{left:156.921467pt;}
.x12{left:177.860133pt;}
.x1f{left:205.602933pt;}
.x9{left:213.135467pt;}
.x16{left:219.722400pt;}
.x8{left:243.598933pt;}
.xa{left:285.762000pt;}
.x7{left:287.334000pt;}
.x18{left:291.513333pt;}
.xc{left:295.443867pt;}
.x17{left:313.376133pt;}
.x3{left:328.061200pt;}
.x15{left:337.686400pt;}
.x1c{left:356.192267pt;}
.x2{left:357.777600pt;}
.xe{left:366.122667pt;}
.x19{left:406.299200pt;}
.x1a{left:421.417333pt;}
.x1d{left:436.535467pt;}
.x1e{left:512.270400pt;}
.x4{left:571.386533pt;}
.x1b{left:696.719867pt;}
}




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