
    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_73b16475b73eeaf65b6f293c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_f6ac0d712876622993128461.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_8e754dfd109863885ffce272.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_f9a64a7cb773035fb4bd4abf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080000;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_b8d4dabc8b5ecefa14701815.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117000;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_ca9cd08d914b92408a968848.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_91a7247719f23063c8b4126d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_fbe098861943b522865fd59f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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_f082b59bebead21b4ff7330e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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;}
.m7{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m9{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;}
.ls1{letter-spacing:-1.386000px;}
.ls6{letter-spacing:-1.320000px;}
.lsb{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.384000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180600px;}
.ls3{letter-spacing:15.187185px;}
.ls4{letter-spacing:23.423415px;}
.ls7{letter-spacing:24.464709px;}
.ls8{letter-spacing:25.549390px;}
.ls5{letter-spacing:50.747415px;}
.ls9{letter-spacing:52.873390px;}
.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;}
}
.ws5{word-spacing:-17.280000px;}
.ws6{word-spacing:-15.240000px;}
.ws3{word-spacing:-14.580600px;}
.ws8d{word-spacing:-14.520000px;}
.ws2{word-spacing:-14.454000px;}
.ws4{word-spacing:-14.400000px;}
.wsee{word-spacing:-13.716000px;}
.ws0{word-spacing:-13.166044px;}
.ws35{word-spacing:-9.906000px;}
.ws87{word-spacing:-3.660000px;}
.wsbf{word-spacing:-3.480000px;}
.wsa8{word-spacing:-3.420600px;}
.ws99{word-spacing:-3.240000px;}
.ws60{word-spacing:-3.000000px;}
.wsdb{word-spacing:-2.976000px;}
.ws1f{word-spacing:-2.940000px;}
.ws4b{word-spacing:-2.880000px;}
.wsc8{word-spacing:-2.832480px;}
.ws11{word-spacing:-2.820000px;}
.ws3f{word-spacing:-2.700000px;}
.wsd1{word-spacing:-2.592000px;}
.ws6b{word-spacing:-2.580000px;}
.ws63{word-spacing:-2.520600px;}
.ws15{word-spacing:-2.460000px;}
.wsea{word-spacing:-2.400000px;}
.wsc{word-spacing:-2.399400px;}
.wsc9{word-spacing:-2.304000px;}
.ws92{word-spacing:-2.160000px;}
.wsbe{word-spacing:-2.100000px;}
.wse7{word-spacing:-2.016480px;}
.ws6c{word-spacing:-1.980000px;}
.wse6{word-spacing:-1.919520px;}
.ws64{word-spacing:-1.860600px;}
.wsd8{word-spacing:-1.823520px;}
.ws10{word-spacing:-1.800000px;}
.ws7c{word-spacing:-1.740600px;}
.wse0{word-spacing:-1.728000px;}
.wsd9{word-spacing:-1.632000px;}
.ws1c{word-spacing:-1.619400px;}
.wsb3{word-spacing:-1.560000px;}
.wsb2{word-spacing:-1.499400px;}
.wsa{word-spacing:-1.440000px;}
.wsd{word-spacing:-1.379400px;}
.wsd2{word-spacing:-1.344000px;}
.ws67{word-spacing:-1.320000px;}
.wsd3{word-spacing:-1.295520px;}
.wsdf{word-spacing:-1.248000px;}
.ws56{word-spacing:-1.200000px;}
.wsa7{word-spacing:-1.140000px;}
.wsf5{word-spacing:-1.103520px;}
.ws41{word-spacing:-1.080600px;}
.wsf1{word-spacing:-1.056000px;}
.ws1e{word-spacing:-1.020000px;}
.wsf3{word-spacing:-0.912000px;}
.wse1{word-spacing:-0.864480px;}
.wsae{word-spacing:-0.840600px;}
.ws59{word-spacing:-0.719400px;}
.ws13{word-spacing:-0.599400px;}
.wsd7{word-spacing:-0.575520px;}
.ws2d{word-spacing:-0.540000px;}
.wsef{word-spacing:-0.528000px;}
.ws98{word-spacing:-0.480000px;}
.ws25{word-spacing:-0.420000px;}
.wscb{word-spacing:-0.384000px;}
.wsa9{word-spacing:-0.360000px;}
.ws29{word-spacing:-0.180600px;}
.ws77{word-spacing:-0.120000px;}
.ws1{word-spacing:0.000000px;}
.wsd0{word-spacing:0.048480px;}
.wscc{word-spacing:0.096000px;}
.ws50{word-spacing:0.120000px;}
.wsa5{word-spacing:0.180600px;}
.ws20{word-spacing:0.240000px;}
.wsb4{word-spacing:0.300000px;}
.ws52{word-spacing:0.360000px;}
.wse4{word-spacing:0.384000px;}
.ws66{word-spacing:0.420000px;}
.wse5{word-spacing:0.479520px;}
.wse{word-spacing:0.480000px;}
.ws54{word-spacing:0.599400px;}
.ws9c{word-spacing:0.660000px;}
.wsf8{word-spacing:0.672480px;}
.ws2e{word-spacing:0.719400px;}
.wsf7{word-spacing:0.720000px;}
.ws9b{word-spacing:0.780000px;}
.ws17{word-spacing:0.900000px;}
.wsde{word-spacing:0.912000px;}
.wsd4{word-spacing:0.960000px;}
.wsf6{word-spacing:1.008000px;}
.ws85{word-spacing:1.020000px;}
.wsf0{word-spacing:1.056000px;}
.ws90{word-spacing:1.080600px;}
.wse2{word-spacing:1.103520px;}
.ws36{word-spacing:1.140000px;}
.wsdc{word-spacing:1.199520px;}
.wsac{word-spacing:1.200000px;}
.wsce{word-spacing:1.248000px;}
.ws8b{word-spacing:1.260000px;}
.ws96{word-spacing:1.320000px;}
.wsd5{word-spacing:1.584000px;}
.ws57{word-spacing:1.680000px;}
.ws53{word-spacing:1.740600px;}
.wsd6{word-spacing:1.776000px;}
.wsbc{word-spacing:1.800000px;}
.ws32{word-spacing:1.860600px;}
.wse8{word-spacing:1.872000px;}
.ws62{word-spacing:1.920000px;}
.ws24{word-spacing:1.980000px;}
.ws43{word-spacing:2.040000px;}
.wsda{word-spacing:2.064000px;}
.ws39{word-spacing:2.100000px;}
.ws97{word-spacing:2.160000px;}
.ws6d{word-spacing:2.220000px;}
.wsb1{word-spacing:2.279400px;}
.wsfb{word-spacing:2.304000px;}
.ws8e{word-spacing:2.399400px;}
.wsa0{word-spacing:2.460000px;}
.ws44{word-spacing:2.520600px;}
.wsf{word-spacing:2.580000px;}
.ws1a{word-spacing:2.640600px;}
.ws49{word-spacing:2.700000px;}
.wsf4{word-spacing:2.736480px;}
.ws2a{word-spacing:2.760600px;}
.ws4d{word-spacing:2.820000px;}
.wsaf{word-spacing:2.880000px;}
.ws68{word-spacing:2.940000px;}
.wsed{word-spacing:2.976000px;}
.ws55{word-spacing:3.000000px;}
.ws65{word-spacing:3.059400px;}
.ws86{word-spacing:3.120000px;}
.wse3{word-spacing:3.216000px;}
.ws5c{word-spacing:3.240000px;}
.wsec{word-spacing:3.263520px;}
.ws4f{word-spacing:3.299400px;}
.wse9{word-spacing:3.312000px;}
.wsf9{word-spacing:3.360480px;}
.ws5a{word-spacing:3.420600px;}
.ws58{word-spacing:3.480000px;}
.ws9a{word-spacing:3.540600px;}
.ws61{word-spacing:3.600000px;}
.ws78{word-spacing:3.660000px;}
.ws48{word-spacing:3.720000px;}
.ws72{word-spacing:3.726000px;}
.ws34{word-spacing:3.780000px;}
.ws3d{word-spacing:3.840000px;}
.ws3a{word-spacing:3.900000px;}
.wscd{word-spacing:3.983520px;}
.ws9e{word-spacing:4.020000px;}
.ws4c{word-spacing:4.200600px;}
.wscf{word-spacing:4.320000px;}
.ws89{word-spacing:4.320600px;}
.ws84{word-spacing:4.440600px;}
.wsa2{word-spacing:4.500000px;}
.wsb5{word-spacing:4.560000px;}
.wsf2{word-spacing:4.607520px;}
.wsc4{word-spacing:4.620000px;}
.ws70{word-spacing:4.680000px;}
.ws73{word-spacing:4.698540px;}
.ws6a{word-spacing:4.739400px;}
.wsfa{word-spacing:4.752000px;}
.ws42{word-spacing:4.800000px;}
.wsb7{word-spacing:4.859400px;}
.wsc5{word-spacing:4.920000px;}
.ws83{word-spacing:4.979400px;}
.ws8a{word-spacing:5.040000px;}
.wsb{word-spacing:5.100600px;}
.ws7{word-spacing:5.160000px;}
.ws28{word-spacing:5.280000px;}
.ws3e{word-spacing:5.400000px;}
.ws2b{word-spacing:5.460000px;}
.ws5f{word-spacing:5.520000px;}
.wseb{word-spacing:5.568000px;}
.ws79{word-spacing:5.580000px;}
.ws76{word-spacing:5.616000px;}
.ws5d{word-spacing:5.700000px;}
.ws14{word-spacing:5.759400px;}
.ws45{word-spacing:5.820000px;}
.ws88{word-spacing:5.940000px;}
.ws1d{word-spacing:6.000600px;}
.ws30{word-spacing:6.060000px;}
.ws5e{word-spacing:6.120600px;}
.wsc3{word-spacing:6.240000px;}
.wsad{word-spacing:6.360000px;}
.ws91{word-spacing:6.480000px;}
.ws8c{word-spacing:6.539400px;}
.ws47{word-spacing:6.659400px;}
.ws7f{word-spacing:6.720000px;}
.ws6e{word-spacing:6.840000px;}
.ws74{word-spacing:6.858000px;}
.ws4e{word-spacing:6.900600px;}
.wsa4{word-spacing:6.960000px;}
.ws31{word-spacing:7.020000px;}
.wsb9{word-spacing:7.080000px;}
.ws2f{word-spacing:7.200000px;}
.wsab{word-spacing:7.260000px;}
.ws19{word-spacing:7.319400px;}
.ws5b{word-spacing:7.439400px;}
.ws23{word-spacing:7.560600px;}
.ws12{word-spacing:7.740000px;}
.ws95{word-spacing:7.860000px;}
.wsa1{word-spacing:7.920000px;}
.ws27{word-spacing:7.980000px;}
.ws40{word-spacing:8.280000px;}
.ws4a{word-spacing:8.340600px;}
.ws16{word-spacing:8.400000px;}
.ws46{word-spacing:8.520000px;}
.ws1b{word-spacing:8.580600px;}
.ws71{word-spacing:8.694000px;}
.ws21{word-spacing:8.700000px;}
.ws51{word-spacing:8.820000px;}
.ws22{word-spacing:8.879400px;}
.wsa3{word-spacing:8.940000px;}
.ws81{word-spacing:8.999400px;}
.ws9{word-spacing:9.119400px;}
.ws9d{word-spacing:9.180000px;}
.wsbd{word-spacing:9.300000px;}
.ws94{word-spacing:9.420000px;}
.ws7b{word-spacing:9.720000px;}
.wsa6{word-spacing:9.840000px;}
.wsc6{word-spacing:9.899400px;}
.wsdd{word-spacing:9.936000px;}
.wsbb{word-spacing:10.080000px;}
.ws3b{word-spacing:10.200000px;}
.ws80{word-spacing:10.260600px;}
.wsba{word-spacing:10.320000px;}
.wsc1{word-spacing:10.440000px;}
.wsca{word-spacing:10.656000px;}
.ws6f{word-spacing:10.860000px;}
.wsaa{word-spacing:10.920600px;}
.ws38{word-spacing:10.980000px;}
.ws2c{word-spacing:11.579400px;}
.ws8f{word-spacing:11.640000px;}
.wsb8{word-spacing:11.940600px;}
.ws75{word-spacing:12.042540px;}
.ws33{word-spacing:12.060000px;}
.ws3c{word-spacing:12.120000px;}
.ws9f{word-spacing:12.180000px;}
.ws7a{word-spacing:12.300000px;}
.wsb6{word-spacing:12.780000px;}
.ws26{word-spacing:12.900000px;}
.ws93{word-spacing:13.560000px;}
.ws37{word-spacing:13.919400px;}
.ws8{word-spacing:14.039400px;}
.ws7d{word-spacing:14.760000px;}
.wsc7{word-spacing:14.819400px;}
.ws18{word-spacing:15.180600px;}
.wsc0{word-spacing:16.140000px;}
.wsb0{word-spacing:17.520600px;}
.ws82{word-spacing:17.640600px;}
.ws7e{word-spacing:20.520000px;}
.ws69{word-spacing:23.040000px;}
.wsc2{word-spacing:28.139400px;}
._1c{margin-left:-41.997610px;}
._1b{margin-left:-24.446383px;}
._e{margin-left:-22.352429px;}
._14{margin-left:-19.790406px;}
._1a{margin-left:-16.997995px;}
._17{margin-left:-15.253787px;}
._18{margin-left:-13.468735px;}
._19{margin-left:-12.453637px;}
._16{margin-left:-10.873245px;}
._12{margin-left:-9.527940px;}
._13{margin-left:-7.643934px;}
._f{margin-left:-6.041995px;}
._11{margin-left:-4.626517px;}
._10{margin-left:-3.420000px;}
._b{margin-left:-2.169595px;}
._c{margin-left:-1.027195px;}
._7{width:1.775995px;}
._4{width:3.463191px;}
._5{width:4.824787px;}
._d{width:5.890819px;}
._15{width:6.947987px;}
._0{width:11.721568px;}
._8{width:12.787165px;}
._6{width:17.286353px;}
._1{width:18.326579px;}
._9{width:22.436739px;}
._3{width:25.396731px;}
._a{width:40.551890px;}
._2{width:736.302239px;}
.fc7{color:rgb(112,111,111);}
.fc4{color:rgb(29,29,27);}
.fc5{color:rgb(74,74,73);}
.fc3{color:rgb(87,87,86);}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc6{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:0.600000px;}
.fs4{font-size:29.599920px;}
.fs3{font-size:33.828480px;}
.fs6{font-size:37.211328px;}
.fs7{font-size:38.057040px;}
.fs9{font-size:39.000000px;}
.fs2{font-size:42.285600px;}
.fs1{font-size:46.514160px;}
.fs5{font-size:47.359872px;}
.fs10{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fs0{font-size:59.199840px;}
.fsc{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fsb{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.267615px;}
.y24{bottom:35.529000px;}
.y23{bottom:36.291450px;}
.y42{bottom:37.366950px;}
.y22{bottom:45.087021px;}
.y21{bottom:57.074989px;}
.y20{bottom:69.062956px;}
.y120{bottom:71.591549px;}
.y136{bottom:80.095499px;}
.y93{bottom:80.212200px;}
.y1f{bottom:81.050924px;}
.yf6{bottom:81.087599px;}
.y147{bottom:81.087605px;}
.ybb{bottom:81.550352px;}
.y167{bottom:83.527800px;}
.yd3{bottom:85.215597px;}
.y108{bottom:85.339645px;}
.y41{bottom:85.744354px;}
.y19a{bottom:87.018150px;}
.y11f{bottom:89.591549px;}
.y6b{bottom:90.867147px;}
.y1e{bottom:91.294610px;}
.y166{bottom:97.627796px;}
.y135{bottom:98.095505px;}
.y92{bottom:98.212200px;}
.yf5{bottom:99.087605px;}
.yba{bottom:99.550346px;}
.y199{bottom:101.418148px;}
.yd2{bottom:103.215603px;}
.y107{bottom:103.339645px;}
.y40{bottom:103.744354px;}
.y11e{bottom:107.591549px;}
.y6a{bottom:108.867153px;}
.y1d{bottom:110.703701px;}
.y165{bottom:111.727798px;}
.y198{bottom:115.818146px;}
.y134{bottom:116.095505px;}
.y91{bottom:116.212200px;}
.y146{bottom:117.087605px;}
.yb9{bottom:117.550346px;}
.yf4{bottom:121.339645px;}
.y3f{bottom:121.744354px;}
.yd1{bottom:125.467495px;}
.y164{bottom:125.827800px;}
.y69{bottom:126.867153px;}
.y11d{bottom:129.843452px;}
.y197{bottom:130.218155px;}
.y133{bottom:134.095505px;}
.y90{bottom:134.212200px;}
.yb8{bottom:135.550346px;}
.yf3{bottom:139.339645px;}
.y3e{bottom:139.744354px;}
.y163{bottom:139.927803px;}
.yd0{bottom:143.467495px;}
.y106{bottom:143.591549px;}
.y196{bottom:144.618153px;}
.y95{bottom:144.867142px;}
.y68{bottom:144.867153px;}
.y11c{bottom:152.095505px;}
.y8f{bottom:152.212200px;}
.yb7{bottom:153.550346px;}
.y162{bottom:154.027805px;}
.y132{bottom:156.347397px;}
.yf2{bottom:157.339645px;}
.y3d{bottom:157.744354px;}
.y195{bottom:159.018150px;}
.y105{bottom:161.591549px;}
.y94{bottom:162.867142px;}
.y67{bottom:162.867153px;}
.ycf{bottom:165.719547px;}
.y1c{bottom:167.091548px;}
.y161{bottom:168.127796px;}
.y8e{bottom:170.212200px;}
.yb6{bottom:171.550346px;}
.y194{bottom:173.418148px;}
.y11b{bottom:174.347397px;}
.y3c{bottom:175.744354px;}
.y1b{bottom:176.077238px;}
.yf1{bottom:179.591549px;}
.y145{bottom:179.591560px;}
.y66{bottom:180.867142px;}
.y160{bottom:182.227798px;}
.yce{bottom:183.719559px;}
.y1a{bottom:184.322930px;}
.y193{bottom:187.818146px;}
.y8d{bottom:188.212200px;}
.y1be{bottom:188.518500px;}
.yb5{bottom:189.550346px;}
.y19{bottom:191.807482px;}
.y11a{bottom:192.347397px;}
.y3b{bottom:193.744354px;}
.yf0{bottom:197.591560px;}
.y65{bottom:198.867142px;}
.y18{bottom:199.302604px;}
.ycd{bottom:201.719559px;}
.y104{bottom:201.843452px;}
.y192{bottom:202.218155px;}
.y15f{bottom:204.831757px;}
.y8c{bottom:206.212189px;}
.y17{bottom:206.797727px;}
.yb4{bottom:207.550346px;}
.y119{bottom:210.347397px;}
.y16{bottom:214.282278px;}
.y144{bottom:215.591560px;}
.y191{bottom:216.618141px;}
.y64{bottom:216.867142px;}
.y1bd{bottom:216.868492px;}
.yef{bottom:219.843452px;}
.y3a{bottom:220.248299px;}
.y15{bottom:221.777401px;}
.ycc{bottom:223.971450px;}
.y8b{bottom:224.212189px;}
.yb3{bottom:225.550346px;}
.y190{bottom:231.018150px;}
.y118{bottom:232.599449px;}
.y1bc{bottom:233.218540px;}
.y63{bottom:234.867142px;}
.y14{bottom:237.190502px;}
.yee{bottom:237.843452px;}
.y8a{bottom:242.212189px;}
.yb2{bottom:243.550346px;}
.y18f{bottom:245.118141px;}
.ycb{bottom:246.223503px;}
.y1bb{bottom:249.568525px;}
.y117{bottom:250.599449px;}
.y62{bottom:252.867142px;}
.y15e{bottom:254.219559px;}
.yed{bottom:255.843452px;}
.y18e{bottom:259.218155px;}
.y103{bottom:260.095505px;}
.y89{bottom:260.212189px;}
.yb1{bottom:261.550346px;}
.yca{bottom:264.223503px;}
.y1ba{bottom:265.918510px;}
.y131{bottom:268.599449px;}
.y39{bottom:269.636100px;}
.y61{bottom:270.867142px;}
.y15d{bottom:272.219559px;}
.y116{bottom:272.851341px;}
.y18d{bottom:273.318146px;}
.yec{bottom:278.095505px;}
.y88{bottom:278.212189px;}
.yb0{bottom:279.550346px;}
.yc9{bottom:282.223503px;}
.y1b9{bottom:282.268507px;}
.y143{bottom:282.347397px;}
.y13{bottom:283.556662px;}
.y18c{bottom:287.418159px;}
.y38{bottom:287.636100px;}
.y60{bottom:288.867142px;}
.y15c{bottom:290.219559px;}
.y115{bottom:290.851341px;}
.yeb{bottom:296.095505px;}
.y87{bottom:296.212189px;}
.yaf{bottom:297.550346px;}
.y1b8{bottom:298.618492px;}
.yc8{bottom:300.223503px;}
.y102{bottom:300.347397px;}
.y18b{bottom:301.518150px;}
.y37{bottom:305.636100px;}
.y5f{bottom:306.867142px;}
.y15b{bottom:308.219559px;}
.y114{bottom:308.851341px;}
.yea{bottom:314.095505px;}
.y86{bottom:314.212189px;}
.y1b7{bottom:314.968506px;}
.yae{bottom:315.550346px;}
.y18a{bottom:315.618141px;}
.yc7{bottom:318.223503px;}
.y101{bottom:318.347397px;}
.y5e{bottom:324.867142px;}
.y15a{bottom:326.219559px;}
.y113{bottom:326.851341px;}
.y189{bottom:329.718155px;}
.y130{bottom:331.103394px;}
.y85{bottom:332.212189px;}
.yad{bottom:333.550346px;}
.yc6{bottom:336.223503px;}
.ye9{bottom:336.347397px;}
.y36{bottom:340.643852px;}
.y5d{bottom:342.867142px;}
.y188{bottom:343.818146px;}
.y159{bottom:344.219559px;}
.y112{bottom:349.103394px;}
.y84{bottom:350.212189px;}
.yac{bottom:351.550346px;}
.yc5{bottom:354.223503px;}
.y1b6{bottom:356.830353px;}
.y187{bottom:357.918159px;}
.ye8{bottom:358.599449px;}
.y35{bottom:358.643852px;}
.y5c{bottom:360.867142px;}
.y158{bottom:362.219559px;}
.y111{bottom:367.103394px;}
.y83{bottom:368.212189px;}
.yab{bottom:369.550346px;}
.y186{bottom:372.018150px;}
.yc4{bottom:372.223503px;}
.y142{bottom:376.599449px;}
.ye7{bottom:376.599472px;}
.y34{bottom:376.643852px;}
.y5b{bottom:378.867142px;}
.y157{bottom:380.219559px;}
.y100{bottom:380.851341px;}
.y110{bottom:385.103394px;}
.y185{bottom:386.118164px;}
.y82{bottom:386.212189px;}
.yaa{bottom:387.550369px;}
.yc3{bottom:390.223480px;}
.ye6{bottom:394.599472px;}
.y33{bottom:394.643829px;}
.y5a{bottom:396.867142px;}
.y156{bottom:398.219559px;}
.yff{bottom:398.851364px;}
.y184{bottom:400.218155px;}
.y12f{bottom:403.103394px;}
.y81{bottom:404.212189px;}
.ya9{bottom:405.550369px;}
.y1b5{bottom:406.218155px;}
.y10f{bottom:407.355286px;}
.yc2{bottom:412.475418px;}
.y141{bottom:412.599472px;}
.y32{bottom:412.643829px;}
.y183{bottom:414.318146px;}
.y59{bottom:414.867142px;}
.y155{bottom:416.219559px;}
.ye5{bottom:416.851364px;}
.y1b4{bottom:420.618164px;}
.y12e{bottom:421.103394px;}
.y80{bottom:422.212189px;}
.y12{bottom:425.340279px;}
.y10e{bottom:425.355286px;}
.y182{bottom:428.418137px;}
.y140{bottom:430.599472px;}
.y31{bottom:430.643829px;}
.y58{bottom:432.867142px;}
.y154{bottom:434.219559px;}
.ye4{bottom:434.851364px;}
.y1b3{bottom:435.018127px;}
.ya8{bottom:436.306366px;}
.y12d{bottom:439.103394px;}
.y7f{bottom:440.212189px;}
.y181{bottom:442.518127px;}
.yc1{bottom:443.231232px;}
.y10d{bottom:447.607178px;}
.y11{bottom:448.449359px;}
.y30{bottom:448.643829px;}
.y1b2{bottom:449.418137px;}
.y57{bottom:450.867142px;}
.y153{bottom:452.219559px;}
.ya7{bottom:452.506348px;}
.yfe{bottom:452.851364px;}
.y180{bottom:456.618164px;}
.ye3{bottom:457.103394px;}
.y7e{bottom:458.212189px;}
.y10{bottom:460.437327px;}
.yc0{bottom:461.231232px;}
.y12c{bottom:461.355286px;}
.y1b1{bottom:463.818146px;}
.y10c{bottom:465.607178px;}
.y2f{bottom:466.643829px;}
.ya6{bottom:468.706338px;}
.y56{bottom:468.867142px;}
.y152{bottom:470.219559px;}
.y17f{bottom:470.718155px;}
.yfd{bottom:470.851364px;}
.ye2{bottom:475.103394px;}
.y7d{bottom:476.212189px;}
.y1b0{bottom:478.218155px;}
.ybf{bottom:479.231232px;}
.y12b{bottom:479.355286px;}
.y10b{bottom:483.607178px;}
.yf{bottom:483.778978px;}
.y2e{bottom:484.643829px;}
.y17e{bottom:484.818146px;}
.ya5{bottom:484.906338px;}
.y55{bottom:486.867142px;}
.yfc{bottom:488.851364px;}
.y1af{bottom:492.618164px;}
.y7c{bottom:494.212189px;}
.ye{bottom:495.766946px;}
.y151{bottom:496.723480px;}
.ybe{bottom:497.231232px;}
.ye1{bottom:497.355286px;}
.y17d{bottom:498.918137px;}
.ya4{bottom:501.106338px;}
.y10a{bottom:501.607178px;}
.y2d{bottom:502.643829px;}
.y54{bottom:504.867142px;}
.yfb{bottom:506.851364px;}
.y1ae{bottom:507.018127px;}
.yd{bottom:507.754913px;}
.y7b{bottom:512.212189px;}
.y17c{bottom:513.018127px;}
.ybd{bottom:515.231232px;}
.y12a{bottom:515.355286px;}
.ya3{bottom:517.306366px;}
.ye0{bottom:519.607178px;}
.yc{bottom:519.742881px;}
.y2c{bottom:520.643829px;}
.y1ad{bottom:521.418137px;}
.y53{bottom:522.867142px;}
.y13f{bottom:524.851364px;}
.y17b{bottom:527.118164px;}
.yfa{bottom:529.103394px;}
.y7a{bottom:530.212189px;}
.yb{bottom:531.720277px;}
.y129{bottom:533.355286px;}
.ya2{bottom:533.506348px;}
.y1ac{bottom:535.818146px;}
.ydf{bottom:537.607178px;}
.y2b{bottom:538.643829px;}
.ybc{bottom:539.609253px;}
.y52{bottom:540.867142px;}
.y17a{bottom:541.218155px;}
.ya{bottom:543.708245px;}
.y150{bottom:546.111282px;}
.y13e{bottom:547.103394px;}
.y79{bottom:548.212189px;}
.y1ab{bottom:550.218164px;}
.y128{bottom:551.355286px;}
.y179{bottom:555.318146px;}
.y109{bottom:555.607178px;}
.y9{bottom:555.696212px;}
.y51{bottom:558.867142px;}
.yde{bottom:559.859253px;}
.y2a{bottom:560.895905px;}
.ya1{bottom:562.462189px;}
.y14f{bottom:564.111282px;}
.y1aa{bottom:564.618164px;}
.y13d{bottom:565.103394px;}
.y78{bottom:566.212189px;}
.y178{bottom:569.418137px;}
.y127{bottom:573.607178px;}
.y50{bottom:576.867142px;}
.ydd{bottom:577.859253px;}
.y1a9{bottom:579.018127px;}
.ya0{bottom:580.462189px;}
.y14e{bottom:582.111282px;}
.y13c{bottom:583.103394px;}
.y177{bottom:583.518127px;}
.y77{bottom:584.212189px;}
.y1a8{bottom:593.418137px;}
.y4f{bottom:594.867142px;}
.ydc{bottom:595.859253px;}
.y176{bottom:597.618164px;}
.y9f{bottom:598.462189px;}
.y14d{bottom:600.111282px;}
.y76{bottom:602.212189px;}
.y13b{bottom:605.355311px;}
.y1a7{bottom:607.818146px;}
.y8{bottom:611.566061px;}
.y175{bottom:611.718146px;}
.y4e{bottom:612.867142px;}
.ydb{bottom:613.859253px;}
.y9e{bottom:616.462189px;}
.y14c{bottom:618.111282px;}
.y75{bottom:620.212189px;}
.y1a6{bottom:622.218155px;}
.y174{bottom:625.818146px;}
.y13a{bottom:627.607361px;}
.y7{bottom:628.046874px;}
.y4d{bottom:630.867142px;}
.yf9{bottom:631.859253px;}
.y9d{bottom:634.462189px;}
.yda{bottom:636.111282px;}
.y1a5{bottom:636.618164px;}
.y74{bottom:638.212189px;}
.y173{bottom:639.918137px;}
.y6{bottom:644.527687px;}
.y139{bottom:645.607361px;}
.y4c{bottom:648.867142px;}
.y126{bottom:649.859253px;}
.y1a4{bottom:651.018127px;}
.y9c{bottom:652.462189px;}
.y172{bottom:654.018127px;}
.yd9{bottom:654.111282px;}
.y73{bottom:656.212189px;}
.y5{bottom:662.308781px;}
.y29{bottom:663.935257px;}
.y1a3{bottom:665.418137px;}
.y4b{bottom:666.867142px;}
.y125{bottom:667.859253px;}
.y171{bottom:668.118164px;}
.y9b{bottom:670.462189px;}
.y14b{bottom:672.111282px;}
.y72{bottom:674.212189px;}
.yd8{bottom:676.363220px;}
.y1a2{bottom:679.818146px;}
.y170{bottom:682.218155px;}
.y4{bottom:683.282439px;}
.y4a{bottom:684.867142px;}
.y124{bottom:685.859253px;}
.y9a{bottom:688.462189px;}
.y138{bottom:690.111282px;}
.y71{bottom:692.212189px;}
.y28{bottom:692.435257px;}
.y1a1{bottom:694.218155px;}
.yd7{bottom:694.363220px;}
.y16f{bottom:696.318146px;}
.yf8{bottom:698.615112px;}
.y49{bottom:702.867142px;}
.y123{bottom:703.859253px;}
.y3{bottom:704.256097px;}
.y99{bottom:706.462189px;}
.y1a0{bottom:708.618164px;}
.y70{bottom:710.212189px;}
.y16e{bottom:710.418137px;}
.y137{bottom:712.363220px;}
.yd6{bottom:716.615112px;}
.y48{bottom:720.867142px;}
.y27{bottom:720.935257px;}
.y122{bottom:721.859253px;}
.y19f{bottom:723.018127px;}
.y98{bottom:724.462189px;}
.y16d{bottom:724.518127px;}
.y2{bottom:725.240326px;}
.y6f{bottom:728.212189px;}
.y14a{bottom:730.363220px;}
.yd5{bottom:734.615112px;}
.y19e{bottom:737.418146px;}
.y16c{bottom:738.618164px;}
.y47{bottom:738.867142px;}
.y97{bottom:742.462189px;}
.y121{bottom:744.111282px;}
.y6e{bottom:746.212189px;}
.y149{bottom:748.363220px;}
.y26{bottom:749.435257px;}
.y19d{bottom:751.818146px;}
.yf7{bottom:752.615112px;}
.y16b{bottom:752.718155px;}
.y46{bottom:756.867142px;}
.yd4{bottom:756.867188px;}
.y6d{bottom:764.212189px;}
.y19c{bottom:766.218155px;}
.y16a{bottom:766.818146px;}
.y96{bottom:768.966156px;}
.y148{bottom:770.615295px;}
.y45{bottom:774.867188px;}
.y19b{bottom:780.618164px;}
.y169{bottom:780.918182px;}
.y25{bottom:788.565125px;}
.y6c{bottom:790.716156px;}
.y44{bottom:792.867188px;}
.y168{bottom:795.018127px;}
.y43{bottom:833.260803px;}
.h9{height:21.933541px;}
.h7{height:25.066904px;}
.h8{height:25.134561px;}
.hc{height:28.200267px;}
.h6{height:31.333630px;}
.ha{height:31.418201px;}
.h10{height:34.359000px;}
.h5{height:34.466993px;}
.hb{height:35.093665px;}
.h1a{height:40.446000px;}
.h19{height:42.288000px;}
.h3{height:43.867081px;}
.h4{height:43.985481px;}
.h16{height:46.224000px;}
.h17{height:47.574000px;}
.h18{height:48.780000px;}
.h13{height:51.360000px;}
.h14{height:52.860000px;}
.hf{height:56.496000px;}
.h11{height:60.732000px;}
.h15{height:61.632000px;}
.h12{height:82.176000px;}
.h2{height:889.995595px;}
.h1{height:890.250000px;}
.h0{height:890.520000px;}
.hd{height:892.914000px;}
.he{height:893.250000px;}
.w1{width:629.250000px;}
.w3{width:629.292000px;}
.w2{width:629.294299px;}
.w0{width:629.295000px;}
.x0{left:0.000000px;}
.x3{left:32.961625px;}
.x1{left:38.955609px;}
.x5{left:80.787449px;}
.xc{left:87.686851px;}
.x7{left:93.543303px;}
.xd{left:95.669249px;}
.x2{left:104.878859px;}
.xa{left:106.439404px;}
.xe{left:212.598450px;}
.xb{left:264.321144px;}
.x4{left:308.653166px;}
.x8{left:445.146606px;}
.x9{left:526.917755px;}
.x6{left:548.467941px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.232000pt;}
.ls6{letter-spacing:-1.173333pt;}
.lsb{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.341333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160533pt;}
.ls3{letter-spacing:13.499720pt;}
.ls4{letter-spacing:20.820813pt;}
.ls7{letter-spacing:21.746408pt;}
.ls8{letter-spacing:22.710569pt;}
.ls5{letter-spacing:45.108813pt;}
.ls9{letter-spacing:46.998569pt;}
.ws5{word-spacing:-15.360000pt;}
.ws6{word-spacing:-13.546667pt;}
.ws3{word-spacing:-12.960533pt;}
.ws8d{word-spacing:-12.906667pt;}
.ws2{word-spacing:-12.848000pt;}
.ws4{word-spacing:-12.800000pt;}
.wsee{word-spacing:-12.192000pt;}
.ws0{word-spacing:-11.703151pt;}
.ws35{word-spacing:-8.805333pt;}
.ws87{word-spacing:-3.253333pt;}
.wsbf{word-spacing:-3.093333pt;}
.wsa8{word-spacing:-3.040533pt;}
.ws99{word-spacing:-2.880000pt;}
.ws60{word-spacing:-2.666667pt;}
.wsdb{word-spacing:-2.645333pt;}
.ws1f{word-spacing:-2.613333pt;}
.ws4b{word-spacing:-2.560000pt;}
.wsc8{word-spacing:-2.517760pt;}
.ws11{word-spacing:-2.506667pt;}
.ws3f{word-spacing:-2.400000pt;}
.wsd1{word-spacing:-2.304000pt;}
.ws6b{word-spacing:-2.293333pt;}
.ws63{word-spacing:-2.240533pt;}
.ws15{word-spacing:-2.186667pt;}
.wsea{word-spacing:-2.133333pt;}
.wsc{word-spacing:-2.132800pt;}
.wsc9{word-spacing:-2.048000pt;}
.ws92{word-spacing:-1.920000pt;}
.wsbe{word-spacing:-1.866667pt;}
.wse7{word-spacing:-1.792427pt;}
.ws6c{word-spacing:-1.760000pt;}
.wse6{word-spacing:-1.706240pt;}
.ws64{word-spacing:-1.653867pt;}
.wsd8{word-spacing:-1.620907pt;}
.ws10{word-spacing:-1.600000pt;}
.ws7c{word-spacing:-1.547200pt;}
.wse0{word-spacing:-1.536000pt;}
.wsd9{word-spacing:-1.450667pt;}
.ws1c{word-spacing:-1.439467pt;}
.wsb3{word-spacing:-1.386667pt;}
.wsb2{word-spacing:-1.332800pt;}
.wsa{word-spacing:-1.280000pt;}
.wsd{word-spacing:-1.226133pt;}
.wsd2{word-spacing:-1.194667pt;}
.ws67{word-spacing:-1.173333pt;}
.wsd3{word-spacing:-1.151573pt;}
.wsdf{word-spacing:-1.109333pt;}
.ws56{word-spacing:-1.066667pt;}
.wsa7{word-spacing:-1.013333pt;}
.wsf5{word-spacing:-0.980907pt;}
.ws41{word-spacing:-0.960533pt;}
.wsf1{word-spacing:-0.938667pt;}
.ws1e{word-spacing:-0.906667pt;}
.wsf3{word-spacing:-0.810667pt;}
.wse1{word-spacing:-0.768427pt;}
.wsae{word-spacing:-0.747200pt;}
.ws59{word-spacing:-0.639467pt;}
.ws13{word-spacing:-0.532800pt;}
.wsd7{word-spacing:-0.511573pt;}
.ws2d{word-spacing:-0.480000pt;}
.wsef{word-spacing:-0.469333pt;}
.ws98{word-spacing:-0.426667pt;}
.ws25{word-spacing:-0.373333pt;}
.wscb{word-spacing:-0.341333pt;}
.wsa9{word-spacing:-0.320000pt;}
.ws29{word-spacing:-0.160533pt;}
.ws77{word-spacing:-0.106667pt;}
.ws1{word-spacing:0.000000pt;}
.wsd0{word-spacing:0.043093pt;}
.wscc{word-spacing:0.085333pt;}
.ws50{word-spacing:0.106667pt;}
.wsa5{word-spacing:0.160533pt;}
.ws20{word-spacing:0.213333pt;}
.wsb4{word-spacing:0.266667pt;}
.ws52{word-spacing:0.320000pt;}
.wse4{word-spacing:0.341333pt;}
.ws66{word-spacing:0.373333pt;}
.wse5{word-spacing:0.426240pt;}
.wse{word-spacing:0.426667pt;}
.ws54{word-spacing:0.532800pt;}
.ws9c{word-spacing:0.586667pt;}
.wsf8{word-spacing:0.597760pt;}
.ws2e{word-spacing:0.639467pt;}
.wsf7{word-spacing:0.640000pt;}
.ws9b{word-spacing:0.693333pt;}
.ws17{word-spacing:0.800000pt;}
.wsde{word-spacing:0.810667pt;}
.wsd4{word-spacing:0.853333pt;}
.wsf6{word-spacing:0.896000pt;}
.ws85{word-spacing:0.906667pt;}
.wsf0{word-spacing:0.938667pt;}
.ws90{word-spacing:0.960533pt;}
.wse2{word-spacing:0.980907pt;}
.ws36{word-spacing:1.013333pt;}
.wsdc{word-spacing:1.066240pt;}
.wsac{word-spacing:1.066667pt;}
.wsce{word-spacing:1.109333pt;}
.ws8b{word-spacing:1.120000pt;}
.ws96{word-spacing:1.173333pt;}
.wsd5{word-spacing:1.408000pt;}
.ws57{word-spacing:1.493333pt;}
.ws53{word-spacing:1.547200pt;}
.wsd6{word-spacing:1.578667pt;}
.wsbc{word-spacing:1.600000pt;}
.ws32{word-spacing:1.653867pt;}
.wse8{word-spacing:1.664000pt;}
.ws62{word-spacing:1.706667pt;}
.ws24{word-spacing:1.760000pt;}
.ws43{word-spacing:1.813333pt;}
.wsda{word-spacing:1.834667pt;}
.ws39{word-spacing:1.866667pt;}
.ws97{word-spacing:1.920000pt;}
.ws6d{word-spacing:1.973333pt;}
.wsb1{word-spacing:2.026133pt;}
.wsfb{word-spacing:2.048000pt;}
.ws8e{word-spacing:2.132800pt;}
.wsa0{word-spacing:2.186667pt;}
.ws44{word-spacing:2.240533pt;}
.wsf{word-spacing:2.293333pt;}
.ws1a{word-spacing:2.347200pt;}
.ws49{word-spacing:2.400000pt;}
.wsf4{word-spacing:2.432427pt;}
.ws2a{word-spacing:2.453867pt;}
.ws4d{word-spacing:2.506667pt;}
.wsaf{word-spacing:2.560000pt;}
.ws68{word-spacing:2.613333pt;}
.wsed{word-spacing:2.645333pt;}
.ws55{word-spacing:2.666667pt;}
.ws65{word-spacing:2.719467pt;}
.ws86{word-spacing:2.773333pt;}
.wse3{word-spacing:2.858667pt;}
.ws5c{word-spacing:2.880000pt;}
.wsec{word-spacing:2.900907pt;}
.ws4f{word-spacing:2.932800pt;}
.wse9{word-spacing:2.944000pt;}
.wsf9{word-spacing:2.987093pt;}
.ws5a{word-spacing:3.040533pt;}
.ws58{word-spacing:3.093333pt;}
.ws9a{word-spacing:3.147200pt;}
.ws61{word-spacing:3.200000pt;}
.ws78{word-spacing:3.253333pt;}
.ws48{word-spacing:3.306667pt;}
.ws72{word-spacing:3.312000pt;}
.ws34{word-spacing:3.360000pt;}
.ws3d{word-spacing:3.413333pt;}
.ws3a{word-spacing:3.466667pt;}
.wscd{word-spacing:3.540907pt;}
.ws9e{word-spacing:3.573333pt;}
.ws4c{word-spacing:3.733867pt;}
.wscf{word-spacing:3.840000pt;}
.ws89{word-spacing:3.840533pt;}
.ws84{word-spacing:3.947200pt;}
.wsa2{word-spacing:4.000000pt;}
.wsb5{word-spacing:4.053333pt;}
.wsf2{word-spacing:4.095573pt;}
.wsc4{word-spacing:4.106667pt;}
.ws70{word-spacing:4.160000pt;}
.ws73{word-spacing:4.176480pt;}
.ws6a{word-spacing:4.212800pt;}
.wsfa{word-spacing:4.224000pt;}
.ws42{word-spacing:4.266667pt;}
.wsb7{word-spacing:4.319467pt;}
.wsc5{word-spacing:4.373333pt;}
.ws83{word-spacing:4.426133pt;}
.ws8a{word-spacing:4.480000pt;}
.wsb{word-spacing:4.533867pt;}
.ws7{word-spacing:4.586667pt;}
.ws28{word-spacing:4.693333pt;}
.ws3e{word-spacing:4.800000pt;}
.ws2b{word-spacing:4.853333pt;}
.ws5f{word-spacing:4.906667pt;}
.wseb{word-spacing:4.949333pt;}
.ws79{word-spacing:4.960000pt;}
.ws76{word-spacing:4.992000pt;}
.ws5d{word-spacing:5.066667pt;}
.ws14{word-spacing:5.119467pt;}
.ws45{word-spacing:5.173333pt;}
.ws88{word-spacing:5.280000pt;}
.ws1d{word-spacing:5.333867pt;}
.ws30{word-spacing:5.386667pt;}
.ws5e{word-spacing:5.440533pt;}
.wsc3{word-spacing:5.546667pt;}
.wsad{word-spacing:5.653333pt;}
.ws91{word-spacing:5.760000pt;}
.ws8c{word-spacing:5.812800pt;}
.ws47{word-spacing:5.919467pt;}
.ws7f{word-spacing:5.973333pt;}
.ws6e{word-spacing:6.080000pt;}
.ws74{word-spacing:6.096000pt;}
.ws4e{word-spacing:6.133867pt;}
.wsa4{word-spacing:6.186667pt;}
.ws31{word-spacing:6.240000pt;}
.wsb9{word-spacing:6.293333pt;}
.ws2f{word-spacing:6.400000pt;}
.wsab{word-spacing:6.453333pt;}
.ws19{word-spacing:6.506133pt;}
.ws5b{word-spacing:6.612800pt;}
.ws23{word-spacing:6.720533pt;}
.ws12{word-spacing:6.880000pt;}
.ws95{word-spacing:6.986667pt;}
.wsa1{word-spacing:7.040000pt;}
.ws27{word-spacing:7.093333pt;}
.ws40{word-spacing:7.360000pt;}
.ws4a{word-spacing:7.413867pt;}
.ws16{word-spacing:7.466667pt;}
.ws46{word-spacing:7.573333pt;}
.ws1b{word-spacing:7.627200pt;}
.ws71{word-spacing:7.728000pt;}
.ws21{word-spacing:7.733333pt;}
.ws51{word-spacing:7.840000pt;}
.ws22{word-spacing:7.892800pt;}
.wsa3{word-spacing:7.946667pt;}
.ws81{word-spacing:7.999467pt;}
.ws9{word-spacing:8.106133pt;}
.ws9d{word-spacing:8.160000pt;}
.wsbd{word-spacing:8.266667pt;}
.ws94{word-spacing:8.373333pt;}
.ws7b{word-spacing:8.640000pt;}
.wsa6{word-spacing:8.746667pt;}
.wsc6{word-spacing:8.799467pt;}
.wsdd{word-spacing:8.832000pt;}
.wsbb{word-spacing:8.960000pt;}
.ws3b{word-spacing:9.066667pt;}
.ws80{word-spacing:9.120533pt;}
.wsba{word-spacing:9.173333pt;}
.wsc1{word-spacing:9.280000pt;}
.wsca{word-spacing:9.472000pt;}
.ws6f{word-spacing:9.653333pt;}
.wsaa{word-spacing:9.707200pt;}
.ws38{word-spacing:9.760000pt;}
.ws2c{word-spacing:10.292800pt;}
.ws8f{word-spacing:10.346667pt;}
.wsb8{word-spacing:10.613867pt;}
.ws75{word-spacing:10.704480pt;}
.ws33{word-spacing:10.720000pt;}
.ws3c{word-spacing:10.773333pt;}
.ws9f{word-spacing:10.826667pt;}
.ws7a{word-spacing:10.933333pt;}
.wsb6{word-spacing:11.360000pt;}
.ws26{word-spacing:11.466667pt;}
.ws93{word-spacing:12.053333pt;}
.ws37{word-spacing:12.372800pt;}
.ws8{word-spacing:12.479467pt;}
.ws7d{word-spacing:13.120000pt;}
.wsc7{word-spacing:13.172800pt;}
.ws18{word-spacing:13.493867pt;}
.wsc0{word-spacing:14.346667pt;}
.wsb0{word-spacing:15.573867pt;}
.ws82{word-spacing:15.680533pt;}
.ws7e{word-spacing:18.240000pt;}
.ws69{word-spacing:20.480000pt;}
.wsc2{word-spacing:25.012800pt;}
._1c{margin-left:-37.331209pt;}
._1b{margin-left:-21.730118pt;}
._e{margin-left:-19.868826pt;}
._14{margin-left:-17.591472pt;}
._1a{margin-left:-15.109329pt;}
._17{margin-left:-13.558922pt;}
._18{margin-left:-11.972209pt;}
._19{margin-left:-11.069900pt;}
._16{margin-left:-9.665107pt;}
._12{margin-left:-8.469280pt;}
._13{margin-left:-6.794608pt;}
._f{margin-left:-5.370662pt;}
._11{margin-left:-4.112459pt;}
._10{margin-left:-3.040000pt;}
._b{margin-left:-1.928529pt;}
._c{margin-left:-0.913062pt;}
._7{width:1.578662pt;}
._4{width:3.078392pt;}
._5{width:4.288700pt;}
._d{width:5.236284pt;}
._15{width:6.175988pt;}
._0{width:10.419172pt;}
._8{width:11.366369pt;}
._6{width:15.365647pt;}
._1{width:16.290292pt;}
._9{width:19.943768pt;}
._3{width:22.574872pt;}
._a{width:36.046125pt;}
._2{width:654.490879pt;}
.fsf{font-size:0.533333pt;}
.fs4{font-size:26.311040pt;}
.fs3{font-size:30.069760pt;}
.fs6{font-size:33.076736pt;}
.fs7{font-size:33.828480pt;}
.fs9{font-size:34.666667pt;}
.fs2{font-size:37.587200pt;}
.fs1{font-size:41.345920pt;}
.fs5{font-size:42.097664pt;}
.fs10{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:52.622080pt;}
.fsc{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fsb{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.237880pt;}
.y24{bottom:31.581333pt;}
.y23{bottom:32.259066pt;}
.y42{bottom:33.215067pt;}
.y22{bottom:40.077352pt;}
.y21{bottom:50.733323pt;}
.y20{bottom:61.389294pt;}
.y120{bottom:63.636932pt;}
.y136{bottom:71.195999pt;}
.y93{bottom:71.299733pt;}
.y1f{bottom:72.045266pt;}
.yf6{bottom:72.077866pt;}
.y147{bottom:72.077871pt;}
.ybb{bottom:72.489202pt;}
.y167{bottom:74.246933pt;}
.yd3{bottom:75.747197pt;}
.y108{bottom:75.857463pt;}
.y41{bottom:76.217204pt;}
.y19a{bottom:77.349467pt;}
.y11f{bottom:79.636932pt;}
.y6b{bottom:80.770798pt;}
.y1e{bottom:81.150765pt;}
.y166{bottom:86.780263pt;}
.y135{bottom:87.196004pt;}
.y92{bottom:87.299733pt;}
.yf5{bottom:88.077871pt;}
.yba{bottom:88.489197pt;}
.y199{bottom:90.149465pt;}
.yd2{bottom:91.747203pt;}
.y107{bottom:91.857463pt;}
.y40{bottom:92.217204pt;}
.y11e{bottom:95.636932pt;}
.y6a{bottom:96.770803pt;}
.y1d{bottom:98.403290pt;}
.y165{bottom:99.313599pt;}
.y198{bottom:102.949463pt;}
.y134{bottom:103.196004pt;}
.y91{bottom:103.299733pt;}
.y146{bottom:104.077871pt;}
.yb9{bottom:104.489197pt;}
.yf4{bottom:107.857463pt;}
.y3f{bottom:108.217204pt;}
.yd1{bottom:111.526662pt;}
.y164{bottom:111.846933pt;}
.y69{bottom:112.770803pt;}
.y11d{bottom:115.416402pt;}
.y197{bottom:115.749471pt;}
.y133{bottom:119.196004pt;}
.y90{bottom:119.299733pt;}
.yb8{bottom:120.489197pt;}
.yf3{bottom:123.857463pt;}
.y3e{bottom:124.217204pt;}
.y163{bottom:124.380269pt;}
.yd0{bottom:127.526662pt;}
.y106{bottom:127.636932pt;}
.y196{bottom:128.549469pt;}
.y95{bottom:128.770793pt;}
.y68{bottom:128.770803pt;}
.y11c{bottom:135.196004pt;}
.y8f{bottom:135.299733pt;}
.yb7{bottom:136.489197pt;}
.y162{bottom:136.913605pt;}
.y132{bottom:138.975464pt;}
.yf2{bottom:139.857463pt;}
.y3d{bottom:140.217204pt;}
.y195{bottom:141.349467pt;}
.y105{bottom:143.636932pt;}
.y94{bottom:144.770793pt;}
.y67{bottom:144.770803pt;}
.ycf{bottom:147.306264pt;}
.y1c{bottom:148.525821pt;}
.y161{bottom:149.446930pt;}
.y8e{bottom:151.299733pt;}
.yb6{bottom:152.489197pt;}
.y194{bottom:154.149465pt;}
.y11b{bottom:154.975464pt;}
.y3c{bottom:156.217204pt;}
.y1b{bottom:156.513101pt;}
.yf1{bottom:159.636932pt;}
.y145{bottom:159.636943pt;}
.y66{bottom:160.770793pt;}
.y160{bottom:161.980265pt;}
.yce{bottom:163.306274pt;}
.y1a{bottom:163.842605pt;}
.y193{bottom:166.949463pt;}
.y8d{bottom:167.299733pt;}
.y1be{bottom:167.572000pt;}
.yb5{bottom:168.489197pt;}
.y19{bottom:170.495539pt;}
.y11a{bottom:170.975464pt;}
.y3b{bottom:172.217204pt;}
.yf0{bottom:175.636943pt;}
.y65{bottom:176.770793pt;}
.y18{bottom:177.157870pt;}
.ycd{bottom:179.306274pt;}
.y104{bottom:179.416402pt;}
.y192{bottom:179.749471pt;}
.y15f{bottom:182.072673pt;}
.y8c{bottom:183.299723pt;}
.y17{bottom:183.820202pt;}
.yb4{bottom:184.489197pt;}
.y119{bottom:186.975464pt;}
.y16{bottom:190.473136pt;}
.y144{bottom:191.636943pt;}
.y191{bottom:192.549459pt;}
.y64{bottom:192.770793pt;}
.y1bd{bottom:192.771993pt;}
.yef{bottom:195.416402pt;}
.y3a{bottom:195.776265pt;}
.y15{bottom:197.135467pt;}
.ycc{bottom:199.085733pt;}
.y8b{bottom:199.299723pt;}
.yb3{bottom:200.489197pt;}
.y190{bottom:205.349467pt;}
.y118{bottom:206.755066pt;}
.y1bc{bottom:207.305369pt;}
.y63{bottom:208.770793pt;}
.y14{bottom:210.836002pt;}
.yee{bottom:211.416402pt;}
.y8a{bottom:215.299723pt;}
.yb2{bottom:216.489197pt;}
.y18f{bottom:217.882792pt;}
.ycb{bottom:218.865336pt;}
.y1bb{bottom:221.838689pt;}
.y117{bottom:222.755066pt;}
.y62{bottom:224.770793pt;}
.y15e{bottom:225.972941pt;}
.yed{bottom:227.416402pt;}
.y18e{bottom:230.416138pt;}
.y103{bottom:231.196004pt;}
.y89{bottom:231.299723pt;}
.yb1{bottom:232.489197pt;}
.yca{bottom:234.865336pt;}
.y1ba{bottom:236.372009pt;}
.y131{bottom:238.755066pt;}
.y39{bottom:239.676533pt;}
.y61{bottom:240.770793pt;}
.y15d{bottom:241.972941pt;}
.y116{bottom:242.534526pt;}
.y18d{bottom:242.949463pt;}
.yec{bottom:247.196004pt;}
.y88{bottom:247.299723pt;}
.yb0{bottom:248.489197pt;}
.yc9{bottom:250.865336pt;}
.y1b9{bottom:250.905340pt;}
.y143{bottom:250.975464pt;}
.y13{bottom:252.050366pt;}
.y18c{bottom:255.482808pt;}
.y38{bottom:255.676533pt;}
.y60{bottom:256.770793pt;}
.y15c{bottom:257.972941pt;}
.y115{bottom:258.534526pt;}
.yeb{bottom:263.196004pt;}
.y87{bottom:263.299723pt;}
.yaf{bottom:264.489197pt;}
.y1b8{bottom:265.438660pt;}
.yc8{bottom:266.865336pt;}
.y102{bottom:266.975464pt;}
.y18b{bottom:268.016133pt;}
.y37{bottom:271.676533pt;}
.y5f{bottom:272.770793pt;}
.y15b{bottom:273.972941pt;}
.y114{bottom:274.534526pt;}
.yea{bottom:279.196004pt;}
.y86{bottom:279.299723pt;}
.y1b7{bottom:279.972005pt;}
.yae{bottom:280.489197pt;}
.y18a{bottom:280.549459pt;}
.yc7{bottom:282.865336pt;}
.y101{bottom:282.975464pt;}
.y5e{bottom:288.770793pt;}
.y15a{bottom:289.972941pt;}
.y113{bottom:290.534526pt;}
.y189{bottom:293.082804pt;}
.y130{bottom:294.314128pt;}
.y85{bottom:295.299723pt;}
.yad{bottom:296.489197pt;}
.yc6{bottom:298.865336pt;}
.ye9{bottom:298.975464pt;}
.y36{bottom:302.794535pt;}
.y5d{bottom:304.770793pt;}
.y188{bottom:305.616130pt;}
.y159{bottom:305.972941pt;}
.y112{bottom:310.314128pt;}
.y84{bottom:311.299723pt;}
.yac{bottom:312.489197pt;}
.yc5{bottom:314.865336pt;}
.y1b6{bottom:317.182536pt;}
.y187{bottom:318.149475pt;}
.ye8{bottom:318.755066pt;}
.y35{bottom:318.794535pt;}
.y5c{bottom:320.770793pt;}
.y158{bottom:321.972941pt;}
.y111{bottom:326.314128pt;}
.y83{bottom:327.299723pt;}
.yab{bottom:328.489197pt;}
.y186{bottom:330.682800pt;}
.yc4{bottom:330.865336pt;}
.y142{bottom:334.755066pt;}
.ye7{bottom:334.755086pt;}
.y34{bottom:334.794535pt;}
.y5b{bottom:336.770793pt;}
.y157{bottom:337.972941pt;}
.y100{bottom:338.534526pt;}
.y110{bottom:342.314128pt;}
.y185{bottom:343.216146pt;}
.y82{bottom:343.299723pt;}
.yaa{bottom:344.489217pt;}
.yc3{bottom:346.865316pt;}
.ye6{bottom:350.755086pt;}
.y33{bottom:350.794515pt;}
.y5a{bottom:352.770793pt;}
.y156{bottom:353.972941pt;}
.yff{bottom:354.534546pt;}
.y184{bottom:355.749471pt;}
.y12f{bottom:358.314128pt;}
.y81{bottom:359.299723pt;}
.ya9{bottom:360.489217pt;}
.y1b5{bottom:361.082804pt;}
.y10f{bottom:362.093587pt;}
.yc2{bottom:366.644816pt;}
.y141{bottom:366.755086pt;}
.y32{bottom:366.794515pt;}
.y183{bottom:368.282796pt;}
.y59{bottom:368.770793pt;}
.y155{bottom:369.972941pt;}
.ye5{bottom:370.534546pt;}
.y1b4{bottom:373.882812pt;}
.y12e{bottom:374.314128pt;}
.y80{bottom:375.299723pt;}
.y12{bottom:378.080248pt;}
.y10e{bottom:378.093587pt;}
.y182{bottom:380.816121pt;}
.y140{bottom:382.755086pt;}
.y31{bottom:382.794515pt;}
.y58{bottom:384.770793pt;}
.y154{bottom:385.972941pt;}
.ye4{bottom:386.534546pt;}
.y1b3{bottom:386.682780pt;}
.ya8{bottom:387.827881pt;}
.y12d{bottom:390.314128pt;}
.y7f{bottom:391.299723pt;}
.y181{bottom:393.349447pt;}
.yc1{bottom:393.983317pt;}
.y10d{bottom:397.873047pt;}
.y11{bottom:398.621653pt;}
.y30{bottom:398.794515pt;}
.y1b2{bottom:399.482788pt;}
.y57{bottom:400.770793pt;}
.y153{bottom:401.972941pt;}
.ya7{bottom:402.227865pt;}
.yfe{bottom:402.534546pt;}
.y180{bottom:405.882812pt;}
.ye3{bottom:406.314128pt;}
.y7e{bottom:407.299723pt;}
.y10{bottom:409.277624pt;}
.yc0{bottom:409.983317pt;}
.y12c{bottom:410.093587pt;}
.y1b1{bottom:412.282796pt;}
.y10c{bottom:413.873047pt;}
.y2f{bottom:414.794515pt;}
.ya6{bottom:416.627856pt;}
.y56{bottom:416.770793pt;}
.y152{bottom:417.972941pt;}
.y17f{bottom:418.416138pt;}
.yfd{bottom:418.534546pt;}
.ye2{bottom:422.314128pt;}
.y7d{bottom:423.299723pt;}
.y1b0{bottom:425.082804pt;}
.ybf{bottom:425.983317pt;}
.y12b{bottom:426.093587pt;}
.y10b{bottom:429.873047pt;}
.yf{bottom:430.025758pt;}
.y2e{bottom:430.794515pt;}
.y17e{bottom:430.949463pt;}
.ya5{bottom:431.027856pt;}
.y55{bottom:432.770793pt;}
.yfc{bottom:434.534546pt;}
.y1af{bottom:437.882812pt;}
.y7c{bottom:439.299723pt;}
.ye{bottom:440.681730pt;}
.y151{bottom:441.531982pt;}
.ybe{bottom:441.983317pt;}
.ye1{bottom:442.093587pt;}
.y17d{bottom:443.482788pt;}
.ya4{bottom:445.427856pt;}
.y10a{bottom:445.873047pt;}
.y2d{bottom:446.794515pt;}
.y54{bottom:448.770793pt;}
.yfb{bottom:450.534546pt;}
.y1ae{bottom:450.682780pt;}
.yd{bottom:451.337701pt;}
.y7b{bottom:455.299723pt;}
.y17c{bottom:456.016113pt;}
.ybd{bottom:457.983317pt;}
.y12a{bottom:458.093587pt;}
.ya3{bottom:459.827881pt;}
.ye0{bottom:461.873047pt;}
.yc{bottom:461.993672pt;}
.y2c{bottom:462.794515pt;}
.y1ad{bottom:463.482788pt;}
.y53{bottom:464.770793pt;}
.y13f{bottom:466.534546pt;}
.y17b{bottom:468.549479pt;}
.yfa{bottom:470.314128pt;}
.y7a{bottom:471.299723pt;}
.yb{bottom:472.640246pt;}
.y129{bottom:474.093587pt;}
.ya2{bottom:474.227865pt;}
.y1ac{bottom:476.282796pt;}
.ydf{bottom:477.873047pt;}
.y2b{bottom:478.794515pt;}
.ybc{bottom:479.652669pt;}
.y52{bottom:480.770793pt;}
.y17a{bottom:481.082804pt;}
.ya{bottom:483.296218pt;}
.y150{bottom:485.432251pt;}
.y13e{bottom:486.314128pt;}
.y79{bottom:487.299723pt;}
.y1ab{bottom:489.082812pt;}
.y128{bottom:490.093587pt;}
.y179{bottom:493.616130pt;}
.y109{bottom:493.873047pt;}
.y9{bottom:493.952189pt;}
.y51{bottom:496.770793pt;}
.yde{bottom:497.652669pt;}
.y2a{bottom:498.574137pt;}
.ya1{bottom:499.966390pt;}
.y14f{bottom:501.432251pt;}
.y1aa{bottom:501.882812pt;}
.y13d{bottom:502.314128pt;}
.y78{bottom:503.299723pt;}
.y178{bottom:506.149455pt;}
.y127{bottom:509.873047pt;}
.y50{bottom:512.770793pt;}
.ydd{bottom:513.652669pt;}
.y1a9{bottom:514.682780pt;}
.ya0{bottom:515.966390pt;}
.y14e{bottom:517.432251pt;}
.y13c{bottom:518.314128pt;}
.y177{bottom:518.682780pt;}
.y77{bottom:519.299723pt;}
.y1a8{bottom:527.482788pt;}
.y4f{bottom:528.770793pt;}
.ydc{bottom:529.652669pt;}
.y176{bottom:531.216146pt;}
.y9f{bottom:531.966390pt;}
.y14d{bottom:533.432251pt;}
.y76{bottom:535.299723pt;}
.y13b{bottom:538.093610pt;}
.y1a7{bottom:540.282796pt;}
.y8{bottom:543.614277pt;}
.y175{bottom:543.749463pt;}
.y4e{bottom:544.770793pt;}
.ydb{bottom:545.652669pt;}
.y9e{bottom:547.966390pt;}
.y14c{bottom:549.432251pt;}
.y75{bottom:551.299723pt;}
.y1a6{bottom:553.082804pt;}
.y174{bottom:556.282796pt;}
.y13a{bottom:557.873210pt;}
.y7{bottom:558.263888pt;}
.y4d{bottom:560.770793pt;}
.yf9{bottom:561.652669pt;}
.y9d{bottom:563.966390pt;}
.yda{bottom:565.432251pt;}
.y1a5{bottom:565.882812pt;}
.y74{bottom:567.299723pt;}
.y173{bottom:568.816121pt;}
.y6{bottom:572.913499pt;}
.y139{bottom:573.873210pt;}
.y4c{bottom:576.770793pt;}
.y126{bottom:577.652669pt;}
.y1a4{bottom:578.682780pt;}
.y9c{bottom:579.966390pt;}
.y172{bottom:581.349447pt;}
.yd9{bottom:581.432251pt;}
.y73{bottom:583.299723pt;}
.y5{bottom:588.718917pt;}
.y29{bottom:590.164673pt;}
.y1a3{bottom:591.482788pt;}
.y4b{bottom:592.770793pt;}
.y125{bottom:593.652669pt;}
.y171{bottom:593.882812pt;}
.y9b{bottom:595.966390pt;}
.y14b{bottom:597.432251pt;}
.y72{bottom:599.299723pt;}
.yd8{bottom:601.211751pt;}
.y1a2{bottom:604.282796pt;}
.y170{bottom:606.416138pt;}
.y4{bottom:607.362168pt;}
.y4a{bottom:608.770793pt;}
.y124{bottom:609.652669pt;}
.y9a{bottom:611.966390pt;}
.y138{bottom:613.432251pt;}
.y71{bottom:615.299723pt;}
.y28{bottom:615.498006pt;}
.y1a1{bottom:617.082804pt;}
.yd7{bottom:617.211751pt;}
.y16f{bottom:618.949463pt;}
.yf8{bottom:620.991211pt;}
.y49{bottom:624.770793pt;}
.y123{bottom:625.652669pt;}
.y3{bottom:626.005419pt;}
.y99{bottom:627.966390pt;}
.y1a0{bottom:629.882812pt;}
.y70{bottom:631.299723pt;}
.y16e{bottom:631.482788pt;}
.y137{bottom:633.211751pt;}
.yd6{bottom:636.991211pt;}
.y48{bottom:640.770793pt;}
.y27{bottom:640.831340pt;}
.y122{bottom:641.652669pt;}
.y19f{bottom:642.682780pt;}
.y98{bottom:643.966390pt;}
.y16d{bottom:644.016113pt;}
.y2{bottom:644.658067pt;}
.y6f{bottom:647.299723pt;}
.y14a{bottom:649.211751pt;}
.yd5{bottom:652.991211pt;}
.y19e{bottom:655.482796pt;}
.y16c{bottom:656.549479pt;}
.y47{bottom:656.770793pt;}
.y97{bottom:659.966390pt;}
.y121{bottom:661.432251pt;}
.y6e{bottom:663.299723pt;}
.y149{bottom:665.211751pt;}
.y26{bottom:666.164673pt;}
.y19d{bottom:668.282796pt;}
.yf7{bottom:668.991211pt;}
.y16b{bottom:669.082804pt;}
.y46{bottom:672.770793pt;}
.yd4{bottom:672.770833pt;}
.y6d{bottom:679.299723pt;}
.y19c{bottom:681.082804pt;}
.y16a{bottom:681.616130pt;}
.y96{bottom:683.525472pt;}
.y148{bottom:684.991374pt;}
.y45{bottom:688.770833pt;}
.y19b{bottom:693.882812pt;}
.y169{bottom:694.149495pt;}
.y25{bottom:700.946777pt;}
.y6c{bottom:702.858805pt;}
.y44{bottom:704.770833pt;}
.y168{bottom:706.682780pt;}
.y43{bottom:740.676270pt;}
.h9{height:19.496481pt;}
.h7{height:22.281692pt;}
.h8{height:22.341832pt;}
.hc{height:25.066904pt;}
.h6{height:27.852115pt;}
.ha{height:27.927290pt;}
.h10{height:30.541333pt;}
.h5{height:30.637327pt;}
.hb{height:31.194369pt;}
.h1a{height:35.952000pt;}
.h19{height:37.589333pt;}
.h3{height:38.992961pt;}
.h4{height:39.098205pt;}
.h16{height:41.088000pt;}
.h17{height:42.288000pt;}
.h18{height:43.360000pt;}
.h13{height:45.653333pt;}
.h14{height:46.986667pt;}
.hf{height:50.218667pt;}
.h11{height:53.984000pt;}
.h15{height:54.784000pt;}
.h12{height:73.045333pt;}
.h2{height:791.107195pt;}
.h1{height:791.333333pt;}
.h0{height:791.573333pt;}
.hd{height:793.701333pt;}
.he{height:794.000000pt;}
.w1{width:559.333333pt;}
.w3{width:559.370667pt;}
.w2{width:559.372710pt;}
.w0{width:559.373333pt;}
.x0{left:0.000000pt;}
.x3{left:29.299222pt;}
.x1{left:34.627208pt;}
.x5{left:71.811066pt;}
.xc{left:77.943868pt;}
.x7{left:83.149602pt;}
.xd{left:85.039332pt;}
.x2{left:93.225653pt;}
.xa{left:94.612803pt;}
.xe{left:188.976400pt;}
.xb{left:234.952128pt;}
.x4{left:274.358370pt;}
.x8{left:395.685872pt;}
.x9{left:468.371338pt;}
.x6{left:487.527059pt;}
}




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