
    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_64e019045bf8ced388c6c799.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_6799a123a8b28f08a486967c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_af00aa582bf018d91448b65d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_f6e16a4dafc99a2353aa6ae7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_989980cf72bacac3dac4d960.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861328;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_19dadda1ce9c2f9a5b03a003.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.859375;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_f9bc4f6aa2f0d049918dffb3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_be88b470d91677cc807e42d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_906fe4120083ea151aa446a9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936035;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_367974c6fdb04dc6e8a85588.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900391;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_9d5bce31194de949bd9a51ac.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;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_f106d55893af35289d82ea00.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_48f62910236b44c22dfb348d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;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;}
.mb{transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249834,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249834,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249834,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250098,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250098,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250098,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250131,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250131,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250131,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m6{transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,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);}
.v3{vertical-align:-67.200000px;}
.v9{vertical-align:-28.740000px;}
.vc{vertical-align:-26.831907px;}
.v2{vertical-align:-24.000000px;}
.v6{vertical-align:-19.200000px;}
.v11{vertical-align:-11.746420px;}
.v5{vertical-align:-9.720000px;}
.ve{vertical-align:-6.868267px;}
.v12{vertical-align:-4.800000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:4.800000px;}
.v10{vertical-align:6.205846px;}
.v7{vertical-align:9.780000px;}
.vf{vertical-align:12.899791px;}
.vd{vertical-align:16.745943px;}
.v4{vertical-align:19.200000px;}
.v1{vertical-align:24.000000px;}
.va{vertical-align:25.231314px;}
.vb{vertical-align:26.831892px;}
.v8{vertical-align:28.800000px;}
.ls45{letter-spacing:-5.616000px;}
.ls6{letter-spacing:-4.800000px;}
.ls11{letter-spacing:-3.600000px;}
.ls46{letter-spacing:-3.168000px;}
.ls23{letter-spacing:-3.120000px;}
.ls1b{letter-spacing:-3.066000px;}
.ls13{letter-spacing:-2.400000px;}
.ls14{letter-spacing:-1.632000px;}
.ls1{letter-spacing:-1.200000px;}
.ls2d{letter-spacing:-1.128000px;}
.ls47{letter-spacing:-1.092000px;}
.ls16{letter-spacing:-0.816000px;}
.ls27{letter-spacing:-0.792000px;}
.ls1e{letter-spacing:-0.552000px;}
.ls4{letter-spacing:-0.470400px;}
.ls2c{letter-spacing:-0.157696px;}
.ls38{letter-spacing:-0.125511px;}
.ls3f{letter-spacing:-0.071917px;}
.ls2e{letter-spacing:-0.067115px;}
.ls28{letter-spacing:-0.063103px;}
.ls33{letter-spacing:-0.041837px;}
.ls31{letter-spacing:-0.033540px;}
.ls1c{letter-spacing:-0.024000px;}
.ls34{letter-spacing:-0.020919px;}
.ls30{letter-spacing:-0.017450px;}
.ls2a{letter-spacing:-0.016407px;}
.ls0{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.005897px;}
.lsa{letter-spacing:0.024000px;}
.ls36{letter-spacing:0.041837px;}
.lsb{letter-spacing:0.060000px;}
.ls40{letter-spacing:0.071917px;}
.ls37{letter-spacing:0.083674px;}
.ls21{letter-spacing:0.084000px;}
.ls39{letter-spacing:0.085766px;}
.ls8{letter-spacing:0.120000px;}
.ls35{letter-spacing:0.124117px;}
.ls25{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.182473px;}
.ls2f{letter-spacing:0.194074px;}
.ls2b{letter-spacing:0.308679px;}
.lsf{letter-spacing:0.792000px;}
.lse{letter-spacing:0.966000px;}
.ls43{letter-spacing:1.140000px;}
.ls12{letter-spacing:1.200000px;}
.ls26{letter-spacing:1.380000px;}
.ls5{letter-spacing:1.620000px;}
.ls10{letter-spacing:1.632000px;}
.ls1f{letter-spacing:1.668000px;}
.ls2{letter-spacing:2.148000px;}
.ls42{letter-spacing:2.304000px;}
.lsc{letter-spacing:2.340000px;}
.ls7{letter-spacing:2.400000px;}
.ls48{letter-spacing:2.460000px;}
.ls24{letter-spacing:2.520000px;}
.ls1d{letter-spacing:2.574000px;}
.lsd{letter-spacing:2.580000px;}
.ls1a{letter-spacing:3.168000px;}
.ls22{letter-spacing:4.132800px;}
.ls3{letter-spacing:4.434000px;}
.ls19{letter-spacing:4.860000px;}
.ls15{letter-spacing:5.592000px;}
.ls9{letter-spacing:6.000000px;}
.ls44{letter-spacing:6.120000px;}
.ls20{letter-spacing:10.800000px;}
.ls17{letter-spacing:15.600000px;}
.ls3a{letter-spacing:15.780000px;}
.ls3d{letter-spacing:20.340000px;}
.ls3c{letter-spacing:20.580000px;}
.ls3b{letter-spacing:25.200000px;}
.ls32{letter-spacing:151.868894px;}
.ls3e{letter-spacing:261.154092px;}
.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;}
}
.ws16{word-spacing:-72.000000px;}
.ws24{word-spacing:-22.270482px;}
.ws3{word-spacing:-21.234000px;}
.wsf{word-spacing:-21.168000px;}
.ws1e{word-spacing:-20.815845px;}
.ws13{word-spacing:-20.400000px;}
.ws35{word-spacing:-20.304000px;}
.wsa{word-spacing:-19.632000px;}
.ws9{word-spacing:-18.966000px;}
.ws5{word-spacing:-18.420000px;}
.wsc{word-spacing:-18.024000px;}
.wsd{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.976000px;}
.ws12{word-spacing:-17.448000px;}
.ws17{word-spacing:-17.208000px;}
.wse{word-spacing:-17.184000px;}
.ws14{word-spacing:-16.908335px;}
.ws2{word-spacing:-16.800000px;}
.wsb{word-spacing:-16.368000px;}
.ws1{word-spacing:-15.600000px;}
.ws10{word-spacing:-14.934000px;}
.ws23{word-spacing:-14.925248px;}
.ws15{word-spacing:-14.880000px;}
.ws37{word-spacing:-14.832000px;}
.ws4{word-spacing:-14.716800px;}
.ws38{word-spacing:-14.508000px;}
.ws1d{word-spacing:-14.034926px;}
.ws33{word-spacing:-14.032112px;}
.ws36{word-spacing:-12.384000px;}
.ws6{word-spacing:-12.000000px;}
.ws7{word-spacing:-10.800000px;}
.ws0{word-spacing:-9.600000px;}
.ws26{word-spacing:-9.314943px;}
.ws8{word-spacing:0.000000px;}
.ws30{word-spacing:110.031733px;}
.ws28{word-spacing:110.101462px;}
.ws2c{word-spacing:110.136326px;}
.ws1c{word-spacing:124.871724px;}
.ws19{word-spacing:128.289808px;}
.ws2b{word-spacing:130.769019px;}
.ws2f{word-spacing:130.950314px;}
.ws25{word-spacing:131.020042px;}
.ws20{word-spacing:136.445930px;}
.ws22{word-spacing:139.242384px;}
.ws32{word-spacing:225.255592px;}
.ws1b{word-spacing:275.079858px;}
.ws1a{word-spacing:277.057088px;}
.ws18{word-spacing:278.497941px;}
.ws1f{word-spacing:296.203660px;}
.ws21{word-spacing:299.000114px;}
.ws2d{word-spacing:348.022117px;}
.ws29{word-spacing:348.878412px;}
.ws27{word-spacing:373.039372px;}
.ws2e{word-spacing:373.143965px;}
.ws31{word-spacing:373.876115px;}
.ws2a{word-spacing:382.600837px;}
.ws34{word-spacing:656.387820px;}
._21{margin-left:-2747.485334px;}
._1b{margin-left:-2746.066344px;}
._1c{margin-left:-2744.588853px;}
._22{margin-left:-2743.411514px;}
._20{margin-left:-2741.935195px;}
._e{margin-left:-2705.824407px;}
._11{margin-left:-2687.260123px;}
._3{margin-left:-2580.432150px;}
._15{margin-left:-2448.756538px;}
._23{margin-left:-2421.275628px;}
._12{margin-left:-2407.729334px;}
._5{margin-left:-2345.761177px;}
._a{margin-left:-2245.514130px;}
._13{margin-left:-1470.707146px;}
._10{margin-left:-1144.810566px;}
._17{margin-left:-813.689199px;}
._18{margin-left:-464.412248px;}
._37{margin-left:-13.650486px;}
._1d{margin-left:-10.022489px;}
._2{margin-left:-7.530023px;}
._9{margin-left:-6.004638px;}
._1{margin-left:-4.933783px;}
._6{margin-left:-3.244800px;}
._4{margin-left:-1.889711px;}
._7{width:1.060800px;}
._8{width:2.400992px;}
._d{width:3.538709px;}
._0{width:4.673960px;}
._16{width:6.611302px;}
._c{width:8.166502px;}
._b{width:9.175131px;}
._25{width:10.672408px;}
._38{width:11.692331px;}
._19{width:12.700020px;}
._14{width:14.218699px;}
._3a{width:15.224497px;}
._24{width:16.226157px;}
._1a{width:18.061698px;}
._3c{width:19.427722px;}
._1f{width:20.543792px;}
._1e{width:21.562152px;}
._30{width:23.026800px;}
._34{width:24.459678px;}
._27{width:25.720704px;}
._3f{width:26.905418px;}
._4b{width:27.936379px;}
._2f{width:29.660802px;}
._26{width:30.706319px;}
._2e{width:32.146061px;}
._3d{width:33.759516px;}
._28{width:34.794100px;}
._39{width:35.810987px;}
._35{width:37.140160px;}
._29{width:39.297733px;}
._2d{width:40.437543px;}
._3e{width:42.142742px;}
._36{width:44.410362px;}
._2c{width:45.561068px;}
._2a{width:48.919453px;}
._3b{width:50.097653px;}
._2b{width:54.534632px;}
._33{width:59.135215px;}
._31{width:63.615600px;}
._32{width:78.104674px;}
._f{width:95.042400px;}
._49{width:120.595616px;}
._48{width:130.880585px;}
._4a{width:141.416577px;}
._47{width:151.966514px;}
._4d{width:207.300349px;}
._4c{width:225.279564px;}
._42{width:294.392238px;}
._41{width:297.652563px;}
._40{width:301.870793px;}
._44{width:316.576052px;}
._46{width:319.540293px;}
._43{width:321.062459px;}
._45{width:323.892470px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:37.259773px;}
.fs3{font-size:38.400000px;}
.fs18{font-size:41.837161px;}
.fs19{font-size:41.920835px;}
.fs5{font-size:43.200000px;}
.fs6{font-size:48.000000px;}
.fs1d{font-size:48.949478px;}
.fs1f{font-size:49.033153px;}
.fs1e{font-size:55.643424px;}
.fs1a{font-size:55.680334px;}
.fs23{font-size:56.128448px;}
.fse{font-size:56.139704px;}
.fs16{font-size:59.700991px;}
.fs2{font-size:62.400000px;}
.fs1c{font-size:62.755741px;}
.fs9{font-size:63.103072px;}
.fsa{font-size:63.229278px;}
.fs10{font-size:67.114898px;}
.fs0{font-size:67.200000px;}
.fs11{font-size:67.249128px;}
.fs8{font-size:67.633338px;}
.fs20{font-size:71.916860px;}
.fs4{font-size:72.000000px;}
.fs21{font-size:72.060694px;}
.fs7{font-size:75.893905px;}
.fsc{font-size:83.894164px;}
.fsb{font-size:83.927086px;}
.fs24{font-size:84.142726px;}
.fs22{font-size:84.192672px;}
.fs1{font-size:86.550000px;}
.fs15{font-size:89.216088px;}
.fs12{font-size:89.262814px;}
.fs13{font-size:89.350247px;}
.fsf{font-size:94.654608px;}
.fsd{font-size:94.780814px;}
.fs17{font-size:100.672347px;}
.fs14{font-size:100.806577px;}
.y0{bottom:0.000000px;}
.ye2{bottom:2.392663px;}
.y8c{bottom:3.600000px;}
.y156{bottom:4.100054px;}
.y147{bottom:4.162801px;}
.y91{bottom:4.800000px;}
.y8e{bottom:6.000000px;}
.ya3{bottom:6.045000px;}
.y8f{bottom:7.200000px;}
.ya0{bottom:7.215000px;}
.y94{bottom:7.230000px;}
.ya4{bottom:7.245000px;}
.y172{bottom:10.463890px;}
.y12a{bottom:10.964825px;}
.y18c{bottom:12.000000px;}
.ydf{bottom:12.896723px;}
.y8a{bottom:13.215000px;}
.y108{bottom:13.660678px;}
.y115{bottom:13.724967px;}
.y89{bottom:14.400000px;}
.yed{bottom:17.385415px;}
.y187{bottom:20.400000px;}
.y174{bottom:21.709911px;}
.y8b{bottom:24.000000px;}
.y155{bottom:27.800899px;}
.y137{bottom:27.882743px;}
.y126{bottom:27.908891px;}
.y18b{bottom:30.030000px;}
.y80{bottom:31.691790px;}
.y145{bottom:32.005525px;}
.y185{bottom:38.430000px;}
.yd4{bottom:39.281699px;}
.y127{bottom:39.832484px;}
.y14c{bottom:40.101025px;}
.y12e{bottom:40.181126px;}
.y11d{bottom:40.207274px;}
.yfd{bottom:41.737077px;}
.y10d{bottom:41.812972px;}
.ye4{bottom:43.794056px;}
.y13c{bottom:44.284732px;}
.y18a{bottom:46.845000px;}
.y146{bottom:47.004149px;}
.y170{bottom:51.492182px;}
.y186{bottom:55.230000px;}
.y1f{bottom:56.475000px;}
.y14d{bottom:56.522111px;}
.y12f{bottom:56.602212px;}
.y11e{bottom:56.645792px;}
.y13d{bottom:60.726737px;}
.y189{bottom:63.675000px;}
.yd5{bottom:64.930469px;}
.yfe{bottom:69.086398px;}
.y168{bottom:72.599783px;}
.y14e{bottom:72.964115px;}
.y130{bottom:73.049446px;}
.y11f{bottom:73.066878px;}
.y188{bottom:73.275000px;}
.ye5{bottom:73.862670px;}
.y1{bottom:76.875000px;}
.y13e{bottom:77.147823px;}
.y85{bottom:77.822408px;}
.y10e{bottom:80.873842px;}
.y171{bottom:84.825655px;}
.y14f{bottom:89.383458px;}
.y131{bottom:89.470532px;}
.y120{bottom:89.514112px;}
.yd6{bottom:90.579238px;}
.y13f{bottom:93.593313px;}
.yff{bottom:96.435719px;}
.yee{bottom:99.324760px;}
.y116{bottom:100.135818px;}
.ye6{bottom:103.899732px;}
.y169{bottom:104.890455px;}
.y150{bottom:105.830692px;}
.y132{bottom:105.909050px;}
.y121{bottom:105.935198px;}
.y140{bottom:110.014399px;}
.yc6{bottom:112.912500px;}
.yd7{bottom:116.201715px;}
.y196{bottom:116.512500px;}
.yfb{bottom:117.712500px;}
.y9e{bottom:118.912500px;}
.y10f{bottom:119.934713px;}
.y151{bottom:122.251777px;}
.y133{bottom:122.330135px;}
.y122{bottom:122.373716px;}
.y100{bottom:123.785040px;}
.y37{bottom:124.912500px;}
.y141{bottom:126.452917px;}
.y183{bottom:128.512500px;}
.y109{bottom:131.111750px;}
.ybb{bottom:132.150000px;}
.ye0{bottom:133.081788px;}
.ye7{bottom:133.968346px;}
.y43{bottom:134.550000px;}
.y16a{bottom:137.181125px;}
.y152{bottom:138.690295px;}
.y134{bottom:138.777369px;}
.y123{bottom:138.794801px;}
.y65{bottom:139.350000px;}
.y166{bottom:140.550000px;}
.yd8{bottom:141.850484px;}
.y142{bottom:142.891435px;}
.y193{bottom:144.150000px;}
.y58{bottom:145.350000px;}
.y177{bottom:146.550000px;}
.y101{bottom:151.134361px;}
.y1d{bottom:154.950000px;}
.y153{bottom:155.128813px;}
.y135{bottom:155.198455px;}
.y124{bottom:155.233319px;}
.yca{bottom:156.150000px;}
.yd2{bottom:157.350000px;}
.yfa{bottom:158.550000px;}
.y110{bottom:159.023548px;}
.y143{bottom:159.312520px;}
.y9d{bottom:163.350000px;}
.ye8{bottom:164.034330px;}
.y13a{bottom:165.108630px;}
.y12c{bottom:166.677517px;}
.y36{bottom:166.950000px;}
.yd9{bottom:167.472961px;}
.y14a{bottom:167.679970px;}
.y159{bottom:168.455689px;}
.y182{bottom:169.350000px;}
.y16b{bottom:169.473294px;}
.y154{bottom:171.549899px;}
.y136{bottom:171.636973px;}
.y125{bottom:171.654405px;}
.yba{bottom:174.180000px;}
.y42{bottom:175.380000px;}
.y144{bottom:175.759754px;}
.y102{bottom:178.483682px;}
.y64{bottom:181.380000px;}
.y192{bottom:184.980000px;}
.y79{bottom:186.180000px;}
.y57{bottom:187.380000px;}
.y191{bottom:189.795000px;}
.yda{bottom:193.121730px;}
.ye9{bottom:194.100315px;}
.y81{bottom:194.500619px;}
.y165{bottom:194.580000px;}
.y1a0{bottom:196.995000px;}
.y111{bottom:198.090011px;}
.yc5{bottom:199.380000px;}
.yf9{bottom:200.580000px;}
.y157{bottom:201.045089px;}
.y138{bottom:201.132162px;}
.y148{bottom:201.132241px;}
.y128{bottom:201.149595px;}
.y16c{bottom:201.760968px;}
.y190{bottom:201.780000px;}
.y103{bottom:205.833003px;}
.y1c{bottom:207.780000px;}
.yc9{bottom:210.225000px;}
.y181{bottom:211.425000px;}
.y41{bottom:217.425000px;}
.ydb{bottom:218.770500px;}
.y63{bottom:222.225000px;}
.yea{bottom:224.179446px;}
.yb9{bottom:224.625000px;}
.y78{bottom:228.225000px;}
.y56{bottom:229.425000px;}
.y104{bottom:233.182323px;}
.y16d{bottom:234.048642px;}
.y112{bottom:237.184439px;}
.yc4{bottom:240.225000px;}
.y86{bottom:241.379430px;}
.yf8{bottom:241.425000px;}
.y7f{bottom:242.436206px;}
.ydc{bottom:244.392976px;}
.y82{bottom:246.325176px;}
.y7e{bottom:246.938091px;}
.y18f{bottom:247.425000px;}
.y164{bottom:248.625000px;}
.y35{bottom:249.855000px;}
.y19f{bottom:251.070000px;}
.y180{bottom:252.255000px;}
.yeb{bottom:254.245430px;}
.y84{bottom:254.895688px;}
.y40{bottom:258.255000px;}
.y105{bottom:260.531644px;}
.y1b{bottom:261.855000px;}
.y62{bottom:263.055000px;}
.yb8{bottom:265.455000px;}
.y16e{bottom:266.351299px;}
.y7d{bottom:267.228295px;}
.y77{bottom:269.055000px;}
.y83{bottom:269.394725px;}
.ydd{bottom:270.041746px;}
.y55{bottom:270.255000px;}
.y18e{bottom:271.455000px;}
.y7b{bottom:272.385425px;}
.y9c{bottom:275.070000px;}
.y113{bottom:276.250903px;}
.yf7{bottom:276.255000px;}
.yc3{bottom:281.070000px;}
.yd1{bottom:282.255000px;}
.yec{bottom:284.311415px;}
.y106{bottom:287.922912px;}
.yf0{bottom:289.064655px;}
.y163{bottom:289.500000px;}
.y34{bottom:290.700000px;}
.y195{bottom:291.900000px;}
.y17f{bottom:294.300000px;}
.yde{bottom:295.690516px;}
.y16f{bottom:298.638973px;}
.y3f{bottom:299.100000px;}
.y1a{bottom:302.700000px;}
.y61{bottom:305.100000px;}
.yb7{bottom:307.500000px;}
.y118{bottom:308.267116px;}
.y10b{bottom:308.518796px;}
.y54{bottom:311.100000px;}
.y176{bottom:311.539038px;}
.y9b{bottom:312.300000px;}
.y107{bottom:315.272233px;}
.y114{bottom:315.303384px;}
.y18d{bottom:318.300000px;}
.y76{bottom:323.100000px;}
.yd0{bottom:327.900000px;}
.y19{bottom:331.545000px;}
.y3e{bottom:341.130000px;}
.y194{bottom:343.530000px;}
.y33{bottom:345.945000px;}
.yb6{bottom:348.330000px;}
.y53{bottom:353.130000px;}
.y19e{bottom:357.945000px;}
.y18{bottom:360.330000px;}
.y75{bottom:363.930000px;}
.ycf{bottom:365.130000px;}
.y32{bottom:380.775000px;}
.y3d{bottom:381.975000px;}
.yf6{bottom:384.375000px;}
.y17{bottom:387.975000px;}
.y17e{bottom:389.175000px;}
.yb5{bottom:390.375000px;}
.y52{bottom:393.975000px;}
.y9a{bottom:395.175000px;}
.y19d{bottom:399.975000px;}
.y87{bottom:402.242698px;}
.y74{bottom:405.975000px;}
.y31{bottom:412.005000px;}
.y16{bottom:416.805000px;}
.y7c{bottom:419.172344px;}
.y3c{bottom:424.005000px;}
.y162{bottom:426.405000px;}
.y60{bottom:428.820000px;}
.y17d{bottom:430.005000px;}
.yb4{bottom:431.205000px;}
.yf5{bottom:432.405000px;}
.y117{bottom:432.510000px;}
.y10c{bottom:432.520796px;}
.y51{bottom:436.005000px;}
.y19c{bottom:440.820000px;}
.yce{bottom:442.005000px;}
.y15{bottom:445.605000px;}
.y73{bottom:446.820000px;}
.y30{bottom:452.850000px;}
.y11b{bottom:457.650000px;}
.y3b{bottom:464.850000px;}
.y161{bottom:467.250000px;}
.y5f{bottom:470.850000px;}
.y17c{bottom:472.050000px;}
.yb3{bottom:473.250000px;}
.y14{bottom:474.450000px;}
.y50{bottom:476.850000px;}
.y99{bottom:478.050000px;}
.y19b{bottom:482.850000px;}
.yc2{bottom:488.880000px;}
.y184{bottom:494.880000px;}
.y72{bottom:500.880000px;}
.y13{bottom:502.080000px;}
.ycd{bottom:504.480000px;}
.y11a{bottom:505.695000px;}
.y2f{bottom:506.880000px;}
.y160{bottom:509.280000px;}
.y5e{bottom:511.680000px;}
.y17b{bottom:512.880000px;}
.yb2{bottom:514.080000px;}
.y4f{bottom:518.880000px;}
.y19a{bottom:523.680000px;}
.yc1{bottom:529.725000px;}
.y12{bottom:530.925000px;}
.ycb{bottom:535.725000px;}
.y2e{bottom:547.725000px;}
.y15f{bottom:550.125000px;}
.ycc{bottom:551.325000px;}
.yef{bottom:552.375000px;}
.ye3{bottom:552.526972px;}
.y5d{bottom:553.725000px;}
.y17a{bottom:554.925000px;}
.yb1{bottom:556.125000px;}
.y11{bottom:559.725000px;}
.y98{bottom:560.925000px;}
.y199{bottom:565.725000px;}
.yc0{bottom:571.755000px;}
.y71{bottom:577.755000px;}
.y119{bottom:583.755000px;}
.y149{bottom:583.883597px;}
.y13b{bottom:583.988209px;}
.y158{bottom:585.034110px;}
.y14b{bottom:585.138703px;}
.y10{bottom:587.355000px;}
.y2d{bottom:589.755000px;}
.y15e{bottom:592.155000px;}
.y5c{bottom:594.555000px;}
.y179{bottom:595.755000px;}
.yb0{bottom:596.955000px;}
.y4e{bottom:601.755000px;}
.yc8{bottom:605.355000px;}
.y70{bottom:609.000000px;}
.ybf{bottom:612.600000px;}
.yf{bottom:616.200000px;}
.y198{bottom:617.400000px;}
.y6e{bottom:618.600000px;}
.y2c{bottom:630.600000px;}
.y178{bottom:631.800000px;}
.y15d{bottom:633.000000px;}
.y5b{bottom:636.600000px;}
.yaf{bottom:639.000000px;}
.y4d{bottom:642.600000px;}
.y97{bottom:643.800000px;}
.ye{bottom:645.000000px;}
.ybe{bottom:654.630000px;}
.y6f{bottom:657.030000px;}
.y7a{bottom:657.435000px;}
.yc7{bottom:659.445000px;}
.y6d{bottom:660.630000px;}
.y15c{bottom:666.630000px;}
.y197{bottom:671.430000px;}
.y2b{bottom:672.630000px;}
.yf4{bottom:677.430000px;}
.y96{bottom:678.630000px;}
.yae{bottom:679.830000px;}
.y4c{bottom:684.630000px;}
.y5a{bottom:688.275000px;}
.y95{bottom:695.475000px;}
.yd{bottom:696.675000px;}
.y6c{bottom:701.475000px;}
.y2a{bottom:713.475000px;}
.y15b{bottom:714.675000px;}
.y93{bottom:719.475000px;}
.y4b{bottom:725.475000px;}
.yc{bottom:729.105000px;}
.yad{bottom:732.705000px;}
.ybd{bottom:737.505000px;}
.y59{bottom:743.505000px;}
.y92{bottom:744.705000px;}
.y29{bottom:755.505000px;}
.yb{bottom:760.320000px;}
.y10a{bottom:766.756174px;}
.yfc{bottom:767.091748px;}
.y4a{bottom:767.550000px;}
.y90{bottom:768.750000px;}
.yf3{bottom:771.150000px;}
.y15a{bottom:772.350000px;}
.y175{bottom:773.710755px;}
.y167{bottom:773.890558px;}
.ya{bottom:779.550000px;}
.y6b{bottom:784.350000px;}
.y139{bottom:786.166349px;}
.y12d{bottom:786.270942px;}
.y12b{bottom:786.584740px;}
.y11c{bottom:786.689333px;}
.yac{bottom:786.750000px;}
.ybc{bottom:789.150000px;}
.y8d{bottom:792.750000px;}
.y28{bottom:796.350000px;}
.y49{bottom:808.380000px;}
.y88{bottom:817.980000px;}
.y6a{bottom:826.380000px;}
.y9{bottom:831.195000px;}
.y27{bottom:838.380000px;}
.yd3{bottom:840.282725px;}
.yab{bottom:840.780000px;}
.y48{bottom:850.425000px;}
.y69{bottom:867.225000px;}
.y8{bottom:870.825000px;}
.y26{bottom:879.225000px;}
.yaa{bottom:881.625000px;}
.y47{bottom:891.255000px;}
.y68{bottom:909.255000px;}
.y7{bottom:911.655000px;}
.y25{bottom:921.255000px;}
.ya9{bottom:923.655000px;}
.y46{bottom:933.300000px;}
.y129{bottom:940.754692px;}
.y6{bottom:946.500000px;}
.y67{bottom:950.100000px;}
.y24{bottom:962.100000px;}
.ya8{bottom:964.500000px;}
.y45{bottom:974.130000px;}
.y5{bottom:999.330000px;}
.y66{bottom:1002.945000px;}
.y23{bottom:1004.130000px;}
.ya7{bottom:1006.575000px;}
.yf2{bottom:1008.975000px;}
.y44{bottom:1016.175000px;}
.y4{bottom:1036.575000px;}
.ya6{bottom:1042.575000px;}
.y22{bottom:1045.005000px;}
.y3a{bottom:1057.005000px;}
.ya5{bottom:1058.205000px;}
.y173{bottom:1060.843022px;}
.ya2{bottom:1082.205000px;}
.y21{bottom:1087.050000px;}
.y3{bottom:1088.250000px;}
.y39{bottom:1099.050000px;}
.ya1{bottom:1107.450000px;}
.ye1{bottom:1126.928465px;}
.y9f{bottom:1131.480000px;}
.y2{bottom:1136.280000px;}
.y20{bottom:1138.695000px;}
.y38{bottom:1139.880000px;}
.yf1{bottom:1144.695000px;}
.y1e{bottom:1237.527000px;}
.h47{height:21.637500px;}
.h46{height:22.800000px;}
.h13{height:22.837500px;}
.h12{height:24.000000px;}
.h11{height:24.037500px;}
.h31{height:25.729859px;}
.h1b{height:28.671535px;}
.h10{height:40.837500px;}
.h2d{height:41.060886px;}
.h2e{height:41.143007px;}
.h4{height:42.839062px;}
.h3e{height:44.228885px;}
.h7{height:45.937500px;}
.h32{height:48.686566px;}
.h42{height:50.273438px;}
.he{height:50.725004px;}
.h20{height:51.284062px;}
.h14{height:51.404062px;}
.h15{height:51.464063px;}
.hf{height:52.409232px;}
.h36{height:54.512241px;}
.h38{height:54.892412px;}
.h37{height:56.078138px;}
.h2f{height:56.115337px;}
.hb{height:56.216335px;}
.hc{height:58.218750px;}
.h45{height:61.242188px;}
.h17{height:61.932214px;}
.h18{height:62.056079px;}
.h44{height:62.887500px;}
.h30{height:63.246021px;}
.h22{height:65.869602px;}
.h23{height:66.001341px;}
.h2{height:66.839062px;}
.h5{height:67.725000px;}
.h3a{height:70.582465px;}
.ha{height:70.628906px;}
.h9{height:70.664062px;}
.h3b{height:70.723630px;}
.h3f{height:71.530588px;}
.h41{height:71.673649px;}
.h6{height:72.562500px;}
.h1a{height:84.549587px;}
.h19{height:84.582766px;}
.h3d{height:84.800091px;}
.h3c{height:84.850427px;}
.h43{height:86.475000px;}
.h3{height:87.226172px;}
.h29{height:89.913088px;}
.h24{height:89.960180px;}
.h25{height:90.048296px;}
.h1f{height:95.394097px;}
.h1c{height:95.521289px;}
.h2b{height:101.458850px;}
.h27{height:101.594128px;}
.h2c{height:222.360667px;}
.h34{height:222.364532px;}
.h33{height:222.465260px;}
.h35{height:222.469125px;}
.h16{height:315.317275px;}
.h1d{height:315.830916px;}
.h1e{height:315.982862px;}
.h21{height:336.743252px;}
.h28{height:336.916788px;}
.h2a{height:336.927596px;}
.h26{height:337.078826px;}
.h39{height:381.709442px;}
.h40{height:381.889245px;}
.hd{height:446.400000px;}
.h1{height:1262.250000px;}
.h8{height:1262.399908px;}
.h0{height:1262.400000px;}
.w5{width:55.275000px;}
.w1d{width:56.475000px;}
.w20{width:69.712500px;}
.wd{width:77.744028px;}
.w14{width:82.683204px;}
.w1e{width:84.112500px;}
.w1f{width:93.712500px;}
.w1c{width:97.350000px;}
.w19{width:121.611638px;}
.w7{width:149.025000px;}
.wa{width:158.625000px;}
.wb{width:205.470000px;}
.w9{width:210.270000px;}
.w8{width:212.655000px;}
.w6{width:212.670000px;}
.w1b{width:243.900000px;}
.w16{width:370.818472px;}
.w13{width:370.923130px;}
.w17{width:370.923134px;}
.w15{width:371.027792px;}
.wc{width:596.090116px;}
.we{width:596.247812px;}
.w12{width:633.227116px;}
.w11{width:633.232982px;}
.wf{width:633.736081px;}
.w10{width:634.071479px;}
.w18{width:637.561610px;}
.w1a{width:637.741509px;}
.w4{width:656.895000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x74{left:4.800000px;}
.x69{left:6.000000px;}
.x73{left:7.200000px;}
.x76{left:8.385000px;}
.x42{left:9.461748px;}
.x6a{left:12.000000px;}
.x6b{left:13.185000px;}
.x51{left:14.485254px;}
.x6e{left:15.600000px;}
.x71{left:16.800000px;}
.x26{left:18.037500px;}
.x11{left:19.303582px;}
.x34{left:20.430000px;}
.x27{left:21.630000px;}
.x6d{left:22.845000px;}
.x21{left:24.045000px;}
.x1e{left:25.237500px;}
.x75{left:26.445000px;}
.x24{left:27.645000px;}
.x70{left:28.845000px;}
.x32{left:30.045000px;}
.x2a{left:31.230000px;}
.x49{left:34.076521px;}
.x4b{left:35.787055px;}
.x56{left:37.029511px;}
.x2f{left:39.675000px;}
.x58{left:40.696189px;}
.x2d{left:42.075000px;}
.x2c{left:44.475000px;}
.x37{left:45.630000px;}
.x50{left:47.056157px;}
.x2b{left:48.075000px;}
.x22{left:49.275000px;}
.x28{left:52.875000px;}
.x38{left:54.075000px;}
.x30{left:55.260000px;}
.x1f{left:56.475000px;}
.x35{left:57.675000px;}
.x40{left:60.492112px;}
.x2e{left:64.875000px;}
.x36{left:67.275000px;}
.x29{left:69.675000px;}
.x55{left:71.440731px;}
.x25{left:73.275000px;}
.xf{left:74.512473px;}
.x59{left:76.630236px;}
.x8{left:78.546000px;}
.x7{left:82.912500px;}
.x66{left:87.712500px;}
.x6{left:91.312500px;}
.x5d{left:93.295553px;}
.x39{left:97.320000px;}
.x9{left:99.749987px;}
.x48{left:100.987500px;}
.x4a{left:105.347685px;}
.x43{left:115.650004px;}
.x3f{left:117.384644px;}
.x41{left:119.533419px;}
.x44{left:123.255031px;}
.x5{left:127.387500px;}
.x3c{left:130.987487px;}
.x65{left:132.187500px;}
.x5b{left:133.387487px;}
.x3d{left:134.587487px;}
.x1d{left:135.787500px;}
.x4e{left:136.987487px;}
.x61{left:140.587487px;}
.x46{left:141.787487px;}
.x62{left:142.987487px;}
.x3b{left:144.187487px;}
.x19{left:147.182717px;}
.x4f{left:150.179987px;}
.xd{left:155.024987px;}
.x57{left:156.199731px;}
.x2{left:159.825000px;}
.x77{left:163.424987px;}
.x53{left:170.808836px;}
.x52{left:176.399546px;}
.x47{left:182.654987px;}
.x5c{left:183.869987px;}
.x17{left:192.147580px;}
.x5f{left:202.952618px;}
.x3{left:219.900000px;}
.x4{left:243.945000px;}
.xe{left:254.744987px;}
.xa{left:261.944987px;}
.x5e{left:273.116470px;}
.x18{left:302.233234px;}
.x63{left:342.449987px;}
.x67{left:376.095000px;}
.x3e{left:401.324987px;}
.x31{left:402.525000px;}
.x20{left:404.925000px;}
.xb{left:419.369987px;}
.x1b{left:434.124521px;}
.xc{left:437.399987px;}
.x4c{left:440.999987px;}
.x1{left:442.200000px;}
.x64{left:445.799987px;}
.x54{left:457.914706px;}
.x12{left:463.554716px;}
.x68{left:473.445000px;}
.x16{left:479.089387px;}
.x6c{left:529.905000px;}
.x15{left:532.165261px;}
.x23{left:553.950000px;}
.x33{left:561.150000px;}
.x1c{left:572.434823px;}
.x1a{left:585.717019px;}
.x14{left:592.516734px;}
.x13{left:602.034226px;}
.x6f{left:614.025000px;}
.x72{left:707.745000px;}
.x3a{left:713.744987px;}
.x45{left:738.974987px;}
.x5a{left:765.419987px;}
.x60{left:772.649987px;}
.x10{left:784.649987px;}
.x4d{left:829.124987px;}
@media print{
.v3{vertical-align:-59.733333pt;}
.v9{vertical-align:-25.546667pt;}
.vc{vertical-align:-23.850584pt;}
.v2{vertical-align:-21.333333pt;}
.v6{vertical-align:-17.066667pt;}
.v11{vertical-align:-10.441263pt;}
.v5{vertical-align:-8.640000pt;}
.ve{vertical-align:-6.105126pt;}
.v12{vertical-align:-4.266667pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:4.266667pt;}
.v10{vertical-align:5.516307pt;}
.v7{vertical-align:8.693333pt;}
.vf{vertical-align:11.466481pt;}
.vd{vertical-align:14.885282pt;}
.v4{vertical-align:17.066667pt;}
.v1{vertical-align:21.333333pt;}
.va{vertical-align:22.427835pt;}
.vb{vertical-align:23.850571pt;}
.v8{vertical-align:25.600000pt;}
.ls45{letter-spacing:-4.992000pt;}
.ls6{letter-spacing:-4.266667pt;}
.ls11{letter-spacing:-3.200000pt;}
.ls46{letter-spacing:-2.816000pt;}
.ls23{letter-spacing:-2.773333pt;}
.ls1b{letter-spacing:-2.725333pt;}
.ls13{letter-spacing:-2.133333pt;}
.ls14{letter-spacing:-1.450667pt;}
.ls1{letter-spacing:-1.066667pt;}
.ls2d{letter-spacing:-1.002667pt;}
.ls47{letter-spacing:-0.970667pt;}
.ls16{letter-spacing:-0.725333pt;}
.ls27{letter-spacing:-0.704000pt;}
.ls1e{letter-spacing:-0.490667pt;}
.ls4{letter-spacing:-0.418133pt;}
.ls2c{letter-spacing:-0.140174pt;}
.ls38{letter-spacing:-0.111566pt;}
.ls3f{letter-spacing:-0.063926pt;}
.ls2e{letter-spacing:-0.059658pt;}
.ls28{letter-spacing:-0.056092pt;}
.ls33{letter-spacing:-0.037189pt;}
.ls31{letter-spacing:-0.029813pt;}
.ls1c{letter-spacing:-0.021333pt;}
.ls34{letter-spacing:-0.018594pt;}
.ls30{letter-spacing:-0.015511pt;}
.ls2a{letter-spacing:-0.014584pt;}
.ls0{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.005242pt;}
.lsa{letter-spacing:0.021333pt;}
.ls36{letter-spacing:0.037189pt;}
.lsb{letter-spacing:0.053333pt;}
.ls40{letter-spacing:0.063926pt;}
.ls37{letter-spacing:0.074377pt;}
.ls21{letter-spacing:0.074667pt;}
.ls39{letter-spacing:0.076237pt;}
.ls8{letter-spacing:0.106667pt;}
.ls35{letter-spacing:0.110326pt;}
.ls25{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.162198pt;}
.ls2f{letter-spacing:0.172510pt;}
.ls2b{letter-spacing:0.274382pt;}
.lsf{letter-spacing:0.704000pt;}
.lse{letter-spacing:0.858667pt;}
.ls43{letter-spacing:1.013333pt;}
.ls12{letter-spacing:1.066667pt;}
.ls26{letter-spacing:1.226667pt;}
.ls5{letter-spacing:1.440000pt;}
.ls10{letter-spacing:1.450667pt;}
.ls1f{letter-spacing:1.482667pt;}
.ls2{letter-spacing:1.909333pt;}
.ls42{letter-spacing:2.048000pt;}
.lsc{letter-spacing:2.080000pt;}
.ls7{letter-spacing:2.133333pt;}
.ls48{letter-spacing:2.186667pt;}
.ls24{letter-spacing:2.240000pt;}
.ls1d{letter-spacing:2.288000pt;}
.lsd{letter-spacing:2.293333pt;}
.ls1a{letter-spacing:2.816000pt;}
.ls22{letter-spacing:3.673600pt;}
.ls3{letter-spacing:3.941333pt;}
.ls19{letter-spacing:4.320000pt;}
.ls15{letter-spacing:4.970667pt;}
.ls9{letter-spacing:5.333333pt;}
.ls44{letter-spacing:5.440000pt;}
.ls20{letter-spacing:9.600000pt;}
.ls17{letter-spacing:13.866667pt;}
.ls3a{letter-spacing:14.026667pt;}
.ls3d{letter-spacing:18.080000pt;}
.ls3c{letter-spacing:18.293333pt;}
.ls3b{letter-spacing:22.400000pt;}
.ls32{letter-spacing:134.994573pt;}
.ls3e{letter-spacing:232.136970pt;}
.ws16{word-spacing:-64.000000pt;}
.ws24{word-spacing:-19.795984pt;}
.ws3{word-spacing:-18.874667pt;}
.wsf{word-spacing:-18.816000pt;}
.ws1e{word-spacing:-18.502973pt;}
.ws13{word-spacing:-18.133333pt;}
.ws35{word-spacing:-18.048000pt;}
.wsa{word-spacing:-17.450667pt;}
.ws9{word-spacing:-16.858667pt;}
.ws5{word-spacing:-16.373333pt;}
.wsc{word-spacing:-16.021333pt;}
.wsd{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.978667pt;}
.ws12{word-spacing:-15.509333pt;}
.ws17{word-spacing:-15.296000pt;}
.wse{word-spacing:-15.274667pt;}
.ws14{word-spacing:-15.029631pt;}
.ws2{word-spacing:-14.933333pt;}
.wsb{word-spacing:-14.549333pt;}
.ws1{word-spacing:-13.866667pt;}
.ws10{word-spacing:-13.274667pt;}
.ws23{word-spacing:-13.266887pt;}
.ws15{word-spacing:-13.226667pt;}
.ws37{word-spacing:-13.184000pt;}
.ws4{word-spacing:-13.081600pt;}
.ws38{word-spacing:-12.896000pt;}
.ws1d{word-spacing:-12.475490pt;}
.ws33{word-spacing:-12.472988pt;}
.ws36{word-spacing:-11.008000pt;}
.ws6{word-spacing:-10.666667pt;}
.ws7{word-spacing:-9.600000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws26{word-spacing:-8.279949pt;}
.ws8{word-spacing:0.000000pt;}
.ws30{word-spacing:97.805985pt;}
.ws28{word-spacing:97.867966pt;}
.ws2c{word-spacing:97.898957pt;}
.ws1c{word-spacing:110.997088pt;}
.ws19{word-spacing:114.035384pt;}
.ws2b{word-spacing:116.239128pt;}
.ws2f{word-spacing:116.400279pt;}
.ws25{word-spacing:116.462260pt;}
.ws20{word-spacing:121.285271pt;}
.ws22{word-spacing:123.771008pt;}
.ws32{word-spacing:200.227193pt;}
.ws1b{word-spacing:244.515429pt;}
.ws1a{word-spacing:246.272967pt;}
.ws18{word-spacing:247.553726pt;}
.ws1f{word-spacing:263.292142pt;}
.ws21{word-spacing:265.777879pt;}
.ws2d{word-spacing:309.352993pt;}
.ws29{word-spacing:310.114144pt;}
.ws27{word-spacing:331.590553pt;}
.ws2e{word-spacing:331.683525pt;}
.ws31{word-spacing:332.334325pt;}
.ws2a{word-spacing:340.089633pt;}
.ws34{word-spacing:583.455840pt;}
._21{margin-left:-2442.209185pt;}
._1b{margin-left:-2440.947861pt;}
._1c{margin-left:-2439.634536pt;}
._22{margin-left:-2438.588013pt;}
._20{margin-left:-2437.275729pt;}
._e{margin-left:-2405.177251pt;}
._11{margin-left:-2388.675665pt;}
._3{margin-left:-2293.717466pt;}
._15{margin-left:-2176.672479pt;}
._23{margin-left:-2152.245003pt;}
._12{margin-left:-2140.203852pt;}
._5{margin-left:-2085.121046pt;}
._a{margin-left:-1996.012560pt;}
._13{margin-left:-1307.295241pt;}
._10{margin-left:-1017.609392pt;}
._17{margin-left:-723.279288pt;}
._18{margin-left:-412.810887pt;}
._37{margin-left:-12.133765pt;}
._1d{margin-left:-8.908879pt;}
._2{margin-left:-6.693354pt;}
._9{margin-left:-5.337456pt;}
._1{margin-left:-4.385585pt;}
._6{margin-left:-2.884267pt;}
._4{margin-left:-1.679743pt;}
._7{width:0.942933pt;}
._8{width:2.134215pt;}
._d{width:3.145519pt;}
._0{width:4.154631pt;}
._16{width:5.876713pt;}
._c{width:7.259113pt;}
._b{width:8.155672pt;}
._25{width:9.486585pt;}
._38{width:10.393183pt;}
._19{width:11.288907pt;}
._14{width:12.638843pt;}
._3a{width:13.532886pt;}
._24{width:14.423251pt;}
._1a{width:16.054843pt;}
._3c{width:17.269086pt;}
._1f{width:18.261148pt;}
._1e{width:19.166357pt;}
._30{width:20.468267pt;}
._34{width:21.741936pt;}
._27{width:22.862848pt;}
._3f{width:23.915927pt;}
._4b{width:24.832337pt;}
._2f{width:26.365157pt;}
._26{width:27.294505pt;}
._2e{width:28.574276pt;}
._3d{width:30.008459pt;}
._28{width:30.928089pt;}
._39{width:31.831988pt;}
._35{width:33.013475pt;}
._29{width:34.931318pt;}
._2d{width:35.944483pt;}
._3e{width:37.460215pt;}
._36{width:39.475878pt;}
._2c{width:40.498727pt;}
._2a{width:43.483959pt;}
._3b{width:44.531247pt;}
._2b{width:48.475229pt;}
._33{width:52.564635pt;}
._31{width:56.547200pt;}
._32{width:69.426377pt;}
._f{width:84.482133pt;}
._49{width:107.196104pt;}
._48{width:116.338298pt;}
._4a{width:125.703624pt;}
._47{width:135.081346pt;}
._4d{width:184.266977pt;}
._4c{width:200.248502pt;}
._42{width:261.681989pt;}
._41{width:264.580056pt;}
._40{width:268.329594pt;}
._44{width:281.400935pt;}
._46{width:284.035816pt;}
._43{width:285.388852pt;}
._45{width:287.904418pt;}
.fs1b{font-size:33.119798pt;}
.fs3{font-size:34.133333pt;}
.fs18{font-size:37.188588pt;}
.fs19{font-size:37.262965pt;}
.fs5{font-size:38.400000pt;}
.fs6{font-size:42.666667pt;}
.fs1d{font-size:43.510647pt;}
.fs1f{font-size:43.585025pt;}
.fs1e{font-size:49.460821pt;}
.fs1a{font-size:49.493630pt;}
.fs23{font-size:49.891954pt;}
.fse{font-size:49.901959pt;}
.fs16{font-size:53.067547pt;}
.fs2{font-size:55.466667pt;}
.fs1c{font-size:55.782881pt;}
.fs9{font-size:56.091620pt;}
.fsa{font-size:56.203803pt;}
.fs10{font-size:59.657687pt;}
.fs0{font-size:59.733333pt;}
.fs11{font-size:59.777002pt;}
.fs8{font-size:60.118523pt;}
.fs20{font-size:63.926098pt;}
.fs4{font-size:64.000000pt;}
.fs21{font-size:64.053950pt;}
.fs7{font-size:67.461249pt;}
.fsc{font-size:74.572590pt;}
.fsb{font-size:74.601854pt;}
.fs24{font-size:74.793535pt;}
.fs22{font-size:74.837931pt;}
.fs1{font-size:76.933333pt;}
.fs15{font-size:79.303189pt;}
.fs12{font-size:79.344724pt;}
.fs13{font-size:79.422442pt;}
.fsf{font-size:84.137429pt;}
.fsd{font-size:84.249613pt;}
.fs17{font-size:89.486531pt;}
.fs14{font-size:89.605846pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:2.126811pt;}
.y8c{bottom:3.200000pt;}
.y156{bottom:3.644493pt;}
.y147{bottom:3.700268pt;}
.y91{bottom:4.266667pt;}
.y8e{bottom:5.333333pt;}
.ya3{bottom:5.373333pt;}
.y8f{bottom:6.400000pt;}
.ya0{bottom:6.413333pt;}
.y94{bottom:6.426667pt;}
.ya4{bottom:6.440000pt;}
.y172{bottom:9.301235pt;}
.y12a{bottom:9.746511pt;}
.y18c{bottom:10.666667pt;}
.ydf{bottom:11.463754pt;}
.y8a{bottom:11.746667pt;}
.y108{bottom:12.142825pt;}
.y115{bottom:12.199971pt;}
.y89{bottom:12.800000pt;}
.yed{bottom:15.453702pt;}
.y187{bottom:18.133333pt;}
.y174{bottom:19.297699pt;}
.y8b{bottom:21.333333pt;}
.y155{bottom:24.711910pt;}
.y137{bottom:24.784661pt;}
.y126{bottom:24.807903pt;}
.y18b{bottom:26.693333pt;}
.y80{bottom:28.170480pt;}
.y145{bottom:28.449355pt;}
.y185{bottom:34.160000pt;}
.yd4{bottom:34.917066pt;}
.y127{bottom:35.406652pt;}
.y14c{bottom:35.645355pt;}
.y12e{bottom:35.716556pt;}
.y11d{bottom:35.739799pt;}
.yfd{bottom:37.099624pt;}
.y10d{bottom:37.167086pt;}
.ye4{bottom:38.928050pt;}
.y13c{bottom:39.364206pt;}
.y18a{bottom:41.640000pt;}
.y146{bottom:41.781466pt;}
.y170{bottom:45.770828pt;}
.y186{bottom:49.093333pt;}
.y1f{bottom:50.200000pt;}
.y14d{bottom:50.241876pt;}
.y12f{bottom:50.313077pt;}
.y11e{bottom:50.351815pt;}
.y13d{bottom:53.979321pt;}
.y189{bottom:56.600000pt;}
.yd5{bottom:57.715972pt;}
.yfe{bottom:61.410132pt;}
.y168{bottom:64.533140pt;}
.y14e{bottom:64.856991pt;}
.y130{bottom:64.932841pt;}
.y11f{bottom:64.948336pt;}
.y188{bottom:65.133333pt;}
.ye5{bottom:65.655706pt;}
.y1{bottom:68.333333pt;}
.y13e{bottom:68.575842pt;}
.y85{bottom:69.175474pt;}
.y10e{bottom:71.887860pt;}
.y171{bottom:75.400583pt;}
.y14f{bottom:79.451962pt;}
.y131{bottom:79.529362pt;}
.y120{bottom:79.568100pt;}
.yd6{bottom:80.514879pt;}
.y13f{bottom:83.194056pt;}
.yff{bottom:85.720639pt;}
.yee{bottom:88.288676pt;}
.y116{bottom:89.009616pt;}
.ye6{bottom:92.355317pt;}
.y169{bottom:93.235960pt;}
.y150{bottom:94.071726pt;}
.y132{bottom:94.141377pt;}
.y121{bottom:94.164620pt;}
.y140{bottom:97.790577pt;}
.yc6{bottom:100.366667pt;}
.yd7{bottom:103.290413pt;}
.y196{bottom:103.566667pt;}
.yfb{bottom:104.633333pt;}
.y9e{bottom:105.700000pt;}
.y10f{bottom:106.608634pt;}
.y151{bottom:108.668247pt;}
.y133{bottom:108.737898pt;}
.y122{bottom:108.776636pt;}
.y100{bottom:110.031147pt;}
.y37{bottom:111.033333pt;}
.y141{bottom:112.402593pt;}
.y183{bottom:114.233333pt;}
.y109{bottom:116.543777pt;}
.ybb{bottom:117.466667pt;}
.ye0{bottom:118.294923pt;}
.ye7{bottom:119.082974pt;}
.y43{bottom:119.600000pt;}
.y16a{bottom:121.938778pt;}
.y152{bottom:123.280262pt;}
.y134{bottom:123.357661pt;}
.y123{bottom:123.373157pt;}
.y65{bottom:123.866667pt;}
.y166{bottom:124.933333pt;}
.yd8{bottom:126.089319pt;}
.y142{bottom:127.014609pt;}
.y193{bottom:128.133333pt;}
.y58{bottom:129.200000pt;}
.y177{bottom:130.266667pt;}
.y101{bottom:134.341654pt;}
.y1d{bottom:137.733333pt;}
.y153{bottom:137.892278pt;}
.y135{bottom:137.954182pt;}
.y124{bottom:137.985173pt;}
.yca{bottom:138.800000pt;}
.yd2{bottom:139.866667pt;}
.yfa{bottom:140.933333pt;}
.y110{bottom:141.354265pt;}
.y143{bottom:141.611129pt;}
.y9d{bottom:145.200000pt;}
.ye8{bottom:145.808294pt;}
.y13a{bottom:146.763226pt;}
.y12c{bottom:148.157793pt;}
.y36{bottom:148.400000pt;}
.yd9{bottom:148.864854pt;}
.y14a{bottom:149.048862pt;}
.y159{bottom:149.738391pt;}
.y182{bottom:150.533333pt;}
.y16b{bottom:150.642928pt;}
.y154{bottom:152.488799pt;}
.y136{bottom:152.566198pt;}
.y125{bottom:152.581693pt;}
.yba{bottom:154.826667pt;}
.y42{bottom:155.893333pt;}
.y144{bottom:156.230893pt;}
.y102{bottom:158.652161pt;}
.y64{bottom:161.226667pt;}
.y192{bottom:164.426667pt;}
.y79{bottom:165.493333pt;}
.y57{bottom:166.560000pt;}
.y191{bottom:168.706667pt;}
.yda{bottom:171.663760pt;}
.ye9{bottom:172.533613pt;}
.y81{bottom:172.889439pt;}
.y165{bottom:172.960000pt;}
.y1a0{bottom:175.106667pt;}
.y111{bottom:176.080010pt;}
.yc5{bottom:177.226667pt;}
.yf9{bottom:178.293333pt;}
.y157{bottom:178.706746pt;}
.y138{bottom:178.784144pt;}
.y148{bottom:178.784214pt;}
.y128{bottom:178.799640pt;}
.y16c{bottom:179.343082pt;}
.y190{bottom:179.360000pt;}
.y103{bottom:182.962669pt;}
.y1c{bottom:184.693333pt;}
.yc9{bottom:186.866667pt;}
.y181{bottom:187.933333pt;}
.y41{bottom:193.266667pt;}
.ydb{bottom:194.462667pt;}
.y63{bottom:197.533333pt;}
.yea{bottom:199.270619pt;}
.yb9{bottom:199.666667pt;}
.y78{bottom:202.866667pt;}
.y56{bottom:203.933333pt;}
.y104{bottom:207.273176pt;}
.y16d{bottom:208.043238pt;}
.y112{bottom:210.830613pt;}
.yc4{bottom:213.533333pt;}
.y86{bottom:214.559494pt;}
.yf8{bottom:214.600000pt;}
.y7f{bottom:215.498850pt;}
.ydc{bottom:217.238201pt;}
.y82{bottom:218.955712pt;}
.y7e{bottom:219.500525pt;}
.y18f{bottom:219.933333pt;}
.y164{bottom:221.000000pt;}
.y35{bottom:222.093333pt;}
.y19f{bottom:223.173333pt;}
.y180{bottom:224.226667pt;}
.yeb{bottom:225.995938pt;}
.y84{bottom:226.573945pt;}
.y40{bottom:229.560000pt;}
.y105{bottom:231.583684pt;}
.y1b{bottom:232.760000pt;}
.y62{bottom:233.826667pt;}
.yb8{bottom:235.960000pt;}
.y16e{bottom:236.756710pt;}
.y7d{bottom:237.536262pt;}
.y77{bottom:239.160000pt;}
.y83{bottom:239.461978pt;}
.ydd{bottom:240.037107pt;}
.y55{bottom:240.226667pt;}
.y18e{bottom:241.293333pt;}
.y7b{bottom:242.120377pt;}
.y9c{bottom:244.506667pt;}
.y113{bottom:245.556358pt;}
.yf7{bottom:245.560000pt;}
.yc3{bottom:249.840000pt;}
.yd1{bottom:250.893333pt;}
.yec{bottom:252.721258pt;}
.y106{bottom:255.931477pt;}
.yf0{bottom:256.946360pt;}
.y163{bottom:257.333333pt;}
.y34{bottom:258.400000pt;}
.y195{bottom:259.466667pt;}
.y17f{bottom:261.600000pt;}
.yde{bottom:262.836014pt;}
.y16f{bottom:265.456864pt;}
.y3f{bottom:265.866667pt;}
.y1a{bottom:269.066667pt;}
.y61{bottom:271.200000pt;}
.yb7{bottom:273.333333pt;}
.y118{bottom:274.015214pt;}
.y10b{bottom:274.238930pt;}
.y54{bottom:276.533333pt;}
.y176{bottom:276.923589pt;}
.y9b{bottom:277.600000pt;}
.y107{bottom:280.241985pt;}
.y114{bottom:280.269675pt;}
.y18d{bottom:282.933333pt;}
.y76{bottom:287.200000pt;}
.yd0{bottom:291.466667pt;}
.y19{bottom:294.706667pt;}
.y3e{bottom:303.226667pt;}
.y194{bottom:305.360000pt;}
.y33{bottom:307.506667pt;}
.yb6{bottom:309.626667pt;}
.y53{bottom:313.893333pt;}
.y19e{bottom:318.173333pt;}
.y18{bottom:320.293333pt;}
.y75{bottom:323.493333pt;}
.ycf{bottom:324.560000pt;}
.y32{bottom:338.466667pt;}
.y3d{bottom:339.533333pt;}
.yf6{bottom:341.666667pt;}
.y17{bottom:344.866667pt;}
.y17e{bottom:345.933333pt;}
.yb5{bottom:347.000000pt;}
.y52{bottom:350.200000pt;}
.y9a{bottom:351.266667pt;}
.y19d{bottom:355.533333pt;}
.y87{bottom:357.549065pt;}
.y74{bottom:360.866667pt;}
.y31{bottom:366.226667pt;}
.y16{bottom:370.493333pt;}
.y7c{bottom:372.597639pt;}
.y3c{bottom:376.893333pt;}
.y162{bottom:379.026667pt;}
.y60{bottom:381.173333pt;}
.y17d{bottom:382.226667pt;}
.yb4{bottom:383.293333pt;}
.yf5{bottom:384.360000pt;}
.y117{bottom:384.453333pt;}
.y10c{bottom:384.462929pt;}
.y51{bottom:387.560000pt;}
.y19c{bottom:391.840000pt;}
.yce{bottom:392.893333pt;}
.y15{bottom:396.093333pt;}
.y73{bottom:397.173333pt;}
.y30{bottom:402.533333pt;}
.y11b{bottom:406.800000pt;}
.y3b{bottom:413.200000pt;}
.y161{bottom:415.333333pt;}
.y5f{bottom:418.533333pt;}
.y17c{bottom:419.600000pt;}
.yb3{bottom:420.666667pt;}
.y14{bottom:421.733333pt;}
.y50{bottom:423.866667pt;}
.y99{bottom:424.933333pt;}
.y19b{bottom:429.200000pt;}
.yc2{bottom:434.560000pt;}
.y184{bottom:439.893333pt;}
.y72{bottom:445.226667pt;}
.y13{bottom:446.293333pt;}
.ycd{bottom:448.426667pt;}
.y11a{bottom:449.506667pt;}
.y2f{bottom:450.560000pt;}
.y160{bottom:452.693333pt;}
.y5e{bottom:454.826667pt;}
.y17b{bottom:455.893333pt;}
.yb2{bottom:456.960000pt;}
.y4f{bottom:461.226667pt;}
.y19a{bottom:465.493333pt;}
.yc1{bottom:470.866667pt;}
.y12{bottom:471.933333pt;}
.ycb{bottom:476.200000pt;}
.y2e{bottom:486.866667pt;}
.y15f{bottom:489.000000pt;}
.ycc{bottom:490.066667pt;}
.yef{bottom:491.000000pt;}
.ye3{bottom:491.135086pt;}
.y5d{bottom:492.200000pt;}
.y17a{bottom:493.266667pt;}
.yb1{bottom:494.333333pt;}
.y11{bottom:497.533333pt;}
.y98{bottom:498.600000pt;}
.y199{bottom:502.866667pt;}
.yc0{bottom:508.226667pt;}
.y71{bottom:513.560000pt;}
.y119{bottom:518.893333pt;}
.y149{bottom:519.007642pt;}
.y13b{bottom:519.100631pt;}
.y158{bottom:520.030320pt;}
.y14b{bottom:520.123292pt;}
.y10{bottom:522.093333pt;}
.y2d{bottom:524.226667pt;}
.y15e{bottom:526.360000pt;}
.y5c{bottom:528.493333pt;}
.y179{bottom:529.560000pt;}
.yb0{bottom:530.626667pt;}
.y4e{bottom:534.893333pt;}
.yc8{bottom:538.093333pt;}
.y70{bottom:541.333333pt;}
.ybf{bottom:544.533333pt;}
.yf{bottom:547.733333pt;}
.y198{bottom:548.800000pt;}
.y6e{bottom:549.866667pt;}
.y2c{bottom:560.533333pt;}
.y178{bottom:561.600000pt;}
.y15d{bottom:562.666667pt;}
.y5b{bottom:565.866667pt;}
.yaf{bottom:568.000000pt;}
.y4d{bottom:571.200000pt;}
.y97{bottom:572.266667pt;}
.ye{bottom:573.333333pt;}
.ybe{bottom:581.893333pt;}
.y6f{bottom:584.026667pt;}
.y7a{bottom:584.386667pt;}
.yc7{bottom:586.173333pt;}
.y6d{bottom:587.226667pt;}
.y15c{bottom:592.560000pt;}
.y197{bottom:596.826667pt;}
.y2b{bottom:597.893333pt;}
.yf4{bottom:602.160000pt;}
.y96{bottom:603.226667pt;}
.yae{bottom:604.293333pt;}
.y4c{bottom:608.560000pt;}
.y5a{bottom:611.800000pt;}
.y95{bottom:618.200000pt;}
.yd{bottom:619.266667pt;}
.y6c{bottom:623.533333pt;}
.y2a{bottom:634.200000pt;}
.y15b{bottom:635.266667pt;}
.y93{bottom:639.533333pt;}
.y4b{bottom:644.866667pt;}
.yc{bottom:648.093333pt;}
.yad{bottom:651.293333pt;}
.ybd{bottom:655.560000pt;}
.y59{bottom:660.893333pt;}
.y92{bottom:661.960000pt;}
.y29{bottom:671.560000pt;}
.yb{bottom:675.840000pt;}
.y10a{bottom:681.561043pt;}
.yfc{bottom:681.859332pt;}
.y4a{bottom:682.266667pt;}
.y90{bottom:683.333333pt;}
.yf3{bottom:685.466667pt;}
.y15a{bottom:686.533333pt;}
.y175{bottom:687.742893pt;}
.y167{bottom:687.902718pt;}
.ya{bottom:692.933333pt;}
.y6b{bottom:697.200000pt;}
.y139{bottom:698.814532pt;}
.y12d{bottom:698.907504pt;}
.y12b{bottom:699.186435pt;}
.y11c{bottom:699.279407pt;}
.yac{bottom:699.333333pt;}
.ybc{bottom:701.466667pt;}
.y8d{bottom:704.666667pt;}
.y28{bottom:707.866667pt;}
.y49{bottom:718.560000pt;}
.y88{bottom:727.093333pt;}
.y6a{bottom:734.560000pt;}
.y9{bottom:738.840000pt;}
.y27{bottom:745.226667pt;}
.yd3{bottom:746.917978pt;}
.yab{bottom:747.360000pt;}
.y48{bottom:755.933333pt;}
.y69{bottom:770.866667pt;}
.y8{bottom:774.066667pt;}
.y26{bottom:781.533333pt;}
.yaa{bottom:783.666667pt;}
.y47{bottom:792.226667pt;}
.y68{bottom:808.226667pt;}
.y7{bottom:810.360000pt;}
.y25{bottom:818.893333pt;}
.ya9{bottom:821.026667pt;}
.y46{bottom:829.600000pt;}
.y129{bottom:836.226393pt;}
.y6{bottom:841.333333pt;}
.y67{bottom:844.533333pt;}
.y24{bottom:855.200000pt;}
.ya8{bottom:857.333333pt;}
.y45{bottom:865.893333pt;}
.y5{bottom:888.293333pt;}
.y66{bottom:891.506667pt;}
.y23{bottom:892.560000pt;}
.ya7{bottom:894.733333pt;}
.yf2{bottom:896.866667pt;}
.y44{bottom:903.266667pt;}
.y4{bottom:921.400000pt;}
.ya6{bottom:926.733333pt;}
.y22{bottom:928.893333pt;}
.y3a{bottom:939.560000pt;}
.ya5{bottom:940.626667pt;}
.y173{bottom:942.971575pt;}
.ya2{bottom:961.960000pt;}
.y21{bottom:966.266667pt;}
.y3{bottom:967.333333pt;}
.y39{bottom:976.933333pt;}
.ya1{bottom:984.400000pt;}
.ye1{bottom:1001.714191pt;}
.y9f{bottom:1005.760000pt;}
.y2{bottom:1010.026667pt;}
.y20{bottom:1012.173333pt;}
.y38{bottom:1013.226667pt;}
.yf1{bottom:1017.506667pt;}
.y1e{bottom:1100.024000pt;}
.h47{height:19.233333pt;}
.h46{height:20.266667pt;}
.h13{height:20.300000pt;}
.h12{height:21.333333pt;}
.h11{height:21.366667pt;}
.h31{height:22.870986pt;}
.h1b{height:25.485809pt;}
.h10{height:36.300000pt;}
.h2d{height:36.498565pt;}
.h2e{height:36.571562pt;}
.h4{height:38.079167pt;}
.h3e{height:39.314564pt;}
.h7{height:40.833333pt;}
.h32{height:43.276948pt;}
.h42{height:44.687500pt;}
.he{height:45.088892pt;}
.h20{height:45.585833pt;}
.h14{height:45.692500pt;}
.h15{height:45.745833pt;}
.hf{height:46.585984pt;}
.h36{height:48.455325pt;}
.h38{height:48.793255pt;}
.h37{height:49.847234pt;}
.h2f{height:49.880299pt;}
.hb{height:49.970075pt;}
.hc{height:51.750000pt;}
.h45{height:54.437500pt;}
.h17{height:55.050857pt;}
.h18{height:55.160959pt;}
.h44{height:55.900000pt;}
.h30{height:56.218685pt;}
.h22{height:58.550757pt;}
.h23{height:58.667859pt;}
.h2{height:59.412500pt;}
.h5{height:60.200000pt;}
.h3a{height:62.739969pt;}
.ha{height:62.781250pt;}
.h9{height:62.812500pt;}
.h3b{height:62.865449pt;}
.h3f{height:63.582745pt;}
.h41{height:63.709910pt;}
.h6{height:64.500000pt;}
.h1a{height:75.155188pt;}
.h19{height:75.184681pt;}
.h3d{height:75.377859pt;}
.h3c{height:75.422602pt;}
.h43{height:76.866667pt;}
.h3{height:77.534375pt;}
.h29{height:79.922745pt;}
.h24{height:79.964604pt;}
.h25{height:80.042930pt;}
.h1f{height:84.794753pt;}
.h1c{height:84.907813pt;}
.h2b{height:90.185644pt;}
.h27{height:90.305892pt;}
.h2c{height:197.653927pt;}
.h34{height:197.657362pt;}
.h33{height:197.746898pt;}
.h35{height:197.750333pt;}
.h16{height:280.282022pt;}
.h1d{height:280.738592pt;}
.h1e{height:280.873655pt;}
.h21{height:299.327335pt;}
.h28{height:299.481589pt;}
.h2a{height:299.491196pt;}
.h26{height:299.625623pt;}
.h39{height:339.297282pt;}
.h40{height:339.457107pt;}
.hd{height:396.800000pt;}
.h1{height:1122.000000pt;}
.h8{height:1122.133252pt;}
.h0{height:1122.133333pt;}
.w5{width:49.133333pt;}
.w1d{width:50.200000pt;}
.w20{width:61.966667pt;}
.wd{width:69.105803pt;}
.w14{width:73.496181pt;}
.w1e{width:74.766667pt;}
.w1f{width:83.300000pt;}
.w1c{width:86.533333pt;}
.w19{width:108.099234pt;}
.w7{width:132.466667pt;}
.wa{width:141.000000pt;}
.wb{width:182.640000pt;}
.w9{width:186.906667pt;}
.w8{width:189.026667pt;}
.w6{width:189.040000pt;}
.w1b{width:216.800000pt;}
.w16{width:329.616420pt;}
.w13{width:329.709449pt;}
.w17{width:329.709453pt;}
.w15{width:329.802482pt;}
.wc{width:529.857881pt;}
.we{width:529.998055pt;}
.w12{width:562.868547pt;}
.w11{width:562.873762pt;}
.wf{width:563.320961pt;}
.w10{width:563.619093pt;}
.w18{width:566.721431pt;}
.w1a{width:566.881341pt;}
.w4{width:583.906667pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x74{left:4.266667pt;}
.x69{left:5.333333pt;}
.x73{left:6.400000pt;}
.x76{left:7.453333pt;}
.x42{left:8.410443pt;}
.x6a{left:10.666667pt;}
.x6b{left:11.720000pt;}
.x51{left:12.875781pt;}
.x6e{left:13.866667pt;}
.x71{left:14.933333pt;}
.x26{left:16.033333pt;}
.x11{left:17.158740pt;}
.x34{left:18.160000pt;}
.x27{left:19.226667pt;}
.x6d{left:20.306667pt;}
.x21{left:21.373333pt;}
.x1e{left:22.433333pt;}
.x75{left:23.506667pt;}
.x24{left:24.573333pt;}
.x70{left:25.640000pt;}
.x32{left:26.706667pt;}
.x2a{left:27.760000pt;}
.x49{left:30.290241pt;}
.x4b{left:31.810715pt;}
.x56{left:32.915121pt;}
.x2f{left:35.266667pt;}
.x58{left:36.174390pt;}
.x2d{left:37.400000pt;}
.x2c{left:39.533333pt;}
.x37{left:40.560000pt;}
.x50{left:41.827695pt;}
.x2b{left:42.733333pt;}
.x22{left:43.800000pt;}
.x28{left:47.000000pt;}
.x38{left:48.066667pt;}
.x30{left:49.120000pt;}
.x1f{left:50.200000pt;}
.x35{left:51.266667pt;}
.x40{left:53.770766pt;}
.x2e{left:57.666667pt;}
.x36{left:59.800000pt;}
.x29{left:61.933333pt;}
.x55{left:63.502872pt;}
.x25{left:65.133333pt;}
.xf{left:66.233310pt;}
.x59{left:68.115765pt;}
.x8{left:69.818667pt;}
.x7{left:73.700000pt;}
.x66{left:77.966667pt;}
.x6{left:81.166667pt;}
.x5d{left:82.929381pt;}
.x39{left:86.506667pt;}
.x9{left:88.666655pt;}
.x48{left:89.766667pt;}
.x4a{left:93.642386pt;}
.x43{left:102.800003pt;}
.x3f{left:104.341905pt;}
.x41{left:106.251928pt;}
.x44{left:109.560027pt;}
.x5{left:113.233333pt;}
.x3c{left:116.433322pt;}
.x65{left:117.500000pt;}
.x5b{left:118.566655pt;}
.x3d{left:119.633322pt;}
.x1d{left:120.700000pt;}
.x4e{left:121.766655pt;}
.x61{left:124.966655pt;}
.x46{left:126.033322pt;}
.x62{left:127.099988pt;}
.x3b{left:128.166655pt;}
.x19{left:130.829082pt;}
.x4f{left:133.493322pt;}
.xd{left:137.799988pt;}
.x57{left:138.844206pt;}
.x2{left:142.066667pt;}
.x77{left:145.266655pt;}
.x53{left:151.830077pt;}
.x52{left:156.799596pt;}
.x47{left:162.359988pt;}
.x5c{left:163.439988pt;}
.x17{left:170.797849pt;}
.x5f{left:180.402327pt;}
.x3{left:195.466667pt;}
.x4{left:216.840000pt;}
.xe{left:226.439988pt;}
.xa{left:232.839988pt;}
.x5e{left:242.770195pt;}
.x18{left:268.651764pt;}
.x63{left:304.399988pt;}
.x67{left:334.306667pt;}
.x3e{left:356.733322pt;}
.x31{left:357.800000pt;}
.x20{left:359.933333pt;}
.xb{left:372.773322pt;}
.x1b{left:385.888463pt;}
.xc{left:388.799988pt;}
.x4c{left:391.999988pt;}
.x1{left:393.066667pt;}
.x64{left:396.266655pt;}
.x54{left:407.035294pt;}
.x12{left:412.048637pt;}
.x68{left:420.840000pt;}
.x16{left:425.857233pt;}
.x6c{left:471.026667pt;}
.x15{left:473.035788pt;}
.x23{left:492.400000pt;}
.x33{left:498.800000pt;}
.x1c{left:508.830954pt;}
.x1a{left:520.637350pt;}
.x14{left:526.681542pt;}
.x13{left:535.141534pt;}
.x6f{left:545.800000pt;}
.x72{left:629.106667pt;}
.x3a{left:634.439988pt;}
.x45{left:656.866655pt;}
.x5a{left:680.373322pt;}
.x60{left:686.799988pt;}
.x10{left:697.466655pt;}
.x4d{left:736.999988pt;}
}




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