
    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_72bfa8ec582ccf349c0aa3f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_5f925bd257f9320eca6d9e43.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_b136ac85da62ad2b9713878a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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_94722e20f7f0926ef283e922.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_604a24dc89ee990141279889.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_468606919a3b6769e6fe9401.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_1cf25953c19ea6b3cb74bd64.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_a7515f71b3abefeed957ea0b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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);}
.m1{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);}
.m4{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-3.006000px;}
.lsf{letter-spacing:-2.916000px;}
.ls27{letter-spacing:-0.630000px;}
.lsa{letter-spacing:-0.594000px;}
.ls1a{letter-spacing:-0.383400px;}
.ls2f{letter-spacing:-0.381600px;}
.ls2a{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.310200px;}
.ls1b{letter-spacing:-0.306000px;}
.ls11{letter-spacing:-0.277800px;}
.ls35{letter-spacing:-0.243600px;}
.ls6{letter-spacing:-0.240000px;}
.ls2c{letter-spacing:-0.229800px;}
.ls10{letter-spacing:-0.215400px;}
.ls2d{letter-spacing:-0.191400px;}
.ls28{letter-spacing:-0.180000px;}
.ls2{letter-spacing:-0.168600px;}
.ls22{letter-spacing:-0.058440px;}
.lsd{letter-spacing:-0.002160px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.050400px;}
.ls1c{letter-spacing:0.064800px;}
.ls29{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.100800px;}
.ls3{letter-spacing:0.126000px;}
.ls25{letter-spacing:0.147000px;}
.ls26{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.194400px;}
.ls2b{letter-spacing:0.213600px;}
.ls4{letter-spacing:0.262200px;}
.ls24{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.295200px;}
.ls2e{letter-spacing:0.301200px;}
.ls15{letter-spacing:0.312192px;}
.ls13{letter-spacing:0.348480px;}
.ls23{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.468480px;}
.lsb{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.846000px;}
.ls1d{letter-spacing:16.632000px;}
.ls3c{letter-spacing:18.329040px;}
.ls3b{letter-spacing:19.049040px;}
.ls37{letter-spacing:19.248480px;}
.ls3d{letter-spacing:20.610000px;}
.ls1e{letter-spacing:20.700000px;}
.ls31{letter-spacing:21.450960px;}
.ls30{letter-spacing:21.462960px;}
.ls32{letter-spacing:21.948480px;}
.ls14{letter-spacing:22.079808px;}
.ls20{letter-spacing:22.140000px;}
.ls12{letter-spacing:22.151520px;}
.ls8{letter-spacing:22.290960px;}
.ls5{letter-spacing:30.444480px;}
.ls1f{letter-spacing:32.940000px;}
.ls34{letter-spacing:41.622960px;}
.ls38{letter-spacing:52.748064px;}
.ls36{letter-spacing:52.889040px;}
.ls39{letter-spacing:91.501920px;}
.ls3a{letter-spacing:96.778080px;}
.ls33{letter-spacing:101.856000px;}
.ls7{letter-spacing:106.057440px;}
.ls21{letter-spacing:107.820000px;}
.ls3f{letter-spacing:109.538496px;}
.ls3e{letter-spacing:109.582560px;}
.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;}
}
.wsec{word-spacing:-24.408000px;}
.ws1a{word-spacing:-23.106240px;}
.ws9f{word-spacing:-21.767760px;}
.ws12{word-spacing:-21.674304px;}
.ws0{word-spacing:-21.641760px;}
.ws56{word-spacing:-21.473160px;}
.wsf8{word-spacing:-21.398160px;}
.ws60{word-spacing:-21.331560px;}
.ws66{word-spacing:-21.290904px;}
.wsa5{word-spacing:-20.340000px;}
.wsb3{word-spacing:-19.038240px;}
.wsc2{word-spacing:-18.808440px;}
.ws86{word-spacing:-2.250000px;}
.wsac{word-spacing:-2.160000px;}
.wsdb{word-spacing:-2.115360px;}
.ws38{word-spacing:-1.594800px;}
.ws5{word-spacing:-1.558080px;}
.ws87{word-spacing:-1.530000px;}
.wsba{word-spacing:-1.489680px;}
.wsad{word-spacing:-1.440000px;}
.wsf5{word-spacing:-1.430640px;}
.wsb8{word-spacing:-1.369680px;}
.ws8e{word-spacing:-1.205640px;}
.ws16{word-spacing:-1.176840px;}
.ws1e{word-spacing:-1.141200px;}
.wsf2{word-spacing:-1.131840px;}
.ws4b{word-spacing:-1.127520px;}
.ws7{word-spacing:-1.060560px;}
.wsb5{word-spacing:-1.010160px;}
.ws9e{word-spacing:-0.974880px;}
.ws7d{word-spacing:-0.970560px;}
.ws5a{word-spacing:-0.961200px;}
.wsdf{word-spacing:-0.946080px;}
.ws8d{word-spacing:-0.923616px;}
.wsf6{word-spacing:-0.911520px;}
.ws7e{word-spacing:-0.907440px;}
.wsaf{word-spacing:-0.870000px;}
.wsd{word-spacing:-0.829728px;}
.wsd0{word-spacing:-0.829440px;}
.wsb{word-spacing:-0.798480px;}
.wsce{word-spacing:-0.785520px;}
.wsaa{word-spacing:-0.780000px;}
.ws7f{word-spacing:-0.779904px;}
.wseb{word-spacing:-0.773280px;}
.ws13{word-spacing:-0.752400px;}
.wsb7{word-spacing:-0.711360px;}
.ws61{word-spacing:-0.708576px;}
.wse6{word-spacing:-0.678960px;}
.ws68{word-spacing:-0.678480px;}
.wsb0{word-spacing:-0.657360px;}
.ws19{word-spacing:-0.649728px;}
.wsb4{word-spacing:-0.642960px;}
.wse0{word-spacing:-0.640704px;}
.wse7{word-spacing:-0.639360px;}
.ws8f{word-spacing:-0.624096px;}
.wsb9{word-spacing:-0.606960px;}
.ws33{word-spacing:-0.559680px;}
.wsd8{word-spacing:-0.531120px;}
.ws59{word-spacing:-0.528000px;}
.wsbb{word-spacing:-0.527040px;}
.ws4a{word-spacing:-0.523680px;}
.wsc3{word-spacing:-0.518400px;}
.wsa3{word-spacing:-0.510000px;}
.wsc{word-spacing:-0.509040px;}
.ws55{word-spacing:-0.503280px;}
.wsc8{word-spacing:-0.480960px;}
.ws7b{word-spacing:-0.478800px;}
.wsd9{word-spacing:-0.469440px;}
.wsa{word-spacing:-0.462240px;}
.wsd7{word-spacing:-0.458496px;}
.ws14{word-spacing:-0.422496px;}
.ws64{word-spacing:-0.415296px;}
.ws51{word-spacing:-0.384000px;}
.wsb2{word-spacing:-0.381600px;}
.ws47{word-spacing:-0.381120px;}
.wsb6{word-spacing:-0.365040px;}
.wse3{word-spacing:-0.358080px;}
.wsf3{word-spacing:-0.329280px;}
.wsc6{word-spacing:-0.321120px;}
.wse2{word-spacing:-0.293184px;}
.wsf9{word-spacing:-0.282960px;}
.ws57{word-spacing:-0.250080px;}
.ws65{word-spacing:-0.228672px;}
.wsbd{word-spacing:-0.226080px;}
.ws49{word-spacing:-0.221040px;}
.ws58{word-spacing:-0.205440px;}
.ws48{word-spacing:-0.202320px;}
.wsa4{word-spacing:-0.180000px;}
.ws36{word-spacing:-0.167760px;}
.wsed{word-spacing:-0.162960px;}
.wse8{word-spacing:-0.101040px;}
.wsab{word-spacing:-0.090000px;}
.wsbc{word-spacing:-0.078480px;}
.ws46{word-spacing:-0.055440px;}
.wsf1{word-spacing:-0.047760px;}
.ws9d{word-spacing:-0.028080px;}
.ws78{word-spacing:-0.025200px;}
.wsd1{word-spacing:-0.003600px;}
.ws17{word-spacing:-0.002016px;}
.ws1b{word-spacing:0.000000px;}
.wsd4{word-spacing:0.030960px;}
.ws5c{word-spacing:0.074640px;}
.ws45{word-spacing:0.088560px;}
.wsc0{word-spacing:0.090240px;}
.ws82{word-spacing:0.092952px;}
.wsb1{word-spacing:0.102240px;}
.ws76{word-spacing:0.114480px;}
.ws85{word-spacing:0.142560px;}
.wsdc{word-spacing:0.150480px;}
.ws4d{word-spacing:0.157440px;}
.ws84{word-spacing:0.175680px;}
.ws9{word-spacing:0.210960px;}
.ws7a{word-spacing:0.221760px;}
.wsd2{word-spacing:0.222240px;}
.wsc7{word-spacing:0.241200px;}
.wsde{word-spacing:0.246240px;}
.wsda{word-spacing:0.255360px;}
.ws8{word-spacing:0.257760px;}
.wsbe{word-spacing:0.266160px;}
.wsea{word-spacing:0.269760px;}
.ws62{word-spacing:0.304704px;}
.wsbf{word-spacing:0.306000px;}
.ws43{word-spacing:0.306720px;}
.wscc{word-spacing:0.361440px;}
.wscf{word-spacing:0.363600px;}
.ws6a{word-spacing:0.367920px;}
.ws5d{word-spacing:0.377760px;}
.ws5b{word-spacing:0.390960px;}
.wsc5{word-spacing:0.393840px;}
.wscb{word-spacing:0.421200px;}
.ws5e{word-spacing:0.421560px;}
.ws54{word-spacing:0.437760px;}
.wsae{word-spacing:0.450000px;}
.ws4e{word-spacing:0.477360px;}
.wsc9{word-spacing:0.478440px;}
.wsef{word-spacing:0.498240px;}
.ws34{word-spacing:0.514080px;}
.ws80{word-spacing:0.522360px;}
.ws9c{word-spacing:0.587280px;}
.wse9{word-spacing:0.590760px;}
.ws81{word-spacing:0.609120px;}
.wsd5{word-spacing:0.616320px;}
.ws9b{word-spacing:0.630000px;}
.ws18{word-spacing:0.667584px;}
.wsf0{word-spacing:0.691920px;}
.wsf4{word-spacing:0.717120px;}
.ws53{word-spacing:0.740880px;}
.ws1c{word-spacing:0.763920px;}
.ws102{word-spacing:0.785280px;}
.ws35{word-spacing:0.791280px;}
.wscd{word-spacing:0.810240px;}
.ws83{word-spacing:0.817920px;}
.ws79{word-spacing:0.822240px;}
.ws77{word-spacing:0.834240px;}
.ws7c{word-spacing:0.847440px;}
.wse1{word-spacing:0.869184px;}
.ws52{word-spacing:0.941880px;}
.wsd6{word-spacing:0.942240px;}
.ws24{word-spacing:0.977760px;}
.ws44{word-spacing:0.988200px;}
.ws26{word-spacing:1.018800px;}
.ws1d{word-spacing:1.025400px;}
.ws69{word-spacing:1.026000px;}
.wsc1{word-spacing:1.028880px;}
.wsdd{word-spacing:1.053840px;}
.wsd3{word-spacing:1.113840px;}
.ws6{word-spacing:1.141560px;}
.wsc4{word-spacing:1.155120px;}
.ws15{word-spacing:1.175904px;}
.wse4{word-spacing:1.197360px;}
.wsca{word-spacing:1.233840px;}
.ws92{word-spacing:1.260000px;}
.ws90{word-spacing:1.350000px;}
.wsee{word-spacing:1.472640px;}
.wsfa{word-spacing:1.515360px;}
.ws99{word-spacing:1.530000px;}
.ws42{word-spacing:1.533360px;}
.ws37{word-spacing:1.603440px;}
.ws9a{word-spacing:1.620000px;}
.ws4c{word-spacing:1.693200px;}
.ws2a{word-spacing:1.697760px;}
.ws6b{word-spacing:1.708080px;}
.ws93{word-spacing:1.710000px;}
.ws91{word-spacing:1.800000px;}
.ws29{word-spacing:1.830960px;}
.wsa8{word-spacing:1.890000px;}
.ws98{word-spacing:1.920000px;}
.wsa9{word-spacing:1.980000px;}
.ws95{word-spacing:2.070000px;}
.ws22{word-spacing:2.077200px;}
.ws1f{word-spacing:2.127600px;}
.ws25{word-spacing:2.259840px;}
.wsfc{word-spacing:2.282160px;}
.wsa7{word-spacing:2.340000px;}
.ws27{word-spacing:2.386080px;}
.wse5{word-spacing:2.427960px;}
.ws94{word-spacing:2.430000px;}
.ws21{word-spacing:2.453400px;}
.ws20{word-spacing:2.465760px;}
.ws97{word-spacing:2.520000px;}
.ws23{word-spacing:2.529360px;}
.wsfb{word-spacing:2.555040px;}
.wsf7{word-spacing:2.817120px;}
.wsa6{word-spacing:2.910000px;}
.ws28{word-spacing:3.137760px;}
.ws4f{word-spacing:3.147960px;}
.ws67{word-spacing:3.148080px;}
.ws96{word-spacing:3.510000px;}
.ws32{word-spacing:5.039760px;}
.ws31{word-spacing:5.297760px;}
.ws2f{word-spacing:5.630760px;}
.ws2e{word-spacing:5.920320px;}
.ws30{word-spacing:5.940720px;}
.ws50{word-spacing:6.678000px;}
.ws63{word-spacing:6.750000px;}
.ws75{word-spacing:7.286880px;}
.ws74{word-spacing:7.302240px;}
.ws72{word-spacing:7.422240px;}
.ws73{word-spacing:7.643520px;}
.ws71{word-spacing:7.746480px;}
.ws6d{word-spacing:10.001520px;}
.ws6c{word-spacing:10.074240px;}
.ws6f{word-spacing:10.378800px;}
.ws6e{word-spacing:10.501560px;}
.ws8c{word-spacing:12.060000px;}
.ws88{word-spacing:12.150000px;}
.ws8a{word-spacing:12.240000px;}
.ws8b{word-spacing:13.140000px;}
.ws89{word-spacing:14.040000px;}
.ws70{word-spacing:16.038000px;}
.wsa2{word-spacing:18.390000px;}
.wsa0{word-spacing:18.750000px;}
.wsa1{word-spacing:19.170000px;}
.ws2c{word-spacing:28.607040px;}
.ws3c{word-spacing:28.634400px;}
.ws39{word-spacing:28.779600px;}
.ws3a{word-spacing:28.989360px;}
.ws3f{word-spacing:29.035440px;}
.ws40{word-spacing:29.057760px;}
.ws3d{word-spacing:29.069760px;}
.ws3b{word-spacing:29.177760px;}
.ws41{word-spacing:29.359200px;}
.ws3e{word-spacing:29.941560px;}
.ws2b{word-spacing:30.038112px;}
.ws2d{word-spacing:30.202176px;}
.ws10{word-spacing:36.983160px;}
.ws3{word-spacing:37.018800px;}
.wsf{word-spacing:37.075296px;}
.ws2{word-spacing:37.189200px;}
.ws11{word-spacing:37.437984px;}
.ws4{word-spacing:37.650960px;}
.wsff{word-spacing:68.727000px;}
.wsfd{word-spacing:84.339072px;}
.wsfe{word-spacing:84.415680px;}
.ws101{word-spacing:87.403392px;}
.ws100{word-spacing:87.480000px;}
.wse{word-spacing:120.673368px;}
.ws1{word-spacing:120.676320px;}
.ws5f{word-spacing:1277.442480px;}
._1c{margin-left:-11.833920px;}
._4{margin-left:-8.675280px;}
._13{margin-left:-7.560000px;}
._14{margin-left:-6.155280px;}
._15{margin-left:-4.549200px;}
._1{margin-left:-2.872800px;}
._3{margin-left:-1.595520px;}
._2{width:1.290480px;}
._1a{width:2.314080px;}
._1b{width:3.703680px;}
._19{width:17.959680px;}
._16{width:19.835760px;}
._b{width:21.065280px;}
._d{width:22.415280px;}
._6{width:23.828880px;}
._9{width:25.174800px;}
._a{width:28.508400px;}
._8{width:30.444480px;}
._17{width:38.122320px;}
._18{width:39.943200px;}
._0{width:60.472080px;}
._7{width:99.154080px;}
._c{width:106.069440px;}
._1d{width:107.820000px;}
._11{width:109.582560px;}
._12{width:113.328000px;}
._5{width:121.178880px;}
._10{width:514.095120px;}
._f{width:736.402800px;}
._e{width:844.467456px;}
.fc6{color:rgb(107,219,250);}
.fc5{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc4{color:rgb(226,215,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,157,217);}
.fc0{color:rgb(255,255,0);}
.fsd{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fsc{font-size:88.795869px;}
.fs9{font-size:90.000000px;}
.fsa{font-size:90.144000px;}
.fs0{font-size:95.760000px;}
.fs1{font-size:95.904000px;}
.fs3{font-size:102.240000px;}
.fs5{font-size:108.000000px;}
.fsb{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.fs4{font-size:131.904000px;}
.y0{bottom:0.000000px;}
.y88{bottom:39.276000px;}
.yf4{bottom:49.320000px;}
.ydd{bottom:52.416000px;}
.y6b{bottom:52.452000px;}
.y38{bottom:55.368000px;}
.y112{bottom:59.256000px;}
.y24{bottom:63.252000px;}
.yf3{bottom:69.120000px;}
.y13{bottom:74.700000px;}
.y37{bottom:76.968000px;}
.ydc{bottom:79.416000px;}
.y6a{bottom:81.252000px;}
.y96{bottom:84.132000px;}
.y111{bottom:84.456000px;}
.y87{bottom:89.676000px;}
.yba{bottom:90.072000px;}
.y23{bottom:92.052000px;}
.y36{bottom:99.468000px;}
.y75{bottom:100.836000px;}
.y62{bottom:105.768000px;}
.ydb{bottom:106.416000px;}
.y69{bottom:110.088000px;}
.y110{bottom:110.376000px;}
.y86{bottom:114.876000px;}
.yb9{bottom:118.908000px;}
.y22{bottom:120.888000px;}
.y35{bottom:123.768000px;}
.y12{bottom:125.460000px;}
.y74{bottom:129.636000px;}
.ya7{bottom:130.788000px;}
.y61{bottom:130.968000px;}
.yda{bottom:133.416000px;}
.y10f{bottom:138.492000px;}
.y95{bottom:139.464000px;}
.y85{bottom:140.112000px;}
.y9b{bottom:142.488000px;}
.y34{bottom:145.368000px;}
.yb8{bottom:147.708000px;}
.y21{bottom:149.688000px;}
.y60{bottom:156.165000px;}
.ya6{bottom:156.885000px;}
.y73{bottom:158.430000px;}
.y4c{bottom:160.125000px;}
.yd9{bottom:160.455000px;}
.y10e{bottom:163.695000px;}
.y33{bottom:167.910000px;}
.y68{bottom:168.585000px;}
.y11{bottom:169.560000px;}
.yfb{bottom:171.255000px;}
.y9a{bottom:171.285000px;}
.yb7{bottom:176.505000px;}
.y20{bottom:178.485000px;}
.y5f{bottom:181.365000px;}
.y40{bottom:182.700000px;}
.y4b{bottom:187.125000px;}
.yd8{bottom:187.455000px;}
.y10d{bottom:188.895000px;}
.y94{bottom:189.870000px;}
.y84{bottom:190.515000px;}
.y32{bottom:192.210000px;}
.yfa{bottom:198.255000px;}
.y99{bottom:200.085000px;}
.yb6{bottom:205.305000px;}
.y5e{bottom:206.565000px;}
.y1f{bottom:207.285000px;}
.y3f{bottom:207.900000px;}
.ya5{bottom:210.165000px;}
.y10c{bottom:214.095000px;}
.y4a{bottom:214.125000px;}
.y31{bottom:214.710000px;}
.yd7{bottom:214.815000px;}
.y83{bottom:215.715000px;}
.yf9{bottom:225.255000px;}
.y98{bottom:228.885000px;}
.y5d{bottom:231.765000px;}
.yb5{bottom:234.105000px;}
.y10{bottom:235.050000px;}
.ya4{bottom:235.365000px;}
.yc1{bottom:236.085000px;}
.y10b{bottom:239.295000px;}
.y30{bottom:239.910000px;}
.y93{bottom:240.300000px;}
.y82{bottom:240.915000px;}
.y49{bottom:241.125000px;}
.ye7{bottom:248.655000px;}
.yf8{bottom:252.255000px;}
.y5c{bottom:257.010000px;}
.y67{bottom:257.730000px;}
.y3e{bottom:257.760000px;}
.y27{bottom:260.610000px;}
.ya3{bottom:261.330000px;}
.yb4{bottom:262.950000px;}
.y10a{bottom:264.495000px;}
.y1e{bottom:264.930000px;}
.y92{bottom:265.500000px;}
.y81{bottom:266.115000px;}
.y48{bottom:268.530000px;}
.yd6{bottom:272.055000px;}
.y72{bottom:273.495000px;}
.ye6{bottom:275.655000px;}
.yc9{bottom:275.730000px;}
.yf{bottom:279.150000px;}
.yf7{bottom:279.255000px;}
.y5b{bottom:282.210000px;}
.y3d{bottom:282.960000px;}
.y26{bottom:286.530000px;}
.y2f{bottom:289.410000px;}
.y109{bottom:290.445000px;}
.y80{bottom:291.345000px;}
.yb3{bottom:291.750000px;}
.y1d{bottom:293.730000px;}
.yd5{bottom:299.445000px;}
.ye5{bottom:302.685000px;}
.yc0{bottom:303.375000px;}
.yc8{bottom:304.530000px;}
.yf6{bottom:306.285000px;}
.y5a{bottom:307.410000px;}
.y3c{bottom:308.160000px;}
.y2e{bottom:314.610000px;}
.y66{bottom:315.330000px;}
.y91{bottom:315.900000px;}
.y108{bottom:318.525000px;}
.yb2{bottom:320.550000px;}
.y1c{bottom:322.530000px;}
.y47{bottom:325.770000px;}
.ye4{bottom:329.685000px;}
.ybf{bottom:332.175000px;}
.y59{bottom:332.610000px;}
.yf5{bottom:333.285000px;}
.yc7{bottom:333.330000px;}
.y3b{bottom:333.360000px;}
.y2d{bottom:339.810000px;}
.ya2{bottom:340.530000px;}
.y7f{bottom:341.745000px;}
.y107{bottom:343.725000px;}
.y65{bottom:344.130000px;}
.ye{bottom:345.885000px;}
.yb1{bottom:349.350000px;}
.yfd{bottom:350.610000px;}
.y1b{bottom:351.330000px;}
.y46{bottom:352.770000px;}
.yd4{bottom:356.685000px;}
.y58{bottom:357.810000px;}
.y3a{bottom:358.560000px;}
.y71{bottom:360.075000px;}
.yf2{bottom:360.285000px;}
.ybe{bottom:360.975000px;}
.yc6{bottom:361.410000px;}
.y2c{bottom:365.040000px;}
.y90{bottom:366.330000px;}
.y7e{bottom:366.945000px;}
.y106{bottom:368.925000px;}
.y97{bottom:372.930000px;}
.yfc{bottom:375.810000px;}
.yb0{bottom:378.150000px;}
.y45{bottom:379.770000px;}
.y1a{bottom:379.950000px;}
.y57{bottom:383.010000px;}
.yd3{bottom:383.685000px;}
.y39{bottom:383.760000px;}
.yc5{bottom:386.610000px;}
.yf1{bottom:387.285000px;}
.y70{bottom:388.905000px;}
.ybd{bottom:389.805000px;}
.yd{bottom:390.030000px;}
.y2b{bottom:390.240000px;}
.y6{bottom:391.320000px;}
.y7d{bottom:392.145000px;}
.ya1{bottom:393.840000px;}
.y105{bottom:394.125000px;}
.y64{bottom:401.760000px;}
.y44{bottom:406.800000px;}
.yaf{bottom:406.980000px;}
.y56{bottom:408.240000px;}
.y19{bottom:408.960000px;}
.ye2{bottom:410.400000px;}
.yd2{bottom:410.685000px;}
.yc4{bottom:411.660000px;}
.yf0{bottom:414.285000px;}
.y2a{bottom:415.440000px;}
.y8f{bottom:416.730000px;}
.y7c{bottom:417.345000px;}
.y6f{bottom:417.705000px;}
.ya0{bottom:419.040000px;}
.y104{bottom:419.325000px;}
.y5{bottom:420.120000px;}
.y25{bottom:430.560000px;}
.y55{bottom:433.440000px;}
.y43{bottom:433.800000px;}
.yae{bottom:435.780000px;}
.yc3{bottom:436.860000px;}
.ye1{bottom:437.400000px;}
.yd1{bottom:437.730000px;}
.y29{bottom:440.640000px;}
.yef{bottom:441.330000px;}
.y7b{bottom:442.590000px;}
.y9f{bottom:444.960000px;}
.y103{bottom:445.290000px;}
.y6e{bottom:446.505000px;}
.y4{bottom:448.920000px;}
.yc{bottom:454.755000px;}
.y54{bottom:458.640000px;}
.y63{bottom:459.360000px;}
.y42{bottom:460.800000px;}
.yc2{bottom:462.240000px;}
.ye0{bottom:464.400000px;}
.yad{bottom:464.580000px;}
.yd0{bottom:464.730000px;}
.y8e{bottom:467.130000px;}
.y7a{bottom:467.790000px;}
.yee{bottom:468.330000px;}
.y102{bottom:473.370000px;}
.y3{bottom:477.720000px;}
.y53{bottom:483.840000px;}
.y18{bottom:488.160000px;}
.ydf{bottom:491.400000px;}
.ycf{bottom:491.550000px;}
.ye3{bottom:491.730000px;}
.y8d{bottom:492.330000px;}
.yac{bottom:493.380000px;}
.yed{bottom:495.330000px;}
.y9e{bottom:498.240000px;}
.y101{bottom:498.570000px;}
.yb{bottom:498.855000px;}
.y6d{bottom:503.925000px;}
.ybc{bottom:505.005000px;}
.y2{bottom:506.520000px;}
.y52{bottom:509.040000px;}
.y17{bottom:516.960000px;}
.y8c{bottom:517.575000px;}
.y79{bottom:518.190000px;}
.yde{bottom:518.400000px;}
.yce{bottom:518.730000px;}
.yab{bottom:522.180000px;}
.yec{bottom:522.330000px;}
.y9d{bottom:523.440000px;}
.y100{bottom:523.770000px;}
.ybb{bottom:533.805000px;}
.y51{bottom:534.240000px;}
.y7{bottom:535.350000px;}
.y8b{bottom:542.775000px;}
.ycd{bottom:545.730000px;}
.y16{bottom:545.790000px;}
.y9c{bottom:548.670000px;}
.yff{bottom:548.970000px;}
.yeb{bottom:549.330000px;}
.yaa{bottom:551.010000px;}
.y50{bottom:559.470000px;}
.ya{bottom:563.580000px;}
.y1{bottom:564.150000px;}
.y8a{bottom:567.975000px;}
.y78{bottom:568.590000px;}
.ycc{bottom:572.730000px;}
.yfe{bottom:574.200000px;}
.y15{bottom:574.590000px;}
.yea{bottom:576.360000px;}
.ya9{bottom:579.810000px;}
.y4f{bottom:584.670000px;}
.y28{bottom:584.970000px;}
.ycb{bottom:600.120000px;}
.ye9{bottom:603.360000px;}
.y41{bottom:603.390000px;}
.y9{bottom:607.680000px;}
.y4e{bottom:609.870000px;}
.y89{bottom:618.375000px;}
.y77{bottom:619.020000px;}
.ye8{bottom:630.360000px;}
.y14{bottom:632.190000px;}
.y4d{bottom:635.070000px;}
.ya8{bottom:637.410000px;}
.y6c{bottom:647.970000px;}
.yca{bottom:657.720000px;}
.y76{bottom:669.420000px;}
.y8{bottom:677.310000px;}
.h13{height:54.628594px;}
.hf{height:58.367461px;}
.h11{height:58.467234px;}
.ha{height:59.378906px;}
.h10{height:62.398477px;}
.he{height:62.505141px;}
.h12{height:65.773112px;}
.h7{height:69.473320px;}
.h9{height:69.592078px;}
.hb{height:74.223633px;}
.hc{height:74.342391px;}
.h8{height:75.093750px;}
.h1{height:78.973945px;}
.h2{height:79.092703px;}
.h4{height:84.318047px;}
.h6{height:89.068359px;}
.hd{height:99.162773px;}
.h3{height:108.663398px;}
.h5{height:108.782156px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x12{left:20.267984px;}
.x1e{left:53.279984px;}
.x28{left:64.799984px;}
.x1{left:78.839984px;}
.x6{left:83.051984px;}
.x3{left:100.043984px;}
.x22{left:107.279984px;}
.x1b{left:108.575984px;}
.x7{left:116.891984px;}
.x29{left:118.835984px;}
.x2{left:126.179984px;}
.x1d{left:130.355984px;}
.x8{left:137.051984px;}
.x23{left:141.119984px;}
.x15{left:151.634984px;}
.x17{left:159.554984px;}
.x24{left:161.279984px;}
.x1a{left:162.569984px;}
.x19{left:170.894984px;}
.x16{left:177.014984px;}
.x9{left:191.054984px;}
.x2d{left:195.119984px;}
.x20{left:209.189984px;}
.x25{left:215.309984px;}
.x1c{left:216.569984px;}
.x11{left:224.894984px;}
.x27{left:240.689984px;}
.xb{left:244.649984px;}
.x26{left:249.149984px;}
.x2e{left:269.309984px;}
.xc{left:278.489984px;}
.xd{left:298.694984px;}
.x1f{left:300.269984px;}
.x2f{left:303.149984px;}
.x10{left:304.199984px;}
.x30{left:310.649984px;}
.x13{left:315.284984px;}
.x2c{left:321.689984px;}
.x4{left:346.679984px;}
.xe{left:352.694984px;}
.x18{left:384.764984px;}
.xf{left:386.534984px;}
.x31{left:408.029984px;}
.x21{left:464.474984px;}
.xa{left:544.889984px;}
.x14{left:549.869984px;}
.x2a{left:579.389984px;}
.x2b{left:633.389984px;}
.x5{left:996.329984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-2.672000pt;}
.lsf{letter-spacing:-2.592000pt;}
.ls27{letter-spacing:-0.560000pt;}
.lsa{letter-spacing:-0.528000pt;}
.ls1a{letter-spacing:-0.340800pt;}
.ls2f{letter-spacing:-0.339200pt;}
.ls2a{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.275733pt;}
.ls1b{letter-spacing:-0.272000pt;}
.ls11{letter-spacing:-0.246933pt;}
.ls35{letter-spacing:-0.216533pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls2c{letter-spacing:-0.204267pt;}
.ls10{letter-spacing:-0.191467pt;}
.ls2d{letter-spacing:-0.170133pt;}
.ls28{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:-0.149867pt;}
.ls22{letter-spacing:-0.051947pt;}
.lsd{letter-spacing:-0.001920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.044800pt;}
.ls1c{letter-spacing:0.057600pt;}
.ls29{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.089600pt;}
.ls3{letter-spacing:0.112000pt;}
.ls25{letter-spacing:0.130667pt;}
.ls26{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.172800pt;}
.ls2b{letter-spacing:0.189867pt;}
.ls4{letter-spacing:0.233067pt;}
.ls24{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.262400pt;}
.ls2e{letter-spacing:0.267733pt;}
.ls15{letter-spacing:0.277504pt;}
.ls13{letter-spacing:0.309760pt;}
.ls23{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.416427pt;}
.lsb{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.752000pt;}
.ls1d{letter-spacing:14.784000pt;}
.ls3c{letter-spacing:16.292480pt;}
.ls3b{letter-spacing:16.932480pt;}
.ls37{letter-spacing:17.109760pt;}
.ls3d{letter-spacing:18.320000pt;}
.ls1e{letter-spacing:18.400000pt;}
.ls31{letter-spacing:19.067520pt;}
.ls30{letter-spacing:19.078187pt;}
.ls32{letter-spacing:19.509760pt;}
.ls14{letter-spacing:19.626496pt;}
.ls20{letter-spacing:19.680000pt;}
.ls12{letter-spacing:19.690240pt;}
.ls8{letter-spacing:19.814187pt;}
.ls5{letter-spacing:27.061760pt;}
.ls1f{letter-spacing:29.280000pt;}
.ls34{letter-spacing:36.998187pt;}
.ls38{letter-spacing:46.887168pt;}
.ls36{letter-spacing:47.012480pt;}
.ls39{letter-spacing:81.335040pt;}
.ls3a{letter-spacing:86.024960pt;}
.ls33{letter-spacing:90.538667pt;}
.ls7{letter-spacing:94.273280pt;}
.ls21{letter-spacing:95.840000pt;}
.ls3f{letter-spacing:97.367552pt;}
.ls3e{letter-spacing:97.406720pt;}
.wsec{word-spacing:-21.696000pt;}
.ws1a{word-spacing:-20.538880pt;}
.ws9f{word-spacing:-19.349120pt;}
.ws12{word-spacing:-19.266048pt;}
.ws0{word-spacing:-19.237120pt;}
.ws56{word-spacing:-19.087253pt;}
.wsf8{word-spacing:-19.020587pt;}
.ws60{word-spacing:-18.961387pt;}
.ws66{word-spacing:-18.925248pt;}
.wsa5{word-spacing:-18.080000pt;}
.wsb3{word-spacing:-16.922880pt;}
.wsc2{word-spacing:-16.718613pt;}
.ws86{word-spacing:-2.000000pt;}
.wsac{word-spacing:-1.920000pt;}
.wsdb{word-spacing:-1.880320pt;}
.ws38{word-spacing:-1.417600pt;}
.ws5{word-spacing:-1.384960pt;}
.ws87{word-spacing:-1.360000pt;}
.wsba{word-spacing:-1.324160pt;}
.wsad{word-spacing:-1.280000pt;}
.wsf5{word-spacing:-1.271680pt;}
.wsb8{word-spacing:-1.217493pt;}
.ws8e{word-spacing:-1.071680pt;}
.ws16{word-spacing:-1.046080pt;}
.ws1e{word-spacing:-1.014400pt;}
.wsf2{word-spacing:-1.006080pt;}
.ws4b{word-spacing:-1.002240pt;}
.ws7{word-spacing:-0.942720pt;}
.wsb5{word-spacing:-0.897920pt;}
.ws9e{word-spacing:-0.866560pt;}
.ws7d{word-spacing:-0.862720pt;}
.ws5a{word-spacing:-0.854400pt;}
.wsdf{word-spacing:-0.840960pt;}
.ws8d{word-spacing:-0.820992pt;}
.wsf6{word-spacing:-0.810240pt;}
.ws7e{word-spacing:-0.806613pt;}
.wsaf{word-spacing:-0.773333pt;}
.wsd{word-spacing:-0.737536pt;}
.wsd0{word-spacing:-0.737280pt;}
.wsb{word-spacing:-0.709760pt;}
.wsce{word-spacing:-0.698240pt;}
.wsaa{word-spacing:-0.693333pt;}
.ws7f{word-spacing:-0.693248pt;}
.wseb{word-spacing:-0.687360pt;}
.ws13{word-spacing:-0.668800pt;}
.wsb7{word-spacing:-0.632320pt;}
.ws61{word-spacing:-0.629845pt;}
.wse6{word-spacing:-0.603520pt;}
.ws68{word-spacing:-0.603093pt;}
.wsb0{word-spacing:-0.584320pt;}
.ws19{word-spacing:-0.577536pt;}
.wsb4{word-spacing:-0.571520pt;}
.wse0{word-spacing:-0.569515pt;}
.wse7{word-spacing:-0.568320pt;}
.ws8f{word-spacing:-0.554752pt;}
.wsb9{word-spacing:-0.539520pt;}
.ws33{word-spacing:-0.497493pt;}
.wsd8{word-spacing:-0.472107pt;}
.ws59{word-spacing:-0.469333pt;}
.wsbb{word-spacing:-0.468480pt;}
.ws4a{word-spacing:-0.465493pt;}
.wsc3{word-spacing:-0.460800pt;}
.wsa3{word-spacing:-0.453333pt;}
.wsc{word-spacing:-0.452480pt;}
.ws55{word-spacing:-0.447360pt;}
.wsc8{word-spacing:-0.427520pt;}
.ws7b{word-spacing:-0.425600pt;}
.wsd9{word-spacing:-0.417280pt;}
.wsa{word-spacing:-0.410880pt;}
.wsd7{word-spacing:-0.407552pt;}
.ws14{word-spacing:-0.375552pt;}
.ws64{word-spacing:-0.369152pt;}
.ws51{word-spacing:-0.341333pt;}
.wsb2{word-spacing:-0.339200pt;}
.ws47{word-spacing:-0.338773pt;}
.wsb6{word-spacing:-0.324480pt;}
.wse3{word-spacing:-0.318293pt;}
.wsf3{word-spacing:-0.292693pt;}
.wsc6{word-spacing:-0.285440pt;}
.wse2{word-spacing:-0.260608pt;}
.wsf9{word-spacing:-0.251520pt;}
.ws57{word-spacing:-0.222293pt;}
.ws65{word-spacing:-0.203264pt;}
.wsbd{word-spacing:-0.200960pt;}
.ws49{word-spacing:-0.196480pt;}
.ws58{word-spacing:-0.182613pt;}
.ws48{word-spacing:-0.179840pt;}
.wsa4{word-spacing:-0.160000pt;}
.ws36{word-spacing:-0.149120pt;}
.wsed{word-spacing:-0.144853pt;}
.wse8{word-spacing:-0.089813pt;}
.wsab{word-spacing:-0.080000pt;}
.wsbc{word-spacing:-0.069760pt;}
.ws46{word-spacing:-0.049280pt;}
.wsf1{word-spacing:-0.042453pt;}
.ws9d{word-spacing:-0.024960pt;}
.ws78{word-spacing:-0.022400pt;}
.wsd1{word-spacing:-0.003200pt;}
.ws17{word-spacing:-0.001792pt;}
.ws1b{word-spacing:0.000000pt;}
.wsd4{word-spacing:0.027520pt;}
.ws5c{word-spacing:0.066347pt;}
.ws45{word-spacing:0.078720pt;}
.wsc0{word-spacing:0.080213pt;}
.ws82{word-spacing:0.082624pt;}
.wsb1{word-spacing:0.090880pt;}
.ws76{word-spacing:0.101760pt;}
.ws85{word-spacing:0.126720pt;}
.wsdc{word-spacing:0.133760pt;}
.ws4d{word-spacing:0.139947pt;}
.ws84{word-spacing:0.156160pt;}
.ws9{word-spacing:0.187520pt;}
.ws7a{word-spacing:0.197120pt;}
.wsd2{word-spacing:0.197547pt;}
.wsc7{word-spacing:0.214400pt;}
.wsde{word-spacing:0.218880pt;}
.wsda{word-spacing:0.226987pt;}
.ws8{word-spacing:0.229120pt;}
.wsbe{word-spacing:0.236587pt;}
.wsea{word-spacing:0.239787pt;}
.ws62{word-spacing:0.270848pt;}
.wsbf{word-spacing:0.272000pt;}
.ws43{word-spacing:0.272640pt;}
.wscc{word-spacing:0.321280pt;}
.wscf{word-spacing:0.323200pt;}
.ws6a{word-spacing:0.327040pt;}
.ws5d{word-spacing:0.335787pt;}
.ws5b{word-spacing:0.347520pt;}
.wsc5{word-spacing:0.350080pt;}
.wscb{word-spacing:0.374400pt;}
.ws5e{word-spacing:0.374720pt;}
.ws54{word-spacing:0.389120pt;}
.wsae{word-spacing:0.400000pt;}
.ws4e{word-spacing:0.424320pt;}
.wsc9{word-spacing:0.425280pt;}
.wsef{word-spacing:0.442880pt;}
.ws34{word-spacing:0.456960pt;}
.ws80{word-spacing:0.464320pt;}
.ws9c{word-spacing:0.522027pt;}
.wse9{word-spacing:0.525120pt;}
.ws81{word-spacing:0.541440pt;}
.wsd5{word-spacing:0.547840pt;}
.ws9b{word-spacing:0.560000pt;}
.ws18{word-spacing:0.593408pt;}
.wsf0{word-spacing:0.615040pt;}
.wsf4{word-spacing:0.637440pt;}
.ws53{word-spacing:0.658560pt;}
.ws1c{word-spacing:0.679040pt;}
.ws102{word-spacing:0.698027pt;}
.ws35{word-spacing:0.703360pt;}
.wscd{word-spacing:0.720213pt;}
.ws83{word-spacing:0.727040pt;}
.ws79{word-spacing:0.730880pt;}
.ws77{word-spacing:0.741547pt;}
.ws7c{word-spacing:0.753280pt;}
.wse1{word-spacing:0.772608pt;}
.ws52{word-spacing:0.837227pt;}
.wsd6{word-spacing:0.837547pt;}
.ws24{word-spacing:0.869120pt;}
.ws44{word-spacing:0.878400pt;}
.ws26{word-spacing:0.905600pt;}
.ws1d{word-spacing:0.911467pt;}
.ws69{word-spacing:0.912000pt;}
.wsc1{word-spacing:0.914560pt;}
.wsdd{word-spacing:0.936747pt;}
.wsd3{word-spacing:0.990080pt;}
.ws6{word-spacing:1.014720pt;}
.wsc4{word-spacing:1.026773pt;}
.ws15{word-spacing:1.045248pt;}
.wse4{word-spacing:1.064320pt;}
.wsca{word-spacing:1.096747pt;}
.ws92{word-spacing:1.120000pt;}
.ws90{word-spacing:1.200000pt;}
.wsee{word-spacing:1.309013pt;}
.wsfa{word-spacing:1.346987pt;}
.ws99{word-spacing:1.360000pt;}
.ws42{word-spacing:1.362987pt;}
.ws37{word-spacing:1.425280pt;}
.ws9a{word-spacing:1.440000pt;}
.ws4c{word-spacing:1.505067pt;}
.ws2a{word-spacing:1.509120pt;}
.ws6b{word-spacing:1.518293pt;}
.ws93{word-spacing:1.520000pt;}
.ws91{word-spacing:1.600000pt;}
.ws29{word-spacing:1.627520pt;}
.wsa8{word-spacing:1.680000pt;}
.ws98{word-spacing:1.706667pt;}
.wsa9{word-spacing:1.760000pt;}
.ws95{word-spacing:1.840000pt;}
.ws22{word-spacing:1.846400pt;}
.ws1f{word-spacing:1.891200pt;}
.ws25{word-spacing:2.008747pt;}
.wsfc{word-spacing:2.028587pt;}
.wsa7{word-spacing:2.080000pt;}
.ws27{word-spacing:2.120960pt;}
.wse5{word-spacing:2.158187pt;}
.ws94{word-spacing:2.160000pt;}
.ws21{word-spacing:2.180800pt;}
.ws20{word-spacing:2.191787pt;}
.ws97{word-spacing:2.240000pt;}
.ws23{word-spacing:2.248320pt;}
.wsfb{word-spacing:2.271147pt;}
.wsf7{word-spacing:2.504107pt;}
.wsa6{word-spacing:2.586667pt;}
.ws28{word-spacing:2.789120pt;}
.ws4f{word-spacing:2.798187pt;}
.ws67{word-spacing:2.798293pt;}
.ws96{word-spacing:3.120000pt;}
.ws32{word-spacing:4.479787pt;}
.ws31{word-spacing:4.709120pt;}
.ws2f{word-spacing:5.005120pt;}
.ws2e{word-spacing:5.262507pt;}
.ws30{word-spacing:5.280640pt;}
.ws50{word-spacing:5.936000pt;}
.ws63{word-spacing:6.000000pt;}
.ws75{word-spacing:6.477227pt;}
.ws74{word-spacing:6.490880pt;}
.ws72{word-spacing:6.597547pt;}
.ws73{word-spacing:6.794240pt;}
.ws71{word-spacing:6.885760pt;}
.ws6d{word-spacing:8.890240pt;}
.ws6c{word-spacing:8.954880pt;}
.ws6f{word-spacing:9.225600pt;}
.ws6e{word-spacing:9.334720pt;}
.ws8c{word-spacing:10.720000pt;}
.ws88{word-spacing:10.800000pt;}
.ws8a{word-spacing:10.880000pt;}
.ws8b{word-spacing:11.680000pt;}
.ws89{word-spacing:12.480000pt;}
.ws70{word-spacing:14.256000pt;}
.wsa2{word-spacing:16.346667pt;}
.wsa0{word-spacing:16.666667pt;}
.wsa1{word-spacing:17.040000pt;}
.ws2c{word-spacing:25.428480pt;}
.ws3c{word-spacing:25.452800pt;}
.ws39{word-spacing:25.581867pt;}
.ws3a{word-spacing:25.768320pt;}
.ws3f{word-spacing:25.809280pt;}
.ws40{word-spacing:25.829120pt;}
.ws3d{word-spacing:25.839787pt;}
.ws3b{word-spacing:25.935787pt;}
.ws41{word-spacing:26.097067pt;}
.ws3e{word-spacing:26.614720pt;}
.ws2b{word-spacing:26.700544pt;}
.ws2d{word-spacing:26.846379pt;}
.ws10{word-spacing:32.873920pt;}
.ws3{word-spacing:32.905600pt;}
.wsf{word-spacing:32.955819pt;}
.ws2{word-spacing:33.057067pt;}
.ws11{word-spacing:33.278208pt;}
.ws4{word-spacing:33.467520pt;}
.wsff{word-spacing:61.090667pt;}
.wsfd{word-spacing:74.968064pt;}
.wsfe{word-spacing:75.036160pt;}
.ws101{word-spacing:77.691904pt;}
.ws100{word-spacing:77.760000pt;}
.wse{word-spacing:107.265216pt;}
.ws1{word-spacing:107.267840pt;}
.ws5f{word-spacing:1135.504427pt;}
._1c{margin-left:-10.519040pt;}
._4{margin-left:-7.711360pt;}
._13{margin-left:-6.720000pt;}
._14{margin-left:-5.471360pt;}
._15{margin-left:-4.043733pt;}
._1{margin-left:-2.553600pt;}
._3{margin-left:-1.418240pt;}
._2{width:1.147093pt;}
._1a{width:2.056960pt;}
._1b{width:3.292160pt;}
._19{width:15.964160pt;}
._16{width:17.631787pt;}
._b{width:18.724693pt;}
._d{width:19.924693pt;}
._6{width:21.181227pt;}
._9{width:22.377600pt;}
._a{width:25.340800pt;}
._8{width:27.061760pt;}
._17{width:33.886507pt;}
._18{width:35.505067pt;}
._0{width:53.752960pt;}
._7{width:88.136960pt;}
._c{width:94.283947pt;}
._1d{width:95.840000pt;}
._11{width:97.406720pt;}
._12{width:100.736000pt;}
._5{width:107.714560pt;}
._10{width:456.973440pt;}
._f{width:654.580267pt;}
._e{width:750.637739pt;}
.fsd{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fsc{font-size:78.929661pt;}
.fs9{font-size:80.000000pt;}
.fsa{font-size:80.128000pt;}
.fs0{font-size:85.120000pt;}
.fs1{font-size:85.248000pt;}
.fs3{font-size:90.880000pt;}
.fs5{font-size:96.000000pt;}
.fsb{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.fs4{font-size:117.248000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:34.912000pt;}
.yf4{bottom:43.840000pt;}
.ydd{bottom:46.592000pt;}
.y6b{bottom:46.624000pt;}
.y38{bottom:49.216000pt;}
.y112{bottom:52.672000pt;}
.y24{bottom:56.224000pt;}
.yf3{bottom:61.440000pt;}
.y13{bottom:66.400000pt;}
.y37{bottom:68.416000pt;}
.ydc{bottom:70.592000pt;}
.y6a{bottom:72.224000pt;}
.y96{bottom:74.784000pt;}
.y111{bottom:75.072000pt;}
.y87{bottom:79.712000pt;}
.yba{bottom:80.064000pt;}
.y23{bottom:81.824000pt;}
.y36{bottom:88.416000pt;}
.y75{bottom:89.632000pt;}
.y62{bottom:94.016000pt;}
.ydb{bottom:94.592000pt;}
.y69{bottom:97.856000pt;}
.y110{bottom:98.112000pt;}
.y86{bottom:102.112000pt;}
.yb9{bottom:105.696000pt;}
.y22{bottom:107.456000pt;}
.y35{bottom:110.016000pt;}
.y12{bottom:111.520000pt;}
.y74{bottom:115.232000pt;}
.ya7{bottom:116.256000pt;}
.y61{bottom:116.416000pt;}
.yda{bottom:118.592000pt;}
.y10f{bottom:123.104000pt;}
.y95{bottom:123.968000pt;}
.y85{bottom:124.544000pt;}
.y9b{bottom:126.656000pt;}
.y34{bottom:129.216000pt;}
.yb8{bottom:131.296000pt;}
.y21{bottom:133.056000pt;}
.y60{bottom:138.813333pt;}
.ya6{bottom:139.453333pt;}
.y73{bottom:140.826667pt;}
.y4c{bottom:142.333333pt;}
.yd9{bottom:142.626667pt;}
.y10e{bottom:145.506667pt;}
.y33{bottom:149.253333pt;}
.y68{bottom:149.853333pt;}
.y11{bottom:150.720000pt;}
.yfb{bottom:152.226667pt;}
.y9a{bottom:152.253333pt;}
.yb7{bottom:156.893333pt;}
.y20{bottom:158.653333pt;}
.y5f{bottom:161.213333pt;}
.y40{bottom:162.400000pt;}
.y4b{bottom:166.333333pt;}
.yd8{bottom:166.626667pt;}
.y10d{bottom:167.906667pt;}
.y94{bottom:168.773333pt;}
.y84{bottom:169.346667pt;}
.y32{bottom:170.853333pt;}
.yfa{bottom:176.226667pt;}
.y99{bottom:177.853333pt;}
.yb6{bottom:182.493333pt;}
.y5e{bottom:183.613333pt;}
.y1f{bottom:184.253333pt;}
.y3f{bottom:184.800000pt;}
.ya5{bottom:186.813333pt;}
.y10c{bottom:190.306667pt;}
.y4a{bottom:190.333333pt;}
.y31{bottom:190.853333pt;}
.yd7{bottom:190.946667pt;}
.y83{bottom:191.746667pt;}
.yf9{bottom:200.226667pt;}
.y98{bottom:203.453333pt;}
.y5d{bottom:206.013333pt;}
.yb5{bottom:208.093333pt;}
.y10{bottom:208.933333pt;}
.ya4{bottom:209.213333pt;}
.yc1{bottom:209.853333pt;}
.y10b{bottom:212.706667pt;}
.y30{bottom:213.253333pt;}
.y93{bottom:213.600000pt;}
.y82{bottom:214.146667pt;}
.y49{bottom:214.333333pt;}
.ye7{bottom:221.026667pt;}
.yf8{bottom:224.226667pt;}
.y5c{bottom:228.453333pt;}
.y67{bottom:229.093333pt;}
.y3e{bottom:229.120000pt;}
.y27{bottom:231.653333pt;}
.ya3{bottom:232.293333pt;}
.yb4{bottom:233.733333pt;}
.y10a{bottom:235.106667pt;}
.y1e{bottom:235.493333pt;}
.y92{bottom:236.000000pt;}
.y81{bottom:236.546667pt;}
.y48{bottom:238.693333pt;}
.yd6{bottom:241.826667pt;}
.y72{bottom:243.106667pt;}
.ye6{bottom:245.026667pt;}
.yc9{bottom:245.093333pt;}
.yf{bottom:248.133333pt;}
.yf7{bottom:248.226667pt;}
.y5b{bottom:250.853333pt;}
.y3d{bottom:251.520000pt;}
.y26{bottom:254.693333pt;}
.y2f{bottom:257.253333pt;}
.y109{bottom:258.173333pt;}
.y80{bottom:258.973333pt;}
.yb3{bottom:259.333333pt;}
.y1d{bottom:261.093333pt;}
.yd5{bottom:266.173333pt;}
.ye5{bottom:269.053333pt;}
.yc0{bottom:269.666667pt;}
.yc8{bottom:270.693333pt;}
.yf6{bottom:272.253333pt;}
.y5a{bottom:273.253333pt;}
.y3c{bottom:273.920000pt;}
.y2e{bottom:279.653333pt;}
.y66{bottom:280.293333pt;}
.y91{bottom:280.800000pt;}
.y108{bottom:283.133333pt;}
.yb2{bottom:284.933333pt;}
.y1c{bottom:286.693333pt;}
.y47{bottom:289.573333pt;}
.ye4{bottom:293.053333pt;}
.ybf{bottom:295.266667pt;}
.y59{bottom:295.653333pt;}
.yf5{bottom:296.253333pt;}
.yc7{bottom:296.293333pt;}
.y3b{bottom:296.320000pt;}
.y2d{bottom:302.053333pt;}
.ya2{bottom:302.693333pt;}
.y7f{bottom:303.773333pt;}
.y107{bottom:305.533333pt;}
.y65{bottom:305.893333pt;}
.ye{bottom:307.453333pt;}
.yb1{bottom:310.533333pt;}
.yfd{bottom:311.653333pt;}
.y1b{bottom:312.293333pt;}
.y46{bottom:313.573333pt;}
.yd4{bottom:317.053333pt;}
.y58{bottom:318.053333pt;}
.y3a{bottom:318.720000pt;}
.y71{bottom:320.066667pt;}
.yf2{bottom:320.253333pt;}
.ybe{bottom:320.866667pt;}
.yc6{bottom:321.253333pt;}
.y2c{bottom:324.480000pt;}
.y90{bottom:325.626667pt;}
.y7e{bottom:326.173333pt;}
.y106{bottom:327.933333pt;}
.y97{bottom:331.493333pt;}
.yfc{bottom:334.053333pt;}
.yb0{bottom:336.133333pt;}
.y45{bottom:337.573333pt;}
.y1a{bottom:337.733333pt;}
.y57{bottom:340.453333pt;}
.yd3{bottom:341.053333pt;}
.y39{bottom:341.120000pt;}
.yc5{bottom:343.653333pt;}
.yf1{bottom:344.253333pt;}
.y70{bottom:345.693333pt;}
.ybd{bottom:346.493333pt;}
.yd{bottom:346.693333pt;}
.y2b{bottom:346.880000pt;}
.y6{bottom:347.840000pt;}
.y7d{bottom:348.573333pt;}
.ya1{bottom:350.080000pt;}
.y105{bottom:350.333333pt;}
.y64{bottom:357.120000pt;}
.y44{bottom:361.600000pt;}
.yaf{bottom:361.760000pt;}
.y56{bottom:362.880000pt;}
.y19{bottom:363.520000pt;}
.ye2{bottom:364.800000pt;}
.yd2{bottom:365.053333pt;}
.yc4{bottom:365.920000pt;}
.yf0{bottom:368.253333pt;}
.y2a{bottom:369.280000pt;}
.y8f{bottom:370.426667pt;}
.y7c{bottom:370.973333pt;}
.y6f{bottom:371.293333pt;}
.ya0{bottom:372.480000pt;}
.y104{bottom:372.733333pt;}
.y5{bottom:373.440000pt;}
.y25{bottom:382.720000pt;}
.y55{bottom:385.280000pt;}
.y43{bottom:385.600000pt;}
.yae{bottom:387.360000pt;}
.yc3{bottom:388.320000pt;}
.ye1{bottom:388.800000pt;}
.yd1{bottom:389.093333pt;}
.y29{bottom:391.680000pt;}
.yef{bottom:392.293333pt;}
.y7b{bottom:393.413333pt;}
.y9f{bottom:395.520000pt;}
.y103{bottom:395.813333pt;}
.y6e{bottom:396.893333pt;}
.y4{bottom:399.040000pt;}
.yc{bottom:404.226667pt;}
.y54{bottom:407.680000pt;}
.y63{bottom:408.320000pt;}
.y42{bottom:409.600000pt;}
.yc2{bottom:410.880000pt;}
.ye0{bottom:412.800000pt;}
.yad{bottom:412.960000pt;}
.yd0{bottom:413.093333pt;}
.y8e{bottom:415.226667pt;}
.y7a{bottom:415.813333pt;}
.yee{bottom:416.293333pt;}
.y102{bottom:420.773333pt;}
.y3{bottom:424.640000pt;}
.y53{bottom:430.080000pt;}
.y18{bottom:433.920000pt;}
.ydf{bottom:436.800000pt;}
.ycf{bottom:436.933333pt;}
.ye3{bottom:437.093333pt;}
.y8d{bottom:437.626667pt;}
.yac{bottom:438.560000pt;}
.yed{bottom:440.293333pt;}
.y9e{bottom:442.880000pt;}
.y101{bottom:443.173333pt;}
.yb{bottom:443.426667pt;}
.y6d{bottom:447.933333pt;}
.ybc{bottom:448.893333pt;}
.y2{bottom:450.240000pt;}
.y52{bottom:452.480000pt;}
.y17{bottom:459.520000pt;}
.y8c{bottom:460.066667pt;}
.y79{bottom:460.613333pt;}
.yde{bottom:460.800000pt;}
.yce{bottom:461.093333pt;}
.yab{bottom:464.160000pt;}
.yec{bottom:464.293333pt;}
.y9d{bottom:465.280000pt;}
.y100{bottom:465.573333pt;}
.ybb{bottom:474.493333pt;}
.y51{bottom:474.880000pt;}
.y7{bottom:475.866667pt;}
.y8b{bottom:482.466667pt;}
.ycd{bottom:485.093333pt;}
.y16{bottom:485.146667pt;}
.y9c{bottom:487.706667pt;}
.yff{bottom:487.973333pt;}
.yeb{bottom:488.293333pt;}
.yaa{bottom:489.786667pt;}
.y50{bottom:497.306667pt;}
.ya{bottom:500.960000pt;}
.y1{bottom:501.466667pt;}
.y8a{bottom:504.866667pt;}
.y78{bottom:505.413333pt;}
.ycc{bottom:509.093333pt;}
.yfe{bottom:510.400000pt;}
.y15{bottom:510.746667pt;}
.yea{bottom:512.320000pt;}
.ya9{bottom:515.386667pt;}
.y4f{bottom:519.706667pt;}
.y28{bottom:519.973333pt;}
.ycb{bottom:533.440000pt;}
.ye9{bottom:536.320000pt;}
.y41{bottom:536.346667pt;}
.y9{bottom:540.160000pt;}
.y4e{bottom:542.106667pt;}
.y89{bottom:549.666667pt;}
.y77{bottom:550.240000pt;}
.ye8{bottom:560.320000pt;}
.y14{bottom:561.946667pt;}
.y4d{bottom:564.506667pt;}
.ya8{bottom:566.586667pt;}
.y6c{bottom:575.973333pt;}
.yca{bottom:584.640000pt;}
.y76{bottom:595.040000pt;}
.y8{bottom:602.053333pt;}
.h13{height:48.558750pt;}
.hf{height:51.882187pt;}
.h11{height:51.970875pt;}
.ha{height:52.781250pt;}
.h10{height:55.465312pt;}
.he{height:55.560125pt;}
.h12{height:58.464988pt;}
.h7{height:61.754062pt;}
.h9{height:61.859625pt;}
.hb{height:65.976562pt;}
.hc{height:66.082125pt;}
.h8{height:66.750000pt;}
.h1{height:70.199062pt;}
.h2{height:70.304625pt;}
.h4{height:74.949375pt;}
.h6{height:79.171875pt;}
.hd{height:88.144688pt;}
.h3{height:96.589687pt;}
.h5{height:96.695250pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x12{left:18.015986pt;}
.x1e{left:47.359986pt;}
.x28{left:57.599986pt;}
.x1{left:70.079986pt;}
.x6{left:73.823986pt;}
.x3{left:88.927986pt;}
.x22{left:95.359986pt;}
.x1b{left:96.511986pt;}
.x7{left:103.903986pt;}
.x29{left:105.631986pt;}
.x2{left:112.159986pt;}
.x1d{left:115.871986pt;}
.x8{left:121.823986pt;}
.x23{left:125.439986pt;}
.x15{left:134.786652pt;}
.x17{left:141.826652pt;}
.x24{left:143.359986pt;}
.x1a{left:144.506652pt;}
.x19{left:151.906652pt;}
.x16{left:157.346652pt;}
.x9{left:169.826652pt;}
.x2d{left:173.439986pt;}
.x20{left:185.946652pt;}
.x25{left:191.386652pt;}
.x1c{left:192.506652pt;}
.x11{left:199.906652pt;}
.x27{left:213.946652pt;}
.xb{left:217.466652pt;}
.x26{left:221.466652pt;}
.x2e{left:239.386652pt;}
.xc{left:247.546652pt;}
.xd{left:265.506652pt;}
.x1f{left:266.906652pt;}
.x2f{left:269.466652pt;}
.x10{left:270.399986pt;}
.x30{left:276.133319pt;}
.x13{left:280.253319pt;}
.x2c{left:285.946652pt;}
.x4{left:308.159986pt;}
.xe{left:313.506652pt;}
.x18{left:342.013319pt;}
.xf{left:343.586652pt;}
.x31{left:362.693319pt;}
.x21{left:412.866652pt;}
.xa{left:484.346652pt;}
.x14{left:488.773319pt;}
.x2a{left:515.013319pt;}
.x2b{left:563.013319pt;}
.x5{left:885.626652pt;}
}




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