
    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_e35de41e2198326903137906.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_3fa1384192a61c0f528665e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_f2dbffb276affc3536543bb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.178000;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_9ded46be285bc9e33c03b9f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.168000;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_542eecd54ad63899b2008892.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.196000;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_720ffc74a5800630ff337bcd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_720ffc74a5800630ff337bcd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698000;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_720ffc74a5800630ff337bcd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_ad77bb595ae67730cbf4933f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.200900;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_8165eabc7f73ac5b7620c1e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.193000;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);}
.v3{vertical-align:-19.979919px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.985851px;}
.v2{vertical-align:19.980032px;}
.ls23{letter-spacing:-3.571200px;}
.ls62{letter-spacing:-1.836000px;}
.ls1f{letter-spacing:-1.080000px;}
.ls4c{letter-spacing:-0.960000px;}
.ls4e{letter-spacing:-0.892800px;}
.lsf{letter-spacing:-0.840000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls44{letter-spacing:-0.669600px;}
.ls1e{letter-spacing:-0.660000px;}
.ls2d{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.561000px;}
.ls24{letter-spacing:-0.558000px;}
.ls1a{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.510000px;}
.ls4b{letter-spacing:-0.489720px;}
.ls31{letter-spacing:-0.486000px;}
.ls1c{letter-spacing:-0.480000px;}
.ls50{letter-spacing:-0.446400px;}
.ls4a{letter-spacing:-0.420000px;}
.ls43{letter-spacing:-0.414000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls4d{letter-spacing:-0.349800px;}
.ls45{letter-spacing:-0.334800px;}
.lsc{letter-spacing:-0.300000px;}
.ls59{letter-spacing:-0.279000px;}
.ls8{letter-spacing:-0.255000px;}
.ls11{letter-spacing:-0.240000px;}
.ls25{letter-spacing:-0.223200px;}
.ls60{letter-spacing:-0.204000px;}
.ls19{letter-spacing:-0.180000px;}
.ls3d{letter-spacing:-0.167400px;}
.ls34{letter-spacing:-0.120000px;}
.ls63{letter-spacing:-0.102000px;}
.lsd{letter-spacing:-0.060000px;}
.ls3c{letter-spacing:-0.055800px;}
.ls64{letter-spacing:-0.051000px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000002px;}
.ls12{letter-spacing:0.022200px;}
.ls7{letter-spacing:0.029733px;}
.ls0{letter-spacing:0.051000px;}
.ls2f{letter-spacing:0.060000px;}
.ls61{letter-spacing:0.102000px;}
.ls2c{letter-spacing:0.111581px;}
.ls2a{letter-spacing:0.120000px;}
.ls58{letter-spacing:0.139920px;}
.ls29{letter-spacing:0.150000px;}
.ls5b{letter-spacing:0.153000px;}
.ls15{letter-spacing:0.167400px;}
.ls2b{letter-spacing:0.180000px;}
.ls56{letter-spacing:0.216000px;}
.ls39{letter-spacing:0.223200px;}
.ls2{letter-spacing:0.240000px;}
.ls5c{letter-spacing:0.255000px;}
.ls3a{letter-spacing:0.279000px;}
.ls28{letter-spacing:0.300000px;}
.ls3e{letter-spacing:0.330000px;}
.ls26{letter-spacing:0.360000px;}
.ls5e{letter-spacing:0.384780px;}
.ls30{letter-spacing:0.390000px;}
.ls4{letter-spacing:0.390600px;}
.ls33{letter-spacing:0.418500px;}
.ls27{letter-spacing:0.420000px;}
.ls13{letter-spacing:0.446400px;}
.ls35{letter-spacing:0.450000px;}
.ls1{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.502200px;}
.ls37{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.558000px;}
.ls2e{letter-spacing:0.600000px;}
.ls5a{letter-spacing:0.630000px;}
.ls20{letter-spacing:0.660000px;}
.ls36{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.732600px;}
.ls51{letter-spacing:0.781200px;}
.ls46{letter-spacing:0.837000px;}
.ls54{letter-spacing:0.840000px;}
.ls53{letter-spacing:0.864000px;}
.ls5f{letter-spacing:1.020000px;}
.ls18{letter-spacing:1.080000px;}
.lse{letter-spacing:1.200000px;}
.ls22{letter-spacing:1.339200px;}
.ls42{letter-spacing:1.458000px;}
.ls49{letter-spacing:1.512000px;}
.ls55{letter-spacing:1.566000px;}
.ls40{letter-spacing:1.569014px;}
.ls17{letter-spacing:1.620000px;}
.ls5d{letter-spacing:1.728000px;}
.ls3b{letter-spacing:1.998000px;}
.ls4f{letter-spacing:2.455200px;}
.ls3f{letter-spacing:2.678400px;}
.ls57{letter-spacing:3.069000px;}
.ls41{letter-spacing:3.180600px;}
.ls3{letter-spacing:3.348000px;}
.ls52{letter-spacing:3.627000px;}
.ls32{letter-spacing:3.794400px;}
.ls47{letter-spacing:4.185000px;}
.ls48{letter-spacing:35.879404px;}
.ls38{letter-spacing:50.498979px;}
.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:-16.182000px;}
.ws65{word-spacing:-15.791400px;}
.wsa0{word-spacing:-15.624000px;}
.ws5{word-spacing:-15.345000px;}
.ws90{word-spacing:-15.177600px;}
.wsca{word-spacing:-15.066000px;}
.ws79{word-spacing:-14.796000px;}
.ws8f{word-spacing:-14.675400px;}
.wsd3{word-spacing:-14.526000px;}
.ws9e{word-spacing:-14.452200px;}
.ws22{word-spacing:-14.418000px;}
.wsc1{word-spacing:-14.364000px;}
.ws9c{word-spacing:-14.310000px;}
.wsc2{word-spacing:-13.380000px;}
.ws24{word-spacing:-13.336200px;}
.ws48{word-spacing:-12.540000px;}
.ws2{word-spacing:-12.480000px;}
.ws55{word-spacing:-12.312000px;}
.wsd5{word-spacing:-12.291000px;}
.ws23{word-spacing:-12.240000px;}
.ws7b{word-spacing:-11.997000px;}
.ws25{word-spacing:-11.439000px;}
.ws7a{word-spacing:-11.220000px;}
.ws1{word-spacing:-10.710000px;}
.ws4{word-spacing:-8.901000px;}
.ws8e{word-spacing:-8.487000px;}
.wsd4{word-spacing:-7.695600px;}
.wsc9{word-spacing:-7.450740px;}
.ws3{word-spacing:-7.310820px;}
.ws9d{word-spacing:-6.821100px;}
.ws0{word-spacing:-6.243930px;}
.wsd6{word-spacing:-6.214197px;}
.ws3a{word-spacing:-3.420000px;}
.ws9a{word-spacing:-3.180600px;}
.wsa6{word-spacing:-2.820000px;}
.ws6e{word-spacing:-2.760000px;}
.wsae{word-spacing:-2.566800px;}
.wsa7{word-spacing:-2.520000px;}
.ws96{word-spacing:-2.460000px;}
.wsb0{word-spacing:-2.399400px;}
.ws7d{word-spacing:-2.340000px;}
.wsd9{word-spacing:-2.160000px;}
.wsa2{word-spacing:-2.100000px;}
.ws10{word-spacing:-2.040000px;}
.ws2d{word-spacing:-1.980000px;}
.ws32{word-spacing:-1.920000px;}
.ws47{word-spacing:-1.897200px;}
.ws12{word-spacing:-1.860000px;}
.ws45{word-spacing:-1.841400px;}
.ws68{word-spacing:-1.800000px;}
.ws83{word-spacing:-1.785600px;}
.ws75{word-spacing:-1.740000px;}
.ws4d{word-spacing:-1.680000px;}
.ws82{word-spacing:-1.674000px;}
.wsf0{word-spacing:-1.632000px;}
.ws93{word-spacing:-1.620000px;}
.wsb{word-spacing:-1.581000px;}
.wsda{word-spacing:-1.500000px;}
.wseb{word-spacing:-1.450800px;}
.ws6b{word-spacing:-1.440000px;}
.wsdb{word-spacing:-1.428000px;}
.ws4f{word-spacing:-1.380000px;}
.wse4{word-spacing:-1.326000px;}
.ws35{word-spacing:-1.320000px;}
.ws8c{word-spacing:-1.283400px;}
.wsa9{word-spacing:-1.260000px;}
.wsb4{word-spacing:-1.227600px;}
.ws17{word-spacing:-1.200000px;}
.ws28{word-spacing:-1.140000px;}
.wsef{word-spacing:-1.122000px;}
.ws44{word-spacing:-1.116000px;}
.ws49{word-spacing:-1.080000px;}
.ws46{word-spacing:-1.060200px;}
.ws4e{word-spacing:-1.020000px;}
.ws92{word-spacing:-0.960000px;}
.ws1f{word-spacing:-0.892800px;}
.wsdc{word-spacing:-0.867000px;}
.ws20{word-spacing:-0.837000px;}
.ws8d{word-spacing:-0.781200px;}
.ws62{word-spacing:-0.780000px;}
.ws6{word-spacing:-0.754800px;}
.wsa5{word-spacing:-0.720000px;}
.wse6{word-spacing:-0.714000px;}
.wsc6{word-spacing:-0.660000px;}
.wsc{word-spacing:-0.612000px;}
.ws19{word-spacing:-0.600000px;}
.ws5a{word-spacing:-0.540000px;}
.wsd2{word-spacing:-0.502200px;}
.ws30{word-spacing:-0.480000px;}
.ws77{word-spacing:-0.446400px;}
.wsbc{word-spacing:-0.420000px;}
.ws1d{word-spacing:-0.390600px;}
.ws70{word-spacing:-0.360000px;}
.wse9{word-spacing:-0.306000px;}
.ws6d{word-spacing:-0.300000px;}
.wsb6{word-spacing:-0.279000px;}
.wsf{word-spacing:-0.240000px;}
.ws21{word-spacing:-0.223200px;}
.wsd{word-spacing:-0.204000px;}
.ws87{word-spacing:-0.167400px;}
.wscf{word-spacing:-0.120000px;}
.wse7{word-spacing:-0.102000px;}
.wsb8{word-spacing:-0.060000px;}
.ws7{word-spacing:-0.044400px;}
.ws8{word-spacing:0.000000px;}
.wse5{word-spacing:0.051000px;}
.ws41{word-spacing:0.055800px;}
.ws58{word-spacing:0.060000px;}
.wsee{word-spacing:0.102000px;}
.ws1b{word-spacing:0.120000px;}
.ws9b{word-spacing:0.167400px;}
.wsa4{word-spacing:0.180000px;}
.wsea{word-spacing:0.223200px;}
.ws72{word-spacing:0.240000px;}
.ws1c{word-spacing:0.279000px;}
.wsa8{word-spacing:0.349800px;}
.wsc4{word-spacing:0.360000px;}
.ws33{word-spacing:0.420000px;}
.ws6f{word-spacing:0.480000px;}
.wsc8{word-spacing:0.540000px;}
.ws89{word-spacing:0.558000px;}
.wsc7{word-spacing:0.600000px;}
.ws73{word-spacing:0.660000px;}
.ws97{word-spacing:0.669600px;}
.ws37{word-spacing:0.720000px;}
.ws13{word-spacing:0.780000px;}
.wsbb{word-spacing:0.840000px;}
.wsed{word-spacing:0.867000px;}
.wsaf{word-spacing:0.892800px;}
.ws31{word-spacing:0.900000px;}
.ws8a{word-spacing:0.948600px;}
.ws15{word-spacing:0.960000px;}
.ws95{word-spacing:1.020000px;}
.ws42{word-spacing:1.060200px;}
.ws39{word-spacing:1.080000px;}
.ws43{word-spacing:1.116000px;}
.wsba{word-spacing:1.140000px;}
.wsdd{word-spacing:1.173000px;}
.wsaa{word-spacing:1.200000px;}
.wsdf{word-spacing:1.224000px;}
.ws8b{word-spacing:1.227600px;}
.ws54{word-spacing:1.260000px;}
.wse1{word-spacing:1.275000px;}
.wse{word-spacing:1.320000px;}
.wse3{word-spacing:1.326000px;}
.wsf1{word-spacing:1.377000px;}
.ws69{word-spacing:1.380000px;}
.ws99{word-spacing:1.395000px;}
.wsc0{word-spacing:1.440000px;}
.wsd1{word-spacing:1.450800px;}
.ws94{word-spacing:1.500000px;}
.ws67{word-spacing:1.560000px;}
.ws98{word-spacing:1.562400px;}
.wsde{word-spacing:1.581000px;}
.ws11{word-spacing:1.620000px;}
.wse0{word-spacing:1.632000px;}
.ws84{word-spacing:1.674000px;}
.ws6c{word-spacing:1.680000px;}
.wsa{word-spacing:1.734000px;}
.ws2e{word-spacing:1.740000px;}
.ws40{word-spacing:1.785600px;}
.ws5b{word-spacing:1.800000px;}
.wse2{word-spacing:1.836000px;}
.ws88{word-spacing:1.841400px;}
.ws16{word-spacing:1.860000px;}
.wse8{word-spacing:1.887000px;}
.ws2c{word-spacing:1.920000px;}
.ws59{word-spacing:1.980000px;}
.wsb5{word-spacing:2.008800px;}
.ws2f{word-spacing:2.040000px;}
.wsad{word-spacing:2.160000px;}
.ws85{word-spacing:2.176200px;}
.ws51{word-spacing:2.220000px;}
.ws29{word-spacing:2.280000px;}
.ws53{word-spacing:2.340000px;}
.ws86{word-spacing:2.343600px;}
.ws27{word-spacing:2.400000px;}
.ws5c{word-spacing:2.460000px;}
.ws18{word-spacing:2.520000px;}
.ws5f{word-spacing:2.580000px;}
.ws4c{word-spacing:2.700000px;}
.ws7e{word-spacing:2.760000px;}
.ws5d{word-spacing:2.820000px;}
.ws1a{word-spacing:2.880000px;}
.ws38{word-spacing:2.940000px;}
.ws74{word-spacing:3.000000px;}
.ws36{word-spacing:3.060000px;}
.wsa3{word-spacing:3.120000px;}
.ws71{word-spacing:3.180000px;}
.ws1e{word-spacing:3.236400px;}
.wsd8{word-spacing:3.240000px;}
.ws78{word-spacing:3.292200px;}
.wsbd{word-spacing:3.300000px;}
.ws4b{word-spacing:3.360000px;}
.ws60{word-spacing:3.420000px;}
.ws2b{word-spacing:3.480000px;}
.ws52{word-spacing:3.540000px;}
.ws76{word-spacing:3.571200px;}
.ws6a{word-spacing:3.600000px;}
.ws81{word-spacing:3.660000px;}
.ws61{word-spacing:3.720000px;}
.ws3c{word-spacing:3.738600px;}
.ws14{word-spacing:3.840000px;}
.ws64{word-spacing:3.900000px;}
.ws5e{word-spacing:3.960000px;}
.ws3f{word-spacing:3.961800px;}
.ws50{word-spacing:4.020000px;}
.ws2a{word-spacing:4.080000px;}
.wscc{word-spacing:4.200000px;}
.wsbf{word-spacing:4.320000px;}
.wsac{word-spacing:4.380000px;}
.wsbe{word-spacing:4.500000px;}
.ws9{word-spacing:4.641000px;}
.ws34{word-spacing:4.800000px;}
.wsb9{word-spacing:4.920000px;}
.ws57{word-spacing:4.980000px;}
.ws3b{word-spacing:5.100000px;}
.ws63{word-spacing:5.160000px;}
.ws80{word-spacing:5.220000px;}
.wsce{word-spacing:5.400000px;}
.wsab{word-spacing:5.580000px;}
.ws7f{word-spacing:6.060000px;}
.wsb2{word-spacing:6.472800px;}
.wscd{word-spacing:6.660000px;}
.wsc5{word-spacing:6.960000px;}
.wsb1{word-spacing:6.975000px;}
.ws3e{word-spacing:8.370000px;}
.wsd0{word-spacing:35.098201px;}
.wsb3{word-spacing:35.544602px;}
.ws3d{word-spacing:51.447601px;}
.ws7c{word-spacing:1042.361973px;}
.wsd7{word-spacing:1042.632030px;}
.ws26{word-spacing:1042.686001px;}
.wsc3{word-spacing:1042.739971px;}
.wsa1{word-spacing:1042.848015px;}
.ws56{word-spacing:1044.791977px;}
.ws66{word-spacing:1672.757961px;}
.ws91{word-spacing:1673.081989px;}
.wsb7{word-spacing:1674.269955px;}
.wscb{word-spacing:1675.565963px;}
.ws4a{word-spacing:1677.294044px;}
.wsec{word-spacing:1679.669975px;}
._12{margin-left:-1044.905404px;}
._a{margin-left:-1042.763452px;}
._f{margin-left:-45.209398px;}
._17{margin-left:-35.768997px;}
._2{margin-left:-12.009600px;}
._d{margin-left:-9.775144px;}
._c{margin-left:-8.418000px;}
._8{margin-left:-7.317300px;}
._7{margin-left:-5.462100px;}
._1{margin-left:-4.329600px;}
._4{margin-left:-2.534700px;}
._0{margin-left:-1.440000px;}
._5{width:1.071000px;}
._3{width:2.116500px;}
._6{width:3.510900px;}
._b{width:4.926000px;}
._18{width:6.959997px;}
._16{width:8.240697px;}
._1b{width:26.503812px;}
._15{width:28.568994px;}
._19{width:33.144009px;}
._13{width:35.599213px;}
._1a{width:37.966781px;}
._14{width:40.342223px;}
._e{width:47.596813px;}
._10{width:51.703205px;}
._11{width:53.679606px;}
._9{width:57.138597px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:22.200000px;}
.fs3{font-size:29.733001px;}
.fs5{font-size:34.980000px;}
.fs6{font-size:41.400001px;}
.fs2{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:55.800001px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:90.566251px;}
.yb6{bottom:90.566998px;}
.y6c{bottom:90.567152px;}
.ycf{bottom:90.571345px;}
.y4b{bottom:90.571505px;}
.y99{bottom:90.575704px;}
.y88{bottom:91.318003px;}
.y10f{bottom:91.318005px;}
.y4a{bottom:107.967155px;}
.y98{bottom:107.971354px;}
.y22{bottom:107.975851px;}
.y128{bottom:107.980050px;}
.yb5{bottom:107.980199px;}
.y87{bottom:109.768003px;}
.y10e{bottom:109.768005px;}
.y97{bottom:125.367004px;}
.y21{bottom:125.371501px;}
.y127{bottom:125.375700px;}
.yb4{bottom:125.375849px;}
.yf3{bottom:125.375997px;}
.y49{bottom:125.380345px;}
.y86{bottom:128.218003px;}
.y10d{bottom:128.218005px;}
.y6b{bottom:128.218010px;}
.y20{bottom:142.767151px;}
.yce{bottom:142.770592px;}
.y126{bottom:142.771350px;}
.yf2{bottom:142.771647px;}
.y48{bottom:142.775995px;}
.yb3{bottom:142.780206px;}
.y85{bottom:146.668003px;}
.y10c{bottom:146.668005px;}
.y6a{bottom:146.668010px;}
.ycd{bottom:160.166242px;}
.y125{bottom:160.167000px;}
.yf1{bottom:160.167297px;}
.yb2{bottom:160.175856px;}
.y47{bottom:160.180352px;}
.y84{bottom:165.118003px;}
.y10b{bottom:165.118005px;}
.y69{bottom:165.118010px;}
.y11a{bottom:165.118055px;}
.y96{bottom:165.118197px;}
.y146{bottom:167.800027px;}
.yf0{bottom:177.571803px;}
.ycc{bottom:177.575842px;}
.y46{bottom:177.576002px;}
.yb1{bottom:177.579306px;}
.y83{bottom:183.568004px;}
.y10a{bottom:183.568006px;}
.y68{bottom:183.568010px;}
.y1f{bottom:183.568054px;}
.y119{bottom:183.568055px;}
.y95{bottom:183.568197px;}
.y145{bottom:185.050777px;}
.yef{bottom:194.967453px;}
.ycb{bottom:194.971492px;}
.y45{bottom:194.971652px;}
.yb0{bottom:194.974956px;}
.y82{bottom:202.018004px;}
.y109{bottom:202.018006px;}
.y67{bottom:202.018010px;}
.y1e{bottom:202.018054px;}
.y118{bottom:202.018055px;}
.y94{bottom:202.018198px;}
.y144{bottom:202.301528px;}
.yca{bottom:212.367142px;}
.y44{bottom:212.367302px;}
.yee{bottom:212.371959px;}
.yaf{bottom:212.384556px;}
.y143{bottom:219.552278px;}
.y81{bottom:220.468004px;}
.y108{bottom:220.468006px;}
.y66{bottom:220.468010px;}
.y1d{bottom:220.468054px;}
.y117{bottom:220.468055px;}
.y93{bottom:220.468198px;}
.yed{bottom:229.767609px;}
.y124{bottom:229.771647px;}
.y43{bottom:229.776144px;}
.yae{bottom:229.780206px;}
.y142{bottom:236.803029px;}
.y80{bottom:238.918004px;}
.y107{bottom:238.918006px;}
.y65{bottom:238.918011px;}
.y1c{bottom:238.918054px;}
.y116{bottom:238.918056px;}
.y92{bottom:238.918198px;}
.y123{bottom:247.167297px;}
.y42{bottom:247.171794px;}
.yad{bottom:247.175856px;}
.y141{bottom:254.053779px;}
.y7f{bottom:257.368004px;}
.y106{bottom:257.368006px;}
.y64{bottom:257.368011px;}
.y1b{bottom:257.368055px;}
.y115{bottom:257.368056px;}
.yc9{bottom:257.368183px;}
.y91{bottom:257.368198px;}
.y41{bottom:264.567444px;}
.yac{bottom:264.571505px;}
.y140{bottom:271.304530px;}
.y7e{bottom:275.818004px;}
.y105{bottom:275.818006px;}
.y1a{bottom:275.818055px;}
.y114{bottom:275.818056px;}
.yec{bottom:275.818063px;}
.yc8{bottom:275.818183px;}
.y90{bottom:275.818198px;}
.yab{bottom:281.971492px;}
.y40{bottom:281.971950px;}
.y13f{bottom:288.555280px;}
.y7d{bottom:294.268004px;}
.y104{bottom:294.268007px;}
.y63{bottom:294.268011px;}
.y113{bottom:294.268056px;}
.yeb{bottom:294.268063px;}
.yc7{bottom:294.268183px;}
.y8f{bottom:294.268198px;}
.yaa{bottom:299.367142px;}
.y3f{bottom:299.367599px;}
.y13e{bottom:305.806031px;}
.y7c{bottom:312.718005px;}
.y103{bottom:312.718007px;}
.y19{bottom:312.718055px;}
.y112{bottom:312.718056px;}
.yea{bottom:312.718064px;}
.yc6{bottom:312.718183px;}
.y8e{bottom:312.718199px;}
.y122{bottom:312.718221px;}
.y13d{bottom:323.056781px;}
.y7b{bottom:331.168005px;}
.y102{bottom:331.168007px;}
.y111{bottom:331.168056px;}
.ye9{bottom:331.168064px;}
.yc5{bottom:331.168183px;}
.y121{bottom:331.168221px;}
.y13c{bottom:340.307532px;}
.y7a{bottom:349.618005px;}
.y101{bottom:349.618007px;}
.y62{bottom:349.618012px;}
.ya9{bottom:349.618056px;}
.ye8{bottom:349.618064px;}
.yc4{bottom:349.618183px;}
.y3e{bottom:349.618199px;}
.y120{bottom:349.618221px;}
.y13b{bottom:357.558282px;}
.y79{bottom:368.068005px;}
.y100{bottom:368.068007px;}
.y61{bottom:368.068012px;}
.y18{bottom:368.068056px;}
.ye7{bottom:368.068064px;}
.yc3{bottom:368.068184px;}
.y3d{bottom:368.068199px;}
.y13a{bottom:374.809033px;}
.y78{bottom:386.518005px;}
.yff{bottom:386.518007px;}
.y60{bottom:386.518012px;}
.y3c{bottom:386.518048px;}
.y17{bottom:386.518056px;}
.ye6{bottom:386.518064px;}
.yc2{bottom:386.518184px;}
.y11f{bottom:386.518221px;}
.y139{bottom:392.059783px;}
.y77{bottom:404.968005px;}
.yfe{bottom:404.968007px;}
.y5f{bottom:404.968012px;}
.y16{bottom:404.968056px;}
.ye5{bottom:404.968064px;}
.yc1{bottom:404.968184px;}
.y138{bottom:409.310534px;}
.y76{bottom:423.418005px;}
.yfd{bottom:423.418008px;}
.y5e{bottom:423.418013px;}
.y15{bottom:423.418056px;}
.ye4{bottom:423.418064px;}
.yc0{bottom:423.418184px;}
.y11e{bottom:423.418222px;}
.y137{bottom:426.561284px;}
.y75{bottom:441.868006px;}
.yfc{bottom:441.868008px;}
.y5d{bottom:441.868013px;}
.y14{bottom:441.868056px;}
.ye3{bottom:441.868065px;}
.ybf{bottom:441.868184px;}
.y11d{bottom:441.868222px;}
.y136{bottom:443.812035px;}
.y74{bottom:460.318006px;}
.yfb{bottom:460.318008px;}
.y5c{bottom:460.318013px;}
.ye2{bottom:460.318039px;}
.y13{bottom:460.318057px;}
.ya8{bottom:460.318064px;}
.ybe{bottom:460.318184px;}
.y11c{bottom:460.318222px;}
.y135{bottom:461.062785px;}
.y134{bottom:478.313536px;}
.y73{bottom:478.768006px;}
.yfa{bottom:478.768008px;}
.y5b{bottom:478.768013px;}
.y12{bottom:478.768057px;}
.ya7{bottom:478.768064px;}
.ye1{bottom:478.768066px;}
.ybd{bottom:478.768185px;}
.y133{bottom:495.564286px;}
.y72{bottom:497.218006px;}
.yf9{bottom:497.218008px;}
.y5a{bottom:497.218013px;}
.y11{bottom:497.218057px;}
.ya6{bottom:497.218064px;}
.ye0{bottom:497.218066px;}
.ybc{bottom:497.218185px;}
.y132{bottom:512.815037px;}
.y71{bottom:515.668006px;}
.yf8{bottom:515.668008px;}
.y59{bottom:515.668013px;}
.y10{bottom:515.668057px;}
.ya5{bottom:515.668064px;}
.ydf{bottom:515.668066px;}
.ybb{bottom:515.668185px;}
.y131{bottom:530.065787px;}
.y70{bottom:534.118006px;}
.yf7{bottom:534.118008px;}
.y58{bottom:534.118013px;}
.yf{bottom:534.118029px;}
.y3b{bottom:534.118056px;}
.ya4{bottom:534.118065px;}
.yde{bottom:534.118066px;}
.yba{bottom:534.118185px;}
.y130{bottom:547.316538px;}
.y6f{bottom:552.568007px;}
.yf6{bottom:552.568009px;}
.y57{bottom:552.568014px;}
.ye{bottom:552.568029px;}
.y3a{bottom:552.568057px;}
.ya3{bottom:552.568065px;}
.ydd{bottom:552.568066px;}
.yb9{bottom:552.568185px;}
.y12f{bottom:564.567288px;}
.y6e{bottom:571.018007px;}
.yf5{bottom:571.018009px;}
.y56{bottom:571.018014px;}
.yd{bottom:571.018029px;}
.y39{bottom:571.018057px;}
.ya2{bottom:571.018065px;}
.ydc{bottom:571.018066px;}
.yb8{bottom:571.018185px;}
.y12e{bottom:581.815787px;}
.y6d{bottom:589.468007px;}
.yf4{bottom:589.468009px;}
.y8d{bottom:589.468014px;}
.yc{bottom:589.468030px;}
.y55{bottom:589.468048px;}
.y38{bottom:589.468057px;}
.ya1{bottom:589.468065px;}
.yb7{bottom:589.468185px;}
.y12d{bottom:599.066538px;}
.y54{bottom:607.918009px;}
.y8c{bottom:607.918014px;}
.yb{bottom:607.918030px;}
.y37{bottom:607.918057px;}
.ya0{bottom:607.918065px;}
.y12c{bottom:616.317288px;}
.y36{bottom:626.368008px;}
.y53{bottom:626.368009px;}
.y8b{bottom:626.368015px;}
.y9f{bottom:626.368065px;}
.y12b{bottom:633.565787px;}
.y35{bottom:644.818008px;}
.y52{bottom:644.818009px;}
.y8a{bottom:644.818015px;}
.y9e{bottom:644.818065px;}
.y12a{bottom:650.816538px;}
.ya{bottom:658.763563px;}
.y34{bottom:663.268008px;}
.y51{bottom:663.268010px;}
.y89{bottom:663.268066px;}
.ydb{bottom:663.268083px;}
.y9{bottom:676.014314px;}
.y152{bottom:681.210279px;}
.y33{bottom:681.718009px;}
.y50{bottom:681.718010px;}
.y9d{bottom:681.718066px;}
.yda{bottom:681.718084px;}
.y129{bottom:685.318039px;}
.y151{bottom:698.452024px;}
.y32{bottom:700.168009px;}
.y4f{bottom:700.168010px;}
.y9c{bottom:700.168066px;}
.yd9{bottom:700.168084px;}
.y8{bottom:710.515815px;}
.y150{bottom:715.702775px;}
.y31{bottom:718.618009px;}
.y4e{bottom:718.618010px;}
.y9b{bottom:718.618066px;}
.yd8{bottom:718.618084px;}
.y7{bottom:727.766565px;}
.y30{bottom:737.068009px;}
.y4d{bottom:737.068010px;}
.y11b{bottom:737.068039px;}
.y9a{bottom:737.068066px;}
.yd7{bottom:737.068084px;}
.y6{bottom:745.017316px;}
.y4c{bottom:755.518010px;}
.y2f{bottom:755.518066px;}
.yd6{bottom:755.518084px;}
.y5{bottom:762.267316px;}
.y14f{bottom:767.455025px;}
.y2e{bottom:773.968010px;}
.yd5{bottom:773.968084px;}
.y4{bottom:779.518066px;}
.y14e{bottom:784.705775px;}
.y2d{bottom:792.418011px;}
.yd4{bottom:792.418084px;}
.y14d{bottom:801.956526px;}
.y2c{bottom:810.868011px;}
.yd3{bottom:810.868085px;}
.y14c{bottom:819.207276px;}
.y3{bottom:826.768066px;}
.y2b{bottom:829.318011px;}
.yd2{bottom:829.318029px;}
.y110{bottom:829.318085px;}
.y14b{bottom:836.458027px;}
.y2a{bottom:847.768011px;}
.yd1{bottom:847.768029px;}
.y14a{bottom:853.708778px;}
.y25{bottom:857.391019px;}
.y24{bottom:864.889069px;}
.y29{bottom:866.218011px;}
.yd0{bottom:866.218030px;}
.y2{bottom:867.815741px;}
.y149{bottom:870.959528px;}
.y28{bottom:884.668011px;}
.y148{bottom:888.210279px;}
.y1{bottom:896.303741px;}
.y27{bottom:903.118011px;}
.y147{bottom:905.461029px;}
.y26{bottom:955.942383px;}
.hb{height:15.295800px;}
.h6{height:46.512000px;}
.h5{height:46.515002px;}
.h1c{height:46.521006px;}
.h1e{height:46.548019px;}
.h1d{height:47.073000px;}
.h4{height:48.195000px;}
.h12{height:49.829401px;}
.ha{height:50.443201px;}
.h13{height:50.446829px;}
.hc{height:50.868000px;}
.h7{height:54.720000px;}
.he{height:54.720006px;}
.h14{height:54.720074px;}
.h16{height:54.720103px;}
.h19{height:54.720109px;}
.h8{height:54.720112px;}
.h11{height:54.720154px;}
.h10{height:54.720192px;}
.hd{height:54.720196px;}
.h17{height:54.720200px;}
.h15{height:54.720222px;}
.h18{height:54.720225px;}
.h1a{height:54.720481px;}
.hf{height:54.720749px;}
.h1b{height:55.380000px;}
.h9{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x7{left:25.546350px;}
.x6{left:28.615499px;}
.x5{left:72.283499px;}
.x1{left:80.787449px;}
.x8{left:93.543303px;}
.x2{left:102.042450px;}
.x9{left:111.099003px;}
.xa{left:343.847262px;}
.x4{left:651.223498px;}
.x3{left:654.292648px;}
@media print{
.v3{vertical-align:-17.759928pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.098534pt;}
.v2{vertical-align:17.760028pt;}
.ls23{letter-spacing:-3.174400pt;}
.ls62{letter-spacing:-1.632000pt;}
.ls1f{letter-spacing:-0.960000pt;}
.ls4c{letter-spacing:-0.853333pt;}
.ls4e{letter-spacing:-0.793600pt;}
.lsf{letter-spacing:-0.746667pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls44{letter-spacing:-0.595200pt;}
.ls1e{letter-spacing:-0.586667pt;}
.ls2d{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.498667pt;}
.ls24{letter-spacing:-0.496000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.453333pt;}
.ls4b{letter-spacing:-0.435307pt;}
.ls31{letter-spacing:-0.432000pt;}
.ls1c{letter-spacing:-0.426667pt;}
.ls50{letter-spacing:-0.396800pt;}
.ls4a{letter-spacing:-0.373333pt;}
.ls43{letter-spacing:-0.368000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls4d{letter-spacing:-0.310933pt;}
.ls45{letter-spacing:-0.297600pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls59{letter-spacing:-0.248000pt;}
.ls8{letter-spacing:-0.226667pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls25{letter-spacing:-0.198400pt;}
.ls60{letter-spacing:-0.181333pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls3d{letter-spacing:-0.148800pt;}
.ls34{letter-spacing:-0.106667pt;}
.ls63{letter-spacing:-0.090667pt;}
.lsd{letter-spacing:-0.053333pt;}
.ls3c{letter-spacing:-0.049600pt;}
.ls64{letter-spacing:-0.045333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000002pt;}
.ls12{letter-spacing:0.019733pt;}
.ls7{letter-spacing:0.026429pt;}
.ls0{letter-spacing:0.045333pt;}
.ls2f{letter-spacing:0.053333pt;}
.ls61{letter-spacing:0.090667pt;}
.ls2c{letter-spacing:0.099183pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls58{letter-spacing:0.124373pt;}
.ls29{letter-spacing:0.133333pt;}
.ls5b{letter-spacing:0.136000pt;}
.ls15{letter-spacing:0.148800pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls56{letter-spacing:0.192000pt;}
.ls39{letter-spacing:0.198400pt;}
.ls2{letter-spacing:0.213333pt;}
.ls5c{letter-spacing:0.226667pt;}
.ls3a{letter-spacing:0.248000pt;}
.ls28{letter-spacing:0.266667pt;}
.ls3e{letter-spacing:0.293333pt;}
.ls26{letter-spacing:0.320000pt;}
.ls5e{letter-spacing:0.342027pt;}
.ls30{letter-spacing:0.346667pt;}
.ls4{letter-spacing:0.347200pt;}
.ls33{letter-spacing:0.372000pt;}
.ls27{letter-spacing:0.373333pt;}
.ls13{letter-spacing:0.396800pt;}
.ls35{letter-spacing:0.400000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.446400pt;}
.ls37{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.496000pt;}
.ls2e{letter-spacing:0.533333pt;}
.ls5a{letter-spacing:0.560000pt;}
.ls20{letter-spacing:0.586667pt;}
.ls36{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.651200pt;}
.ls51{letter-spacing:0.694400pt;}
.ls46{letter-spacing:0.744000pt;}
.ls54{letter-spacing:0.746667pt;}
.ls53{letter-spacing:0.768000pt;}
.ls5f{letter-spacing:0.906667pt;}
.ls18{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.066667pt;}
.ls22{letter-spacing:1.190400pt;}
.ls42{letter-spacing:1.296000pt;}
.ls49{letter-spacing:1.344000pt;}
.ls55{letter-spacing:1.392000pt;}
.ls40{letter-spacing:1.394679pt;}
.ls17{letter-spacing:1.440000pt;}
.ls5d{letter-spacing:1.536000pt;}
.ls3b{letter-spacing:1.776000pt;}
.ls4f{letter-spacing:2.182400pt;}
.ls3f{letter-spacing:2.380800pt;}
.ls57{letter-spacing:2.728000pt;}
.ls41{letter-spacing:2.827200pt;}
.ls3{letter-spacing:2.976000pt;}
.ls52{letter-spacing:3.224000pt;}
.ls32{letter-spacing:3.372800pt;}
.ls47{letter-spacing:3.720000pt;}
.ls48{letter-spacing:31.892803pt;}
.ls38{letter-spacing:44.887981pt;}
.ws9f{word-spacing:-14.384000pt;}
.ws65{word-spacing:-14.036800pt;}
.wsa0{word-spacing:-13.888000pt;}
.ws5{word-spacing:-13.640000pt;}
.ws90{word-spacing:-13.491200pt;}
.wsca{word-spacing:-13.392000pt;}
.ws79{word-spacing:-13.152000pt;}
.ws8f{word-spacing:-13.044800pt;}
.wsd3{word-spacing:-12.912000pt;}
.ws9e{word-spacing:-12.846400pt;}
.ws22{word-spacing:-12.816000pt;}
.wsc1{word-spacing:-12.768000pt;}
.ws9c{word-spacing:-12.720000pt;}
.wsc2{word-spacing:-11.893333pt;}
.ws24{word-spacing:-11.854400pt;}
.ws48{word-spacing:-11.146667pt;}
.ws2{word-spacing:-11.093333pt;}
.ws55{word-spacing:-10.944000pt;}
.wsd5{word-spacing:-10.925333pt;}
.ws23{word-spacing:-10.880000pt;}
.ws7b{word-spacing:-10.664000pt;}
.ws25{word-spacing:-10.168000pt;}
.ws7a{word-spacing:-9.973333pt;}
.ws1{word-spacing:-9.520000pt;}
.ws4{word-spacing:-7.912000pt;}
.ws8e{word-spacing:-7.544000pt;}
.wsd4{word-spacing:-6.840533pt;}
.wsc9{word-spacing:-6.622880pt;}
.ws3{word-spacing:-6.498507pt;}
.ws9d{word-spacing:-6.063200pt;}
.ws0{word-spacing:-5.550160pt;}
.wsd6{word-spacing:-5.523731pt;}
.ws3a{word-spacing:-3.040000pt;}
.ws9a{word-spacing:-2.827200pt;}
.wsa6{word-spacing:-2.506667pt;}
.ws6e{word-spacing:-2.453333pt;}
.wsae{word-spacing:-2.281600pt;}
.wsa7{word-spacing:-2.240000pt;}
.ws96{word-spacing:-2.186667pt;}
.wsb0{word-spacing:-2.132800pt;}
.ws7d{word-spacing:-2.080000pt;}
.wsd9{word-spacing:-1.920000pt;}
.wsa2{word-spacing:-1.866667pt;}
.ws10{word-spacing:-1.813333pt;}
.ws2d{word-spacing:-1.760000pt;}
.ws32{word-spacing:-1.706667pt;}
.ws47{word-spacing:-1.686400pt;}
.ws12{word-spacing:-1.653333pt;}
.ws45{word-spacing:-1.636800pt;}
.ws68{word-spacing:-1.600000pt;}
.ws83{word-spacing:-1.587200pt;}
.ws75{word-spacing:-1.546667pt;}
.ws4d{word-spacing:-1.493333pt;}
.ws82{word-spacing:-1.488000pt;}
.wsf0{word-spacing:-1.450667pt;}
.ws93{word-spacing:-1.440000pt;}
.wsb{word-spacing:-1.405333pt;}
.wsda{word-spacing:-1.333333pt;}
.wseb{word-spacing:-1.289600pt;}
.ws6b{word-spacing:-1.280000pt;}
.wsdb{word-spacing:-1.269333pt;}
.ws4f{word-spacing:-1.226667pt;}
.wse4{word-spacing:-1.178667pt;}
.ws35{word-spacing:-1.173333pt;}
.ws8c{word-spacing:-1.140800pt;}
.wsa9{word-spacing:-1.120000pt;}
.wsb4{word-spacing:-1.091200pt;}
.ws17{word-spacing:-1.066667pt;}
.ws28{word-spacing:-1.013333pt;}
.wsef{word-spacing:-0.997333pt;}
.ws44{word-spacing:-0.992000pt;}
.ws49{word-spacing:-0.960000pt;}
.ws46{word-spacing:-0.942400pt;}
.ws4e{word-spacing:-0.906667pt;}
.ws92{word-spacing:-0.853333pt;}
.ws1f{word-spacing:-0.793600pt;}
.wsdc{word-spacing:-0.770667pt;}
.ws20{word-spacing:-0.744000pt;}
.ws8d{word-spacing:-0.694400pt;}
.ws62{word-spacing:-0.693333pt;}
.ws6{word-spacing:-0.670933pt;}
.wsa5{word-spacing:-0.640000pt;}
.wse6{word-spacing:-0.634667pt;}
.wsc6{word-spacing:-0.586667pt;}
.wsc{word-spacing:-0.544000pt;}
.ws19{word-spacing:-0.533333pt;}
.ws5a{word-spacing:-0.480000pt;}
.wsd2{word-spacing:-0.446400pt;}
.ws30{word-spacing:-0.426667pt;}
.ws77{word-spacing:-0.396800pt;}
.wsbc{word-spacing:-0.373333pt;}
.ws1d{word-spacing:-0.347200pt;}
.ws70{word-spacing:-0.320000pt;}
.wse9{word-spacing:-0.272000pt;}
.ws6d{word-spacing:-0.266667pt;}
.wsb6{word-spacing:-0.248000pt;}
.wsf{word-spacing:-0.213333pt;}
.ws21{word-spacing:-0.198400pt;}
.wsd{word-spacing:-0.181333pt;}
.ws87{word-spacing:-0.148800pt;}
.wscf{word-spacing:-0.106667pt;}
.wse7{word-spacing:-0.090667pt;}
.wsb8{word-spacing:-0.053333pt;}
.ws7{word-spacing:-0.039467pt;}
.ws8{word-spacing:0.000000pt;}
.wse5{word-spacing:0.045333pt;}
.ws41{word-spacing:0.049600pt;}
.ws58{word-spacing:0.053333pt;}
.wsee{word-spacing:0.090667pt;}
.ws1b{word-spacing:0.106667pt;}
.ws9b{word-spacing:0.148800pt;}
.wsa4{word-spacing:0.160000pt;}
.wsea{word-spacing:0.198400pt;}
.ws72{word-spacing:0.213333pt;}
.ws1c{word-spacing:0.248000pt;}
.wsa8{word-spacing:0.310933pt;}
.wsc4{word-spacing:0.320000pt;}
.ws33{word-spacing:0.373333pt;}
.ws6f{word-spacing:0.426667pt;}
.wsc8{word-spacing:0.480000pt;}
.ws89{word-spacing:0.496000pt;}
.wsc7{word-spacing:0.533333pt;}
.ws73{word-spacing:0.586667pt;}
.ws97{word-spacing:0.595200pt;}
.ws37{word-spacing:0.640000pt;}
.ws13{word-spacing:0.693333pt;}
.wsbb{word-spacing:0.746667pt;}
.wsed{word-spacing:0.770667pt;}
.wsaf{word-spacing:0.793600pt;}
.ws31{word-spacing:0.800000pt;}
.ws8a{word-spacing:0.843200pt;}
.ws15{word-spacing:0.853333pt;}
.ws95{word-spacing:0.906667pt;}
.ws42{word-spacing:0.942400pt;}
.ws39{word-spacing:0.960000pt;}
.ws43{word-spacing:0.992000pt;}
.wsba{word-spacing:1.013333pt;}
.wsdd{word-spacing:1.042667pt;}
.wsaa{word-spacing:1.066667pt;}
.wsdf{word-spacing:1.088000pt;}
.ws8b{word-spacing:1.091200pt;}
.ws54{word-spacing:1.120000pt;}
.wse1{word-spacing:1.133333pt;}
.wse{word-spacing:1.173333pt;}
.wse3{word-spacing:1.178667pt;}
.wsf1{word-spacing:1.224000pt;}
.ws69{word-spacing:1.226667pt;}
.ws99{word-spacing:1.240000pt;}
.wsc0{word-spacing:1.280000pt;}
.wsd1{word-spacing:1.289600pt;}
.ws94{word-spacing:1.333333pt;}
.ws67{word-spacing:1.386667pt;}
.ws98{word-spacing:1.388800pt;}
.wsde{word-spacing:1.405333pt;}
.ws11{word-spacing:1.440000pt;}
.wse0{word-spacing:1.450667pt;}
.ws84{word-spacing:1.488000pt;}
.ws6c{word-spacing:1.493333pt;}
.wsa{word-spacing:1.541333pt;}
.ws2e{word-spacing:1.546667pt;}
.ws40{word-spacing:1.587200pt;}
.ws5b{word-spacing:1.600000pt;}
.wse2{word-spacing:1.632000pt;}
.ws88{word-spacing:1.636800pt;}
.ws16{word-spacing:1.653333pt;}
.wse8{word-spacing:1.677333pt;}
.ws2c{word-spacing:1.706667pt;}
.ws59{word-spacing:1.760000pt;}
.wsb5{word-spacing:1.785600pt;}
.ws2f{word-spacing:1.813333pt;}
.wsad{word-spacing:1.920000pt;}
.ws85{word-spacing:1.934400pt;}
.ws51{word-spacing:1.973333pt;}
.ws29{word-spacing:2.026667pt;}
.ws53{word-spacing:2.080000pt;}
.ws86{word-spacing:2.083200pt;}
.ws27{word-spacing:2.133333pt;}
.ws5c{word-spacing:2.186667pt;}
.ws18{word-spacing:2.240000pt;}
.ws5f{word-spacing:2.293333pt;}
.ws4c{word-spacing:2.400000pt;}
.ws7e{word-spacing:2.453333pt;}
.ws5d{word-spacing:2.506667pt;}
.ws1a{word-spacing:2.560000pt;}
.ws38{word-spacing:2.613333pt;}
.ws74{word-spacing:2.666667pt;}
.ws36{word-spacing:2.720000pt;}
.wsa3{word-spacing:2.773333pt;}
.ws71{word-spacing:2.826667pt;}
.ws1e{word-spacing:2.876800pt;}
.wsd8{word-spacing:2.880000pt;}
.ws78{word-spacing:2.926400pt;}
.wsbd{word-spacing:2.933333pt;}
.ws4b{word-spacing:2.986667pt;}
.ws60{word-spacing:3.040000pt;}
.ws2b{word-spacing:3.093333pt;}
.ws52{word-spacing:3.146667pt;}
.ws76{word-spacing:3.174400pt;}
.ws6a{word-spacing:3.200000pt;}
.ws81{word-spacing:3.253333pt;}
.ws61{word-spacing:3.306667pt;}
.ws3c{word-spacing:3.323200pt;}
.ws14{word-spacing:3.413333pt;}
.ws64{word-spacing:3.466667pt;}
.ws5e{word-spacing:3.520000pt;}
.ws3f{word-spacing:3.521600pt;}
.ws50{word-spacing:3.573333pt;}
.ws2a{word-spacing:3.626667pt;}
.wscc{word-spacing:3.733333pt;}
.wsbf{word-spacing:3.840000pt;}
.wsac{word-spacing:3.893333pt;}
.wsbe{word-spacing:4.000000pt;}
.ws9{word-spacing:4.125333pt;}
.ws34{word-spacing:4.266667pt;}
.wsb9{word-spacing:4.373333pt;}
.ws57{word-spacing:4.426667pt;}
.ws3b{word-spacing:4.533333pt;}
.ws63{word-spacing:4.586667pt;}
.ws80{word-spacing:4.640000pt;}
.wsce{word-spacing:4.800000pt;}
.wsab{word-spacing:4.960000pt;}
.ws7f{word-spacing:5.386667pt;}
.wsb2{word-spacing:5.753600pt;}
.wscd{word-spacing:5.920000pt;}
.wsc5{word-spacing:6.186667pt;}
.wsb1{word-spacing:6.200000pt;}
.ws3e{word-spacing:7.440000pt;}
.wsd0{word-spacing:31.198401pt;}
.wsb3{word-spacing:31.595202pt;}
.ws3d{word-spacing:45.731201pt;}
.ws7c{word-spacing:926.543976pt;}
.wsd7{word-spacing:926.784027pt;}
.ws26{word-spacing:926.832000pt;}
.wsc3{word-spacing:926.879974pt;}
.wsa1{word-spacing:926.976013pt;}
.ws56{word-spacing:928.703979pt;}
.ws66{word-spacing:1486.895965pt;}
.ws91{word-spacing:1487.183990pt;}
.wsb7{word-spacing:1488.239960pt;}
.wscb{word-spacing:1489.391967pt;}
.ws4a{word-spacing:1490.928039pt;}
.wsec{word-spacing:1493.039978pt;}
._12{margin-left:-928.804804pt;}
._a{margin-left:-926.900846pt;}
._f{margin-left:-40.186132pt;}
._17{margin-left:-31.794664pt;}
._2{margin-left:-10.675200pt;}
._d{margin-left:-8.689017pt;}
._c{margin-left:-7.482667pt;}
._8{margin-left:-6.504267pt;}
._7{margin-left:-4.855200pt;}
._1{margin-left:-3.848533pt;}
._4{margin-left:-2.253067pt;}
._0{margin-left:-1.280000pt;}
._5{width:0.952000pt;}
._3{width:1.881333pt;}
._6{width:3.120800pt;}
._b{width:4.378667pt;}
._18{width:6.186664pt;}
._16{width:7.325064pt;}
._1b{width:23.558944pt;}
._15{width:25.394662pt;}
._19{width:29.461342pt;}
._13{width:31.643745pt;}
._1a{width:33.748250pt;}
._14{width:35.859753pt;}
._e{width:42.308278pt;}
._10{width:45.958404pt;}
._11{width:47.715205pt;}
._9{width:50.789864pt;}
.fs8{font-size:19.733334pt;}
.fs3{font-size:26.429334pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:36.800001pt;}
.fs2{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:49.600001pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:80.503334pt;}
.yb6{bottom:80.503998pt;}
.y6c{bottom:80.504135pt;}
.ycf{bottom:80.507862pt;}
.y4b{bottom:80.508005pt;}
.y99{bottom:80.511737pt;}
.y88{bottom:81.171558pt;}
.y10f{bottom:81.171560pt;}
.y4a{bottom:95.970805pt;}
.y98{bottom:95.974537pt;}
.y22{bottom:95.978534pt;}
.y128{bottom:95.982267pt;}
.yb5{bottom:95.982399pt;}
.y87{bottom:97.571558pt;}
.y10e{bottom:97.571560pt;}
.y97{bottom:111.437337pt;}
.y21{bottom:111.441334pt;}
.y127{bottom:111.445067pt;}
.yb4{bottom:111.445199pt;}
.yf3{bottom:111.445331pt;}
.y49{bottom:111.449196pt;}
.y86{bottom:113.971558pt;}
.y10d{bottom:113.971560pt;}
.y6b{bottom:113.971564pt;}
.y20{bottom:126.904134pt;}
.yce{bottom:126.907193pt;}
.y126{bottom:126.907867pt;}
.yf2{bottom:126.908131pt;}
.y48{bottom:126.911996pt;}
.yb3{bottom:126.915738pt;}
.y85{bottom:130.371558pt;}
.y10c{bottom:130.371560pt;}
.y6a{bottom:130.371564pt;}
.ycd{bottom:142.369993pt;}
.y125{bottom:142.370666pt;}
.yf1{bottom:142.370931pt;}
.yb2{bottom:142.378538pt;}
.y47{bottom:142.382535pt;}
.y84{bottom:146.771559pt;}
.y10b{bottom:146.771560pt;}
.y69{bottom:146.771564pt;}
.y11a{bottom:146.771604pt;}
.y96{bottom:146.771731pt;}
.y146{bottom:149.155579pt;}
.yf0{bottom:157.841603pt;}
.ycc{bottom:157.845193pt;}
.y46{bottom:157.845335pt;}
.yb1{bottom:157.848272pt;}
.y83{bottom:163.171559pt;}
.y10a{bottom:163.171561pt;}
.y68{bottom:163.171565pt;}
.y1f{bottom:163.171604pt;}
.y119{bottom:163.171605pt;}
.y95{bottom:163.171731pt;}
.y145{bottom:164.489580pt;}
.yef{bottom:173.304403pt;}
.ycb{bottom:173.307993pt;}
.y45{bottom:173.308135pt;}
.yb0{bottom:173.311072pt;}
.y82{bottom:179.571559pt;}
.y109{bottom:179.571561pt;}
.y67{bottom:179.571565pt;}
.y1e{bottom:179.571604pt;}
.y118{bottom:179.571605pt;}
.y94{bottom:179.571731pt;}
.y144{bottom:179.823580pt;}
.yca{bottom:188.770793pt;}
.y44{bottom:188.770935pt;}
.yee{bottom:188.775074pt;}
.yaf{bottom:188.786272pt;}
.y143{bottom:195.157581pt;}
.y81{bottom:195.971559pt;}
.y108{bottom:195.971561pt;}
.y66{bottom:195.971565pt;}
.y1d{bottom:195.971604pt;}
.y117{bottom:195.971605pt;}
.y93{bottom:195.971731pt;}
.yed{bottom:204.237874pt;}
.y124{bottom:204.241464pt;}
.y43{bottom:204.245461pt;}
.yae{bottom:204.249072pt;}
.y142{bottom:210.491581pt;}
.y80{bottom:212.371559pt;}
.y107{bottom:212.371561pt;}
.y65{bottom:212.371565pt;}
.y1c{bottom:212.371604pt;}
.y116{bottom:212.371605pt;}
.y92{bottom:212.371732pt;}
.y123{bottom:219.704264pt;}
.y42{bottom:219.708261pt;}
.yad{bottom:219.711872pt;}
.y141{bottom:225.825582pt;}
.y7f{bottom:228.771559pt;}
.y106{bottom:228.771561pt;}
.y64{bottom:228.771565pt;}
.y1b{bottom:228.771604pt;}
.y115{bottom:228.771605pt;}
.yc9{bottom:228.771718pt;}
.y91{bottom:228.771732pt;}
.y41{bottom:235.171061pt;}
.yac{bottom:235.174672pt;}
.y140{bottom:241.159582pt;}
.y7e{bottom:245.171559pt;}
.y105{bottom:245.171561pt;}
.y1a{bottom:245.171604pt;}
.y114{bottom:245.171605pt;}
.yec{bottom:245.171612pt;}
.yc8{bottom:245.171718pt;}
.y90{bottom:245.171732pt;}
.yab{bottom:250.641326pt;}
.y40{bottom:250.641733pt;}
.y13f{bottom:256.493582pt;}
.y7d{bottom:261.571559pt;}
.y104{bottom:261.571561pt;}
.y63{bottom:261.571565pt;}
.y113{bottom:261.571605pt;}
.yeb{bottom:261.571612pt;}
.yc7{bottom:261.571718pt;}
.y8f{bottom:261.571732pt;}
.yaa{bottom:266.104126pt;}
.y3f{bottom:266.104533pt;}
.y13e{bottom:271.827583pt;}
.y7c{bottom:277.971560pt;}
.y103{bottom:277.971561pt;}
.y19{bottom:277.971605pt;}
.y112{bottom:277.971606pt;}
.yea{bottom:277.971612pt;}
.yc6{bottom:277.971718pt;}
.y8e{bottom:277.971732pt;}
.y122{bottom:277.971752pt;}
.y13d{bottom:287.161583pt;}
.y7b{bottom:294.371560pt;}
.y102{bottom:294.371562pt;}
.y111{bottom:294.371606pt;}
.ye9{bottom:294.371612pt;}
.yc5{bottom:294.371719pt;}
.y121{bottom:294.371752pt;}
.y13c{bottom:302.495584pt;}
.y7a{bottom:310.771560pt;}
.y101{bottom:310.771562pt;}
.y62{bottom:310.771566pt;}
.ya9{bottom:310.771606pt;}
.ye8{bottom:310.771612pt;}
.yc4{bottom:310.771719pt;}
.y3e{bottom:310.771732pt;}
.y120{bottom:310.771752pt;}
.y13b{bottom:317.829584pt;}
.y79{bottom:327.171560pt;}
.y100{bottom:327.171562pt;}
.y61{bottom:327.171566pt;}
.y18{bottom:327.171605pt;}
.ye7{bottom:327.171612pt;}
.yc3{bottom:327.171719pt;}
.y3d{bottom:327.171733pt;}
.y13a{bottom:333.163585pt;}
.y78{bottom:343.571560pt;}
.yff{bottom:343.571562pt;}
.y60{bottom:343.571566pt;}
.y3c{bottom:343.571598pt;}
.y17{bottom:343.571605pt;}
.ye6{bottom:343.571613pt;}
.yc2{bottom:343.571719pt;}
.y11f{bottom:343.571752pt;}
.y139{bottom:348.497585pt;}
.y77{bottom:359.971560pt;}
.yfe{bottom:359.971562pt;}
.y5f{bottom:359.971567pt;}
.y16{bottom:359.971606pt;}
.ye5{bottom:359.971613pt;}
.yc1{bottom:359.971719pt;}
.y138{bottom:363.831586pt;}
.y76{bottom:376.371560pt;}
.yfd{bottom:376.371562pt;}
.y5e{bottom:376.371567pt;}
.y15{bottom:376.371606pt;}
.ye4{bottom:376.371613pt;}
.yc0{bottom:376.371719pt;}
.y11e{bottom:376.371753pt;}
.y137{bottom:379.165586pt;}
.y75{bottom:392.771561pt;}
.yfc{bottom:392.771562pt;}
.y5d{bottom:392.771567pt;}
.y14{bottom:392.771606pt;}
.ye3{bottom:392.771613pt;}
.ybf{bottom:392.771719pt;}
.y11d{bottom:392.771753pt;}
.y136{bottom:394.499587pt;}
.y74{bottom:409.171561pt;}
.yfb{bottom:409.171563pt;}
.y5c{bottom:409.171567pt;}
.ye2{bottom:409.171590pt;}
.y13{bottom:409.171606pt;}
.ya8{bottom:409.171612pt;}
.ybe{bottom:409.171719pt;}
.y11c{bottom:409.171753pt;}
.y135{bottom:409.833587pt;}
.y134{bottom:425.167587pt;}
.y73{bottom:425.571561pt;}
.yfa{bottom:425.571563pt;}
.y5b{bottom:425.571567pt;}
.y12{bottom:425.571606pt;}
.ya7{bottom:425.571613pt;}
.ye1{bottom:425.571614pt;}
.ybd{bottom:425.571720pt;}
.y133{bottom:440.501588pt;}
.y72{bottom:441.971561pt;}
.yf9{bottom:441.971563pt;}
.y5a{bottom:441.971567pt;}
.y11{bottom:441.971606pt;}
.ya6{bottom:441.971613pt;}
.ye0{bottom:441.971614pt;}
.ybc{bottom:441.971720pt;}
.y132{bottom:455.835588pt;}
.y71{bottom:458.371561pt;}
.yf8{bottom:458.371563pt;}
.y59{bottom:458.371567pt;}
.y10{bottom:458.371606pt;}
.ya5{bottom:458.371613pt;}
.ydf{bottom:458.371614pt;}
.ybb{bottom:458.371720pt;}
.y131{bottom:471.169589pt;}
.y70{bottom:474.771561pt;}
.yf7{bottom:474.771563pt;}
.y58{bottom:474.771567pt;}
.yf{bottom:474.771581pt;}
.y3b{bottom:474.771606pt;}
.ya4{bottom:474.771613pt;}
.yde{bottom:474.771614pt;}
.yba{bottom:474.771720pt;}
.y130{bottom:486.503589pt;}
.y6f{bottom:491.171561pt;}
.yf6{bottom:491.171563pt;}
.y57{bottom:491.171568pt;}
.ye{bottom:491.171582pt;}
.y3a{bottom:491.171606pt;}
.ya3{bottom:491.171613pt;}
.ydd{bottom:491.171614pt;}
.yb9{bottom:491.171720pt;}
.y12f{bottom:501.837590pt;}
.y6e{bottom:507.571561pt;}
.yf5{bottom:507.571563pt;}
.y56{bottom:507.571568pt;}
.yd{bottom:507.571582pt;}
.y39{bottom:507.571606pt;}
.ya2{bottom:507.571613pt;}
.ydc{bottom:507.571615pt;}
.yb8{bottom:507.571720pt;}
.y12e{bottom:517.169589pt;}
.y6d{bottom:523.971562pt;}
.yf4{bottom:523.971563pt;}
.y8d{bottom:523.971568pt;}
.yc{bottom:523.971582pt;}
.y55{bottom:523.971598pt;}
.y38{bottom:523.971606pt;}
.ya1{bottom:523.971613pt;}
.yb7{bottom:523.971720pt;}
.y12d{bottom:532.503589pt;}
.y54{bottom:540.371564pt;}
.y8c{bottom:540.371568pt;}
.yb{bottom:540.371582pt;}
.y37{bottom:540.371606pt;}
.ya0{bottom:540.371614pt;}
.y12c{bottom:547.837590pt;}
.y36{bottom:556.771563pt;}
.y53{bottom:556.771564pt;}
.y8b{bottom:556.771569pt;}
.y9f{bottom:556.771614pt;}
.y12b{bottom:563.169589pt;}
.y35{bottom:573.171563pt;}
.y52{bottom:573.171564pt;}
.y8a{bottom:573.171569pt;}
.y9e{bottom:573.171614pt;}
.y12a{bottom:578.503589pt;}
.ya{bottom:585.567612pt;}
.y34{bottom:589.571563pt;}
.y51{bottom:589.571564pt;}
.y89{bottom:589.571615pt;}
.ydb{bottom:589.571630pt;}
.y9{bottom:600.901612pt;}
.y152{bottom:605.520248pt;}
.y33{bottom:605.971563pt;}
.y50{bottom:605.971564pt;}
.y9d{bottom:605.971614pt;}
.yda{bottom:605.971630pt;}
.y129{bottom:609.171590pt;}
.y151{bottom:620.846244pt;}
.y32{bottom:622.371563pt;}
.y4f{bottom:622.371564pt;}
.y9c{bottom:622.371614pt;}
.yd9{bottom:622.371630pt;}
.y8{bottom:631.569613pt;}
.y150{bottom:636.180244pt;}
.y31{bottom:638.771563pt;}
.y4e{bottom:638.771564pt;}
.y9b{bottom:638.771614pt;}
.yd8{bottom:638.771630pt;}
.y7{bottom:646.903614pt;}
.y30{bottom:655.171564pt;}
.y4d{bottom:655.171565pt;}
.y11b{bottom:655.171590pt;}
.y9a{bottom:655.171614pt;}
.yd7{bottom:655.171630pt;}
.y6{bottom:662.237614pt;}
.y4c{bottom:671.571565pt;}
.y2f{bottom:671.571615pt;}
.yd6{bottom:671.571630pt;}
.y5{bottom:677.570947pt;}
.y14f{bottom:682.182244pt;}
.y2e{bottom:687.971565pt;}
.yd5{bottom:687.971630pt;}
.y4{bottom:692.904948pt;}
.y14e{bottom:697.516245pt;}
.y2d{bottom:704.371565pt;}
.yd4{bottom:704.371631pt;}
.y14d{bottom:712.850245pt;}
.y2c{bottom:720.771565pt;}
.yd3{bottom:720.771631pt;}
.y14c{bottom:728.184246pt;}
.y3{bottom:734.904948pt;}
.y2b{bottom:737.171565pt;}
.yd2{bottom:737.171582pt;}
.y110{bottom:737.171631pt;}
.y14b{bottom:743.518246pt;}
.y2a{bottom:753.571565pt;}
.yd1{bottom:753.571582pt;}
.y14a{bottom:758.852247pt;}
.y25{bottom:762.125350pt;}
.y24{bottom:768.790283pt;}
.y29{bottom:769.971565pt;}
.yd0{bottom:769.971582pt;}
.y2{bottom:771.391770pt;}
.y149{bottom:774.186247pt;}
.y28{bottom:786.371566pt;}
.y148{bottom:789.520248pt;}
.y1{bottom:796.714437pt;}
.y27{bottom:802.771566pt;}
.y147{bottom:804.854248pt;}
.y26{bottom:849.726562pt;}
.hb{height:13.596267pt;}
.h6{height:41.344000pt;}
.h5{height:41.346668pt;}
.h1c{height:41.352005pt;}
.h1e{height:41.376017pt;}
.h1d{height:41.842667pt;}
.h4{height:42.840000pt;}
.h12{height:44.292801pt;}
.ha{height:44.838401pt;}
.h13{height:44.841625pt;}
.hc{height:45.216000pt;}
.h7{height:48.640000pt;}
.he{height:48.640005pt;}
.h14{height:48.640066pt;}
.h16{height:48.640092pt;}
.h19{height:48.640097pt;}
.h8{height:48.640100pt;}
.h11{height:48.640137pt;}
.h10{height:48.640171pt;}
.hd{height:48.640175pt;}
.h17{height:48.640178pt;}
.h15{height:48.640197pt;}
.h18{height:48.640200pt;}
.h1a{height:48.640428pt;}
.hf{height:48.640666pt;}
.h1b{height:49.226667pt;}
.h9{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x7{left:22.707866pt;}
.x6{left:25.436000pt;}
.x5{left:64.251999pt;}
.x1{left:71.811066pt;}
.x8{left:83.149602pt;}
.x2{left:90.704400pt;}
.x9{left:98.754669pt;}
.xa{left:305.642010pt;}
.x4{left:578.865332pt;}
.x3{left:581.593465pt;}
}




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