
    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_0be158375f98ff740bb6893b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_783dec4cc73e0c6063ee647d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973000;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_6c13157f63aa05972837e017.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937000;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_acc272fdcf618145e007fe4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972000;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_33484157708410e06929bba7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.681641;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_99dc0fa268f38b03323a58ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730000;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_d62c6ee8dde4e52ce421932e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.954102;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_9d9a2febc7c1827ad93a5ff5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937000;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_780397e00358b610085a3826.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948000;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_657d451d8b76ffc7d33eda9a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_81893951f15a0b051c8142ff.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_fdda79bb4dba5fe5cc05ceab.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690000;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:ffd;src:url('chunks/assets/font_81893951f15a0b051c8142ff.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;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:ffe;src:url('chunks/assets/font_81893951f15a0b051c8142ff.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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:fff;src:url('chunks/assets/font_81893951f15a0b051c8142ff.woff2')format("woff");}.fff{font-family:fff;line-height:0.911000;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.m2{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;}
.v1{vertical-align:23.975400px;}
.ls27{letter-spacing:-1.200000px;}
.ls40{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.912000px;}
.ls10{letter-spacing:-0.900000px;}
.ls3{letter-spacing:-0.810000px;}
.ls29{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.695850px;}
.ls7{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.594000px;}
.ls2{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.528000px;}
.ls5{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.360000px;}
.ls3f{letter-spacing:-0.324000px;}
.ls1e{letter-spacing:-0.312757px;}
.ls22{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.267764px;}
.ls11{letter-spacing:-0.240000px;}
.ls37{letter-spacing:-0.227889px;}
.ls43{letter-spacing:-0.192000px;}
.ls19{letter-spacing:-0.180000px;}
.ls30{letter-spacing:-0.133882px;}
.ls21{letter-spacing:-0.096000px;}
.ls38{letter-spacing:-0.091156px;}
.ls15{letter-spacing:-0.069585px;}
.ls20{letter-spacing:-0.057686px;}
.ls2d{letter-spacing:-0.044627px;}
.ls1{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.044627px;}
.ls39{letter-spacing:0.045578px;}
.ls42{letter-spacing:0.048000px;}
.ls18{letter-spacing:0.057686px;}
.ls6{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.069585px;}
.ls26{letter-spacing:0.089255px;}
.ls34{letter-spacing:0.091156px;}
.lsb{letter-spacing:0.139170px;}
.ls16{letter-spacing:0.173059px;}
.ls2c{letter-spacing:0.178510px;}
.ls33{letter-spacing:0.182311px;}
.lse{letter-spacing:0.208755px;}
.ls2a{letter-spacing:0.223137px;}
.ls2b{letter-spacing:0.267764px;}
.lsd{letter-spacing:0.278340px;}
.ls12{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.312757px;}
.ls17{letter-spacing:0.346118px;}
.lsf{letter-spacing:0.347925px;}
.ls36{letter-spacing:0.501356px;}
.ls24{letter-spacing:0.600000px;}
.ls3c{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.780000px;}
.ls3b{letter-spacing:0.864000px;}
.ls3d{letter-spacing:0.912000px;}
.ls9{letter-spacing:0.960000px;}
.ls3a{letter-spacing:0.972000px;}
.lsa{letter-spacing:1.140000px;}
.ls41{letter-spacing:1.632000px;}
.ls3e{letter-spacing:1.776000px;}
.ls2f{letter-spacing:11.067595px;}
.ls0{letter-spacing:43.199928px;}
.ls1f{letter-spacing:57.390946px;}
.ls1d{letter-spacing:70.057613px;}
.ls1c{letter-spacing:83.089163px;}
.ls1b{letter-spacing:96.433470px;}
.ls31{letter-spacing:114.380026px;}
.ls35{letter-spacing:173.625029px;}
.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;}
}
.wsa1{word-spacing:-125.536876px;}
.ws5e{word-spacing:-109.465020px;}
.ws5f{word-spacing:-96.120713px;}
.ws60{word-spacing:-83.089163px;}
.ws63{word-spacing:-70.422496px;}
.ws3{word-spacing:-54.000000px;}
.ws9f{word-spacing:-22.224445px;}
.ws7{word-spacing:-20.748000px;}
.ws6{word-spacing:-17.784000px;}
.ws38{word-spacing:-17.744175px;}
.ws35{word-spacing:-17.674590px;}
.ws34{word-spacing:-17.605005px;}
.ws32{word-spacing:-17.535420px;}
.ws36{word-spacing:-17.465835px;}
.ws33{word-spacing:-16.700400px;}
.wse8{word-spacing:-14.820000px;}
.ws65{word-spacing:-14.767718px;}
.ws64{word-spacing:-14.594659px;}
.ws2e{word-spacing:-14.580000px;}
.ws66{word-spacing:-14.479286px;}
.ws2d{word-spacing:-13.620000px;}
.ws62{word-spacing:-13.344307px;}
.ws2{word-spacing:-13.338000px;}
.ws8{word-spacing:-12.960000px;}
.ws4{word-spacing:-12.798000px;}
.wsed{word-spacing:-12.672000px;}
.wsee{word-spacing:-12.528000px;}
.wse9{word-spacing:-12.258000px;}
.wscc{word-spacing:-11.895806px;}
.wsec{word-spacing:-11.808000px;}
.wseb{word-spacing:-11.616000px;}
.wsca{word-spacing:-11.576761px;}
.wscb{word-spacing:-11.485606px;}
.ws5{word-spacing:-11.448000px;}
.ws9a{word-spacing:-11.379987px;}
.wsea{word-spacing:-11.286000px;}
.ws0{word-spacing:-11.214000px;}
.wsa2{word-spacing:-11.201477px;}
.wscd{word-spacing:-11.166561px;}
.ws9d{word-spacing:-11.112223px;}
.wsa0{word-spacing:-11.022968px;}
.wsef{word-spacing:-10.944000px;}
.ws1{word-spacing:-10.896000px;}
.ws9e{word-spacing:-10.889086px;}
.wsf0{word-spacing:-10.704000px;}
.ws68{word-spacing:-10.368000px;}
.wse3{word-spacing:-4.200000px;}
.ws31{word-spacing:-4.175100px;}
.wsd1{word-spacing:-3.720000px;}
.ws8b{word-spacing:-3.660000px;}
.ws76{word-spacing:-3.600000px;}
.ws1a{word-spacing:-3.420000px;}
.wsd8{word-spacing:-3.360000px;}
.wsba{word-spacing:-3.180000px;}
.ws84{word-spacing:-3.120000px;}
.wsf6{word-spacing:-3.024000px;}
.wsb3{word-spacing:-2.880000px;}
.wsac{word-spacing:-2.820000px;}
.wsbc{word-spacing:-2.640000px;}
.ws41{word-spacing:-2.520000px;}
.ws7e{word-spacing:-2.400000px;}
.ws25{word-spacing:-2.340000px;}
.wsfe{word-spacing:-2.322000px;}
.ws13{word-spacing:-2.280000px;}
.wsfd{word-spacing:-2.268000px;}
.ws55{word-spacing:-2.220000px;}
.wsf{word-spacing:-2.160000px;}
.wsdc{word-spacing:-2.100000px;}
.wsb6{word-spacing:-1.980000px;}
.ws111{word-spacing:-1.968000px;}
.wsf7{word-spacing:-1.890000px;}
.wsae{word-spacing:-1.860000px;}
.ws37{word-spacing:-1.809210px;}
.ws17{word-spacing:-1.800000px;}
.wsf8{word-spacing:-1.782000px;}
.wsd4{word-spacing:-1.680000px;}
.ws118{word-spacing:-1.632000px;}
.wse{word-spacing:-1.620000px;}
.ws83{word-spacing:-1.560000px;}
.ws24{word-spacing:-1.500000px;}
.ws116{word-spacing:-1.440000px;}
.wse7{word-spacing:-1.296000px;}
.wse6{word-spacing:-1.260000px;}
.ws6d{word-spacing:-1.200000px;}
.ws7a{word-spacing:-1.140000px;}
.ws126{word-spacing:-1.104000px;}
.ws10{word-spacing:-1.080000px;}
.ws7f{word-spacing:-1.020000px;}
.ws117{word-spacing:-1.008000px;}
.ws19{word-spacing:-0.960000px;}
.ws10d{word-spacing:-0.912000px;}
.ws1d{word-spacing:-0.900000px;}
.wsbe{word-spacing:-0.840000px;}
.wsa6{word-spacing:-0.780000px;}
.ws73{word-spacing:-0.660000px;}
.ws88{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.594000px;}
.ws10a{word-spacing:-0.480000px;}
.ws119{word-spacing:-0.432000px;}
.wsd7{word-spacing:-0.420000px;}
.ws5d{word-spacing:-0.364883px;}
.wsb1{word-spacing:-0.360000px;}
.wsd{word-spacing:-0.324000px;}
.ws96{word-spacing:-0.312757px;}
.wse0{word-spacing:-0.300000px;}
.ws57{word-spacing:-0.288000px;}
.wsc7{word-spacing:-0.267764px;}
.ws6c{word-spacing:-0.240000px;}
.ws2a{word-spacing:-0.226800px;}
.wsc6{word-spacing:-0.223137px;}
.ws59{word-spacing:-0.208755px;}
.wsc8{word-spacing:-0.178510px;}
.ws98{word-spacing:-0.144000px;}
.ws5a{word-spacing:-0.139170px;}
.ws89{word-spacing:-0.120000px;}
.wsc9{word-spacing:-0.089255px;}
.ws58{word-spacing:-0.069585px;}
.ws20{word-spacing:-0.060000px;}
.ws9{word-spacing:0.000000px;}
.ws5b{word-spacing:0.069585px;}
.ws90{word-spacing:0.180000px;}
.ws8d{word-spacing:0.300000px;}
.ws97{word-spacing:0.312757px;}
.ws29{word-spacing:0.340200px;}
.ws92{word-spacing:0.360000px;}
.wsf2{word-spacing:0.378000px;}
.ws79{word-spacing:0.420000px;}
.wsc{word-spacing:0.432000px;}
.ws2c{word-spacing:0.540000px;}
.ws23{word-spacing:0.600000px;}
.ws5c{word-spacing:0.695850px;}
.wsd2{word-spacing:0.720000px;}
.ws1e{word-spacing:0.780000px;}
.ws50{word-spacing:0.840000px;}
.ws74{word-spacing:0.900000px;}
.ws22{word-spacing:1.020000px;}
.ws15{word-spacing:1.080000px;}
.ws8a{word-spacing:1.140000px;}
.ws75{word-spacing:1.260000px;}
.wsf1{word-spacing:1.296000px;}
.wsd9{word-spacing:1.380000px;}
.ws4d{word-spacing:1.500000px;}
.wsc5{word-spacing:1.560000px;}
.ws44{word-spacing:1.620000px;}
.wsb4{word-spacing:1.680000px;}
.ws107{word-spacing:1.728000px;}
.wse1{word-spacing:1.740000px;}
.ws115{word-spacing:1.824000px;}
.ws4c{word-spacing:1.860000px;}
.ws105{word-spacing:1.872000px;}
.ws3c{word-spacing:1.980000px;}
.wsa8{word-spacing:2.040000px;}
.ws16{word-spacing:2.100000px;}
.ws112{word-spacing:2.112000px;}
.wsab{word-spacing:2.160000px;}
.ws1f{word-spacing:2.220000px;}
.ws7c{word-spacing:2.280000px;}
.ws14{word-spacing:2.340000px;}
.ws110{word-spacing:2.352000px;}
.wsd6{word-spacing:2.400000px;}
.ws56{word-spacing:2.520000px;}
.ws72{word-spacing:2.640000px;}
.wsc3{word-spacing:2.700000px;}
.wsd0{word-spacing:2.760000px;}
.ws7b{word-spacing:2.820000px;}
.ws2b{word-spacing:2.835000px;}
.ws40{word-spacing:2.880000px;}
.wsa7{word-spacing:2.940000px;}
.ws11a{word-spacing:2.976000px;}
.ws71{word-spacing:3.000000px;}
.ws11b{word-spacing:3.072000px;}
.wse2{word-spacing:3.120000px;}
.wsf3{word-spacing:3.132000px;}
.wse4{word-spacing:3.180000px;}
.ws11e{word-spacing:3.216000px;}
.ws3d{word-spacing:3.240000px;}
.wsdf{word-spacing:3.300000px;}
.ws1b{word-spacing:3.360000px;}
.wsb0{word-spacing:3.420000px;}
.ws103{word-spacing:3.456000px;}
.wsa4{word-spacing:3.540000px;}
.wsbb{word-spacing:3.600000px;}
.wsf5{word-spacing:3.618000px;}
.wsb2{word-spacing:3.660000px;}
.wscf{word-spacing:3.720000px;}
.wsb9{word-spacing:3.780000px;}
.ws11{word-spacing:3.840000px;}
.wsc2{word-spacing:3.900000px;}
.wsc4{word-spacing:3.960000px;}
.ws11c{word-spacing:3.984000px;}
.wsa5{word-spacing:4.080000px;}
.ws6f{word-spacing:4.140000px;}
.ws91{word-spacing:4.200000px;}
.ws1c{word-spacing:4.260000px;}
.ws114{word-spacing:4.416000px;}
.ws80{word-spacing:4.500000px;}
.ws6e{word-spacing:4.620000px;}
.ws104{word-spacing:4.656000px;}
.ws8c{word-spacing:4.680000px;}
.ws46{word-spacing:4.860000px;}
.ws78{word-spacing:4.920000px;}
.ws10c{word-spacing:4.944000px;}
.ws95{word-spacing:5.040000px;}
.ws10f{word-spacing:5.088000px;}
.ws52{word-spacing:5.100000px;}
.ws28{word-spacing:5.160000px;}
.ws4e{word-spacing:5.280000px;}
.wsb7{word-spacing:5.400000px;}
.ws87{word-spacing:5.460000px;}
.wsb{word-spacing:5.508000px;}
.wsc1{word-spacing:5.580000px;}
.ws49{word-spacing:5.700000px;}
.ws27{word-spacing:5.760000px;}
.wsdb{word-spacing:5.940000px;}
.wsaa{word-spacing:6.060000px;}
.wsf4{word-spacing:6.156000px;}
.wsdd{word-spacing:6.240000px;}
.ws108{word-spacing:6.288000px;}
.ws3b{word-spacing:6.300000px;}
.wsa9{word-spacing:6.360000px;}
.ws86{word-spacing:6.480000px;}
.ws18{word-spacing:6.720000px;}
.ws4f{word-spacing:6.780000px;}
.ws6a{word-spacing:6.960000px;}
.ws42{word-spacing:7.200000px;}
.ws39{word-spacing:7.320000px;}
.ws101{word-spacing:7.344000px;}
.ws3f{word-spacing:7.440000px;}
.ws8f{word-spacing:7.620000px;}
.ws106{word-spacing:7.728000px;}
.ws26{word-spacing:7.800000px;}
.ws121{word-spacing:7.968000px;}
.wsde{word-spacing:8.220000px;}
.ws70{word-spacing:8.400000px;}
.wsd3{word-spacing:8.460000px;}
.ws82{word-spacing:8.520000px;}
.ws3a{word-spacing:8.640000px;}
.ws113{word-spacing:9.168000px;}
.ws100{word-spacing:9.264000px;}
.wsad{word-spacing:9.420000px;}
.ws7d{word-spacing:9.480000px;}
.ws53{word-spacing:9.660000px;}
.wsd5{word-spacing:10.020000px;}
.ws77{word-spacing:10.140000px;}
.ws94{word-spacing:10.200000px;}
.ws11f{word-spacing:10.224000px;}
.ws10e{word-spacing:10.368000px;}
.wsb8{word-spacing:10.560000px;}
.ws43{word-spacing:10.620000px;}
.wsb5{word-spacing:10.740000px;}
.ws85{word-spacing:10.800000px;}
.ws11d{word-spacing:11.088000px;}
.ws48{word-spacing:11.220000px;}
.wsff{word-spacing:11.328000px;}
.ws51{word-spacing:11.340000px;}
.ws6b{word-spacing:11.580000px;}
.ws8e{word-spacing:11.700000px;}
.wsf9{word-spacing:11.718000px;}
.wsc0{word-spacing:11.880000px;}
.wse5{word-spacing:11.940000px;}
.ws10b{word-spacing:12.384000px;}
.ws54{word-spacing:12.420000px;}
.wsbf{word-spacing:12.480000px;}
.wsfc{word-spacing:12.582000px;}
.wsaf{word-spacing:12.720000px;}
.ws4a{word-spacing:12.960000px;}
.ws124{word-spacing:13.056000px;}
.wsfb{word-spacing:13.068000px;}
.ws3e{word-spacing:14.100000px;}
.ws109{word-spacing:14.256000px;}
.ws102{word-spacing:14.304000px;}
.wsbd{word-spacing:14.400000px;}
.ws120{word-spacing:15.888000px;}
.wsce{word-spacing:16.380000px;}
.ws93{word-spacing:16.500000px;}
.ws123{word-spacing:16.848000px;}
.ws4b{word-spacing:17.220000px;}
.ws12{word-spacing:17.760000px;}
.wsfa{word-spacing:18.792000px;}
.wsda{word-spacing:19.200000px;}
.ws47{word-spacing:19.680000px;}
.ws45{word-spacing:20.340000px;}
.ws21{word-spacing:24.120000px;}
.ws81{word-spacing:31.080000px;}
.ws122{word-spacing:43.200000px;}
.ws61{word-spacing:44.932784px;}
.ws125{word-spacing:56.928000px;}
.ws9c{word-spacing:59.265187px;}
.wsa3{word-spacing:66.637301px;}
.ws9b{word-spacing:113.799870px;}
.ws99{word-spacing:406.428600px;}
.ws2f{word-spacing:482.362200px;}
.ws30{word-spacing:807.154200px;}
.ws67{word-spacing:995.994000px;}
.ws69{word-spacing:1035.732600px;}
._a{margin-left:-2823.328200px;}
._1b{margin-left:-113.665988px;}
._e{margin-left:-96.120713px;}
._f{margin-left:-82.776406px;}
._10{margin-left:-69.744856px;}
._11{margin-left:-57.755830px;}
._1a{margin-left:-10.838028px;}
._7{margin-left:-9.190800px;}
._17{margin-left:-8.166000px;}
._6{margin-left:-7.009200px;}
._8{margin-left:-5.462400px;}
._5{margin-left:-4.200000px;}
._2{margin-left:-2.595600px;}
._0{margin-left:-1.134000px;}
._3{width:1.020000px;}
._1{width:2.066400px;}
._4{width:22.320000px;}
._9{width:30.951600px;}
._1c{width:43.144200px;}
._1e{width:49.395600px;}
._1d{width:85.990200px;}
._13{width:179.707200px;}
._12{width:326.719200px;}
._c{width:366.348600px;}
._b{width:571.721400px;}
._15{width:662.556600px;}
._16{width:760.770600px;}
._19{width:858.327000px;}
._18{width:871.371000px;}
._14{width:872.862600px;}
._d{width:2392.320000px;}
.fc3{color:rgb(112,109,110);}
.fc1{color:rgb(31,100,48);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fsd{font-size:44.627400px;}
.fs9{font-size:45.000000px;}
.fse{font-size:45.577800px;}
.fs4{font-size:48.000000px;}
.fsb{font-size:52.126200px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:57.686400px;}
.fs7{font-size:60.000000px;}
.fsa{font-size:69.585000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:64.661700px;}
.y2b{bottom:77.261700px;}
.y2a{bottom:89.861700px;}
.yb9{bottom:106.493550px;}
.y57{bottom:106.674150px;}
.y126{bottom:107.267700px;}
.y84{bottom:107.291250px;}
.ye2{bottom:107.291400px;}
.y125{bottom:125.267700px;}
.y83{bottom:125.291250px;}
.ye1{bottom:125.291400px;}
.yc7{bottom:140.114400px;}
.y124{bottom:143.267700px;}
.y82{bottom:143.291250px;}
.y21{bottom:143.291400px;}
.ye6{bottom:145.741950px;}
.y123{bottom:161.267700px;}
.y81{bottom:161.291250px;}
.y20{bottom:161.291400px;}
.yc6{bottom:164.776370px;}
.yc5{bottom:177.662531px;}
.y122{bottom:179.267700px;}
.y80{bottom:179.291250px;}
.y1f{bottom:179.291400px;}
.yba{bottom:190.559850px;}
.y121{bottom:197.267700px;}
.y7f{bottom:197.291250px;}
.y1e{bottom:197.291400px;}
.y67{bottom:202.034921px;}
.ye5{bottom:205.771650px;}
.ybb{bottom:208.589320px;}
.y120{bottom:215.267700px;}
.y7e{bottom:215.291250px;}
.y1d{bottom:215.291400px;}
.y29{bottom:216.283500px;}
.y66{bottom:220.005247px;}
.ybc{bottom:226.618789px;}
.y68{bottom:227.694600px;}
.y11f{bottom:233.267700px;}
.y7d{bottom:233.291250px;}
.y1c{bottom:233.291400px;}
.y28{bottom:234.283500px;}
.ye4{bottom:236.527650px;}
.y65{bottom:237.975574px;}
.ybd{bottom:244.648259px;}
.y11e{bottom:251.267700px;}
.y7c{bottom:251.291250px;}
.y1b{bottom:251.291400px;}
.y27{bottom:252.283500px;}
.y64{bottom:255.945900px;}
.ybe{bottom:262.677728px;}
.y11d{bottom:269.267700px;}
.y7b{bottom:269.291250px;}
.y1a{bottom:269.291400px;}
.y26{bottom:270.283500px;}
.ye0{bottom:272.527650px;}
.ybf{bottom:280.707198px;}
.y11c{bottom:287.267700px;}
.y7a{bottom:287.291250px;}
.y19{bottom:287.291400px;}
.y25{bottom:288.283500px;}
.yc0{bottom:298.736668px;}
.y11b{bottom:305.267700px;}
.y79{bottom:305.291250px;}
.y18{bottom:305.291400px;}
.y24{bottom:306.283500px;}
.yc1{bottom:316.766137px;}
.y11a{bottom:323.267700px;}
.y78{bottom:323.291250px;}
.y17{bottom:323.291400px;}
.yc2{bottom:334.795607px;}
.y119{bottom:341.267700px;}
.y77{bottom:341.291250px;}
.y16{bottom:341.291400px;}
.yc3{bottom:352.825076px;}
.y118{bottom:359.267700px;}
.y76{bottom:359.291250px;}
.y15{bottom:359.291400px;}
.y60{bottom:368.209249px;}
.yc4{bottom:370.854546px;}
.y117{bottom:377.267700px;}
.y75{bottom:377.291250px;}
.y23{bottom:377.291400px;}
.y5f{bottom:386.179575px;}
.y116{bottom:395.267700px;}
.y74{bottom:395.291250px;}
.y22{bottom:395.291400px;}
.y5e{bottom:404.149901px;}
.y14{bottom:406.129200px;}
.y115{bottom:413.267700px;}
.y73{bottom:413.291250px;}
.ydf{bottom:413.291400px;}
.y63{bottom:421.066748px;}
.y5d{bottom:422.120228px;}
.y114{bottom:431.267700px;}
.y72{bottom:431.291250px;}
.yde{bottom:431.291400px;}
.y62{bottom:439.037074px;}
.y5c{bottom:440.090554px;}
.y113{bottom:449.267700px;}
.y71{bottom:449.291250px;}
.ydd{bottom:449.291400px;}
.y61{bottom:457.007400px;}
.y5b{bottom:457.869521px;}
.y112{bottom:467.267700px;}
.y70{bottom:467.291250px;}
.ydc{bottom:467.291400px;}
.y5a{bottom:475.839848px;}
.y13{bottom:482.404800px;}
.y111{bottom:485.267700px;}
.y6f{bottom:485.291250px;}
.ydb{bottom:485.291400px;}
.y59{bottom:493.810174px;}
.y110{bottom:503.267700px;}
.y6e{bottom:503.291250px;}
.yda{bottom:503.291400px;}
.y12{bottom:508.908750px;}
.y58{bottom:511.780500px;}
.y10f{bottom:521.267700px;}
.y6d{bottom:521.291250px;}
.yd9{bottom:521.291400px;}
.y10e{bottom:539.267700px;}
.y6c{bottom:539.291250px;}
.yd8{bottom:539.291400px;}
.y10d{bottom:557.267700px;}
.y6b{bottom:557.291250px;}
.yd7{bottom:557.291400px;}
.y11{bottom:569.428350px;}
.y10c{bottom:575.267700px;}
.y4e{bottom:575.291250px;}
.yd6{bottom:575.291400px;}
.y10{bottom:587.428350px;}
.y10b{bottom:593.267700px;}
.y4d{bottom:593.291250px;}
.yd5{bottom:593.291400px;}
.yf{bottom:605.428350px;}
.y10a{bottom:611.267700px;}
.y4c{bottom:611.291250px;}
.yd4{bottom:611.291400px;}
.ye{bottom:623.428350px;}
.y109{bottom:629.267700px;}
.y4b{bottom:629.291250px;}
.yd3{bottom:629.291400px;}
.yd{bottom:641.428350px;}
.y108{bottom:647.267700px;}
.y4a{bottom:647.291250px;}
.yd2{bottom:647.291400px;}
.yc{bottom:659.428350px;}
.y107{bottom:665.267700px;}
.y49{bottom:665.291250px;}
.yd1{bottom:665.291400px;}
.yb{bottom:677.428350px;}
.y106{bottom:683.267700px;}
.y48{bottom:683.291250px;}
.yd0{bottom:683.291400px;}
.y105{bottom:701.267700px;}
.y47{bottom:701.291250px;}
.ycf{bottom:701.291400px;}
.ya{bottom:703.932300px;}
.y9d{bottom:710.082450px;}
.y104{bottom:719.267700px;}
.y46{bottom:719.291250px;}
.yce{bottom:719.291400px;}
.y51{bottom:722.527500px;}
.y9c{bottom:726.459900px;}
.y103{bottom:737.267700px;}
.y6a{bottom:737.291250px;}
.ycd{bottom:737.291400px;}
.ya9{bottom:738.283350px;}
.ye3{bottom:740.527650px;}
.y9b{bottom:742.837350px;}
.y102{bottom:755.267700px;}
.y69{bottom:755.291250px;}
.ycc{bottom:755.291400px;}
.ya8{bottom:756.283350px;}
.y45{bottom:758.527500px;}
.y9a{bottom:759.214800px;}
.y9{bottom:760.200000px;}
.y101{bottom:773.267700px;}
.y50{bottom:773.291250px;}
.ycb{bottom:773.291400px;}
.ya7{bottom:774.283500px;}
.y99{bottom:775.592250px;}
.y8{bottom:778.200000px;}
.y98{bottom:790.592250px;}
.y4f{bottom:791.291250px;}
.yca{bottom:791.291400px;}
.ya6{bottom:792.283500px;}
.y100{bottom:804.023550px;}
.y97{bottom:806.969550px;}
.y44{bottom:809.291250px;}
.yc9{bottom:809.291400px;}
.ya5{bottom:810.283500px;}
.y7{bottom:813.208050px;}
.y96{bottom:823.347000px;}
.y43{bottom:827.291250px;}
.yc8{bottom:827.291400px;}
.ya4{bottom:828.283500px;}
.y95{bottom:840.099450px;}
.y42{bottom:845.291250px;}
.ya3{bottom:846.283500px;}
.ye7{bottom:856.142100px;}
.y6{bottom:860.971800px;}
.y41{bottom:863.291250px;}
.ya2{bottom:864.283500px;}
.y94{bottom:866.253450px;}
.y40{bottom:881.291250px;}
.ya1{bottom:882.283500px;}
.y5{bottom:887.475750px;}
.yf0{bottom:888.690150px;}
.y85{bottom:895.752000px;}
.y3f{bottom:899.291250px;}
.ya0{bottom:900.283500px;}
.yff{bottom:901.741950px;}
.y4{bottom:913.979700px;}
.y3e{bottom:917.291250px;}
.y9f{bottom:918.283500px;}
.yfc{bottom:919.741950px;}
.yb8{bottom:922.958250px;}
.y8c{bottom:930.477373px;}
.y3d{bottom:935.291250px;}
.y9e{bottom:936.283500px;}
.yb7{bottom:939.335700px;}
.y3c{bottom:953.291250px;}
.yfb{bottom:953.291400px;}
.y3{bottom:953.578200px;}
.yb6{bottom:955.713150px;}
.y56{bottom:957.249750px;}
.y86{bottom:962.313450px;}
.y8d{bottom:962.534850px;}
.yb5{bottom:970.713150px;}
.y3b{bottom:971.291250px;}
.ye8{bottom:972.815100px;}
.y55{bottom:973.627200px;}
.yfa{bottom:973.741950px;}
.yb4{bottom:987.090600px;}
.y3a{bottom:989.291250px;}
.y54{bottom:990.004650px;}
.y2{bottom:991.378200px;}
.y87{bottom:996.612490px;}
.y8e{bottom:996.829415px;}
.ye9{bottom:997.814523px;}
.yb3{bottom:1002.090600px;}
.y53{bottom:1006.756950px;}
.y39{bottom:1007.291250px;}
.yf9{bottom:1007.291400px;}
.yfe{bottom:1009.741800px;}
.yb2{bottom:1017.090600px;}
.yea{bottom:1022.813947px;}
.y38{bottom:1025.291250px;}
.yf8{bottom:1025.291400px;}
.y1{bottom:1029.178200px;}
.y88{bottom:1030.911529px;}
.y8f{bottom:1031.123980px;}
.yb1{bottom:1032.090600px;}
.y52{bottom:1032.911100px;}
.y37{bottom:1043.291250px;}
.yf7{bottom:1043.291400px;}
.yb0{bottom:1047.090600px;}
.yeb{bottom:1047.813370px;}
.y36{bottom:1061.291250px;}
.yf6{bottom:1061.291400px;}
.yaf{bottom:1063.467900px;}
.y89{bottom:1065.210569px;}
.y90{bottom:1065.418544px;}
.yec{bottom:1072.812793px;}
.yae{bottom:1078.467900px;}
.y35{bottom:1079.291250px;}
.yf5{bottom:1079.291400px;}
.yad{bottom:1093.467900px;}
.y34{bottom:1097.291250px;}
.yf4{bottom:1097.291400px;}
.yed{bottom:1097.812216px;}
.y8a{bottom:1099.509608px;}
.y91{bottom:1099.713109px;}
.yac{bottom:1110.220350px;}
.y33{bottom:1115.291250px;}
.yf3{bottom:1115.291400px;}
.yee{bottom:1122.811640px;}
.y93{bottom:1125.671989px;}
.y2f{bottom:1126.725000px;}
.y32{bottom:1133.291250px;}
.yf2{bottom:1133.291400px;}
.y8b{bottom:1133.808648px;}
.yab{bottom:1136.374350px;}
.y92{bottom:1142.328937px;}
.yef{bottom:1147.811063px;}
.y31{bottom:1151.291250px;}
.yf1{bottom:1151.291400px;}
.yfd{bottom:1153.189500px;}
.yaa{bottom:1154.374350px;}
.y2e{bottom:1166.037750px;}
.y2d{bottom:1183.789800px;}
.y30{bottom:1193.518650px;}
.hc{height:27.575100px;}
.h15{height:31.016043px;}
.h17{height:31.676571px;}
.hd{height:32.827500px;}
.hf{height:33.744000px;}
.he{height:33.947754px;}
.h4{height:34.320000px;}
.h6{height:34.368000px;}
.h5{height:35.016000px;}
.h12{height:35.237311px;}
.h13{height:36.227709px;}
.h8{height:38.664000px;}
.h7{height:39.555000px;}
.h14{height:40.092048px;}
.hb{height:42.960000px;}
.h16{height:43.950000px;}
.h10{height:47.178630px;}
.h11{height:48.361575px;}
.h9{height:52.740000px;}
.h3{height:54.596892px;}
.ha{height:61.530000px;}
.h2{height:92.295000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:93.543300px;}
.xf{left:110.551200px;}
.x2c{left:127.559100px;}
.x29{left:130.340545px;}
.x3{left:145.222950px;}
.x34{left:208.968086px;}
.x2{left:211.839150px;}
.x15{left:214.363751px;}
.x14{left:220.956930px;}
.x17{left:224.001274px;}
.x13{left:225.497351px;}
.x1e{left:229.020465px;}
.x16{left:230.437886px;}
.x2f{left:236.630250px;}
.x19{left:238.579331px;}
.x28{left:242.555015px;}
.xe{left:244.813350px;}
.x18{left:251.243801px;}
.x1a{left:252.757275px;}
.x4{left:266.908500px;}
.x12{left:272.589000px;}
.x30{left:282.339864px;}
.x1f{left:286.880392px;}
.x5{left:322.002600px;}
.x27{left:328.594280px;}
.x35{left:349.280700px;}
.x26{left:350.717015px;}
.xd{left:383.047650px;}
.x33{left:393.549750px;}
.x25{left:402.591510px;}
.x31{left:439.963841px;}
.x24{left:444.617725px;}
.x6{left:450.168150px;}
.x8{left:455.455950px;}
.x11{left:458.007900px;}
.x20{left:459.890701px;}
.x9{left:472.463850px;}
.x21{left:476.779590px;}
.x1c{left:480.746040px;}
.x1d{left:484.155705px;}
.x22{left:485.250098px;}
.xa{left:489.471750px;}
.x32{left:497.142697px;}
.x7{left:506.852850px;}
.x10{left:526.774050px;}
.x2a{left:531.563700px;}
.x1b{left:538.223250px;}
.x2d{left:555.631500px;}
.xc{left:601.212600px;}
.xb{left:701.153550px;}
.x23{left:727.428423px;}
.x2b{left:745.465050px;}
.x2e{left:747.591000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.311467pt;}
.ls27{letter-spacing:-1.066667pt;}
.ls40{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.810667pt;}
.ls10{letter-spacing:-0.800000pt;}
.ls3{letter-spacing:-0.720000pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.618533pt;}
.ls7{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.528000pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.469333pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls3f{letter-spacing:-0.288000pt;}
.ls1e{letter-spacing:-0.278006pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.238013pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls37{letter-spacing:-0.202568pt;}
.ls43{letter-spacing:-0.170667pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls30{letter-spacing:-0.119006pt;}
.ls21{letter-spacing:-0.085333pt;}
.ls38{letter-spacing:-0.081027pt;}
.ls15{letter-spacing:-0.061853pt;}
.ls20{letter-spacing:-0.051277pt;}
.ls2d{letter-spacing:-0.039669pt;}
.ls1{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.039669pt;}
.ls39{letter-spacing:0.040514pt;}
.ls42{letter-spacing:0.042667pt;}
.ls18{letter-spacing:0.051277pt;}
.ls6{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.061853pt;}
.ls26{letter-spacing:0.079338pt;}
.ls34{letter-spacing:0.081027pt;}
.lsb{letter-spacing:0.123707pt;}
.ls16{letter-spacing:0.153830pt;}
.ls2c{letter-spacing:0.158675pt;}
.ls33{letter-spacing:0.162054pt;}
.lse{letter-spacing:0.185560pt;}
.ls2a{letter-spacing:0.198344pt;}
.ls2b{letter-spacing:0.238013pt;}
.lsd{letter-spacing:0.247413pt;}
.ls12{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.278006pt;}
.ls17{letter-spacing:0.307661pt;}
.lsf{letter-spacing:0.309267pt;}
.ls36{letter-spacing:0.445650pt;}
.ls24{letter-spacing:0.533333pt;}
.ls3c{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.693333pt;}
.ls3b{letter-spacing:0.768000pt;}
.ls3d{letter-spacing:0.810667pt;}
.ls9{letter-spacing:0.853333pt;}
.ls3a{letter-spacing:0.864000pt;}
.lsa{letter-spacing:1.013333pt;}
.ls41{letter-spacing:1.450667pt;}
.ls3e{letter-spacing:1.578667pt;}
.ls2f{letter-spacing:9.837862pt;}
.ls0{letter-spacing:38.399936pt;}
.ls1f{letter-spacing:51.014174pt;}
.ls1d{letter-spacing:62.273434pt;}
.ls1c{letter-spacing:73.857034pt;}
.ls1b{letter-spacing:85.718640pt;}
.ls31{letter-spacing:101.671134pt;}
.ls35{letter-spacing:154.333359pt;}
.wsa1{word-spacing:-111.588334pt;}
.ws5e{word-spacing:-97.302240pt;}
.ws5f{word-spacing:-85.440634pt;}
.ws60{word-spacing:-73.857034pt;}
.ws63{word-spacing:-62.597774pt;}
.ws3{word-spacing:-48.000000pt;}
.ws9f{word-spacing:-19.755062pt;}
.ws7{word-spacing:-18.442667pt;}
.ws6{word-spacing:-15.808000pt;}
.ws38{word-spacing:-15.772600pt;}
.ws35{word-spacing:-15.710747pt;}
.ws34{word-spacing:-15.648893pt;}
.ws32{word-spacing:-15.587040pt;}
.ws36{word-spacing:-15.525187pt;}
.ws33{word-spacing:-14.844800pt;}
.wse8{word-spacing:-13.173333pt;}
.ws65{word-spacing:-13.126861pt;}
.ws64{word-spacing:-12.973030pt;}
.ws2e{word-spacing:-12.960000pt;}
.ws66{word-spacing:-12.870477pt;}
.ws2d{word-spacing:-12.106667pt;}
.ws62{word-spacing:-11.861606pt;}
.ws2{word-spacing:-11.856000pt;}
.ws8{word-spacing:-11.520000pt;}
.ws4{word-spacing:-11.376000pt;}
.wsed{word-spacing:-11.264000pt;}
.wsee{word-spacing:-11.136000pt;}
.wse9{word-spacing:-10.896000pt;}
.wscc{word-spacing:-10.574050pt;}
.wsec{word-spacing:-10.496000pt;}
.wseb{word-spacing:-10.325333pt;}
.wsca{word-spacing:-10.290454pt;}
.wscb{word-spacing:-10.209427pt;}
.ws5{word-spacing:-10.176000pt;}
.ws9a{word-spacing:-10.115544pt;}
.wsea{word-spacing:-10.032000pt;}
.ws0{word-spacing:-9.968000pt;}
.wsa2{word-spacing:-9.956869pt;}
.wscd{word-spacing:-9.925832pt;}
.ws9d{word-spacing:-9.877531pt;}
.wsa0{word-spacing:-9.798194pt;}
.wsef{word-spacing:-9.728000pt;}
.ws1{word-spacing:-9.685333pt;}
.ws9e{word-spacing:-9.679187pt;}
.wsf0{word-spacing:-9.514667pt;}
.ws68{word-spacing:-9.216000pt;}
.wse3{word-spacing:-3.733333pt;}
.ws31{word-spacing:-3.711200pt;}
.wsd1{word-spacing:-3.306667pt;}
.ws8b{word-spacing:-3.253333pt;}
.ws76{word-spacing:-3.200000pt;}
.ws1a{word-spacing:-3.040000pt;}
.wsd8{word-spacing:-2.986667pt;}
.wsba{word-spacing:-2.826667pt;}
.ws84{word-spacing:-2.773333pt;}
.wsf6{word-spacing:-2.688000pt;}
.wsb3{word-spacing:-2.560000pt;}
.wsac{word-spacing:-2.506667pt;}
.wsbc{word-spacing:-2.346667pt;}
.ws41{word-spacing:-2.240000pt;}
.ws7e{word-spacing:-2.133333pt;}
.ws25{word-spacing:-2.080000pt;}
.wsfe{word-spacing:-2.064000pt;}
.ws13{word-spacing:-2.026667pt;}
.wsfd{word-spacing:-2.016000pt;}
.ws55{word-spacing:-1.973333pt;}
.wsf{word-spacing:-1.920000pt;}
.wsdc{word-spacing:-1.866667pt;}
.wsb6{word-spacing:-1.760000pt;}
.ws111{word-spacing:-1.749333pt;}
.wsf7{word-spacing:-1.680000pt;}
.wsae{word-spacing:-1.653333pt;}
.ws37{word-spacing:-1.608187pt;}
.ws17{word-spacing:-1.600000pt;}
.wsf8{word-spacing:-1.584000pt;}
.wsd4{word-spacing:-1.493333pt;}
.ws118{word-spacing:-1.450667pt;}
.wse{word-spacing:-1.440000pt;}
.ws83{word-spacing:-1.386667pt;}
.ws24{word-spacing:-1.333333pt;}
.ws116{word-spacing:-1.280000pt;}
.wse7{word-spacing:-1.152000pt;}
.wse6{word-spacing:-1.120000pt;}
.ws6d{word-spacing:-1.066667pt;}
.ws7a{word-spacing:-1.013333pt;}
.ws126{word-spacing:-0.981333pt;}
.ws10{word-spacing:-0.960000pt;}
.ws7f{word-spacing:-0.906667pt;}
.ws117{word-spacing:-0.896000pt;}
.ws19{word-spacing:-0.853333pt;}
.ws10d{word-spacing:-0.810667pt;}
.ws1d{word-spacing:-0.800000pt;}
.wsbe{word-spacing:-0.746667pt;}
.wsa6{word-spacing:-0.693333pt;}
.ws73{word-spacing:-0.586667pt;}
.ws88{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.528000pt;}
.ws10a{word-spacing:-0.426667pt;}
.ws119{word-spacing:-0.384000pt;}
.wsd7{word-spacing:-0.373333pt;}
.ws5d{word-spacing:-0.324341pt;}
.wsb1{word-spacing:-0.320000pt;}
.wsd{word-spacing:-0.288000pt;}
.ws96{word-spacing:-0.278006pt;}
.wse0{word-spacing:-0.266667pt;}
.ws57{word-spacing:-0.256000pt;}
.wsc7{word-spacing:-0.238013pt;}
.ws6c{word-spacing:-0.213333pt;}
.ws2a{word-spacing:-0.201600pt;}
.wsc6{word-spacing:-0.198344pt;}
.ws59{word-spacing:-0.185560pt;}
.wsc8{word-spacing:-0.158675pt;}
.ws98{word-spacing:-0.128000pt;}
.ws5a{word-spacing:-0.123707pt;}
.ws89{word-spacing:-0.106667pt;}
.wsc9{word-spacing:-0.079338pt;}
.ws58{word-spacing:-0.061853pt;}
.ws20{word-spacing:-0.053333pt;}
.ws9{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.061853pt;}
.ws90{word-spacing:0.160000pt;}
.ws8d{word-spacing:0.266667pt;}
.ws97{word-spacing:0.278006pt;}
.ws29{word-spacing:0.302400pt;}
.ws92{word-spacing:0.320000pt;}
.wsf2{word-spacing:0.336000pt;}
.ws79{word-spacing:0.373333pt;}
.wsc{word-spacing:0.384000pt;}
.ws2c{word-spacing:0.480000pt;}
.ws23{word-spacing:0.533333pt;}
.ws5c{word-spacing:0.618533pt;}
.wsd2{word-spacing:0.640000pt;}
.ws1e{word-spacing:0.693333pt;}
.ws50{word-spacing:0.746667pt;}
.ws74{word-spacing:0.800000pt;}
.ws22{word-spacing:0.906667pt;}
.ws15{word-spacing:0.960000pt;}
.ws8a{word-spacing:1.013333pt;}
.ws75{word-spacing:1.120000pt;}
.wsf1{word-spacing:1.152000pt;}
.wsd9{word-spacing:1.226667pt;}
.ws4d{word-spacing:1.333333pt;}
.wsc5{word-spacing:1.386667pt;}
.ws44{word-spacing:1.440000pt;}
.wsb4{word-spacing:1.493333pt;}
.ws107{word-spacing:1.536000pt;}
.wse1{word-spacing:1.546667pt;}
.ws115{word-spacing:1.621333pt;}
.ws4c{word-spacing:1.653333pt;}
.ws105{word-spacing:1.664000pt;}
.ws3c{word-spacing:1.760000pt;}
.wsa8{word-spacing:1.813333pt;}
.ws16{word-spacing:1.866667pt;}
.ws112{word-spacing:1.877333pt;}
.wsab{word-spacing:1.920000pt;}
.ws1f{word-spacing:1.973333pt;}
.ws7c{word-spacing:2.026667pt;}
.ws14{word-spacing:2.080000pt;}
.ws110{word-spacing:2.090667pt;}
.wsd6{word-spacing:2.133333pt;}
.ws56{word-spacing:2.240000pt;}
.ws72{word-spacing:2.346667pt;}
.wsc3{word-spacing:2.400000pt;}
.wsd0{word-spacing:2.453333pt;}
.ws7b{word-spacing:2.506667pt;}
.ws2b{word-spacing:2.520000pt;}
.ws40{word-spacing:2.560000pt;}
.wsa7{word-spacing:2.613333pt;}
.ws11a{word-spacing:2.645333pt;}
.ws71{word-spacing:2.666667pt;}
.ws11b{word-spacing:2.730667pt;}
.wse2{word-spacing:2.773333pt;}
.wsf3{word-spacing:2.784000pt;}
.wse4{word-spacing:2.826667pt;}
.ws11e{word-spacing:2.858667pt;}
.ws3d{word-spacing:2.880000pt;}
.wsdf{word-spacing:2.933333pt;}
.ws1b{word-spacing:2.986667pt;}
.wsb0{word-spacing:3.040000pt;}
.ws103{word-spacing:3.072000pt;}
.wsa4{word-spacing:3.146667pt;}
.wsbb{word-spacing:3.200000pt;}
.wsf5{word-spacing:3.216000pt;}
.wsb2{word-spacing:3.253333pt;}
.wscf{word-spacing:3.306667pt;}
.wsb9{word-spacing:3.360000pt;}
.ws11{word-spacing:3.413333pt;}
.wsc2{word-spacing:3.466667pt;}
.wsc4{word-spacing:3.520000pt;}
.ws11c{word-spacing:3.541333pt;}
.wsa5{word-spacing:3.626667pt;}
.ws6f{word-spacing:3.680000pt;}
.ws91{word-spacing:3.733333pt;}
.ws1c{word-spacing:3.786667pt;}
.ws114{word-spacing:3.925333pt;}
.ws80{word-spacing:4.000000pt;}
.ws6e{word-spacing:4.106667pt;}
.ws104{word-spacing:4.138667pt;}
.ws8c{word-spacing:4.160000pt;}
.ws46{word-spacing:4.320000pt;}
.ws78{word-spacing:4.373333pt;}
.ws10c{word-spacing:4.394667pt;}
.ws95{word-spacing:4.480000pt;}
.ws10f{word-spacing:4.522667pt;}
.ws52{word-spacing:4.533333pt;}
.ws28{word-spacing:4.586667pt;}
.ws4e{word-spacing:4.693333pt;}
.wsb7{word-spacing:4.800000pt;}
.ws87{word-spacing:4.853333pt;}
.wsb{word-spacing:4.896000pt;}
.wsc1{word-spacing:4.960000pt;}
.ws49{word-spacing:5.066667pt;}
.ws27{word-spacing:5.120000pt;}
.wsdb{word-spacing:5.280000pt;}
.wsaa{word-spacing:5.386667pt;}
.wsf4{word-spacing:5.472000pt;}
.wsdd{word-spacing:5.546667pt;}
.ws108{word-spacing:5.589333pt;}
.ws3b{word-spacing:5.600000pt;}
.wsa9{word-spacing:5.653333pt;}
.ws86{word-spacing:5.760000pt;}
.ws18{word-spacing:5.973333pt;}
.ws4f{word-spacing:6.026667pt;}
.ws6a{word-spacing:6.186667pt;}
.ws42{word-spacing:6.400000pt;}
.ws39{word-spacing:6.506667pt;}
.ws101{word-spacing:6.528000pt;}
.ws3f{word-spacing:6.613333pt;}
.ws8f{word-spacing:6.773333pt;}
.ws106{word-spacing:6.869333pt;}
.ws26{word-spacing:6.933333pt;}
.ws121{word-spacing:7.082667pt;}
.wsde{word-spacing:7.306667pt;}
.ws70{word-spacing:7.466667pt;}
.wsd3{word-spacing:7.520000pt;}
.ws82{word-spacing:7.573333pt;}
.ws3a{word-spacing:7.680000pt;}
.ws113{word-spacing:8.149333pt;}
.ws100{word-spacing:8.234667pt;}
.wsad{word-spacing:8.373333pt;}
.ws7d{word-spacing:8.426667pt;}
.ws53{word-spacing:8.586667pt;}
.wsd5{word-spacing:8.906667pt;}
.ws77{word-spacing:9.013333pt;}
.ws94{word-spacing:9.066667pt;}
.ws11f{word-spacing:9.088000pt;}
.ws10e{word-spacing:9.216000pt;}
.wsb8{word-spacing:9.386667pt;}
.ws43{word-spacing:9.440000pt;}
.wsb5{word-spacing:9.546667pt;}
.ws85{word-spacing:9.600000pt;}
.ws11d{word-spacing:9.856000pt;}
.ws48{word-spacing:9.973333pt;}
.wsff{word-spacing:10.069333pt;}
.ws51{word-spacing:10.080000pt;}
.ws6b{word-spacing:10.293333pt;}
.ws8e{word-spacing:10.400000pt;}
.wsf9{word-spacing:10.416000pt;}
.wsc0{word-spacing:10.560000pt;}
.wse5{word-spacing:10.613333pt;}
.ws10b{word-spacing:11.008000pt;}
.ws54{word-spacing:11.040000pt;}
.wsbf{word-spacing:11.093333pt;}
.wsfc{word-spacing:11.184000pt;}
.wsaf{word-spacing:11.306667pt;}
.ws4a{word-spacing:11.520000pt;}
.ws124{word-spacing:11.605333pt;}
.wsfb{word-spacing:11.616000pt;}
.ws3e{word-spacing:12.533333pt;}
.ws109{word-spacing:12.672000pt;}
.ws102{word-spacing:12.714667pt;}
.wsbd{word-spacing:12.800000pt;}
.ws120{word-spacing:14.122667pt;}
.wsce{word-spacing:14.560000pt;}
.ws93{word-spacing:14.666667pt;}
.ws123{word-spacing:14.976000pt;}
.ws4b{word-spacing:15.306667pt;}
.ws12{word-spacing:15.786667pt;}
.wsfa{word-spacing:16.704000pt;}
.wsda{word-spacing:17.066667pt;}
.ws47{word-spacing:17.493333pt;}
.ws45{word-spacing:18.080000pt;}
.ws21{word-spacing:21.440000pt;}
.ws81{word-spacing:27.626667pt;}
.ws122{word-spacing:38.400000pt;}
.ws61{word-spacing:39.940253pt;}
.ws125{word-spacing:50.602667pt;}
.ws9c{word-spacing:52.680166pt;}
.wsa3{word-spacing:59.233156pt;}
.ws9b{word-spacing:101.155440pt;}
.ws99{word-spacing:361.269867pt;}
.ws2f{word-spacing:428.766400pt;}
.ws30{word-spacing:717.470400pt;}
.ws67{word-spacing:885.328000pt;}
.ws69{word-spacing:920.651200pt;}
._a{margin-left:-2509.625067pt;}
._1b{margin-left:-101.036434pt;}
._e{margin-left:-85.440634pt;}
._f{margin-left:-73.579027pt;}
._10{margin-left:-61.995427pt;}
._11{margin-left:-51.338515pt;}
._1a{margin-left:-9.633803pt;}
._7{margin-left:-8.169600pt;}
._17{margin-left:-7.258667pt;}
._6{margin-left:-6.230400pt;}
._8{margin-left:-4.855467pt;}
._5{margin-left:-3.733333pt;}
._2{margin-left:-2.307200pt;}
._0{margin-left:-1.008000pt;}
._3{width:0.906667pt;}
._1{width:1.836800pt;}
._4{width:19.840000pt;}
._9{width:27.512533pt;}
._1c{width:38.350400pt;}
._1e{width:43.907200pt;}
._1d{width:76.435733pt;}
._13{width:159.739733pt;}
._12{width:290.417067pt;}
._c{width:325.643200pt;}
._b{width:508.196800pt;}
._15{width:588.939200pt;}
._16{width:676.240533pt;}
._19{width:762.957333pt;}
._18{width:774.552000pt;}
._14{width:775.877867pt;}
._d{width:2126.506667pt;}
.fs8{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fsd{font-size:39.668800pt;}
.fs9{font-size:40.000000pt;}
.fse{font-size:40.513600pt;}
.fs4{font-size:42.666667pt;}
.fsb{font-size:46.334400pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:51.276800pt;}
.fs7{font-size:53.333333pt;}
.fsa{font-size:61.853333pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:57.477067pt;}
.y2b{bottom:68.677067pt;}
.y2a{bottom:79.877067pt;}
.yb9{bottom:94.660933pt;}
.y57{bottom:94.821467pt;}
.y126{bottom:95.349067pt;}
.y84{bottom:95.370000pt;}
.ye2{bottom:95.370133pt;}
.y125{bottom:111.349067pt;}
.y83{bottom:111.370000pt;}
.ye1{bottom:111.370133pt;}
.yc7{bottom:124.546133pt;}
.y124{bottom:127.349067pt;}
.y82{bottom:127.370000pt;}
.y21{bottom:127.370133pt;}
.ye6{bottom:129.548400pt;}
.y123{bottom:143.349067pt;}
.y81{bottom:143.370000pt;}
.y20{bottom:143.370133pt;}
.yc6{bottom:146.467884pt;}
.yc5{bottom:157.922250pt;}
.y122{bottom:159.349067pt;}
.y80{bottom:159.370000pt;}
.y1f{bottom:159.370133pt;}
.yba{bottom:169.386533pt;}
.y121{bottom:175.349067pt;}
.y7f{bottom:175.370000pt;}
.y1e{bottom:175.370133pt;}
.y67{bottom:179.586597pt;}
.ye5{bottom:182.908133pt;}
.ybb{bottom:185.412729pt;}
.y120{bottom:191.349067pt;}
.y7e{bottom:191.370000pt;}
.y1d{bottom:191.370133pt;}
.y29{bottom:192.252000pt;}
.y66{bottom:195.560220pt;}
.ybc{bottom:201.438924pt;}
.y68{bottom:202.395200pt;}
.y11f{bottom:207.349067pt;}
.y7d{bottom:207.370000pt;}
.y1c{bottom:207.370133pt;}
.y28{bottom:208.252000pt;}
.ye4{bottom:210.246800pt;}
.y65{bottom:211.533843pt;}
.ybd{bottom:217.465119pt;}
.y11e{bottom:223.349067pt;}
.y7c{bottom:223.370000pt;}
.y1b{bottom:223.370133pt;}
.y27{bottom:224.252000pt;}
.y64{bottom:227.507467pt;}
.ybe{bottom:233.491314pt;}
.y11d{bottom:239.349067pt;}
.y7b{bottom:239.370000pt;}
.y1a{bottom:239.370133pt;}
.y26{bottom:240.252000pt;}
.ye0{bottom:242.246800pt;}
.ybf{bottom:249.517509pt;}
.y11c{bottom:255.349067pt;}
.y7a{bottom:255.370000pt;}
.y19{bottom:255.370133pt;}
.y25{bottom:256.252000pt;}
.yc0{bottom:265.543705pt;}
.y11b{bottom:271.349067pt;}
.y79{bottom:271.370000pt;}
.y18{bottom:271.370133pt;}
.y24{bottom:272.252000pt;}
.yc1{bottom:281.569900pt;}
.y11a{bottom:287.349067pt;}
.y78{bottom:287.370000pt;}
.y17{bottom:287.370133pt;}
.yc2{bottom:297.596095pt;}
.y119{bottom:303.349067pt;}
.y77{bottom:303.370000pt;}
.y16{bottom:303.370133pt;}
.yc3{bottom:313.622290pt;}
.y118{bottom:319.349067pt;}
.y76{bottom:319.370000pt;}
.y15{bottom:319.370133pt;}
.y60{bottom:327.297110pt;}
.yc4{bottom:329.648485pt;}
.y117{bottom:335.349067pt;}
.y75{bottom:335.370000pt;}
.y23{bottom:335.370133pt;}
.y5f{bottom:343.270733pt;}
.y116{bottom:351.349067pt;}
.y74{bottom:351.370000pt;}
.y22{bottom:351.370133pt;}
.y5e{bottom:359.244357pt;}
.y14{bottom:361.003733pt;}
.y115{bottom:367.349067pt;}
.y73{bottom:367.370000pt;}
.ydf{bottom:367.370133pt;}
.y63{bottom:374.281553pt;}
.y5d{bottom:375.217980pt;}
.y114{bottom:383.349067pt;}
.y72{bottom:383.370000pt;}
.yde{bottom:383.370133pt;}
.y62{bottom:390.255177pt;}
.y5c{bottom:391.191603pt;}
.y113{bottom:399.349067pt;}
.y71{bottom:399.370000pt;}
.ydd{bottom:399.370133pt;}
.y61{bottom:406.228800pt;}
.y5b{bottom:406.995130pt;}
.y112{bottom:415.349067pt;}
.y70{bottom:415.370000pt;}
.ydc{bottom:415.370133pt;}
.y5a{bottom:422.968753pt;}
.y13{bottom:428.804267pt;}
.y111{bottom:431.349067pt;}
.y6f{bottom:431.370000pt;}
.ydb{bottom:431.370133pt;}
.y59{bottom:438.942377pt;}
.y110{bottom:447.349067pt;}
.y6e{bottom:447.370000pt;}
.yda{bottom:447.370133pt;}
.y12{bottom:452.363333pt;}
.y58{bottom:454.916000pt;}
.y10f{bottom:463.349067pt;}
.y6d{bottom:463.370000pt;}
.yd9{bottom:463.370133pt;}
.y10e{bottom:479.349067pt;}
.y6c{bottom:479.370000pt;}
.yd8{bottom:479.370133pt;}
.y10d{bottom:495.349067pt;}
.y6b{bottom:495.370000pt;}
.yd7{bottom:495.370133pt;}
.y11{bottom:506.158533pt;}
.y10c{bottom:511.349067pt;}
.y4e{bottom:511.370000pt;}
.yd6{bottom:511.370133pt;}
.y10{bottom:522.158533pt;}
.y10b{bottom:527.349067pt;}
.y4d{bottom:527.370000pt;}
.yd5{bottom:527.370133pt;}
.yf{bottom:538.158533pt;}
.y10a{bottom:543.349067pt;}
.y4c{bottom:543.370000pt;}
.yd4{bottom:543.370133pt;}
.ye{bottom:554.158533pt;}
.y109{bottom:559.349067pt;}
.y4b{bottom:559.370000pt;}
.yd3{bottom:559.370133pt;}
.yd{bottom:570.158533pt;}
.y108{bottom:575.349067pt;}
.y4a{bottom:575.370000pt;}
.yd2{bottom:575.370133pt;}
.yc{bottom:586.158533pt;}
.y107{bottom:591.349067pt;}
.y49{bottom:591.370000pt;}
.yd1{bottom:591.370133pt;}
.yb{bottom:602.158533pt;}
.y106{bottom:607.349067pt;}
.y48{bottom:607.370000pt;}
.yd0{bottom:607.370133pt;}
.y105{bottom:623.349067pt;}
.y47{bottom:623.370000pt;}
.ycf{bottom:623.370133pt;}
.ya{bottom:625.717600pt;}
.y9d{bottom:631.184400pt;}
.y104{bottom:639.349067pt;}
.y46{bottom:639.370000pt;}
.yce{bottom:639.370133pt;}
.y51{bottom:642.246667pt;}
.y9c{bottom:645.742133pt;}
.y103{bottom:655.349067pt;}
.y6a{bottom:655.370000pt;}
.ycd{bottom:655.370133pt;}
.ya9{bottom:656.251867pt;}
.ye3{bottom:658.246800pt;}
.y9b{bottom:660.299867pt;}
.y102{bottom:671.349067pt;}
.y69{bottom:671.370000pt;}
.ycc{bottom:671.370133pt;}
.ya8{bottom:672.251867pt;}
.y45{bottom:674.246667pt;}
.y9a{bottom:674.857600pt;}
.y9{bottom:675.733333pt;}
.y101{bottom:687.349067pt;}
.y50{bottom:687.370000pt;}
.ycb{bottom:687.370133pt;}
.ya7{bottom:688.252000pt;}
.y99{bottom:689.415333pt;}
.y8{bottom:691.733333pt;}
.y98{bottom:702.748667pt;}
.y4f{bottom:703.370000pt;}
.yca{bottom:703.370133pt;}
.ya6{bottom:704.252000pt;}
.y100{bottom:714.687600pt;}
.y97{bottom:717.306267pt;}
.y44{bottom:719.370000pt;}
.yc9{bottom:719.370133pt;}
.ya5{bottom:720.252000pt;}
.y7{bottom:722.851600pt;}
.y96{bottom:731.864000pt;}
.y43{bottom:735.370000pt;}
.yc8{bottom:735.370133pt;}
.ya4{bottom:736.252000pt;}
.y95{bottom:746.755067pt;}
.y42{bottom:751.370000pt;}
.ya3{bottom:752.252000pt;}
.ye7{bottom:761.015200pt;}
.y6{bottom:765.308267pt;}
.y41{bottom:767.370000pt;}
.ya2{bottom:768.252000pt;}
.y94{bottom:770.003067pt;}
.y40{bottom:783.370000pt;}
.ya1{bottom:784.252000pt;}
.y5{bottom:788.867333pt;}
.yf0{bottom:789.946800pt;}
.y85{bottom:796.224000pt;}
.y3f{bottom:799.370000pt;}
.ya0{bottom:800.252000pt;}
.yff{bottom:801.548400pt;}
.y4{bottom:812.426400pt;}
.y3e{bottom:815.370000pt;}
.y9f{bottom:816.252000pt;}
.yfc{bottom:817.548400pt;}
.yb8{bottom:820.407333pt;}
.y8c{bottom:827.090999pt;}
.y3d{bottom:831.370000pt;}
.y9e{bottom:832.252000pt;}
.yb7{bottom:834.965067pt;}
.y3c{bottom:847.370000pt;}
.yfb{bottom:847.370133pt;}
.y3{bottom:847.625067pt;}
.yb6{bottom:849.522800pt;}
.y56{bottom:850.888667pt;}
.y86{bottom:855.389733pt;}
.y8d{bottom:855.586533pt;}
.yb5{bottom:862.856133pt;}
.y3b{bottom:863.370000pt;}
.ye8{bottom:864.724533pt;}
.y55{bottom:865.446400pt;}
.yfa{bottom:865.548400pt;}
.yb4{bottom:877.413867pt;}
.y3a{bottom:879.370000pt;}
.y54{bottom:880.004133pt;}
.y2{bottom:881.225067pt;}
.y87{bottom:885.877769pt;}
.y8e{bottom:886.070591pt;}
.ye9{bottom:886.946243pt;}
.yb3{bottom:890.747200pt;}
.y53{bottom:894.895067pt;}
.y39{bottom:895.370000pt;}
.yf9{bottom:895.370133pt;}
.yfe{bottom:897.548267pt;}
.yb2{bottom:904.080533pt;}
.yea{bottom:909.167953pt;}
.y38{bottom:911.370000pt;}
.yf8{bottom:911.370133pt;}
.y1{bottom:914.825067pt;}
.y88{bottom:916.365804pt;}
.y8f{bottom:916.554649pt;}
.yb1{bottom:917.413867pt;}
.y52{bottom:918.143200pt;}
.y37{bottom:927.370000pt;}
.yf7{bottom:927.370133pt;}
.yb0{bottom:930.747200pt;}
.yeb{bottom:931.389662pt;}
.y36{bottom:943.370000pt;}
.yf6{bottom:943.370133pt;}
.yaf{bottom:945.304800pt;}
.y89{bottom:946.853839pt;}
.y90{bottom:947.038706pt;}
.yec{bottom:953.611372pt;}
.yae{bottom:958.638133pt;}
.y35{bottom:959.370000pt;}
.yf5{bottom:959.370133pt;}
.yad{bottom:971.971467pt;}
.y34{bottom:975.370000pt;}
.yf4{bottom:975.370133pt;}
.yed{bottom:975.833081pt;}
.y8a{bottom:977.341874pt;}
.y91{bottom:977.522764pt;}
.yac{bottom:986.862533pt;}
.y33{bottom:991.370000pt;}
.yf3{bottom:991.370133pt;}
.yee{bottom:998.054791pt;}
.y93{bottom:1000.597324pt;}
.y2f{bottom:1001.533333pt;}
.y32{bottom:1007.370000pt;}
.yf2{bottom:1007.370133pt;}
.y8b{bottom:1007.829909pt;}
.yab{bottom:1010.110533pt;}
.y92{bottom:1015.403500pt;}
.yef{bottom:1020.276501pt;}
.y31{bottom:1023.370000pt;}
.yf1{bottom:1023.370133pt;}
.yfd{bottom:1025.057333pt;}
.yaa{bottom:1026.110533pt;}
.y2e{bottom:1036.478000pt;}
.y2d{bottom:1052.257600pt;}
.y30{bottom:1060.905467pt;}
.hc{height:24.511200pt;}
.h15{height:27.569816pt;}
.h17{height:28.156952pt;}
.hd{height:29.180000pt;}
.hf{height:29.994667pt;}
.he{height:30.175781pt;}
.h4{height:30.506667pt;}
.h6{height:30.549333pt;}
.h5{height:31.125333pt;}
.h12{height:31.322054pt;}
.h13{height:32.202408pt;}
.h8{height:34.368000pt;}
.h7{height:35.160000pt;}
.h14{height:35.637376pt;}
.hb{height:38.186667pt;}
.h16{height:39.066667pt;}
.h10{height:41.936560pt;}
.h11{height:42.988067pt;}
.h9{height:46.880000pt;}
.h3{height:48.530571pt;}
.ha{height:54.693333pt;}
.h2{height:82.040000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:83.149600pt;}
.xf{left:98.267733pt;}
.x2c{left:113.385867pt;}
.x29{left:115.858262pt;}
.x3{left:129.087067pt;}
.x34{left:185.749410pt;}
.x2{left:188.301467pt;}
.x15{left:190.545557pt;}
.x14{left:196.406160pt;}
.x17{left:199.112243pt;}
.x13{left:200.442090pt;}
.x1e{left:203.573747pt;}
.x16{left:204.833677pt;}
.x2f{left:210.338000pt;}
.x19{left:212.070517pt;}
.x28{left:215.604458pt;}
.xe{left:217.611867pt;}
.x18{left:223.327823pt;}
.x1a{left:224.673133pt;}
.x4{left:237.252000pt;}
.x12{left:242.301333pt;}
.x30{left:250.968768pt;}
.x1f{left:255.004793pt;}
.x5{left:286.224533pt;}
.x27{left:292.083805pt;}
.x35{left:310.471733pt;}
.x26{left:311.748458pt;}
.xd{left:340.486800pt;}
.x33{left:349.822000pt;}
.x25{left:357.859120pt;}
.x31{left:391.078970pt;}
.x24{left:395.215755pt;}
.x6{left:400.149467pt;}
.x8{left:404.849733pt;}
.x11{left:407.118133pt;}
.x20{left:408.791735pt;}
.x9{left:419.967867pt;}
.x21{left:423.804080pt;}
.x1c{left:427.329813pt;}
.x1d{left:430.360627pt;}
.x22{left:431.333420pt;}
.xa{left:435.086000pt;}
.x32{left:441.904620pt;}
.x7{left:450.535867pt;}
.x10{left:468.243600pt;}
.x2a{left:472.501067pt;}
.x1b{left:478.420667pt;}
.x2d{left:493.894667pt;}
.xc{left:534.411200pt;}
.xb{left:623.247600pt;}
.x23{left:646.603043pt;}
.x2b{left:662.635600pt;}
.x2e{left:664.525333pt;}
}




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