
    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_faaa3c624cd0fb1e84690880.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_6013b0ebda63203239fa2845.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.726000;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_1066aa6bdcfaedba82f5aaee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_f47ca82787738fd9d0efa636.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_e4065750b761adf93a29b1f3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9279a524d6367e745c27a05a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d4fdafec46ed73a370600d79.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932000;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_d657ed26e965b5dd983c9fc9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2c6a7a9c6271629e6ef33dd0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8e514e565333b40bc9c778ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_557572a964bbf2e692762402.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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_0ec6090eff5d0fc6d3e8eea0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908000;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_70eb0f0dfa211776c3a803d6.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_7bdb7c5e203815be1ff3814c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_afc9d45c51cbab2093ba59a8.woff2')format("woff");}.fff{font-family:fff;line-height:2.999000;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:ff10;src:url('chunks/assets/font_2d39770a05869ff483aa2952.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.617000;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:ff11;src:url('chunks/assets/font_ad6a1c8acba047ca8d088fe0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.700000;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:ff12;src:url('chunks/assets/font_92f70cabb7fbec035b1c3131.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.923000;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;}
.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);}
.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);}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.036000px;}
.v4{vertical-align:31.050000px;}
.v3{vertical-align:40.770000px;}
.v6{vertical-align:49.086000px;}
.v7{vertical-align:56.784000px;}
.v2{vertical-align:102.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.000146px;}
.ls34{letter-spacing:0.000300px;}
.ls35{letter-spacing:0.011386px;}
.ls9{letter-spacing:1.613941px;}
.ls3c{letter-spacing:2.987535px;}
.ls11{letter-spacing:2.988323px;}
.ls6{letter-spacing:3.048556px;}
.ls3b{letter-spacing:3.227882px;}
.ls39{letter-spacing:3.228538px;}
.ls15{letter-spacing:3.347424px;}
.ls16{letter-spacing:3.556638px;}
.ls19{letter-spacing:3.807695px;}
.ls23{letter-spacing:3.891380px;}
.ls29{letter-spacing:4.100594px;}
.ls2f{letter-spacing:4.142437px;}
.ls21{letter-spacing:4.184280px;}
.ls27{letter-spacing:4.435337px;}
.lsc{letter-spacing:4.722272px;}
.ls38{letter-spacing:9.960146px;}
.lsb{letter-spacing:13.270183px;}
.ls31{letter-spacing:14.158210px;}
.ls32{letter-spacing:14.361925px;}
.ls37{letter-spacing:16.577719px;}
.ls8{letter-spacing:16.617617px;}
.lsf{letter-spacing:16.620933px;}
.lsa{letter-spacing:18.291334px;}
.ls3e{letter-spacing:18.410885px;}
.ls4{letter-spacing:18.470660px;}
.ls2{letter-spacing:19.367294px;}
.ls1{letter-spacing:19.606397px;}
.ls5{letter-spacing:19.819140px;}
.ls0{letter-spacing:19.905275px;}
.ls7{letter-spacing:21.220338px;}
.lse{letter-spacing:21.280114px;}
.ls3d{letter-spacing:23.748712px;}
.lsd{letter-spacing:26.241488px;}
.ls2a{letter-spacing:30.377873px;}
.ls28{letter-spacing:31.089200px;}
.ls2b{letter-spacing:31.131043px;}
.ls24{letter-spacing:32.093428px;}
.ls2c{letter-spacing:32.846598px;}
.ls30{letter-spacing:33.432397px;}
.ls13{letter-spacing:33.599768px;}
.ls2e{letter-spacing:33.683454px;}
.ls2d{letter-spacing:33.934511px;}
.ls25{letter-spacing:34.060039px;}
.ls33{letter-spacing:36.117691px;}
.ls12{letter-spacing:59.775600px;}
.ls36{letter-spacing:137.125226px;}
.ls26{letter-spacing:138.792568px;}
.ls14{letter-spacing:139.880480px;}
.ls1a{letter-spacing:245.449865px;}
.ls18{letter-spacing:246.203035px;}
.ls1c{letter-spacing:246.579620px;}
.ls1b{letter-spacing:246.788834px;}
.ls17{letter-spacing:247.207262px;}
.ls10{letter-spacing:249.084925px;}
.ls1f{letter-spacing:352.860332px;}
.ls1d{letter-spacing:353.822717px;}
.ls1e{letter-spacing:353.906402px;}
.ls22{letter-spacing:460.145272px;}
.ls20{letter-spacing:460.396328px;}
.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;}
}
.ws2a{word-spacing:-40.341627px;}
.ws62{word-spacing:-38.937826px;}
.ws3c{word-spacing:-30.545332px;}
.wsbd{word-spacing:-29.881822px;}
.ws63{word-spacing:-29.015076px;}
.ws66{word-spacing:-28.955301px;}
.ws6d{word-spacing:-25.667643px;}
.wsb2{word-spacing:-24.720845px;}
.wsca{word-spacing:-22.379985px;}
.wsb3{word-spacing:-21.901780px;}
.wsd5{word-spacing:-21.111254px;}
.wsd7{word-spacing:-21.059625px;}
.ws13{word-spacing:-20.526941px;}
.wse0{word-spacing:-19.540644px;}
.ws53{word-spacing:-18.535342px;}
.ws30{word-spacing:-18.165805px;}
.wsd1{word-spacing:-17.674568px;}
.wsb6{word-spacing:-17.597937px;}
.wsd6{word-spacing:-17.239050px;}
.ws6a{word-spacing:-16.605662px;}
.wsde{word-spacing:-16.551864px;}
.ws11{word-spacing:-16.252986px;}
.wsa9{word-spacing:-16.024750px;}
.ws110{word-spacing:-16.013883px;}
.wsba{word-spacing:-15.535678px;}
.ws59{word-spacing:-15.475903px;}
.wsc6{word-spacing:-15.356352px;}
.wsd2{word-spacing:-15.117249px;}
.wse1{word-spacing:-15.057474px;}
.wsda{word-spacing:-14.818371px;}
.wse6{word-spacing:-14.698820px;}
.ws104{word-spacing:-14.639044px;}
.wsb5{word-spacing:-14.579269px;}
.wsab{word-spacing:-14.399942px;}
.ws3b{word-spacing:-14.340166px;}
.wsf4{word-spacing:-14.280391px;}
.ws49{word-spacing:-14.220615px;}
.wsc9{word-spacing:-14.160840px;}
.wsa{word-spacing:-14.041288px;}
.wsce{word-spacing:-13.861962px;}
.ws9{word-spacing:-13.802186px;}
.ws31{word-spacing:-13.682635px;}
.ws103{word-spacing:-13.449510px;}
.ws56{word-spacing:-13.443532px;}
.ws4c{word-spacing:-13.442427px;}
.ws5d{word-spacing:-13.323981px;}
.ws1b{word-spacing:-13.264206px;}
.wsf5{word-spacing:-13.150632px;}
.wsd8{word-spacing:-13.144654px;}
.ws10{word-spacing:-13.084879px;}
.ws54{word-spacing:-13.025103px;}
.wsfb{word-spacing:-12.971305px;}
.ws3f{word-spacing:-12.965328px;}
.ws102{word-spacing:-12.911530px;}
.ws21{word-spacing:-12.786001px;}
.ws41{word-spacing:-12.546898px;}
.ws1c{word-spacing:-12.427347px;}
.ws5b{word-spacing:-12.367572px;}
.wsaa{word-spacing:-12.307796px;}
.ws4b{word-spacing:-12.248020px;}
.wsdc{word-spacing:-12.188245px;}
.ws8c{word-spacing:-12.128469px;}
.wsc5{word-spacing:-12.008918px;}
.ws15{word-spacing:-11.949142px;}
.wscf{word-spacing:-11.829591px;}
.wsbb{word-spacing:-11.710040px;}
.ws48{word-spacing:-11.530713px;}
.ws22{word-spacing:-11.470938px;}
.ws5f{word-spacing:-11.411162px;}
.wsc7{word-spacing:-11.351386px;}
.ws4f{word-spacing:-11.231835px;}
.ws10d{word-spacing:-11.178037px;}
.wse8{word-spacing:-11.112284px;}
.ws29{word-spacing:-11.075297px;}
.ws8b{word-spacing:-11.052508px;}
.wsb{word-spacing:-10.992733px;}
.ws5a{word-spacing:-10.932957px;}
.ws3e{word-spacing:-10.873182px;}
.ws60{word-spacing:-10.813406px;}
.ws4e{word-spacing:-10.634079px;}
.ws28{word-spacing:-10.574304px;}
.ws27{word-spacing:-10.514528px;}
.ws61{word-spacing:-10.394977px;}
.ws26{word-spacing:-10.275426px;}
.wsf3{word-spacing:-10.215650px;}
.wse3{word-spacing:-10.155874px;}
.ws14{word-spacing:-10.096099px;}
.ws68{word-spacing:-10.036323px;}
.ws16{word-spacing:-9.976548px;}
.ws52{word-spacing:-9.916772px;}
.wscd{word-spacing:-9.856996px;}
.ws35{word-spacing:-9.797221px;}
.wsae{word-spacing:-9.773239px;}
.ws5e{word-spacing:-9.737445px;}
.wsec{word-spacing:-9.444545px;}
.ws6{word-spacing:-9.438567px;}
.ws32{word-spacing:-9.319016px;}
.ws25{word-spacing:-9.259240px;}
.wseb{word-spacing:-9.145667px;}
.wsf6{word-spacing:-9.079914px;}
.ws36{word-spacing:-9.020138px;}
.ws12{word-spacing:-8.840811px;}
.ws64{word-spacing:-8.661484px;}
.wsd4{word-spacing:-8.616944px;}
.wsc4{word-spacing:-8.601709px;}
.ws55{word-spacing:-8.541933px;}
.wsaf{word-spacing:-8.500019px;}
.ws44{word-spacing:-8.482158px;}
.ws51{word-spacing:-8.422382px;}
.wscc{word-spacing:-8.362606px;}
.wsdb{word-spacing:-8.302831px;}
.wsbf{word-spacing:-8.183280px;}
.ws45{word-spacing:-8.123504px;}
.ws38{word-spacing:-8.063728px;}
.ws4a{word-spacing:-8.003953px;}
.ws42{word-spacing:-7.944177px;}
.ws100{word-spacing:-7.830604px;}
.wsf9{word-spacing:-7.711052px;}
.ws105{word-spacing:-7.705075px;}
.ws5{word-spacing:-7.645299px;}
.ws98{word-spacing:-7.585524px;}
.ws19{word-spacing:-7.525748px;}
.ws39{word-spacing:-7.406197px;}
.ws7{word-spacing:-7.226870px;}
.ws2c{word-spacing:-7.167094px;}
.wsad{word-spacing:-6.748665px;}
.wse4{word-spacing:-6.629114px;}
.wsd0{word-spacing:-6.623136px;}
.ws8{word-spacing:-6.569338px;}
.ws1e{word-spacing:-6.509563px;}
.ws2f{word-spacing:-6.390012px;}
.wsc2{word-spacing:-6.156887px;}
.ws23{word-spacing:-6.091134px;}
.ws10a{word-spacing:-5.977560px;}
.wsff{word-spacing:-5.911807px;}
.ws10c{word-spacing:-5.858009px;}
.wse{word-spacing:-5.852031px;}
.ws20{word-spacing:-5.732480px;}
.ws3d{word-spacing:-5.672704px;}
.wse9{word-spacing:-5.373826px;}
.ws70{word-spacing:-5.314051px;}
.ws10e{word-spacing:-5.260253px;}
.wsdf{word-spacing:-5.254275px;}
.ws40{word-spacing:-5.194500px;}
.ws17{word-spacing:-5.074948px;}
.ws5c{word-spacing:-4.895622px;}
.ws37{word-spacing:-4.835846px;}
.ws10f{word-spacing:-4.776070px;}
.ws50{word-spacing:-4.656519px;}
.ws71{word-spacing:-4.596744px;}
.ws2e{word-spacing:-4.477192px;}
.ws3a{word-spacing:-4.238090px;}
.ws93{word-spacing:-4.226123px;}
.ws9f{word-spacing:-4.184280px;}
.ws6b{word-spacing:-4.178314px;}
.wsa6{word-spacing:-4.118539px;}
.ws58{word-spacing:-4.058763px;}
.wsc3{word-spacing:-3.939212px;}
.ws97{word-spacing:-3.933223px;}
.ws7a{word-spacing:-3.849538px;}
.wsf{word-spacing:-3.819661px;}
.ws1d{word-spacing:-3.700110px;}
.ws24{word-spacing:-3.640334px;}
.ws76{word-spacing:-3.598481px;}
.wsac{word-spacing:-3.580558px;}
.ws57{word-spacing:-3.520783px;}
.wsea{word-spacing:-3.401232px;}
.wsd{word-spacing:-3.341456px;}
.ws10b{word-spacing:-3.281680px;}
.wse7{word-spacing:-3.221905px;}
.wsc{word-spacing:-3.108331px;}
.wse2{word-spacing:-3.042578px;}
.wscb{word-spacing:-2.982802px;}
.wse5{word-spacing:-2.803476px;}
.ws4d{word-spacing:-2.743700px;}
.ws2d{word-spacing:-2.683924px;}
.wsf7{word-spacing:-2.624149px;}
.ws1f{word-spacing:-2.444822px;}
.wsee{word-spacing:-2.205720px;}
.wsf2{word-spacing:-1.972595px;}
.wsfd{word-spacing:-1.906842px;}
.wsfe{word-spacing:-1.733492px;}
.wsc1{word-spacing:-1.129759px;}
.wsc8{word-spacing:-0.771105px;}
.wsc0{word-spacing:-0.711330px;}
.ws18{word-spacing:-0.651554px;}
.wsfa{word-spacing:-0.591778px;}
.ws109{word-spacing:-0.358654px;}
.wsd9{word-spacing:-0.173349px;}
.ws6c{word-spacing:-0.059776px;}
.ws69{word-spacing:-0.047820px;}
.ws67{word-spacing:-0.041843px;}
.wsb0{word-spacing:-0.040743px;}
.ws43{word-spacing:0.000000px;}
.ws2b{word-spacing:0.005978px;}
.wsb1{word-spacing:0.010186px;}
.wsdd{word-spacing:0.543958px;}
.ws101{word-spacing:1.261265px;}
.wsf8{word-spacing:1.321041px;}
.ws34{word-spacing:1.334200px;}
.ws106{word-spacing:1.739470px;}
.wsed{word-spacing:2.271473px;}
.wsf0{word-spacing:2.331248px;}
.wsf1{word-spacing:2.576328px;}
.wsfc{word-spacing:2.815431px;}
.ws85{word-spacing:5.774306px;}
.ws8a{word-spacing:5.857992px;}
.ws74{word-spacing:5.899835px;}
.ws7b{word-spacing:5.983520px;}
.ws89{word-spacing:6.067206px;}
.ws79{word-spacing:6.109049px;}
.ws91{word-spacing:6.150892px;}
.wsb7{word-spacing:6.164364px;}
.wsb8{word-spacing:6.165688px;}
.wsb9{word-spacing:6.179651px;}
.ws7d{word-spacing:6.192734px;}
.ws87{word-spacing:6.234577px;}
.ws82{word-spacing:6.276420px;}
.ws9b{word-spacing:6.318263px;}
.ws77{word-spacing:6.401948px;}
.ws7c{word-spacing:6.443791px;}
.ws94{word-spacing:6.485634px;}
.ws99{word-spacing:6.987748px;}
.ws65{word-spacing:9.381152px;}
.ws108{word-spacing:9.683647px;}
.ws107{word-spacing:10.526483px;}
.wsb4{word-spacing:16.252974px;}
.ws72{word-spacing:19.845499px;}
.ws9a{word-spacing:21.925627px;}
.ws4{word-spacing:23.312640px;}
.ws2{word-spacing:23.384371px;}
.ws92{word-spacing:23.431968px;}
.ws80{word-spacing:24.561724px;}
.ws3{word-spacing:25.034189px;}
.wsa7{word-spacing:25.063837px;}
.ws8f{word-spacing:25.775165px;}
.ws33{word-spacing:26.339623px;}
.ws75{word-spacing:26.821235px;}
.ws95{word-spacing:26.946763px;}
.ws47{word-spacing:31.418178px;}
.ws6f{word-spacing:31.504255px;}
.wsa1{word-spacing:31.800528px;}
.wsa0{word-spacing:32.009742px;}
.wsa2{word-spacing:32.063540px;}
.wsbe{word-spacing:32.106796px;}
.ws9e{word-spacing:32.177113px;}
.wsd3{word-spacing:32.273526px;}
.wsa4{word-spacing:32.386327px;}
.wsa8{word-spacing:32.553698px;}
.wsa5{word-spacing:32.679227px;}
.ws78{word-spacing:32.930284px;}
.ws7f{word-spacing:33.139498px;}
.ws90{word-spacing:33.474240px;}
.wsa3{word-spacing:33.653566px;}
.ws8e{word-spacing:33.767140px;}
.wsef{word-spacing:33.898743px;}
.ws73{word-spacing:34.478467px;}
.ws8d{word-spacing:34.520310px;}
.ws0{word-spacing:36.978679px;}
.ws1{word-spacing:37.081972px;}
.ws46{word-spacing:42.436060px;}
.wsbc{word-spacing:71.563348px;}
.ws6e{word-spacing:79.707487px;}
.ws1a{word-spacing:94.598843px;}
.ws9d{word-spacing:138.762680px;}
.ws9c{word-spacing:140.101649px;}
.ws7e{word-spacing:246.173147px;}
.ws84{word-spacing:246.758947px;}
.ws81{word-spacing:352.119117px;}
.ws83{word-spacing:353.458087px;}
.ws86{word-spacing:353.750986px;}
.ws88{word-spacing:353.918357px;}
.ws96{word-spacing:460.366441px;}
._13{margin-left:-29.969350px;}
._12{margin-left:-23.145067px;}
._d{margin-left:-7.919102px;}
._f{margin-left:-6.742733px;}
._3{margin-left:-5.379840px;}
._4{margin-left:-4.146079px;}
._1{margin-left:-3.098772px;}
._7{margin-left:-2.061024px;}
._2{margin-left:-1.047307px;}
._5{width:1.733492px;}
._0{width:3.098772px;}
._6{width:4.265630px;}
._16{width:5.427576px;}
._e{width:6.902848px;}
._11{width:8.522915px;}
._8{width:10.728522px;}
._10{width:13.837945px;}
._15{width:16.617617px;}
._25{width:18.439538px;}
._14{width:20.234774px;}
._31{width:22.592708px;}
._a{width:25.222835px;}
._34{width:26.581024px;}
._24{width:27.733410px;}
._1a{width:29.496769px;}
._1b{width:30.503401px;}
._17{width:31.665071px;}
._18{width:32.676752px;}
._9{width:33.742092px;}
._19{width:35.141586px;}
._3c{width:37.001096px;}
._39{width:39.393376px;}
._32{width:40.560234px;}
._3d{width:42.353502px;}
._3a{width:46.685999px;}
._36{width:48.199483px;}
._35{width:49.945003px;}
._37{width:55.380859px;}
._1d{width:61.656176px;}
._33{width:63.590617px;}
._38{width:65.395762px;}
._1e{width:66.661479px;}
._b{width:80.697600px;}
._2c{width:83.071674px;}
._3b{width:88.109270px;}
._c{width:94.684920px;}
._21{width:101.348334px;}
._2a{width:123.549109px;}
._29{width:129.228341px;}
._22{width:140.512590px;}
._20{width:156.045878px;}
._1f{width:165.980785px;}
._27{width:171.306287px;}
._2b{width:198.411712px;}
._1c{width:212.906302px;}
._26{width:252.157898px;}
._2f{width:261.613119px;}
._28{width:304.510091px;}
._30{width:316.023443px;}
._2d{width:328.998146px;}
._2e{width:341.885695px;}
._23{width:345.195482px;}
.fc3{color:rgb(0,153,0);}
.fc4{color:rgb(148,0,209);}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs4{font-size:41.842800px;}
.fs6{font-size:50.928811px;}
.fs7{font-size:51.629381px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y4b{bottom:31.702500px;}
.yad{bottom:31.704000px;}
.y2d{bottom:76.534500px;}
.y7a{bottom:76.536000px;}
.yd7{bottom:81.915000px;}
.y4a{bottom:94.467000px;}
.y2c{bottom:94.468500px;}
.yac{bottom:98.643000px;}
.yd6{bottom:99.847500px;}
.y79{bottom:104.974500px;}
.y2b{bottom:112.401000px;}
.yd5{bottom:117.781500px;}
.y78{bottom:122.907000px;}
.yab{bottom:125.739000px;}
.y2a{bottom:130.333500px;}
.yaa{bottom:137.694000px;}
.y140{bottom:141.039000px;}
.y16a{bottom:142.525500px;}
.y29{bottom:148.266000px;}
.y77{bottom:149.245500px;}
.ya9{bottom:149.649000px;}
.y13f{bottom:158.971500px;}
.y169{bottom:160.458000px;}
.ya8{bottom:161.604000px;}
.y28{bottom:166.198500px;}
.yf8{bottom:166.200000px;}
.y76{bottom:167.178000px;}
.ya7{bottom:173.559000px;}
.y13e{bottom:176.904000px;}
.y168{bottom:178.392000px;}
.y27{bottom:184.131000px;}
.yf7{bottom:184.132500px;}
.y49{bottom:184.204500px;}
.ya6{bottom:185.514000px;}
.y104{bottom:187.158000px;}
.y75{bottom:194.760000px;}
.ya5{bottom:197.469000px;}
.y26{bottom:202.065000px;}
.y48{bottom:202.137000px;}
.y13d{bottom:205.540500px;}
.y167{bottom:208.516500px;}
.ya4{bottom:209.424000px;}
.y115{bottom:215.713500px;}
.yf6{bottom:219.997500px;}
.y47{bottom:220.069500px;}
.y25{bottom:220.840500px;}
.ya3{bottom:221.380500px;}
.y13c{bottom:223.474500px;}
.y166{bottom:226.449000px;}
.ya2{bottom:233.335500px;}
.y74{bottom:235.824000px;}
.y46{bottom:238.074000px;}
.y24{bottom:238.773000px;}
.y165{bottom:244.381500px;}
.ya1{bottom:245.290500px;}
.y13b{bottom:252.111000px;}
.y73{bottom:253.756500px;}
.yf5{bottom:255.337500px;}
.y114{bottom:255.429000px;}
.y45{bottom:256.008000px;}
.y23{bottom:256.705500px;}
.ya0{bottom:257.245500px;}
.y164{bottom:262.315500px;}
.y13a{bottom:270.043500px;}
.y72{bottom:271.689000px;}
.y44{bottom:273.940500px;}
.y22{bottom:274.639500px;}
.y163{bottom:280.248000px;}
.y9f{bottom:283.341000px;}
.y71{bottom:289.621500px;}
.y43{bottom:291.873000px;}
.y21{bottom:292.572000px;}
.y139{bottom:298.681500px;}
.y9e{bottom:301.273500px;}
.y70{bottom:307.554000px;}
.y42{bottom:309.805500px;}
.y162{bottom:310.372500px;}
.y20{bottom:310.504500px;}
.y138{bottom:316.614000px;}
.y103{bottom:317.724000px;}
.y9d{bottom:319.206000px;}
.yf4{bottom:319.281000px;}
.y113{bottom:321.622500px;}
.y6f{bottom:325.488000px;}
.y41{bottom:327.738000px;}
.y161{bottom:328.305000px;}
.y1f{bottom:328.437000px;}
.y102{bottom:335.656500px;}
.yf3{bottom:337.213500px;}
.y6e{bottom:343.420500px;}
.yd4{bottom:343.443000px;}
.y40{bottom:345.670500px;}
.y1e{bottom:346.369500px;}
.y9c{bottom:348.822000px;}
.y137{bottom:349.341000px;}
.y112{bottom:357.022064px;}
.y160{bottom:358.431000px;}
.y6d{bottom:361.353000px;}
.yd3{bottom:361.377000px;}
.y3f{bottom:363.604500px;}
.y111{bottom:372.510723px;}
.y15f{bottom:376.363500px;}
.yf2{bottom:377.700000px;}
.y6c{bottom:379.285500px;}
.yd2{bottom:379.309500px;}
.y1d{bottom:380.667000px;}
.y3e{bottom:381.537000px;}
.y110{bottom:387.999382px;}
.y15e{bottom:394.296000px;}
.y6b{bottom:397.218000px;}
.yd1{bottom:397.242000px;}
.y136{bottom:398.217000px;}
.y10f{bottom:403.488040px;}
.yf1{bottom:404.599500px;}
.y3d{bottom:409.252500px;}
.y9b{bottom:413.173500px;}
.y6a{bottom:415.150500px;}
.yd0{bottom:415.174500px;}
.y135{bottom:416.149500px;}
.y15d{bottom:424.422000px;}
.y10e{bottom:425.455895px;}
.y3c{bottom:430.174500px;}
.y134{bottom:434.082000px;}
.y1c{bottom:434.554500px;}
.y9a{bottom:440.269500px;}
.y15c{bottom:442.354500px;}
.y69{bottom:443.263500px;}
.ycf{bottom:446.395500px;}
.y133{bottom:452.014500px;}
.y99{bottom:452.224500px;}
.y1b{bottom:452.487000px;}
.y15b{bottom:460.287000px;}
.y68{bottom:461.197500px;}
.y98{bottom:464.179500px;}
.y3b{bottom:466.026000px;}
.yce{bottom:467.316000px;}
.y10d{bottom:467.572500px;}
.yf0{bottom:467.815500px;}
.y132{bottom:469.948500px;}
.y1a{bottom:470.421000px;}
.y97{bottom:476.134500px;}
.yef{bottom:478.066500px;}
.y67{bottom:479.130000px;}
.y10c{bottom:485.505000px;}
.y131{bottom:487.881000px;}
.y96{bottom:488.089500px;}
.y19{bottom:489.196500px;}
.y15a{bottom:490.411500px;}
.y95{bottom:500.044500px;}
.y130{bottom:505.813500px;}
.ycd{bottom:506.671500px;}
.y18{bottom:507.129000px;}
.y66{bottom:507.243000px;}
.y159{bottom:508.345500px;}
.y94{bottom:511.999500px;}
.y3a{bottom:515.823000px;}
.y10b{bottom:517.087500px;}
.y93{bottom:523.954500px;}
.y17{bottom:525.061500px;}
.y65{bottom:525.175500px;}
.y158{bottom:526.278000px;}
.y39{bottom:533.755500px;}
.y12f{bottom:534.450000px;}
.y92{bottom:535.911000px;}
.y16{bottom:542.995500px;}
.y64{bottom:543.108000px;}
.yee{bottom:545.266500px;}
.y91{bottom:547.866000px;}
.y38{bottom:551.689500px;}
.y12e{bottom:552.384000px;}
.y157{bottom:556.402500px;}
.y90{bottom:559.821000px;}
.y15{bottom:560.928000px;}
.yed{bottom:563.199000px;}
.y12d{bottom:570.316500px;}
.y63{bottom:570.690000px;}
.y8f{bottom:571.776000px;}
.y156{bottom:574.335000px;}
.y10a{bottom:575.695500px;}
.y14{bottom:578.860500px;}
.yec{bottom:581.131500px;}
.y37{bottom:581.866500px;}
.y8e{bottom:583.731000px;}
.ycc{bottom:585.772500px;}
.y62{bottom:591.610500px;}
.y109{bottom:593.628000px;}
.y8d{bottom:595.686000px;}
.y13{bottom:596.793000px;}
.y12c{bottom:597.702000px;}
.y101{bottom:599.560500px;}
.y36{bottom:599.799000px;}
.y155{bottom:604.461000px;}
.y8c{bottom:607.641000px;}
.y108{bottom:611.560500px;}
.ycb{bottom:613.729500px;}
.y12{bottom:614.725500px;}
.y12b{bottom:615.636000px;}
.yeb{bottom:616.471500px;}
.y100{bottom:617.493000px;}
.y35{bottom:617.731500px;}
.y8b{bottom:619.596000px;}
.y154{bottom:622.393500px;}
.yca{bottom:625.684500px;}
.y8a{bottom:631.551000px;}
.y11{bottom:632.659500px;}
.y61{bottom:632.674500px;}
.yff{bottom:635.425500px;}
.y34{bottom:635.665500px;}
.yc9{bottom:637.641000px;}
.y153{bottom:640.326000px;}
.y12a{bottom:643.216500px;}
.y89{bottom:643.507500px;}
.yc8{bottom:649.596000px;}
.y10{bottom:650.592000px;}
.y60{bottom:650.607000px;}
.yfe{bottom:653.358000px;}
.y88{bottom:655.462500px;}
.yc7{bottom:661.551000px;}
.y33{bottom:665.770500px;}
.yf{bottom:668.524500px;}
.y5f{bottom:668.539500px;}
.y152{bottom:670.450500px;}
.yfd{bottom:671.290500px;}
.yc6{bottom:673.506000px;}
.yea{bottom:680.415000px;}
.y87{bottom:681.558000px;}
.y32{bottom:683.703000px;}
.y129{bottom:684.507000px;}
.yc5{bottom:685.461000px;}
.ye{bottom:686.457000px;}
.y5e{bottom:686.473500px;}
.y151{bottom:688.384500px;}
.y86{bottom:699.490500px;}
.ye9{bottom:701.334000px;}
.y128{bottom:702.439500px;}
.yd{bottom:704.389500px;}
.y5d{bottom:704.406000px;}
.y150{bottom:706.317000px;}
.y31{bottom:711.418500px;}
.yc4{bottom:713.281500px;}
.y85{bottom:717.423000px;}
.y127{bottom:720.372000px;}
.yc{bottom:722.322000px;}
.y5c{bottom:722.338500px;}
.yfc{bottom:728.115000px;}
.yc3{bottom:731.214000px;}
.y30{bottom:732.340500px;}
.y14f{bottom:736.441500px;}
.y126{bottom:738.304500px;}
.yb{bottom:740.256000px;}
.y5b{bottom:740.271000px;}
.ye8{bottom:745.537500px;}
.y84{bottom:747.039000px;}
.yc2{bottom:749.148000px;}
.y14e{bottom:754.374000px;}
.y125{bottom:756.237000px;}
.ya{bottom:758.188500px;}
.y5a{bottom:758.203500px;}
.ye7{bottom:763.470000px;}
.y124{bottom:774.169500px;}
.y2f{bottom:774.552000px;}
.y9{bottom:776.121000px;}
.y59{bottom:776.137500px;}
.y14d{bottom:784.500000px;}
.yc1{bottom:788.350500px;}
.y123{bottom:792.103500px;}
.y2e{bottom:792.484500px;}
.y83{bottom:794.662500px;}
.y14c{bottom:802.432500px;}
.y58{bottom:803.718000px;}
.y8{bottom:810.418500px;}
.y82{bottom:812.595000px;}
.ye4{bottom:815.262000px;}
.yc0{bottom:816.309000px;}
.y122{bottom:819.684000px;}
.ye1{bottom:822.643500px;}
.ybf{bottom:828.264000px;}
.ye6{bottom:828.385500px;}
.y14b{bottom:832.557000px;}
.ye0{bottom:832.893000px;}
.ye5{bottom:832.894500px;}
.ybe{bottom:840.219000px;}
.y57{bottom:844.782000px;}
.ye3{bottom:847.090500px;}
.y81{bottom:847.356000px;}
.y14a{bottom:850.491000px;}
.ye2{bottom:851.574000px;}
.ybd{bottom:852.174000px;}
.yfb{bottom:858.681000px;}
.y121{bottom:860.974500px;}
.y56{bottom:862.714500px;}
.y7{bottom:862.716000px;}
.ybc{bottom:864.129000px;}
.y107{bottom:869.746500px;}
.y80{bottom:874.255500px;}
.ybb{bottom:876.084000px;}
.yfa{bottom:876.613500px;}
.y120{bottom:878.907000px;}
.y149{bottom:880.615500px;}
.y55{bottom:880.647000px;}
.y106{bottom:887.680500px;}
.yba{bottom:888.039000px;}
.ydf{bottom:888.727500px;}
.yf9{bottom:894.546000px;}
.y11f{bottom:896.839500px;}
.y6{bottom:897.778500px;}
.y148{bottom:898.548000px;}
.y54{bottom:898.581000px;}
.y172{bottom:899.260500px;}
.yb9{bottom:899.995500px;}
.y105{bottom:905.613000px;}
.yb8{bottom:911.950500px;}
.y147{bottom:916.480500px;}
.y53{bottom:916.513500px;}
.y171{bottom:917.193000px;}
.y5{bottom:918.700500px;}
.yb7{bottom:923.905500px;}
.yde{bottom:924.069000px;}
.y11e{bottom:925.476000px;}
.y7f{bottom:926.263500px;}
.y146{bottom:934.414500px;}
.y170{bottom:935.125500px;}
.yb6{bottom:935.860500px;}
.y7e{bottom:937.591500px;}
.y4{bottom:939.621000px;}
.y11d{bottom:943.410000px;}
.yb5{bottom:947.815500px;}
.y52{bottom:949.240500px;}
.yb4{bottom:959.770500px;}
.y11c{bottom:961.342500px;}
.y145{bottom:964.539000px;}
.y16f{bottom:965.013000px;}
.yb3{bottom:971.725500px;}
.y51{bottom:976.140000px;}
.y11b{bottom:979.275000px;}
.y7d{bottom:982.368000px;}
.y144{bottom:982.471500px;}
.y16e{bottom:982.947000px;}
.y3{bottom:982.953000px;}
.yb2{bottom:983.680500px;}
.ydd{bottom:993.391500px;}
.y11a{bottom:997.207500px;}
.y7c{bottom:1000.300500px;}
.y143{bottom:1000.404000px;}
.y16d{bottom:1000.879500px;}
.yb1{bottom:1011.502500px;}
.y119{bottom:1015.140000px;}
.y2{bottom:1015.830000px;}
.y50{bottom:1024.789500px;}
.ydc{bottom:1028.682534px;}
.yb0{bottom:1029.435000px;}
.y142{bottom:1030.530000px;}
.y16c{bottom:1030.767000px;}
.y118{bottom:1033.074000px;}
.y4f{bottom:1042.722000px;}
.y7b{bottom:1043.526000px;}
.ydb{bottom:1043.961024px;}
.yaf{bottom:1047.367500px;}
.y141{bottom:1048.462500px;}
.y16b{bottom:1048.699500px;}
.y1{bottom:1048.707000px;}
.y117{bottom:1051.006500px;}
.yda{bottom:1059.239514px;}
.y4e{bottom:1060.654500px;}
.yae{bottom:1065.300000px;}
.y116{bottom:1068.939000px;}
.yd9{bottom:1074.518004px;}
.y4d{bottom:1078.587000px;}
.yd8{bottom:1096.187772px;}
.y4c{bottom:1096.521000px;}
.hf{height:2.391024px;}
.ha{height:20.263928px;}
.h9{height:29.122589px;}
.he{height:29.457331px;}
.h10{height:31.382100px;}
.hb{height:38.247537px;}
.h15{height:38.773665px;}
.hd{height:42.799330px;}
.h7{height:44.831700px;}
.h5{height:44.891476px;}
.h2{height:50.642227px;}
.h3{height:51.287808px;}
.h6{height:53.870131px;}
.h14{height:59.175024px;}
.h11{height:62.432100px;}
.h13{height:62.927476px;}
.h4{height:64.643977px;}
.h1{height:72.511265px;}
.h12{height:80.468100px;}
.hc{height:85.271700px;}
.h8{height:104.607024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:50.392500px;}
.x1b{left:55.476000px;}
.x8{left:68.032500px;}
.x2{left:69.736500px;}
.x2e{left:75.502500px;}
.x2d{left:78.828000px;}
.x9{left:82.975500px;}
.x1d{left:93.313500px;}
.x12{left:97.920000px;}
.x13{left:108.534000px;}
.x10{left:110.104500px;}
.x11{left:119.575500px;}
.x1{left:126.201000px;}
.x1e{left:139.773000px;}
.x6{left:206.818500px;}
.x5{left:281.677500px;}
.x4{left:360.451500px;}
.x3{left:362.736000px;}
.x7{left:364.765500px;}
.x18{left:454.116000px;}
.xf{left:455.265000px;}
.x17{left:459.199500px;}
.xa{left:471.756000px;}
.x1f{left:479.395884px;}
.xd{left:482.551500px;}
.xc{left:486.700500px;}
.x2a{left:493.788000px;}
.x20{left:495.688500px;}
.xe{left:501.643500px;}
.x19{left:502.654500px;}
.x1a{left:511.147500px;}
.x16{left:513.828000px;}
.x14{left:521.778000px;}
.xb{left:523.300500px;}
.x15{left:544.669500px;}
.x21{left:555.012000px;}
.x2b{left:623.236500px;}
.x22{left:625.936500px;}
.x24{left:643.855500px;}
.x25{left:644.970000px;}
.x23{left:649.356000px;}
.x26{left:665.442000px;}
.x27{left:676.650000px;}
.x28{left:746.221500px;}
.x2c{left:771.486000px;}
.x29{left:830.878500px;}
@media print{
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.032000pt;}
.v4{vertical-align:27.600000pt;}
.v3{vertical-align:36.240000pt;}
.v6{vertical-align:43.632000pt;}
.v7{vertical-align:50.474667pt;}
.v2{vertical-align:90.858667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.000130pt;}
.ls34{letter-spacing:0.000267pt;}
.ls35{letter-spacing:0.010121pt;}
.ls9{letter-spacing:1.434614pt;}
.ls3c{letter-spacing:2.655587pt;}
.ls11{letter-spacing:2.656287pt;}
.ls6{letter-spacing:2.709827pt;}
.ls3b{letter-spacing:2.869229pt;}
.ls39{letter-spacing:2.869812pt;}
.ls15{letter-spacing:2.975488pt;}
.ls16{letter-spacing:3.161456pt;}
.ls19{letter-spacing:3.384618pt;}
.ls23{letter-spacing:3.459005pt;}
.ls29{letter-spacing:3.644973pt;}
.ls2f{letter-spacing:3.682166pt;}
.ls21{letter-spacing:3.719360pt;}
.ls27{letter-spacing:3.942522pt;}
.lsc{letter-spacing:4.197575pt;}
.ls38{letter-spacing:8.853463pt;}
.lsb{letter-spacing:11.795718pt;}
.ls31{letter-spacing:12.585075pt;}
.ls32{letter-spacing:12.766155pt;}
.ls37{letter-spacing:14.735751pt;}
.ls8{letter-spacing:14.771215pt;}
.lsf{letter-spacing:14.774162pt;}
.lsa{letter-spacing:16.258963pt;}
.ls3e{letter-spacing:16.365231pt;}
.ls4{letter-spacing:16.418365pt;}
.ls2{letter-spacing:17.215373pt;}
.ls1{letter-spacing:17.427908pt;}
.ls5{letter-spacing:17.617014pt;}
.ls0{letter-spacing:17.693578pt;}
.ls7{letter-spacing:18.862523pt;}
.lse{letter-spacing:18.915657pt;}
.ls3d{letter-spacing:21.109966pt;}
.lsd{letter-spacing:23.325767pt;}
.ls2a{letter-spacing:27.002554pt;}
.ls28{letter-spacing:27.634845pt;}
.ls2b{letter-spacing:27.672038pt;}
.ls24{letter-spacing:28.527491pt;}
.ls2c{letter-spacing:29.196976pt;}
.ls30{letter-spacing:29.717686pt;}
.ls13{letter-spacing:29.866461pt;}
.ls2e{letter-spacing:29.940848pt;}
.ls2d{letter-spacing:30.164010pt;}
.ls25{letter-spacing:30.275590pt;}
.ls33{letter-spacing:32.104614pt;}
.ls12{letter-spacing:53.133867pt;}
.ls36{letter-spacing:121.889090pt;}
.ls26{letter-spacing:123.371171pt;}
.ls14{letter-spacing:124.338205pt;}
.ls1a{letter-spacing:218.177658pt;}
.ls18{letter-spacing:218.847142pt;}
.ls1c{letter-spacing:219.181885pt;}
.ls1b{letter-spacing:219.367853pt;}
.ls17{letter-spacing:219.739789pt;}
.ls10{letter-spacing:221.408822pt;}
.ls1f{letter-spacing:313.653629pt;}
.ls1d{letter-spacing:314.509082pt;}
.ls1e{letter-spacing:314.583469pt;}
.ls22{letter-spacing:409.018019pt;}
.ls20{letter-spacing:409.241181pt;}
.ws2a{word-spacing:-35.859224pt;}
.ws62{word-spacing:-34.611401pt;}
.ws3c{word-spacing:-27.151406pt;}
.wsbd{word-spacing:-26.561620pt;}
.ws63{word-spacing:-25.791179pt;}
.ws66{word-spacing:-25.738045pt;}
.ws6d{word-spacing:-22.815682pt;}
.wsb2{word-spacing:-21.974084pt;}
.wsca{word-spacing:-19.893320pt;}
.wsb3{word-spacing:-19.468249pt;}
.wsd5{word-spacing:-18.765559pt;}
.wsd7{word-spacing:-18.719666pt;}
.ws13{word-spacing:-18.246170pt;}
.wse0{word-spacing:-17.369461pt;}
.ws53{word-spacing:-16.475860pt;}
.ws30{word-spacing:-16.147382pt;}
.wsd1{word-spacing:-15.710727pt;}
.wsb6{word-spacing:-15.642610pt;}
.wsd6{word-spacing:-15.323600pt;}
.ws6a{word-spacing:-14.760588pt;}
.wsde{word-spacing:-14.712768pt;}
.ws11{word-spacing:-14.447098pt;}
.wsa9{word-spacing:-14.244222pt;}
.ws110{word-spacing:-14.234563pt;}
.wsba{word-spacing:-13.809492pt;}
.ws59{word-spacing:-13.756358pt;}
.wsc6{word-spacing:-13.650090pt;}
.wsd2{word-spacing:-13.437555pt;}
.wse1{word-spacing:-13.384421pt;}
.wsda{word-spacing:-13.171886pt;}
.wse6{word-spacing:-13.065618pt;}
.ws104{word-spacing:-13.012484pt;}
.wsb5{word-spacing:-12.959350pt;}
.wsab{word-spacing:-12.799948pt;}
.ws3b{word-spacing:-12.746815pt;}
.wsf4{word-spacing:-12.693681pt;}
.ws49{word-spacing:-12.640547pt;}
.wsc9{word-spacing:-12.587413pt;}
.wsa{word-spacing:-12.481145pt;}
.wsce{word-spacing:-12.321744pt;}
.ws9{word-spacing:-12.268610pt;}
.ws31{word-spacing:-12.162342pt;}
.ws103{word-spacing:-11.955120pt;}
.ws56{word-spacing:-11.949807pt;}
.ws4c{word-spacing:-11.948824pt;}
.ws5d{word-spacing:-11.843539pt;}
.ws1b{word-spacing:-11.790405pt;}
.wsf5{word-spacing:-11.689451pt;}
.wsd8{word-spacing:-11.684137pt;}
.ws10{word-spacing:-11.631003pt;}
.ws54{word-spacing:-11.577870pt;}
.wsfb{word-spacing:-11.530049pt;}
.ws3f{word-spacing:-11.524736pt;}
.ws102{word-spacing:-11.476915pt;}
.ws21{word-spacing:-11.365334pt;}
.ws41{word-spacing:-11.152799pt;}
.ws1c{word-spacing:-11.046531pt;}
.ws5b{word-spacing:-10.993397pt;}
.wsaa{word-spacing:-10.940263pt;}
.ws4b{word-spacing:-10.887129pt;}
.wsdc{word-spacing:-10.833995pt;}
.ws8c{word-spacing:-10.780862pt;}
.wsc5{word-spacing:-10.674594pt;}
.ws15{word-spacing:-10.621460pt;}
.wscf{word-spacing:-10.515192pt;}
.wsbb{word-spacing:-10.408924pt;}
.ws48{word-spacing:-10.249523pt;}
.ws22{word-spacing:-10.196389pt;}
.ws5f{word-spacing:-10.143255pt;}
.wsc7{word-spacing:-10.090121pt;}
.ws4f{word-spacing:-9.983854pt;}
.ws10d{word-spacing:-9.936033pt;}
.wse8{word-spacing:-9.877586pt;}
.ws29{word-spacing:-9.844709pt;}
.ws8b{word-spacing:-9.824452pt;}
.wsb{word-spacing:-9.771318pt;}
.ws5a{word-spacing:-9.718184pt;}
.ws3e{word-spacing:-9.665050pt;}
.ws60{word-spacing:-9.611916pt;}
.ws4e{word-spacing:-9.452515pt;}
.ws28{word-spacing:-9.399381pt;}
.ws27{word-spacing:-9.346247pt;}
.ws61{word-spacing:-9.239979pt;}
.ws26{word-spacing:-9.133712pt;}
.wsf3{word-spacing:-9.080578pt;}
.wse3{word-spacing:-9.027444pt;}
.ws14{word-spacing:-8.974310pt;}
.ws68{word-spacing:-8.921176pt;}
.ws16{word-spacing:-8.868042pt;}
.ws52{word-spacing:-8.814908pt;}
.wscd{word-spacing:-8.761775pt;}
.ws35{word-spacing:-8.708641pt;}
.wsae{word-spacing:-8.687323pt;}
.ws5e{word-spacing:-8.655507pt;}
.wsec{word-spacing:-8.395151pt;}
.ws6{word-spacing:-8.389838pt;}
.ws32{word-spacing:-8.283570pt;}
.ws25{word-spacing:-8.230436pt;}
.wseb{word-spacing:-8.129482pt;}
.wsf6{word-spacing:-8.071034pt;}
.ws36{word-spacing:-8.017900pt;}
.ws12{word-spacing:-7.858499pt;}
.ws64{word-spacing:-7.699097pt;}
.wsd4{word-spacing:-7.659506pt;}
.wsc4{word-spacing:-7.645963pt;}
.ws55{word-spacing:-7.592830pt;}
.wsaf{word-spacing:-7.555572pt;}
.ws44{word-spacing:-7.539696pt;}
.ws51{word-spacing:-7.486562pt;}
.wscc{word-spacing:-7.433428pt;}
.wsdb{word-spacing:-7.380294pt;}
.wsbf{word-spacing:-7.274026pt;}
.ws45{word-spacing:-7.220892pt;}
.ws38{word-spacing:-7.167759pt;}
.ws4a{word-spacing:-7.114625pt;}
.ws42{word-spacing:-7.061491pt;}
.ws100{word-spacing:-6.960537pt;}
.wsf9{word-spacing:-6.854269pt;}
.ws105{word-spacing:-6.848955pt;}
.ws5{word-spacing:-6.795822pt;}
.ws98{word-spacing:-6.742688pt;}
.ws19{word-spacing:-6.689554pt;}
.ws39{word-spacing:-6.583286pt;}
.ws7{word-spacing:-6.423884pt;}
.ws2c{word-spacing:-6.370751pt;}
.wsad{word-spacing:-5.998814pt;}
.wse4{word-spacing:-5.892546pt;}
.wsd0{word-spacing:-5.887232pt;}
.ws8{word-spacing:-5.839412pt;}
.ws1e{word-spacing:-5.786278pt;}
.ws2f{word-spacing:-5.680010pt;}
.wsc2{word-spacing:-5.472788pt;}
.ws23{word-spacing:-5.414341pt;}
.ws10a{word-spacing:-5.313387pt;}
.wsff{word-spacing:-5.254939pt;}
.ws10c{word-spacing:-5.207119pt;}
.wse{word-spacing:-5.201806pt;}
.ws20{word-spacing:-5.095538pt;}
.ws3d{word-spacing:-5.042404pt;}
.wse9{word-spacing:-4.776735pt;}
.ws70{word-spacing:-4.723601pt;}
.ws10e{word-spacing:-4.675780pt;}
.wsdf{word-spacing:-4.670467pt;}
.ws40{word-spacing:-4.617333pt;}
.ws17{word-spacing:-4.511065pt;}
.ws5c{word-spacing:-4.351664pt;}
.ws37{word-spacing:-4.298530pt;}
.ws10f{word-spacing:-4.245396pt;}
.ws50{word-spacing:-4.139128pt;}
.ws71{word-spacing:-4.085994pt;}
.ws2e{word-spacing:-3.979727pt;}
.ws3a{word-spacing:-3.767191pt;}
.ws93{word-spacing:-3.756554pt;}
.ws9f{word-spacing:-3.719360pt;}
.ws6b{word-spacing:-3.714057pt;}
.wsa6{word-spacing:-3.660923pt;}
.ws58{word-spacing:-3.607790pt;}
.wsc3{word-spacing:-3.501522pt;}
.ws97{word-spacing:-3.496198pt;}
.ws7a{word-spacing:-3.421811pt;}
.wsf{word-spacing:-3.395254pt;}
.ws1d{word-spacing:-3.288986pt;}
.ws24{word-spacing:-3.235852pt;}
.ws76{word-spacing:-3.198650pt;}
.wsac{word-spacing:-3.182719pt;}
.ws57{word-spacing:-3.129585pt;}
.wsea{word-spacing:-3.023317pt;}
.wsd{word-spacing:-2.970183pt;}
.ws10b{word-spacing:-2.917049pt;}
.wse7{word-spacing:-2.863915pt;}
.wsc{word-spacing:-2.762961pt;}
.wse2{word-spacing:-2.704514pt;}
.wscb{word-spacing:-2.651380pt;}
.wse5{word-spacing:-2.491978pt;}
.ws4d{word-spacing:-2.438844pt;}
.ws2d{word-spacing:-2.385711pt;}
.wsf7{word-spacing:-2.332577pt;}
.ws1f{word-spacing:-2.173175pt;}
.wsee{word-spacing:-1.960640pt;}
.wsf2{word-spacing:-1.753418pt;}
.wsfd{word-spacing:-1.694970pt;}
.wsfe{word-spacing:-1.540882pt;}
.wsc1{word-spacing:-1.004230pt;}
.wsc8{word-spacing:-0.685427pt;}
.wsc0{word-spacing:-0.632293pt;}
.ws18{word-spacing:-0.579159pt;}
.wsfa{word-spacing:-0.526025pt;}
.ws109{word-spacing:-0.318803pt;}
.wsd9{word-spacing:-0.154088pt;}
.ws6c{word-spacing:-0.053134pt;}
.ws69{word-spacing:-0.042507pt;}
.ws67{word-spacing:-0.037194pt;}
.wsb0{word-spacing:-0.036216pt;}
.ws43{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.005313pt;}
.wsb1{word-spacing:0.009054pt;}
.wsdd{word-spacing:0.483518pt;}
.ws101{word-spacing:1.121125pt;}
.wsf8{word-spacing:1.174258pt;}
.ws34{word-spacing:1.185956pt;}
.ws106{word-spacing:1.546196pt;}
.wsed{word-spacing:2.019087pt;}
.wsf0{word-spacing:2.072221pt;}
.wsf1{word-spacing:2.290070pt;}
.wsfc{word-spacing:2.502605pt;}
.ws85{word-spacing:5.132717pt;}
.ws8a{word-spacing:5.207104pt;}
.ws74{word-spacing:5.244298pt;}
.ws7b{word-spacing:5.318685pt;}
.ws89{word-spacing:5.393072pt;}
.ws79{word-spacing:5.430266pt;}
.ws91{word-spacing:5.467459pt;}
.wsb7{word-spacing:5.479434pt;}
.wsb8{word-spacing:5.480611pt;}
.wsb9{word-spacing:5.493023pt;}
.ws7d{word-spacing:5.504653pt;}
.ws87{word-spacing:5.541846pt;}
.ws82{word-spacing:5.579040pt;}
.ws9b{word-spacing:5.616234pt;}
.ws77{word-spacing:5.690621pt;}
.ws7c{word-spacing:5.727814pt;}
.ws94{word-spacing:5.765008pt;}
.ws99{word-spacing:6.211331pt;}
.ws65{word-spacing:8.338802pt;}
.ws108{word-spacing:8.607686pt;}
.ws107{word-spacing:9.356874pt;}
.wsb4{word-spacing:14.447088pt;}
.ws72{word-spacing:17.640444pt;}
.ws9a{word-spacing:19.489446pt;}
.ws4{word-spacing:20.722347pt;}
.ws2{word-spacing:20.786108pt;}
.ws92{word-spacing:20.828416pt;}
.ws80{word-spacing:21.832643pt;}
.ws3{word-spacing:22.252612pt;}
.wsa7{word-spacing:22.278966pt;}
.ws8f{word-spacing:22.911258pt;}
.ws33{word-spacing:23.412998pt;}
.ws75{word-spacing:23.841098pt;}
.ws95{word-spacing:23.952678pt;}
.ws47{word-spacing:27.927269pt;}
.ws6f{word-spacing:28.003782pt;}
.wsa1{word-spacing:28.267136pt;}
.wsa0{word-spacing:28.453104pt;}
.wsa2{word-spacing:28.500924pt;}
.wsbe{word-spacing:28.539374pt;}
.ws9e{word-spacing:28.601878pt;}
.wsd3{word-spacing:28.687579pt;}
.wsa4{word-spacing:28.787846pt;}
.wsa8{word-spacing:28.936621pt;}
.wsa5{word-spacing:29.048202pt;}
.ws78{word-spacing:29.271363pt;}
.ws7f{word-spacing:29.457331pt;}
.ws90{word-spacing:29.754880pt;}
.wsa3{word-spacing:29.914281pt;}
.ws8e{word-spacing:30.015235pt;}
.wsef{word-spacing:30.132216pt;}
.ws73{word-spacing:30.647526pt;}
.ws8d{word-spacing:30.684720pt;}
.ws0{word-spacing:32.869937pt;}
.ws1{word-spacing:32.961753pt;}
.ws46{word-spacing:37.720942pt;}
.wsbc{word-spacing:63.611865pt;}
.ws6e{word-spacing:70.851100pt;}
.ws1a{word-spacing:84.087860pt;}
.ws9d{word-spacing:123.344604pt;}
.ws9c{word-spacing:124.534799pt;}
.ws7e{word-spacing:218.820575pt;}
.ws84{word-spacing:219.341286pt;}
.ws81{word-spacing:312.994771pt;}
.ws83{word-spacing:314.184966pt;}
.ws86{word-spacing:314.445321pt;}
.ws88{word-spacing:314.594095pt;}
.ws96{word-spacing:409.214614pt;}
._13{margin-left:-26.639422pt;}
._12{margin-left:-20.573393pt;}
._d{margin-left:-7.039202pt;}
._f{margin-left:-5.993540pt;}
._3{margin-left:-4.782080pt;}
._4{margin-left:-3.685404pt;}
._1{margin-left:-2.754464pt;}
._7{margin-left:-1.832021pt;}
._2{margin-left:-0.930940pt;}
._5{width:1.540882pt;}
._0{width:2.754464pt;}
._6{width:3.791671pt;}
._16{width:4.824512pt;}
._e{width:6.135865pt;}
._11{width:7.575925pt;}
._8{width:9.536464pt;}
._10{width:12.300395pt;}
._15{width:14.771215pt;}
._25{width:16.390701pt;}
._14{width:17.986465pt;}
._31{width:20.082407pt;}
._a{width:22.420298pt;}
._34{width:23.627577pt;}
._24{width:24.651920pt;}
._1a{width:26.219350pt;}
._1b{width:27.114134pt;}
._17{width:28.146730pt;}
._18{width:29.046002pt;}
._9{width:29.992971pt;}
._19{width:31.236965pt;}
._3c{width:32.889863pt;}
._39{width:35.016334pt;}
._32{width:36.053541pt;}
._3d{width:37.647557pt;}
._3a{width:41.498666pt;}
._36{width:42.843985pt;}
._35{width:44.395558pt;}
._37{width:49.227430pt;}
._1d{width:54.805490pt;}
._33{width:56.524993pt;}
._38{width:58.129566pt;}
._1e{width:59.254648pt;}
._b{width:71.731200pt;}
._2c{width:73.841488pt;}
._3b{width:78.319351pt;}
._c{width:84.164373pt;}
._21{width:90.087408pt;}
._2a{width:109.821430pt;}
._29{width:114.869637pt;}
._22{width:124.900080pt;}
._20{width:138.707447pt;}
._1f{width:147.538476pt;}
._27{width:152.272255pt;}
._2b{width:176.365966pt;}
._1c{width:189.250047pt;}
._26{width:224.140354pt;}
._2f{width:232.544994pt;}
._28{width:270.675636pt;}
._30{width:280.909727pt;}
._2d{width:292.442796pt;}
._2e{width:303.898396pt;}
._23{width:306.840429pt;}
.fs5{font-size:26.566933pt;}
.fs4{font-size:37.193600pt;}
.fs6{font-size:45.270054pt;}
.fs7{font-size:45.892783pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:28.180000pt;}
.yad{bottom:28.181333pt;}
.y2d{bottom:68.030667pt;}
.y7a{bottom:68.032000pt;}
.yd7{bottom:72.813333pt;}
.y4a{bottom:83.970667pt;}
.y2c{bottom:83.972000pt;}
.yac{bottom:87.682667pt;}
.yd6{bottom:88.753333pt;}
.y79{bottom:93.310667pt;}
.y2b{bottom:99.912000pt;}
.yd5{bottom:104.694667pt;}
.y78{bottom:109.250667pt;}
.yab{bottom:111.768000pt;}
.y2a{bottom:115.852000pt;}
.yaa{bottom:122.394667pt;}
.y140{bottom:125.368000pt;}
.y16a{bottom:126.689333pt;}
.y29{bottom:131.792000pt;}
.y77{bottom:132.662667pt;}
.ya9{bottom:133.021333pt;}
.y13f{bottom:141.308000pt;}
.y169{bottom:142.629333pt;}
.ya8{bottom:143.648000pt;}
.y28{bottom:147.732000pt;}
.yf8{bottom:147.733333pt;}
.y76{bottom:148.602667pt;}
.ya7{bottom:154.274667pt;}
.y13e{bottom:157.248000pt;}
.y168{bottom:158.570667pt;}
.y27{bottom:163.672000pt;}
.yf7{bottom:163.673333pt;}
.y49{bottom:163.737333pt;}
.ya6{bottom:164.901333pt;}
.y104{bottom:166.362667pt;}
.y75{bottom:173.120000pt;}
.ya5{bottom:175.528000pt;}
.y26{bottom:179.613333pt;}
.y48{bottom:179.677333pt;}
.y13d{bottom:182.702667pt;}
.y167{bottom:185.348000pt;}
.ya4{bottom:186.154667pt;}
.y115{bottom:191.745333pt;}
.yf6{bottom:195.553333pt;}
.y47{bottom:195.617333pt;}
.y25{bottom:196.302667pt;}
.ya3{bottom:196.782667pt;}
.y13c{bottom:198.644000pt;}
.y166{bottom:201.288000pt;}
.ya2{bottom:207.409333pt;}
.y74{bottom:209.621333pt;}
.y46{bottom:211.621333pt;}
.y24{bottom:212.242667pt;}
.y165{bottom:217.228000pt;}
.ya1{bottom:218.036000pt;}
.y13b{bottom:224.098667pt;}
.y73{bottom:225.561333pt;}
.yf5{bottom:226.966667pt;}
.y114{bottom:227.048000pt;}
.y45{bottom:227.562667pt;}
.y23{bottom:228.182667pt;}
.ya0{bottom:228.662667pt;}
.y164{bottom:233.169333pt;}
.y13a{bottom:240.038667pt;}
.y72{bottom:241.501333pt;}
.y44{bottom:243.502667pt;}
.y22{bottom:244.124000pt;}
.y163{bottom:249.109333pt;}
.y9f{bottom:251.858667pt;}
.y71{bottom:257.441333pt;}
.y43{bottom:259.442667pt;}
.y21{bottom:260.064000pt;}
.y139{bottom:265.494667pt;}
.y9e{bottom:267.798667pt;}
.y70{bottom:273.381333pt;}
.y42{bottom:275.382667pt;}
.y162{bottom:275.886667pt;}
.y20{bottom:276.004000pt;}
.y138{bottom:281.434667pt;}
.y103{bottom:282.421333pt;}
.y9d{bottom:283.738667pt;}
.yf4{bottom:283.805333pt;}
.y113{bottom:285.886667pt;}
.y6f{bottom:289.322667pt;}
.y41{bottom:291.322667pt;}
.y161{bottom:291.826667pt;}
.y1f{bottom:291.944000pt;}
.y102{bottom:298.361333pt;}
.yf3{bottom:299.745333pt;}
.y6e{bottom:305.262667pt;}
.yd4{bottom:305.282667pt;}
.y40{bottom:307.262667pt;}
.y1e{bottom:307.884000pt;}
.y9c{bottom:310.064000pt;}
.y137{bottom:310.525333pt;}
.y112{bottom:317.352946pt;}
.y160{bottom:318.605333pt;}
.y6d{bottom:321.202667pt;}
.yd3{bottom:321.224000pt;}
.y3f{bottom:323.204000pt;}
.y111{bottom:331.120642pt;}
.y15f{bottom:334.545333pt;}
.yf2{bottom:335.733333pt;}
.y6c{bottom:337.142667pt;}
.yd2{bottom:337.164000pt;}
.y1d{bottom:338.370667pt;}
.y3e{bottom:339.144000pt;}
.y110{bottom:344.888339pt;}
.y15e{bottom:350.485333pt;}
.y6b{bottom:353.082667pt;}
.yd1{bottom:353.104000pt;}
.y136{bottom:353.970667pt;}
.y10f{bottom:358.656036pt;}
.yf1{bottom:359.644000pt;}
.y3d{bottom:363.780000pt;}
.y9b{bottom:367.265333pt;}
.y6a{bottom:369.022667pt;}
.yd0{bottom:369.044000pt;}
.y135{bottom:369.910667pt;}
.y15d{bottom:377.264000pt;}
.y10e{bottom:378.183018pt;}
.y3c{bottom:382.377333pt;}
.y134{bottom:385.850667pt;}
.y1c{bottom:386.270667pt;}
.y9a{bottom:391.350667pt;}
.y15c{bottom:393.204000pt;}
.y69{bottom:394.012000pt;}
.ycf{bottom:396.796000pt;}
.y133{bottom:401.790667pt;}
.y99{bottom:401.977333pt;}
.y1b{bottom:402.210667pt;}
.y15b{bottom:409.144000pt;}
.y68{bottom:409.953333pt;}
.y98{bottom:412.604000pt;}
.y3b{bottom:414.245333pt;}
.yce{bottom:415.392000pt;}
.y10d{bottom:415.620000pt;}
.yf0{bottom:415.836000pt;}
.y132{bottom:417.732000pt;}
.y1a{bottom:418.152000pt;}
.y97{bottom:423.230667pt;}
.yef{bottom:424.948000pt;}
.y67{bottom:425.893333pt;}
.y10c{bottom:431.560000pt;}
.y131{bottom:433.672000pt;}
.y96{bottom:433.857333pt;}
.y19{bottom:434.841333pt;}
.y15a{bottom:435.921333pt;}
.y95{bottom:444.484000pt;}
.y130{bottom:449.612000pt;}
.ycd{bottom:450.374667pt;}
.y18{bottom:450.781333pt;}
.y66{bottom:450.882667pt;}
.y159{bottom:451.862667pt;}
.y94{bottom:455.110667pt;}
.y3a{bottom:458.509333pt;}
.y10b{bottom:459.633333pt;}
.y93{bottom:465.737333pt;}
.y17{bottom:466.721333pt;}
.y65{bottom:466.822667pt;}
.y158{bottom:467.802667pt;}
.y39{bottom:474.449333pt;}
.y12f{bottom:475.066667pt;}
.y92{bottom:476.365333pt;}
.y16{bottom:482.662667pt;}
.y64{bottom:482.762667pt;}
.yee{bottom:484.681333pt;}
.y91{bottom:486.992000pt;}
.y38{bottom:490.390667pt;}
.y12e{bottom:491.008000pt;}
.y157{bottom:494.580000pt;}
.y90{bottom:497.618667pt;}
.y15{bottom:498.602667pt;}
.yed{bottom:500.621333pt;}
.y12d{bottom:506.948000pt;}
.y63{bottom:507.280000pt;}
.y8f{bottom:508.245333pt;}
.y156{bottom:510.520000pt;}
.y10a{bottom:511.729333pt;}
.y14{bottom:514.542667pt;}
.yec{bottom:516.561333pt;}
.y37{bottom:517.214667pt;}
.y8e{bottom:518.872000pt;}
.ycc{bottom:520.686667pt;}
.y62{bottom:525.876000pt;}
.y109{bottom:527.669333pt;}
.y8d{bottom:529.498667pt;}
.y13{bottom:530.482667pt;}
.y12c{bottom:531.290667pt;}
.y101{bottom:532.942667pt;}
.y36{bottom:533.154667pt;}
.y155{bottom:537.298667pt;}
.y8c{bottom:540.125333pt;}
.y108{bottom:543.609333pt;}
.ycb{bottom:545.537333pt;}
.y12{bottom:546.422667pt;}
.y12b{bottom:547.232000pt;}
.yeb{bottom:547.974667pt;}
.y100{bottom:548.882667pt;}
.y35{bottom:549.094667pt;}
.y8b{bottom:550.752000pt;}
.y154{bottom:553.238667pt;}
.yca{bottom:556.164000pt;}
.y8a{bottom:561.378667pt;}
.y11{bottom:562.364000pt;}
.y61{bottom:562.377333pt;}
.yff{bottom:564.822667pt;}
.y34{bottom:565.036000pt;}
.yc9{bottom:566.792000pt;}
.y153{bottom:569.178667pt;}
.y12a{bottom:571.748000pt;}
.y89{bottom:572.006667pt;}
.yc8{bottom:577.418667pt;}
.y10{bottom:578.304000pt;}
.y60{bottom:578.317333pt;}
.yfe{bottom:580.762667pt;}
.y88{bottom:582.633333pt;}
.yc7{bottom:588.045333pt;}
.y33{bottom:591.796000pt;}
.yf{bottom:594.244000pt;}
.y5f{bottom:594.257333pt;}
.y152{bottom:595.956000pt;}
.yfd{bottom:596.702667pt;}
.yc6{bottom:598.672000pt;}
.yea{bottom:604.813333pt;}
.y87{bottom:605.829333pt;}
.y32{bottom:607.736000pt;}
.y129{bottom:608.450667pt;}
.yc5{bottom:609.298667pt;}
.ye{bottom:610.184000pt;}
.y5e{bottom:610.198667pt;}
.y151{bottom:611.897333pt;}
.y86{bottom:621.769333pt;}
.ye9{bottom:623.408000pt;}
.y128{bottom:624.390667pt;}
.yd{bottom:626.124000pt;}
.y5d{bottom:626.138667pt;}
.y150{bottom:627.837333pt;}
.y31{bottom:632.372000pt;}
.yc4{bottom:634.028000pt;}
.y85{bottom:637.709333pt;}
.y127{bottom:640.330667pt;}
.yc{bottom:642.064000pt;}
.y5c{bottom:642.078667pt;}
.yfc{bottom:647.213333pt;}
.yc3{bottom:649.968000pt;}
.y30{bottom:650.969333pt;}
.y14f{bottom:654.614667pt;}
.y126{bottom:656.270667pt;}
.yb{bottom:658.005333pt;}
.y5b{bottom:658.018667pt;}
.ye8{bottom:662.700000pt;}
.y84{bottom:664.034667pt;}
.yc2{bottom:665.909333pt;}
.y14e{bottom:670.554667pt;}
.y125{bottom:672.210667pt;}
.ya{bottom:673.945333pt;}
.y5a{bottom:673.958667pt;}
.ye7{bottom:678.640000pt;}
.y124{bottom:688.150667pt;}
.y2f{bottom:688.490667pt;}
.y9{bottom:689.885333pt;}
.y59{bottom:689.900000pt;}
.y14d{bottom:697.333333pt;}
.yc1{bottom:700.756000pt;}
.y123{bottom:704.092000pt;}
.y2e{bottom:704.430667pt;}
.y83{bottom:706.366667pt;}
.y14c{bottom:713.273333pt;}
.y58{bottom:714.416000pt;}
.y8{bottom:720.372000pt;}
.y82{bottom:722.306667pt;}
.ye4{bottom:724.677333pt;}
.yc0{bottom:725.608000pt;}
.y122{bottom:728.608000pt;}
.ye1{bottom:731.238667pt;}
.ybf{bottom:736.234667pt;}
.ye6{bottom:736.342667pt;}
.y14b{bottom:740.050667pt;}
.ye0{bottom:740.349333pt;}
.ye5{bottom:740.350667pt;}
.ybe{bottom:746.861333pt;}
.y57{bottom:750.917333pt;}
.ye3{bottom:752.969333pt;}
.y81{bottom:753.205333pt;}
.y14a{bottom:755.992000pt;}
.ye2{bottom:756.954667pt;}
.ybd{bottom:757.488000pt;}
.yfb{bottom:763.272000pt;}
.y121{bottom:765.310667pt;}
.y56{bottom:766.857333pt;}
.y7{bottom:766.858667pt;}
.ybc{bottom:768.114667pt;}
.y107{bottom:773.108000pt;}
.y80{bottom:777.116000pt;}
.ybb{bottom:778.741333pt;}
.yfa{bottom:779.212000pt;}
.y120{bottom:781.250667pt;}
.y149{bottom:782.769333pt;}
.y55{bottom:782.797333pt;}
.y106{bottom:789.049333pt;}
.yba{bottom:789.368000pt;}
.ydf{bottom:789.980000pt;}
.yf9{bottom:795.152000pt;}
.y11f{bottom:797.190667pt;}
.y6{bottom:798.025333pt;}
.y148{bottom:798.709333pt;}
.y54{bottom:798.738667pt;}
.y172{bottom:799.342667pt;}
.yb9{bottom:799.996000pt;}
.y105{bottom:804.989333pt;}
.yb8{bottom:810.622667pt;}
.y147{bottom:814.649333pt;}
.y53{bottom:814.678667pt;}
.y171{bottom:815.282667pt;}
.y5{bottom:816.622667pt;}
.yb7{bottom:821.249333pt;}
.yde{bottom:821.394667pt;}
.y11e{bottom:822.645333pt;}
.y7f{bottom:823.345333pt;}
.y146{bottom:830.590667pt;}
.y170{bottom:831.222667pt;}
.yb6{bottom:831.876000pt;}
.y7e{bottom:833.414667pt;}
.y4{bottom:835.218667pt;}
.y11d{bottom:838.586667pt;}
.yb5{bottom:842.502667pt;}
.y52{bottom:843.769333pt;}
.yb4{bottom:853.129333pt;}
.y11c{bottom:854.526667pt;}
.y145{bottom:857.368000pt;}
.y16f{bottom:857.789333pt;}
.yb3{bottom:863.756000pt;}
.y51{bottom:867.680000pt;}
.y11b{bottom:870.466667pt;}
.y7d{bottom:873.216000pt;}
.y144{bottom:873.308000pt;}
.y16e{bottom:873.730667pt;}
.y3{bottom:873.736000pt;}
.yb2{bottom:874.382667pt;}
.ydd{bottom:883.014667pt;}
.y11a{bottom:886.406667pt;}
.y7c{bottom:889.156000pt;}
.y143{bottom:889.248000pt;}
.y16d{bottom:889.670667pt;}
.yb1{bottom:899.113333pt;}
.y119{bottom:902.346667pt;}
.y2{bottom:902.960000pt;}
.y50{bottom:910.924000pt;}
.ydc{bottom:914.384475pt;}
.yb0{bottom:915.053333pt;}
.y142{bottom:916.026667pt;}
.y16c{bottom:916.237333pt;}
.y118{bottom:918.288000pt;}
.y4f{bottom:926.864000pt;}
.y7b{bottom:927.578667pt;}
.ydb{bottom:927.965355pt;}
.yaf{bottom:930.993333pt;}
.y141{bottom:931.966667pt;}
.y16b{bottom:932.177333pt;}
.y1{bottom:932.184000pt;}
.y117{bottom:934.228000pt;}
.yda{bottom:941.546235pt;}
.y4e{bottom:942.804000pt;}
.yae{bottom:946.933333pt;}
.y116{bottom:950.168000pt;}
.yd9{bottom:955.127115pt;}
.y4d{bottom:958.744000pt;}
.yd8{bottom:974.389131pt;}
.y4c{bottom:974.685333pt;}
.hf{height:2.125355pt;}
.ha{height:18.012381pt;}
.h9{height:25.886746pt;}
.he{height:26.184294pt;}
.h10{height:27.895200pt;}
.hb{height:33.997811pt;}
.h15{height:34.465480pt;}
.hd{height:38.043849pt;}
.h7{height:39.850400pt;}
.h5{height:39.903534pt;}
.h2{height:45.015313pt;}
.h3{height:45.589163pt;}
.h6{height:47.884561pt;}
.h14{height:52.600021pt;}
.h11{height:55.495200pt;}
.h13{height:55.935534pt;}
.h4{height:57.461313pt;}
.h1{height:64.454458pt;}
.h12{height:71.527200pt;}
.hc{height:75.797067pt;}
.h8{height:92.984021pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:44.793333pt;}
.x1b{left:49.312000pt;}
.x8{left:60.473333pt;}
.x2{left:61.988000pt;}
.x2e{left:67.113333pt;}
.x2d{left:70.069333pt;}
.x9{left:73.756000pt;}
.x1d{left:82.945333pt;}
.x12{left:87.040000pt;}
.x13{left:96.474667pt;}
.x10{left:97.870667pt;}
.x11{left:106.289333pt;}
.x1{left:112.178667pt;}
.x1e{left:124.242667pt;}
.x6{left:183.838667pt;}
.x5{left:250.380000pt;}
.x4{left:320.401333pt;}
.x3{left:322.432000pt;}
.x7{left:324.236000pt;}
.x18{left:403.658667pt;}
.xf{left:404.680000pt;}
.x17{left:408.177333pt;}
.xa{left:419.338667pt;}
.x1f{left:426.129675pt;}
.xd{left:428.934667pt;}
.xc{left:432.622667pt;}
.x2a{left:438.922667pt;}
.x20{left:440.612000pt;}
.xe{left:445.905333pt;}
.x19{left:446.804000pt;}
.x1a{left:454.353333pt;}
.x16{left:456.736000pt;}
.x14{left:463.802667pt;}
.xb{left:465.156000pt;}
.x15{left:484.150667pt;}
.x21{left:493.344000pt;}
.x2b{left:553.988000pt;}
.x22{left:556.388000pt;}
.x24{left:572.316000pt;}
.x25{left:573.306667pt;}
.x23{left:577.205333pt;}
.x26{left:591.504000pt;}
.x27{left:601.466667pt;}
.x28{left:663.308000pt;}
.x2c{left:685.765333pt;}
.x29{left:738.558667pt;}
}




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