
    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_71c6b7ae05449a1dd57202c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_dbe546414f8d001f9586342e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_4c3cb37606f5dd01b506c84c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752441;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_e93ae263d15860da9d7c482a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5020a53e360303312473d930.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_ddf2c85af5ccd6f1eee03301.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_e1de33347c4d22af95bee32b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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_a29710d4229c3462dc638950.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934082;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_58ca0758fd5afad2c3e213b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.934082;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);}
.v1{vertical-align:-84.816000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-18.300000px;}
.ls6{letter-spacing:-11.880000px;}
.ls57{letter-spacing:-11.820000px;}
.lsb{letter-spacing:-11.640000px;}
.ls7{letter-spacing:-11.460000px;}
.lsf{letter-spacing:-11.400000px;}
.ls1{letter-spacing:-11.280000px;}
.ls3{letter-spacing:-9.780000px;}
.ls15{letter-spacing:-9.660000px;}
.ls9{letter-spacing:-9.540000px;}
.ls56{letter-spacing:-9.480000px;}
.ls5{letter-spacing:-9.300000px;}
.ls2{letter-spacing:-9.240000px;}
.ls8{letter-spacing:-9.180000px;}
.lsa{letter-spacing:-9.120000px;}
.ls10{letter-spacing:-9.060000px;}
.ls58{letter-spacing:-9.000000px;}
.ls17{letter-spacing:-3.708000px;}
.ls32{letter-spacing:-2.556000px;}
.ls2c{letter-spacing:-1.488000px;}
.ls35{letter-spacing:-1.080000px;}
.ls49{letter-spacing:-0.846000px;}
.ls2b{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.654000px;}
.ls44{letter-spacing:-0.590400px;}
.ls43{letter-spacing:-0.576000px;}
.ls47{letter-spacing:-0.486000px;}
.ls2e{letter-spacing:-0.363600px;}
.ls36{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.334800px;}
.ls20{letter-spacing:-0.314400px;}
.ls1a{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.241200px;}
.ls52{letter-spacing:-0.222000px;}
.ls53{letter-spacing:-0.216000px;}
.ls4f{letter-spacing:-0.183600px;}
.ls54{letter-spacing:-0.180000px;}
.ls37{letter-spacing:-0.144000px;}
.ls48{letter-spacing:-0.096600px;}
.ls3d{letter-spacing:-0.066000px;}
.ls4a{letter-spacing:-0.064200px;}
.ls2d{letter-spacing:-0.048240px;}
.ls4{letter-spacing:-0.036000px;}
.ls3f{letter-spacing:-0.006480px;}
.ls13{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.005040px;}
.ls42{letter-spacing:0.036000px;}
.ls51{letter-spacing:0.059640px;}
.ls50{letter-spacing:0.105600px;}
.ls38{letter-spacing:0.116400px;}
.ls4b{letter-spacing:0.142800px;}
.ls33{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.163200px;}
.ls3a{letter-spacing:0.175800px;}
.ls30{letter-spacing:0.180000px;}
.ls46{letter-spacing:0.216000px;}
.ls41{letter-spacing:0.234000px;}
.ls3b{letter-spacing:0.237000px;}
.ls45{letter-spacing:0.247800px;}
.ls4d{letter-spacing:0.249600px;}
.ls3c{letter-spacing:0.253200px;}
.ls4c{letter-spacing:0.286800px;}
.ls3e{letter-spacing:0.287400px;}
.ls34{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.393600px;}
.ls31{letter-spacing:0.425400px;}
.ls4e{letter-spacing:0.432000px;}
.ls27{letter-spacing:22.079808px;}
.ls19{letter-spacing:32.349600px;}
.ls18{letter-spacing:32.400000px;}
.ls29{letter-spacing:57.549600px;}
.ls28{letter-spacing:57.600000px;}
.ls22{letter-spacing:65.865600px;}
.ls21{letter-spacing:65.916000px;}
.ls1e{letter-spacing:97.509600px;}
.ls1d{letter-spacing:97.560000px;}
.ls1c{letter-spacing:111.549600px;}
.ls1b{letter-spacing:111.600000px;}
.ls1f{letter-spacing:124.200000px;}
.ls11{letter-spacing:137.865600px;}
.ls12{letter-spacing:137.916000px;}
.ls26{letter-spacing:157.209600px;}
.ls24{letter-spacing:157.260000px;}
.ls25{letter-spacing:157.284000px;}
.lsd{letter-spacing:194.337600px;}
.lsc{letter-spacing:194.388000px;}
.ls23{letter-spacing:195.393600px;}
.ls55{letter-spacing:202.704000px;}
.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;}
}
.ws9f{word-spacing:-65.120544px;}
.ws9e{word-spacing:-65.088000px;}
.ws39{word-spacing:-60.111840px;}
.ws3f{word-spacing:-59.184000px;}
.ws1{word-spacing:-52.916544px;}
.ws2{word-spacing:-52.884000px;}
.ws38{word-spacing:-51.269760px;}
.ws10{word-spacing:-48.848544px;}
.wsf{word-spacing:-48.816000px;}
.ws18{word-spacing:-43.478784px;}
.ws98{word-spacing:-43.446240px;}
.ws1d{word-spacing:-37.946304px;}
.ws28{word-spacing:-37.913760px;}
.ws48{word-spacing:-32.576544px;}
.ws11{word-spacing:-32.544000px;}
.ws93{word-spacing:-32.543994px;}
.ws7d{word-spacing:-32.256000px;}
.ws15{word-spacing:-31.922544px;}
.ws2a{word-spacing:-31.824000px;}
.ws16{word-spacing:-27.206784px;}
.ws17{word-spacing:-27.174240px;}
.ws5b{word-spacing:-27.167760px;}
.ws7f{word-spacing:-26.688240px;}
.ws82{word-spacing:-26.328240px;}
.ws1f{word-spacing:-24.440544px;}
.ws1e{word-spacing:-24.408000px;}
.ws22{word-spacing:-20.700000px;}
.ws3{word-spacing:-19.038240px;}
.ws8c{word-spacing:-16.591344px;}
.ws7e{word-spacing:-16.488000px;}
.ws8b{word-spacing:-16.447344px;}
.ws8a{word-spacing:-16.304544px;}
.ws37{word-spacing:-16.272000px;}
.ws41{word-spacing:-15.912000px;}
.ws40{word-spacing:-15.192000px;}
.ws73{word-spacing:-14.970240px;}
.ws74{word-spacing:-14.379840px;}
.ws89{word-spacing:-3.333456px;}
.ws6d{word-spacing:-1.980000px;}
.ws53{word-spacing:-1.909920px;}
.ws4c{word-spacing:-1.818432px;}
.ws6f{word-spacing:-1.664928px;}
.ws46{word-spacing:-1.596000px;}
.ws3a{word-spacing:-1.482120px;}
.ws34{word-spacing:-1.464000px;}
.ws88{word-spacing:-1.440000px;}
.ws7b{word-spacing:-1.416000px;}
.ws50{word-spacing:-1.369920px;}
.ws4f{word-spacing:-1.368960px;}
.ws54{word-spacing:-1.310400px;}
.ws55{word-spacing:-1.241520px;}
.ws44{word-spacing:-1.152000px;}
.ws20{word-spacing:-1.140960px;}
.ws78{word-spacing:-1.136256px;}
.ws4e{word-spacing:-1.108800px;}
.ws6e{word-spacing:-1.008000px;}
.ws58{word-spacing:-1.007280px;}
.ws52{word-spacing:-0.961560px;}
.ws7a{word-spacing:-0.927936px;}
.ws4d{word-spacing:-0.890496px;}
.ws12{word-spacing:-0.864000px;}
.ws70{word-spacing:-0.828000px;}
.ws2b{word-spacing:-0.744000px;}
.ws63{word-spacing:-0.725040px;}
.ws25{word-spacing:-0.712800px;}
.ws26{word-spacing:-0.670080px;}
.ws24{word-spacing:-0.657792px;}
.ws66{word-spacing:-0.600480px;}
.ws42{word-spacing:-0.576000px;}
.ws95{word-spacing:-0.575960px;}
.ws64{word-spacing:-0.544320px;}
.ws8d{word-spacing:-0.520872px;}
.ws83{word-spacing:-0.474480px;}
.ws51{word-spacing:-0.469440px;}
.ws4a{word-spacing:-0.456000px;}
.ws3e{word-spacing:-0.437040px;}
.ws7c{word-spacing:-0.408000px;}
.ws57{word-spacing:-0.402720px;}
.ws67{word-spacing:-0.396000px;}
.ws5a{word-spacing:-0.377760px;}
.ws94{word-spacing:-0.345600px;}
.ws33{word-spacing:-0.312000px;}
.ws96{word-spacing:-0.288000px;}
.ws80{word-spacing:-0.287280px;}
.ws65{word-spacing:-0.275040px;}
.ws8e{word-spacing:-0.231600px;}
.ws59{word-spacing:-0.224640px;}
.ws23{word-spacing:-0.144000px;}
.ws36{word-spacing:-0.143971px;}
.ws87{word-spacing:-0.111264px;}
.ws5d{word-spacing:-0.108000px;}
.ws81{word-spacing:-0.090144px;}
.ws9d{word-spacing:-0.090000px;}
.ws86{word-spacing:-0.029040px;}
.ws4{word-spacing:0.000000px;}
.ws6b{word-spacing:0.048000px;}
.ws79{word-spacing:0.108864px;}
.ws13{word-spacing:0.120000px;}
.ws6c{word-spacing:0.132000px;}
.ws45{word-spacing:0.144017px;}
.ws72{word-spacing:0.144040px;}
.ws92{word-spacing:0.168000px;}
.ws84{word-spacing:0.177120px;}
.ws43{word-spacing:0.180000px;}
.ws62{word-spacing:0.187200px;}
.ws60{word-spacing:0.225312px;}
.ws9b{word-spacing:0.317280px;}
.ws68{word-spacing:0.324000px;}
.ws77{word-spacing:0.359712px;}
.ws3d{word-spacing:0.406080px;}
.ws76{word-spacing:0.408000px;}
.ws47{word-spacing:0.432000px;}
.wsb{word-spacing:0.486000px;}
.ws4b{word-spacing:0.576000px;}
.ws71{word-spacing:0.612000px;}
.ws69{word-spacing:0.648000px;}
.ws3b{word-spacing:0.663840px;}
.ws97{word-spacing:0.670080px;}
.ws9a{word-spacing:0.697728px;}
.ws27{word-spacing:0.730080px;}
.ws85{word-spacing:0.737280px;}
.ws19{word-spacing:0.774000px;}
.ws90{word-spacing:0.788160px;}
.ws21{word-spacing:0.792480px;}
.ws56{word-spacing:0.900000px;}
.wse{word-spacing:0.930000px;}
.ws29{word-spacing:0.980784px;}
.ws6a{word-spacing:1.007280px;}
.ws49{word-spacing:1.008000px;}
.ws5e{word-spacing:1.020000px;}
.ws8{word-spacing:1.037280px;}
.ws35{word-spacing:1.152000px;}
.ws75{word-spacing:1.248000px;}
.ws8f{word-spacing:1.296000px;}
.ws99{word-spacing:1.452240px;}
.ws5{word-spacing:1.549248px;}
.ws14{word-spacing:1.584000px;}
.ws61{word-spacing:1.683504px;}
.ws5c{word-spacing:1.708224px;}
.ws5f{word-spacing:1.817712px;}
.ws1b{word-spacing:2.088000px;}
.ws91{word-spacing:2.373312px;}
.ws9{word-spacing:2.568000px;}
.ws1c{word-spacing:2.793312px;}
.ws9c{word-spacing:2.808000px;}
.ws3c{word-spacing:5.339424px;}
.ws0{word-spacing:5.563872px;}
.ws1a{word-spacing:5.688000px;}
.ws7{word-spacing:5.711328px;}
.wsa{word-spacing:6.084000px;}
.ws6{word-spacing:6.266784px;}
.wsd{word-spacing:6.396000px;}
.ws2e{word-spacing:8.793552px;}
.ws2c{word-spacing:8.858736px;}
.ws32{word-spacing:9.107280px;}
.ws30{word-spacing:9.215568px;}
.ws2f{word-spacing:9.468864px;}
.ws31{word-spacing:9.866448px;}
.ws2d{word-spacing:11.795328px;}
.wsc{word-spacing:19.699584px;}
._17{margin-left:-21.541248px;}
._12{margin-left:-16.308720px;}
._f{margin-left:-15.281760px;}
._7{margin-left:-13.806000px;}
._3{margin-left:-12.168000px;}
._2{margin-left:-10.764000px;}
._0{margin-left:-9.594000px;}
._5{margin-left:-8.424000px;}
._9{margin-left:-6.990000px;}
._8{margin-left:-5.760768px;}
._1{margin-left:-4.668000px;}
._c{margin-left:-2.916000px;}
._b{margin-left:-1.866000px;}
._a{width:1.554000px;}
._13{width:3.093552px;}
._e{width:4.116000px;}
._16{width:5.334000px;}
._23{width:14.196000px;}
._21{width:17.712000px;}
._1b{width:23.960640px;}
._1a{width:25.410000px;}
._1f{width:26.550000px;}
._24{width:27.766080px;}
._15{width:28.891776px;}
._14{width:29.927520px;}
._19{width:31.512000px;}
._10{width:32.778000px;}
._11{width:33.912000px;}
._25{width:35.166000px;}
._d{width:36.186000px;}
._4{width:37.440000px;}
._6{width:39.024768px;}
._22{width:41.021280px;}
._1c{width:42.536592px;}
._18{width:51.986160px;}
._1d{width:58.465728px;}
._1e{width:60.749952px;}
._20{width:1091.282736px;}
.fc7{color:rgb(70,120,134);}
.fca{color:rgb(64,64,64);}
.fc9{color:rgb(130,130,130);}
.fc8{color:rgb(69,69,69);}
.fc6{color:rgb(125,125,125);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(127,127,127);}
.fc3{color:rgb(116,116,116);}
.fc2{color:rgb(114,114,114);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(90,154,152);}
.fs18{font-size:66.240000px;}
.fs13{font-size:72.000000px;}
.fs14{font-size:72.144000px;}
.fs3{font-size:84.240000px;}
.fs1b{font-size:84.384000px;}
.fs12{font-size:95.760000px;}
.fs11{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fs10{font-size:108.144000px;}
.fsb{font-size:120.240000px;}
.fsa{font-size:120.384000px;}
.fs8{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fse{font-size:167.760000px;}
.fsf{font-size:167.904000px;}
.fs15{font-size:185.760000px;}
.fsc{font-size:192.240000px;}
.fsd{font-size:192.384000px;}
.fs4{font-size:216.000000px;}
.fs5{font-size:216.144000px;}
.fs0{font-size:234.000000px;}
.fs1{font-size:234.144000px;}
.fs6{font-size:246.240000px;}
.fs7{font-size:246.384000px;}
.fs16{font-size:264.240000px;}
.fs17{font-size:264.384000px;}
.fs19{font-size:288.000000px;}
.fs1a{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.y11a{bottom:4.140000px;}
.yd8{bottom:7.956000px;}
.yfb{bottom:9.684000px;}
.y127{bottom:10.188000px;}
.ya4{bottom:10.260000px;}
.y109{bottom:10.368000px;}
.y137{bottom:10.584000px;}
.y98{bottom:15.156000px;}
.y26{bottom:16.740000px;}
.y154{bottom:19.440000px;}
.y126{bottom:31.824000px;}
.y136{bottom:32.184000px;}
.y108{bottom:45.180000px;}
.yd7{bottom:50.760000px;}
.y25{bottom:52.740000px;}
.y22{bottom:54.540000px;}
.y119{bottom:57.600000px;}
.yea{bottom:66.852000px;}
.y153{bottom:82.548000px;}
.yd6{bottom:83.160000px;}
.y107{bottom:88.380000px;}
.y24{bottom:88.740000px;}
.y21{bottom:90.540000px;}
.ye9{bottom:99.288000px;}
.y36{bottom:101.412000px;}
.y125{bottom:103.248000px;}
.y135{bottom:103.392000px;}
.y11b{bottom:104.256000px;}
.y117{bottom:104.400000px;}
.ya3{bottom:105.588000px;}
.y42{bottom:106.884000px;}
.y118{bottom:111.240000px;}
.y90{bottom:124.308000px;}
.y23{bottom:124.740000px;}
.y35{bottom:126.612000px;}
.yd5{bottom:130.500000px;}
.y106{bottom:131.580000px;}
.ye8{bottom:131.688000px;}
.y152{bottom:132.984000px;}
.y134{bottom:135.828000px;}
.y9{bottom:146.160000px;}
.y124{bottom:146.448000px;}
.y30{bottom:148.140000px;}
.ya2{bottom:148.788000px;}
.yeb{bottom:149.832000px;}
.yf4{bottom:150.375000px;}
.y65{bottom:160.815000px;}
.y38{bottom:161.025000px;}
.y115{bottom:162.615000px;}
.y49{bottom:162.720000px;}
.yd4{bottom:162.900000px;}
.y116{bottom:164.880000px;}
.y60{bottom:171.930000px;}
.y3f{bottom:174.090000px;}
.y105{bottom:174.810000px;}
.y62{bottom:176.475000px;}
.yc5{bottom:177.660000px;}
.y8f{bottom:178.170000px;}
.ye7{bottom:179.025000px;}
.yb9{bottom:180.075000px;}
.y6c{bottom:183.990000px;}
.y133{bottom:184.065000px;}
.y85{bottom:185.115000px;}
.y72{bottom:187.590000px;}
.y123{bottom:189.645000px;}
.y20{bottom:191.910000px;}
.ya1{bottom:191.985000px;}
.y64{bottom:193.245000px;}
.yf3{bottom:193.605000px;}
.y37{bottom:194.145000px;}
.yd3{bottom:195.330000px;}
.y4f{bottom:198.180000px;}
.y114{bottom:198.615000px;}
.y145{bottom:198.795000px;}
.y3e{bottom:206.490000px;}
.y13d{bottom:207.750000px;}
.y3b{bottom:207.795000px;}
.y5f{bottom:207.975000px;}
.y61{bottom:208.905000px;}
.yb{bottom:209.265000px;}
.yc4{bottom:210.060000px;}
.ye6{bottom:211.425000px;}
.y132{bottom:220.065000px;}
.yb8{bottom:223.275000px;}
.y63{bottom:225.645000px;}
.yd2{bottom:227.730000px;}
.y1f{bottom:231.870000px;}
.y8e{bottom:232.170000px;}
.y122{bottom:232.890000px;}
.y113{bottom:234.645000px;}
.y6b{bottom:234.930000px;}
.yf2{bottom:236.805000px;}
.y71{bottom:238.755000px;}
.y3a{bottom:240.195000px;}
.y48{bottom:241.920000px;}
.y144{bottom:241.995000px;}
.y8{bottom:242.355000px;}
.yc3{bottom:242.460000px;}
.y84{bottom:243.285000px;}
.ya0{bottom:250.170000px;}
.y131{bottom:256.065000px;}
.y14d{bottom:257.940000px;}
.y13c{bottom:258.150000px;}
.ye5{bottom:258.810000px;}
.ya{bottom:259.710000px;}
.y15{bottom:266.400000px;}
.yb7{bottom:266.475000px;}
.y104{bottom:269.490000px;}
.y43{bottom:269.970000px;}
.y112{bottom:270.645000px;}
.y1e{bottom:271.830000px;}
.y96{bottom:273.630000px;}
.y7{bottom:274.755000px;}
.yd1{bottom:275.250000px;}
.y4e{bottom:277.380000px;}
.yc2{bottom:279.360000px;}
.yf1{bottom:280.005000px;}
.y77{bottom:283.755000px;}
.y143{bottom:285.225000px;}
.y6a{bottom:285.915000px;}
.y8d{bottom:285.990000px;}
.yac{bottom:286.485000px;}
.y70{bottom:289.695000px;}
.ye4{bottom:291.210000px;}
.y9f{bottom:293.370000px;}
.y2f{bottom:300.240000px;}
.y83{bottom:301.605000px;}
.y39{bottom:304.995000px;}
.y14b{bottom:305.535000px;}
.y130{bottom:307.050000px;}
.y6{bottom:307.155000px;}
.yd0{bottom:307.650000px;}
.y13b{bottom:308.550000px;}
.yb6{bottom:309.705000px;}
.y1d{bottom:311.655000px;}
.yc1{bottom:311.760000px;}
.y103{bottom:312.690000px;}
.y7c{bottom:316.800000px;}
.yab{bottom:318.885000px;}
.y4d{bottom:320.580000px;}
.y2a{bottom:321.150000px;}
.ye3{bottom:324.510000px;}
.y14{bottom:324.750000px;}
.y8c{bottom:324.900000px;}
.y121{bottom:325.050000px;}
.y59{bottom:326.850000px;}
.y5e{bottom:332.610000px;}
.y5b{bottom:336.495000px;}
.y9e{bottom:336.570000px;}
.y69{bottom:337.035000px;}
.y5{bottom:339.555000px;}
.ycf{bottom:340.095000px;}
.y6f{bottom:340.665000px;}
.y76{bottom:341.355000px;}
.y92{bottom:342.930000px;}
.y12f{bottom:343.050000px;}
.yc0{bottom:344.190000px;}
.y95{bottom:344.955000px;}
.y111{bottom:349.305000px;}
.y2e{bottom:350.640000px;}
.yaa{bottom:351.330000px;}
.yb5{bottom:352.905000px;}
.y82{bottom:355.470000px;}
.y102{bottom:355.935000px;}
.y14a{bottom:357.405000px;}
.y1c{bottom:358.815000px;}
.y47{bottom:364.350000px;}
.y5d{bottom:365.010000px;}
.y7b{bottom:367.200000px;}
.y120{bottom:368.250000px;}
.y75{bottom:370.155000px;}
.y91{bottom:375.330000px;}
.ye2{bottom:375.450000px;}
.ybf{bottom:376.590000px;}
.y8b{bottom:378.720000px;}
.y12e{bottom:379.050000px;}
.y13{bottom:383.070000px;}
.ye{bottom:384.330000px;}
.y110{bottom:385.350000px;}
.yce{bottom:387.435000px;}
.y68{bottom:387.975000px;}
.y34{bottom:389.550000px;}
.y6e{bottom:391.785000px;}
.yb4{bottom:396.105000px;}
.yf0{bottom:396.510000px;}
.y5c{bottom:397.410000px;}
.y58{bottom:398.880000px;}
.y4c{bottom:399.810000px;}
.ya9{bottom:400.290000px;}
.y2d{bottom:401.040000px;}
.y5a{bottom:401.295000px;}
.y142{bottom:401.685000px;}
.ybe{bottom:408.990000px;}
.y149{bottom:409.245000px;}
.ye1{bottom:411.480000px;}
.y81{bottom:413.610000px;}
.y101{bottom:414.255000px;}
.y94{bottom:416.235000px;}
.y8a{bottom:417.600000px;}
.y13a{bottom:417.855000px;}
.ycd{bottom:419.835000px;}
.y10f{bottom:421.350000px;}
.y1b{bottom:425.235000px;}
.y74{bottom:427.785000px;}
.y12d{bottom:430.200000px;}
.y67{bottom:438.945000px;}
.yb3{bottom:439.350000px;}
.yef{bottom:439.710000px;}
.y12{bottom:441.390000px;}
.y4{bottom:442.335000px;}
.y6d{bottom:442.725000px;}
.y4b{bottom:443.010000px;}
.ya8{bottom:443.490000px;}
.y46{bottom:443.550000px;}
.yfa{bottom:443.955000px;}
.y141{bottom:444.930000px;}
.ybd{bottom:445.890000px;}
.ye0{bottom:447.480000px;}
.yd{bottom:447.510000px;}
.y2c{bottom:451.470000px;}
.ycc{bottom:452.235000px;}
.y33{bottom:452.730000px;}
.y9d{bottom:453.060000px;}
.y11f{bottom:454.680000px;}
.y10e{bottom:457.350000px;}
.y100{bottom:457.455000px;}
.y12c{bottom:466.200000px;}
.y7a{bottom:468.030000px;}
.y139{bottom:468.285000px;}
.y89{bottom:471.630000px;}
.y80{bottom:471.930000px;}
.ybc{bottom:478.335000px;}
.yb2{bottom:482.550000px;}
.yee{bottom:482.940000px;}
.ydf{bottom:483.480000px;}
.y1a{bottom:485.745000px;}
.ya7{bottom:486.690000px;}
.yf9{bottom:487.155000px;}
.y140{bottom:488.130000px;}
.y54{bottom:488.340000px;}
.y10d{bottom:493.350000px;}
.y57{bottom:493.485000px;}
.y9c{bottom:496.260000px;}
.y11e{bottom:497.880000px;}
.ycb{bottom:500.505000px;}
.yff{bottom:500.685000px;}
.y11{bottom:501.015000px;}
.y2b{bottom:501.870000px;}
.y12b{bottom:502.200000px;}
.y3{bottom:505.515000px;}
.y29{bottom:507.855000px;}
.yc{bottom:510.735000px;}
.y148{bottom:512.970000px;}
.y51{bottom:513.510000px;}
.y53{bottom:513.540000px;}
.y32{bottom:515.955000px;}
.y79{bottom:518.430000px;}
.y138{bottom:518.685000px;}
.yde{bottom:519.480000px;}
.y88{bottom:525.450000px;}
.yb1{bottom:525.750000px;}
.y56{bottom:525.885000px;}
.yed{bottom:526.140000px;}
.y10c{bottom:529.380000px;}
.y7f{bottom:530.100000px;}
.y73{bottom:530.205000px;}
.y13f{bottom:531.330000px;}
.y41{bottom:532.770000px;}
.y151{bottom:532.905000px;}
.y66{bottom:533.085000px;}
.yca{bottom:536.505000px;}
.y9b{bottom:539.460000px;}
.y11d{bottom:541.110000px;}
.ybb{bottom:543.135000px;}
.yfe{bottom:543.885000px;}
.ya6{bottom:545.040000px;}
.y50{bottom:545.910000px;}
.y4a{bottom:551.055000px;}
.y45{bottom:551.595000px;}
.y19{bottom:552.345000px;}
.y12a{bottom:553.170000px;}
.ydd{bottom:555.510000px;}
.y55{bottom:558.285000px;}
.yf6{bottom:558.870000px;}
.y52{bottom:560.010000px;}
.y28{bottom:562.575000px;}
.y10{bottom:564.195000px;}
.y147{bottom:564.810000px;}
.y40{bottom:565.170000px;}
.y10b{bottom:565.380000px;}
.y2{bottom:568.725000px;}
.y78{bottom:568.875000px;}
.yb0{bottom:568.980000px;}
.yec{bottom:569.340000px;}
.yf8{bottom:573.045000px;}
.y13e{bottom:574.530000px;}
.yba{bottom:575.535000px;}
.y3d{bottom:576.720000px;}
.y31{bottom:579.135000px;}
.y87{bottom:579.270000px;}
.y9a{bottom:582.690000px;}
.y11c{bottom:584.310000px;}
.yfd{bottom:587.085000px;}
.yc9{bottom:587.445000px;}
.y7e{bottom:588.240000px;}
.y129{bottom:589.170000px;}
.ydc{bottom:591.510000px;}
.y10a{bottom:601.380000px;}
.yf5{bottom:602.070000px;}
.y150{bottom:611.070000px;}
.yaf{bottom:615.960000px;}
.yf7{bottom:616.245000px;}
.yc8{bottom:623.445000px;}
.y128{bottom:625.170000px;}
.y27{bottom:625.785000px;}
.y99{bottom:625.890000px;}
.yf{bottom:627.405000px;}
.ydb{bottom:627.510000px;}
.y18{bottom:629.025000px;}
.yfc{bottom:630.330000px;}
.ya5{bottom:631.440000px;}
.y1{bottom:631.905000px;}
.y14c{bottom:637.125000px;}
.y86{bottom:639.255000px;}
.yad{bottom:642.030000px;}
.y7d{bottom:644.970000px;}
.yd9{bottom:648.330000px;}
.yc7{bottom:659.490000px;}
.yda{bottom:663.510000px;}
.y17{bottom:680.685000px;}
.y146{bottom:682.740000px;}
.y14f{bottom:703.770000px;}
.y44{bottom:720.180000px;}
.y93{bottom:720.615000px;}
.y3c{bottom:721.620000px;}
.yae{bottom:724.710000px;}
.y16{bottom:732.345000px;}
.y14e{bottom:744.915000px;}
.y97{bottom:747.210000px;}
.yc6{bottom:748.875000px;}
.h2a{height:65.884219px;}
.h20{height:71.613281px;}
.h21{height:71.756508px;}
.h4{height:83.787539px;}
.h30{height:83.930766px;}
.h1b{height:86.255508px;}
.h29{height:86.906250px;}
.h2d{height:87.022125px;}
.h27{height:96.755625px;}
.h1d{height:98.051133px;}
.h1c{height:98.198578px;}
.h3{height:107.419922px;}
.h17{height:107.563148px;}
.h18{height:110.583984px;}
.h19{height:110.731430px;}
.h2b{height:115.875000px;}
.he{height:119.594180px;}
.hd{height:119.737406px;}
.hf{height:123.116836px;}
.h10{height:123.264281px;}
.h22{height:137.505937px;}
.h1a{height:142.302656px;}
.hc{height:143.226562px;}
.h1f{height:143.369789px;}
.ha{height:147.445312px;}
.hb{height:147.592758px;}
.h16{height:166.858945px;}
.h15{height:167.002172px;}
.h14{height:171.773789px;}
.h1e{height:171.921234px;}
.h26{height:186.785156px;}
.h28{height:186.909680px;}
.h13{height:191.207461px;}
.h12{height:191.350688px;}
.h6{height:214.839844px;}
.h7{height:214.983070px;}
.h2c{height:226.980000px;}
.h11{height:232.743164px;}
.h5{height:232.886391px;}
.h1{height:239.598633px;}
.h2{height:239.746078px;}
.h8{height:252.131484px;}
.h9{height:252.278930px;}
.h25{height:262.820742px;}
.h24{height:262.963969px;}
.h23{height:270.562148px;}
.h2e{height:294.890625px;}
.h2f{height:295.038070px;}
.h0{height:810.000000px;}
.w2{width:127.620000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x49{left:10.583979px;}
.x20{left:25.091979px;}
.x60{left:26.891979px;}
.x53{left:29.267979px;}
.x1f{left:32.903979px;}
.x45{left:36.179979px;}
.x5a{left:38.483979px;}
.x5b{left:41.435979px;}
.x5d{left:45.143979px;}
.x4c{left:48.743979px;}
.x4f{left:61.955979px;}
.x12{left:75.923979px;}
.x19{left:76.931979px;}
.x28{left:79.559979px;}
.x26{left:82.223979px;}
.x3f{left:83.375979px;}
.x35{left:92.807979px;}
.x29{left:101.375979px;}
.x50{left:102.455979px;}
.x41{left:104.219979px;}
.x40{left:105.407979px;}
.x1c{left:106.739979px;}
.x34{left:108.647979px;}
.x39{left:113.363979px;}
.x27{left:114.623979px;}
.xe{left:128.627979px;}
.x42{left:131.219979px;}
.xb{left:135.503979px;}
.x3e{left:137.771979px;}
.x13{left:138.959979px;}
.x2a{left:141.875979px;}
.x36{left:146.807979px;}
.x21{left:153.389979px;}
.xa{left:166.499979px;}
.x3{left:172.184979px;}
.x46{left:174.029979px;}
.x9{left:175.604979px;}
.x15{left:178.229979px;}
.x66{left:179.249979px;}
.x64{left:180.329979px;}
.x3d{left:187.664979px;}
.x2b{left:196.559979px;}
.x47{left:204.989979px;}
.x10{left:206.279979px;}
.xc{left:215.249979px;}
.x2c{left:217.619979px;}
.xf{left:250.559979px;}
.x1a{left:253.154979px;}
.x65{left:286.019979px;}
.x2{left:330.629979px;}
.xd{left:348.479979px;}
.x25{left:356.039979px;}
.x59{left:374.249979px;}
.x31{left:378.824979px;}
.x32{left:387.104979px;}
.x2d{left:398.444979px;}
.x14{left:401.474979px;}
.x37{left:420.509979px;}
.x5e{left:426.089979px;}
.x2e{left:427.604979px;}
.x38{left:453.314979px;}
.x63{left:462.419979px;}
.x2f{left:468.644979px;}
.x3b{left:476.969979px;}
.x69{left:511.169979px;}
.x62{left:582.329979px;}
.x68{left:587.129979px;}
.x67{left:597.569979px;}
.x11{left:628.094979px;}
.x22{left:639.509979px;}
.x23{left:658.049979px;}
.x24{left:672.554979px;}
.x55{left:678.629979px;}
.x57{left:684.509979px;}
.x4a{left:687.134979px;}
.x1{left:711.899979px;}
.x4e{left:713.849979px;}
.x51{left:718.529979px;}
.x3a{left:721.829979px;}
.x33{left:722.909979px;}
.x30{left:725.114979px;}
.x56{left:737.459979px;}
.x52{left:752.369979px;}
.x61{left:788.834979px;}
.x1b{left:793.949979px;}
.x48{left:811.649979px;}
.x3c{left:823.319979px;}
.x58{left:831.059979px;}
.x5f{left:838.874979px;}
.x54{left:847.409979px;}
.x5c{left:862.200000px;}
.x6{left:870.629979px;}
.x4{left:930.449979px;}
.x7{left:932.009979px;}
.x5{left:958.469979px;}
.x17{left:962.609979px;}
.x16{left:989.534979px;}
.x8{left:1013.579979px;}
.x6a{left:1038.929979px;}
.x6b{left:1048.034979px;}
.x4b{left:1072.184979px;}
.x18{left:1088.459979px;}
.x1d{left:1112.144979px;}
.x44{left:1124.669979px;}
.x1e{left:1239.194979px;}
.x43{left:1240.229979px;}
.x4d{left:1366.769979px;}
@media print{
.v1{vertical-align:-75.392000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-16.266667pt;}
.ls6{letter-spacing:-10.560000pt;}
.ls57{letter-spacing:-10.506667pt;}
.lsb{letter-spacing:-10.346667pt;}
.ls7{letter-spacing:-10.186667pt;}
.lsf{letter-spacing:-10.133333pt;}
.ls1{letter-spacing:-10.026667pt;}
.ls3{letter-spacing:-8.693333pt;}
.ls15{letter-spacing:-8.586667pt;}
.ls9{letter-spacing:-8.480000pt;}
.ls56{letter-spacing:-8.426667pt;}
.ls5{letter-spacing:-8.266667pt;}
.ls2{letter-spacing:-8.213333pt;}
.ls8{letter-spacing:-8.160000pt;}
.lsa{letter-spacing:-8.106667pt;}
.ls10{letter-spacing:-8.053333pt;}
.ls58{letter-spacing:-8.000000pt;}
.ls17{letter-spacing:-3.296000pt;}
.ls32{letter-spacing:-2.272000pt;}
.ls2c{letter-spacing:-1.322667pt;}
.ls35{letter-spacing:-0.960000pt;}
.ls49{letter-spacing:-0.752000pt;}
.ls2b{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.581333pt;}
.ls44{letter-spacing:-0.524800pt;}
.ls43{letter-spacing:-0.512000pt;}
.ls47{letter-spacing:-0.432000pt;}
.ls2e{letter-spacing:-0.323200pt;}
.ls36{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.297600pt;}
.ls20{letter-spacing:-0.279467pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.214400pt;}
.ls52{letter-spacing:-0.197333pt;}
.ls53{letter-spacing:-0.192000pt;}
.ls4f{letter-spacing:-0.163200pt;}
.ls54{letter-spacing:-0.160000pt;}
.ls37{letter-spacing:-0.128000pt;}
.ls48{letter-spacing:-0.085867pt;}
.ls3d{letter-spacing:-0.058667pt;}
.ls4a{letter-spacing:-0.057067pt;}
.ls2d{letter-spacing:-0.042880pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls3f{letter-spacing:-0.005760pt;}
.ls13{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.004480pt;}
.ls42{letter-spacing:0.032000pt;}
.ls51{letter-spacing:0.053013pt;}
.ls50{letter-spacing:0.093867pt;}
.ls38{letter-spacing:0.103467pt;}
.ls4b{letter-spacing:0.126933pt;}
.ls33{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.145067pt;}
.ls3a{letter-spacing:0.156267pt;}
.ls30{letter-spacing:0.160000pt;}
.ls46{letter-spacing:0.192000pt;}
.ls41{letter-spacing:0.208000pt;}
.ls3b{letter-spacing:0.210667pt;}
.ls45{letter-spacing:0.220267pt;}
.ls4d{letter-spacing:0.221867pt;}
.ls3c{letter-spacing:0.225067pt;}
.ls4c{letter-spacing:0.254933pt;}
.ls3e{letter-spacing:0.255467pt;}
.ls34{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.349867pt;}
.ls31{letter-spacing:0.378133pt;}
.ls4e{letter-spacing:0.384000pt;}
.ls27{letter-spacing:19.626496pt;}
.ls19{letter-spacing:28.755200pt;}
.ls18{letter-spacing:28.800000pt;}
.ls29{letter-spacing:51.155200pt;}
.ls28{letter-spacing:51.200000pt;}
.ls22{letter-spacing:58.547200pt;}
.ls21{letter-spacing:58.592000pt;}
.ls1e{letter-spacing:86.675200pt;}
.ls1d{letter-spacing:86.720000pt;}
.ls1c{letter-spacing:99.155200pt;}
.ls1b{letter-spacing:99.200000pt;}
.ls1f{letter-spacing:110.400000pt;}
.ls11{letter-spacing:122.547200pt;}
.ls12{letter-spacing:122.592000pt;}
.ls26{letter-spacing:139.741867pt;}
.ls24{letter-spacing:139.786667pt;}
.ls25{letter-spacing:139.808000pt;}
.lsd{letter-spacing:172.744533pt;}
.lsc{letter-spacing:172.789333pt;}
.ls23{letter-spacing:173.683200pt;}
.ls55{letter-spacing:180.181333pt;}
.ws9f{word-spacing:-57.884928pt;}
.ws9e{word-spacing:-57.856000pt;}
.ws39{word-spacing:-53.432747pt;}
.ws3f{word-spacing:-52.608000pt;}
.ws1{word-spacing:-47.036928pt;}
.ws2{word-spacing:-47.008000pt;}
.ws38{word-spacing:-45.573120pt;}
.ws10{word-spacing:-43.420928pt;}
.wsf{word-spacing:-43.392000pt;}
.ws18{word-spacing:-38.647808pt;}
.ws98{word-spacing:-38.618880pt;}
.ws1d{word-spacing:-33.730048pt;}
.ws28{word-spacing:-33.701120pt;}
.ws48{word-spacing:-28.956928pt;}
.ws11{word-spacing:-28.928000pt;}
.ws93{word-spacing:-28.927995pt;}
.ws7d{word-spacing:-28.672000pt;}
.ws15{word-spacing:-28.375595pt;}
.ws2a{word-spacing:-28.288000pt;}
.ws16{word-spacing:-24.183808pt;}
.ws17{word-spacing:-24.154880pt;}
.ws5b{word-spacing:-24.149120pt;}
.ws7f{word-spacing:-23.722880pt;}
.ws82{word-spacing:-23.402880pt;}
.ws1f{word-spacing:-21.724928pt;}
.ws1e{word-spacing:-21.696000pt;}
.ws22{word-spacing:-18.400000pt;}
.ws3{word-spacing:-16.922880pt;}
.ws8c{word-spacing:-14.747861pt;}
.ws7e{word-spacing:-14.656000pt;}
.ws8b{word-spacing:-14.619861pt;}
.ws8a{word-spacing:-14.492928pt;}
.ws37{word-spacing:-14.464000pt;}
.ws41{word-spacing:-14.144000pt;}
.ws40{word-spacing:-13.504000pt;}
.ws73{word-spacing:-13.306880pt;}
.ws74{word-spacing:-12.782080pt;}
.ws89{word-spacing:-2.963072pt;}
.ws6d{word-spacing:-1.760000pt;}
.ws53{word-spacing:-1.697707pt;}
.ws4c{word-spacing:-1.616384pt;}
.ws6f{word-spacing:-1.479936pt;}
.ws46{word-spacing:-1.418667pt;}
.ws3a{word-spacing:-1.317440pt;}
.ws34{word-spacing:-1.301333pt;}
.ws88{word-spacing:-1.280000pt;}
.ws7b{word-spacing:-1.258667pt;}
.ws50{word-spacing:-1.217707pt;}
.ws4f{word-spacing:-1.216853pt;}
.ws54{word-spacing:-1.164800pt;}
.ws55{word-spacing:-1.103573pt;}
.ws44{word-spacing:-1.024000pt;}
.ws20{word-spacing:-1.014187pt;}
.ws78{word-spacing:-1.010005pt;}
.ws4e{word-spacing:-0.985600pt;}
.ws6e{word-spacing:-0.896000pt;}
.ws58{word-spacing:-0.895360pt;}
.ws52{word-spacing:-0.854720pt;}
.ws7a{word-spacing:-0.824832pt;}
.ws4d{word-spacing:-0.791552pt;}
.ws12{word-spacing:-0.768000pt;}
.ws70{word-spacing:-0.736000pt;}
.ws2b{word-spacing:-0.661333pt;}
.ws63{word-spacing:-0.644480pt;}
.ws25{word-spacing:-0.633600pt;}
.ws26{word-spacing:-0.595627pt;}
.ws24{word-spacing:-0.584704pt;}
.ws66{word-spacing:-0.533760pt;}
.ws42{word-spacing:-0.512000pt;}
.ws95{word-spacing:-0.511964pt;}
.ws64{word-spacing:-0.483840pt;}
.ws8d{word-spacing:-0.462997pt;}
.ws83{word-spacing:-0.421760pt;}
.ws51{word-spacing:-0.417280pt;}
.ws4a{word-spacing:-0.405333pt;}
.ws3e{word-spacing:-0.388480pt;}
.ws7c{word-spacing:-0.362667pt;}
.ws57{word-spacing:-0.357973pt;}
.ws67{word-spacing:-0.352000pt;}
.ws5a{word-spacing:-0.335787pt;}
.ws94{word-spacing:-0.307200pt;}
.ws33{word-spacing:-0.277333pt;}
.ws96{word-spacing:-0.256000pt;}
.ws80{word-spacing:-0.255360pt;}
.ws65{word-spacing:-0.244480pt;}
.ws8e{word-spacing:-0.205867pt;}
.ws59{word-spacing:-0.199680pt;}
.ws23{word-spacing:-0.128000pt;}
.ws36{word-spacing:-0.127975pt;}
.ws87{word-spacing:-0.098901pt;}
.ws5d{word-spacing:-0.096000pt;}
.ws81{word-spacing:-0.080128pt;}
.ws9d{word-spacing:-0.080000pt;}
.ws86{word-spacing:-0.025813pt;}
.ws4{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.042667pt;}
.ws79{word-spacing:0.096768pt;}
.ws13{word-spacing:0.106667pt;}
.ws6c{word-spacing:0.117333pt;}
.ws45{word-spacing:0.128015pt;}
.ws72{word-spacing:0.128036pt;}
.ws92{word-spacing:0.149333pt;}
.ws84{word-spacing:0.157440pt;}
.ws43{word-spacing:0.160000pt;}
.ws62{word-spacing:0.166400pt;}
.ws60{word-spacing:0.200277pt;}
.ws9b{word-spacing:0.282027pt;}
.ws68{word-spacing:0.288000pt;}
.ws77{word-spacing:0.319744pt;}
.ws3d{word-spacing:0.360960pt;}
.ws76{word-spacing:0.362667pt;}
.ws47{word-spacing:0.384000pt;}
.wsb{word-spacing:0.432000pt;}
.ws4b{word-spacing:0.512000pt;}
.ws71{word-spacing:0.544000pt;}
.ws69{word-spacing:0.576000pt;}
.ws3b{word-spacing:0.590080pt;}
.ws97{word-spacing:0.595627pt;}
.ws9a{word-spacing:0.620203pt;}
.ws27{word-spacing:0.648960pt;}
.ws85{word-spacing:0.655360pt;}
.ws19{word-spacing:0.688000pt;}
.ws90{word-spacing:0.700587pt;}
.ws21{word-spacing:0.704427pt;}
.ws56{word-spacing:0.800000pt;}
.wse{word-spacing:0.826667pt;}
.ws29{word-spacing:0.871808pt;}
.ws6a{word-spacing:0.895360pt;}
.ws49{word-spacing:0.896000pt;}
.ws5e{word-spacing:0.906667pt;}
.ws8{word-spacing:0.922027pt;}
.ws35{word-spacing:1.024000pt;}
.ws75{word-spacing:1.109333pt;}
.ws8f{word-spacing:1.152000pt;}
.ws99{word-spacing:1.290880pt;}
.ws5{word-spacing:1.377109pt;}
.ws14{word-spacing:1.408000pt;}
.ws61{word-spacing:1.496448pt;}
.ws5c{word-spacing:1.518421pt;}
.ws5f{word-spacing:1.615744pt;}
.ws1b{word-spacing:1.856000pt;}
.ws91{word-spacing:2.109611pt;}
.ws9{word-spacing:2.282667pt;}
.ws1c{word-spacing:2.482944pt;}
.ws9c{word-spacing:2.496000pt;}
.ws3c{word-spacing:4.746155pt;}
.ws0{word-spacing:4.945664pt;}
.ws1a{word-spacing:5.056000pt;}
.ws7{word-spacing:5.076736pt;}
.wsa{word-spacing:5.408000pt;}
.ws6{word-spacing:5.570475pt;}
.wsd{word-spacing:5.685333pt;}
.ws2e{word-spacing:7.816491pt;}
.ws2c{word-spacing:7.874432pt;}
.ws32{word-spacing:8.095360pt;}
.ws30{word-spacing:8.191616pt;}
.ws2f{word-spacing:8.416768pt;}
.ws31{word-spacing:8.770176pt;}
.ws2d{word-spacing:10.484736pt;}
.wsc{word-spacing:17.510741pt;}
._17{margin-left:-19.147776pt;}
._12{margin-left:-14.496640pt;}
._f{margin-left:-13.583787pt;}
._7{margin-left:-12.272000pt;}
._3{margin-left:-10.816000pt;}
._2{margin-left:-9.568000pt;}
._0{margin-left:-8.528000pt;}
._5{margin-left:-7.488000pt;}
._9{margin-left:-6.213333pt;}
._8{margin-left:-5.120683pt;}
._1{margin-left:-4.149333pt;}
._c{margin-left:-2.592000pt;}
._b{margin-left:-1.658667pt;}
._a{width:1.381333pt;}
._13{width:2.749824pt;}
._e{width:3.658667pt;}
._16{width:4.741333pt;}
._23{width:12.618667pt;}
._21{width:15.744000pt;}
._1b{width:21.298347pt;}
._1a{width:22.586667pt;}
._1f{width:23.600000pt;}
._24{width:24.680960pt;}
._15{width:25.681579pt;}
._14{width:26.602240pt;}
._19{width:28.010667pt;}
._10{width:29.136000pt;}
._11{width:30.144000pt;}
._25{width:31.258667pt;}
._d{width:32.165333pt;}
._4{width:33.280000pt;}
._6{width:34.688683pt;}
._22{width:36.463360pt;}
._1c{width:37.810304pt;}
._18{width:46.209920pt;}
._1d{width:51.969536pt;}
._1e{width:53.999957pt;}
._20{width:970.029099pt;}
.fs18{font-size:58.880000pt;}
.fs13{font-size:64.000000pt;}
.fs14{font-size:64.128000pt;}
.fs3{font-size:74.880000pt;}
.fs1b{font-size:75.008000pt;}
.fs12{font-size:85.120000pt;}
.fs11{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fs10{font-size:96.128000pt;}
.fsb{font-size:106.880000pt;}
.fsa{font-size:107.008000pt;}
.fs8{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fse{font-size:149.120000pt;}
.fsf{font-size:149.248000pt;}
.fs15{font-size:165.120000pt;}
.fsc{font-size:170.880000pt;}
.fsd{font-size:171.008000pt;}
.fs4{font-size:192.000000pt;}
.fs5{font-size:192.128000pt;}
.fs0{font-size:208.000000pt;}
.fs1{font-size:208.128000pt;}
.fs6{font-size:218.880000pt;}
.fs7{font-size:219.008000pt;}
.fs16{font-size:234.880000pt;}
.fs17{font-size:235.008000pt;}
.fs19{font-size:256.000000pt;}
.fs1a{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.y11a{bottom:3.680000pt;}
.yd8{bottom:7.072000pt;}
.yfb{bottom:8.608000pt;}
.y127{bottom:9.056000pt;}
.ya4{bottom:9.120000pt;}
.y109{bottom:9.216000pt;}
.y137{bottom:9.408000pt;}
.y98{bottom:13.472000pt;}
.y26{bottom:14.880000pt;}
.y154{bottom:17.280000pt;}
.y126{bottom:28.288000pt;}
.y136{bottom:28.608000pt;}
.y108{bottom:40.160000pt;}
.yd7{bottom:45.120000pt;}
.y25{bottom:46.880000pt;}
.y22{bottom:48.480000pt;}
.y119{bottom:51.200000pt;}
.yea{bottom:59.424000pt;}
.y153{bottom:73.376000pt;}
.yd6{bottom:73.920000pt;}
.y107{bottom:78.560000pt;}
.y24{bottom:78.880000pt;}
.y21{bottom:80.480000pt;}
.ye9{bottom:88.256000pt;}
.y36{bottom:90.144000pt;}
.y125{bottom:91.776000pt;}
.y135{bottom:91.904000pt;}
.y11b{bottom:92.672000pt;}
.y117{bottom:92.800000pt;}
.ya3{bottom:93.856000pt;}
.y42{bottom:95.008000pt;}
.y118{bottom:98.880000pt;}
.y90{bottom:110.496000pt;}
.y23{bottom:110.880000pt;}
.y35{bottom:112.544000pt;}
.yd5{bottom:116.000000pt;}
.y106{bottom:116.960000pt;}
.ye8{bottom:117.056000pt;}
.y152{bottom:118.208000pt;}
.y134{bottom:120.736000pt;}
.y9{bottom:129.920000pt;}
.y124{bottom:130.176000pt;}
.y30{bottom:131.680000pt;}
.ya2{bottom:132.256000pt;}
.yeb{bottom:133.184000pt;}
.yf4{bottom:133.666667pt;}
.y65{bottom:142.946667pt;}
.y38{bottom:143.133333pt;}
.y115{bottom:144.546667pt;}
.y49{bottom:144.640000pt;}
.yd4{bottom:144.800000pt;}
.y116{bottom:146.560000pt;}
.y60{bottom:152.826667pt;}
.y3f{bottom:154.746667pt;}
.y105{bottom:155.386667pt;}
.y62{bottom:156.866667pt;}
.yc5{bottom:157.920000pt;}
.y8f{bottom:158.373333pt;}
.ye7{bottom:159.133333pt;}
.yb9{bottom:160.066667pt;}
.y6c{bottom:163.546667pt;}
.y133{bottom:163.613333pt;}
.y85{bottom:164.546667pt;}
.y72{bottom:166.746667pt;}
.y123{bottom:168.573333pt;}
.y20{bottom:170.586667pt;}
.ya1{bottom:170.653333pt;}
.y64{bottom:171.773333pt;}
.yf3{bottom:172.093333pt;}
.y37{bottom:172.573333pt;}
.yd3{bottom:173.626667pt;}
.y4f{bottom:176.160000pt;}
.y114{bottom:176.546667pt;}
.y145{bottom:176.706667pt;}
.y3e{bottom:183.546667pt;}
.y13d{bottom:184.666667pt;}
.y3b{bottom:184.706667pt;}
.y5f{bottom:184.866667pt;}
.y61{bottom:185.693333pt;}
.yb{bottom:186.013333pt;}
.yc4{bottom:186.720000pt;}
.ye6{bottom:187.933333pt;}
.y132{bottom:195.613333pt;}
.yb8{bottom:198.466667pt;}
.y63{bottom:200.573333pt;}
.yd2{bottom:202.426667pt;}
.y1f{bottom:206.106667pt;}
.y8e{bottom:206.373333pt;}
.y122{bottom:207.013333pt;}
.y113{bottom:208.573333pt;}
.y6b{bottom:208.826667pt;}
.yf2{bottom:210.493333pt;}
.y71{bottom:212.226667pt;}
.y3a{bottom:213.506667pt;}
.y48{bottom:215.040000pt;}
.y144{bottom:215.106667pt;}
.y8{bottom:215.426667pt;}
.yc3{bottom:215.520000pt;}
.y84{bottom:216.253333pt;}
.ya0{bottom:222.373333pt;}
.y131{bottom:227.613333pt;}
.y14d{bottom:229.280000pt;}
.y13c{bottom:229.466667pt;}
.ye5{bottom:230.053333pt;}
.ya{bottom:230.853333pt;}
.y15{bottom:236.800000pt;}
.yb7{bottom:236.866667pt;}
.y104{bottom:239.546667pt;}
.y43{bottom:239.973333pt;}
.y112{bottom:240.573333pt;}
.y1e{bottom:241.626667pt;}
.y96{bottom:243.226667pt;}
.y7{bottom:244.226667pt;}
.yd1{bottom:244.666667pt;}
.y4e{bottom:246.560000pt;}
.yc2{bottom:248.320000pt;}
.yf1{bottom:248.893333pt;}
.y77{bottom:252.226667pt;}
.y143{bottom:253.533333pt;}
.y6a{bottom:254.146667pt;}
.y8d{bottom:254.213333pt;}
.yac{bottom:254.653333pt;}
.y70{bottom:257.506667pt;}
.ye4{bottom:258.853333pt;}
.y9f{bottom:260.773333pt;}
.y2f{bottom:266.880000pt;}
.y83{bottom:268.093333pt;}
.y39{bottom:271.106667pt;}
.y14b{bottom:271.586667pt;}
.y130{bottom:272.933333pt;}
.y6{bottom:273.026667pt;}
.yd0{bottom:273.466667pt;}
.y13b{bottom:274.266667pt;}
.yb6{bottom:275.293333pt;}
.y1d{bottom:277.026667pt;}
.yc1{bottom:277.120000pt;}
.y103{bottom:277.946667pt;}
.y7c{bottom:281.600000pt;}
.yab{bottom:283.453333pt;}
.y4d{bottom:284.960000pt;}
.y2a{bottom:285.466667pt;}
.ye3{bottom:288.453333pt;}
.y14{bottom:288.666667pt;}
.y8c{bottom:288.800000pt;}
.y121{bottom:288.933333pt;}
.y59{bottom:290.533333pt;}
.y5e{bottom:295.653333pt;}
.y5b{bottom:299.106667pt;}
.y9e{bottom:299.173333pt;}
.y69{bottom:299.586667pt;}
.y5{bottom:301.826667pt;}
.ycf{bottom:302.306667pt;}
.y6f{bottom:302.813333pt;}
.y76{bottom:303.426667pt;}
.y92{bottom:304.826667pt;}
.y12f{bottom:304.933333pt;}
.yc0{bottom:305.946667pt;}
.y95{bottom:306.626667pt;}
.y111{bottom:310.493333pt;}
.y2e{bottom:311.680000pt;}
.yaa{bottom:312.293333pt;}
.yb5{bottom:313.693333pt;}
.y82{bottom:315.973333pt;}
.y102{bottom:316.386667pt;}
.y14a{bottom:317.693333pt;}
.y1c{bottom:318.946667pt;}
.y47{bottom:323.866667pt;}
.y5d{bottom:324.453333pt;}
.y7b{bottom:326.400000pt;}
.y120{bottom:327.333333pt;}
.y75{bottom:329.026667pt;}
.y91{bottom:333.626667pt;}
.ye2{bottom:333.733333pt;}
.ybf{bottom:334.746667pt;}
.y8b{bottom:336.640000pt;}
.y12e{bottom:336.933333pt;}
.y13{bottom:340.506667pt;}
.ye{bottom:341.626667pt;}
.y110{bottom:342.533333pt;}
.yce{bottom:344.386667pt;}
.y68{bottom:344.866667pt;}
.y34{bottom:346.266667pt;}
.y6e{bottom:348.253333pt;}
.yb4{bottom:352.093333pt;}
.yf0{bottom:352.453333pt;}
.y5c{bottom:353.253333pt;}
.y58{bottom:354.560000pt;}
.y4c{bottom:355.386667pt;}
.ya9{bottom:355.813333pt;}
.y2d{bottom:356.480000pt;}
.y5a{bottom:356.706667pt;}
.y142{bottom:357.053333pt;}
.ybe{bottom:363.546667pt;}
.y149{bottom:363.773333pt;}
.ye1{bottom:365.760000pt;}
.y81{bottom:367.653333pt;}
.y101{bottom:368.226667pt;}
.y94{bottom:369.986667pt;}
.y8a{bottom:371.200000pt;}
.y13a{bottom:371.426667pt;}
.ycd{bottom:373.186667pt;}
.y10f{bottom:374.533333pt;}
.y1b{bottom:377.986667pt;}
.y74{bottom:380.253333pt;}
.y12d{bottom:382.400000pt;}
.y67{bottom:390.173333pt;}
.yb3{bottom:390.533333pt;}
.yef{bottom:390.853333pt;}
.y12{bottom:392.346667pt;}
.y4{bottom:393.186667pt;}
.y6d{bottom:393.533333pt;}
.y4b{bottom:393.786667pt;}
.ya8{bottom:394.213333pt;}
.y46{bottom:394.266667pt;}
.yfa{bottom:394.626667pt;}
.y141{bottom:395.493333pt;}
.ybd{bottom:396.346667pt;}
.ye0{bottom:397.760000pt;}
.yd{bottom:397.786667pt;}
.y2c{bottom:401.306667pt;}
.ycc{bottom:401.986667pt;}
.y33{bottom:402.426667pt;}
.y9d{bottom:402.720000pt;}
.y11f{bottom:404.160000pt;}
.y10e{bottom:406.533333pt;}
.y100{bottom:406.626667pt;}
.y12c{bottom:414.400000pt;}
.y7a{bottom:416.026667pt;}
.y139{bottom:416.253333pt;}
.y89{bottom:419.226667pt;}
.y80{bottom:419.493333pt;}
.ybc{bottom:425.186667pt;}
.yb2{bottom:428.933333pt;}
.yee{bottom:429.280000pt;}
.ydf{bottom:429.760000pt;}
.y1a{bottom:431.773333pt;}
.ya7{bottom:432.613333pt;}
.yf9{bottom:433.026667pt;}
.y140{bottom:433.893333pt;}
.y54{bottom:434.080000pt;}
.y10d{bottom:438.533333pt;}
.y57{bottom:438.653333pt;}
.y9c{bottom:441.120000pt;}
.y11e{bottom:442.560000pt;}
.ycb{bottom:444.893333pt;}
.yff{bottom:445.053333pt;}
.y11{bottom:445.346667pt;}
.y2b{bottom:446.106667pt;}
.y12b{bottom:446.400000pt;}
.y3{bottom:449.346667pt;}
.y29{bottom:451.426667pt;}
.yc{bottom:453.986667pt;}
.y148{bottom:455.973333pt;}
.y51{bottom:456.453333pt;}
.y53{bottom:456.480000pt;}
.y32{bottom:458.626667pt;}
.y79{bottom:460.826667pt;}
.y138{bottom:461.053333pt;}
.yde{bottom:461.760000pt;}
.y88{bottom:467.066667pt;}
.yb1{bottom:467.333333pt;}
.y56{bottom:467.453333pt;}
.yed{bottom:467.680000pt;}
.y10c{bottom:470.560000pt;}
.y7f{bottom:471.200000pt;}
.y73{bottom:471.293333pt;}
.y13f{bottom:472.293333pt;}
.y41{bottom:473.573333pt;}
.y151{bottom:473.693333pt;}
.y66{bottom:473.853333pt;}
.yca{bottom:476.893333pt;}
.y9b{bottom:479.520000pt;}
.y11d{bottom:480.986667pt;}
.ybb{bottom:482.786667pt;}
.yfe{bottom:483.453333pt;}
.ya6{bottom:484.480000pt;}
.y50{bottom:485.253333pt;}
.y4a{bottom:489.826667pt;}
.y45{bottom:490.306667pt;}
.y19{bottom:490.973333pt;}
.y12a{bottom:491.706667pt;}
.ydd{bottom:493.786667pt;}
.y55{bottom:496.253333pt;}
.yf6{bottom:496.773333pt;}
.y52{bottom:497.786667pt;}
.y28{bottom:500.066667pt;}
.y10{bottom:501.506667pt;}
.y147{bottom:502.053333pt;}
.y40{bottom:502.373333pt;}
.y10b{bottom:502.560000pt;}
.y2{bottom:505.533333pt;}
.y78{bottom:505.666667pt;}
.yb0{bottom:505.760000pt;}
.yec{bottom:506.080000pt;}
.yf8{bottom:509.373333pt;}
.y13e{bottom:510.693333pt;}
.yba{bottom:511.586667pt;}
.y3d{bottom:512.640000pt;}
.y31{bottom:514.786667pt;}
.y87{bottom:514.906667pt;}
.y9a{bottom:517.946667pt;}
.y11c{bottom:519.386667pt;}
.yfd{bottom:521.853333pt;}
.yc9{bottom:522.173333pt;}
.y7e{bottom:522.880000pt;}
.y129{bottom:523.706667pt;}
.ydc{bottom:525.786667pt;}
.y10a{bottom:534.560000pt;}
.yf5{bottom:535.173333pt;}
.y150{bottom:543.173333pt;}
.yaf{bottom:547.520000pt;}
.yf7{bottom:547.773333pt;}
.yc8{bottom:554.173333pt;}
.y128{bottom:555.706667pt;}
.y27{bottom:556.253333pt;}
.y99{bottom:556.346667pt;}
.yf{bottom:557.693333pt;}
.ydb{bottom:557.786667pt;}
.y18{bottom:559.133333pt;}
.yfc{bottom:560.293333pt;}
.ya5{bottom:561.280000pt;}
.y1{bottom:561.693333pt;}
.y14c{bottom:566.333333pt;}
.y86{bottom:568.226667pt;}
.yad{bottom:570.693333pt;}
.y7d{bottom:573.306667pt;}
.yd9{bottom:576.293333pt;}
.yc7{bottom:586.213333pt;}
.yda{bottom:589.786667pt;}
.y17{bottom:605.053333pt;}
.y146{bottom:606.880000pt;}
.y14f{bottom:625.573333pt;}
.y44{bottom:640.160000pt;}
.y93{bottom:640.546667pt;}
.y3c{bottom:641.440000pt;}
.yae{bottom:644.186667pt;}
.y16{bottom:650.973333pt;}
.y14e{bottom:662.146667pt;}
.y97{bottom:664.186667pt;}
.yc6{bottom:665.666667pt;}
.h2a{height:58.563750pt;}
.h20{height:63.656250pt;}
.h21{height:63.783562pt;}
.h4{height:74.477812pt;}
.h30{height:74.605125pt;}
.h1b{height:76.671562pt;}
.h29{height:77.250000pt;}
.h2d{height:77.353000pt;}
.h27{height:86.005000pt;}
.h1d{height:87.156562pt;}
.h1c{height:87.287625pt;}
.h3{height:95.484375pt;}
.h17{height:95.611688pt;}
.h18{height:98.296875pt;}
.h19{height:98.427937pt;}
.h2b{height:103.000000pt;}
.he{height:106.305937pt;}
.hd{height:106.433250pt;}
.hf{height:109.437187pt;}
.h10{height:109.568250pt;}
.h22{height:122.227500pt;}
.h1a{height:126.491250pt;}
.hc{height:127.312500pt;}
.h1f{height:127.439813pt;}
.ha{height:131.062500pt;}
.hb{height:131.193562pt;}
.h16{height:148.319063pt;}
.h15{height:148.446375pt;}
.h14{height:152.687812pt;}
.h1e{height:152.818875pt;}
.h26{height:166.031250pt;}
.h28{height:166.141938pt;}
.h13{height:169.962187pt;}
.h12{height:170.089500pt;}
.h6{height:190.968750pt;}
.h7{height:191.096063pt;}
.h2c{height:201.760000pt;}
.h11{height:206.882812pt;}
.h5{height:207.010125pt;}
.h1{height:212.976562pt;}
.h2{height:213.107625pt;}
.h8{height:224.116875pt;}
.h9{height:224.247938pt;}
.h25{height:233.618437pt;}
.h24{height:233.745750pt;}
.h23{height:240.499687pt;}
.h2e{height:262.125000pt;}
.h2f{height:262.256062pt;}
.h0{height:720.000000pt;}
.w2{width:113.440000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x49{left:9.407981pt;}
.x20{left:22.303981pt;}
.x60{left:23.903981pt;}
.x53{left:26.015981pt;}
.x1f{left:29.247981pt;}
.x45{left:32.159981pt;}
.x5a{left:34.207981pt;}
.x5b{left:36.831981pt;}
.x5d{left:40.127981pt;}
.x4c{left:43.327981pt;}
.x4f{left:55.071981pt;}
.x12{left:67.487981pt;}
.x19{left:68.383981pt;}
.x28{left:70.719981pt;}
.x26{left:73.087981pt;}
.x3f{left:74.111981pt;}
.x35{left:82.495981pt;}
.x29{left:90.111981pt;}
.x50{left:91.071981pt;}
.x41{left:92.639981pt;}
.x40{left:93.695981pt;}
.x1c{left:94.879981pt;}
.x34{left:96.575981pt;}
.x39{left:100.767981pt;}
.x27{left:101.887981pt;}
.xe{left:114.335981pt;}
.x42{left:116.639981pt;}
.xb{left:120.447981pt;}
.x3e{left:122.463981pt;}
.x13{left:123.519981pt;}
.x2a{left:126.111981pt;}
.x36{left:130.495981pt;}
.x21{left:136.346648pt;}
.xa{left:147.999981pt;}
.x3{left:153.053314pt;}
.x46{left:154.693314pt;}
.x9{left:156.093314pt;}
.x15{left:158.426648pt;}
.x66{left:159.333314pt;}
.x64{left:160.293314pt;}
.x3d{left:166.813314pt;}
.x2b{left:174.719981pt;}
.x47{left:182.213314pt;}
.x10{left:183.359981pt;}
.xc{left:191.333314pt;}
.x2c{left:193.439981pt;}
.xf{left:222.719981pt;}
.x1a{left:225.026648pt;}
.x65{left:254.239981pt;}
.x2{left:293.893314pt;}
.xd{left:309.759981pt;}
.x25{left:316.479981pt;}
.x59{left:332.666648pt;}
.x31{left:336.733314pt;}
.x32{left:344.093314pt;}
.x2d{left:354.173314pt;}
.x14{left:356.866648pt;}
.x37{left:373.786648pt;}
.x5e{left:378.746648pt;}
.x2e{left:380.093314pt;}
.x38{left:402.946648pt;}
.x63{left:411.039981pt;}
.x2f{left:416.573314pt;}
.x3b{left:423.973314pt;}
.x69{left:454.373314pt;}
.x62{left:517.626648pt;}
.x68{left:521.893314pt;}
.x67{left:531.173314pt;}
.x11{left:558.306648pt;}
.x22{left:568.453314pt;}
.x23{left:584.933314pt;}
.x24{left:597.826648pt;}
.x55{left:603.226648pt;}
.x57{left:608.453314pt;}
.x4a{left:610.786648pt;}
.x1{left:632.799981pt;}
.x4e{left:634.533314pt;}
.x51{left:638.693314pt;}
.x3a{left:641.626648pt;}
.x33{left:642.586648pt;}
.x30{left:644.546648pt;}
.x56{left:655.519981pt;}
.x52{left:668.773314pt;}
.x61{left:701.186648pt;}
.x1b{left:705.733314pt;}
.x48{left:721.466648pt;}
.x3c{left:731.839981pt;}
.x58{left:738.719981pt;}
.x5f{left:745.666648pt;}
.x54{left:753.253314pt;}
.x5c{left:766.400000pt;}
.x6{left:773.893314pt;}
.x4{left:827.066648pt;}
.x7{left:828.453314pt;}
.x5{left:851.973314pt;}
.x17{left:855.653314pt;}
.x16{left:879.586648pt;}
.x8{left:900.959981pt;}
.x6a{left:923.493314pt;}
.x6b{left:931.586648pt;}
.x4b{left:953.053314pt;}
.x18{left:967.519981pt;}
.x1d{left:988.573314pt;}
.x44{left:999.706648pt;}
.x1e{left:1101.506648pt;}
.x43{left:1102.426648pt;}
.x4d{left:1214.906648pt;}
}




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