
    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_5854acf82aced017fee90722.woff')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_7915506965bfedb28a90585c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.892578;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_d667388dacdc9bd60d865e53.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_492b5a5e5f2a69b46b507a73.woff')format("woff");}.ff4{font-family:ff4;line-height:1.124118;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_0d3c0270d903f3705d1bc759.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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_ce01ad5946835b0f4660d0c3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5032c5c056d886cd0a38a06b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.143000;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_f30980fe49c32c02f195b93a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.050000;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_b27e3b3f0773863771f6d3cf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.892578;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_d57531af268f61623e304377.woff')format("woff");}.ffa{font-family:ffa;line-height:1.052000;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_ebafaa8c7e29c987c404d5fa.woff')format("woff");}.ffb{font-family:ffb;line-height:1.105000;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_d667388dacdc9bd60d865e53.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2cb972537feac5bff97d2ca9.woff')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_f9621be8c95a4f3ecf7df009.woff')format("woff");}.ffe{font-family:ffe;line-height:1.196000;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_376e406a04a1f25674226d56.woff')format("woff");}.fff{font-family:fff;line-height:1.052000;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_0406cf7f9ebe9769bfce70a5.woff')format("woff");}.ff10{font-family:ff10;line-height:1.065000;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_1a1117d91eb017cc57a91842.woff')format("woff");}.ff11{font-family:ff11;line-height:1.114000;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:-2.157600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.154600px;}
.ls16{letter-spacing:-1.140000px;}
.ls7{letter-spacing:-0.969000px;}
.ls5{letter-spacing:-0.960000px;}
.ls18{letter-spacing:-0.912000px;}
.ls1c{letter-spacing:-0.810000px;}
.ls12{letter-spacing:-0.684000px;}
.ls17{letter-spacing:-0.570000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.486000px;}
.ls15{letter-spacing:-0.456000px;}
.ls19{letter-spacing:-0.324000px;}
.lsc{letter-spacing:-0.171000px;}
.ls1a{letter-spacing:-0.162000px;}
.ls13{letter-spacing:-0.114000px;}
.lsa{letter-spacing:-0.057000px;}
.ls20{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.057000px;}
.lsb{letter-spacing:0.114000px;}
.ls3{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.171000px;}
.ls10{letter-spacing:0.228000px;}
.ls11{letter-spacing:0.285000px;}
.ls8{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.756000px;}
.ls2{letter-spacing:0.840000px;}
.ls1d{letter-spacing:0.972000px;}
.ls0{letter-spacing:1.260000px;}
.ls4{letter-spacing:1.440000px;}
.lsf{letter-spacing:2.679000px;}
.lse{letter-spacing:5.586000px;}
.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;}
}
.wse6{word-spacing:-15.840000px;}
.ws1a{word-spacing:-15.240000px;}
.ws8f{word-spacing:-15.219000px;}
.ws0{word-spacing:-15.000000px;}
.ws8d{word-spacing:-12.540000px;}
.ws75{word-spacing:-12.483000px;}
.ws1b{word-spacing:-12.312000px;}
.ws1c{word-spacing:-12.150000px;}
.ws104{word-spacing:-11.880000px;}
.ws111{word-spacing:-11.772000px;}
.wsc9{word-spacing:-11.685000px;}
.wsac{word-spacing:-11.571000px;}
.ws59{word-spacing:-11.514000px;}
.ws74{word-spacing:-11.457000px;}
.ws2{word-spacing:-11.400000px;}
.ws8e{word-spacing:-11.343000px;}
.wscb{word-spacing:-11.286000px;}
.ws1{word-spacing:-11.280000px;}
.ws19{word-spacing:-11.250000px;}
.ws5a{word-spacing:-11.229000px;}
.wsf2{word-spacing:-10.944000px;}
.wsfa{word-spacing:-10.830000px;}
.wsca{word-spacing:-10.716000px;}
.ws110{word-spacing:-10.314000px;}
.wsf3{word-spacing:-10.260000px;}
.ws103{word-spacing:-4.788000px;}
.ws31{word-spacing:-3.762000px;}
.ws2f{word-spacing:-3.705000px;}
.ws130{word-spacing:-3.402000px;}
.ws70{word-spacing:-3.306000px;}
.ws12f{word-spacing:-3.078000px;}
.ws67{word-spacing:-3.021000px;}
.ws42{word-spacing:-2.964000px;}
.ws4d{word-spacing:-2.736000px;}
.ws11e{word-spacing:-2.592000px;}
.wsd2{word-spacing:-2.580000px;}
.wsa5{word-spacing:-2.565000px;}
.ws8{word-spacing:-2.508000px;}
.ws53{word-spacing:-2.451000px;}
.ws11f{word-spacing:-2.376000px;}
.ws57{word-spacing:-2.337000px;}
.ws11b{word-spacing:-2.322000px;}
.ws60{word-spacing:-2.280000px;}
.ws7c{word-spacing:-2.223000px;}
.ws16{word-spacing:-2.166000px;}
.wsb1{word-spacing:-2.109000px;}
.wsb3{word-spacing:-2.052000px;}
.wsf1{word-spacing:-1.995000px;}
.wsf7{word-spacing:-1.938000px;}
.ws109{word-spacing:-1.890000px;}
.ws80{word-spacing:-1.881000px;}
.ws126{word-spacing:-1.836000px;}
.wsb2{word-spacing:-1.824000px;}
.ws4e{word-spacing:-1.767000px;}
.ws10a{word-spacing:-1.728000px;}
.ws17{word-spacing:-1.710000px;}
.ws106{word-spacing:-1.653000px;}
.ws71{word-spacing:-1.596000px;}
.ws5f{word-spacing:-1.539000px;}
.wsf8{word-spacing:-1.482000px;}
.ws11d{word-spacing:-1.458000px;}
.ws107{word-spacing:-1.440000px;}
.ws24{word-spacing:-1.425000px;}
.ws10d{word-spacing:-1.404000px;}
.ws21{word-spacing:-1.368000px;}
.ws58{word-spacing:-1.311000px;}
.ws10c{word-spacing:-1.296000px;}
.wse{word-spacing:-1.254000px;}
.ws9b{word-spacing:-1.197000px;}
.ws123{word-spacing:-1.188000px;}
.ws79{word-spacing:-1.140000px;}
.ws120{word-spacing:-1.134000px;}
.ws6b{word-spacing:-1.083000px;}
.ws122{word-spacing:-1.080000px;}
.ws6c{word-spacing:-1.026000px;}
.ws81{word-spacing:-0.969000px;}
.wsf9{word-spacing:-0.912000px;}
.wsd1{word-spacing:-0.855000px;}
.ws5{word-spacing:-0.840000px;}
.wsef{word-spacing:-0.798000px;}
.wsfc{word-spacing:-0.741000px;}
.ws8a{word-spacing:-0.684000px;}
.ws4{word-spacing:-0.630000px;}
.ws101{word-spacing:-0.627000px;}
.wsbd{word-spacing:-0.570000px;}
.ws117{word-spacing:-0.540000px;}
.ws15{word-spacing:-0.513000px;}
.ws133{word-spacing:-0.486000px;}
.wsc5{word-spacing:-0.456000px;}
.ws1d{word-spacing:-0.450000px;}
.ws69{word-spacing:-0.420000px;}
.ws2c{word-spacing:-0.399000px;}
.ws85{word-spacing:-0.378000px;}
.ws27{word-spacing:-0.342000px;}
.ws9{word-spacing:-0.285000px;}
.wsf6{word-spacing:-0.228000px;}
.ws54{word-spacing:-0.171000px;}
.wsc{word-spacing:-0.114000px;}
.ws29{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.ws139{word-spacing:0.054000px;}
.ws2a{word-spacing:0.057000px;}
.ws73{word-spacing:0.114000px;}
.ws10b{word-spacing:0.162000px;}
.wsb5{word-spacing:0.171000px;}
.ws113{word-spacing:0.216000px;}
.wsb4{word-spacing:0.228000px;}
.ws112{word-spacing:0.270000px;}
.ws9d{word-spacing:0.342000px;}
.ws13{word-spacing:0.456000px;}
.ws12d{word-spacing:0.486000px;}
.ws129{word-spacing:0.540000px;}
.ws82{word-spacing:0.570000px;}
.ws128{word-spacing:0.594000px;}
.ws25{word-spacing:0.627000px;}
.ws134{word-spacing:0.648000px;}
.ws7d{word-spacing:0.684000px;}
.wsf{word-spacing:0.741000px;}
.wsa7{word-spacing:0.798000px;}
.ws121{word-spacing:0.810000px;}
.ws32{word-spacing:0.855000px;}
.ws91{word-spacing:0.912000px;}
.wsa9{word-spacing:0.969000px;}
.ws97{word-spacing:1.026000px;}
.wsd8{word-spacing:1.083000px;}
.ws52{word-spacing:1.197000px;}
.ws76{word-spacing:1.311000px;}
.ws3d{word-spacing:1.368000px;}
.ws1f{word-spacing:1.425000px;}
.ws6f{word-spacing:1.539000px;}
.ws12e{word-spacing:1.566000px;}
.wsa4{word-spacing:1.596000px;}
.ws4b{word-spacing:1.620000px;}
.ws72{word-spacing:1.653000px;}
.ws33{word-spacing:1.710000px;}
.ws7e{word-spacing:1.767000px;}
.ws11c{word-spacing:1.782000px;}
.wsfd{word-spacing:1.824000px;}
.wsd0{word-spacing:1.881000px;}
.ws138{word-spacing:1.890000px;}
.ws11{word-spacing:1.938000px;}
.wsa6{word-spacing:1.995000px;}
.ws6a{word-spacing:2.052000px;}
.ws108{word-spacing:2.106000px;}
.ws12{word-spacing:2.109000px;}
.wsc3{word-spacing:2.166000px;}
.ws102{word-spacing:2.223000px;}
.ws2b{word-spacing:2.280000px;}
.ws14{word-spacing:2.337000px;}
.ws3b{word-spacing:2.394000px;}
.ws4f{word-spacing:2.451000px;}
.wsb{word-spacing:2.508000px;}
.ws1e{word-spacing:2.565000px;}
.ws86{word-spacing:2.622000px;}
.wsa2{word-spacing:2.679000px;}
.ws11a{word-spacing:2.700000px;}
.ws23{word-spacing:2.736000px;}
.wscd{word-spacing:2.793000px;}
.ws28{word-spacing:2.850000px;}
.ws95{word-spacing:2.907000px;}
.wsbf{word-spacing:2.964000px;}
.ws61{word-spacing:3.021000px;}
.wsa1{word-spacing:3.078000px;}
.ws83{word-spacing:3.135000px;}
.wsee{word-spacing:3.192000px;}
.ws48{word-spacing:3.249000px;}
.ws26{word-spacing:3.306000px;}
.wsa0{word-spacing:3.363000px;}
.ws46{word-spacing:3.477000px;}
.ws47{word-spacing:3.534000px;}
.ws137{word-spacing:3.564000px;}
.ws2e{word-spacing:3.591000px;}
.ws96{word-spacing:3.648000px;}
.wsa8{word-spacing:3.705000px;}
.ws10{word-spacing:3.762000px;}
.ws68{word-spacing:3.819000px;}
.ws92{word-spacing:3.876000px;}
.wsc6{word-spacing:3.933000px;}
.ws20{word-spacing:3.990000px;}
.ws51{word-spacing:4.047000px;}
.wsaa{word-spacing:4.104000px;}
.ws9a{word-spacing:4.161000px;}
.ws45{word-spacing:4.218000px;}
.wsc8{word-spacing:4.275000px;}
.ws22{word-spacing:4.332000px;}
.wsab{word-spacing:4.389000px;}
.wsd4{word-spacing:4.446000px;}
.ws65{word-spacing:4.560000px;}
.ws30{word-spacing:4.617000px;}
.ws4c{word-spacing:4.674000px;}
.ws3f{word-spacing:4.731000px;}
.wsaf{word-spacing:4.788000px;}
.ws94{word-spacing:4.845000px;}
.ws132{word-spacing:4.914000px;}
.wsc7{word-spacing:4.959000px;}
.ws40{word-spacing:5.016000px;}
.ws105{word-spacing:5.073000px;}
.ws99{word-spacing:5.130000px;}
.ws56{word-spacing:5.187000px;}
.ws3e{word-spacing:5.244000px;}
.ws7f{word-spacing:5.301000px;}
.wsad{word-spacing:5.358000px;}
.ws131{word-spacing:5.400000px;}
.ws6{word-spacing:5.415000px;}
.ws12c{word-spacing:5.508000px;}
.wscc{word-spacing:5.529000px;}
.ws8b{word-spacing:5.586000px;}
.wsb8{word-spacing:5.643000px;}
.wsf4{word-spacing:5.700000px;}
.wsa3{word-spacing:5.757000px;}
.ws125{word-spacing:5.778000px;}
.wse3{word-spacing:5.814000px;}
.wsb0{word-spacing:5.871000px;}
.ws114{word-spacing:5.886000px;}
.ws9c{word-spacing:5.928000px;}
.ws34{word-spacing:5.985000px;}
.ws49{word-spacing:5.994000px;}
.ws38{word-spacing:6.042000px;}
.ws12b{word-spacing:6.102000px;}
.ws2d{word-spacing:6.156000px;}
.ws10f{word-spacing:6.210000px;}
.wsa{word-spacing:6.213000px;}
.ws90{word-spacing:6.270000px;}
.ws124{word-spacing:6.372000px;}
.ws78{word-spacing:6.384000px;}
.ws66{word-spacing:6.441000px;}
.ws3c{word-spacing:6.555000px;}
.wsce{word-spacing:6.612000px;}
.ws6d{word-spacing:6.726000px;}
.ws88{word-spacing:6.840000px;}
.ws10e{word-spacing:6.858000px;}
.ws7{word-spacing:6.897000px;}
.wsf5{word-spacing:6.954000px;}
.ws136{word-spacing:7.020000px;}
.ws5e{word-spacing:7.068000px;}
.ws77{word-spacing:7.125000px;}
.wsfe{word-spacing:7.182000px;}
.ws44{word-spacing:7.239000px;}
.ws64{word-spacing:7.296000px;}
.wsd{word-spacing:7.410000px;}
.ws98{word-spacing:7.467000px;}
.ws6e{word-spacing:7.524000px;}
.wsae{word-spacing:7.581000px;}
.ws89{word-spacing:7.638000px;}
.ws5d{word-spacing:7.695000px;}
.ws135{word-spacing:7.776000px;}
.wsd3{word-spacing:7.809000px;}
.wsbc{word-spacing:8.151000px;}
.wse9{word-spacing:8.208000px;}
.wse8{word-spacing:8.265000px;}
.ws84{word-spacing:8.322000px;}
.wsc4{word-spacing:8.379000px;}
.ws55{word-spacing:8.493000px;}
.wsed{word-spacing:8.550000px;}
.ws37{word-spacing:8.607000px;}
.ws62{word-spacing:8.664000px;}
.ws100{word-spacing:8.778000px;}
.ws7a{word-spacing:8.949000px;}
.ws9e{word-spacing:9.006000px;}
.ws43{word-spacing:9.063000px;}
.wse7{word-spacing:9.120000px;}
.wsd7{word-spacing:9.177000px;}
.ws119{word-spacing:9.180000px;}
.ws50{word-spacing:9.291000px;}
.ws127{word-spacing:9.342000px;}
.wsfb{word-spacing:9.348000px;}
.ws8c{word-spacing:9.405000px;}
.ws87{word-spacing:9.462000px;}
.wscf{word-spacing:9.519000px;}
.ws7b{word-spacing:9.576000px;}
.ws35{word-spacing:9.633000px;}
.ws41{word-spacing:9.918000px;}
.wsd9{word-spacing:10.089000px;}
.ws118{word-spacing:10.098000px;}
.ws63{word-spacing:10.203000px;}
.wse2{word-spacing:10.260000px;}
.wsd5{word-spacing:10.317000px;}
.wsd6{word-spacing:10.374000px;}
.wsea{word-spacing:10.431000px;}
.wsb6{word-spacing:10.488000px;}
.wsec{word-spacing:10.545000px;}
.ws12a{word-spacing:10.584000px;}
.ws5c{word-spacing:10.602000px;}
.ws4a{word-spacing:11.286000px;}
.ws9f{word-spacing:11.514000px;}
.ws93{word-spacing:11.628000px;}
.wsdb{word-spacing:11.742000px;}
.ws5b{word-spacing:11.856000px;}
.wsbb{word-spacing:11.913000px;}
.wsdf{word-spacing:12.027000px;}
.wseb{word-spacing:12.540000px;}
.wsc1{word-spacing:12.768000px;}
.wsff{word-spacing:13.737000px;}
.wsba{word-spacing:13.851000px;}
.wsde{word-spacing:14.763000px;}
.wsb7{word-spacing:15.162000px;}
.ws3a{word-spacing:15.180000px;}
.wsc2{word-spacing:15.333000px;}
.ws36{word-spacing:15.561000px;}
.wsc0{word-spacing:15.789000px;}
.wsf0{word-spacing:16.020000px;}
.wse4{word-spacing:16.074000px;}
.wsb9{word-spacing:16.131000px;}
.wse1{word-spacing:16.302000px;}
.wsdd{word-spacing:16.416000px;}
.wsda{word-spacing:16.758000px;}
.wse5{word-spacing:17.157000px;}
.wsdc{word-spacing:20.862000px;}
.ws115{word-spacing:22.464000px;}
.ws116{word-spacing:24.678000px;}
.wsbe{word-spacing:26.733000px;}
.wse0{word-spacing:31.749000px;}
.ws18{word-spacing:98.010000px;}
.ws39{word-spacing:595.154400px;}
._f{margin-left:-15.678600px;}
._4{margin-left:-6.939000px;}
._5{margin-left:-5.310000px;}
._3{margin-left:-3.330000px;}
._0{margin-left:-2.148600px;}
._1{margin-left:-1.125000px;}
._2{width:1.338600px;}
._7{width:2.497500px;}
._8{width:3.673800px;}
._e{width:6.669000px;}
._d{width:9.177000px;}
._c{width:10.504800px;}
._a{width:14.207400px;}
._9{width:16.068600px;}
._b{width:18.228600px;}
._6{width:49.149600px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.815000px;}
.y4c{bottom:56.126700px;}
.y25{bottom:56.665350px;}
.y23{bottom:112.444050px;}
.ybe{bottom:114.567600px;}
.ye9{bottom:114.672300px;}
.y13f{bottom:114.814050px;}
.y16c{bottom:115.287600px;}
.ycb{bottom:115.563000px;}
.yed{bottom:115.605750px;}
.y10e{bottom:115.692450px;}
.yaf{bottom:120.803850px;}
.y108{bottom:121.446600px;}
.y134{bottom:126.107850px;}
.y9d{bottom:129.006600px;}
.y74{bottom:129.203100px;}
.yec{bottom:130.005750px;}
.y22{bottom:131.646600px;}
.ybd{bottom:131.824350px;}
.ye8{bottom:131.929050px;}
.y13e{bottom:132.067050px;}
.y16b{bottom:132.540600px;}
.y10d{bottom:132.949200px;}
.yae{bottom:138.060600px;}
.y107{bottom:138.703350px;}
.y133{bottom:143.364600px;}
.y9c{bottom:146.263350px;}
.y73{bottom:146.459850px;}
.y21{bottom:148.903350px;}
.ybc{bottom:149.081100px;}
.ye7{bottom:149.185800px;}
.y13d{bottom:149.320050px;}
.y16a{bottom:149.793600px;}
.y10c{bottom:150.205950px;}
.yad{bottom:155.317350px;}
.y106{bottom:155.960100px;}
.y9b{bottom:163.520100px;}
.y72{bottom:163.716600px;}
.y20{bottom:166.160100px;}
.ybb{bottom:166.337850px;}
.ye6{bottom:166.442550px;}
.y13c{bottom:166.573050px;}
.y169{bottom:167.046600px;}
.y10b{bottom:167.462700px;}
.yac{bottom:172.574100px;}
.y105{bottom:173.216850px;}
.y4a{bottom:177.718800px;}
.y132{bottom:178.614600px;}
.y9a{bottom:180.776850px;}
.y71{bottom:180.973350px;}
.y1f{bottom:183.416850px;}
.yba{bottom:183.594600px;}
.ye5{bottom:183.699300px;}
.y13b{bottom:183.826050px;}
.y168{bottom:184.299600px;}
.yab{bottom:189.830850px;}
.y49{bottom:197.006850px;}
.y99{bottom:198.033600px;}
.y70{bottom:198.230100px;}
.y1e{bottom:200.673600px;}
.yb9{bottom:200.851350px;}
.ye4{bottom:200.956050px;}
.y13a{bottom:201.079050px;}
.y167{bottom:201.552600px;}
.yaa{bottom:207.087600px;}
.y104{bottom:208.466850px;}
.y115{bottom:212.933250px;}
.y48{bottom:215.004600px;}
.y98{bottom:215.290350px;}
.y6f{bottom:215.486850px;}
.y1d{bottom:217.930350px;}
.yb8{bottom:218.108100px;}
.ye3{bottom:218.212800px;}
.y139{bottom:218.332050px;}
.y166{bottom:218.805600px;}
.ya9{bottom:224.344350px;}
.y114{bottom:227.333250px;}
.y131{bottom:232.439100px;}
.y97{bottom:232.547100px;}
.y6e{bottom:232.743600px;}
.y47{bottom:233.002350px;}
.y1c{bottom:235.187100px;}
.yb7{bottom:235.364850px;}
.ye2{bottom:235.469550px;}
.y138{bottom:235.585050px;}
.y165{bottom:236.058600px;}
.ya8{bottom:241.601100px;}
.y113{bottom:241.733250px;}
.y130{bottom:249.695850px;}
.y96{bottom:249.803850px;}
.y6d{bottom:250.000350px;}
.y46{bottom:251.000100px;}
.y1b{bottom:252.443850px;}
.yb6{bottom:252.621600px;}
.ye1{bottom:252.726300px;}
.y137{bottom:252.838050px;}
.y164{bottom:253.311600px;}
.y112{bottom:256.133250px;}
.ya7{bottom:258.857850px;}
.y103{bottom:262.325100px;}
.y12f{bottom:266.952600px;}
.y95{bottom:267.060600px;}
.y6c{bottom:267.257100px;}
.y45{bottom:268.997850px;}
.y1a{bottom:269.700600px;}
.yb5{bottom:269.878350px;}
.ye0{bottom:269.983050px;}
.y136{bottom:270.091050px;}
.y111{bottom:270.533250px;}
.y163{bottom:270.564600px;}
.ya6{bottom:276.114600px;}
.y102{bottom:279.581850px;}
.y12e{bottom:284.209350px;}
.y94{bottom:284.317350px;}
.y6b{bottom:284.513850px;}
.y19{bottom:286.957350px;}
.y44{bottom:286.995600px;}
.yb4{bottom:287.135100px;}
.ydf{bottom:287.239800px;}
.y162{bottom:287.817600px;}
.y101{bottom:296.838600px;}
.y12d{bottom:301.466100px;}
.y93{bottom:301.574100px;}
.y6a{bottom:301.770600px;}
.y18{bottom:304.214100px;}
.y135{bottom:304.348950px;}
.yb3{bottom:304.391850px;}
.yde{bottom:304.496550px;}
.y43{bottom:304.993350px;}
.y161{bottom:305.070600px;}
.y100{bottom:314.095350px;}
.ya5{bottom:314.364600px;}
.y12c{bottom:318.722850px;}
.y92{bottom:318.830850px;}
.y69{bottom:319.027350px;}
.yb2{bottom:321.648600px;}
.ydd{bottom:321.753300px;}
.y17{bottom:322.211850px;}
.y160{bottom:322.323600px;}
.y42{bottom:322.991100px;}
.yff{bottom:331.352100px;}
.y12b{bottom:335.979600px;}
.y91{bottom:336.087600px;}
.y68{bottom:336.284100px;}
.yb1{bottom:338.905350px;}
.ydc{bottom:339.010050px;}
.y15f{bottom:339.576600px;}
.y16{bottom:340.209600px;}
.y41{bottom:340.988850px;}
.yfe{bottom:348.608850px;}
.y12a{bottom:353.236350px;}
.y90{bottom:353.344350px;}
.y67{bottom:353.540850px;}
.yb0{bottom:356.162100px;}
.ydb{bottom:356.266800px;}
.y15e{bottom:356.829600px;}
.y15{bottom:358.207350px;}
.y40{bottom:358.986600px;}
.yfd{bottom:365.865600px;}
.y129{bottom:370.493100px;}
.y8f{bottom:370.601100px;}
.y66{bottom:370.797600px;}
.ya4{bottom:373.418850px;}
.yda{bottom:373.523550px;}
.y15d{bottom:374.082600px;}
.y14{bottom:376.205100px;}
.y3f{bottom:376.984350px;}
.yfc{bottom:383.122350px;}
.y128{bottom:387.749850px;}
.y8e{bottom:387.857850px;}
.y65{bottom:388.054350px;}
.ya3{bottom:390.675600px;}
.yd9{bottom:390.780300px;}
.y15c{bottom:391.335600px;}
.y13{bottom:394.202850px;}
.y3e{bottom:394.982100px;}
.yfb{bottom:400.379100px;}
.y127{bottom:405.006600px;}
.y8d{bottom:405.114600px;}
.y64{bottom:405.311100px;}
.ya2{bottom:407.932350px;}
.yd8{bottom:408.037050px;}
.y15b{bottom:408.588600px;}
.y12{bottom:412.200600px;}
.y3d{bottom:412.979850px;}
.yfa{bottom:417.635850px;}
.y126{bottom:422.263350px;}
.y63{bottom:422.567850px;}
.ya1{bottom:425.189100px;}
.yd7{bottom:425.293800px;}
.y15a{bottom:425.841600px;}
.y11{bottom:430.198350px;}
.y3c{bottom:430.977600px;}
.yf9{bottom:434.892600px;}
.y125{bottom:439.520100px;}
.y62{bottom:439.824600px;}
.y8c{bottom:440.364600px;}
.ya0{bottom:442.445850px;}
.yd6{bottom:442.550550px;}
.y159{bottom:443.094600px;}
.y10{bottom:448.196100px;}
.y3b{bottom:448.975350px;}
.yf8{bottom:452.149350px;}
.y124{bottom:456.776850px;}
.y9f{bottom:459.702600px;}
.yd5{bottom:459.807300px;}
.y158{bottom:460.347600px;}
.y3a{bottom:466.973100px;}
.yf7{bottom:469.406100px;}
.y123{bottom:474.033600px;}
.yf{bottom:474.699900px;}
.y9e{bottom:476.959350px;}
.yd4{bottom:477.064050px;}
.y157{bottom:477.600600px;}
.y61{bottom:478.293600px;}
.yeb{bottom:478.511250px;}
.y39{bottom:484.970850px;}
.yf6{bottom:486.662850px;}
.y122{bottom:491.290350px;}
.yea{bottom:492.911250px;}
.y8b{bottom:494.216100px;}
.yd3{bottom:494.320800px;}
.y60{bottom:494.790600px;}
.y156{bottom:494.853600px;}
.yce{bottom:497.730750px;}
.yf5{bottom:503.919600px;}
.y121{bottom:508.547100px;}
.y5f{bottom:511.287600px;}
.y8a{bottom:511.472850px;}
.y38{bottom:511.474800px;}
.yd2{bottom:511.577550px;}
.y155{bottom:512.106600px;}
.ycd{bottom:512.130750px;}
.yf4{bottom:521.176350px;}
.y120{bottom:525.803850px;}
.ycc{bottom:526.530750px;}
.y5e{bottom:527.784600px;}
.y89{bottom:528.729600px;}
.yd1{bottom:528.834300px;}
.y154{bottom:529.359600px;}
.yf3{bottom:538.433100px;}
.yca{bottom:543.047100px;}
.y11f{bottom:543.060600px;}
.y88{bottom:545.986350px;}
.yd0{bottom:546.091050px;}
.y153{bottom:546.612600px;}
.y37{bottom:549.274800px;}
.yf2{bottom:555.689850px;}
.yc9{bottom:560.303850px;}
.y11e{bottom:560.317350px;}
.y5d{bottom:562.176600px;}
.y87{bottom:563.243100px;}
.y152{bottom:563.865600px;}
.y110{bottom:567.377400px;}
.y36{bottom:568.557150px;}
.yf1{bottom:572.946600px;}
.yc8{bottom:577.560600px;}
.y11d{bottom:577.574100px;}
.y5c{bottom:579.433350px;}
.ycf{bottom:580.348800px;}
.y86{bottom:580.499850px;}
.y151{bottom:581.118600px;}
.y10f{bottom:581.777400px;}
.y35{bottom:586.554900px;}
.ye{bottom:588.354600px;}
.yf0{bottom:590.203350px;}
.yc7{bottom:594.817350px;}
.y11c{bottom:594.830850px;}
.y5b{bottom:596.690100px;}
.y85{bottom:597.756600px;}
.y150{bottom:598.371600px;}
.yd{bottom:603.353100px;}
.y34{bottom:604.552650px;}
.yef{bottom:607.460100px;}
.yc6{bottom:612.074100px;}
.y11b{bottom:612.087600px;}
.y5a{bottom:613.946850px;}
.y84{bottom:615.013350px;}
.y14f{bottom:615.624600px;}
.y33{bottom:622.550400px;}
.yc{bottom:622.605000px;}
.yee{bottom:624.716850px;}
.yc5{bottom:629.330850px;}
.y11a{bottom:629.344350px;}
.y59{bottom:631.203600px;}
.y83{bottom:632.270100px;}
.y14e{bottom:632.877600px;}
.y32{bottom:640.548150px;}
.yc4{bottom:646.587600px;}
.y119{bottom:646.601100px;}
.y58{bottom:648.460350px;}
.y82{bottom:649.526850px;}
.y14d{bottom:650.130600px;}
.yb{bottom:650.608950px;}
.y31{bottom:658.545900px;}
.yc3{bottom:663.844350px;}
.y118{bottom:663.857850px;}
.y57{bottom:665.717100px;}
.y81{bottom:666.783600px;}
.y14c{bottom:667.383600px;}
.y10a{bottom:669.762150px;}
.y30{bottom:676.543650px;}
.ya{bottom:677.608950px;}
.yc2{bottom:681.101100px;}
.y117{bottom:681.114600px;}
.y56{bottom:682.973850px;}
.y80{bottom:684.040350px;}
.y109{bottom:684.162150px;}
.y14b{bottom:684.636600px;}
.y2f{bottom:694.541400px;}
.yc1{bottom:698.357850px;}
.y55{bottom:700.230600px;}
.y7f{bottom:701.297100px;}
.y14a{bottom:701.889600px;}
.y9{bottom:704.608950px;}
.yc0{bottom:715.614600px;}
.y116{bottom:716.364600px;}
.y54{bottom:717.487350px;}
.y7e{bottom:718.553850px;}
.y149{bottom:719.142600px;}
.y2e{bottom:721.046400px;}
.y8{bottom:731.608950px;}
.y53{bottom:734.744100px;}
.y7d{bottom:735.810600px;}
.y148{bottom:736.395600px;}
.y2d{bottom:739.044150px;}
.ybf{bottom:750.864600px;}
.y52{bottom:752.000850px;}
.y7c{bottom:753.067350px;}
.y147{bottom:753.648600px;}
.y2c{bottom:757.041900px;}
.y7{bottom:758.608950px;}
.y51{bottom:769.257600px;}
.y7b{bottom:770.324100px;}
.y146{bottom:770.901600px;}
.y2b{bottom:775.039650px;}
.y6{bottom:785.608950px;}
.y50{bottom:786.514350px;}
.y7a{bottom:787.580850px;}
.y145{bottom:788.154600px;}
.y2a{bottom:793.037400px;}
.y4f{bottom:803.771100px;}
.y79{bottom:804.837600px;}
.y144{bottom:805.407600px;}
.y29{bottom:811.035150px;}
.y4e{bottom:821.027850px;}
.y78{bottom:822.094350px;}
.y143{bottom:822.660600px;}
.y28{bottom:829.032900px;}
.y4d{bottom:838.284600px;}
.y77{bottom:839.351100px;}
.y142{bottom:839.913600px;}
.y27{bottom:847.030650px;}
.y5{bottom:849.772950px;}
.y76{bottom:856.607850px;}
.y141{bottom:857.166600px;}
.y4{bottom:867.772950px;}
.y26{bottom:873.534600px;}
.y75{bottom:873.864600px;}
.y140{bottom:874.419600px;}
.y3{bottom:885.772950px;}
.y2{bottom:903.772950px;}
.y4b{bottom:917.138700px;}
.y24{bottom:917.533200px;}
.h4{height:36.000000px;}
.hb{height:37.305000px;}
.hc{height:39.792000px;}
.hf{height:43.536000px;}
.h7{height:46.170000px;}
.h2{height:46.602000px;}
.he{height:47.148353px;}
.ha{height:47.790000px;}
.h9{height:48.735000px;}
.hd{height:48.756600px;}
.h10{height:49.248000px;}
.h8{height:52.387059px;}
.h3{height:52.646484px;}
.h6{height:72.492000px;}
.h5{height:78.580588px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x15{left:63.779550px;}
.x24{left:67.753500px;}
.x23{left:69.937500px;}
.x25{left:71.281500px;}
.xf{left:72.388350px;}
.x21{left:74.406600px;}
.x7{left:76.934400px;}
.x18{left:79.452750px;}
.xd{left:82.276650px;}
.x12{left:85.198800px;}
.x11{left:89.403750px;}
.x1c{left:92.251500px;}
.x8{left:93.291900px;}
.x9{left:97.386900px;}
.x1d{left:100.003500px;}
.x10{left:102.051750px;}
.x1b{left:110.659500px;}
.x6{left:113.901900px;}
.x17{left:119.059650px;}
.x16{left:123.307050px;}
.x1e{left:125.208000px;}
.xa{left:144.029400px;}
.x20{left:199.549200px;}
.x2{left:201.609900px;}
.x22{left:212.850600px;}
.xe{left:228.360150px;}
.x14{left:236.064750px;}
.xc{left:258.640800px;}
.xb{left:260.084400px;}
.x1f{left:304.128000px;}
.x1{left:338.727750px;}
.x1a{left:369.187350px;}
.x4{left:392.314950px;}
.x19{left:398.955600px;}
.x5{left:407.698950px;}
.x3{left:409.462950px;}
.x13{left:529.956750px;}
@media print{
.v1{vertical-align:-1.917867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.915200pt;}
.ls16{letter-spacing:-1.013333pt;}
.ls7{letter-spacing:-0.861333pt;}
.ls5{letter-spacing:-0.853333pt;}
.ls18{letter-spacing:-0.810667pt;}
.ls1c{letter-spacing:-0.720000pt;}
.ls12{letter-spacing:-0.608000pt;}
.ls17{letter-spacing:-0.506667pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.432000pt;}
.ls15{letter-spacing:-0.405333pt;}
.ls19{letter-spacing:-0.288000pt;}
.lsc{letter-spacing:-0.152000pt;}
.ls1a{letter-spacing:-0.144000pt;}
.ls13{letter-spacing:-0.101333pt;}
.lsa{letter-spacing:-0.050667pt;}
.ls20{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.050667pt;}
.lsb{letter-spacing:0.101333pt;}
.ls3{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.152000pt;}
.ls10{letter-spacing:0.202667pt;}
.ls11{letter-spacing:0.253333pt;}
.ls8{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.672000pt;}
.ls2{letter-spacing:0.746667pt;}
.ls1d{letter-spacing:0.864000pt;}
.ls0{letter-spacing:1.120000pt;}
.ls4{letter-spacing:1.280000pt;}
.lsf{letter-spacing:2.381333pt;}
.lse{letter-spacing:4.965333pt;}
.wse6{word-spacing:-14.080000pt;}
.ws1a{word-spacing:-13.546667pt;}
.ws8f{word-spacing:-13.528000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws8d{word-spacing:-11.146667pt;}
.ws75{word-spacing:-11.096000pt;}
.ws1b{word-spacing:-10.944000pt;}
.ws1c{word-spacing:-10.800000pt;}
.ws104{word-spacing:-10.560000pt;}
.ws111{word-spacing:-10.464000pt;}
.wsc9{word-spacing:-10.386667pt;}
.wsac{word-spacing:-10.285333pt;}
.ws59{word-spacing:-10.234667pt;}
.ws74{word-spacing:-10.184000pt;}
.ws2{word-spacing:-10.133333pt;}
.ws8e{word-spacing:-10.082667pt;}
.wscb{word-spacing:-10.032000pt;}
.ws1{word-spacing:-10.026667pt;}
.ws19{word-spacing:-10.000000pt;}
.ws5a{word-spacing:-9.981333pt;}
.wsf2{word-spacing:-9.728000pt;}
.wsfa{word-spacing:-9.626667pt;}
.wsca{word-spacing:-9.525333pt;}
.ws110{word-spacing:-9.168000pt;}
.wsf3{word-spacing:-9.120000pt;}
.ws103{word-spacing:-4.256000pt;}
.ws31{word-spacing:-3.344000pt;}
.ws2f{word-spacing:-3.293333pt;}
.ws130{word-spacing:-3.024000pt;}
.ws70{word-spacing:-2.938667pt;}
.ws12f{word-spacing:-2.736000pt;}
.ws67{word-spacing:-2.685333pt;}
.ws42{word-spacing:-2.634667pt;}
.ws4d{word-spacing:-2.432000pt;}
.ws11e{word-spacing:-2.304000pt;}
.wsd2{word-spacing:-2.293333pt;}
.wsa5{word-spacing:-2.280000pt;}
.ws8{word-spacing:-2.229333pt;}
.ws53{word-spacing:-2.178667pt;}
.ws11f{word-spacing:-2.112000pt;}
.ws57{word-spacing:-2.077333pt;}
.ws11b{word-spacing:-2.064000pt;}
.ws60{word-spacing:-2.026667pt;}
.ws7c{word-spacing:-1.976000pt;}
.ws16{word-spacing:-1.925333pt;}
.wsb1{word-spacing:-1.874667pt;}
.wsb3{word-spacing:-1.824000pt;}
.wsf1{word-spacing:-1.773333pt;}
.wsf7{word-spacing:-1.722667pt;}
.ws109{word-spacing:-1.680000pt;}
.ws80{word-spacing:-1.672000pt;}
.ws126{word-spacing:-1.632000pt;}
.wsb2{word-spacing:-1.621333pt;}
.ws4e{word-spacing:-1.570667pt;}
.ws10a{word-spacing:-1.536000pt;}
.ws17{word-spacing:-1.520000pt;}
.ws106{word-spacing:-1.469333pt;}
.ws71{word-spacing:-1.418667pt;}
.ws5f{word-spacing:-1.368000pt;}
.wsf8{word-spacing:-1.317333pt;}
.ws11d{word-spacing:-1.296000pt;}
.ws107{word-spacing:-1.280000pt;}
.ws24{word-spacing:-1.266667pt;}
.ws10d{word-spacing:-1.248000pt;}
.ws21{word-spacing:-1.216000pt;}
.ws58{word-spacing:-1.165333pt;}
.ws10c{word-spacing:-1.152000pt;}
.wse{word-spacing:-1.114667pt;}
.ws9b{word-spacing:-1.064000pt;}
.ws123{word-spacing:-1.056000pt;}
.ws79{word-spacing:-1.013333pt;}
.ws120{word-spacing:-1.008000pt;}
.ws6b{word-spacing:-0.962667pt;}
.ws122{word-spacing:-0.960000pt;}
.ws6c{word-spacing:-0.912000pt;}
.ws81{word-spacing:-0.861333pt;}
.wsf9{word-spacing:-0.810667pt;}
.wsd1{word-spacing:-0.760000pt;}
.ws5{word-spacing:-0.746667pt;}
.wsef{word-spacing:-0.709333pt;}
.wsfc{word-spacing:-0.658667pt;}
.ws8a{word-spacing:-0.608000pt;}
.ws4{word-spacing:-0.560000pt;}
.ws101{word-spacing:-0.557333pt;}
.wsbd{word-spacing:-0.506667pt;}
.ws117{word-spacing:-0.480000pt;}
.ws15{word-spacing:-0.456000pt;}
.ws133{word-spacing:-0.432000pt;}
.wsc5{word-spacing:-0.405333pt;}
.ws1d{word-spacing:-0.400000pt;}
.ws69{word-spacing:-0.373333pt;}
.ws2c{word-spacing:-0.354667pt;}
.ws85{word-spacing:-0.336000pt;}
.ws27{word-spacing:-0.304000pt;}
.ws9{word-spacing:-0.253333pt;}
.wsf6{word-spacing:-0.202667pt;}
.ws54{word-spacing:-0.152000pt;}
.wsc{word-spacing:-0.101333pt;}
.ws29{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.ws139{word-spacing:0.048000pt;}
.ws2a{word-spacing:0.050667pt;}
.ws73{word-spacing:0.101333pt;}
.ws10b{word-spacing:0.144000pt;}
.wsb5{word-spacing:0.152000pt;}
.ws113{word-spacing:0.192000pt;}
.wsb4{word-spacing:0.202667pt;}
.ws112{word-spacing:0.240000pt;}
.ws9d{word-spacing:0.304000pt;}
.ws13{word-spacing:0.405333pt;}
.ws12d{word-spacing:0.432000pt;}
.ws129{word-spacing:0.480000pt;}
.ws82{word-spacing:0.506667pt;}
.ws128{word-spacing:0.528000pt;}
.ws25{word-spacing:0.557333pt;}
.ws134{word-spacing:0.576000pt;}
.ws7d{word-spacing:0.608000pt;}
.wsf{word-spacing:0.658667pt;}
.wsa7{word-spacing:0.709333pt;}
.ws121{word-spacing:0.720000pt;}
.ws32{word-spacing:0.760000pt;}
.ws91{word-spacing:0.810667pt;}
.wsa9{word-spacing:0.861333pt;}
.ws97{word-spacing:0.912000pt;}
.wsd8{word-spacing:0.962667pt;}
.ws52{word-spacing:1.064000pt;}
.ws76{word-spacing:1.165333pt;}
.ws3d{word-spacing:1.216000pt;}
.ws1f{word-spacing:1.266667pt;}
.ws6f{word-spacing:1.368000pt;}
.ws12e{word-spacing:1.392000pt;}
.wsa4{word-spacing:1.418667pt;}
.ws4b{word-spacing:1.440000pt;}
.ws72{word-spacing:1.469333pt;}
.ws33{word-spacing:1.520000pt;}
.ws7e{word-spacing:1.570667pt;}
.ws11c{word-spacing:1.584000pt;}
.wsfd{word-spacing:1.621333pt;}
.wsd0{word-spacing:1.672000pt;}
.ws138{word-spacing:1.680000pt;}
.ws11{word-spacing:1.722667pt;}
.wsa6{word-spacing:1.773333pt;}
.ws6a{word-spacing:1.824000pt;}
.ws108{word-spacing:1.872000pt;}
.ws12{word-spacing:1.874667pt;}
.wsc3{word-spacing:1.925333pt;}
.ws102{word-spacing:1.976000pt;}
.ws2b{word-spacing:2.026667pt;}
.ws14{word-spacing:2.077333pt;}
.ws3b{word-spacing:2.128000pt;}
.ws4f{word-spacing:2.178667pt;}
.wsb{word-spacing:2.229333pt;}
.ws1e{word-spacing:2.280000pt;}
.ws86{word-spacing:2.330667pt;}
.wsa2{word-spacing:2.381333pt;}
.ws11a{word-spacing:2.400000pt;}
.ws23{word-spacing:2.432000pt;}
.wscd{word-spacing:2.482667pt;}
.ws28{word-spacing:2.533333pt;}
.ws95{word-spacing:2.584000pt;}
.wsbf{word-spacing:2.634667pt;}
.ws61{word-spacing:2.685333pt;}
.wsa1{word-spacing:2.736000pt;}
.ws83{word-spacing:2.786667pt;}
.wsee{word-spacing:2.837333pt;}
.ws48{word-spacing:2.888000pt;}
.ws26{word-spacing:2.938667pt;}
.wsa0{word-spacing:2.989333pt;}
.ws46{word-spacing:3.090667pt;}
.ws47{word-spacing:3.141333pt;}
.ws137{word-spacing:3.168000pt;}
.ws2e{word-spacing:3.192000pt;}
.ws96{word-spacing:3.242667pt;}
.wsa8{word-spacing:3.293333pt;}
.ws10{word-spacing:3.344000pt;}
.ws68{word-spacing:3.394667pt;}
.ws92{word-spacing:3.445333pt;}
.wsc6{word-spacing:3.496000pt;}
.ws20{word-spacing:3.546667pt;}
.ws51{word-spacing:3.597333pt;}
.wsaa{word-spacing:3.648000pt;}
.ws9a{word-spacing:3.698667pt;}
.ws45{word-spacing:3.749333pt;}
.wsc8{word-spacing:3.800000pt;}
.ws22{word-spacing:3.850667pt;}
.wsab{word-spacing:3.901333pt;}
.wsd4{word-spacing:3.952000pt;}
.ws65{word-spacing:4.053333pt;}
.ws30{word-spacing:4.104000pt;}
.ws4c{word-spacing:4.154667pt;}
.ws3f{word-spacing:4.205333pt;}
.wsaf{word-spacing:4.256000pt;}
.ws94{word-spacing:4.306667pt;}
.ws132{word-spacing:4.368000pt;}
.wsc7{word-spacing:4.408000pt;}
.ws40{word-spacing:4.458667pt;}
.ws105{word-spacing:4.509333pt;}
.ws99{word-spacing:4.560000pt;}
.ws56{word-spacing:4.610667pt;}
.ws3e{word-spacing:4.661333pt;}
.ws7f{word-spacing:4.712000pt;}
.wsad{word-spacing:4.762667pt;}
.ws131{word-spacing:4.800000pt;}
.ws6{word-spacing:4.813333pt;}
.ws12c{word-spacing:4.896000pt;}
.wscc{word-spacing:4.914667pt;}
.ws8b{word-spacing:4.965333pt;}
.wsb8{word-spacing:5.016000pt;}
.wsf4{word-spacing:5.066667pt;}
.wsa3{word-spacing:5.117333pt;}
.ws125{word-spacing:5.136000pt;}
.wse3{word-spacing:5.168000pt;}
.wsb0{word-spacing:5.218667pt;}
.ws114{word-spacing:5.232000pt;}
.ws9c{word-spacing:5.269333pt;}
.ws34{word-spacing:5.320000pt;}
.ws49{word-spacing:5.328000pt;}
.ws38{word-spacing:5.370667pt;}
.ws12b{word-spacing:5.424000pt;}
.ws2d{word-spacing:5.472000pt;}
.ws10f{word-spacing:5.520000pt;}
.wsa{word-spacing:5.522667pt;}
.ws90{word-spacing:5.573333pt;}
.ws124{word-spacing:5.664000pt;}
.ws78{word-spacing:5.674667pt;}
.ws66{word-spacing:5.725333pt;}
.ws3c{word-spacing:5.826667pt;}
.wsce{word-spacing:5.877333pt;}
.ws6d{word-spacing:5.978667pt;}
.ws88{word-spacing:6.080000pt;}
.ws10e{word-spacing:6.096000pt;}
.ws7{word-spacing:6.130667pt;}
.wsf5{word-spacing:6.181333pt;}
.ws136{word-spacing:6.240000pt;}
.ws5e{word-spacing:6.282667pt;}
.ws77{word-spacing:6.333333pt;}
.wsfe{word-spacing:6.384000pt;}
.ws44{word-spacing:6.434667pt;}
.ws64{word-spacing:6.485333pt;}
.wsd{word-spacing:6.586667pt;}
.ws98{word-spacing:6.637333pt;}
.ws6e{word-spacing:6.688000pt;}
.wsae{word-spacing:6.738667pt;}
.ws89{word-spacing:6.789333pt;}
.ws5d{word-spacing:6.840000pt;}
.ws135{word-spacing:6.912000pt;}
.wsd3{word-spacing:6.941333pt;}
.wsbc{word-spacing:7.245333pt;}
.wse9{word-spacing:7.296000pt;}
.wse8{word-spacing:7.346667pt;}
.ws84{word-spacing:7.397333pt;}
.wsc4{word-spacing:7.448000pt;}
.ws55{word-spacing:7.549333pt;}
.wsed{word-spacing:7.600000pt;}
.ws37{word-spacing:7.650667pt;}
.ws62{word-spacing:7.701333pt;}
.ws100{word-spacing:7.802667pt;}
.ws7a{word-spacing:7.954667pt;}
.ws9e{word-spacing:8.005333pt;}
.ws43{word-spacing:8.056000pt;}
.wse7{word-spacing:8.106667pt;}
.wsd7{word-spacing:8.157333pt;}
.ws119{word-spacing:8.160000pt;}
.ws50{word-spacing:8.258667pt;}
.ws127{word-spacing:8.304000pt;}
.wsfb{word-spacing:8.309333pt;}
.ws8c{word-spacing:8.360000pt;}
.ws87{word-spacing:8.410667pt;}
.wscf{word-spacing:8.461333pt;}
.ws7b{word-spacing:8.512000pt;}
.ws35{word-spacing:8.562667pt;}
.ws41{word-spacing:8.816000pt;}
.wsd9{word-spacing:8.968000pt;}
.ws118{word-spacing:8.976000pt;}
.ws63{word-spacing:9.069333pt;}
.wse2{word-spacing:9.120000pt;}
.wsd5{word-spacing:9.170667pt;}
.wsd6{word-spacing:9.221333pt;}
.wsea{word-spacing:9.272000pt;}
.wsb6{word-spacing:9.322667pt;}
.wsec{word-spacing:9.373333pt;}
.ws12a{word-spacing:9.408000pt;}
.ws5c{word-spacing:9.424000pt;}
.ws4a{word-spacing:10.032000pt;}
.ws9f{word-spacing:10.234667pt;}
.ws93{word-spacing:10.336000pt;}
.wsdb{word-spacing:10.437333pt;}
.ws5b{word-spacing:10.538667pt;}
.wsbb{word-spacing:10.589333pt;}
.wsdf{word-spacing:10.690667pt;}
.wseb{word-spacing:11.146667pt;}
.wsc1{word-spacing:11.349333pt;}
.wsff{word-spacing:12.210667pt;}
.wsba{word-spacing:12.312000pt;}
.wsde{word-spacing:13.122667pt;}
.wsb7{word-spacing:13.477333pt;}
.ws3a{word-spacing:13.493333pt;}
.wsc2{word-spacing:13.629333pt;}
.ws36{word-spacing:13.832000pt;}
.wsc0{word-spacing:14.034667pt;}
.wsf0{word-spacing:14.240000pt;}
.wse4{word-spacing:14.288000pt;}
.wsb9{word-spacing:14.338667pt;}
.wse1{word-spacing:14.490667pt;}
.wsdd{word-spacing:14.592000pt;}
.wsda{word-spacing:14.896000pt;}
.wse5{word-spacing:15.250667pt;}
.wsdc{word-spacing:18.544000pt;}
.ws115{word-spacing:19.968000pt;}
.ws116{word-spacing:21.936000pt;}
.wsbe{word-spacing:23.762667pt;}
.wse0{word-spacing:28.221333pt;}
.ws18{word-spacing:87.120000pt;}
.ws39{word-spacing:529.026133pt;}
._f{margin-left:-13.936533pt;}
._4{margin-left:-6.168000pt;}
._5{margin-left:-4.720000pt;}
._3{margin-left:-2.960000pt;}
._0{margin-left:-1.909867pt;}
._1{margin-left:-1.000000pt;}
._2{width:1.189867pt;}
._7{width:2.220000pt;}
._8{width:3.265600pt;}
._e{width:5.928000pt;}
._d{width:8.157333pt;}
._c{width:9.337600pt;}
._a{width:12.628800pt;}
._9{width:14.283200pt;}
._b{width:16.203200pt;}
._6{width:43.688533pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.613333pt;}
.y4c{bottom:49.890400pt;}
.y25{bottom:50.369200pt;}
.y23{bottom:99.950267pt;}
.ybe{bottom:101.837867pt;}
.ye9{bottom:101.930933pt;}
.y13f{bottom:102.056933pt;}
.y16c{bottom:102.477867pt;}
.ycb{bottom:102.722667pt;}
.yed{bottom:102.760667pt;}
.y10e{bottom:102.837733pt;}
.yaf{bottom:107.381200pt;}
.y108{bottom:107.952533pt;}
.y134{bottom:112.095867pt;}
.y9d{bottom:114.672533pt;}
.y74{bottom:114.847200pt;}
.yec{bottom:115.560667pt;}
.y22{bottom:117.019200pt;}
.ybd{bottom:117.177200pt;}
.ye8{bottom:117.270267pt;}
.y13e{bottom:117.392933pt;}
.y16b{bottom:117.813867pt;}
.y10d{bottom:118.177067pt;}
.yae{bottom:122.720533pt;}
.y107{bottom:123.291867pt;}
.y133{bottom:127.435200pt;}
.y9c{bottom:130.011867pt;}
.y73{bottom:130.186533pt;}
.y21{bottom:132.358533pt;}
.ybc{bottom:132.516533pt;}
.ye7{bottom:132.609600pt;}
.y13d{bottom:132.728933pt;}
.y16a{bottom:133.149867pt;}
.y10c{bottom:133.516400pt;}
.yad{bottom:138.059867pt;}
.y106{bottom:138.631200pt;}
.y9b{bottom:145.351200pt;}
.y72{bottom:145.525867pt;}
.y20{bottom:147.697867pt;}
.ybb{bottom:147.855867pt;}
.ye6{bottom:147.948933pt;}
.y13c{bottom:148.064933pt;}
.y169{bottom:148.485867pt;}
.y10b{bottom:148.855733pt;}
.yac{bottom:153.399200pt;}
.y105{bottom:153.970533pt;}
.y4a{bottom:157.972267pt;}
.y132{bottom:158.768533pt;}
.y9a{bottom:160.690533pt;}
.y71{bottom:160.865200pt;}
.y1f{bottom:163.037200pt;}
.yba{bottom:163.195200pt;}
.ye5{bottom:163.288267pt;}
.y13b{bottom:163.400933pt;}
.y168{bottom:163.821867pt;}
.yab{bottom:168.738533pt;}
.y49{bottom:175.117200pt;}
.y99{bottom:176.029867pt;}
.y70{bottom:176.204533pt;}
.y1e{bottom:178.376533pt;}
.yb9{bottom:178.534533pt;}
.ye4{bottom:178.627600pt;}
.y13a{bottom:178.736933pt;}
.y167{bottom:179.157867pt;}
.yaa{bottom:184.077867pt;}
.y104{bottom:185.303867pt;}
.y115{bottom:189.274000pt;}
.y48{bottom:191.115200pt;}
.y98{bottom:191.369200pt;}
.y6f{bottom:191.543867pt;}
.y1d{bottom:193.715867pt;}
.yb8{bottom:193.873867pt;}
.ye3{bottom:193.966933pt;}
.y139{bottom:194.072933pt;}
.y166{bottom:194.493867pt;}
.ya9{bottom:199.417200pt;}
.y114{bottom:202.074000pt;}
.y131{bottom:206.612533pt;}
.y97{bottom:206.708533pt;}
.y6e{bottom:206.883200pt;}
.y47{bottom:207.113200pt;}
.y1c{bottom:209.055200pt;}
.yb7{bottom:209.213200pt;}
.ye2{bottom:209.306267pt;}
.y138{bottom:209.408933pt;}
.y165{bottom:209.829867pt;}
.ya8{bottom:214.756533pt;}
.y113{bottom:214.874000pt;}
.y130{bottom:221.951867pt;}
.y96{bottom:222.047867pt;}
.y6d{bottom:222.222533pt;}
.y46{bottom:223.111200pt;}
.y1b{bottom:224.394533pt;}
.yb6{bottom:224.552533pt;}
.ye1{bottom:224.645600pt;}
.y137{bottom:224.744933pt;}
.y164{bottom:225.165867pt;}
.y112{bottom:227.674000pt;}
.ya7{bottom:230.095867pt;}
.y103{bottom:233.177867pt;}
.y12f{bottom:237.291200pt;}
.y95{bottom:237.387200pt;}
.y6c{bottom:237.561867pt;}
.y45{bottom:239.109200pt;}
.y1a{bottom:239.733867pt;}
.yb5{bottom:239.891867pt;}
.ye0{bottom:239.984933pt;}
.y136{bottom:240.080933pt;}
.y111{bottom:240.474000pt;}
.y163{bottom:240.501867pt;}
.ya6{bottom:245.435200pt;}
.y102{bottom:248.517200pt;}
.y12e{bottom:252.630533pt;}
.y94{bottom:252.726533pt;}
.y6b{bottom:252.901200pt;}
.y19{bottom:255.073200pt;}
.y44{bottom:255.107200pt;}
.yb4{bottom:255.231200pt;}
.ydf{bottom:255.324267pt;}
.y162{bottom:255.837867pt;}
.y101{bottom:263.856533pt;}
.y12d{bottom:267.969867pt;}
.y93{bottom:268.065867pt;}
.y6a{bottom:268.240533pt;}
.y18{bottom:270.412533pt;}
.y135{bottom:270.532400pt;}
.yb3{bottom:270.570533pt;}
.yde{bottom:270.663600pt;}
.y43{bottom:271.105200pt;}
.y161{bottom:271.173867pt;}
.y100{bottom:279.195867pt;}
.ya5{bottom:279.435200pt;}
.y12c{bottom:283.309200pt;}
.y92{bottom:283.405200pt;}
.y69{bottom:283.579867pt;}
.yb2{bottom:285.909867pt;}
.ydd{bottom:286.002933pt;}
.y17{bottom:286.410533pt;}
.y160{bottom:286.509867pt;}
.y42{bottom:287.103200pt;}
.yff{bottom:294.535200pt;}
.y12b{bottom:298.648533pt;}
.y91{bottom:298.744533pt;}
.y68{bottom:298.919200pt;}
.yb1{bottom:301.249200pt;}
.ydc{bottom:301.342267pt;}
.y15f{bottom:301.845867pt;}
.y16{bottom:302.408533pt;}
.y41{bottom:303.101200pt;}
.yfe{bottom:309.874533pt;}
.y12a{bottom:313.987867pt;}
.y90{bottom:314.083867pt;}
.y67{bottom:314.258533pt;}
.yb0{bottom:316.588533pt;}
.ydb{bottom:316.681600pt;}
.y15e{bottom:317.181867pt;}
.y15{bottom:318.406533pt;}
.y40{bottom:319.099200pt;}
.yfd{bottom:325.213867pt;}
.y129{bottom:329.327200pt;}
.y8f{bottom:329.423200pt;}
.y66{bottom:329.597867pt;}
.ya4{bottom:331.927867pt;}
.yda{bottom:332.020933pt;}
.y15d{bottom:332.517867pt;}
.y14{bottom:334.404533pt;}
.y3f{bottom:335.097200pt;}
.yfc{bottom:340.553200pt;}
.y128{bottom:344.666533pt;}
.y8e{bottom:344.762533pt;}
.y65{bottom:344.937200pt;}
.ya3{bottom:347.267200pt;}
.yd9{bottom:347.360267pt;}
.y15c{bottom:347.853867pt;}
.y13{bottom:350.402533pt;}
.y3e{bottom:351.095200pt;}
.yfb{bottom:355.892533pt;}
.y127{bottom:360.005867pt;}
.y8d{bottom:360.101867pt;}
.y64{bottom:360.276533pt;}
.ya2{bottom:362.606533pt;}
.yd8{bottom:362.699600pt;}
.y15b{bottom:363.189867pt;}
.y12{bottom:366.400533pt;}
.y3d{bottom:367.093200pt;}
.yfa{bottom:371.231867pt;}
.y126{bottom:375.345200pt;}
.y63{bottom:375.615867pt;}
.ya1{bottom:377.945867pt;}
.yd7{bottom:378.038933pt;}
.y15a{bottom:378.525867pt;}
.y11{bottom:382.398533pt;}
.y3c{bottom:383.091200pt;}
.yf9{bottom:386.571200pt;}
.y125{bottom:390.684533pt;}
.y62{bottom:390.955200pt;}
.y8c{bottom:391.435200pt;}
.ya0{bottom:393.285200pt;}
.yd6{bottom:393.378267pt;}
.y159{bottom:393.861867pt;}
.y10{bottom:398.396533pt;}
.y3b{bottom:399.089200pt;}
.yf8{bottom:401.910533pt;}
.y124{bottom:406.023867pt;}
.y9f{bottom:408.624533pt;}
.yd5{bottom:408.717600pt;}
.y158{bottom:409.197867pt;}
.y3a{bottom:415.087200pt;}
.yf7{bottom:417.249867pt;}
.y123{bottom:421.363200pt;}
.yf{bottom:421.955467pt;}
.y9e{bottom:423.963867pt;}
.yd4{bottom:424.056933pt;}
.y157{bottom:424.533867pt;}
.y61{bottom:425.149867pt;}
.yeb{bottom:425.343333pt;}
.y39{bottom:431.085200pt;}
.yf6{bottom:432.589200pt;}
.y122{bottom:436.702533pt;}
.yea{bottom:438.143333pt;}
.y8b{bottom:439.303200pt;}
.yd3{bottom:439.396267pt;}
.y60{bottom:439.813867pt;}
.y156{bottom:439.869867pt;}
.yce{bottom:442.427333pt;}
.yf5{bottom:447.928533pt;}
.y121{bottom:452.041867pt;}
.y5f{bottom:454.477867pt;}
.y8a{bottom:454.642533pt;}
.y38{bottom:454.644267pt;}
.yd2{bottom:454.735600pt;}
.y155{bottom:455.205867pt;}
.ycd{bottom:455.227333pt;}
.yf4{bottom:463.267867pt;}
.y120{bottom:467.381200pt;}
.ycc{bottom:468.027333pt;}
.y5e{bottom:469.141867pt;}
.y89{bottom:469.981867pt;}
.yd1{bottom:470.074933pt;}
.y154{bottom:470.541867pt;}
.yf3{bottom:478.607200pt;}
.yca{bottom:482.708533pt;}
.y11f{bottom:482.720533pt;}
.y88{bottom:485.321200pt;}
.yd0{bottom:485.414267pt;}
.y153{bottom:485.877867pt;}
.y37{bottom:488.244267pt;}
.yf2{bottom:493.946533pt;}
.yc9{bottom:498.047867pt;}
.y11e{bottom:498.059867pt;}
.y5d{bottom:499.712533pt;}
.y87{bottom:500.660533pt;}
.y152{bottom:501.213867pt;}
.y110{bottom:504.335467pt;}
.y36{bottom:505.384133pt;}
.yf1{bottom:509.285867pt;}
.yc8{bottom:513.387200pt;}
.y11d{bottom:513.399200pt;}
.y5c{bottom:515.051867pt;}
.ycf{bottom:515.865600pt;}
.y86{bottom:515.999867pt;}
.y151{bottom:516.549867pt;}
.y10f{bottom:517.135467pt;}
.y35{bottom:521.382133pt;}
.ye{bottom:522.981867pt;}
.yf0{bottom:524.625200pt;}
.yc7{bottom:528.726533pt;}
.y11c{bottom:528.738533pt;}
.y5b{bottom:530.391200pt;}
.y85{bottom:531.339200pt;}
.y150{bottom:531.885867pt;}
.yd{bottom:536.313867pt;}
.y34{bottom:537.380133pt;}
.yef{bottom:539.964533pt;}
.yc6{bottom:544.065867pt;}
.y11b{bottom:544.077867pt;}
.y5a{bottom:545.730533pt;}
.y84{bottom:546.678533pt;}
.y14f{bottom:547.221867pt;}
.y33{bottom:553.378133pt;}
.yc{bottom:553.426667pt;}
.yee{bottom:555.303867pt;}
.yc5{bottom:559.405200pt;}
.y11a{bottom:559.417200pt;}
.y59{bottom:561.069867pt;}
.y83{bottom:562.017867pt;}
.y14e{bottom:562.557867pt;}
.y32{bottom:569.376133pt;}
.yc4{bottom:574.744533pt;}
.y119{bottom:574.756533pt;}
.y58{bottom:576.409200pt;}
.y82{bottom:577.357200pt;}
.y14d{bottom:577.893867pt;}
.yb{bottom:578.319067pt;}
.y31{bottom:585.374133pt;}
.yc3{bottom:590.083867pt;}
.y118{bottom:590.095867pt;}
.y57{bottom:591.748533pt;}
.y81{bottom:592.696533pt;}
.y14c{bottom:593.229867pt;}
.y10a{bottom:595.344133pt;}
.y30{bottom:601.372133pt;}
.ya{bottom:602.319067pt;}
.yc2{bottom:605.423200pt;}
.y117{bottom:605.435200pt;}
.y56{bottom:607.087867pt;}
.y80{bottom:608.035867pt;}
.y109{bottom:608.144133pt;}
.y14b{bottom:608.565867pt;}
.y2f{bottom:617.370133pt;}
.yc1{bottom:620.762533pt;}
.y55{bottom:622.427200pt;}
.y7f{bottom:623.375200pt;}
.y14a{bottom:623.901867pt;}
.y9{bottom:626.319067pt;}
.yc0{bottom:636.101867pt;}
.y116{bottom:636.768533pt;}
.y54{bottom:637.766533pt;}
.y7e{bottom:638.714533pt;}
.y149{bottom:639.237867pt;}
.y2e{bottom:640.930133pt;}
.y8{bottom:650.319067pt;}
.y53{bottom:653.105867pt;}
.y7d{bottom:654.053867pt;}
.y148{bottom:654.573867pt;}
.y2d{bottom:656.928133pt;}
.ybf{bottom:667.435200pt;}
.y52{bottom:668.445200pt;}
.y7c{bottom:669.393200pt;}
.y147{bottom:669.909867pt;}
.y2c{bottom:672.926133pt;}
.y7{bottom:674.319067pt;}
.y51{bottom:683.784533pt;}
.y7b{bottom:684.732533pt;}
.y146{bottom:685.245867pt;}
.y2b{bottom:688.924133pt;}
.y6{bottom:698.319067pt;}
.y50{bottom:699.123867pt;}
.y7a{bottom:700.071867pt;}
.y145{bottom:700.581867pt;}
.y2a{bottom:704.922133pt;}
.y4f{bottom:714.463200pt;}
.y79{bottom:715.411200pt;}
.y144{bottom:715.917867pt;}
.y29{bottom:720.920133pt;}
.y4e{bottom:729.802533pt;}
.y78{bottom:730.750533pt;}
.y143{bottom:731.253867pt;}
.y28{bottom:736.918133pt;}
.y4d{bottom:745.141867pt;}
.y77{bottom:746.089867pt;}
.y142{bottom:746.589867pt;}
.y27{bottom:752.916133pt;}
.y5{bottom:755.353733pt;}
.y76{bottom:761.429200pt;}
.y141{bottom:761.925867pt;}
.y4{bottom:771.353733pt;}
.y26{bottom:776.475200pt;}
.y75{bottom:776.768533pt;}
.y140{bottom:777.261867pt;}
.y3{bottom:787.353733pt;}
.y2{bottom:803.353733pt;}
.y4b{bottom:815.234400pt;}
.y24{bottom:815.585067pt;}
.h4{height:32.000000pt;}
.hb{height:33.160000pt;}
.hc{height:35.370667pt;}
.hf{height:38.698667pt;}
.h7{height:41.040000pt;}
.h2{height:41.424000pt;}
.he{height:41.909647pt;}
.ha{height:42.480000pt;}
.h9{height:43.320000pt;}
.hd{height:43.339200pt;}
.h10{height:43.776000pt;}
.h8{height:46.566275pt;}
.h3{height:46.796875pt;}
.h6{height:64.437333pt;}
.h5{height:69.849412pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x15{left:56.692933pt;}
.x24{left:60.225333pt;}
.x23{left:62.166667pt;}
.x25{left:63.361333pt;}
.xf{left:64.345200pt;}
.x21{left:66.139200pt;}
.x7{left:68.386133pt;}
.x18{left:70.624667pt;}
.xd{left:73.134800pt;}
.x12{left:75.732267pt;}
.x11{left:79.470000pt;}
.x1c{left:82.001333pt;}
.x8{left:82.926133pt;}
.x9{left:86.566133pt;}
.x1d{left:88.892000pt;}
.x10{left:90.712667pt;}
.x1b{left:98.364000pt;}
.x6{left:101.246133pt;}
.x17{left:105.830800pt;}
.x16{left:109.606267pt;}
.x1e{left:111.296000pt;}
.xa{left:128.026133pt;}
.x20{left:177.377067pt;}
.x2{left:179.208800pt;}
.x22{left:189.200533pt;}
.xe{left:202.986800pt;}
.x14{left:209.835333pt;}
.xc{left:229.902933pt;}
.xb{left:231.186133pt;}
.x1f{left:270.336000pt;}
.x1{left:301.091333pt;}
.x1a{left:328.166533pt;}
.x4{left:348.724400pt;}
.x19{left:354.627200pt;}
.x5{left:362.399067pt;}
.x3{left:363.967067pt;}
.x13{left:471.072667pt;}
}




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