
    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_4c458dfbfad3e743075fe546.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_d5388ad13846931ef48c09f3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_83055b42e8dc14702b67c957.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932667;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_a2ca72c6c6c45a695c32a56d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.103027;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_8ad8b30d13a6beb651f5431f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_893044321af65016134fe73d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.982989;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_fae9c3e1f9fb084f193191d2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.026855;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_fd4c6252da675cc73ce56f64.woff')format("woff");}.ff8{font-family:ff8;line-height:1.011230;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_9f13351f5b224368d5d7fb1d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976111;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_b9e93592f7eefa0d162d5530.woff')format("woff");}.ffa{font-family:ffa;line-height:1.041992;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_7aacd343f1db8044deb063a6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.710938;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_d247b8ae76d41708e4266e63.woff')format("woff");}.ffc{font-family:ffc;line-height:0.924316;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_d9d9393f9ace2dfd9dea62ab.woff')format("woff");}.ffd{font-family:ffd;line-height:0.968262;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_56592e635c7bb6e46527ec89.woff')format("woff");}.ffe{font-family:ffe;line-height:0.976600;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_806a60c6ab07a40f82f170d2.woff')format("woff");}.fff{font-family:fff;line-height:0.964844;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;}
.v2{vertical-align:18.150000px;}
.v1{vertical-align:21.978000px;}
.lsc{letter-spacing:-3.240000px;}
.ls4{letter-spacing:-2.040000px;}
.ls5{letter-spacing:-0.691200px;}
.ls6{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.600000px;}
.lsd{letter-spacing:1.140000px;}
.ls2{letter-spacing:1.200000px;}
.lsb{letter-spacing:1.620000px;}
.ls8{letter-spacing:2.040000px;}
.ls9{letter-spacing:4.980000px;}
.lsa{letter-spacing:6.660000px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.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;}
}
.ws2{word-spacing:-48.000000px;}
.ws6{word-spacing:-17.928000px;}
.wsc7{word-spacing:-16.434000px;}
.ws7{word-spacing:-15.900000px;}
.ws4{word-spacing:-14.940000px;}
.ws4a{word-spacing:-14.880000px;}
.ws81{word-spacing:-14.820000px;}
.ws2a{word-spacing:-14.700000px;}
.ws66{word-spacing:-14.640000px;}
.ws65{word-spacing:-14.520000px;}
.wsc8{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.230000px;}
.ws8{word-spacing:-12.366000px;}
.ws9{word-spacing:-12.150000px;}
.ws89{word-spacing:-11.160000px;}
.ws88{word-spacing:-11.040000px;}
.wsa{word-spacing:-10.992000px;}
.ws29{word-spacing:-10.800000px;}
.ws9a{word-spacing:-10.206000px;}
.ws3{word-spacing:-9.892800px;}
.ws1{word-spacing:-9.618000px;}
.wsab{word-spacing:-9.000000px;}
.wsac{word-spacing:-8.880000px;}
.wsef{word-spacing:-8.532000px;}
.wsea{word-spacing:-7.807536px;}
.ws11e{word-spacing:-4.428000px;}
.ws7d{word-spacing:-4.320000px;}
.wsec{word-spacing:-4.266000px;}
.wsed{word-spacing:-4.212000px;}
.wsf5{word-spacing:-3.834000px;}
.wscd{word-spacing:-3.660000px;}
.wscf{word-spacing:-3.600000px;}
.ws3f{word-spacing:-3.540000px;}
.ws77{word-spacing:-3.420000px;}
.wsf0{word-spacing:-3.402000px;}
.wsdf{word-spacing:-3.348000px;}
.wsb2{word-spacing:-3.294000px;}
.wsb3{word-spacing:-3.240000px;}
.ws11c{word-spacing:-2.646000px;}
.wsb5{word-spacing:-2.640000px;}
.ws19{word-spacing:-2.580000px;}
.ws8a{word-spacing:-2.520000px;}
.ws122{word-spacing:-2.484000px;}
.ws8d{word-spacing:-2.400000px;}
.wsdd{word-spacing:-2.376000px;}
.wsdc{word-spacing:-2.322000px;}
.ws3b{word-spacing:-2.280000px;}
.ws3a{word-spacing:-2.220000px;}
.wsfc{word-spacing:-2.214000px;}
.wsc0{word-spacing:-2.160000px;}
.ws18{word-spacing:-2.100000px;}
.wsa6{word-spacing:-2.040000px;}
.wsa7{word-spacing:-1.980000px;}
.ws3c{word-spacing:-1.920000px;}
.ws105{word-spacing:-1.890000px;}
.wsa3{word-spacing:-1.860000px;}
.wsfd{word-spacing:-1.836000px;}
.ws114{word-spacing:-1.782000px;}
.ws1e{word-spacing:-1.740000px;}
.ws10d{word-spacing:-1.728000px;}
.wsce{word-spacing:-1.680000px;}
.ws13{word-spacing:-1.620000px;}
.wscb{word-spacing:-1.560000px;}
.ws26{word-spacing:-1.380000px;}
.ws107{word-spacing:-1.296000px;}
.ws8c{word-spacing:-1.260000px;}
.ws111{word-spacing:-1.242000px;}
.ws24{word-spacing:-1.200000px;}
.ws76{word-spacing:-1.140000px;}
.wsdb{word-spacing:-1.080000px;}
.wsda{word-spacing:-1.026000px;}
.ws8b{word-spacing:-0.840000px;}
.ws46{word-spacing:-0.780000px;}
.ws104{word-spacing:-0.648000px;}
.ws125{word-spacing:-0.600000px;}
.ws51{word-spacing:-0.540000px;}
.ws42{word-spacing:-0.480000px;}
.ws96{word-spacing:-0.420000px;}
.ws120{word-spacing:-0.378000px;}
.wsca{word-spacing:-0.360000px;}
.ws7e{word-spacing:-0.300000px;}
.ws10a{word-spacing:-0.270000px;}
.wsad{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.216000px;}
.ws84{word-spacing:-0.162000px;}
.ws37{word-spacing:-0.120000px;}
.wsb{word-spacing:0.000000px;}
.wsfe{word-spacing:0.054000px;}
.ws1b{word-spacing:0.060000px;}
.ws11b{word-spacing:0.162000px;}
.ws27{word-spacing:0.180000px;}
.wsd7{word-spacing:0.216000px;}
.ws60{word-spacing:0.240000px;}
.ws14{word-spacing:0.270000px;}
.ws39{word-spacing:0.300000px;}
.wsc9{word-spacing:0.360000px;}
.wsf2{word-spacing:0.378000px;}
.wsa2{word-spacing:0.480000px;}
.ws83{word-spacing:0.540000px;}
.ws12{word-spacing:0.594000px;}
.ws4d{word-spacing:0.600000px;}
.ws92{word-spacing:0.660000px;}
.wsd{word-spacing:0.691200px;}
.ws50{word-spacing:0.720000px;}
.wsc1{word-spacing:0.840000px;}
.wsf3{word-spacing:0.864000px;}
.ws90{word-spacing:0.900000px;}
.ws91{word-spacing:0.960000px;}
.ws48{word-spacing:1.020000px;}
.wsbc{word-spacing:1.080000px;}
.wsaa{word-spacing:1.140000px;}
.ws8f{word-spacing:1.200000px;}
.wseb{word-spacing:1.242000px;}
.ws2f{word-spacing:1.260000px;}
.ws102{word-spacing:1.296000px;}
.wsbd{word-spacing:1.320000px;}
.ws124{word-spacing:1.350000px;}
.wse1{word-spacing:1.404000px;}
.ws1f{word-spacing:1.440000px;}
.wsd2{word-spacing:1.458000px;}
.wse8{word-spacing:1.512000px;}
.ws30{word-spacing:1.560000px;}
.wsd9{word-spacing:1.566000px;}
.ws34{word-spacing:1.620000px;}
.wse7{word-spacing:1.674000px;}
.ws80{word-spacing:1.680000px;}
.ws44{word-spacing:1.740000px;}
.ws6b{word-spacing:1.800000px;}
.ws8e{word-spacing:1.860000px;}
.ws31{word-spacing:1.920000px;}
.ws0{word-spacing:1.938000px;}
.ws70{word-spacing:2.040000px;}
.ws109{word-spacing:2.052000px;}
.ws78{word-spacing:2.100000px;}
.wsde{word-spacing:2.160000px;}
.wsf1{word-spacing:2.214000px;}
.ws1a{word-spacing:2.220000px;}
.ws75{word-spacing:2.280000px;}
.wsa0{word-spacing:2.340000px;}
.ws55{word-spacing:2.400000px;}
.ws6e{word-spacing:2.460000px;}
.wse5{word-spacing:2.484000px;}
.wsb4{word-spacing:2.520000px;}
.wsbb{word-spacing:2.580000px;}
.ws6f{word-spacing:2.640000px;}
.ws25{word-spacing:2.700000px;}
.ws101{word-spacing:2.808000px;}
.ws43{word-spacing:2.820000px;}
.ws6c{word-spacing:2.880000px;}
.wsd5{word-spacing:2.916000px;}
.ws40{word-spacing:2.940000px;}
.wsee{word-spacing:2.970000px;}
.ws123{word-spacing:3.024000px;}
.wsf7{word-spacing:3.078000px;}
.ws72{word-spacing:3.120000px;}
.ws71{word-spacing:3.180000px;}
.ws47{word-spacing:3.240000px;}
.ws68{word-spacing:3.300000px;}
.wsa1{word-spacing:3.360000px;}
.ws11d{word-spacing:3.402000px;}
.ws95{word-spacing:3.540000px;}
.ws4f{word-spacing:3.600000px;}
.wsd1{word-spacing:3.672000px;}
.ws127{word-spacing:3.780000px;}
.wsc4{word-spacing:3.900000px;}
.wsb1{word-spacing:3.960000px;}
.wse0{word-spacing:3.996000px;}
.ws2e{word-spacing:4.020000px;}
.ws53{word-spacing:4.140000px;}
.ws5e{word-spacing:4.200000px;}
.ws106{word-spacing:4.212000px;}
.ws4e{word-spacing:4.260000px;}
.ws45{word-spacing:4.320000px;}
.ws74{word-spacing:4.380000px;}
.ws73{word-spacing:4.440000px;}
.wsd0{word-spacing:4.482000px;}
.ws7b{word-spacing:4.500000px;}
.ws33{word-spacing:4.680000px;}
.ws28{word-spacing:4.800000px;}
.wsfa{word-spacing:4.806000px;}
.ws94{word-spacing:4.860000px;}
.ws79{word-spacing:4.920000px;}
.ws7a{word-spacing:4.980000px;}
.ws23{word-spacing:5.040000px;}
.ws22{word-spacing:5.100000px;}
.ws113{word-spacing:5.184000px;}
.ws5d{word-spacing:5.220000px;}
.ws112{word-spacing:5.238000px;}
.ws1d{word-spacing:5.340000px;}
.ws11f{word-spacing:5.400000px;}
.ws5c{word-spacing:5.460000px;}
.ws4b{word-spacing:5.640000px;}
.ws38{word-spacing:5.700000px;}
.ws10f{word-spacing:5.778000px;}
.wsba{word-spacing:5.820000px;}
.ws5a{word-spacing:5.880000px;}
.ws61{word-spacing:5.940000px;}
.ws2d{word-spacing:6.000000px;}
.ws2c{word-spacing:6.060000px;}
.ws9f{word-spacing:6.120000px;}
.ws3e{word-spacing:6.180000px;}
.wse6{word-spacing:6.210000px;}
.ws69{word-spacing:6.300000px;}
.ws6d{word-spacing:6.360000px;}
.ws21{word-spacing:6.420000px;}
.ws10e{word-spacing:6.426000px;}
.ws20{word-spacing:6.480000px;}
.wsf4{word-spacing:6.534000px;}
.ws85{word-spacing:6.540000px;}
.ws63{word-spacing:6.660000px;}
.ws7f{word-spacing:6.780000px;}
.wsf6{word-spacing:6.858000px;}
.ws7c{word-spacing:6.900000px;}
.ws10b{word-spacing:6.912000px;}
.ws93{word-spacing:6.960000px;}
.wsbf{word-spacing:7.020000px;}
.ws117{word-spacing:7.074000px;}
.wsb7{word-spacing:7.080000px;}
.ws35{word-spacing:7.140000px;}
.wse9{word-spacing:7.236000px;}
.ws4c{word-spacing:7.260000px;}
.wse4{word-spacing:7.344000px;}
.ws58{word-spacing:7.380000px;}
.ws62{word-spacing:7.440000px;}
.ws87{word-spacing:7.500000px;}
.wsd8{word-spacing:7.506000px;}
.ws121{word-spacing:7.560000px;}
.ws9c{word-spacing:7.680000px;}
.wsbe{word-spacing:7.740000px;}
.ws103{word-spacing:7.776000px;}
.ws1c{word-spacing:7.860000px;}
.ws57{word-spacing:7.980000px;}
.ws56{word-spacing:8.100000px;}
.ws3d{word-spacing:8.160000px;}
.ws49{word-spacing:8.220000px;}
.ws6a{word-spacing:8.340000px;}
.ws110{word-spacing:8.370000px;}
.ws52{word-spacing:8.460000px;}
.ws41{word-spacing:8.520000px;}
.ws32{word-spacing:8.640000px;}
.wsa5{word-spacing:8.700000px;}
.ws54{word-spacing:8.820000px;}
.ws5f{word-spacing:8.880000px;}
.wsb9{word-spacing:9.000000px;}
.wsd4{word-spacing:9.072000px;}
.wsb8{word-spacing:9.120000px;}
.ws108{word-spacing:9.450000px;}
.ws9e{word-spacing:9.480000px;}
.wscc{word-spacing:9.540000px;}
.wsd3{word-spacing:9.558000px;}
.wsb6{word-spacing:9.600000px;}
.wse3{word-spacing:9.612000px;}
.wsa9{word-spacing:9.660000px;}
.wse2{word-spacing:9.666000px;}
.ws17{word-spacing:9.720000px;}
.wsd6{word-spacing:9.774000px;}
.wsa8{word-spacing:9.780000px;}
.wsae{word-spacing:10.200000px;}
.ws2b{word-spacing:10.260000px;}
.ws36{word-spacing:10.380000px;}
.wsfb{word-spacing:10.422000px;}
.ws5b{word-spacing:10.740000px;}
.wsc2{word-spacing:10.800000px;}
.wsb0{word-spacing:10.860000px;}
.wsc3{word-spacing:10.920000px;}
.wsaf{word-spacing:10.980000px;}
.wse{word-spacing:11.070000px;}
.ws59{word-spacing:11.160000px;}
.ws115{word-spacing:11.286000px;}
.ws9d{word-spacing:11.400000px;}
.ws10c{word-spacing:11.448000px;}
.wsf9{word-spacing:11.556000px;}
.wsc5{word-spacing:11.640000px;}
.wsf8{word-spacing:11.664000px;}
.wsc6{word-spacing:12.060000px;}
.wsff{word-spacing:12.312000px;}
.ws97{word-spacing:12.360000px;}
.ws10{word-spacing:12.420000px;}
.ws11{word-spacing:12.528000px;}
.ws11a{word-spacing:12.744000px;}
.ws67{word-spacing:12.840000px;}
.ws116{word-spacing:13.068000px;}
.ws15{word-spacing:13.338000px;}
.wsa4{word-spacing:13.680000px;}
.ws82{word-spacing:14.100000px;}
.ws9b{word-spacing:14.160000px;}
.ws100{word-spacing:14.202000px;}
.ws118{word-spacing:15.822000px;}
.ws99{word-spacing:16.500000px;}
.wsf{word-spacing:16.524000px;}
.ws98{word-spacing:16.620000px;}
.ws16{word-spacing:19.008000px;}
.ws119{word-spacing:22.842000px;}
.ws126{word-spacing:24.786000px;}
.ws64{word-spacing:26.340000px;}
.ws86{word-spacing:31.680000px;}
._9{margin-left:-11.095800px;}
._f{margin-left:-9.922200px;}
._8{margin-left:-8.836200px;}
._d{margin-left:-7.296000px;}
._3{margin-left:-5.304000px;}
._7{margin-left:-4.101600px;}
._4{margin-left:-2.629800px;}
._0{margin-left:-1.336200px;}
._1{width:1.132200px;}
._2{width:2.988600px;}
._e{width:4.038000px;}
._b{width:5.580000px;}
._c{width:7.548000px;}
._a{width:9.583800px;}
._6{width:11.596200px;}
._11{width:12.810000px;}
._10{width:13.854000px;}
._5{width:36.369000px;}
._12{width:43.108200px;}
.fc2{color:rgb(109,111,79);}
.fc1{color:rgb(70,71,49);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y39{bottom:71.212050px;}
.y3a{bottom:75.040050px;}
.ye8{bottom:112.802700px;}
.y118{bottom:112.832850px;}
.ya0{bottom:113.078700px;}
.y69{bottom:113.078850px;}
.yb{bottom:117.205050px;}
.y2a{bottom:117.212700px;}
.ya{bottom:131.601450px;}
.ye7{bottom:133.808700px;}
.y117{bottom:133.838850px;}
.y140{bottom:133.988850px;}
.yb9{bottom:134.072850px;}
.y9f{bottom:134.078700px;}
.y68{bottom:134.078850px;}
.y29{bottom:138.212700px;}
.y9{bottom:145.997850px;}
.ye6{bottom:154.814700px;}
.y116{bottom:154.844850px;}
.y13f{bottom:154.994850px;}
.y9e{bottom:155.078700px;}
.y67{bottom:155.078850px;}
.y28{bottom:159.212700px;}
.y8{bottom:160.397850px;}
.ye5{bottom:175.820700px;}
.y115{bottom:175.850850px;}
.y13e{bottom:176.000850px;}
.y9d{bottom:176.078700px;}
.y66{bottom:176.078850px;}
.y27{bottom:180.212700px;}
.yb8{bottom:181.529400px;}
.y72{bottom:189.513600px;}
.ye4{bottom:196.826700px;}
.y114{bottom:196.856850px;}
.y13d{bottom:197.006850px;}
.y9c{bottom:197.078700px;}
.y65{bottom:197.078850px;}
.y26{bottom:201.212700px;}
.y36{bottom:203.447400px;}
.ye3{bottom:217.832700px;}
.y113{bottom:217.862850px;}
.y13c{bottom:218.012850px;}
.yb7{bottom:218.072850px;}
.y9b{bottom:218.078700px;}
.y64{bottom:218.078850px;}
.y35{bottom:221.442900px;}
.y71{bottom:221.811000px;}
.y25{bottom:222.212700px;}
.ya6{bottom:228.584700px;}
.ya4{bottom:235.816500px;}
.ye2{bottom:238.838700px;}
.y112{bottom:238.868850px;}
.y13b{bottom:239.018850px;}
.yb6{bottom:239.072850px;}
.y9a{bottom:239.078700px;}
.y63{bottom:239.078850px;}
.y34{bottom:239.438400px;}
.y24{bottom:243.212700px;}
.ya5{bottom:248.389200px;}
.ya8{bottom:251.210850px;}
.ya3{bottom:255.621000px;}
.y33{bottom:257.433900px;}
.ye1{bottom:259.844700px;}
.y111{bottom:259.874850px;}
.y13a{bottom:260.024850px;}
.yb5{bottom:260.072850px;}
.y99{bottom:260.078700px;}
.y62{bottom:260.078850px;}
.y23{bottom:264.212700px;}
.ya7{bottom:271.015350px;}
.ya2{bottom:275.425500px;}
.y32{bottom:275.429400px;}
.ye0{bottom:280.850700px;}
.y110{bottom:280.880850px;}
.y139{bottom:281.030850px;}
.yb4{bottom:281.072850px;}
.y98{bottom:281.078700px;}
.y61{bottom:281.078850px;}
.y22{bottom:285.212700px;}
.y31{bottom:293.424900px;}
.ya1{bottom:295.230000px;}
.ydf{bottom:301.856700px;}
.y10f{bottom:301.886850px;}
.y138{bottom:302.036850px;}
.y97{bottom:302.078700px;}
.y60{bottom:302.078850px;}
.y21{bottom:306.212700px;}
.y30{bottom:311.420400px;}
.y146{bottom:322.850850px;}
.yde{bottom:322.862700px;}
.y10e{bottom:322.892850px;}
.y137{bottom:323.042850px;}
.y96{bottom:323.078700px;}
.y5f{bottom:323.078850px;}
.y20{bottom:327.212700px;}
.yb3{bottom:328.529400px;}
.y2f{bottom:329.415900px;}
.y145{bottom:343.856850px;}
.ydd{bottom:343.868700px;}
.y10d{bottom:343.898850px;}
.y136{bottom:344.048850px;}
.y95{bottom:344.078700px;}
.y5e{bottom:344.078850px;}
.y1f{bottom:348.212700px;}
.y2e{bottom:364.421400px;}
.y144{bottom:364.862850px;}
.ydc{bottom:364.874700px;}
.y10c{bottom:364.904850px;}
.y135{bottom:365.054850px;}
.yb2{bottom:365.072850px;}
.y94{bottom:365.078700px;}
.y5d{bottom:365.078850px;}
.y1e{bottom:369.212700px;}
.y2d{bottom:382.421400px;}
.y143{bottom:385.868850px;}
.ydb{bottom:385.880700px;}
.y10b{bottom:385.910850px;}
.y134{bottom:386.060850px;}
.y93{bottom:386.078700px;}
.y5c{bottom:386.078850px;}
.y1d{bottom:390.212700px;}
.y2c{bottom:400.421400px;}
.y142{bottom:406.874850px;}
.yda{bottom:406.886700px;}
.y10a{bottom:406.916850px;}
.y133{bottom:407.066850px;}
.y92{bottom:407.078700px;}
.y5b{bottom:407.078850px;}
.y1c{bottom:411.212700px;}
.yb1{bottom:412.529400px;}
.y2b{bottom:418.421400px;}
.y141{bottom:427.880850px;}
.yd9{bottom:427.892700px;}
.y109{bottom:427.922850px;}
.y132{bottom:428.072850px;}
.y91{bottom:428.078700px;}
.y5a{bottom:428.078850px;}
.y1b{bottom:432.212700px;}
.y131{bottom:448.886850px;}
.yd8{bottom:448.898700px;}
.y108{bottom:448.928850px;}
.yb0{bottom:449.072850px;}
.y90{bottom:449.078700px;}
.y59{bottom:449.078850px;}
.y1a{bottom:465.744600px;}
.y130{bottom:469.892850px;}
.yd7{bottom:469.904700px;}
.y107{bottom:469.934850px;}
.y58{bottom:470.078850px;}
.y12f{bottom:490.898850px;}
.yd6{bottom:490.910700px;}
.y106{bottom:490.940850px;}
.y8f{bottom:491.078700px;}
.y57{bottom:491.078850px;}
.yaf{bottom:496.529400px;}
.y12e{bottom:511.904850px;}
.yd5{bottom:511.916700px;}
.y105{bottom:511.946850px;}
.y8e{bottom:512.078700px;}
.y56{bottom:512.078850px;}
.y12d{bottom:532.910850px;}
.yd4{bottom:532.922700px;}
.y104{bottom:532.952850px;}
.y8d{bottom:533.078700px;}
.y55{bottom:533.078850px;}
.y12c{bottom:553.916850px;}
.yd3{bottom:553.928700px;}
.y103{bottom:553.958850px;}
.y54{bottom:554.078850px;}
.y19{bottom:559.027950px;}
.yae{bottom:559.529400px;}
.y8c{bottom:568.440900px;}
.y12b{bottom:574.922850px;}
.yd2{bottom:574.934700px;}
.y102{bottom:574.964850px;}
.y70{bottom:575.078850px;}
.y53{bottom:588.513600px;}
.y12a{bottom:595.928850px;}
.yd1{bottom:595.940700px;}
.y101{bottom:595.970850px;}
.y6f{bottom:596.078850px;}
.y18{bottom:600.042900px;}
.y129{bottom:616.934850px;}
.yd0{bottom:616.946700px;}
.y100{bottom:616.976850px;}
.y8b{bottom:617.078700px;}
.y6e{bottom:617.078850px;}
.y17{bottom:619.847400px;}
.y52{bottom:620.811150px;}
.yad{bottom:622.529400px;}
.y128{bottom:637.940850px;}
.ycf{bottom:637.952700px;}
.yff{bottom:637.982850px;}
.y158{bottom:638.036850px;}
.y8a{bottom:638.078700px;}
.y6d{bottom:638.078850px;}
.y16{bottom:639.651900px;}
.y127{bottom:658.946850px;}
.yce{bottom:658.958700px;}
.yfe{bottom:658.988850px;}
.y157{bottom:659.042850px;}
.y89{bottom:659.078700px;}
.y6c{bottom:659.078850px;}
.y15{bottom:659.456400px;}
.y14{bottom:679.260900px;}
.y126{bottom:679.952850px;}
.ycd{bottom:679.964700px;}
.yfd{bottom:679.994850px;}
.y156{bottom:680.048850px;}
.y88{bottom:680.078700px;}
.y51{bottom:680.078850px;}
.yac{bottom:685.937100px;}
.y13{bottom:699.065400px;}
.y125{bottom:700.958850px;}
.ycc{bottom:700.970700px;}
.yfc{bottom:701.000850px;}
.y155{bottom:701.054850px;}
.y87{bottom:701.078700px;}
.y50{bottom:701.078850px;}
.yab{bottom:715.441050px;}
.y12{bottom:718.869900px;}
.y124{bottom:721.964850px;}
.ycb{bottom:721.976700px;}
.yfb{bottom:722.006850px;}
.y154{bottom:722.060850px;}
.y86{bottom:722.078700px;}
.y4f{bottom:722.078850px;}
.y11{bottom:738.674400px;}
.y123{bottom:742.970850px;}
.yca{bottom:742.982700px;}
.yfa{bottom:743.012850px;}
.y153{bottom:743.066850px;}
.y85{bottom:743.078700px;}
.y4e{bottom:743.078850px;}
.y10{bottom:758.478900px;}
.y122{bottom:763.976850px;}
.yc9{bottom:763.988700px;}
.yf9{bottom:764.018850px;}
.y152{bottom:764.072850px;}
.y84{bottom:764.078700px;}
.y4d{bottom:764.078850px;}
.yf{bottom:778.283400px;}
.y6b{bottom:778.441050px;}
.y121{bottom:784.982850px;}
.yc8{bottom:784.994700px;}
.yf8{bottom:785.024850px;}
.y83{bottom:785.078700px;}
.y4c{bottom:785.078850px;}
.ye{bottom:798.087900px;}
.y120{bottom:805.988850px;}
.yc7{bottom:806.000700px;}
.yf7{bottom:806.030850px;}
.y82{bottom:806.078700px;}
.y4b{bottom:806.078850px;}
.y151{bottom:819.513600px;}
.ya9{bottom:820.441050px;}
.y11f{bottom:826.994850px;}
.yc6{bottom:827.006700px;}
.yf6{bottom:827.036850px;}
.y81{bottom:827.078700px;}
.y4a{bottom:827.078850px;}
.yd{bottom:829.185300px;}
.yaa{bottom:841.441050px;}
.y11e{bottom:848.000850px;}
.yc5{bottom:848.012700px;}
.yf5{bottom:848.042850px;}
.y80{bottom:848.078700px;}
.y49{bottom:848.078850px;}
.y150{bottom:851.811150px;}
.y11d{bottom:869.006850px;}
.yc4{bottom:869.018700px;}
.yf4{bottom:869.048850px;}
.y7f{bottom:869.078700px;}
.y48{bottom:869.078850px;}
.y11c{bottom:890.012850px;}
.yc3{bottom:890.024700px;}
.yf3{bottom:890.054850px;}
.y7e{bottom:890.078700px;}
.y47{bottom:890.078850px;}
.y7{bottom:908.466750px;}
.y11b{bottom:911.018850px;}
.yc2{bottom:911.030700px;}
.y14f{bottom:911.036850px;}
.yf2{bottom:911.060850px;}
.y7d{bottom:911.078700px;}
.y46{bottom:911.078850px;}
.y6{bottom:926.466750px;}
.y11a{bottom:932.024850px;}
.yc1{bottom:932.036700px;}
.y14e{bottom:932.042850px;}
.yf1{bottom:932.066850px;}
.y7c{bottom:932.078700px;}
.y45{bottom:932.078850px;}
.y5{bottom:944.466750px;}
.y119{bottom:953.030850px;}
.yc0{bottom:953.042700px;}
.y14d{bottom:953.048850px;}
.yf0{bottom:953.072850px;}
.y7b{bottom:953.078700px;}
.y44{bottom:953.078850px;}
.yef{bottom:974.036850px;}
.ybf{bottom:974.048700px;}
.y14c{bottom:974.054850px;}
.y7a{bottom:974.078700px;}
.y43{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.yee{bottom:995.042850px;}
.ybe{bottom:995.054700px;}
.y14b{bottom:995.060850px;}
.y79{bottom:995.078700px;}
.y42{bottom:995.078850px;}
.yed{bottom:1016.048850px;}
.ybd{bottom:1016.060700px;}
.y14a{bottom:1016.066850px;}
.y78{bottom:1016.078700px;}
.y41{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y6a{bottom:1030.441050px;}
.yec{bottom:1037.054850px;}
.ybc{bottom:1037.066700px;}
.y149{bottom:1037.072850px;}
.y77{bottom:1037.078700px;}
.y40{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.yeb{bottom:1058.060850px;}
.ybb{bottom:1058.072700px;}
.y76{bottom:1058.078700px;}
.y3f{bottom:1058.078850px;}
.yea{bottom:1079.066850px;}
.y75{bottom:1079.078700px;}
.y3e{bottom:1079.078850px;}
.y148{bottom:1089.903300px;}
.ye9{bottom:1100.072850px;}
.y74{bottom:1100.078700px;}
.y3d{bottom:1100.078850px;}
.yc{bottom:1109.815500px;}
.yba{bottom:1111.570800px;}
.y73{bottom:1121.078700px;}
.y3c{bottom:1121.078850px;}
.y147{bottom:1122.200850px;}
.y38{bottom:1159.189500px;}
.y37{bottom:1178.689500px;}
.y3b{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h10{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:43.004883px;}
.hf{height:43.057617px;}
.he{height:43.321289px;}
.hb{height:43.875000px;}
.ha{height:47.170898px;}
.h14{height:47.194898px;}
.h15{height:47.338898px;}
.h9{height:47.343750px;}
.h12{height:48.750000px;}
.h13{height:50.176758px;}
.h11{height:52.078125px;}
.hd{height:52.412109px;}
.hc{height:56.812500px;}
.h4{height:57.653320px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.063850px;}
.xc{left:108.289650px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x4{left:300.189000px;}
.xb{left:317.196900px;}
.x3{left:396.050700px;}
.x9{left:646.536300px;}
.x8{left:668.280300px;}
.x1{left:801.157500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.133333pt;}
.v1{vertical-align:19.536000pt;}
.lsc{letter-spacing:-2.880000pt;}
.ls4{letter-spacing:-1.813333pt;}
.ls5{letter-spacing:-0.614400pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.533333pt;}
.lsd{letter-spacing:1.013333pt;}
.ls2{letter-spacing:1.066667pt;}
.lsb{letter-spacing:1.440000pt;}
.ls8{letter-spacing:1.813333pt;}
.ls9{letter-spacing:4.426667pt;}
.lsa{letter-spacing:5.920000pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ws2{word-spacing:-42.666667pt;}
.ws6{word-spacing:-15.936000pt;}
.wsc7{word-spacing:-14.608000pt;}
.ws7{word-spacing:-14.133333pt;}
.ws4{word-spacing:-13.280000pt;}
.ws4a{word-spacing:-13.226667pt;}
.ws81{word-spacing:-13.173333pt;}
.ws2a{word-spacing:-13.066667pt;}
.ws66{word-spacing:-13.013333pt;}
.ws65{word-spacing:-12.906667pt;}
.wsc8{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.760000pt;}
.ws8{word-spacing:-10.992000pt;}
.ws9{word-spacing:-10.800000pt;}
.ws89{word-spacing:-9.920000pt;}
.ws88{word-spacing:-9.813333pt;}
.wsa{word-spacing:-9.770667pt;}
.ws29{word-spacing:-9.600000pt;}
.ws9a{word-spacing:-9.072000pt;}
.ws3{word-spacing:-8.793600pt;}
.ws1{word-spacing:-8.549333pt;}
.wsab{word-spacing:-8.000000pt;}
.wsac{word-spacing:-7.893333pt;}
.wsef{word-spacing:-7.584000pt;}
.wsea{word-spacing:-6.940032pt;}
.ws11e{word-spacing:-3.936000pt;}
.ws7d{word-spacing:-3.840000pt;}
.wsec{word-spacing:-3.792000pt;}
.wsed{word-spacing:-3.744000pt;}
.wsf5{word-spacing:-3.408000pt;}
.wscd{word-spacing:-3.253333pt;}
.wscf{word-spacing:-3.200000pt;}
.ws3f{word-spacing:-3.146667pt;}
.ws77{word-spacing:-3.040000pt;}
.wsf0{word-spacing:-3.024000pt;}
.wsdf{word-spacing:-2.976000pt;}
.wsb2{word-spacing:-2.928000pt;}
.wsb3{word-spacing:-2.880000pt;}
.ws11c{word-spacing:-2.352000pt;}
.wsb5{word-spacing:-2.346667pt;}
.ws19{word-spacing:-2.293333pt;}
.ws8a{word-spacing:-2.240000pt;}
.ws122{word-spacing:-2.208000pt;}
.ws8d{word-spacing:-2.133333pt;}
.wsdd{word-spacing:-2.112000pt;}
.wsdc{word-spacing:-2.064000pt;}
.ws3b{word-spacing:-2.026667pt;}
.ws3a{word-spacing:-1.973333pt;}
.wsfc{word-spacing:-1.968000pt;}
.wsc0{word-spacing:-1.920000pt;}
.ws18{word-spacing:-1.866667pt;}
.wsa6{word-spacing:-1.813333pt;}
.wsa7{word-spacing:-1.760000pt;}
.ws3c{word-spacing:-1.706667pt;}
.ws105{word-spacing:-1.680000pt;}
.wsa3{word-spacing:-1.653333pt;}
.wsfd{word-spacing:-1.632000pt;}
.ws114{word-spacing:-1.584000pt;}
.ws1e{word-spacing:-1.546667pt;}
.ws10d{word-spacing:-1.536000pt;}
.wsce{word-spacing:-1.493333pt;}
.ws13{word-spacing:-1.440000pt;}
.wscb{word-spacing:-1.386667pt;}
.ws26{word-spacing:-1.226667pt;}
.ws107{word-spacing:-1.152000pt;}
.ws8c{word-spacing:-1.120000pt;}
.ws111{word-spacing:-1.104000pt;}
.ws24{word-spacing:-1.066667pt;}
.ws76{word-spacing:-1.013333pt;}
.wsdb{word-spacing:-0.960000pt;}
.wsda{word-spacing:-0.912000pt;}
.ws8b{word-spacing:-0.746667pt;}
.ws46{word-spacing:-0.693333pt;}
.ws104{word-spacing:-0.576000pt;}
.ws125{word-spacing:-0.533333pt;}
.ws51{word-spacing:-0.480000pt;}
.ws42{word-spacing:-0.426667pt;}
.ws96{word-spacing:-0.373333pt;}
.ws120{word-spacing:-0.336000pt;}
.wsca{word-spacing:-0.320000pt;}
.ws7e{word-spacing:-0.266667pt;}
.ws10a{word-spacing:-0.240000pt;}
.wsad{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.192000pt;}
.ws84{word-spacing:-0.144000pt;}
.ws37{word-spacing:-0.106667pt;}
.wsb{word-spacing:0.000000pt;}
.wsfe{word-spacing:0.048000pt;}
.ws1b{word-spacing:0.053333pt;}
.ws11b{word-spacing:0.144000pt;}
.ws27{word-spacing:0.160000pt;}
.wsd7{word-spacing:0.192000pt;}
.ws60{word-spacing:0.213333pt;}
.ws14{word-spacing:0.240000pt;}
.ws39{word-spacing:0.266667pt;}
.wsc9{word-spacing:0.320000pt;}
.wsf2{word-spacing:0.336000pt;}
.wsa2{word-spacing:0.426667pt;}
.ws83{word-spacing:0.480000pt;}
.ws12{word-spacing:0.528000pt;}
.ws4d{word-spacing:0.533333pt;}
.ws92{word-spacing:0.586667pt;}
.wsd{word-spacing:0.614400pt;}
.ws50{word-spacing:0.640000pt;}
.wsc1{word-spacing:0.746667pt;}
.wsf3{word-spacing:0.768000pt;}
.ws90{word-spacing:0.800000pt;}
.ws91{word-spacing:0.853333pt;}
.ws48{word-spacing:0.906667pt;}
.wsbc{word-spacing:0.960000pt;}
.wsaa{word-spacing:1.013333pt;}
.ws8f{word-spacing:1.066667pt;}
.wseb{word-spacing:1.104000pt;}
.ws2f{word-spacing:1.120000pt;}
.ws102{word-spacing:1.152000pt;}
.wsbd{word-spacing:1.173333pt;}
.ws124{word-spacing:1.200000pt;}
.wse1{word-spacing:1.248000pt;}
.ws1f{word-spacing:1.280000pt;}
.wsd2{word-spacing:1.296000pt;}
.wse8{word-spacing:1.344000pt;}
.ws30{word-spacing:1.386667pt;}
.wsd9{word-spacing:1.392000pt;}
.ws34{word-spacing:1.440000pt;}
.wse7{word-spacing:1.488000pt;}
.ws80{word-spacing:1.493333pt;}
.ws44{word-spacing:1.546667pt;}
.ws6b{word-spacing:1.600000pt;}
.ws8e{word-spacing:1.653333pt;}
.ws31{word-spacing:1.706667pt;}
.ws0{word-spacing:1.722667pt;}
.ws70{word-spacing:1.813333pt;}
.ws109{word-spacing:1.824000pt;}
.ws78{word-spacing:1.866667pt;}
.wsde{word-spacing:1.920000pt;}
.wsf1{word-spacing:1.968000pt;}
.ws1a{word-spacing:1.973333pt;}
.ws75{word-spacing:2.026667pt;}
.wsa0{word-spacing:2.080000pt;}
.ws55{word-spacing:2.133333pt;}
.ws6e{word-spacing:2.186667pt;}
.wse5{word-spacing:2.208000pt;}
.wsb4{word-spacing:2.240000pt;}
.wsbb{word-spacing:2.293333pt;}
.ws6f{word-spacing:2.346667pt;}
.ws25{word-spacing:2.400000pt;}
.ws101{word-spacing:2.496000pt;}
.ws43{word-spacing:2.506667pt;}
.ws6c{word-spacing:2.560000pt;}
.wsd5{word-spacing:2.592000pt;}
.ws40{word-spacing:2.613333pt;}
.wsee{word-spacing:2.640000pt;}
.ws123{word-spacing:2.688000pt;}
.wsf7{word-spacing:2.736000pt;}
.ws72{word-spacing:2.773333pt;}
.ws71{word-spacing:2.826667pt;}
.ws47{word-spacing:2.880000pt;}
.ws68{word-spacing:2.933333pt;}
.wsa1{word-spacing:2.986667pt;}
.ws11d{word-spacing:3.024000pt;}
.ws95{word-spacing:3.146667pt;}
.ws4f{word-spacing:3.200000pt;}
.wsd1{word-spacing:3.264000pt;}
.ws127{word-spacing:3.360000pt;}
.wsc4{word-spacing:3.466667pt;}
.wsb1{word-spacing:3.520000pt;}
.wse0{word-spacing:3.552000pt;}
.ws2e{word-spacing:3.573333pt;}
.ws53{word-spacing:3.680000pt;}
.ws5e{word-spacing:3.733333pt;}
.ws106{word-spacing:3.744000pt;}
.ws4e{word-spacing:3.786667pt;}
.ws45{word-spacing:3.840000pt;}
.ws74{word-spacing:3.893333pt;}
.ws73{word-spacing:3.946667pt;}
.wsd0{word-spacing:3.984000pt;}
.ws7b{word-spacing:4.000000pt;}
.ws33{word-spacing:4.160000pt;}
.ws28{word-spacing:4.266667pt;}
.wsfa{word-spacing:4.272000pt;}
.ws94{word-spacing:4.320000pt;}
.ws79{word-spacing:4.373333pt;}
.ws7a{word-spacing:4.426667pt;}
.ws23{word-spacing:4.480000pt;}
.ws22{word-spacing:4.533333pt;}
.ws113{word-spacing:4.608000pt;}
.ws5d{word-spacing:4.640000pt;}
.ws112{word-spacing:4.656000pt;}
.ws1d{word-spacing:4.746667pt;}
.ws11f{word-spacing:4.800000pt;}
.ws5c{word-spacing:4.853333pt;}
.ws4b{word-spacing:5.013333pt;}
.ws38{word-spacing:5.066667pt;}
.ws10f{word-spacing:5.136000pt;}
.wsba{word-spacing:5.173333pt;}
.ws5a{word-spacing:5.226667pt;}
.ws61{word-spacing:5.280000pt;}
.ws2d{word-spacing:5.333333pt;}
.ws2c{word-spacing:5.386667pt;}
.ws9f{word-spacing:5.440000pt;}
.ws3e{word-spacing:5.493333pt;}
.wse6{word-spacing:5.520000pt;}
.ws69{word-spacing:5.600000pt;}
.ws6d{word-spacing:5.653333pt;}
.ws21{word-spacing:5.706667pt;}
.ws10e{word-spacing:5.712000pt;}
.ws20{word-spacing:5.760000pt;}
.wsf4{word-spacing:5.808000pt;}
.ws85{word-spacing:5.813333pt;}
.ws63{word-spacing:5.920000pt;}
.ws7f{word-spacing:6.026667pt;}
.wsf6{word-spacing:6.096000pt;}
.ws7c{word-spacing:6.133333pt;}
.ws10b{word-spacing:6.144000pt;}
.ws93{word-spacing:6.186667pt;}
.wsbf{word-spacing:6.240000pt;}
.ws117{word-spacing:6.288000pt;}
.wsb7{word-spacing:6.293333pt;}
.ws35{word-spacing:6.346667pt;}
.wse9{word-spacing:6.432000pt;}
.ws4c{word-spacing:6.453333pt;}
.wse4{word-spacing:6.528000pt;}
.ws58{word-spacing:6.560000pt;}
.ws62{word-spacing:6.613333pt;}
.ws87{word-spacing:6.666667pt;}
.wsd8{word-spacing:6.672000pt;}
.ws121{word-spacing:6.720000pt;}
.ws9c{word-spacing:6.826667pt;}
.wsbe{word-spacing:6.880000pt;}
.ws103{word-spacing:6.912000pt;}
.ws1c{word-spacing:6.986667pt;}
.ws57{word-spacing:7.093333pt;}
.ws56{word-spacing:7.200000pt;}
.ws3d{word-spacing:7.253333pt;}
.ws49{word-spacing:7.306667pt;}
.ws6a{word-spacing:7.413333pt;}
.ws110{word-spacing:7.440000pt;}
.ws52{word-spacing:7.520000pt;}
.ws41{word-spacing:7.573333pt;}
.ws32{word-spacing:7.680000pt;}
.wsa5{word-spacing:7.733333pt;}
.ws54{word-spacing:7.840000pt;}
.ws5f{word-spacing:7.893333pt;}
.wsb9{word-spacing:8.000000pt;}
.wsd4{word-spacing:8.064000pt;}
.wsb8{word-spacing:8.106667pt;}
.ws108{word-spacing:8.400000pt;}
.ws9e{word-spacing:8.426667pt;}
.wscc{word-spacing:8.480000pt;}
.wsd3{word-spacing:8.496000pt;}
.wsb6{word-spacing:8.533333pt;}
.wse3{word-spacing:8.544000pt;}
.wsa9{word-spacing:8.586667pt;}
.wse2{word-spacing:8.592000pt;}
.ws17{word-spacing:8.640000pt;}
.wsd6{word-spacing:8.688000pt;}
.wsa8{word-spacing:8.693333pt;}
.wsae{word-spacing:9.066667pt;}
.ws2b{word-spacing:9.120000pt;}
.ws36{word-spacing:9.226667pt;}
.wsfb{word-spacing:9.264000pt;}
.ws5b{word-spacing:9.546667pt;}
.wsc2{word-spacing:9.600000pt;}
.wsb0{word-spacing:9.653333pt;}
.wsc3{word-spacing:9.706667pt;}
.wsaf{word-spacing:9.760000pt;}
.wse{word-spacing:9.840000pt;}
.ws59{word-spacing:9.920000pt;}
.ws115{word-spacing:10.032000pt;}
.ws9d{word-spacing:10.133333pt;}
.ws10c{word-spacing:10.176000pt;}
.wsf9{word-spacing:10.272000pt;}
.wsc5{word-spacing:10.346667pt;}
.wsf8{word-spacing:10.368000pt;}
.wsc6{word-spacing:10.720000pt;}
.wsff{word-spacing:10.944000pt;}
.ws97{word-spacing:10.986667pt;}
.ws10{word-spacing:11.040000pt;}
.ws11{word-spacing:11.136000pt;}
.ws11a{word-spacing:11.328000pt;}
.ws67{word-spacing:11.413333pt;}
.ws116{word-spacing:11.616000pt;}
.ws15{word-spacing:11.856000pt;}
.wsa4{word-spacing:12.160000pt;}
.ws82{word-spacing:12.533333pt;}
.ws9b{word-spacing:12.586667pt;}
.ws100{word-spacing:12.624000pt;}
.ws118{word-spacing:14.064000pt;}
.ws99{word-spacing:14.666667pt;}
.wsf{word-spacing:14.688000pt;}
.ws98{word-spacing:14.773333pt;}
.ws16{word-spacing:16.896000pt;}
.ws119{word-spacing:20.304000pt;}
.ws126{word-spacing:22.032000pt;}
.ws64{word-spacing:23.413333pt;}
.ws86{word-spacing:28.160000pt;}
._9{margin-left:-9.862933pt;}
._f{margin-left:-8.819733pt;}
._8{margin-left:-7.854400pt;}
._d{margin-left:-6.485333pt;}
._3{margin-left:-4.714667pt;}
._7{margin-left:-3.645867pt;}
._4{margin-left:-2.337600pt;}
._0{margin-left:-1.187733pt;}
._1{width:1.006400pt;}
._2{width:2.656533pt;}
._e{width:3.589333pt;}
._b{width:4.960000pt;}
._c{width:6.709333pt;}
._a{width:8.518933pt;}
._6{width:10.307733pt;}
._11{width:11.386667pt;}
._10{width:12.314667pt;}
._5{width:32.328000pt;}
._12{width:38.318400pt;}
.fs9{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y39{bottom:63.299600pt;}
.y3a{bottom:66.702267pt;}
.ye8{bottom:100.269067pt;}
.y118{bottom:100.295867pt;}
.ya0{bottom:100.514400pt;}
.y69{bottom:100.514533pt;}
.yb{bottom:104.182267pt;}
.y2a{bottom:104.189067pt;}
.ya{bottom:116.979067pt;}
.ye7{bottom:118.941067pt;}
.y117{bottom:118.967867pt;}
.y140{bottom:119.101200pt;}
.yb9{bottom:119.175867pt;}
.y9f{bottom:119.181067pt;}
.y68{bottom:119.181200pt;}
.y29{bottom:122.855733pt;}
.y9{bottom:129.775867pt;}
.ye6{bottom:137.613067pt;}
.y116{bottom:137.639867pt;}
.y13f{bottom:137.773200pt;}
.y9e{bottom:137.847733pt;}
.y67{bottom:137.847867pt;}
.y28{bottom:141.522400pt;}
.y8{bottom:142.575867pt;}
.ye5{bottom:156.285067pt;}
.y115{bottom:156.311867pt;}
.y13e{bottom:156.445200pt;}
.y9d{bottom:156.514400pt;}
.y66{bottom:156.514533pt;}
.y27{bottom:160.189067pt;}
.yb8{bottom:161.359467pt;}
.y72{bottom:168.456533pt;}
.ye4{bottom:174.957067pt;}
.y114{bottom:174.983867pt;}
.y13d{bottom:175.117200pt;}
.y9c{bottom:175.181067pt;}
.y65{bottom:175.181200pt;}
.y26{bottom:178.855733pt;}
.y36{bottom:180.842133pt;}
.ye3{bottom:193.629067pt;}
.y113{bottom:193.655867pt;}
.y13c{bottom:193.789200pt;}
.yb7{bottom:193.842533pt;}
.y9b{bottom:193.847733pt;}
.y64{bottom:193.847867pt;}
.y35{bottom:196.838133pt;}
.y71{bottom:197.165333pt;}
.y25{bottom:197.522400pt;}
.ya6{bottom:203.186400pt;}
.ya4{bottom:209.614667pt;}
.ye2{bottom:212.301067pt;}
.y112{bottom:212.327867pt;}
.y13b{bottom:212.461200pt;}
.yb6{bottom:212.509200pt;}
.y9a{bottom:212.514400pt;}
.y63{bottom:212.514533pt;}
.y34{bottom:212.834133pt;}
.y24{bottom:216.189067pt;}
.ya5{bottom:220.790400pt;}
.ya8{bottom:223.298533pt;}
.ya3{bottom:227.218667pt;}
.y33{bottom:228.830133pt;}
.ye1{bottom:230.973067pt;}
.y111{bottom:230.999867pt;}
.y13a{bottom:231.133200pt;}
.yb5{bottom:231.175867pt;}
.y99{bottom:231.181067pt;}
.y62{bottom:231.181200pt;}
.y23{bottom:234.855733pt;}
.ya7{bottom:240.902533pt;}
.ya2{bottom:244.822667pt;}
.y32{bottom:244.826133pt;}
.ye0{bottom:249.645067pt;}
.y110{bottom:249.671867pt;}
.y139{bottom:249.805200pt;}
.yb4{bottom:249.842533pt;}
.y98{bottom:249.847733pt;}
.y61{bottom:249.847867pt;}
.y22{bottom:253.522400pt;}
.y31{bottom:260.822133pt;}
.ya1{bottom:262.426667pt;}
.ydf{bottom:268.317067pt;}
.y10f{bottom:268.343867pt;}
.y138{bottom:268.477200pt;}
.y97{bottom:268.514400pt;}
.y60{bottom:268.514533pt;}
.y21{bottom:272.189067pt;}
.y30{bottom:276.818133pt;}
.y146{bottom:286.978533pt;}
.yde{bottom:286.989067pt;}
.y10e{bottom:287.015867pt;}
.y137{bottom:287.149200pt;}
.y96{bottom:287.181067pt;}
.y5f{bottom:287.181200pt;}
.y20{bottom:290.855733pt;}
.yb3{bottom:292.026133pt;}
.y2f{bottom:292.814133pt;}
.y145{bottom:305.650533pt;}
.ydd{bottom:305.661067pt;}
.y10d{bottom:305.687867pt;}
.y136{bottom:305.821200pt;}
.y95{bottom:305.847733pt;}
.y5e{bottom:305.847867pt;}
.y1f{bottom:309.522400pt;}
.y2e{bottom:323.930133pt;}
.y144{bottom:324.322533pt;}
.ydc{bottom:324.333067pt;}
.y10c{bottom:324.359867pt;}
.y135{bottom:324.493200pt;}
.yb2{bottom:324.509200pt;}
.y94{bottom:324.514400pt;}
.y5d{bottom:324.514533pt;}
.y1e{bottom:328.189067pt;}
.y2d{bottom:339.930133pt;}
.y143{bottom:342.994533pt;}
.ydb{bottom:343.005067pt;}
.y10b{bottom:343.031867pt;}
.y134{bottom:343.165200pt;}
.y93{bottom:343.181067pt;}
.y5c{bottom:343.181200pt;}
.y1d{bottom:346.855733pt;}
.y2c{bottom:355.930133pt;}
.y142{bottom:361.666533pt;}
.yda{bottom:361.677067pt;}
.y10a{bottom:361.703867pt;}
.y133{bottom:361.837200pt;}
.y92{bottom:361.847733pt;}
.y5b{bottom:361.847867pt;}
.y1c{bottom:365.522400pt;}
.yb1{bottom:366.692800pt;}
.y2b{bottom:371.930133pt;}
.y141{bottom:380.338533pt;}
.yd9{bottom:380.349067pt;}
.y109{bottom:380.375867pt;}
.y132{bottom:380.509200pt;}
.y91{bottom:380.514400pt;}
.y5a{bottom:380.514533pt;}
.y1b{bottom:384.189067pt;}
.y131{bottom:399.010533pt;}
.yd8{bottom:399.021067pt;}
.y108{bottom:399.047867pt;}
.yb0{bottom:399.175867pt;}
.y90{bottom:399.181067pt;}
.y59{bottom:399.181200pt;}
.y1a{bottom:413.995200pt;}
.y130{bottom:417.682533pt;}
.yd7{bottom:417.693067pt;}
.y107{bottom:417.719867pt;}
.y58{bottom:417.847867pt;}
.y12f{bottom:436.354533pt;}
.yd6{bottom:436.365067pt;}
.y106{bottom:436.391867pt;}
.y8f{bottom:436.514400pt;}
.y57{bottom:436.514533pt;}
.yaf{bottom:441.359467pt;}
.y12e{bottom:455.026533pt;}
.yd5{bottom:455.037067pt;}
.y105{bottom:455.063867pt;}
.y8e{bottom:455.181067pt;}
.y56{bottom:455.181200pt;}
.y12d{bottom:473.698533pt;}
.yd4{bottom:473.709067pt;}
.y104{bottom:473.735867pt;}
.y8d{bottom:473.847733pt;}
.y55{bottom:473.847867pt;}
.y12c{bottom:492.370533pt;}
.yd3{bottom:492.381067pt;}
.y103{bottom:492.407867pt;}
.y54{bottom:492.514533pt;}
.y19{bottom:496.913733pt;}
.yae{bottom:497.359467pt;}
.y8c{bottom:505.280800pt;}
.y12b{bottom:511.042533pt;}
.yd2{bottom:511.053067pt;}
.y102{bottom:511.079867pt;}
.y70{bottom:511.181200pt;}
.y53{bottom:523.123200pt;}
.y12a{bottom:529.714533pt;}
.yd1{bottom:529.725067pt;}
.y101{bottom:529.751867pt;}
.y6f{bottom:529.847867pt;}
.y18{bottom:533.371467pt;}
.y129{bottom:548.386533pt;}
.yd0{bottom:548.397067pt;}
.y100{bottom:548.423867pt;}
.y8b{bottom:548.514400pt;}
.y6e{bottom:548.514533pt;}
.y17{bottom:550.975467pt;}
.y52{bottom:551.832133pt;}
.yad{bottom:553.359467pt;}
.y128{bottom:567.058533pt;}
.ycf{bottom:567.069067pt;}
.yff{bottom:567.095867pt;}
.y158{bottom:567.143867pt;}
.y8a{bottom:567.181067pt;}
.y6d{bottom:567.181200pt;}
.y16{bottom:568.579467pt;}
.y127{bottom:585.730533pt;}
.yce{bottom:585.741067pt;}
.yfe{bottom:585.767867pt;}
.y157{bottom:585.815867pt;}
.y89{bottom:585.847733pt;}
.y6c{bottom:585.847867pt;}
.y15{bottom:586.183467pt;}
.y14{bottom:603.787467pt;}
.y126{bottom:604.402533pt;}
.ycd{bottom:604.413067pt;}
.yfd{bottom:604.439867pt;}
.y156{bottom:604.487867pt;}
.y88{bottom:604.514400pt;}
.y51{bottom:604.514533pt;}
.yac{bottom:609.721867pt;}
.y13{bottom:621.391467pt;}
.y125{bottom:623.074533pt;}
.ycc{bottom:623.085067pt;}
.yfc{bottom:623.111867pt;}
.y155{bottom:623.159867pt;}
.y87{bottom:623.181067pt;}
.y50{bottom:623.181200pt;}
.yab{bottom:635.947600pt;}
.y12{bottom:638.995467pt;}
.y124{bottom:641.746533pt;}
.ycb{bottom:641.757067pt;}
.yfb{bottom:641.783867pt;}
.y154{bottom:641.831867pt;}
.y86{bottom:641.847733pt;}
.y4f{bottom:641.847867pt;}
.y11{bottom:656.599467pt;}
.y123{bottom:660.418533pt;}
.yca{bottom:660.429067pt;}
.yfa{bottom:660.455867pt;}
.y153{bottom:660.503867pt;}
.y85{bottom:660.514400pt;}
.y4e{bottom:660.514533pt;}
.y10{bottom:674.203467pt;}
.y122{bottom:679.090533pt;}
.yc9{bottom:679.101067pt;}
.yf9{bottom:679.127867pt;}
.y152{bottom:679.175867pt;}
.y84{bottom:679.181067pt;}
.y4d{bottom:679.181200pt;}
.yf{bottom:691.807467pt;}
.y6b{bottom:691.947600pt;}
.y121{bottom:697.762533pt;}
.yc8{bottom:697.773067pt;}
.yf8{bottom:697.799867pt;}
.y83{bottom:697.847733pt;}
.y4c{bottom:697.847867pt;}
.ye{bottom:709.411467pt;}
.y120{bottom:716.434533pt;}
.yc7{bottom:716.445067pt;}
.yf7{bottom:716.471867pt;}
.y82{bottom:716.514400pt;}
.y4b{bottom:716.514533pt;}
.y151{bottom:728.456533pt;}
.ya9{bottom:729.280933pt;}
.y11f{bottom:735.106533pt;}
.yc6{bottom:735.117067pt;}
.yf6{bottom:735.143867pt;}
.y81{bottom:735.181067pt;}
.y4a{bottom:735.181200pt;}
.yd{bottom:737.053600pt;}
.yaa{bottom:747.947600pt;}
.y11e{bottom:753.778533pt;}
.yc5{bottom:753.789067pt;}
.yf5{bottom:753.815867pt;}
.y80{bottom:753.847733pt;}
.y49{bottom:753.847867pt;}
.y150{bottom:757.165467pt;}
.y11d{bottom:772.450533pt;}
.yc4{bottom:772.461067pt;}
.yf4{bottom:772.487867pt;}
.y7f{bottom:772.514400pt;}
.y48{bottom:772.514533pt;}
.y11c{bottom:791.122533pt;}
.yc3{bottom:791.133067pt;}
.yf3{bottom:791.159867pt;}
.y7e{bottom:791.181067pt;}
.y47{bottom:791.181200pt;}
.y7{bottom:807.526000pt;}
.y11b{bottom:809.794533pt;}
.yc2{bottom:809.805067pt;}
.y14f{bottom:809.810533pt;}
.yf2{bottom:809.831867pt;}
.y7d{bottom:809.847733pt;}
.y46{bottom:809.847867pt;}
.y6{bottom:823.526000pt;}
.y11a{bottom:828.466533pt;}
.yc1{bottom:828.477067pt;}
.y14e{bottom:828.482533pt;}
.yf1{bottom:828.503867pt;}
.y7c{bottom:828.514400pt;}
.y45{bottom:828.514533pt;}
.y5{bottom:839.526000pt;}
.y119{bottom:847.138533pt;}
.yc0{bottom:847.149067pt;}
.y14d{bottom:847.154533pt;}
.yf0{bottom:847.175867pt;}
.y7b{bottom:847.181067pt;}
.y44{bottom:847.181200pt;}
.yef{bottom:865.810533pt;}
.ybf{bottom:865.821067pt;}
.y14c{bottom:865.826533pt;}
.y7a{bottom:865.847733pt;}
.y43{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.yee{bottom:884.482533pt;}
.ybe{bottom:884.493067pt;}
.y14b{bottom:884.498533pt;}
.y79{bottom:884.514400pt;}
.y42{bottom:884.514533pt;}
.yed{bottom:903.154533pt;}
.ybd{bottom:903.165067pt;}
.y14a{bottom:903.170533pt;}
.y78{bottom:903.181067pt;}
.y41{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y6a{bottom:915.947600pt;}
.yec{bottom:921.826533pt;}
.ybc{bottom:921.837067pt;}
.y149{bottom:921.842533pt;}
.y77{bottom:921.847733pt;}
.y40{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.yeb{bottom:940.498533pt;}
.ybb{bottom:940.509067pt;}
.y76{bottom:940.514400pt;}
.y3f{bottom:940.514533pt;}
.yea{bottom:959.170533pt;}
.y75{bottom:959.181067pt;}
.y3e{bottom:959.181200pt;}
.y148{bottom:968.802933pt;}
.ye9{bottom:977.842533pt;}
.y74{bottom:977.847733pt;}
.y3d{bottom:977.847867pt;}
.yc{bottom:986.502667pt;}
.yba{bottom:988.062933pt;}
.y73{bottom:996.514400pt;}
.y3c{bottom:996.514533pt;}
.y147{bottom:997.511867pt;}
.y38{bottom:1030.390667pt;}
.y37{bottom:1047.724000pt;}
.y3b{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h10{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:38.226562pt;}
.hf{height:38.273438pt;}
.he{height:38.507812pt;}
.hb{height:39.000000pt;}
.ha{height:41.929688pt;}
.h14{height:41.951021pt;}
.h15{height:42.079021pt;}
.h9{height:42.083333pt;}
.h12{height:43.333333pt;}
.h13{height:44.601562pt;}
.h11{height:46.291667pt;}
.hd{height:46.588542pt;}
.hc{height:50.500000pt;}
.h4{height:51.247396pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.167867pt;}
.xc{left:96.257467pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x4{left:266.834667pt;}
.xb{left:281.952800pt;}
.x3{left:352.045067pt;}
.x9{left:574.698933pt;}
.x8{left:594.026933pt;}
.x1{left:712.140000pt;}
}




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