
    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_60a778322471ad6a325c600c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_e45cafe8b82460072ec5f1fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_ec4531f6964a9c1905f21be8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_794ec9a922fd27d048ce64f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_7c4a77ddd9475a10c41ef005.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.222000;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_fbc50094c0e69c1a8221d258.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.801000;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_86ccb02ecb19d661b24f5c3d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_a108d611d1d250febbfe1aab.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_8a6af6401875a690feb75b03.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202000;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_b4b1d5773fac2294838dd180.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.668000;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_c6086bef6129677fde73a460.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.714000;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_337d1fb553ba527ea84eb991.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005000;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_fa44e68b1ff6616ca9b6b2f7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_40cd0fb04304bd8d172e791d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.027000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);}
.m1{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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v8{vertical-align:3.402000px;}
.v6{vertical-align:18.000000px;}
.v5{vertical-align:19.139780px;}
.v4{vertical-align:23.461565px;}
.v2{vertical-align:26.399780px;}
.v7{vertical-align:54.000000px;}
.ls4{letter-spacing:-4.667933px;}
.ls3{letter-spacing:-1.050000px;}
.ls6{letter-spacing:-0.529200px;}
.ls5{letter-spacing:-0.352800px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000002px;}
.ls8{letter-spacing:0.000034px;}
.ls9{letter-spacing:0.000070px;}
.ls7{letter-spacing:0.019181px;}
.lsb{letter-spacing:0.150130px;}
.lsc{letter-spacing:0.225194px;}
.lsd{letter-spacing:1.125972px;}
.lsa{letter-spacing:1.876621px;}
.ls0{letter-spacing:5.460000px;}
.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;}
}
.ws6{word-spacing:-25.284635px;}
.ws1{word-spacing:-21.216000px;}
.wsd{word-spacing:-13.818000px;}
.wsc{word-spacing:-13.288800px;}
.ws3{word-spacing:-12.792600px;}
.wsb{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.wsbc{word-spacing:-12.310630px;}
.wsbb{word-spacing:-11.559982px;}
.wsba{word-spacing:-10.659204px;}
.wsb9{word-spacing:-10.584140px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.wsab{word-spacing:-9.855000px;}
.ws54{word-spacing:-9.672600px;}
.wsaa{word-spacing:-9.315000px;}
.ws90{word-spacing:-8.904000px;}
.ws5{word-spacing:-8.148000px;}
.ws91{word-spacing:-7.358400px;}
.ws7{word-spacing:-6.898500px;}
.ws65{word-spacing:-6.468000px;}
.ws9{word-spacing:-5.640000px;}
.wsa8{word-spacing:-4.512000px;}
.wsa7{word-spacing:-3.936000px;}
.wsa9{word-spacing:-2.016000px;}
.wsbd{word-spacing:-1.876621px;}
.ws37{word-spacing:-1.411200px;}
.ws12{word-spacing:-1.058400px;}
.ws67{word-spacing:-0.823200px;}
.ws3e{word-spacing:-0.705600px;}
.ws8b{word-spacing:-0.646800px;}
.ws21{word-spacing:-0.529200px;}
.ws95{word-spacing:-0.352800px;}
.ws35{word-spacing:-0.294000px;}
.ws8{word-spacing:0.000000px;}
.ws48{word-spacing:0.058800px;}
.ws64{word-spacing:0.235200px;}
.ws3b{word-spacing:0.294000px;}
.ws9f{word-spacing:0.411600px;}
.ws20{word-spacing:0.470400px;}
.ws6d{word-spacing:0.529200px;}
.ws8a{word-spacing:0.588000px;}
.ws28{word-spacing:0.705600px;}
.ws3d{word-spacing:0.940800px;}
.ws79{word-spacing:0.999600px;}
.ws88{word-spacing:1.058400px;}
.ws5d{word-spacing:1.176000px;}
.ws52{word-spacing:1.234800px;}
.ws9d{word-spacing:1.528800px;}
.ws26{word-spacing:1.587600px;}
.ws8c{word-spacing:1.705200px;}
.ws60{word-spacing:1.822800px;}
.wsa3{word-spacing:1.940400px;}
.ws2d{word-spacing:2.175600px;}
.ws8e{word-spacing:2.234400px;}
.ws2e{word-spacing:2.293200px;}
.ws5b{word-spacing:2.469600px;}
.ws81{word-spacing:2.528400px;}
.ws1f{word-spacing:2.587200px;}
.ws38{word-spacing:2.646000px;}
.ws3c{word-spacing:2.704800px;}
.ws13{word-spacing:2.763600px;}
.wsa1{word-spacing:2.822400px;}
.wsa2{word-spacing:2.881200px;}
.ws29{word-spacing:2.940000px;}
.ws6b{word-spacing:2.998800px;}
.ws23{word-spacing:3.057600px;}
.ws66{word-spacing:3.234000px;}
.ws82{word-spacing:3.292800px;}
.ws16{word-spacing:3.351600px;}
.ws57{word-spacing:3.469200px;}
.ws2b{word-spacing:3.528000px;}
.ws80{word-spacing:3.586800px;}
.ws97{word-spacing:3.704400px;}
.ws1d{word-spacing:3.939600px;}
.ws1a{word-spacing:3.998400px;}
.ws68{word-spacing:4.057200px;}
.ws76{word-spacing:4.410000px;}
.ws27{word-spacing:4.468800px;}
.ws85{word-spacing:4.527600px;}
.ws46{word-spacing:4.586400px;}
.ws10{word-spacing:4.645200px;}
.wsa{word-spacing:4.667933px;}
.ws93{word-spacing:4.762800px;}
.ws62{word-spacing:5.115600px;}
.ws5c{word-spacing:5.174400px;}
.ws7f{word-spacing:5.233200px;}
.ws8d{word-spacing:5.350800px;}
.ws49{word-spacing:5.409600px;}
.ws1b{word-spacing:5.468400px;}
.ws47{word-spacing:5.527200px;}
.ws43{word-spacing:5.644800px;}
.ws53{word-spacing:5.703600px;}
.ws77{word-spacing:5.762400px;}
.ws7c{word-spacing:5.880000px;}
.ws15{word-spacing:5.997600px;}
.ws9b{word-spacing:6.056400px;}
.ws30{word-spacing:6.115200px;}
.ws1e{word-spacing:6.703200px;}
.ws31{word-spacing:6.879600px;}
.ws9c{word-spacing:6.997200px;}
.ws94{word-spacing:7.114800px;}
.ws22{word-spacing:7.232400px;}
.ws75{word-spacing:7.467600px;}
.wsaf{word-spacing:7.879200px;}
.ws4b{word-spacing:7.996800px;}
.wsa0{word-spacing:8.526000px;}
.ws5a{word-spacing:8.643600px;}
.ws3a{word-spacing:8.702400px;}
.wsf{word-spacing:8.761200px;}
.ws39{word-spacing:8.820000px;}
.ws72{word-spacing:8.996400px;}
.ws11{word-spacing:9.231600px;}
.ws33{word-spacing:9.408000px;}
.ws73{word-spacing:9.702000px;}
.ws32{word-spacing:9.760800px;}
.ws4c{word-spacing:10.054800px;}
.ws9a{word-spacing:10.113600px;}
.wsa6{word-spacing:10.231200px;}
.ws19{word-spacing:10.407600px;}
.wsb2{word-spacing:10.466400px;}
.ws3f{word-spacing:10.525200px;}
.ws6f{word-spacing:10.995600px;}
.ws17{word-spacing:11.113200px;}
.ws42{word-spacing:11.289600px;}
.ws99{word-spacing:11.407200px;}
.ws55{word-spacing:11.583600px;}
.ws51{word-spacing:11.701200px;}
.ws7a{word-spacing:11.818800px;}
.ws44{word-spacing:11.936400px;}
.ws92{word-spacing:12.112800px;}
.ws4a{word-spacing:12.230400px;}
.ws25{word-spacing:12.348000px;}
.ws58{word-spacing:12.406800px;}
.ws36{word-spacing:12.465600px;}
.ws61{word-spacing:12.642000px;}
.ws4f{word-spacing:12.700800px;}
.ws5e{word-spacing:12.818400px;}
.ws5f{word-spacing:12.877200px;}
.ws6c{word-spacing:12.936000px;}
.ws63{word-spacing:13.053600px;}
.ws8f{word-spacing:13.171200px;}
.ws96{word-spacing:13.406400px;}
.ws2c{word-spacing:13.465200px;}
.wse{word-spacing:13.759200px;}
.ws86{word-spacing:13.935600px;}
.wsb6{word-spacing:14.229600px;}
.ws69{word-spacing:14.406000px;}
.ws18{word-spacing:14.464800px;}
.ws2f{word-spacing:14.582400px;}
.wsa5{word-spacing:14.641200px;}
.ws24{word-spacing:14.700000px;}
.wsa4{word-spacing:14.876400px;}
.ws87{word-spacing:15.111600px;}
.ws4e{word-spacing:15.229200px;}
.ws7d{word-spacing:15.640800px;}
.ws34{word-spacing:16.052400px;}
.ws41{word-spacing:16.111200px;}
.wsae{word-spacing:16.170000px;}
.ws45{word-spacing:16.228800px;}
.ws59{word-spacing:16.758000px;}
.ws84{word-spacing:16.993200px;}
.ws7b{word-spacing:17.757600px;}
.ws89{word-spacing:18.051600px;}
.ws71{word-spacing:18.404400px;}
.ws1c{word-spacing:18.757200px;}
.ws70{word-spacing:18.816000px;}
.wsb5{word-spacing:19.639200px;}
.ws2a{word-spacing:19.992000px;}
.ws6e{word-spacing:20.462400px;}
.wsb3{word-spacing:20.874000px;}
.ws14{word-spacing:20.932800px;}
.ws74{word-spacing:21.697200px;}
.ws4d{word-spacing:21.873600px;}
.ws56{word-spacing:21.991200px;}
.ws78{word-spacing:22.520400px;}
.ws9e{word-spacing:23.343600px;}
.ws83{word-spacing:23.872800px;}
.wsb0{word-spacing:24.108000px;}
.wsb7{word-spacing:24.138000px;}
.wsb4{word-spacing:24.696000px;}
.wsb1{word-spacing:24.872400px;}
.ws40{word-spacing:25.813200px;}
.ws7e{word-spacing:25.930800px;}
.ws98{word-spacing:27.106800px;}
.wsb8{word-spacing:34.506000px;}
.ws6a{word-spacing:39.160800px;}
.ws50{word-spacing:49.686000px;}
.wsad{word-spacing:296.592000px;}
.wsac{word-spacing:309.648000px;}
._12{margin-left:-46.099200px;}
._5b{margin-left:-34.651211px;}
._19{margin-left:-29.141997px;}
._18{margin-left:-27.247203px;}
._15{margin-left:-24.860639px;}
._5c{margin-left:-18.414000px;}
._d{margin-left:-17.224812px;}
._17{margin-left:-14.637641px;}
._1b{margin-left:-13.292359px;}
._1c{margin-left:-11.636383px;}
._11{margin-left:-9.933589px;}
._13{margin-left:-8.548803px;}
._10{margin-left:-7.385997px;}
._8{margin-left:-5.719206px;}
._a{margin-left:-4.648811px;}
._5{margin-left:-3.418789px;}
._2{margin-left:-2.371189px;}
._0{margin-left:-1.060806px;}
._3{width:1.348789px;}
._7{width:2.606422px;}
._1{width:4.032000px;}
._9{width:5.154000px;}
._1a{width:6.229176px;}
._c{width:8.345989px;}
._b{width:9.529211px;}
._e{width:11.313120px;}
._1d{width:12.823623px;}
._4{width:14.380806px;}
._f{width:15.899993px;}
._6{width:17.159986px;}
._14{width:18.804239px;}
._1e{width:23.772977px;}
._16{width:25.266361px;}
._5d{width:34.400406px;}
._59{width:40.996806px;}
._3c{width:45.148811px;}
._40{width:60.427211px;}
._52{width:109.012767px;}
._51{width:123.976811px;}
._4b{width:126.280811px;}
._3f{width:147.400811px;}
._47{width:149.704811px;}
._4c{width:154.032000px;}
._48{width:169.104000px;}
._5e{width:171.648000px;}
._58{width:173.232000px;}
._4f{width:177.456000px;}
._4e{width:181.920000px;}
._45{width:184.176000px;}
._3e{width:186.480000px;}
._44{width:209.904000px;}
._4a{width:213.836367px;}
._49{width:215.280000px;}
._50{width:222.918000px;}
._4d{width:231.654000px;}
._53{width:237.120000px;}
._57{width:244.708806px;}
._42{width:251.904000px;}
._54{width:265.824000px;}
._56{width:271.444806px;}
._41{width:277.632000px;}
._60{width:285.976811px;}
._5a{width:301.056000px;}
._3d{width:303.695975px;}
._55{width:307.104000px;}
._5f{width:320.104797px;}
._43{width:332.976000px;}
._46{width:376.075211px;}
._2d{width:454.368000px;}
._2f{width:529.727990px;}
._21{width:539.800811px;}
._38{width:553.151990px;}
._2e{width:555.455956px;}
._33{width:565.528789px;}
._26{width:572.255990px;}
._31{width:576.575990px;}
._23{width:578.879956px;}
._29{width:584.927990px;}
._28{width:588.952789px;}
._25{width:597.983956px;}
._24{width:606.398400px;}
._20{width:634.079956px;}
._36{width:667.727990px;}
._27{width:686.640000px;}
._35{width:693.455956px;}
._2b{width:716.971211px;}
._2c{width:722.836735px;}
._3b{width:765.556767px;}
._37{width:870.380367px;}
._34{width:871.824000px;}
._3a{width:879.462000px;}
._39{width:888.198000px;}
._22{width:960.261657px;}
._1f{width:978.816000px;}
._30{width:989.520000px;}
._32{width:1032.619211px;}
._2a{width:2194.996747px;}
.fc4{color:rgb(78,78,77);}
.fc3{color:rgb(85,85,84);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:14.074549px;}
.fsa{font-size:31.500000px;}
.fsf{font-size:33.600000px;}
.fs10{font-size:36.000000px;}
.fs12{font-size:37.532410px;}
.fs11{font-size:39.900000px;}
.fsc{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fsd{font-size:55.199999px;}
.fsb{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs8{font-size:97.248596px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:6.588990px;}
.y2a{bottom:33.016296px;}
.y27{bottom:79.008299px;}
.y26{bottom:91.009799px;}
.y25{bottom:103.011299px;}
.y128{bottom:106.463696px;}
.y145{bottom:108.338395px;}
.y178{bottom:110.737953px;}
.y61{bottom:111.556503px;}
.y8e{bottom:112.354045px;}
.y24{bottom:115.012799px;}
.y1bd{bottom:115.974000px;}
.y177{bottom:124.237953px;}
.y10e{bottom:124.391845px;}
.y127{bottom:124.456496px;}
.yf5{bottom:124.628095px;}
.yc8{bottom:124.656895px;}
.y144{bottom:126.331195px;}
.y23{bottom:127.014299px;}
.y60{bottom:129.556503px;}
.y8d{bottom:130.346845px;}
.y1bb{bottom:133.764149px;}
.y176{bottom:137.737953px;}
.y22{bottom:139.015799px;}
.y1bc{bottom:139.914000px;}
.y10d{bottom:142.384645px;}
.y126{bottom:142.449296px;}
.yf4{bottom:142.620895px;}
.yc7{bottom:142.649695px;}
.y143{bottom:144.323995px;}
.y5f{bottom:147.599703px;}
.y8c{bottom:148.339645px;}
.y21{bottom:151.017299px;}
.y175{bottom:151.237953px;}
.y1b8{bottom:151.773148px;}
.y10c{bottom:160.377445px;}
.y125{bottom:160.442096px;}
.yc6{bottom:160.642495px;}
.yf3{bottom:160.678495px;}
.y142{bottom:162.316795px;}
.y20{bottom:163.018799px;}
.y174{bottom:164.737953px;}
.y5e{bottom:165.592503px;}
.y8b{bottom:166.354045px;}
.y1ba{bottom:167.479649px;}
.y1b9{bottom:168.058205px;}
.y1b6{bottom:168.927749px;}
.y173{bottom:178.237953px;}
.y10b{bottom:178.420496px;}
.y124{bottom:178.434896px;}
.yc5{bottom:178.635295px;}
.yf2{bottom:178.671295px;}
.y5d{bottom:183.585303px;}
.y8a{bottom:184.346845px;}
.y1b5{bottom:184.824749px;}
.y1b7{bottom:185.888248px;}
.y1b3{bottom:187.776139px;}
.y172{bottom:191.737953px;}
.y10a{bottom:196.413296px;}
.y123{bottom:196.427696px;}
.yc4{bottom:196.628095px;}
.yf1{bottom:196.664095px;}
.y31{bottom:200.893799px;}
.y5c{bottom:201.578103px;}
.y89{bottom:202.339645px;}
.y1b2{bottom:202.539139px;}
.y1b4{bottom:204.131400px;}
.y171{bottom:205.237953px;}
.y1b0{bottom:205.759204px;}
.y30{bottom:214.393799px;}
.y109{bottom:214.406096px;}
.y122{bottom:214.420496px;}
.yc3{bottom:214.620895px;}
.yf0{bottom:214.656895px;}
.y170{bottom:218.737953px;}
.y5b{bottom:219.570903px;}
.y1af{bottom:220.060204px;}
.y88{bottom:220.368445px;}
.y1a1{bottom:221.276997px;}
.y1b1{bottom:221.440041px;}
.y1ad{bottom:223.765945px;}
.y2f{bottom:227.893799px;}
.y108{bottom:232.398896px;}
.y121{bottom:232.413296px;}
.yef{bottom:232.649695px;}
.yc2{bottom:232.656895px;}
.y5a{bottom:237.563703px;}
.y1ac{bottom:237.636445px;}
.y1a0{bottom:238.276497px;}
.y87{bottom:238.361245px;}
.y1ae{bottom:238.801346px;}
.y1a9{bottom:241.768497px;}
.y1ab{bottom:241.773445px;}
.y2e{bottom:245.893799px;}
.y107{bottom:250.391696px;}
.y120{bottom:250.406096px;}
.yee{bottom:250.642495px;}
.yc1{bottom:250.649695px;}
.y59{bottom:255.556503px;}
.y1a8{bottom:255.859497px;}
.y86{bottom:256.354045px;}
.y1aa{bottom:256.813042px;}
.y2d{bottom:259.393799px;}
.y1a6{bottom:259.784994px;}
.y106{bottom:268.384496px;}
.y2c{bottom:268.393799px;}
.y11f{bottom:268.398896px;}
.yed{bottom:268.635295px;}
.yc0{bottom:268.642495px;}
.y58{bottom:273.556503px;}
.y85{bottom:274.346845px;}
.y1be{bottom:282.343941px;}
.y105{bottom:286.377296px;}
.y11e{bottom:286.391696px;}
.yec{bottom:286.628095px;}
.ybf{bottom:286.635295px;}
.y1a5{bottom:286.676994px;}
.y16f{bottom:287.737953px;}
.y57{bottom:291.585143px;}
.y84{bottom:292.339645px;}
.y1a4{bottom:300.176994px;}
.y11d{bottom:304.384496px;}
.y104{bottom:304.406096px;}
.yeb{bottom:304.620895px;}
.ybe{bottom:304.628095px;}
.y56{bottom:309.577943px;}
.y83{bottom:310.361245px;}
.y1a3{bottom:313.676994px;}
.y16e{bottom:314.737953px;}
.y11c{bottom:322.377296px;}
.y103{bottom:322.398896px;}
.ybd{bottom:322.620895px;}
.yea{bottom:322.628095px;}
.y1a2{bottom:327.176994px;}
.y55{bottom:327.570743px;}
.y16d{bottom:328.237953px;}
.y82{bottom:328.354045px;}
.y102{bottom:340.391696px;}
.y11b{bottom:340.398919px;}
.ye9{bottom:340.620895px;}
.ybc{bottom:340.628095px;}
.y54{bottom:345.563543px;}
.y16c{bottom:346.237953px;}
.y81{bottom:346.346845px;}
.y1f{bottom:348.815094px;}
.y19f{bottom:351.492761px;}
.y16b{bottom:355.237976px;}
.y101{bottom:358.384496px;}
.y11a{bottom:358.391719px;}
.ybb{bottom:358.620895px;}
.y53{bottom:363.556343px;}
.y80{bottom:364.339645px;}
.y1e{bottom:366.815094px;}
.y19e{bottom:367.989761px;}
.y100{bottom:376.377296px;}
.y119{bottom:376.384519px;}
.yba{bottom:376.642495px;}
.y52{bottom:381.563566px;}
.y16a{bottom:382.237976px;}
.y7f{bottom:382.382845px;}
.y1d{bottom:384.815094px;}
.y118{bottom:394.377319px;}
.yff{bottom:394.420519px;}
.ye8{bottom:394.620895px;}
.yb9{bottom:394.635295px;}
.y169{bottom:395.737976px;}
.y51{bottom:399.556366px;}
.y7e{bottom:400.375645px;}
.y1c{bottom:402.815094px;}
.y117{bottom:412.391719px;}
.yfe{bottom:412.413319px;}
.yb8{bottom:412.628095px;}
.y50{bottom:417.563566px;}
.y182{bottom:417.606021px;}
.y7d{bottom:418.368445px;}
.y1b{bottom:420.815094px;}
.y168{bottom:422.737976px;}
.y181{bottom:430.353021px;}
.y116{bottom:430.384519px;}
.yfd{bottom:430.406119px;}
.yb7{bottom:430.620895px;}
.y4f{bottom:435.556366px;}
.y167{bottom:436.237976px;}
.y7c{bottom:436.361245px;}
.y1a{bottom:438.815094px;}
.y180{bottom:443.100021px;}
.y115{bottom:448.377319px;}
.yfc{bottom:448.398919px;}
.yb6{bottom:448.635295px;}
.ye7{bottom:448.764941px;}
.y4e{bottom:453.556366px;}
.y7b{bottom:454.354045px;}
.y17f{bottom:455.847021px;}
.y19{bottom:456.815094px;}
.y166{bottom:463.237976px;}
.yfb{bottom:466.391719px;}
.y114{bottom:466.431445px;}
.yb5{bottom:466.628095px;}
.ye6{bottom:466.757741px;}
.y17e{bottom:468.594021px;}
.y4d{bottom:471.563566px;}
.y7a{bottom:472.346845px;}
.y18{bottom:474.815094px;}
.y165{bottom:476.737976px;}
.y17d{bottom:481.341021px;}
.yfa{bottom:484.384519px;}
.y113{bottom:484.424245px;}
.yb4{bottom:484.620895px;}
.ye5{bottom:484.750541px;}
.y4c{bottom:489.556366px;}
.y164{bottom:490.237976px;}
.y79{bottom:490.339645px;}
.y17{bottom:492.815094px;}
.y17c{bottom:494.088021px;}
.yf9{bottom:502.377319px;}
.y112{bottom:502.417045px;}
.yb3{bottom:502.628095px;}
.ye4{bottom:502.743341px;}
.y163{bottom:503.737976px;}
.y4b{bottom:507.563566px;}
.y78{bottom:508.382845px;}
.y17b{bottom:511.087521px;}
.y16{bottom:515.315094px;}
.yf8{bottom:520.384519px;}
.y111{bottom:520.409845px;}
.yb2{bottom:520.635295px;}
.ye3{bottom:520.736141px;}
.y4a{bottom:525.556366px;}
.y77{bottom:526.375645px;}
.y17a{bottom:528.087021px;}
.y162{bottom:530.737976px;}
.y15{bottom:533.315094px;}
.yf7{bottom:538.377319px;}
.y110{bottom:538.402645px;}
.yb1{bottom:538.628095px;}
.ye2{bottom:538.728941px;}
.y49{bottom:543.592366px;}
.y161{bottom:544.237976px;}
.y76{bottom:544.368445px;}
.y19d{bottom:549.886500px;}
.y14{bottom:551.315094px;}
.yf6{bottom:556.377319px;}
.y10f{bottom:556.395445px;}
.yb0{bottom:556.620895px;}
.ye1{bottom:556.721741px;}
.y160{bottom:557.737976px;}
.y48{bottom:561.585166px;}
.y75{bottom:562.361245px;}
.y19c{bottom:563.386500px;}
.y13{bottom:569.315094px;}
.yaf{bottom:574.628095px;}
.ye0{bottom:574.714541px;}
.y47{bottom:579.577966px;}
.y74{bottom:580.354045px;}
.y19b{bottom:581.614500px;}
.y15f{bottom:584.737976px;}
.y12{bottom:587.315094px;}
.yae{bottom:592.620895px;}
.ydf{bottom:592.707341px;}
.y46{bottom:597.570766px;}
.y15e{bottom:598.237976px;}
.y73{bottom:598.346845px;}
.y19a{bottom:599.758500px;}
.y11{bottom:605.315094px;}
.y12d{bottom:610.341021px;}
.yad{bottom:610.642495px;}
.yde{bottom:610.700141px;}
.y15d{bottom:611.737976px;}
.y45{bottom:615.563566px;}
.y72{bottom:616.339645px;}
.y199{bottom:617.902500px;}
.y12c{bottom:623.088021px;}
.y10{bottom:627.815094px;}
.yac{bottom:628.635295px;}
.ydd{bottom:628.692941px;}
.y198{bottom:631.402500px;}
.y44{bottom:633.556366px;}
.y71{bottom:634.339645px;}
.y15c{bottom:638.737976px;}
.y12b{bottom:640.087521px;}
.yf{bottom:645.815094px;}
.yab{bottom:646.628095px;}
.ydc{bottom:646.685741px;}
.y197{bottom:649.546500px;}
.y43{bottom:651.577966px;}
.y15b{bottom:652.237976px;}
.y12a{bottom:657.087021px;}
.ye{bottom:663.815094px;}
.yaa{bottom:664.620895px;}
.ydb{bottom:664.678541px;}
.y15a{bottom:665.737976px;}
.y196{bottom:667.690500px;}
.y42{bottom:669.570766px;}
.y70{bottom:670.339645px;}
.y159{bottom:679.237976px;}
.y141{bottom:679.432537px;}
.yd{bottom:681.815094px;}
.ya9{bottom:682.620895px;}
.yda{bottom:682.671341px;}
.y195{bottom:685.834500px;}
.y41{bottom:687.563566px;}
.y6f{bottom:688.382891px;}
.y158{bottom:692.737976px;}
.y140{bottom:697.660537px;}
.yc{bottom:699.815094px;}
.ya8{bottom:700.620895px;}
.yd9{bottom:700.664141px;}
.y194{bottom:703.978500px;}
.y40{bottom:705.556366px;}
.y6e{bottom:706.375691px;}
.y13f{bottom:715.804537px;}
.y193{bottom:717.478500px;}
.yb{bottom:717.815094px;}
.ya7{bottom:718.620895px;}
.yd8{bottom:718.656941px;}
.y157{bottom:719.737976px;}
.y3f{bottom:723.585258px;}
.y6d{bottom:724.368491px;}
.y156{bottom:733.237976px;}
.y13e{bottom:733.948537px;}
.y192{bottom:735.622500px;}
.ya6{bottom:736.620895px;}
.yd7{bottom:736.649741px;}
.ya{bottom:740.315094px;}
.y3e{bottom:741.578058px;}
.y6c{bottom:742.361291px;}
.y13d{bottom:752.092537px;}
.y191{bottom:753.766500px;}
.yd6{bottom:754.642541px;}
.y3d{bottom:759.570858px;}
.y155{bottom:760.237976px;}
.y6b{bottom:760.354091px;}
.y13c{bottom:770.236537px;}
.y190{bottom:771.910500px;}
.ya5{bottom:772.628141px;}
.yd5{bottom:772.635341px;}
.y154{bottom:773.737976px;}
.y3c{bottom:777.563658px;}
.y6a{bottom:778.346891px;}
.y153{bottom:787.237976px;}
.y13b{bottom:788.392537px;}
.y18f{bottom:790.054500px;}
.yd4{bottom:790.628141px;}
.ya4{bottom:790.635341px;}
.y3b{bottom:795.556458px;}
.y69{bottom:796.339691px;}
.y152{bottom:800.737976px;}
.y9{bottom:804.548112px;}
.y13a{bottom:806.536537px;}
.y18e{bottom:808.198500px;}
.yd3{bottom:808.620941px;}
.ya3{bottom:808.628141px;}
.y3a{bottom:813.592458px;}
.y68{bottom:814.368491px;}
.y139{bottom:824.680537px;}
.y8{bottom:825.552612px;}
.y18d{bottom:826.342500px;}
.ya2{bottom:826.620941px;}
.yd2{bottom:826.649741px;}
.y39{bottom:831.585258px;}
.y67{bottom:832.361291px;}
.y138{bottom:842.824537px;}
.y1ce{bottom:843.342773px;}
.y18c{bottom:844.486500px;}
.yd1{bottom:844.642541px;}
.ya1{bottom:844.649741px;}
.y151{bottom:845.781176px;}
.y38{bottom:849.578058px;}
.y66{bottom:850.354091px;}
.y1cd{bottom:856.842773px;}
.y137{bottom:860.968537px;}
.y1d1{bottom:861.342773px;}
.y7{bottom:861.589528px;}
.y18b{bottom:862.630500px;}
.yd0{bottom:862.635341px;}
.ya0{bottom:862.642541px;}
.y150{bottom:863.773976px;}
.y37{bottom:867.570858px;}
.y65{bottom:868.346891px;}
.y1cc{bottom:870.342773px;}
.y1d0{bottom:874.842773px;}
.y136{bottom:879.124537px;}
.ycf{bottom:880.628141px;}
.y9f{bottom:880.635341px;}
.y18a{bottom:880.774500px;}
.y14f{bottom:881.766776px;}
.y1cb{bottom:883.842773px;}
.y36{bottom:885.563658px;}
.y64{bottom:886.339691px;}
.y1cf{bottom:888.342773px;}
.y135{bottom:897.268537px;}
.y1ca{bottom:897.342773px;}
.y9e{bottom:898.628141px;}
.y189{bottom:898.918500px;}
.y14e{bottom:899.759576px;}
.y6{bottom:900.577528px;}
.y35{bottom:903.556458px;}
.y63{bottom:904.342185px;}
.y1c9{bottom:910.842773px;}
.y134{bottom:915.427518px;}
.y9d{bottom:916.620941px;}
.y188{bottom:917.071518px;}
.y14d{bottom:917.752376px;}
.y34{bottom:921.556458px;}
.y62{bottom:922.334985px;}
.y1c8{bottom:924.342773px;}
.y133{bottom:933.571518px;}
.yce{bottom:934.620941px;}
.y9c{bottom:934.664141px;}
.y187{bottom:935.215518px;}
.y14c{bottom:935.745176px;}
.y1c7{bottom:937.842773px;}
.y5{bottom:939.565528px;}
.y1c6{bottom:951.342773px;}
.y132{bottom:951.715518px;}
.ycd{bottom:952.620941px;}
.y9b{bottom:952.656941px;}
.y14b{bottom:953.737976px;}
.y186{bottom:961.987518px;}
.y1c5{bottom:964.842773px;}
.y9a{bottom:970.649741px;}
.y14a{bottom:971.786979px;}
.y92{bottom:973.925079px;}
.y185{bottom:975.487518px;}
.y1c4{bottom:978.342773px;}
.y131{bottom:978.487518px;}
.y4{bottom:978.553528px;}
.ycc{bottom:988.635341px;}
.y99{bottom:988.642541px;}
.y184{bottom:988.987518px;}
.y149{bottom:989.779779px;}
.y1c3{bottom:991.842773px;}
.y91{bottom:991.925079px;}
.y130{bottom:991.987518px;}
.y183{bottom:1002.487518px;}
.y1c2{bottom:1005.342773px;}
.y12f{bottom:1005.487518px;}
.ycb{bottom:1006.628141px;}
.y98{bottom:1006.635341px;}
.y148{bottom:1007.772579px;}
.y90{bottom:1014.425079px;}
.y1c1{bottom:1018.842773px;}
.y12e{bottom:1018.987518px;}
.yca{bottom:1024.620941px;}
.y97{bottom:1024.628141px;}
.y147{bottom:1025.765379px;}
.y179{bottom:1026.803079px;}
.y1c0{bottom:1032.342773px;}
.y8f{bottom:1032.425079px;}
.y3{bottom:1033.362579px;}
.y28{bottom:1035.750183px;}
.y96{bottom:1042.620941px;}
.yc9{bottom:1042.657215px;}
.y129{bottom:1043.300079px;}
.y146{bottom:1043.758179px;}
.y1bf{bottom:1045.842773px;}
.y29{bottom:1083.127533px;}
.y2{bottom:1112.297079px;}
.y93{bottom:1126.524628px;}
.y32{bottom:1126.524719px;}
.y95{bottom:1126.756989px;}
.y1a7{bottom:1126.920719px;}
.y1{bottom:1126.925079px;}
.y94{bottom:1127.300079px;}
.y33{bottom:1127.304719px;}
.h29{height:10.640359px;}
.h24{height:27.540000px;}
.hf{height:27.814500px;}
.h28{height:28.374502px;}
.h22{height:29.988000px;}
.h26{height:30.324000px;}
.h27{height:30.523500px;}
.h23{height:32.130000px;}
.h25{height:35.532000px;}
.hb{height:37.086000px;}
.he{height:39.735000px;}
.h19{height:39.984000px;}
.h1b{height:42.384000px;}
.h1f{height:42.840000px;}
.h1d{height:43.740000px;}
.h3{height:45.696000px;}
.h10{height:45.744000px;}
.h1e{height:45.814500px;}
.h1a{height:46.656000px;}
.h2{height:47.232000px;}
.h1c{height:48.808580px;}
.h20{height:48.832800px;}
.ha{height:52.980000px;}
.h18{height:53.406000px;}
.h13{height:53.654399px;}
.hc{height:53.850002px;}
.h11{height:55.860000px;}
.h9{height:58.320000px;}
.h8{height:61.120200px;}
.h12{height:62.563565px;}
.h14{height:62.564481px;}
.h17{height:62.592365px;}
.h15{height:62.593281px;}
.h16{height:62.621165px;}
.h6{height:67.194379px;}
.h7{height:67.212379px;}
.hd{height:73.908933px;}
.h4{height:77.142000px;}
.h21{height:96.384000px;}
.h5{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:221.082000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.175479px;}
.x7{left:75.419678px;}
.x1{left:84.933002px;}
.x11{left:89.545029px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.xd{left:95.880900px;}
.xa{left:97.034552px;}
.x16{left:101.533747px;}
.x24{left:107.539352px;}
.x17{left:110.533803px;}
.x18{left:176.095047px;}
.x13{left:225.654442px;}
.x4{left:270.817497px;}
.x19{left:296.047047px;}
.x14{left:314.718442px;}
.xe{left:389.797028px;}
.x15{left:397.350442px;}
.x1a{left:409.567047px;}
.xb{left:457.111052px;}
.xc{left:469.081794px;}
.x21{left:475.906036px;}
.x20{left:476.938660px;}
.x12{left:479.586594px;}
.x1b{left:483.529633px;}
.x1f{left:487.660338px;}
.x1c{left:490.386133px;}
.x1d{left:493.103989px;}
.xf{left:582.817017px;}
.x6{left:588.060013px;}
.x22{left:602.660385px;}
.x23{left:603.814636px;}
.x1e{left:660.952332px;}
.x5{left:694.929886px;}
.x9{left:753.380081px;}
.x10{left:769.405014px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v8{vertical-align:3.024000pt;}
.v6{vertical-align:16.000000pt;}
.v5{vertical-align:17.013138pt;}
.v4{vertical-align:20.854724pt;}
.v2{vertical-align:23.466471pt;}
.v7{vertical-align:48.000000pt;}
.ls4{letter-spacing:-4.149273pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls6{letter-spacing:-0.470400pt;}
.ls5{letter-spacing:-0.313600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000001pt;}
.ls8{letter-spacing:0.000030pt;}
.ls9{letter-spacing:0.000062pt;}
.ls7{letter-spacing:0.017050pt;}
.lsb{letter-spacing:0.133449pt;}
.lsc{letter-spacing:0.200173pt;}
.lsd{letter-spacing:1.000864pt;}
.lsa{letter-spacing:1.668107pt;}
.ls0{letter-spacing:4.853333pt;}
.ws6{word-spacing:-22.475231pt;}
.ws1{word-spacing:-18.858667pt;}
.wsd{word-spacing:-12.282667pt;}
.wsc{word-spacing:-11.812267pt;}
.ws3{word-spacing:-11.371200pt;}
.wsb{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.wsbc{word-spacing:-10.942783pt;}
.wsbb{word-spacing:-10.275540pt;}
.wsba{word-spacing:-9.474848pt;}
.wsb9{word-spacing:-9.408124pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.wsab{word-spacing:-8.760000pt;}
.ws54{word-spacing:-8.597867pt;}
.wsaa{word-spacing:-8.280000pt;}
.ws90{word-spacing:-7.914667pt;}
.ws5{word-spacing:-7.242667pt;}
.ws91{word-spacing:-6.540800pt;}
.ws7{word-spacing:-6.132000pt;}
.ws65{word-spacing:-5.749333pt;}
.ws9{word-spacing:-5.013333pt;}
.wsa8{word-spacing:-4.010667pt;}
.wsa7{word-spacing:-3.498667pt;}
.wsa9{word-spacing:-1.792000pt;}
.wsbd{word-spacing:-1.668107pt;}
.ws37{word-spacing:-1.254400pt;}
.ws12{word-spacing:-0.940800pt;}
.ws67{word-spacing:-0.731733pt;}
.ws3e{word-spacing:-0.627200pt;}
.ws8b{word-spacing:-0.574933pt;}
.ws21{word-spacing:-0.470400pt;}
.ws95{word-spacing:-0.313600pt;}
.ws35{word-spacing:-0.261333pt;}
.ws8{word-spacing:0.000000pt;}
.ws48{word-spacing:0.052267pt;}
.ws64{word-spacing:0.209067pt;}
.ws3b{word-spacing:0.261333pt;}
.ws9f{word-spacing:0.365867pt;}
.ws20{word-spacing:0.418133pt;}
.ws6d{word-spacing:0.470400pt;}
.ws8a{word-spacing:0.522667pt;}
.ws28{word-spacing:0.627200pt;}
.ws3d{word-spacing:0.836267pt;}
.ws79{word-spacing:0.888533pt;}
.ws88{word-spacing:0.940800pt;}
.ws5d{word-spacing:1.045333pt;}
.ws52{word-spacing:1.097600pt;}
.ws9d{word-spacing:1.358933pt;}
.ws26{word-spacing:1.411200pt;}
.ws8c{word-spacing:1.515733pt;}
.ws60{word-spacing:1.620267pt;}
.wsa3{word-spacing:1.724800pt;}
.ws2d{word-spacing:1.933867pt;}
.ws8e{word-spacing:1.986133pt;}
.ws2e{word-spacing:2.038400pt;}
.ws5b{word-spacing:2.195200pt;}
.ws81{word-spacing:2.247467pt;}
.ws1f{word-spacing:2.299733pt;}
.ws38{word-spacing:2.352000pt;}
.ws3c{word-spacing:2.404267pt;}
.ws13{word-spacing:2.456533pt;}
.wsa1{word-spacing:2.508800pt;}
.wsa2{word-spacing:2.561067pt;}
.ws29{word-spacing:2.613333pt;}
.ws6b{word-spacing:2.665600pt;}
.ws23{word-spacing:2.717867pt;}
.ws66{word-spacing:2.874667pt;}
.ws82{word-spacing:2.926933pt;}
.ws16{word-spacing:2.979200pt;}
.ws57{word-spacing:3.083733pt;}
.ws2b{word-spacing:3.136000pt;}
.ws80{word-spacing:3.188267pt;}
.ws97{word-spacing:3.292800pt;}
.ws1d{word-spacing:3.501867pt;}
.ws1a{word-spacing:3.554133pt;}
.ws68{word-spacing:3.606400pt;}
.ws76{word-spacing:3.920000pt;}
.ws27{word-spacing:3.972267pt;}
.ws85{word-spacing:4.024533pt;}
.ws46{word-spacing:4.076800pt;}
.ws10{word-spacing:4.129067pt;}
.wsa{word-spacing:4.149273pt;}
.ws93{word-spacing:4.233600pt;}
.ws62{word-spacing:4.547200pt;}
.ws5c{word-spacing:4.599467pt;}
.ws7f{word-spacing:4.651733pt;}
.ws8d{word-spacing:4.756267pt;}
.ws49{word-spacing:4.808533pt;}
.ws1b{word-spacing:4.860800pt;}
.ws47{word-spacing:4.913067pt;}
.ws43{word-spacing:5.017600pt;}
.ws53{word-spacing:5.069867pt;}
.ws77{word-spacing:5.122133pt;}
.ws7c{word-spacing:5.226667pt;}
.ws15{word-spacing:5.331200pt;}
.ws9b{word-spacing:5.383467pt;}
.ws30{word-spacing:5.435733pt;}
.ws1e{word-spacing:5.958400pt;}
.ws31{word-spacing:6.115200pt;}
.ws9c{word-spacing:6.219733pt;}
.ws94{word-spacing:6.324267pt;}
.ws22{word-spacing:6.428800pt;}
.ws75{word-spacing:6.637867pt;}
.wsaf{word-spacing:7.003733pt;}
.ws4b{word-spacing:7.108267pt;}
.wsa0{word-spacing:7.578667pt;}
.ws5a{word-spacing:7.683200pt;}
.ws3a{word-spacing:7.735467pt;}
.wsf{word-spacing:7.787733pt;}
.ws39{word-spacing:7.840000pt;}
.ws72{word-spacing:7.996800pt;}
.ws11{word-spacing:8.205867pt;}
.ws33{word-spacing:8.362667pt;}
.ws73{word-spacing:8.624000pt;}
.ws32{word-spacing:8.676267pt;}
.ws4c{word-spacing:8.937600pt;}
.ws9a{word-spacing:8.989867pt;}
.wsa6{word-spacing:9.094400pt;}
.ws19{word-spacing:9.251200pt;}
.wsb2{word-spacing:9.303467pt;}
.ws3f{word-spacing:9.355733pt;}
.ws6f{word-spacing:9.773867pt;}
.ws17{word-spacing:9.878400pt;}
.ws42{word-spacing:10.035200pt;}
.ws99{word-spacing:10.139733pt;}
.ws55{word-spacing:10.296533pt;}
.ws51{word-spacing:10.401067pt;}
.ws7a{word-spacing:10.505600pt;}
.ws44{word-spacing:10.610133pt;}
.ws92{word-spacing:10.766933pt;}
.ws4a{word-spacing:10.871467pt;}
.ws25{word-spacing:10.976000pt;}
.ws58{word-spacing:11.028267pt;}
.ws36{word-spacing:11.080533pt;}
.ws61{word-spacing:11.237333pt;}
.ws4f{word-spacing:11.289600pt;}
.ws5e{word-spacing:11.394133pt;}
.ws5f{word-spacing:11.446400pt;}
.ws6c{word-spacing:11.498667pt;}
.ws63{word-spacing:11.603200pt;}
.ws8f{word-spacing:11.707733pt;}
.ws96{word-spacing:11.916800pt;}
.ws2c{word-spacing:11.969067pt;}
.wse{word-spacing:12.230400pt;}
.ws86{word-spacing:12.387200pt;}
.wsb6{word-spacing:12.648533pt;}
.ws69{word-spacing:12.805333pt;}
.ws18{word-spacing:12.857600pt;}
.ws2f{word-spacing:12.962133pt;}
.wsa5{word-spacing:13.014400pt;}
.ws24{word-spacing:13.066667pt;}
.wsa4{word-spacing:13.223467pt;}
.ws87{word-spacing:13.432533pt;}
.ws4e{word-spacing:13.537067pt;}
.ws7d{word-spacing:13.902933pt;}
.ws34{word-spacing:14.268800pt;}
.ws41{word-spacing:14.321067pt;}
.wsae{word-spacing:14.373333pt;}
.ws45{word-spacing:14.425600pt;}
.ws59{word-spacing:14.896000pt;}
.ws84{word-spacing:15.105067pt;}
.ws7b{word-spacing:15.784533pt;}
.ws89{word-spacing:16.045867pt;}
.ws71{word-spacing:16.359467pt;}
.ws1c{word-spacing:16.673067pt;}
.ws70{word-spacing:16.725333pt;}
.wsb5{word-spacing:17.457067pt;}
.ws2a{word-spacing:17.770667pt;}
.ws6e{word-spacing:18.188800pt;}
.wsb3{word-spacing:18.554667pt;}
.ws14{word-spacing:18.606933pt;}
.ws74{word-spacing:19.286400pt;}
.ws4d{word-spacing:19.443200pt;}
.ws56{word-spacing:19.547733pt;}
.ws78{word-spacing:20.018133pt;}
.ws9e{word-spacing:20.749867pt;}
.ws83{word-spacing:21.220267pt;}
.wsb0{word-spacing:21.429333pt;}
.wsb7{word-spacing:21.456000pt;}
.wsb4{word-spacing:21.952000pt;}
.wsb1{word-spacing:22.108800pt;}
.ws40{word-spacing:22.945067pt;}
.ws7e{word-spacing:23.049600pt;}
.ws98{word-spacing:24.094933pt;}
.wsb8{word-spacing:30.672000pt;}
.ws6a{word-spacing:34.809600pt;}
.ws50{word-spacing:44.165333pt;}
.wsad{word-spacing:263.637333pt;}
.wsac{word-spacing:275.242667pt;}
._12{margin-left:-40.977067pt;}
._5b{margin-left:-30.801076pt;}
._19{margin-left:-25.903998pt;}
._18{margin-left:-24.219736pt;}
._15{margin-left:-22.098346pt;}
._5c{margin-left:-16.368000pt;}
._d{margin-left:-15.310944pt;}
._17{margin-left:-13.011236pt;}
._1b{margin-left:-11.815430pt;}
._1c{margin-left:-10.343452pt;}
._11{margin-left:-8.829857pt;}
._13{margin-left:-7.598936pt;}
._10{margin-left:-6.565331pt;}
._8{margin-left:-5.083739pt;}
._a{margin-left:-4.132276pt;}
._5{margin-left:-3.038924pt;}
._2{margin-left:-2.107724pt;}
._0{margin-left:-0.942938pt;}
._3{width:1.198923pt;}
._7{width:2.316820pt;}
._1{width:3.584000pt;}
._9{width:4.581333pt;}
._1a{width:5.537045pt;}
._c{width:7.418657pt;}
._b{width:8.470410pt;}
._e{width:10.056106pt;}
._1d{width:11.398776pt;}
._4{width:12.782938pt;}
._f{width:14.133327pt;}
._6{width:15.253321pt;}
._14{width:16.714879pt;}
._1e{width:21.131535pt;}
._16{width:22.458987pt;}
._5d{width:30.578138pt;}
._59{width:36.441605pt;}
._3c{width:40.132276pt;}
._40{width:53.713077pt;}
._52{width:96.900237pt;}
._51{width:110.201610pt;}
._4b{width:112.249610pt;}
._3f{width:131.022943pt;}
._47{width:133.070943pt;}
._4c{width:136.917333pt;}
._48{width:150.314667pt;}
._5e{width:152.576000pt;}
._58{width:153.984000pt;}
._4f{width:157.738667pt;}
._4e{width:161.706667pt;}
._45{width:163.712000pt;}
._3e{width:165.760000pt;}
._44{width:186.581333pt;}
._4a{width:190.076770pt;}
._49{width:191.360000pt;}
._50{width:198.149333pt;}
._4d{width:205.914667pt;}
._53{width:210.773333pt;}
._57{width:217.518938pt;}
._42{width:223.914667pt;}
._54{width:236.288000pt;}
._56{width:241.284272pt;}
._41{width:246.784000pt;}
._60{width:254.201610pt;}
._5a{width:267.605333pt;}
._3d{width:269.951977pt;}
._55{width:272.981333pt;}
._5f{width:284.537598pt;}
._43{width:295.978667pt;}
._46{width:334.289077pt;}
._2d{width:403.882667pt;}
._2f{width:470.869324pt;}
._21{width:479.822943pt;}
._38{width:491.690658pt;}
._2e{width:493.738628pt;}
._33{width:502.692257pt;}
._26{width:508.671991pt;}
._31{width:512.511991pt;}
._23{width:514.559961pt;}
._29{width:519.935991pt;}
._28{width:523.513591pt;}
._25{width:531.541294pt;}
._24{width:539.020800pt;}
._20{width:563.626628pt;}
._36{width:593.535991pt;}
._27{width:610.346667pt;}
._35{width:616.405294pt;}
._2b{width:637.307743pt;}
._2c{width:642.521542pt;}
._3b{width:680.494904pt;}
._37{width:773.671437pt;}
._34{width:774.954667pt;}
._3a{width:781.744000pt;}
._39{width:789.509333pt;}
._22{width:853.565918pt;}
._1f{width:870.058667pt;}
._30{width:879.573333pt;}
._32{width:917.883743pt;}
._2a{width:1951.108219pt;}
.fs13{font-size:12.510710pt;}
.fsa{font-size:28.000000pt;}
.fsf{font-size:29.866667pt;}
.fs10{font-size:32.000000pt;}
.fs12{font-size:33.362142pt;}
.fs11{font-size:35.466667pt;}
.fsc{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fsd{font-size:49.066666pt;}
.fsb{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs8{font-size:86.443197pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:5.856880pt;}
.y2a{bottom:29.347819pt;}
.y27{bottom:70.229599pt;}
.y26{bottom:80.897599pt;}
.y25{bottom:91.565599pt;}
.y128{bottom:94.634397pt;}
.y145{bottom:96.300796pt;}
.y178{bottom:98.433736pt;}
.y61{bottom:99.161336pt;}
.y8e{bottom:99.870263pt;}
.y24{bottom:102.233599pt;}
.y1bd{bottom:103.088000pt;}
.y177{bottom:110.433736pt;}
.y10e{bottom:110.570529pt;}
.y127{bottom:110.627997pt;}
.yf5{bottom:110.780529pt;}
.yc8{bottom:110.806129pt;}
.y144{bottom:112.294396pt;}
.y23{bottom:112.901599pt;}
.y60{bottom:115.161336pt;}
.y8d{bottom:115.863863pt;}
.y1bb{bottom:118.901465pt;}
.y176{bottom:122.433736pt;}
.y22{bottom:123.569599pt;}
.y1bc{bottom:124.368000pt;}
.y10d{bottom:126.564129pt;}
.y126{bottom:126.621597pt;}
.yf4{bottom:126.774129pt;}
.yc7{bottom:126.799729pt;}
.y143{bottom:128.287996pt;}
.y5f{bottom:131.199736pt;}
.y8c{bottom:131.857463pt;}
.y21{bottom:134.237599pt;}
.y175{bottom:134.433736pt;}
.y1b8{bottom:134.909465pt;}
.y10c{bottom:142.557729pt;}
.y125{bottom:142.615197pt;}
.yc6{bottom:142.793329pt;}
.yf3{bottom:142.825329pt;}
.y142{bottom:144.281596pt;}
.y20{bottom:144.905599pt;}
.y174{bottom:146.433736pt;}
.y5e{bottom:147.193336pt;}
.y8b{bottom:147.870263pt;}
.y1ba{bottom:148.870799pt;}
.y1b9{bottom:149.385071pt;}
.y1b6{bottom:150.157999pt;}
.y173{bottom:158.433736pt;}
.y10b{bottom:158.595997pt;}
.y124{bottom:158.608797pt;}
.yc5{bottom:158.786929pt;}
.yf2{bottom:158.818929pt;}
.y5d{bottom:163.186936pt;}
.y8a{bottom:163.863863pt;}
.y1b5{bottom:164.288666pt;}
.y1b7{bottom:165.233999pt;}
.y1b3{bottom:166.912123pt;}
.y172{bottom:170.433736pt;}
.y10a{bottom:174.589597pt;}
.y123{bottom:174.602397pt;}
.yc4{bottom:174.780529pt;}
.yf1{bottom:174.812529pt;}
.y31{bottom:178.572266pt;}
.y5c{bottom:179.180536pt;}
.y89{bottom:179.857463pt;}
.y1b2{bottom:180.034790pt;}
.y1b4{bottom:181.450133pt;}
.y171{bottom:182.433736pt;}
.y1b0{bottom:182.897070pt;}
.y30{bottom:190.572266pt;}
.y109{bottom:190.583197pt;}
.y122{bottom:190.595997pt;}
.yc3{bottom:190.774129pt;}
.yf0{bottom:190.806129pt;}
.y170{bottom:194.433736pt;}
.y5b{bottom:195.174136pt;}
.y1af{bottom:195.609070pt;}
.y88{bottom:195.883063pt;}
.y1a1{bottom:196.690664pt;}
.y1b1{bottom:196.835592pt;}
.y1ad{bottom:198.903062pt;}
.y2f{bottom:202.572266pt;}
.y108{bottom:206.576797pt;}
.y121{bottom:206.589597pt;}
.yef{bottom:206.799729pt;}
.yc2{bottom:206.806129pt;}
.y5a{bottom:211.167736pt;}
.y1ac{bottom:211.232396pt;}
.y1a0{bottom:211.801331pt;}
.y87{bottom:211.876663pt;}
.y1ae{bottom:212.267863pt;}
.y1a9{bottom:214.905331pt;}
.y1ab{bottom:214.909729pt;}
.y2e{bottom:218.572266pt;}
.y107{bottom:222.570397pt;}
.y120{bottom:222.583197pt;}
.yee{bottom:222.793329pt;}
.yc1{bottom:222.799729pt;}
.y59{bottom:227.161336pt;}
.y1a8{bottom:227.430664pt;}
.y86{bottom:227.870263pt;}
.y1aa{bottom:228.278259pt;}
.y2d{bottom:230.572266pt;}
.y1a6{bottom:230.919995pt;}
.y106{bottom:238.563997pt;}
.y2c{bottom:238.572266pt;}
.y11f{bottom:238.576797pt;}
.yed{bottom:238.786929pt;}
.yc0{bottom:238.793329pt;}
.y58{bottom:243.161336pt;}
.y85{bottom:243.863863pt;}
.y1be{bottom:250.972392pt;}
.y105{bottom:254.557597pt;}
.y11e{bottom:254.570397pt;}
.yec{bottom:254.780529pt;}
.ybf{bottom:254.786929pt;}
.y1a5{bottom:254.823995pt;}
.y16f{bottom:255.767069pt;}
.y57{bottom:259.186794pt;}
.y84{bottom:259.857463pt;}
.y1a4{bottom:266.823995pt;}
.y11d{bottom:270.563997pt;}
.y104{bottom:270.583197pt;}
.yeb{bottom:270.774129pt;}
.ybe{bottom:270.780529pt;}
.y56{bottom:275.180394pt;}
.y83{bottom:275.876663pt;}
.y1a3{bottom:278.823995pt;}
.y16e{bottom:279.767069pt;}
.y11c{bottom:286.557597pt;}
.y103{bottom:286.576797pt;}
.ybd{bottom:286.774129pt;}
.yea{bottom:286.780529pt;}
.y1a2{bottom:290.823995pt;}
.y55{bottom:291.173994pt;}
.y16d{bottom:291.767069pt;}
.y82{bottom:291.870263pt;}
.y102{bottom:302.570397pt;}
.y11b{bottom:302.576817pt;}
.ye9{bottom:302.774129pt;}
.ybc{bottom:302.780529pt;}
.y54{bottom:307.167594pt;}
.y16c{bottom:307.767069pt;}
.y81{bottom:307.863863pt;}
.y1f{bottom:310.057861pt;}
.y19f{bottom:312.438010pt;}
.y16b{bottom:315.767090pt;}
.y101{bottom:318.563997pt;}
.y11a{bottom:318.570417pt;}
.ybb{bottom:318.774129pt;}
.y53{bottom:323.161194pt;}
.y80{bottom:323.857463pt;}
.y1e{bottom:326.057861pt;}
.y19e{bottom:327.102010pt;}
.y100{bottom:334.557597pt;}
.y119{bottom:334.564017pt;}
.yba{bottom:334.793329pt;}
.y52{bottom:339.167614pt;}
.y16a{bottom:339.767090pt;}
.y7f{bottom:339.895863pt;}
.y1d{bottom:342.057861pt;}
.y118{bottom:350.557617pt;}
.yff{bottom:350.596017pt;}
.ye8{bottom:350.774129pt;}
.yb9{bottom:350.786929pt;}
.y169{bottom:351.767090pt;}
.y51{bottom:355.161214pt;}
.y7e{bottom:355.889463pt;}
.y1c{bottom:358.057861pt;}
.y117{bottom:366.570417pt;}
.yfe{bottom:366.589617pt;}
.yb8{bottom:366.780529pt;}
.y50{bottom:371.167614pt;}
.y182{bottom:371.205352pt;}
.y7d{bottom:371.883063pt;}
.y1b{bottom:374.057861pt;}
.y168{bottom:375.767090pt;}
.y181{bottom:382.536019pt;}
.y116{bottom:382.564017pt;}
.yfd{bottom:382.583217pt;}
.yb7{bottom:382.774129pt;}
.y4f{bottom:387.161214pt;}
.y167{bottom:387.767090pt;}
.y7c{bottom:387.876663pt;}
.y1a{bottom:390.057861pt;}
.y180{bottom:393.866685pt;}
.y115{bottom:398.557617pt;}
.yfc{bottom:398.576817pt;}
.yb6{bottom:398.786929pt;}
.ye7{bottom:398.902170pt;}
.y4e{bottom:403.161214pt;}
.y7b{bottom:403.870263pt;}
.y17f{bottom:405.197352pt;}
.y19{bottom:406.057861pt;}
.y166{bottom:411.767090pt;}
.yfb{bottom:414.570417pt;}
.y114{bottom:414.605729pt;}
.yb5{bottom:414.780529pt;}
.ye6{bottom:414.895770pt;}
.y17e{bottom:416.528019pt;}
.y4d{bottom:419.167614pt;}
.y7a{bottom:419.863863pt;}
.y18{bottom:422.057861pt;}
.y165{bottom:423.767090pt;}
.y17d{bottom:427.858685pt;}
.yfa{bottom:430.564017pt;}
.y113{bottom:430.599329pt;}
.yb4{bottom:430.774129pt;}
.ye5{bottom:430.889370pt;}
.y4c{bottom:435.161214pt;}
.y164{bottom:435.767090pt;}
.y79{bottom:435.857463pt;}
.y17{bottom:438.057861pt;}
.y17c{bottom:439.189352pt;}
.yf9{bottom:446.557617pt;}
.y112{bottom:446.592929pt;}
.yb3{bottom:446.780529pt;}
.ye4{bottom:446.882970pt;}
.y163{bottom:447.767090pt;}
.y4b{bottom:451.167614pt;}
.y78{bottom:451.895863pt;}
.y17b{bottom:454.300019pt;}
.y16{bottom:458.057861pt;}
.yf8{bottom:462.564017pt;}
.y111{bottom:462.586529pt;}
.yb2{bottom:462.786929pt;}
.ye3{bottom:462.876570pt;}
.y4a{bottom:467.161214pt;}
.y77{bottom:467.889463pt;}
.y17a{bottom:469.410685pt;}
.y162{bottom:471.767090pt;}
.y15{bottom:474.057861pt;}
.yf7{bottom:478.557617pt;}
.y110{bottom:478.580129pt;}
.yb1{bottom:478.780529pt;}
.ye2{bottom:478.870170pt;}
.y49{bottom:483.193214pt;}
.y161{bottom:483.767090pt;}
.y76{bottom:483.883063pt;}
.y19d{bottom:488.788000pt;}
.y14{bottom:490.057861pt;}
.yf6{bottom:494.557617pt;}
.y10f{bottom:494.573729pt;}
.yb0{bottom:494.774129pt;}
.ye1{bottom:494.863770pt;}
.y160{bottom:495.767090pt;}
.y48{bottom:499.186814pt;}
.y75{bottom:499.876663pt;}
.y19c{bottom:500.788000pt;}
.y13{bottom:506.057861pt;}
.yaf{bottom:510.780529pt;}
.ye0{bottom:510.857370pt;}
.y47{bottom:515.180414pt;}
.y74{bottom:515.870263pt;}
.y19b{bottom:516.990667pt;}
.y15f{bottom:519.767090pt;}
.y12{bottom:522.057861pt;}
.yae{bottom:526.774129pt;}
.ydf{bottom:526.850970pt;}
.y46{bottom:531.174014pt;}
.y15e{bottom:531.767090pt;}
.y73{bottom:531.863863pt;}
.y19a{bottom:533.118667pt;}
.y11{bottom:538.057861pt;}
.y12d{bottom:542.525352pt;}
.yad{bottom:542.793329pt;}
.yde{bottom:542.844570pt;}
.y15d{bottom:543.767090pt;}
.y45{bottom:547.167614pt;}
.y72{bottom:547.857463pt;}
.y199{bottom:549.246667pt;}
.y12c{bottom:553.856019pt;}
.y10{bottom:558.057861pt;}
.yac{bottom:558.786929pt;}
.ydd{bottom:558.838170pt;}
.y198{bottom:561.246667pt;}
.y44{bottom:563.161214pt;}
.y71{bottom:563.857463pt;}
.y15c{bottom:567.767090pt;}
.y12b{bottom:568.966685pt;}
.yf{bottom:574.057861pt;}
.yab{bottom:574.780529pt;}
.ydc{bottom:574.831770pt;}
.y197{bottom:577.374667pt;}
.y43{bottom:579.180414pt;}
.y15b{bottom:579.767090pt;}
.y12a{bottom:584.077352pt;}
.ye{bottom:590.057861pt;}
.yaa{bottom:590.774129pt;}
.ydb{bottom:590.825370pt;}
.y15a{bottom:591.767090pt;}
.y196{bottom:593.502667pt;}
.y42{bottom:595.174014pt;}
.y70{bottom:595.857463pt;}
.y159{bottom:603.767090pt;}
.y141{bottom:603.940033pt;}
.yd{bottom:606.057861pt;}
.ya9{bottom:606.774129pt;}
.yda{bottom:606.818970pt;}
.y195{bottom:609.630667pt;}
.y41{bottom:611.167614pt;}
.y6f{bottom:611.895903pt;}
.y158{bottom:615.767090pt;}
.y140{bottom:620.142699pt;}
.yc{bottom:622.057861pt;}
.ya8{bottom:622.774129pt;}
.yd9{bottom:622.812570pt;}
.y194{bottom:625.758667pt;}
.y40{bottom:627.161214pt;}
.y6e{bottom:627.889503pt;}
.y13f{bottom:636.270699pt;}
.y193{bottom:637.758667pt;}
.yb{bottom:638.057861pt;}
.ya7{bottom:638.774129pt;}
.yd8{bottom:638.806170pt;}
.y157{bottom:639.767090pt;}
.y3f{bottom:643.186896pt;}
.y6d{bottom:643.883103pt;}
.y156{bottom:651.767090pt;}
.y13e{bottom:652.398699pt;}
.y192{bottom:653.886667pt;}
.ya6{bottom:654.774129pt;}
.yd7{bottom:654.799770pt;}
.ya{bottom:658.057861pt;}
.y3e{bottom:659.180496pt;}
.y6c{bottom:659.876703pt;}
.y13d{bottom:668.526699pt;}
.y191{bottom:670.014667pt;}
.yd6{bottom:670.793370pt;}
.y3d{bottom:675.174096pt;}
.y155{bottom:675.767090pt;}
.y6b{bottom:675.870303pt;}
.y13c{bottom:684.654699pt;}
.y190{bottom:686.142667pt;}
.ya5{bottom:686.780570pt;}
.yd5{bottom:686.786970pt;}
.y154{bottom:687.767090pt;}
.y3c{bottom:691.167696pt;}
.y6a{bottom:691.863903pt;}
.y153{bottom:699.767090pt;}
.y13b{bottom:700.793366pt;}
.y18f{bottom:702.270667pt;}
.yd4{bottom:702.780570pt;}
.ya4{bottom:702.786970pt;}
.y3b{bottom:707.161296pt;}
.y69{bottom:707.857503pt;}
.y152{bottom:711.767090pt;}
.y9{bottom:715.153878pt;}
.y13a{bottom:716.921366pt;}
.y18e{bottom:718.398667pt;}
.yd3{bottom:718.774170pt;}
.ya3{bottom:718.780570pt;}
.y3a{bottom:723.193296pt;}
.y68{bottom:723.883103pt;}
.y139{bottom:733.049366pt;}
.y8{bottom:733.824544pt;}
.y18d{bottom:734.526667pt;}
.ya2{bottom:734.774170pt;}
.yd2{bottom:734.799770pt;}
.y39{bottom:739.186896pt;}
.y67{bottom:739.876703pt;}
.y138{bottom:749.177366pt;}
.y1ce{bottom:749.638021pt;}
.y18c{bottom:750.654667pt;}
.yd1{bottom:750.793370pt;}
.ya1{bottom:750.799770pt;}
.y151{bottom:751.805490pt;}
.y38{bottom:755.180496pt;}
.y66{bottom:755.870303pt;}
.y1cd{bottom:761.638021pt;}
.y137{bottom:765.305366pt;}
.y1d1{bottom:765.638021pt;}
.y7{bottom:765.857358pt;}
.y18b{bottom:766.782667pt;}
.yd0{bottom:766.786970pt;}
.ya0{bottom:766.793370pt;}
.y150{bottom:767.799090pt;}
.y37{bottom:771.174096pt;}
.y65{bottom:771.863903pt;}
.y1cc{bottom:773.638021pt;}
.y1d0{bottom:777.638021pt;}
.y136{bottom:781.444033pt;}
.ycf{bottom:782.780570pt;}
.y9f{bottom:782.786970pt;}
.y18a{bottom:782.910667pt;}
.y14f{bottom:783.792690pt;}
.y1cb{bottom:785.638021pt;}
.y36{bottom:787.167696pt;}
.y64{bottom:787.857503pt;}
.y1cf{bottom:789.638021pt;}
.y135{bottom:797.572033pt;}
.y1ca{bottom:797.638021pt;}
.y9e{bottom:798.780570pt;}
.y189{bottom:799.038667pt;}
.y14e{bottom:799.786290pt;}
.y6{bottom:800.513358pt;}
.y35{bottom:803.161296pt;}
.y63{bottom:803.859720pt;}
.y1c9{bottom:809.638021pt;}
.y134{bottom:813.713350pt;}
.y9d{bottom:814.774170pt;}
.y188{bottom:815.174683pt;}
.y14d{bottom:815.779890pt;}
.y34{bottom:819.161296pt;}
.y62{bottom:819.853320pt;}
.y1c8{bottom:821.638021pt;}
.y133{bottom:829.841350pt;}
.yce{bottom:830.774170pt;}
.y9c{bottom:830.812570pt;}
.y187{bottom:831.302683pt;}
.y14c{bottom:831.773490pt;}
.y1c7{bottom:833.638021pt;}
.y5{bottom:835.169358pt;}
.y1c6{bottom:845.638021pt;}
.y132{bottom:845.969350pt;}
.ycd{bottom:846.774170pt;}
.y9b{bottom:846.806170pt;}
.y14b{bottom:847.767090pt;}
.y186{bottom:855.100016pt;}
.y1c5{bottom:857.638021pt;}
.y9a{bottom:862.799770pt;}
.y14a{bottom:863.810648pt;}
.y92{bottom:865.711182pt;}
.y185{bottom:867.100016pt;}
.y1c4{bottom:869.638021pt;}
.y131{bottom:869.766683pt;}
.y4{bottom:869.825358pt;}
.ycc{bottom:878.786970pt;}
.y99{bottom:878.793370pt;}
.y184{bottom:879.100016pt;}
.y149{bottom:879.804248pt;}
.y1c3{bottom:881.638021pt;}
.y91{bottom:881.711182pt;}
.y130{bottom:881.766683pt;}
.y183{bottom:891.100016pt;}
.y1c2{bottom:893.638021pt;}
.y12f{bottom:893.766683pt;}
.ycb{bottom:894.780570pt;}
.y98{bottom:894.786970pt;}
.y148{bottom:895.797848pt;}
.y90{bottom:901.711182pt;}
.y1c1{bottom:905.638021pt;}
.y12e{bottom:905.766683pt;}
.yca{bottom:910.774170pt;}
.y97{bottom:910.780570pt;}
.y147{bottom:911.791448pt;}
.y179{bottom:912.713848pt;}
.y1c0{bottom:917.638021pt;}
.y8f{bottom:917.711182pt;}
.y3{bottom:918.544515pt;}
.y28{bottom:920.666829pt;}
.y96{bottom:926.774170pt;}
.yc9{bottom:926.806413pt;}
.y129{bottom:927.377848pt;}
.y146{bottom:927.785048pt;}
.y1bf{bottom:929.638021pt;}
.y29{bottom:962.780029pt;}
.y2{bottom:988.708515pt;}
.y93{bottom:1001.355225pt;}
.y32{bottom:1001.355306pt;}
.y95{bottom:1001.561768pt;}
.y1a7{bottom:1001.707306pt;}
.y1{bottom:1001.711182pt;}
.y94{bottom:1002.044515pt;}
.y33{bottom:1002.048639pt;}
.h29{height:9.458097pt;}
.h24{height:24.480000pt;}
.hf{height:24.724000pt;}
.h28{height:25.221780pt;}
.h22{height:26.656000pt;}
.h26{height:26.954667pt;}
.h27{height:27.132000pt;}
.h23{height:28.560000pt;}
.h25{height:31.584000pt;}
.hb{height:32.965333pt;}
.he{height:35.320000pt;}
.h19{height:35.541333pt;}
.h1b{height:37.674667pt;}
.h1f{height:38.080000pt;}
.h1d{height:38.880000pt;}
.h3{height:40.618667pt;}
.h10{height:40.661333pt;}
.h1e{height:40.724000pt;}
.h1a{height:41.472000pt;}
.h2{height:41.984000pt;}
.h1c{height:43.385405pt;}
.h20{height:43.406933pt;}
.ha{height:47.093333pt;}
.h18{height:47.472000pt;}
.h13{height:47.692799pt;}
.hc{height:47.866669pt;}
.h11{height:49.653333pt;}
.h9{height:51.840000pt;}
.h8{height:54.329067pt;}
.h12{height:55.612058pt;}
.h14{height:55.612872pt;}
.h17{height:55.637658pt;}
.h15{height:55.638472pt;}
.h16{height:55.663258pt;}
.h6{height:59.728337pt;}
.h7{height:59.744337pt;}
.hd{height:65.696829pt;}
.h4{height:68.570667pt;}
.h21{height:85.674667pt;}
.h5{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:196.517333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.378204pt;}
.x7{left:67.039714pt;}
.x1{left:75.496002pt;}
.x11{left:79.595581pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.xd{left:85.227467pt;}
.xa{left:86.252935pt;}
.x16{left:90.252220pt;}
.x24{left:95.590535pt;}
.x17{left:98.252269pt;}
.x18{left:156.528931pt;}
.x13{left:200.581726pt;}
.x4{left:240.726664pt;}
.x19{left:263.152931pt;}
.x14{left:279.749726pt;}
.xe{left:346.486247pt;}
.x15{left:353.200393pt;}
.x1a{left:364.059597pt;}
.xb{left:406.320935pt;}
.xc{left:416.961594pt;}
.x21{left:423.027588pt;}
.x20{left:423.945475pt;}
.x12{left:426.299194pt;}
.x1b{left:429.804118pt;}
.x1f{left:433.475856pt;}
.x1c{left:435.898785pt;}
.x1d{left:438.314657pt;}
.xf{left:518.059570pt;}
.x6{left:522.720011pt;}
.x22{left:535.698120pt;}
.x23{left:536.724121pt;}
.x1e{left:587.513184pt;}
.x5{left:617.715454pt;}
.x9{left:669.671183pt;}
.x10{left:683.915568pt;}
}




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