
    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_fa0cb3d6cd67e56f3f0b2ea2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_ed00ee9a67341a740152f075.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_45150abea1108d21477b562f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.901855;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_505f7149be08139043265802.woff')format("woff");}.ff4{font-family:ff4;line-height:1.044000;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_7d858b52d90bbdecb9eaf631.woff')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_f2a53c29eeec98ee66a87adb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_d1ad2b0080b4661e849ecb95.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006836;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_f8c332512359f01168debdbe.woff')format("woff");}.ff8{font-family:ff8;line-height:0.810000;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_b9e7ebccc7d01cf687bd3c3e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.044000;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_0bf3d5c73ced2db62a546bcc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.810000;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_a292afb0b9e61d6ec5d4b4b4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_6d676405d30776196149a4fd.woff')format("woff");}.ffc{font-family:ffc;line-height:1.044000;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_0d2a0822fcb3d07ba7f3646c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.891113;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:15.984000px;}
.v3{vertical-align:19.979400px;}
.v1{vertical-align:23.976000px;}
.ls10{letter-spacing:-5.328000px;}
.ls9{letter-spacing:-4.968000px;}
.ls11{letter-spacing:-3.840000px;}
.ls1{letter-spacing:-2.346000px;}
.ls0{letter-spacing:-1.632000px;}
.ls2{letter-spacing:-1.326000px;}
.ls13{letter-spacing:-1.080000px;}
.ls16{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.528000px;}
.lse{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.252000px;}
.ls4{letter-spacing:-0.192000px;}
.ls7{letter-spacing:-0.162000px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.006000px;}
.lsd{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.780000px;}
.lsf{letter-spacing:0.815400px;}
.lsb{letter-spacing:0.840000px;}
.lsa{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.749600px;}
.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;}
}
.ws66{word-spacing:-21.000000px;}
.ws7e{word-spacing:-15.780000px;}
.ws7f{word-spacing:-15.240000px;}
.ws7{word-spacing:-15.000000px;}
.wsa4{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.338000px;}
.ws3{word-spacing:-12.960000px;}
.wsf2{word-spacing:-12.288000px;}
.ws1{word-spacing:-12.096000px;}
.ws2{word-spacing:-12.000000px;}
.ws12d{word-spacing:-11.472000px;}
.ws12e{word-spacing:-10.992000px;}
.wsbf{word-spacing:-8.745000px;}
.ws67{word-spacing:-8.532000px;}
.wsb1{word-spacing:-8.160000px;}
.wsb8{word-spacing:-6.996000px;}
.wsb0{word-spacing:-6.672000px;}
.ws147{word-spacing:-5.040000px;}
.wsd7{word-spacing:-3.900000px;}
.ws7c{word-spacing:-3.240000px;}
.ws54{word-spacing:-3.000000px;}
.ws14a{word-spacing:-2.832000px;}
.ws2b{word-spacing:-2.760000px;}
.wse2{word-spacing:-2.700000px;}
.ws2a{word-spacing:-2.640000px;}
.wse6{word-spacing:-2.580000px;}
.ws10c{word-spacing:-2.544000px;}
.wsd{word-spacing:-2.484000px;}
.wsa8{word-spacing:-2.460000px;}
.ws1c{word-spacing:-2.280000px;}
.ws108{word-spacing:-2.256000px;}
.ws49{word-spacing:-2.100000px;}
.ws120{word-spacing:-1.968000px;}
.ws4c{word-spacing:-1.920000px;}
.ws83{word-spacing:-1.860000px;}
.ws101{word-spacing:-1.824000px;}
.ws65{word-spacing:-1.776000px;}
.ws17{word-spacing:-1.740000px;}
.ws118{word-spacing:-1.728000px;}
.ws122{word-spacing:-1.680000px;}
.wsbd{word-spacing:-1.620000px;}
.ws145{word-spacing:-1.536000px;}
.ws14{word-spacing:-1.512000px;}
.ws8e{word-spacing:-1.440000px;}
.ws2f{word-spacing:-1.380000px;}
.ws76{word-spacing:-1.344000px;}
.ws4a{word-spacing:-1.320000px;}
.ws75{word-spacing:-1.296000px;}
.ws74{word-spacing:-1.200000px;}
.wse9{word-spacing:-1.140000px;}
.ws79{word-spacing:-1.080000px;}
.ws125{word-spacing:-1.008000px;}
.ws80{word-spacing:-0.972000px;}
.ws141{word-spacing:-0.960000px;}
.ws148{word-spacing:-0.912000px;}
.ws8d{word-spacing:-0.840000px;}
.ws88{word-spacing:-0.780000px;}
.ws95{word-spacing:-0.720000px;}
.wsbb{word-spacing:-0.702000px;}
.ws135{word-spacing:-0.672000px;}
.wsfa{word-spacing:-0.660000px;}
.wsdc{word-spacing:-0.576000px;}
.wse0{word-spacing:-0.540000px;}
.wsb7{word-spacing:-0.486000px;}
.wsc7{word-spacing:-0.480000px;}
.ws11{word-spacing:-0.432000px;}
.ws23{word-spacing:-0.420000px;}
.wsa{word-spacing:-0.306000px;}
.wsc0{word-spacing:-0.288000px;}
.ws9f{word-spacing:-0.240000px;}
.ws116{word-spacing:-0.192000px;}
.wsd4{word-spacing:-0.180000px;}
.ws132{word-spacing:-0.096000px;}
.ws55{word-spacing:-0.060000px;}
.ws4{word-spacing:-0.054000px;}
.ws144{word-spacing:-0.048000px;}
.ws32{word-spacing:-0.045000px;}
.ws0{word-spacing:-0.041976px;}
.ws8{word-spacing:0.000000px;}
.ws143{word-spacing:0.048000px;}
.ws21{word-spacing:0.120000px;}
.ws13{word-spacing:0.162000px;}
.ws61{word-spacing:0.180000px;}
.ws12c{word-spacing:0.192000px;}
.wsb{word-spacing:0.252000px;}
.ws12{word-spacing:0.270000px;}
.wsa5{word-spacing:0.324000px;}
.ws112{word-spacing:0.336000px;}
.ws115{word-spacing:0.384000px;}
.ws44{word-spacing:0.420000px;}
.ws6e{word-spacing:0.432000px;}
.ws5{word-spacing:0.486000px;}
.ws72{word-spacing:0.528000px;}
.ws30{word-spacing:0.540000px;}
.ws48{word-spacing:0.600000px;}
.ws9{word-spacing:0.714000px;}
.wse3{word-spacing:0.720000px;}
.ws14c{word-spacing:0.768000px;}
.ws60{word-spacing:0.780000px;}
.wsbc{word-spacing:0.810000px;}
.ws123{word-spacing:0.864000px;}
.ws13f{word-spacing:0.912000px;}
.ws10{word-spacing:0.918000px;}
.ws59{word-spacing:0.960000px;}
.ws121{word-spacing:1.056000px;}
.wse{word-spacing:1.080000px;}
.ws5a{word-spacing:1.140000px;}
.wsfc{word-spacing:1.152000px;}
.wsc5{word-spacing:1.260000px;}
.ws24{word-spacing:1.320000px;}
.ws22{word-spacing:1.380000px;}
.ws136{word-spacing:1.392000px;}
.wscb{word-spacing:1.440000px;}
.wsa0{word-spacing:1.500000px;}
.ws25{word-spacing:1.560000px;}
.ws12f{word-spacing:1.584000px;}
.wsc{word-spacing:1.620000px;}
.ws113{word-spacing:1.680000px;}
.ws28{word-spacing:1.740000px;}
.ws146{word-spacing:1.776000px;}
.ws77{word-spacing:1.782000px;}
.ws31{word-spacing:1.814400px;}
.ws139{word-spacing:1.872000px;}
.wsf{word-spacing:1.944000px;}
.ws10b{word-spacing:1.968000px;}
.wsa9{word-spacing:2.040000px;}
.wsd9{word-spacing:2.100000px;}
.ws51{word-spacing:2.160000px;}
.wsd5{word-spacing:2.220000px;}
.ws7b{word-spacing:2.280000px;}
.ws82{word-spacing:2.400000px;}
.wsbe{word-spacing:2.430000px;}
.ws47{word-spacing:2.460000px;}
.wsac{word-spacing:2.520000px;}
.ws73{word-spacing:2.544000px;}
.ws15{word-spacing:2.580000px;}
.wsd3{word-spacing:2.640000px;}
.ws11a{word-spacing:2.688000px;}
.ws16{word-spacing:2.700000px;}
.ws2e{word-spacing:2.760000px;}
.ws149{word-spacing:2.832000px;}
.ws128{word-spacing:2.880000px;}
.ws5e{word-spacing:3.000000px;}
.ws114{word-spacing:3.024000px;}
.ws4e{word-spacing:3.060000px;}
.ws138{word-spacing:3.072000px;}
.ws56{word-spacing:3.120000px;}
.ws64{word-spacing:3.240000px;}
.ws13d{word-spacing:3.264000px;}
.wsd6{word-spacing:3.300000px;}
.ws137{word-spacing:3.360000px;}
.ws142{word-spacing:3.408000px;}
.ws46{word-spacing:3.420000px;}
.ws4d{word-spacing:3.480000px;}
.ws52{word-spacing:3.540000px;}
.wse7{word-spacing:3.600000px;}
.wsb6{word-spacing:3.618000px;}
.ws45{word-spacing:3.660000px;}
.ws81{word-spacing:3.720000px;}
.ws13a{word-spacing:3.744000px;}
.ws2c{word-spacing:3.780000px;}
.ws14b{word-spacing:3.792000px;}
.wse4{word-spacing:3.840000px;}
.wsf0{word-spacing:3.960000px;}
.ws20{word-spacing:4.020000px;}
.ws107{word-spacing:4.032000px;}
.wsa6{word-spacing:4.080000px;}
.ws7d{word-spacing:4.140000px;}
.ws86{word-spacing:4.200000px;}
.wsfe{word-spacing:4.224000px;}
.ws126{word-spacing:4.272000px;}
.ws14d{word-spacing:4.320000px;}
.ws131{word-spacing:4.368000px;}
.wsd2{word-spacing:4.440000px;}
.wse8{word-spacing:4.500000px;}
.ws11e{word-spacing:4.512000px;}
.ws71{word-spacing:4.560000px;}
.ws10d{word-spacing:4.608000px;}
.ws26{word-spacing:4.620000px;}
.wsf1{word-spacing:4.698000px;}
.ws18{word-spacing:4.860000px;}
.wsda{word-spacing:4.920000px;}
.ws109{word-spacing:4.992000px;}
.ws9c{word-spacing:5.100000px;}
.ws133{word-spacing:5.136000px;}
.wsdd{word-spacing:5.160000px;}
.ws129{word-spacing:5.184000px;}
.ws110{word-spacing:5.328000px;}
.ws27{word-spacing:5.340000px;}
.wsff{word-spacing:5.424000px;}
.ws8f{word-spacing:5.460000px;}
.ws13b{word-spacing:5.472000px;}
.wscc{word-spacing:5.520000px;}
.wsdb{word-spacing:5.640000px;}
.wsa7{word-spacing:5.760000px;}
.wscf{word-spacing:5.880000px;}
.wse5{word-spacing:6.120000px;}
.wsc8{word-spacing:6.180000px;}
.ws1e{word-spacing:6.240000px;}
.ws117{word-spacing:6.288000px;}
.wsc9{word-spacing:6.420000px;}
.ws102{word-spacing:6.432000px;}
.ws12b{word-spacing:6.576000px;}
.ws1d{word-spacing:6.600000px;}
.ws10a{word-spacing:6.672000px;}
.wsfb{word-spacing:6.720000px;}
.ws62{word-spacing:6.780000px;}
.ws1a{word-spacing:6.840000px;}
.ws1f{word-spacing:6.900000px;}
.ws6d{word-spacing:6.912000px;}
.ws84{word-spacing:6.960000px;}
.wsf5{word-spacing:7.140000px;}
.ws11f{word-spacing:7.152000px;}
.ws78{word-spacing:7.248000px;}
.wsf6{word-spacing:7.320000px;}
.ws89{word-spacing:7.380000px;}
.wsd0{word-spacing:7.440000px;}
.ws106{word-spacing:7.536000px;}
.ws127{word-spacing:7.680000px;}
.wsad{word-spacing:7.800000px;}
.ws11b{word-spacing:7.920000px;}
.wsab{word-spacing:7.980000px;}
.ws119{word-spacing:8.016000px;}
.ws6a{word-spacing:8.064000px;}
.ws5b{word-spacing:8.100000px;}
.ws130{word-spacing:8.160000px;}
.wsaf{word-spacing:8.220000px;}
.ws90{word-spacing:8.280000px;}
.ws87{word-spacing:8.340000px;}
.ws100{word-spacing:8.352000px;}
.ws124{word-spacing:8.448000px;}
.wsaa{word-spacing:8.580000px;}
.ws58{word-spacing:8.640000px;}
.wsfd{word-spacing:8.688000px;}
.wsc6{word-spacing:8.700000px;}
.ws19{word-spacing:8.760000px;}
.wsc2{word-spacing:9.060000px;}
.wse1{word-spacing:9.120000px;}
.wsce{word-spacing:9.180000px;}
.ws13c{word-spacing:9.264000px;}
.wsd8{word-spacing:9.480000px;}
.ws70{word-spacing:9.504000px;}
.ws4f{word-spacing:9.540000px;}
.ws104{word-spacing:9.552000px;}
.ws96{word-spacing:9.660000px;}
.ws50{word-spacing:9.720000px;}
.ws11c{word-spacing:9.840000px;}
.ws9e{word-spacing:9.900000px;}
.ws69{word-spacing:10.032000px;}
.ws53{word-spacing:10.140000px;}
.ws111{word-spacing:10.176000px;}
.ws1b{word-spacing:10.200000px;}
.ws8b{word-spacing:10.260000px;}
.ws85{word-spacing:10.440000px;}
.ws12a{word-spacing:10.464000px;}
.ws6f{word-spacing:10.512000px;}
.wscd{word-spacing:10.680000px;}
.wsea{word-spacing:10.800000px;}
.ws5c{word-spacing:10.920000px;}
.ws6b{word-spacing:10.944000px;}
.ws8a{word-spacing:10.980000px;}
.ws134{word-spacing:11.136000px;}
.ws98{word-spacing:11.160000px;}
.wsdf{word-spacing:11.220000px;}
.wseb{word-spacing:11.580000px;}
.ws2d{word-spacing:11.640000px;}
.ws11d{word-spacing:11.664000px;}
.wsed{word-spacing:11.820000px;}
.ws63{word-spacing:12.240000px;}
.wsef{word-spacing:12.300000px;}
.wsf7{word-spacing:12.360000px;}
.wsf9{word-spacing:12.420000px;}
.ws9a{word-spacing:12.540000px;}
.ws10e{word-spacing:12.576000px;}
.ws105{word-spacing:12.624000px;}
.wsa3{word-spacing:12.900000px;}
.ws5f{word-spacing:13.500000px;}
.wsca{word-spacing:13.560000px;}
.ws13e{word-spacing:13.680000px;}
.ws9d{word-spacing:13.800000px;}
.wsd1{word-spacing:13.860000px;}
.ws7a{word-spacing:13.920000px;}
.ws91{word-spacing:14.040000px;}
.ws57{word-spacing:14.340000px;}
.ws68{word-spacing:14.448000px;}
.ws99{word-spacing:14.460000px;}
.wsec{word-spacing:14.760000px;}
.wsf8{word-spacing:14.940000px;}
.ws29{word-spacing:15.180000px;}
.wsa1{word-spacing:15.240000px;}
.wsf4{word-spacing:15.360000px;}
.ws6c{word-spacing:15.984000px;}
.ws9b{word-spacing:17.040000px;}
.wsc1{word-spacing:17.280000px;}
.wsc4{word-spacing:17.580000px;}
.wsf3{word-spacing:17.700000px;}
.ws5d{word-spacing:17.940000px;}
.ws8c{word-spacing:18.120000px;}
.ws94{word-spacing:18.480000px;}
.ws4b{word-spacing:18.960000px;}
.wsde{word-spacing:19.380000px;}
.ws93{word-spacing:19.440000px;}
.wsa2{word-spacing:19.560000px;}
.wsc3{word-spacing:21.000000px;}
.wsae{word-spacing:21.060000px;}
.ws92{word-spacing:22.260000px;}
.wsee{word-spacing:24.360000px;}
.ws140{word-spacing:27.792000px;}
.ws97{word-spacing:28.620000px;}
.ws103{word-spacing:56.160000px;}
.ws38{word-spacing:57.840000px;}
.ws34{word-spacing:65.472000px;}
.ws3b{word-spacing:65.664000px;}
.ws3c{word-spacing:66.336000px;}
.ws3e{word-spacing:67.680000px;}
.ws3f{word-spacing:71.328000px;}
.ws41{word-spacing:79.200000px;}
.ws42{word-spacing:89.040000px;}
.ws10f{word-spacing:92.064000px;}
.ws3d{word-spacing:101.904000px;}
.ws40{word-spacing:118.992000px;}
.ws37{word-spacing:120.144000px;}
.ws43{word-spacing:124.368000px;}
.ws39{word-spacing:147.216000px;}
.ws36{word-spacing:155.184000px;}
.ws35{word-spacing:158.928000px;}
.ws3a{word-spacing:160.272000px;}
.wsb9{word-spacing:179.136000px;}
.ws33{word-spacing:192.288000px;}
.wsb3{word-spacing:209.136000px;}
.wsb5{word-spacing:211.824000px;}
.wsba{word-spacing:298.224000px;}
.wsb4{word-spacing:342.192000px;}
.wsb2{word-spacing:347.520000px;}
._81{margin-left:-7.062000px;}
._5{margin-left:-6.038400px;}
._7{margin-left:-4.896000px;}
._0{margin-left:-3.733200px;}
._3{margin-left:-2.233800px;}
._2{margin-left:-1.020000px;}
._1{width:1.489200px;}
._4{width:2.743800px;}
._38{width:3.955800px;}
._8{width:5.340000px;}
._a{width:6.786000px;}
._3a{width:8.442000px;}
._7d{width:9.978000px;}
._7e{width:11.172000px;}
._39{width:12.900000px;}
._9{width:17.166000px;}
._7f{width:19.032000px;}
._80{width:24.258000px;}
._6{width:32.015400px;}
._40{width:35.184000px;}
._28{width:54.313800px;}
._1e{width:57.663000px;}
._b{width:60.345600px;}
._29{width:63.381600px;}
._24{width:72.336000px;}
._3f{width:79.152000px;}
._10{width:80.832000px;}
._c{width:82.250400px;}
._1c{width:85.152000px;}
._2d{width:87.264000px;}
._15{width:91.968000px;}
._33{width:93.984000px;}
._1a{width:95.461200px;}
._2c{width:98.329800px;}
._25{width:101.904000px;}
._31{width:104.905800px;}
._2f{width:109.680000px;}
._27{width:113.904000px;}
._16{width:114.960000px;}
._2e{width:117.862200px;}
._20{width:120.000000px;}
._2b{width:125.616000px;}
._1b{width:129.264000px;}
._11{width:135.888000px;}
._34{width:139.632000px;}
._30{width:145.296000px;}
._18{width:159.936000px;}
._1f{width:164.304000px;}
._26{width:168.816000px;}
._14{width:178.608000px;}
._3e{width:180.288000px;}
._d{width:187.776000px;}
._7c{width:191.136000px;}
._12{width:194.304000px;}
._2a{width:202.224000px;}
._6f{width:204.048000px;}
._71{width:205.369800px;}
._32{width:210.073800px;}
._6a{width:212.256000px;}
._6c{width:214.320000px;}
._17{width:216.576000px;}
._72{width:218.089800px;}
._35{width:219.312000px;}
._63{width:221.520000px;}
._46{width:222.912000px;}
._3d{width:224.496000px;}
._68{width:226.128000px;}
._54{width:227.161800px;}
._36{width:229.632000px;}
._13{width:231.264000px;}
._21{width:232.512000px;}
._74{width:233.734200px;}
._1d{width:235.248000px;}
._50{width:237.168000px;}
._58{width:238.486200px;}
._4f{width:239.616000px;}
._4a{width:241.632000px;}
._37{width:245.593800px;}
._67{width:247.968000px;}
._4b{width:249.168000px;}
._4e{width:251.136000px;}
._79{width:253.056000px;}
._5b{width:254.496000px;}
._45{width:257.136000px;}
._44{width:261.648000px;}
._49{width:263.136000px;}
._60{width:267.552000px;}
._51{width:269.136000px;}
._52{width:273.168000px;}
._5a{width:275.568000px;}
._78{width:278.748600px;}
._57{width:283.536000px;}
._43{width:287.136000px;}
._19{width:295.248000px;}
._7b{width:310.752000px;}
._5f{width:325.970400px;}
._5e{width:347.040000px;}
._5d{width:350.392200px;}
._65{width:354.376200px;}
._66{width:360.192000px;}
._53{width:376.128000px;}
._4c{width:377.520000px;}
._f{width:379.296000px;}
._73{width:381.840000px;}
._64{width:382.896000px;}
._4d{width:389.808000px;}
._47{width:390.864000px;}
._59{width:393.552000px;}
._6b{width:396.624000px;}
._70{width:400.401000px;}
._41{width:402.864000px;}
._69{width:404.160000px;}
._55{width:409.488000px;}
._56{width:410.511000px;}
._48{width:415.152000px;}
._61{width:416.208000px;}
._62{width:417.504000px;}
._6e{width:418.512000px;}
._76{width:425.449800px;}
._5c{width:428.160000px;}
._77{width:431.280000px;}
._75{width:434.928000px;}
._42{width:439.200000px;}
._6d{width:451.488000px;}
._23{width:464.352000px;}
._7a{width:471.120000px;}
._e{width:482.245200px;}
._3b{width:519.253200px;}
._22{width:532.633800px;}
._3c{width:559.872000px;}
.fc1{color:rgb(32,59,28);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.984000px;}
.fsb{font-size:34.980000px;}
.fs9{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:64.634850px;}
.y29{bottom:76.648200px;}
.y27{bottom:77.231700px;}
.ya0{bottom:113.811000px;}
.ycc{bottom:118.437750px;}
.y24{bottom:131.811000px;}
.ycb{bottom:134.409750px;}
.y91{bottom:149.245500px;}
.y23{bottom:149.811000px;}
.yca{bottom:150.381750px;}
.ye0{bottom:154.386450px;}
.y72{bottom:154.740450px;}
.yc9{bottom:166.353750px;}
.y90{bottom:167.241000px;}
.y22{bottom:167.811000px;}
.ydf{bottom:169.386450px;}
.ye1{bottom:169.398450px;}
.y71{bottom:170.724450px;}
.yc8{bottom:182.325750px;}
.ydd{bottom:185.378250px;}
.y21{bottom:185.811000px;}
.y104{bottom:185.811150px;}
.y70{bottom:186.708450px;}
.y95{bottom:189.006450px;}
.yc7{bottom:198.297750px;}
.ydc{bottom:200.378250px;}
.yde{bottom:200.382450px;}
.y6f{bottom:202.692450px;}
.y20{bottom:203.811000px;}
.y103{bottom:203.811150px;}
.y94{bottom:207.006450px;}
.yc6{bottom:214.269750px;}
.yda{bottom:216.362250px;}
.y6e{bottom:218.676450px;}
.y1f{bottom:221.811000px;}
.y102{bottom:221.811150px;}
.yc5{bottom:230.241750px;}
.yd9{bottom:231.362250px;}
.ydb{bottom:231.374250px;}
.y6d{bottom:234.660450px;}
.y93{bottom:238.462200px;}
.y1e{bottom:239.811000px;}
.y101{bottom:239.811150px;}
.yc4{bottom:246.213750px;}
.yd7{bottom:247.346250px;}
.y6c{bottom:250.644450px;}
.y92{bottom:256.457700px;}
.y1d{bottom:257.811000px;}
.y100{bottom:257.811150px;}
.yc3{bottom:262.185750px;}
.yd6{bottom:262.346250px;}
.yd8{bottom:262.358250px;}
.y6b{bottom:266.628450px;}
.y1c{bottom:275.811000px;}
.yff{bottom:275.811150px;}
.yc2{bottom:278.157750px;}
.yd4{bottom:278.330250px;}
.y6a{bottom:282.612450px;}
.yd3{bottom:293.330250px;}
.yd5{bottom:293.342250px;}
.y1b{bottom:293.811000px;}
.yfe{bottom:293.811150px;}
.yc1{bottom:294.129750px;}
.y69{bottom:298.596450px;}
.y9f{bottom:308.589000px;}
.yd2{bottom:309.314250px;}
.yc0{bottom:310.101750px;}
.y10e{bottom:310.847250px;}
.y1a{bottom:311.811000px;}
.yfd{bottom:311.811150px;}
.y68{bottom:314.580450px;}
.yd1{bottom:324.314250px;}
.ybf{bottom:326.073750px;}
.y19{bottom:329.811000px;}
.yfc{bottom:329.811150px;}
.y67{bottom:330.564450px;}
.yd0{bottom:340.298250px;}
.ybe{bottom:342.045750px;}
.y9e{bottom:343.456950px;}
.y66{bottom:346.548450px;}
.y18{bottom:347.811000px;}
.yfb{bottom:347.811150px;}
.ycf{bottom:355.298250px;}
.ybd{bottom:358.017750px;}
.y65{bottom:362.532450px;}
.y17{bottom:365.811000px;}
.yfa{bottom:365.811150px;}
.yce{bottom:370.298250px;}
.ybc{bottom:373.989750px;}
.y64{bottom:378.516450px;}
.y25{bottom:383.811000px;}
.yf9{bottom:383.811150px;}
.ybb{bottom:389.961750px;}
.ycd{bottom:397.981350px;}
.y16{bottom:401.811000px;}
.yf8{bottom:401.811150px;}
.yba{bottom:405.933750px;}
.y63{bottom:406.199400px;}
.y9d{bottom:419.811000px;}
.yf7{bottom:419.811150px;}
.yb9{bottom:421.905750px;}
.ye6{bottom:433.591950px;}
.y9c{bottom:437.811000px;}
.yf6{bottom:437.811150px;}
.yb8{bottom:437.877750px;}
.y62{bottom:443.431950px;}
.ye5{bottom:451.587450px;}
.yb7{bottom:453.849750px;}
.y9b{bottom:455.811000px;}
.yf5{bottom:455.811150px;}
.y61{bottom:459.415950px;}
.ye4{bottom:469.582950px;}
.yb6{bottom:469.821750px;}
.y15{bottom:473.811000px;}
.yf4{bottom:473.811150px;}
.y60{bottom:475.399950px;}
.yb5{bottom:485.793750px;}
.ye3{bottom:487.578450px;}
.y5f{bottom:491.383950px;}
.y9a{bottom:491.811000px;}
.yf3{bottom:491.811150px;}
.yb4{bottom:501.765750px;}
.ye2{bottom:505.573950px;}
.y5e{bottom:507.367950px;}
.y14{bottom:509.811000px;}
.yf2{bottom:509.811150px;}
.yb3{bottom:517.737750px;}
.y5d{bottom:523.351950px;}
.y99{bottom:527.811000px;}
.yf1{bottom:527.811150px;}
.yb2{bottom:533.709750px;}
.y5c{bottom:539.323950px;}
.y98{bottom:545.811000px;}
.yf0{bottom:545.811150px;}
.yb1{bottom:549.681750px;}
.y97{bottom:563.811000px;}
.yef{bottom:563.811150px;}
.yb0{bottom:565.653750px;}
.y5b{bottom:567.006900px;}
.yaf{bottom:581.625750px;}
.y10d{bottom:581.811000px;}
.yee{bottom:581.811150px;}
.y13{bottom:581.842500px;}
.y96{bottom:596.096850px;}
.yae{bottom:597.597750px;}
.y5a{bottom:599.811000px;}
.y44{bottom:599.811150px;}
.y12{bottom:599.838000px;}
.yad{bottom:613.569750px;}
.y59{bottom:617.811000px;}
.y43{bottom:617.811150px;}
.y11{bottom:617.833500px;}
.yac{bottom:629.541750px;}
.y58{bottom:635.811000px;}
.y42{bottom:635.811150px;}
.y10{bottom:635.829000px;}
.yab{bottom:645.513750px;}
.y57{bottom:653.811000px;}
.y41{bottom:653.811150px;}
.yf{bottom:653.824500px;}
.yaa{bottom:661.485750px;}
.y56{bottom:671.811000px;}
.y40{bottom:671.811150px;}
.ye{bottom:671.820000px;}
.ya9{bottom:677.457750px;}
.y55{bottom:689.811000px;}
.y3f{bottom:689.811150px;}
.yd{bottom:689.815500px;}
.ya8{bottom:693.429750px;}
.yc{bottom:707.811000px;}
.yed{bottom:707.811150px;}
.ya7{bottom:709.401750px;}
.ya6{bottom:725.373750px;}
.y54{bottom:725.811000px;}
.yec{bottom:725.811150px;}
.y3e{bottom:728.447250px;}
.yb{bottom:743.811000px;}
.yeb{bottom:743.811150px;}
.ya5{bottom:753.065700px;}
.y53{bottom:761.811000px;}
.yea{bottom:761.811150px;}
.ya4{bottom:771.061200px;}
.y3d{bottom:779.811000px;}
.ya3{bottom:789.056700px;}
.ye9{bottom:797.193000px;}
.y3c{bottom:797.811000px;}
.ya{bottom:803.679750px;}
.y3b{bottom:815.811000px;}
.ya2{bottom:815.830350px;}
.ye8{bottom:818.793000px;}
.y3a{bottom:833.811000px;}
.ya1{bottom:833.825850px;}
.y9{bottom:851.442150px;}
.y39{bottom:851.811000px;}
.ye7{bottom:853.148850px;}
.y38{bottom:869.811000px;}
.y8{bottom:878.442150px;}
.y8f{bottom:881.616750px;}
.y110{bottom:884.721750px;}
.y80{bottom:886.715100px;}
.y37{bottom:887.811000px;}
.y52{bottom:890.447250px;}
.y8e{bottom:899.616750px;}
.y10f{bottom:902.717250px;}
.y7f{bottom:904.715100px;}
.y10c{bottom:904.847250px;}
.y7{bottom:905.442150px;}
.y36{bottom:905.811000px;}
.y8d{bottom:917.616750px;}
.y7e{bottom:922.715100px;}
.y111{bottom:922.847250px;}
.y6{bottom:923.442150px;}
.y35{bottom:923.811000px;}
.y10b{bottom:926.447250px;}
.y8c{bottom:935.616750px;}
.y7d{bottom:940.715100px;}
.y5{bottom:941.442150px;}
.y34{bottom:941.811000px;}
.y51{bottom:941.811150px;}
.y8b{bottom:953.616750px;}
.y7c{bottom:958.715100px;}
.y33{bottom:959.811000px;}
.y50{bottom:959.811150px;}
.y8a{bottom:971.616750px;}
.y7b{bottom:976.715100px;}
.y4{bottom:977.440650px;}
.y32{bottom:977.811000px;}
.y4f{bottom:977.811150px;}
.y89{bottom:989.616750px;}
.y7a{bottom:994.715100px;}
.y10a{bottom:995.811000px;}
.y4e{bottom:995.811150px;}
.y88{bottom:1007.616750px;}
.y79{bottom:1012.715100px;}
.y109{bottom:1013.811000px;}
.y4d{bottom:1013.811150px;}
.y31{bottom:1014.491400px;}
.y3{bottom:1017.039300px;}
.y87{bottom:1025.616750px;}
.y78{bottom:1030.715100px;}
.y108{bottom:1031.811000px;}
.y4c{bottom:1031.811150px;}
.y86{bottom:1043.616750px;}
.y2{bottom:1047.639300px;}
.y77{bottom:1048.715100px;}
.y30{bottom:1048.847250px;}
.y107{bottom:1049.811000px;}
.y4b{bottom:1049.811150px;}
.y85{bottom:1061.616750px;}
.y76{bottom:1066.715100px;}
.y106{bottom:1067.811000px;}
.y4a{bottom:1067.811150px;}
.y1{bottom:1078.239300px;}
.y84{bottom:1079.616750px;}
.y75{bottom:1084.715100px;}
.y105{bottom:1085.811000px;}
.y49{bottom:1085.811150px;}
.y83{bottom:1097.616750px;}
.y2f{bottom:1103.811000px;}
.y48{bottom:1103.811150px;}
.y2e{bottom:1121.811000px;}
.y47{bottom:1121.811150px;}
.y74{bottom:1123.975050px;}
.y82{bottom:1136.880750px;}
.y2d{bottom:1139.811000px;}
.y46{bottom:1139.811150px;}
.y73{bottom:1154.730900px;}
.y2c{bottom:1157.811000px;}
.y45{bottom:1157.811150px;}
.y81{bottom:1159.132650px;}
.y2a{bottom:1193.649450px;}
.y2b{bottom:1193.653500px;}
.y26{bottom:1193.816550px;}
.he{height:30.013200px;}
.h11{height:32.531250px;}
.h5{height:33.328125px;}
.h4{height:33.348000px;}
.h12{height:33.351562px;}
.h15{height:34.949719px;}
.h16{height:35.396761px;}
.hd{height:35.730000px;}
.h6{height:35.735400px;}
.h7{height:37.520508px;}
.h14{height:37.968750px;}
.h8{height:39.258000px;}
.h13{height:40.664062px;}
.hb{height:41.689453px;}
.ha{height:42.714844px;}
.h17{height:44.284351px;}
.hc{height:47.460938px;}
.h10{height:50.027344px;}
.h3{height:55.642465px;}
.hf{height:56.953125px;}
.h9{height:58.365234px;}
.h2{height:70.872070px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x14{left:79.102650px;}
.x12{left:93.539400px;}
.xa{left:110.551200px;}
.xe{left:113.098050px;}
.xf{left:122.478000px;}
.xd{left:126.730050px;}
.x15{left:228.334650px;}
.x16{left:232.199100px;}
.x17{left:236.039100px;}
.x24{left:251.376750px;}
.x2{left:264.764250px;}
.x18{left:312.983100px;}
.x3{left:316.443750px;}
.x19{left:406.523100px;}
.x1a{left:409.319100px;}
.x1b{left:416.195100px;}
.x4{left:425.966550px;}
.x8{left:440.075400px;}
.x9{left:457.085400px;}
.xc{left:474.091050px;}
.x5{left:481.060500px;}
.x13{left:491.101050px;}
.x1c{left:517.067100px;}
.x1d{left:519.863100px;}
.xb{left:526.463700px;}
.x6{left:606.331050px;}
.x1f{left:619.523100px;}
.x1e{left:627.611100px;}
.x20{left:637.308750px;}
.x7{left:663.015900px;}
.x10{left:708.979500px;}
.x22{left:728.940750px;}
.x21{left:731.808750px;}
.x23{left:741.480750px;}
.x11{left:762.922650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v3{vertical-align:17.759467pt;}
.v1{vertical-align:21.312000pt;}
.ls10{letter-spacing:-4.736000pt;}
.ls9{letter-spacing:-4.416000pt;}
.ls11{letter-spacing:-3.413333pt;}
.ls1{letter-spacing:-2.085333pt;}
.ls0{letter-spacing:-1.450667pt;}
.ls2{letter-spacing:-1.178667pt;}
.ls13{letter-spacing:-0.960000pt;}
.ls16{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.469333pt;}
.lse{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.224000pt;}
.ls4{letter-spacing:-0.170667pt;}
.ls7{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.005333pt;}
.lsd{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.693333pt;}
.lsf{letter-spacing:0.724800pt;}
.lsb{letter-spacing:0.746667pt;}
.lsa{letter-spacing:0.960000pt;}
.ls8{letter-spacing:1.555200pt;}
.ws66{word-spacing:-18.666667pt;}
.ws7e{word-spacing:-14.026667pt;}
.ws7f{word-spacing:-13.546667pt;}
.ws7{word-spacing:-13.333333pt;}
.wsa4{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.856000pt;}
.ws3{word-spacing:-11.520000pt;}
.wsf2{word-spacing:-10.922667pt;}
.ws1{word-spacing:-10.752000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws12d{word-spacing:-10.197333pt;}
.ws12e{word-spacing:-9.770667pt;}
.wsbf{word-spacing:-7.773333pt;}
.ws67{word-spacing:-7.584000pt;}
.wsb1{word-spacing:-7.253333pt;}
.wsb8{word-spacing:-6.218667pt;}
.wsb0{word-spacing:-5.930667pt;}
.ws147{word-spacing:-4.480000pt;}
.wsd7{word-spacing:-3.466667pt;}
.ws7c{word-spacing:-2.880000pt;}
.ws54{word-spacing:-2.666667pt;}
.ws14a{word-spacing:-2.517333pt;}
.ws2b{word-spacing:-2.453333pt;}
.wse2{word-spacing:-2.400000pt;}
.ws2a{word-spacing:-2.346667pt;}
.wse6{word-spacing:-2.293333pt;}
.ws10c{word-spacing:-2.261333pt;}
.wsd{word-spacing:-2.208000pt;}
.wsa8{word-spacing:-2.186667pt;}
.ws1c{word-spacing:-2.026667pt;}
.ws108{word-spacing:-2.005333pt;}
.ws49{word-spacing:-1.866667pt;}
.ws120{word-spacing:-1.749333pt;}
.ws4c{word-spacing:-1.706667pt;}
.ws83{word-spacing:-1.653333pt;}
.ws101{word-spacing:-1.621333pt;}
.ws65{word-spacing:-1.578667pt;}
.ws17{word-spacing:-1.546667pt;}
.ws118{word-spacing:-1.536000pt;}
.ws122{word-spacing:-1.493333pt;}
.wsbd{word-spacing:-1.440000pt;}
.ws145{word-spacing:-1.365333pt;}
.ws14{word-spacing:-1.344000pt;}
.ws8e{word-spacing:-1.280000pt;}
.ws2f{word-spacing:-1.226667pt;}
.ws76{word-spacing:-1.194667pt;}
.ws4a{word-spacing:-1.173333pt;}
.ws75{word-spacing:-1.152000pt;}
.ws74{word-spacing:-1.066667pt;}
.wse9{word-spacing:-1.013333pt;}
.ws79{word-spacing:-0.960000pt;}
.ws125{word-spacing:-0.896000pt;}
.ws80{word-spacing:-0.864000pt;}
.ws141{word-spacing:-0.853333pt;}
.ws148{word-spacing:-0.810667pt;}
.ws8d{word-spacing:-0.746667pt;}
.ws88{word-spacing:-0.693333pt;}
.ws95{word-spacing:-0.640000pt;}
.wsbb{word-spacing:-0.624000pt;}
.ws135{word-spacing:-0.597333pt;}
.wsfa{word-spacing:-0.586667pt;}
.wsdc{word-spacing:-0.512000pt;}
.wse0{word-spacing:-0.480000pt;}
.wsb7{word-spacing:-0.432000pt;}
.wsc7{word-spacing:-0.426667pt;}
.ws11{word-spacing:-0.384000pt;}
.ws23{word-spacing:-0.373333pt;}
.wsa{word-spacing:-0.272000pt;}
.wsc0{word-spacing:-0.256000pt;}
.ws9f{word-spacing:-0.213333pt;}
.ws116{word-spacing:-0.170667pt;}
.wsd4{word-spacing:-0.160000pt;}
.ws132{word-spacing:-0.085333pt;}
.ws55{word-spacing:-0.053333pt;}
.ws4{word-spacing:-0.048000pt;}
.ws144{word-spacing:-0.042667pt;}
.ws32{word-spacing:-0.040000pt;}
.ws0{word-spacing:-0.037312pt;}
.ws8{word-spacing:0.000000pt;}
.ws143{word-spacing:0.042667pt;}
.ws21{word-spacing:0.106667pt;}
.ws13{word-spacing:0.144000pt;}
.ws61{word-spacing:0.160000pt;}
.ws12c{word-spacing:0.170667pt;}
.wsb{word-spacing:0.224000pt;}
.ws12{word-spacing:0.240000pt;}
.wsa5{word-spacing:0.288000pt;}
.ws112{word-spacing:0.298667pt;}
.ws115{word-spacing:0.341333pt;}
.ws44{word-spacing:0.373333pt;}
.ws6e{word-spacing:0.384000pt;}
.ws5{word-spacing:0.432000pt;}
.ws72{word-spacing:0.469333pt;}
.ws30{word-spacing:0.480000pt;}
.ws48{word-spacing:0.533333pt;}
.ws9{word-spacing:0.634667pt;}
.wse3{word-spacing:0.640000pt;}
.ws14c{word-spacing:0.682667pt;}
.ws60{word-spacing:0.693333pt;}
.wsbc{word-spacing:0.720000pt;}
.ws123{word-spacing:0.768000pt;}
.ws13f{word-spacing:0.810667pt;}
.ws10{word-spacing:0.816000pt;}
.ws59{word-spacing:0.853333pt;}
.ws121{word-spacing:0.938667pt;}
.wse{word-spacing:0.960000pt;}
.ws5a{word-spacing:1.013333pt;}
.wsfc{word-spacing:1.024000pt;}
.wsc5{word-spacing:1.120000pt;}
.ws24{word-spacing:1.173333pt;}
.ws22{word-spacing:1.226667pt;}
.ws136{word-spacing:1.237333pt;}
.wscb{word-spacing:1.280000pt;}
.wsa0{word-spacing:1.333333pt;}
.ws25{word-spacing:1.386667pt;}
.ws12f{word-spacing:1.408000pt;}
.wsc{word-spacing:1.440000pt;}
.ws113{word-spacing:1.493333pt;}
.ws28{word-spacing:1.546667pt;}
.ws146{word-spacing:1.578667pt;}
.ws77{word-spacing:1.584000pt;}
.ws31{word-spacing:1.612800pt;}
.ws139{word-spacing:1.664000pt;}
.wsf{word-spacing:1.728000pt;}
.ws10b{word-spacing:1.749333pt;}
.wsa9{word-spacing:1.813333pt;}
.wsd9{word-spacing:1.866667pt;}
.ws51{word-spacing:1.920000pt;}
.wsd5{word-spacing:1.973333pt;}
.ws7b{word-spacing:2.026667pt;}
.ws82{word-spacing:2.133333pt;}
.wsbe{word-spacing:2.160000pt;}
.ws47{word-spacing:2.186667pt;}
.wsac{word-spacing:2.240000pt;}
.ws73{word-spacing:2.261333pt;}
.ws15{word-spacing:2.293333pt;}
.wsd3{word-spacing:2.346667pt;}
.ws11a{word-spacing:2.389333pt;}
.ws16{word-spacing:2.400000pt;}
.ws2e{word-spacing:2.453333pt;}
.ws149{word-spacing:2.517333pt;}
.ws128{word-spacing:2.560000pt;}
.ws5e{word-spacing:2.666667pt;}
.ws114{word-spacing:2.688000pt;}
.ws4e{word-spacing:2.720000pt;}
.ws138{word-spacing:2.730667pt;}
.ws56{word-spacing:2.773333pt;}
.ws64{word-spacing:2.880000pt;}
.ws13d{word-spacing:2.901333pt;}
.wsd6{word-spacing:2.933333pt;}
.ws137{word-spacing:2.986667pt;}
.ws142{word-spacing:3.029333pt;}
.ws46{word-spacing:3.040000pt;}
.ws4d{word-spacing:3.093333pt;}
.ws52{word-spacing:3.146667pt;}
.wse7{word-spacing:3.200000pt;}
.wsb6{word-spacing:3.216000pt;}
.ws45{word-spacing:3.253333pt;}
.ws81{word-spacing:3.306667pt;}
.ws13a{word-spacing:3.328000pt;}
.ws2c{word-spacing:3.360000pt;}
.ws14b{word-spacing:3.370667pt;}
.wse4{word-spacing:3.413333pt;}
.wsf0{word-spacing:3.520000pt;}
.ws20{word-spacing:3.573333pt;}
.ws107{word-spacing:3.584000pt;}
.wsa6{word-spacing:3.626667pt;}
.ws7d{word-spacing:3.680000pt;}
.ws86{word-spacing:3.733333pt;}
.wsfe{word-spacing:3.754667pt;}
.ws126{word-spacing:3.797333pt;}
.ws14d{word-spacing:3.840000pt;}
.ws131{word-spacing:3.882667pt;}
.wsd2{word-spacing:3.946667pt;}
.wse8{word-spacing:4.000000pt;}
.ws11e{word-spacing:4.010667pt;}
.ws71{word-spacing:4.053333pt;}
.ws10d{word-spacing:4.096000pt;}
.ws26{word-spacing:4.106667pt;}
.wsf1{word-spacing:4.176000pt;}
.ws18{word-spacing:4.320000pt;}
.wsda{word-spacing:4.373333pt;}
.ws109{word-spacing:4.437333pt;}
.ws9c{word-spacing:4.533333pt;}
.ws133{word-spacing:4.565333pt;}
.wsdd{word-spacing:4.586667pt;}
.ws129{word-spacing:4.608000pt;}
.ws110{word-spacing:4.736000pt;}
.ws27{word-spacing:4.746667pt;}
.wsff{word-spacing:4.821333pt;}
.ws8f{word-spacing:4.853333pt;}
.ws13b{word-spacing:4.864000pt;}
.wscc{word-spacing:4.906667pt;}
.wsdb{word-spacing:5.013333pt;}
.wsa7{word-spacing:5.120000pt;}
.wscf{word-spacing:5.226667pt;}
.wse5{word-spacing:5.440000pt;}
.wsc8{word-spacing:5.493333pt;}
.ws1e{word-spacing:5.546667pt;}
.ws117{word-spacing:5.589333pt;}
.wsc9{word-spacing:5.706667pt;}
.ws102{word-spacing:5.717333pt;}
.ws12b{word-spacing:5.845333pt;}
.ws1d{word-spacing:5.866667pt;}
.ws10a{word-spacing:5.930667pt;}
.wsfb{word-spacing:5.973333pt;}
.ws62{word-spacing:6.026667pt;}
.ws1a{word-spacing:6.080000pt;}
.ws1f{word-spacing:6.133333pt;}
.ws6d{word-spacing:6.144000pt;}
.ws84{word-spacing:6.186667pt;}
.wsf5{word-spacing:6.346667pt;}
.ws11f{word-spacing:6.357333pt;}
.ws78{word-spacing:6.442667pt;}
.wsf6{word-spacing:6.506667pt;}
.ws89{word-spacing:6.560000pt;}
.wsd0{word-spacing:6.613333pt;}
.ws106{word-spacing:6.698667pt;}
.ws127{word-spacing:6.826667pt;}
.wsad{word-spacing:6.933333pt;}
.ws11b{word-spacing:7.040000pt;}
.wsab{word-spacing:7.093333pt;}
.ws119{word-spacing:7.125333pt;}
.ws6a{word-spacing:7.168000pt;}
.ws5b{word-spacing:7.200000pt;}
.ws130{word-spacing:7.253333pt;}
.wsaf{word-spacing:7.306667pt;}
.ws90{word-spacing:7.360000pt;}
.ws87{word-spacing:7.413333pt;}
.ws100{word-spacing:7.424000pt;}
.ws124{word-spacing:7.509333pt;}
.wsaa{word-spacing:7.626667pt;}
.ws58{word-spacing:7.680000pt;}
.wsfd{word-spacing:7.722667pt;}
.wsc6{word-spacing:7.733333pt;}
.ws19{word-spacing:7.786667pt;}
.wsc2{word-spacing:8.053333pt;}
.wse1{word-spacing:8.106667pt;}
.wsce{word-spacing:8.160000pt;}
.ws13c{word-spacing:8.234667pt;}
.wsd8{word-spacing:8.426667pt;}
.ws70{word-spacing:8.448000pt;}
.ws4f{word-spacing:8.480000pt;}
.ws104{word-spacing:8.490667pt;}
.ws96{word-spacing:8.586667pt;}
.ws50{word-spacing:8.640000pt;}
.ws11c{word-spacing:8.746667pt;}
.ws9e{word-spacing:8.800000pt;}
.ws69{word-spacing:8.917333pt;}
.ws53{word-spacing:9.013333pt;}
.ws111{word-spacing:9.045333pt;}
.ws1b{word-spacing:9.066667pt;}
.ws8b{word-spacing:9.120000pt;}
.ws85{word-spacing:9.280000pt;}
.ws12a{word-spacing:9.301333pt;}
.ws6f{word-spacing:9.344000pt;}
.wscd{word-spacing:9.493333pt;}
.wsea{word-spacing:9.600000pt;}
.ws5c{word-spacing:9.706667pt;}
.ws6b{word-spacing:9.728000pt;}
.ws8a{word-spacing:9.760000pt;}
.ws134{word-spacing:9.898667pt;}
.ws98{word-spacing:9.920000pt;}
.wsdf{word-spacing:9.973333pt;}
.wseb{word-spacing:10.293333pt;}
.ws2d{word-spacing:10.346667pt;}
.ws11d{word-spacing:10.368000pt;}
.wsed{word-spacing:10.506667pt;}
.ws63{word-spacing:10.880000pt;}
.wsef{word-spacing:10.933333pt;}
.wsf7{word-spacing:10.986667pt;}
.wsf9{word-spacing:11.040000pt;}
.ws9a{word-spacing:11.146667pt;}
.ws10e{word-spacing:11.178667pt;}
.ws105{word-spacing:11.221333pt;}
.wsa3{word-spacing:11.466667pt;}
.ws5f{word-spacing:12.000000pt;}
.wsca{word-spacing:12.053333pt;}
.ws13e{word-spacing:12.160000pt;}
.ws9d{word-spacing:12.266667pt;}
.wsd1{word-spacing:12.320000pt;}
.ws7a{word-spacing:12.373333pt;}
.ws91{word-spacing:12.480000pt;}
.ws57{word-spacing:12.746667pt;}
.ws68{word-spacing:12.842667pt;}
.ws99{word-spacing:12.853333pt;}
.wsec{word-spacing:13.120000pt;}
.wsf8{word-spacing:13.280000pt;}
.ws29{word-spacing:13.493333pt;}
.wsa1{word-spacing:13.546667pt;}
.wsf4{word-spacing:13.653333pt;}
.ws6c{word-spacing:14.208000pt;}
.ws9b{word-spacing:15.146667pt;}
.wsc1{word-spacing:15.360000pt;}
.wsc4{word-spacing:15.626667pt;}
.wsf3{word-spacing:15.733333pt;}
.ws5d{word-spacing:15.946667pt;}
.ws8c{word-spacing:16.106667pt;}
.ws94{word-spacing:16.426667pt;}
.ws4b{word-spacing:16.853333pt;}
.wsde{word-spacing:17.226667pt;}
.ws93{word-spacing:17.280000pt;}
.wsa2{word-spacing:17.386667pt;}
.wsc3{word-spacing:18.666667pt;}
.wsae{word-spacing:18.720000pt;}
.ws92{word-spacing:19.786667pt;}
.wsee{word-spacing:21.653333pt;}
.ws140{word-spacing:24.704000pt;}
.ws97{word-spacing:25.440000pt;}
.ws103{word-spacing:49.920000pt;}
.ws38{word-spacing:51.413333pt;}
.ws34{word-spacing:58.197333pt;}
.ws3b{word-spacing:58.368000pt;}
.ws3c{word-spacing:58.965333pt;}
.ws3e{word-spacing:60.160000pt;}
.ws3f{word-spacing:63.402667pt;}
.ws41{word-spacing:70.400000pt;}
.ws42{word-spacing:79.146667pt;}
.ws10f{word-spacing:81.834667pt;}
.ws3d{word-spacing:90.581333pt;}
.ws40{word-spacing:105.770667pt;}
.ws37{word-spacing:106.794667pt;}
.ws43{word-spacing:110.549333pt;}
.ws39{word-spacing:130.858667pt;}
.ws36{word-spacing:137.941333pt;}
.ws35{word-spacing:141.269333pt;}
.ws3a{word-spacing:142.464000pt;}
.wsb9{word-spacing:159.232000pt;}
.ws33{word-spacing:170.922667pt;}
.wsb3{word-spacing:185.898667pt;}
.wsb5{word-spacing:188.288000pt;}
.wsba{word-spacing:265.088000pt;}
.wsb4{word-spacing:304.170667pt;}
.wsb2{word-spacing:308.906667pt;}
._81{margin-left:-6.277333pt;}
._5{margin-left:-5.367467pt;}
._7{margin-left:-4.352000pt;}
._0{margin-left:-3.318400pt;}
._3{margin-left:-1.985600pt;}
._2{margin-left:-0.906667pt;}
._1{width:1.323733pt;}
._4{width:2.438933pt;}
._38{width:3.516267pt;}
._8{width:4.746667pt;}
._a{width:6.032000pt;}
._3a{width:7.504000pt;}
._7d{width:8.869333pt;}
._7e{width:9.930667pt;}
._39{width:11.466667pt;}
._9{width:15.258667pt;}
._7f{width:16.917333pt;}
._80{width:21.562667pt;}
._6{width:28.458133pt;}
._40{width:31.274667pt;}
._28{width:48.278933pt;}
._1e{width:51.256000pt;}
._b{width:53.640533pt;}
._29{width:56.339200pt;}
._24{width:64.298667pt;}
._3f{width:70.357333pt;}
._10{width:71.850667pt;}
._c{width:73.111467pt;}
._1c{width:75.690667pt;}
._2d{width:77.568000pt;}
._15{width:81.749333pt;}
._33{width:83.541333pt;}
._1a{width:84.854400pt;}
._2c{width:87.404267pt;}
._25{width:90.581333pt;}
._31{width:93.249600pt;}
._2f{width:97.493333pt;}
._27{width:101.248000pt;}
._16{width:102.186667pt;}
._2e{width:104.766400pt;}
._20{width:106.666667pt;}
._2b{width:111.658667pt;}
._1b{width:114.901333pt;}
._11{width:120.789333pt;}
._34{width:124.117333pt;}
._30{width:129.152000pt;}
._18{width:142.165333pt;}
._1f{width:146.048000pt;}
._26{width:150.058667pt;}
._14{width:158.762667pt;}
._3e{width:160.256000pt;}
._d{width:166.912000pt;}
._7c{width:169.898667pt;}
._12{width:172.714667pt;}
._2a{width:179.754667pt;}
._6f{width:181.376000pt;}
._71{width:182.550933pt;}
._32{width:186.732267pt;}
._6a{width:188.672000pt;}
._6c{width:190.506667pt;}
._17{width:192.512000pt;}
._72{width:193.857600pt;}
._35{width:194.944000pt;}
._63{width:196.906667pt;}
._46{width:198.144000pt;}
._3d{width:199.552000pt;}
._68{width:201.002667pt;}
._54{width:201.921600pt;}
._36{width:204.117333pt;}
._13{width:205.568000pt;}
._21{width:206.677333pt;}
._74{width:207.763733pt;}
._1d{width:209.109333pt;}
._50{width:210.816000pt;}
._58{width:211.987733pt;}
._4f{width:212.992000pt;}
._4a{width:214.784000pt;}
._37{width:218.305600pt;}
._67{width:220.416000pt;}
._4b{width:221.482667pt;}
._4e{width:223.232000pt;}
._79{width:224.938667pt;}
._5b{width:226.218667pt;}
._45{width:228.565333pt;}
._44{width:232.576000pt;}
._49{width:233.898667pt;}
._60{width:237.824000pt;}
._51{width:239.232000pt;}
._52{width:242.816000pt;}
._5a{width:244.949333pt;}
._78{width:247.776533pt;}
._57{width:252.032000pt;}
._43{width:255.232000pt;}
._19{width:262.442667pt;}
._7b{width:276.224000pt;}
._5f{width:289.751467pt;}
._5e{width:308.480000pt;}
._5d{width:311.459733pt;}
._65{width:315.001067pt;}
._66{width:320.170667pt;}
._53{width:334.336000pt;}
._4c{width:335.573333pt;}
._f{width:337.152000pt;}
._73{width:339.413333pt;}
._64{width:340.352000pt;}
._4d{width:346.496000pt;}
._47{width:347.434667pt;}
._59{width:349.824000pt;}
._6b{width:352.554667pt;}
._70{width:355.912000pt;}
._41{width:358.101333pt;}
._69{width:359.253333pt;}
._55{width:363.989333pt;}
._56{width:364.898667pt;}
._48{width:369.024000pt;}
._61{width:369.962667pt;}
._62{width:371.114667pt;}
._6e{width:372.010667pt;}
._76{width:378.177600pt;}
._5c{width:380.586667pt;}
._77{width:383.360000pt;}
._75{width:386.602667pt;}
._42{width:390.400000pt;}
._6d{width:401.322667pt;}
._23{width:412.757333pt;}
._7a{width:418.773333pt;}
._e{width:428.662400pt;}
._3b{width:461.558400pt;}
._22{width:473.452267pt;}
._3c{width:497.664000pt;}
.fsa{font-size:24.874667pt;}
.fsb{font-size:31.093333pt;}
.fs9{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:57.453200pt;}
.y29{bottom:68.131733pt;}
.y27{bottom:68.650400pt;}
.ya0{bottom:101.165333pt;}
.ycc{bottom:105.278000pt;}
.y24{bottom:117.165333pt;}
.ycb{bottom:119.475333pt;}
.y91{bottom:132.662667pt;}
.y23{bottom:133.165333pt;}
.yca{bottom:133.672667pt;}
.ye0{bottom:137.232400pt;}
.y72{bottom:137.547067pt;}
.yc9{bottom:147.870000pt;}
.y90{bottom:148.658667pt;}
.y22{bottom:149.165333pt;}
.ydf{bottom:150.565733pt;}
.ye1{bottom:150.576400pt;}
.y71{bottom:151.755067pt;}
.yc8{bottom:162.067333pt;}
.ydd{bottom:164.780667pt;}
.y21{bottom:165.165333pt;}
.y104{bottom:165.165467pt;}
.y70{bottom:165.963067pt;}
.y95{bottom:168.005733pt;}
.yc7{bottom:176.264667pt;}
.ydc{bottom:178.114000pt;}
.yde{bottom:178.117733pt;}
.y6f{bottom:180.171067pt;}
.y20{bottom:181.165333pt;}
.y103{bottom:181.165467pt;}
.y94{bottom:184.005733pt;}
.yc6{bottom:190.462000pt;}
.yda{bottom:192.322000pt;}
.y6e{bottom:194.379067pt;}
.y1f{bottom:197.165333pt;}
.y102{bottom:197.165467pt;}
.yc5{bottom:204.659333pt;}
.yd9{bottom:205.655333pt;}
.ydb{bottom:205.666000pt;}
.y6d{bottom:208.587067pt;}
.y93{bottom:211.966400pt;}
.y1e{bottom:213.165333pt;}
.y101{bottom:213.165467pt;}
.yc4{bottom:218.856667pt;}
.yd7{bottom:219.863333pt;}
.y6c{bottom:222.795067pt;}
.y92{bottom:227.962400pt;}
.y1d{bottom:229.165333pt;}
.y100{bottom:229.165467pt;}
.yc3{bottom:233.054000pt;}
.yd6{bottom:233.196667pt;}
.yd8{bottom:233.207333pt;}
.y6b{bottom:237.003067pt;}
.y1c{bottom:245.165333pt;}
.yff{bottom:245.165467pt;}
.yc2{bottom:247.251333pt;}
.yd4{bottom:247.404667pt;}
.y6a{bottom:251.211067pt;}
.yd3{bottom:260.738000pt;}
.yd5{bottom:260.748667pt;}
.y1b{bottom:261.165333pt;}
.yfe{bottom:261.165467pt;}
.yc1{bottom:261.448667pt;}
.y69{bottom:265.419067pt;}
.y9f{bottom:274.301333pt;}
.yd2{bottom:274.946000pt;}
.yc0{bottom:275.646000pt;}
.y10e{bottom:276.308667pt;}
.y1a{bottom:277.165333pt;}
.yfd{bottom:277.165467pt;}
.y68{bottom:279.627067pt;}
.yd1{bottom:288.279333pt;}
.ybf{bottom:289.843333pt;}
.y19{bottom:293.165333pt;}
.yfc{bottom:293.165467pt;}
.y67{bottom:293.835067pt;}
.yd0{bottom:302.487333pt;}
.ybe{bottom:304.040667pt;}
.y9e{bottom:305.295067pt;}
.y66{bottom:308.043067pt;}
.y18{bottom:309.165333pt;}
.yfb{bottom:309.165467pt;}
.ycf{bottom:315.820667pt;}
.ybd{bottom:318.238000pt;}
.y65{bottom:322.251067pt;}
.y17{bottom:325.165333pt;}
.yfa{bottom:325.165467pt;}
.yce{bottom:329.154000pt;}
.ybc{bottom:332.435333pt;}
.y64{bottom:336.459067pt;}
.y25{bottom:341.165333pt;}
.yf9{bottom:341.165467pt;}
.ybb{bottom:346.632667pt;}
.ycd{bottom:353.761200pt;}
.y16{bottom:357.165333pt;}
.yf8{bottom:357.165467pt;}
.yba{bottom:360.830000pt;}
.y63{bottom:361.066133pt;}
.y9d{bottom:373.165333pt;}
.yf7{bottom:373.165467pt;}
.yb9{bottom:375.027333pt;}
.ye6{bottom:385.415067pt;}
.y9c{bottom:389.165333pt;}
.yf6{bottom:389.165467pt;}
.yb8{bottom:389.224667pt;}
.y62{bottom:394.161733pt;}
.ye5{bottom:401.411067pt;}
.yb7{bottom:403.422000pt;}
.y9b{bottom:405.165333pt;}
.yf5{bottom:405.165467pt;}
.y61{bottom:408.369733pt;}
.ye4{bottom:417.407067pt;}
.yb6{bottom:417.619333pt;}
.y15{bottom:421.165333pt;}
.yf4{bottom:421.165467pt;}
.y60{bottom:422.577733pt;}
.yb5{bottom:431.816667pt;}
.ye3{bottom:433.403067pt;}
.y5f{bottom:436.785733pt;}
.y9a{bottom:437.165333pt;}
.yf3{bottom:437.165467pt;}
.yb4{bottom:446.014000pt;}
.ye2{bottom:449.399067pt;}
.y5e{bottom:450.993733pt;}
.y14{bottom:453.165333pt;}
.yf2{bottom:453.165467pt;}
.yb3{bottom:460.211333pt;}
.y5d{bottom:465.201733pt;}
.y99{bottom:469.165333pt;}
.yf1{bottom:469.165467pt;}
.yb2{bottom:474.408667pt;}
.y5c{bottom:479.399067pt;}
.y98{bottom:485.165333pt;}
.yf0{bottom:485.165467pt;}
.yb1{bottom:488.606000pt;}
.y97{bottom:501.165333pt;}
.yef{bottom:501.165467pt;}
.yb0{bottom:502.803333pt;}
.y5b{bottom:504.006133pt;}
.yaf{bottom:517.000667pt;}
.y10d{bottom:517.165333pt;}
.yee{bottom:517.165467pt;}
.y13{bottom:517.193333pt;}
.y96{bottom:529.863867pt;}
.yae{bottom:531.198000pt;}
.y5a{bottom:533.165333pt;}
.y44{bottom:533.165467pt;}
.y12{bottom:533.189333pt;}
.yad{bottom:545.395333pt;}
.y59{bottom:549.165333pt;}
.y43{bottom:549.165467pt;}
.y11{bottom:549.185333pt;}
.yac{bottom:559.592667pt;}
.y58{bottom:565.165333pt;}
.y42{bottom:565.165467pt;}
.y10{bottom:565.181333pt;}
.yab{bottom:573.790000pt;}
.y57{bottom:581.165333pt;}
.y41{bottom:581.165467pt;}
.yf{bottom:581.177333pt;}
.yaa{bottom:587.987333pt;}
.y56{bottom:597.165333pt;}
.y40{bottom:597.165467pt;}
.ye{bottom:597.173333pt;}
.ya9{bottom:602.184667pt;}
.y55{bottom:613.165333pt;}
.y3f{bottom:613.165467pt;}
.yd{bottom:613.169333pt;}
.ya8{bottom:616.382000pt;}
.yc{bottom:629.165333pt;}
.yed{bottom:629.165467pt;}
.ya7{bottom:630.579333pt;}
.ya6{bottom:644.776667pt;}
.y54{bottom:645.165333pt;}
.yec{bottom:645.165467pt;}
.y3e{bottom:647.508667pt;}
.yb{bottom:661.165333pt;}
.yeb{bottom:661.165467pt;}
.ya5{bottom:669.391733pt;}
.y53{bottom:677.165333pt;}
.yea{bottom:677.165467pt;}
.ya4{bottom:685.387733pt;}
.y3d{bottom:693.165333pt;}
.ya3{bottom:701.383733pt;}
.ye9{bottom:708.616000pt;}
.y3c{bottom:709.165333pt;}
.ya{bottom:714.382000pt;}
.y3b{bottom:725.165333pt;}
.ya2{bottom:725.182533pt;}
.ye8{bottom:727.816000pt;}
.y3a{bottom:741.165333pt;}
.ya1{bottom:741.178533pt;}
.y9{bottom:756.837467pt;}
.y39{bottom:757.165333pt;}
.ye7{bottom:758.354533pt;}
.y38{bottom:773.165333pt;}
.y8{bottom:780.837467pt;}
.y8f{bottom:783.659333pt;}
.y110{bottom:786.419333pt;}
.y80{bottom:788.191200pt;}
.y37{bottom:789.165333pt;}
.y52{bottom:791.508667pt;}
.y8e{bottom:799.659333pt;}
.y10f{bottom:802.415333pt;}
.y7f{bottom:804.191200pt;}
.y10c{bottom:804.308667pt;}
.y7{bottom:804.837467pt;}
.y36{bottom:805.165333pt;}
.y8d{bottom:815.659333pt;}
.y7e{bottom:820.191200pt;}
.y111{bottom:820.308667pt;}
.y6{bottom:820.837467pt;}
.y35{bottom:821.165333pt;}
.y10b{bottom:823.508667pt;}
.y8c{bottom:831.659333pt;}
.y7d{bottom:836.191200pt;}
.y5{bottom:836.837467pt;}
.y34{bottom:837.165333pt;}
.y51{bottom:837.165467pt;}
.y8b{bottom:847.659333pt;}
.y7c{bottom:852.191200pt;}
.y33{bottom:853.165333pt;}
.y50{bottom:853.165467pt;}
.y8a{bottom:863.659333pt;}
.y7b{bottom:868.191200pt;}
.y4{bottom:868.836133pt;}
.y32{bottom:869.165333pt;}
.y4f{bottom:869.165467pt;}
.y89{bottom:879.659333pt;}
.y7a{bottom:884.191200pt;}
.y10a{bottom:885.165333pt;}
.y4e{bottom:885.165467pt;}
.y88{bottom:895.659333pt;}
.y79{bottom:900.191200pt;}
.y109{bottom:901.165333pt;}
.y4d{bottom:901.165467pt;}
.y31{bottom:901.770133pt;}
.y3{bottom:904.034933pt;}
.y87{bottom:911.659333pt;}
.y78{bottom:916.191200pt;}
.y108{bottom:917.165333pt;}
.y4c{bottom:917.165467pt;}
.y86{bottom:927.659333pt;}
.y2{bottom:931.234933pt;}
.y77{bottom:932.191200pt;}
.y30{bottom:932.308667pt;}
.y107{bottom:933.165333pt;}
.y4b{bottom:933.165467pt;}
.y85{bottom:943.659333pt;}
.y76{bottom:948.191200pt;}
.y106{bottom:949.165333pt;}
.y4a{bottom:949.165467pt;}
.y1{bottom:958.434933pt;}
.y84{bottom:959.659333pt;}
.y75{bottom:964.191200pt;}
.y105{bottom:965.165333pt;}
.y49{bottom:965.165467pt;}
.y83{bottom:975.659333pt;}
.y2f{bottom:981.165333pt;}
.y48{bottom:981.165467pt;}
.y2e{bottom:997.165333pt;}
.y47{bottom:997.165467pt;}
.y74{bottom:999.088933pt;}
.y82{bottom:1010.560667pt;}
.y2d{bottom:1013.165333pt;}
.y46{bottom:1013.165467pt;}
.y73{bottom:1026.427467pt;}
.y2c{bottom:1029.165333pt;}
.y45{bottom:1029.165467pt;}
.y81{bottom:1030.340133pt;}
.y2a{bottom:1061.021733pt;}
.y2b{bottom:1061.025333pt;}
.y26{bottom:1061.170267pt;}
.he{height:26.678400pt;}
.h11{height:28.916667pt;}
.h5{height:29.625000pt;}
.h4{height:29.642667pt;}
.h12{height:29.645833pt;}
.h15{height:31.066417pt;}
.h16{height:31.463788pt;}
.hd{height:31.760000pt;}
.h6{height:31.764800pt;}
.h7{height:33.351562pt;}
.h14{height:33.750000pt;}
.h8{height:34.896000pt;}
.h13{height:36.145833pt;}
.hb{height:37.057292pt;}
.ha{height:37.968750pt;}
.h17{height:39.363868pt;}
.hc{height:42.187500pt;}
.h10{height:44.468750pt;}
.h3{height:49.459969pt;}
.hf{height:50.625000pt;}
.h9{height:51.880208pt;}
.h2{height:62.997396pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x14{left:70.313467pt;}
.x12{left:83.146133pt;}
.xa{left:98.267733pt;}
.xe{left:100.531600pt;}
.xf{left:108.869333pt;}
.xd{left:112.648933pt;}
.x15{left:202.964133pt;}
.x16{left:206.399200pt;}
.x17{left:209.812533pt;}
.x24{left:223.446000pt;}
.x2{left:235.346000pt;}
.x18{left:278.207200pt;}
.x3{left:281.283333pt;}
.x19{left:361.353867pt;}
.x1a{left:363.839200pt;}
.x1b{left:369.951200pt;}
.x4{left:378.636933pt;}
.x8{left:391.178133pt;}
.x9{left:406.298133pt;}
.xc{left:421.414267pt;}
.x5{left:427.609333pt;}
.x13{left:436.534267pt;}
.x1c{left:459.615200pt;}
.x1d{left:462.100533pt;}
.xb{left:467.967733pt;}
.x6{left:538.960933pt;}
.x1f{left:550.687200pt;}
.x1e{left:557.876533pt;}
.x20{left:566.496667pt;}
.x7{left:589.347467pt;}
.x10{left:630.204000pt;}
.x22{left:647.947333pt;}
.x21{left:650.496667pt;}
.x23{left:659.094000pt;}
.x11{left:678.153467pt;}
}




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