
    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_56710e245666f37930373f87.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f90abeacc632fc1cca710a3b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_f3511e877a1771df8091e6c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.886719;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_9dff950adf2df264dcf31034.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_19915bc81b423b76487c6bbf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.678223;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_19915bc81b423b76487c6bbf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.678223;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_857d9eb05b7e3df929945c51.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706055;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_c0760580664124cfe4c0b1ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959961;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_adb5871fb226f5270c1597bf.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ea57ddd86aa4d029ffe52150.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_5719cfbe8ae26b9e8ba7abac.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.689453;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_5e7b8d357304b69f782f1999.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.019043;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_54930f578da2e264e3cdb78a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a07e939fe3ab0528f0e5d58a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.706055;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_1487eec204a5786ec4b423fa.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_e3593d96668a72f79643f01b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248242,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);}
.m2{transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-30.240000px;}
.v5{vertical-align:-14.896321px;}
.v6{vertical-align:-12.066356px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.v4{vertical-align:34.857896px;}
.ls32{letter-spacing:-1.833980px;}
.ls33{letter-spacing:-1.393825px;}
.ls11{letter-spacing:-0.014400px;}
.lsb{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014400px;}
.ls3f{letter-spacing:0.021600px;}
.ls2d{letter-spacing:0.054660px;}
.ls3b{letter-spacing:0.116928px;}
.ls10{letter-spacing:0.161568px;}
.ls2e{letter-spacing:0.221460px;}
.ls37{letter-spacing:0.224352px;}
.ls2{letter-spacing:0.236160px;}
.ls9{letter-spacing:0.239760px;}
.ls27{letter-spacing:0.240000px;}
.ls2a{letter-spacing:0.240600px;}
.ls36{letter-spacing:0.242064px;}
.ls2b{letter-spacing:0.242208px;}
.ls45{letter-spacing:0.253872px;}
.ls29{letter-spacing:0.256680px;}
.ls18{letter-spacing:0.298080px;}
.lsa{letter-spacing:0.309024px;}
.ls39{letter-spacing:0.318816px;}
.ls46{letter-spacing:0.319680px;}
.ls43{letter-spacing:0.320100px;}
.ls47{letter-spacing:0.320280px;}
.ls17{letter-spacing:0.324000px;}
.ls28{letter-spacing:0.325728px;}
.ls1{letter-spacing:0.348336px;}
.ls24{letter-spacing:0.356400px;}
.ls12{letter-spacing:0.359136px;}
.lsc{letter-spacing:0.383760px;}
.ls1e{letter-spacing:0.388800px;}
.ls1a{letter-spacing:0.401760px;}
.ls35{letter-spacing:0.419184px;}
.ls22{letter-spacing:0.431568px;}
.ls1b{letter-spacing:0.434160px;}
.ls2c{letter-spacing:0.442656px;}
.ls40{letter-spacing:0.460512px;}
.lsf{letter-spacing:0.478224px;}
.ls7{letter-spacing:0.479520px;}
.ls4{letter-spacing:0.518400px;}
.ls14{letter-spacing:0.524880px;}
.ls34{letter-spacing:0.543168px;}
.ls41{letter-spacing:0.576960px;}
.lse{letter-spacing:0.578592px;}
.ls6{letter-spacing:0.602640px;}
.ls38{letter-spacing:0.637632px;}
.ls16{letter-spacing:0.680400px;}
.lsd{letter-spacing:0.702576px;}
.ls44{letter-spacing:0.703140px;}
.ls26{letter-spacing:0.703320px;}
.ls0{letter-spacing:0.708480px;}
.ls13{letter-spacing:0.725760px;}
.ls3a{letter-spacing:0.738000px;}
.ls25{letter-spacing:0.797040px;}
.ls42{letter-spacing:0.861984px;}
.ls19{letter-spacing:0.874800px;}
.ls21{letter-spacing:0.907200px;}
.ls15{letter-spacing:0.920160px;}
.ls23{letter-spacing:1.075680px;}
.ls5{letter-spacing:1.296000px;}
.ls20{letter-spacing:4.471200px;}
.ls1d{letter-spacing:5.119200px;}
.ls1c{letter-spacing:9.396000px;}
.ls1f{letter-spacing:15.033600px;}
.ls8{letter-spacing:17.949600px;}
.ls30{letter-spacing:23.146726px;}
.ls3c{letter-spacing:30.684000px;}
.ls3d{letter-spacing:54.866820px;}
.ls3e{letter-spacing:54.867000px;}
.ls31{letter-spacing:80.012052px;}
.ls2f{letter-spacing:250.263840px;}
.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;}
}
.wsd{word-spacing:-21.322656px;}
.ws3{word-spacing:-21.239136px;}
.ws1{word-spacing:-18.014400px;}
.wsc{word-spacing:-18.000000px;}
.wse{word-spacing:-17.985600px;}
.ws7{word-spacing:-17.074800px;}
.ws4{word-spacing:-16.802640px;}
.ws8{word-spacing:-16.724880px;}
.ws6{word-spacing:-16.679520px;}
.wsa{word-spacing:-16.556400px;}
.ws5{word-spacing:-16.200000px;}
.ws1f{word-spacing:-15.621984px;}
.ws1a{word-spacing:-15.498000px;}
.ws0{word-spacing:-15.462576px;}
.ws1b{word-spacing:-15.397632px;}
.ws18{word-spacing:-15.338592px;}
.ws16{word-spacing:-15.303168px;}
.wsb{word-spacing:-15.238224px;}
.ws1d{word-spacing:-15.220512px;}
.ws17{word-spacing:-15.179184px;}
.ws1e{word-spacing:-15.143760px;}
.ws19{word-spacing:-15.078816px;}
.ws20{word-spacing:-15.013872px;}
.ws21{word-spacing:-14.760000px;}
.ws2{word-spacing:-12.041568px;}
.ws14{word-spacing:-11.880000px;}
.wsf{word-spacing:-0.074930px;}
.ws10{word-spacing:-0.074925px;}
.ws11{word-spacing:-0.073359px;}
.ws1c{word-spacing:-0.072000px;}
.ws15{word-spacing:-0.061226px;}
.ws9{word-spacing:0.000000px;}
.ws13{word-spacing:1.320466px;}
.ws12{word-spacing:1.760621px;}
._1d{margin-left:-266.989154px;}
._1c{margin-left:-190.494193px;}
._23{margin-left:-161.873621px;}
._22{margin-left:-156.341225px;}
._1a{margin-left:-100.577847px;}
._1b{margin-left:-97.667385px;}
._1e{margin-left:-54.692101px;}
._21{margin-left:-45.394355px;}
._1f{margin-left:-14.400000px;}
._20{margin-left:-13.020000px;}
._1{margin-left:-1.009152px;}
._0{width:1.012320px;}
._e{width:2.163744px;}
._c{width:3.718080px;}
._d{width:4.726800px;}
._f{width:5.752224px;}
._6{width:6.758208px;}
._7{width:7.761744px;}
._b{width:8.951184px;}
._2{width:10.108800px;}
._3{width:11.145600px;}
._12{width:12.232800px;}
._9{width:13.438080px;}
._8{width:14.709600px;}
._11{width:15.818400px;}
._10{width:16.992000px;}
._4{width:18.051552px;}
._5{width:19.115136px;}
._a{width:20.268576px;}
._15{width:22.291200px;}
._24{width:24.015600px;}
._14{width:25.466400px;}
._26{width:27.093600px;}
._27{width:28.099800px;}
._13{width:29.181600px;}
._19{width:30.463200px;}
._16{width:31.564800px;}
._28{width:33.048000px;}
._25{width:35.892000px;}
._2a{width:39.202560px;}
._18{width:43.617600px;}
._17{width:44.755200px;}
._29{width:46.483200px;}
._2e{width:55.902240px;}
._2d{width:65.171520px;}
._2b{width:189.228672px;}
._30{width:221.155200px;}
._2f{width:226.193184px;}
._2c{width:290.417760px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:38.880000px;}
.fsb{font-size:42.756107px;}
.fs10{font-size:42.902534px;}
.fs7{font-size:43.646444px;}
.fs9{font-size:43.717270px;}
.fs5{font-size:47.520000px;}
.fs0{font-size:53.280000px;}
.fs1{font-size:59.040000px;}
.fsf{font-size:61.225897px;}
.fs2{font-size:64.800000px;}
.fs4{font-size:72.000000px;}
.fsc{font-size:73.359206px;}
.fsa{font-size:74.924578px;}
.fs8{font-size:74.930316px;}
.fs6{font-size:83.520000px;}
.fs3{font-size:108.000000px;}
.fsd{font-size:110.114350px;}
.fs11{font-size:110.234218px;}
.yba{bottom:-5.040000px;}
.y0{bottom:0.000000px;}
.y86{bottom:2.400385px;}
.ya4{bottom:3.202763px;}
.yb0{bottom:3.240000px;}
.y7e{bottom:3.311896px;}
.y7a{bottom:3.575197px;}
.yb3{bottom:3.600000px;}
.yc5{bottom:3.960000px;}
.y8d{bottom:4.538191px;}
.yb2{bottom:4.680000px;}
.y88{bottom:6.976044px;}
.y8e{bottom:7.613609px;}
.y7f{bottom:8.022106px;}
.y7b{bottom:8.267418px;}
.ya1{bottom:10.166961px;}
.y128{bottom:11.520000px;}
.yc3{bottom:11.880000px;}
.yb7{bottom:12.240000px;}
.yc6{bottom:12.600000px;}
.y6{bottom:12.960000px;}
.ya2{bottom:13.034581px;}
.yc9{bottom:13.320000px;}
.ya6{bottom:13.891042px;}
.y8c{bottom:17.815548px;}
.y1{bottom:18.000000px;}
.ya0{bottom:18.881435px;}
.ya3{bottom:19.439507px;}
.ybe{bottom:20.520000px;}
.yb6{bottom:20.880000px;}
.yc4{bottom:21.240000px;}
.yc8{bottom:21.960000px;}
.ya7{bottom:25.771824px;}
.y87{bottom:29.178399px;}
.ya5{bottom:29.271776px;}
.ya8{bottom:29.867352px;}
.ya9{bottom:30.128386px;}
.y126{bottom:31.320000px;}
.y89{bottom:33.792433px;}
.ydc{bottom:37.800000px;}
.y153{bottom:38.160000px;}
.y155{bottom:55.440000px;}
.y5b{bottom:58.080030px;}
.y39{bottom:58.800030px;}
.y5a{bottom:84.000030px;}
.y20{bottom:84.001440px;}
.y38{bottom:86.520030px;}
.y4{bottom:86.521440px;}
.y1f{bottom:109.920000px;}
.y59{bottom:109.920015px;}
.y157{bottom:110.880000px;}
.y3{bottom:112.440000px;}
.y37{bottom:112.440015px;}
.y21{bottom:113.160000px;}
.y5c{bottom:113.160030px;}
.y5{bottom:115.680000px;}
.y3a{bottom:115.680030px;}
.ye9{bottom:134.400000px;}
.yf8{bottom:138.000000px;}
.yae{bottom:150.960000px;}
.y174{bottom:152.400000px;}
.y13d{bottom:153.480000px;}
.y58{bottom:156.000000px;}
.y188{bottom:157.080000px;}
.y11d{bottom:157.800000px;}
.y19c{bottom:158.520000px;}
.y9f{bottom:159.240000px;}
.yaa{bottom:160.680000px;}
.y1e{bottom:164.928000px;}
.ye8{bottom:165.360000px;}
.y9e{bottom:168.240000px;}
.yf7{bottom:168.960000px;}
.y102{bottom:177.960000px;}
.yad{bottom:179.040000px;}
.y173{bottom:180.120000px;}
.y13c{bottom:181.200000px;}
.y57{bottom:186.960000px;}
.y11c{bottom:188.760000px;}
.y158{bottom:193.080000px;}
.y1d{bottom:193.375200px;}
.ye7{bottom:196.680000px;}
.y187{bottom:197.040000px;}
.y15b{bottom:198.000000px;}
.y19b{bottom:198.480000px;}
.yf6{bottom:199.920000px;}
.y9d{bottom:200.640000px;}
.y172{bottom:207.840000px;}
.y13b{bottom:208.920000px;}
.y101{bottom:209.280000px;}
.yac{bottom:210.360000px;}
.y56{bottom:218.280000px;}
.y11b{bottom:220.080000px;}
.y1c{bottom:221.822400px;}
.ye6{bottom:227.640000px;}
.yf5{bottom:231.240000px;}
.yd0{bottom:234.480000px;}
.y171{bottom:235.560000px;}
.y13a{bottom:236.640000px;}
.y186{bottom:237.360000px;}
.y156{bottom:238.080000px;}
.y19a{bottom:238.440000px;}
.y100{bottom:240.240000px;}
.yab{bottom:241.320000px;}
.y78{bottom:242.400000px;}
.y55{bottom:249.240000px;}
.y1b{bottom:250.269600px;}
.y9c{bottom:258.240000px;}
.ye5{bottom:258.600000px;}
.y11a{bottom:261.120000px;}
.yf4{bottom:262.200000px;}
.y139{bottom:264.360000px;}
.ycf{bottom:265.440000px;}
.y77{bottom:272.280000px;}
.y185{bottom:277.320000px;}
.y199{bottom:278.760000px;}
.y54{bottom:280.200000px;}
.y170{bottom:280.560000px;}
.yff{bottom:281.640000px;}
.yf3{bottom:282.720000px;}
.y1a{bottom:287.707800px;}
.y9b{bottom:289.200000px;}
.ye4{bottom:289.560000px;}
.y119{bottom:292.440000px;}
.yce{bottom:296.760000px;}
.y154{bottom:300.360000px;}
.y76{bottom:303.240000px;}
.y16f{bottom:308.280000px;}
.y138{bottom:309.360000px;}
.y53{bottom:311.160000px;}
.yfe{bottom:312.600000px;}
.y19{bottom:316.155000px;}
.y184{bottom:317.280000px;}
.y198{bottom:318.720000px;}
.y9a{bottom:320.160000px;}
.ye3{bottom:320.880000px;}
.yf2{bottom:326.280000px;}
.ycd{bottom:327.720000px;}
.y118{bottom:333.480000px;}
.y75{bottom:334.560000px;}
.y16e{bottom:336.360000px;}
.y137{bottom:337.080000px;}
.y52{bottom:342.480000px;}
.yfd{bottom:343.560000px;}
.y18{bottom:344.958600px;}
.y99{bottom:351.480000px;}
.ye2{bottom:351.840000px;}
.y183{bottom:357.240000px;}
.ycc{bottom:358.680000px;}
.yf1{bottom:360.480000px;}
.y36{bottom:364.067400px;}
.y16d{bottom:364.080000px;}
.y117{bottom:364.800000px;}
.y74{bottom:365.520000px;}
.y17{bottom:373.405800px;}
.y51{bottom:373.440000px;}
.yfc{bottom:374.880000px;}
.y152{bottom:379.920000px;}
.y98{bottom:382.440000px;}
.ye1{bottom:382.800000px;}
.ycb{bottom:389.640000px;}
.y16c{bottom:391.800000px;}
.y135{bottom:392.520000px;}
.yf0{bottom:394.680000px;}
.y116{bottom:396.120000px;}
.y73{bottom:396.480000px;}
.y182{bottom:397.560000px;}
.y197{bottom:398.640000px;}
.y16{bottom:401.853000px;}
.y50{bottom:404.400000px;}
.y97{bottom:413.400000px;}
.ye0{bottom:413.760000px;}
.y16b{bottom:419.520000px;}
.y136{bottom:420.240000px;}
.y35{bottom:420.945600px;}
.y72{bottom:427.440000px;}
.yfb{bottom:427.800000px;}
.yef{bottom:428.880000px;}
.yca{bottom:433.200000px;}
.y4f{bottom:435.360000px;}
.y115{bottom:437.160000px;}
.y181{bottom:437.520000px;}
.y196{bottom:438.960000px;}
.y15{bottom:439.291200px;}
.y151{bottom:442.200000px;}
.y96{bottom:444.360000px;}
.ydf{bottom:445.080000px;}
.y16a{bottom:447.240000px;}
.y134{bottom:448.320000px;}
.y34{bottom:449.392800px;}
.y71{bottom:458.760000px;}
.yfa{bottom:459.840000px;}
.yee{bottom:462.720000px;}
.y4e{bottom:466.320000px;}
.yc7{bottom:467.400000px;}
.y14{bottom:467.738400px;}
.y114{bottom:468.480000px;}
.y150{bottom:469.920000px;}
.y169{bottom:474.960000px;}
.y95{bottom:475.680000px;}
.yde{bottom:476.040000px;}
.y180{bottom:477.480000px;}
.y195{bottom:478.920000px;}
.y70{bottom:489.720000px;}
.y13{bottom:496.185600px;}
.yed{bottom:496.920000px;}
.y4d{bottom:497.640000px;}
.y168{bottom:502.680000px;}
.y133{bottom:503.760000px;}
.y94{bottom:506.640000px;}
.ydd{bottom:507.000000px;}
.y113{bottom:509.520000px;}
.y14f{bottom:514.920000px;}
.y17f{bottom:517.440000px;}
.y194{bottom:518.880000px;}
.y6f{bottom:520.680000px;}
.y12{bottom:524.632800px;}
.y4c{bottom:528.600000px;}
.y167{bottom:530.400000px;}
.yec{bottom:531.120000px;}
.y132{bottom:531.480000px;}
.y93{bottom:537.600000px;}
.y112{bottom:540.840000px;}
.y33{bottom:542.640000px;}
.ydb{bottom:550.560000px;}
.y6e{bottom:551.640000px;}
.y11{bottom:553.080000px;}
.y17e{bottom:557.760000px;}
.y166{bottom:558.120000px;}
.y193{bottom:558.840000px;}
.y131{bottom:559.200000px;}
.y4b{bottom:559.560000px;}
.yeb{bottom:565.320000px;}
.y92{bottom:568.560000px;}
.y14e{bottom:570.360000px;}
.y32{bottom:571.080000px;}
.yc2{bottom:573.240000px;}
.y111{bottom:581.880000px;}
.y6d{bottom:582.960000px;}
.yda{bottom:584.760000px;}
.yea{bottom:585.840000px;}
.y130{bottom:586.920000px;}
.y4a{bottom:590.520000px;}
.y17d{bottom:597.720000px;}
.y14d{bottom:598.080000px;}
.y192{bottom:599.160000px;}
.y31{bottom:599.520000px;}
.y91{bottom:599.880000px;}
.y10{bottom:603.840000px;}
.y110{bottom:613.200000px;}
.y165{bottom:613.560000px;}
.y6c{bottom:613.920000px;}
.y12f{bottom:614.640000px;}
.yd9{bottom:618.960000px;}
.y49{bottom:621.840000px;}
.yc1{bottom:624.360000px;}
.y14c{bottom:625.800000px;}
.y30{bottom:627.960000px;}
.y90{bottom:630.840000px;}
.y17c{bottom:637.680000px;}
.y191{bottom:639.120000px;}
.y164{bottom:641.280000px;}
.y12e{bottom:642.360000px;}
.y6b{bottom:644.880000px;}
.y48{bottom:652.800000px;}
.y14b{bottom:653.520000px;}
.y10f{bottom:654.240000px;}
.y2f{bottom:656.400000px;}
.yc0{bottom:658.560000px;}
.y163{bottom:669.720000px;}
.y12d{bottom:670.080000px;}
.yf9{bottom:673.320000px;}
.y6a{bottom:675.840000px;}
.y17b{bottom:677.640000px;}
.y190{bottom:679.080000px;}
.y8f{bottom:680.520000px;}
.y47{bottom:683.760000px;}
.y2e{bottom:684.840000px;}
.y10e{bottom:685.200000px;}
.yd8{bottom:687.000000px;}
.ybf{bottom:692.760000px;}
.y12c{bottom:697.800000px;}
.y14a{bottom:698.520000px;}
.y162{bottom:700.680000px;}
.y69{bottom:707.160000px;}
.y2d{bottom:713.280000px;}
.y46{bottom:714.720000px;}
.y10d{bottom:716.520000px;}
.y17a{bottom:717.960000px;}
.y18f{bottom:719.040000px;}
.yd7{bottom:721.200000px;}
.y8b{bottom:723.360000px;}
.y12b{bottom:725.520000px;}
.y149{bottom:726.240000px;}
.ybd{bottom:726.960000px;}
.y68{bottom:738.120000px;}
.y15a{bottom:741.000000px;}
.y2c{bottom:741.720000px;}
.y45{bottom:746.040000px;}
.y8a{bottom:750.360000px;}
.y12a{bottom:753.240000px;}
.y148{bottom:753.960000px;}
.yd6{bottom:755.400000px;}
.yf{bottom:757.200000px;}
.y10c{bottom:757.560000px;}
.y179{bottom:757.920000px;}
.y18e{bottom:759.360000px;}
.y85{bottom:768.360150px;}
.y161{bottom:768.720000px;}
.y67{bottom:769.080000px;}
.y2b{bottom:770.160000px;}
.y44{bottom:777.000000px;}
.ybc{bottom:778.080000px;}
.y129{bottom:781.320000px;}
.y147{bottom:781.680000px;}
.ye{bottom:786.360000px;}
.y10b{bottom:788.880000px;}
.yd5{bottom:789.600000px;}
.y160{bottom:796.440000px;}
.y178{bottom:797.880000px;}
.y2a{bottom:798.600000px;}
.y18d{bottom:799.320000px;}
.y66{bottom:800.040000px;}
.yd{bottom:806.880000px;}
.y43{bottom:807.960000px;}
.y127{bottom:809.040000px;}
.y146{bottom:810.120000px;}
.y84{bottom:815.520000px;}
.yc{bottom:819.480000px;}
.yd4{bottom:823.440000px;}
.y15f{bottom:824.160000px;}
.y29{bottom:827.040000px;}
.ybb{bottom:829.560000px;}
.y10a{bottom:829.920000px;}
.y65{bottom:831.360000px;}
.y177{bottom:837.840000px;}
.y42{bottom:838.920000px;}
.y18c{bottom:839.280000px;}
.yb{bottom:840.000000px;}
.y145{bottom:841.080000px;}
.y125{bottom:844.680000px;}
.y83{bottom:846.480000px;}
.y15e{bottom:851.880000px;}
.y28{bottom:855.840000px;}
.yd3{bottom:857.640000px;}
.ya{bottom:860.880000px;}
.y109{bottom:861.240000px;}
.y64{bottom:862.320000px;}
.yb9{bottom:863.760000px;}
.y176{bottom:868.800000px;}
.y41{bottom:870.240000px;}
.y124{bottom:872.400000px;}
.y82{bottom:877.800000px;}
.yd2{bottom:878.160000px;}
.y18b{bottom:879.240000px;}
.y15d{bottom:879.600000px;}
.y9{bottom:881.400000px;}
.y27{bottom:884.280000px;}
.y63{bottom:893.280000px;}
.yb8{bottom:897.960000px;}
.y123{bottom:900.120000px;}
.y40{bottom:901.200000px;}
.y108{bottom:902.280000px;}
.yd1{bottom:904.080000px;}
.y15c{bottom:907.680000px;}
.y81{bottom:908.760000px;}
.y144{bottom:912.360000px;}
.y26{bottom:912.720000px;}
.y8{bottom:919.200000px;}
.y62{bottom:924.240000px;}
.y122{bottom:927.840000px;}
.yb5{bottom:931.800000px;}
.y3f{bottom:932.160000px;}
.y107{bottom:933.600000px;}
.y159{bottom:935.400000px;}
.y80{bottom:939.720000px;}
.y175{bottom:940.080000px;}
.y25{bottom:941.160000px;}
.y143{bottom:952.680000px;}
.y61{bottom:955.200000px;}
.y121{bottom:955.560000px;}
.y18a{bottom:959.520000px;}
.y3e{bottom:963.120000px;}
.y106{bottom:964.920000px;}
.y7{bottom:965.640000px;}
.y7c{bottom:975.720000px;}
.y142{bottom:980.400000px;}
.yb4{bottom:983.280000px;}
.y7d{bottom:984.720000px;}
.y60{bottom:986.520000px;}
.y24{bottom:991.560000px;}
.y3d{bottom:994.440000px;}
.y189{bottom:999.480000px;}
.y105{bottom:1005.960000px;}
.y11e{bottom:1007.040000px;}
.y141{bottom:1008.120000px;}
.y120{bottom:1011.000000px;}
.y79{bottom:1016.400000px;}
.y5f{bottom:1017.480000px;}
.y3c{bottom:1025.400000px;}
.y140{bottom:1035.840000px;}
.y11f{bottom:1039.440000px;}
.y104{bottom:1047.360000px;}
.y5e{bottom:1048.440000px;}
.yb1{bottom:1051.680000px;}
.y23{bottom:1052.032800px;}
.y13f{bottom:1063.560000px;}
.y3b{bottom:1076.880000px;}
.y103{bottom:1078.320000px;}
.y5d{bottom:1079.400000px;}
.y22{bottom:1080.480000px;}
.yaf{bottom:1088.040000px;}
.y13e{bottom:1091.280000px;}
.y2{bottom:1147.440000px;}
.h30{height:16.920000px;}
.h24{height:16.920045px;}
.h29{height:17.279985px;}
.h2d{height:17.280000px;}
.h26{height:17.280030px;}
.h25{height:19.440030px;}
.h2f{height:25.199985px;}
.h19{height:25.913672px;}
.he{height:27.000000px;}
.h4{height:28.440000px;}
.hf{height:29.090526px;}
.h12{height:29.137731px;}
.h15{height:29.687102px;}
.h1f{height:29.788771px;}
.h11{height:29.879970px;}
.h20{height:30.444984px;}
.h8{height:32.994844px;}
.h28{height:34.199985px;}
.h27{height:34.559970px;}
.h31{height:34.559985px;}
.h32{height:34.560015px;}
.h2a{height:35.640015px;}
.h2b{height:36.359985px;}
.h2{height:36.994219px;}
.h22{height:39.350391px;}
.h1b{height:41.375313px;}
.h21{height:42.511341px;}
.h38{height:44.999985px;}
.h2e{height:45.000000px;}
.h1a{height:46.440015px;}
.h1d{height:47.324509px;}
.h13{height:49.937524px;}
.h10{height:49.941349px;}
.h9{height:49.992188px;}
.h16{height:50.935933px;}
.h17{height:51.119985px;}
.h14{height:51.120030px;}
.h2c{height:51.480015px;}
.h3{height:51.804141px;}
.h35{height:51.840000px;}
.h33{height:51.840015px;}
.h23{height:52.438359px;}
.h5{height:56.858203px;}
.hb{height:57.554297px;}
.hd{height:63.175781px;}
.hc{height:63.949219px;}
.h34{height:69.120000px;}
.ha{height:74.181094px;}
.h7{height:74.816016px;}
.h18{height:81.940561px;}
.h1c{height:82.182405px;}
.h1e{height:85.205453px;}
.h6{height:95.923828px;}
.h36{height:124.560000px;}
.h37{height:211.680000px;}
.h1{height:1227.000000px;}
.h0{height:1263.000000px;}
.w6{width:33.119985px;}
.w5{width:33.120000px;}
.wc{width:36.720000px;}
.w3{width:61.559970px;}
.w2{width:61.560000px;}
.w4{width:61.560015px;}
.w15{width:63.720000px;}
.w17{width:63.720015px;}
.w16{width:64.080000px;}
.wf{width:66.240000px;}
.we{width:68.040030px;}
.w13{width:69.840000px;}
.w18{width:69.840045px;}
.w7{width:73.439985px;}
.w10{width:80.639985px;}
.w11{width:80.640015px;}
.w8{width:103.680000px;}
.w9{width:124.560015px;}
.w1b{width:126.720000px;}
.w14{width:133.199985px;}
.w2c{width:140.040000px;}
.w31{width:140.399985px;}
.w2e{width:140.400015px;}
.w24{width:147.959970px;}
.w12{width:147.960015px;}
.w23{width:152.640000px;}
.w28{width:153.000000px;}
.w26{width:158.760000px;}
.w20{width:165.960000px;}
.w1c{width:166.320000px;}
.w1d{width:166.680000px;}
.w25{width:169.560000px;}
.w30{width:173.520000px;}
.w2b{width:173.880000px;}
.w2d{width:175.320000px;}
.w1a{width:185.040000px;}
.wb{width:269.640000px;}
.wd{width:274.680000px;}
.w1f{width:312.480000px;}
.w2f{width:316.440000px;}
.w27{width:329.040000px;}
.w29{width:329.400000px;}
.w21{width:333.360000px;}
.w1e{width:333.720000px;}
.w22{width:631.440000px;}
.w2a{width:631.800000px;}
.w19{width:646.560000px;}
.wa{width:652.320000px;}
.w1{width:856.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x22{left:2.606889px;}
.x41{left:5.040000px;}
.x32{left:7.200075px;}
.x23{left:10.613880px;}
.x19{left:14.957945px;}
.x1{left:18.000000px;}
.x2d{left:22.110573px;}
.x18{left:27.557701px;}
.x2a{left:33.165859px;}
.x2c{left:39.403641px;}
.x25{left:47.818716px;}
.x1f{left:51.243302px;}
.x6{left:53.175000px;}
.x2b{left:59.198742px;}
.x34{left:60.735000px;}
.x1e{left:63.979869px;}
.x26{left:78.542709px;}
.x10{left:88.200150px;}
.x24{left:90.719792px;}
.x30{left:99.000000px;}
.x4e{left:101.880000px;}
.x48{left:115.200060px;}
.x29{left:118.695396px;}
.x2{left:131.040150px;}
.x14{left:141.375000px;}
.x49{left:144.360000px;}
.x47{left:158.040150px;}
.x35{left:160.004100px;}
.x3f{left:166.857450px;}
.x7{left:172.440600px;}
.xf{left:184.215150px;}
.x8{left:191.529600px;}
.x31{left:200.422800px;}
.x11{left:219.857700px;}
.x57{left:223.578000px;}
.x40{left:228.600000px;}
.x4a{left:236.699250px;}
.x36{left:238.344000px;}
.x39{left:244.800000px;}
.x38{left:249.501000px;}
.x51{left:255.600000px;}
.x3{left:262.697700px;}
.x5a{left:276.120000px;}
.x4f{left:287.640000px;}
.x54{left:298.080000px;}
.x12{left:307.030260px;}
.x17{left:312.840000px;}
.x58{left:318.960000px;}
.x1a{left:327.819900px;}
.x4b{left:330.120000px;}
.x4{left:349.870260px;}
.x2f{left:355.302900px;}
.x42{left:362.880000px;}
.x33{left:369.720000px;}
.x3a{left:393.840000px;}
.xa{left:396.829500px;}
.x21{left:399.960000px;}
.x52{left:404.280000px;}
.x16{left:407.062500px;}
.x1d{left:414.720000px;}
.x5b{left:417.240000px;}
.x43{left:427.680000px;}
.xb{left:431.300100px;}
.x15{left:436.402500px;}
.x55{left:446.760000px;}
.x4c{left:457.560000px;}
.xd{left:459.847050px;}
.x3b{left:461.160000px;}
.xc{left:465.841200px;}
.x20{left:470.399700px;}
.x37{left:476.489850px;}
.x27{left:485.399850px;}
.x9{left:489.246450px;}
.x44{left:492.840000px;}
.x28{left:535.680000px;}
.x3c{left:542.880000px;}
.x45{left:558.000000px;}
.x53{left:574.560000px;}
.x50{left:581.760000px;}
.x1b{left:588.600000px;}
.x5c{left:593.280000px;}
.x1c{left:603.760200px;}
.xe{left:604.807200px;}
.x3d{left:610.200000px;}
.x56{left:617.040000px;}
.x4d{left:624.600000px;}
.x59{left:635.760000px;}
.x2e{left:642.292650px;}
.x3e{left:674.280000px;}
.x13{left:682.560000px;}
.x46{left:716.760000px;}
.x5{left:725.040000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-26.880000pt;}
.v5{vertical-align:-13.241175pt;}
.v6{vertical-align:-10.725650pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.v4{vertical-align:30.984797pt;}
.ls32{letter-spacing:-1.630205pt;}
.ls33{letter-spacing:-1.238955pt;}
.ls11{letter-spacing:-0.012800pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.012800pt;}
.ls3f{letter-spacing:0.019200pt;}
.ls2d{letter-spacing:0.048587pt;}
.ls3b{letter-spacing:0.103936pt;}
.ls10{letter-spacing:0.143616pt;}
.ls2e{letter-spacing:0.196853pt;}
.ls37{letter-spacing:0.199424pt;}
.ls2{letter-spacing:0.209920pt;}
.ls9{letter-spacing:0.213120pt;}
.ls27{letter-spacing:0.213333pt;}
.ls2a{letter-spacing:0.213867pt;}
.ls36{letter-spacing:0.215168pt;}
.ls2b{letter-spacing:0.215296pt;}
.ls45{letter-spacing:0.225664pt;}
.ls29{letter-spacing:0.228160pt;}
.ls18{letter-spacing:0.264960pt;}
.lsa{letter-spacing:0.274688pt;}
.ls39{letter-spacing:0.283392pt;}
.ls46{letter-spacing:0.284160pt;}
.ls43{letter-spacing:0.284533pt;}
.ls47{letter-spacing:0.284693pt;}
.ls17{letter-spacing:0.288000pt;}
.ls28{letter-spacing:0.289536pt;}
.ls1{letter-spacing:0.309632pt;}
.ls24{letter-spacing:0.316800pt;}
.ls12{letter-spacing:0.319232pt;}
.lsc{letter-spacing:0.341120pt;}
.ls1e{letter-spacing:0.345600pt;}
.ls1a{letter-spacing:0.357120pt;}
.ls35{letter-spacing:0.372608pt;}
.ls22{letter-spacing:0.383616pt;}
.ls1b{letter-spacing:0.385920pt;}
.ls2c{letter-spacing:0.393472pt;}
.ls40{letter-spacing:0.409344pt;}
.lsf{letter-spacing:0.425088pt;}
.ls7{letter-spacing:0.426240pt;}
.ls4{letter-spacing:0.460800pt;}
.ls14{letter-spacing:0.466560pt;}
.ls34{letter-spacing:0.482816pt;}
.ls41{letter-spacing:0.512853pt;}
.lse{letter-spacing:0.514304pt;}
.ls6{letter-spacing:0.535680pt;}
.ls38{letter-spacing:0.566784pt;}
.ls16{letter-spacing:0.604800pt;}
.lsd{letter-spacing:0.624512pt;}
.ls44{letter-spacing:0.625013pt;}
.ls26{letter-spacing:0.625173pt;}
.ls0{letter-spacing:0.629760pt;}
.ls13{letter-spacing:0.645120pt;}
.ls3a{letter-spacing:0.656000pt;}
.ls25{letter-spacing:0.708480pt;}
.ls42{letter-spacing:0.766208pt;}
.ls19{letter-spacing:0.777600pt;}
.ls21{letter-spacing:0.806400pt;}
.ls15{letter-spacing:0.817920pt;}
.ls23{letter-spacing:0.956160pt;}
.ls5{letter-spacing:1.152000pt;}
.ls20{letter-spacing:3.974400pt;}
.ls1d{letter-spacing:4.550400pt;}
.ls1c{letter-spacing:8.352000pt;}
.ls1f{letter-spacing:13.363200pt;}
.ls8{letter-spacing:15.955200pt;}
.ls30{letter-spacing:20.574867pt;}
.ls3c{letter-spacing:27.274667pt;}
.ls3d{letter-spacing:48.770507pt;}
.ls3e{letter-spacing:48.770667pt;}
.ls31{letter-spacing:71.121824pt;}
.ls2f{letter-spacing:222.456747pt;}
.wsd{word-spacing:-18.953472pt;}
.ws3{word-spacing:-18.879232pt;}
.ws1{word-spacing:-16.012800pt;}
.wsc{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.987200pt;}
.ws7{word-spacing:-15.177600pt;}
.ws4{word-spacing:-14.935680pt;}
.ws8{word-spacing:-14.866560pt;}
.ws6{word-spacing:-14.826240pt;}
.wsa{word-spacing:-14.716800pt;}
.ws5{word-spacing:-14.400000pt;}
.ws1f{word-spacing:-13.886208pt;}
.ws1a{word-spacing:-13.776000pt;}
.ws0{word-spacing:-13.744512pt;}
.ws1b{word-spacing:-13.686784pt;}
.ws18{word-spacing:-13.634304pt;}
.ws16{word-spacing:-13.602816pt;}
.wsb{word-spacing:-13.545088pt;}
.ws1d{word-spacing:-13.529344pt;}
.ws17{word-spacing:-13.492608pt;}
.ws1e{word-spacing:-13.461120pt;}
.ws19{word-spacing:-13.403392pt;}
.ws20{word-spacing:-13.345664pt;}
.ws21{word-spacing:-13.120000pt;}
.ws2{word-spacing:-10.703616pt;}
.ws14{word-spacing:-10.560000pt;}
.wsf{word-spacing:-0.066605pt;}
.ws10{word-spacing:-0.066600pt;}
.ws11{word-spacing:-0.065208pt;}
.ws1c{word-spacing:-0.064000pt;}
.ws15{word-spacing:-0.054423pt;}
.ws9{word-spacing:0.000000pt;}
.ws13{word-spacing:1.173747pt;}
.ws12{word-spacing:1.564996pt;}
._1d{margin-left:-237.323692pt;}
._1c{margin-left:-169.328172pt;}
._23{margin-left:-143.887663pt;}
._22{margin-left:-138.969978pt;}
._1a{margin-left:-89.402531pt;}
._1b{margin-left:-86.815454pt;}
._1e{margin-left:-48.615201pt;}
._21{margin-left:-40.350538pt;}
._1f{margin-left:-12.800000pt;}
._20{margin-left:-11.573333pt;}
._1{margin-left:-0.897024pt;}
._0{width:0.899840pt;}
._e{width:1.923328pt;}
._c{width:3.304960pt;}
._d{width:4.201600pt;}
._f{width:5.113088pt;}
._6{width:6.007296pt;}
._7{width:6.899328pt;}
._b{width:7.956608pt;}
._2{width:8.985600pt;}
._3{width:9.907200pt;}
._12{width:10.873600pt;}
._9{width:11.944960pt;}
._8{width:13.075200pt;}
._11{width:14.060800pt;}
._10{width:15.104000pt;}
._4{width:16.045824pt;}
._5{width:16.991232pt;}
._a{width:18.016512pt;}
._15{width:19.814400pt;}
._24{width:21.347200pt;}
._14{width:22.636800pt;}
._26{width:24.083200pt;}
._27{width:24.977600pt;}
._13{width:25.939200pt;}
._19{width:27.078400pt;}
._16{width:28.057600pt;}
._28{width:29.376000pt;}
._25{width:31.904000pt;}
._2a{width:34.846720pt;}
._18{width:38.771200pt;}
._17{width:39.782400pt;}
._29{width:41.318400pt;}
._2e{width:49.690880pt;}
._2d{width:57.930240pt;}
._2b{width:168.203264pt;}
._30{width:196.582400pt;}
._2f{width:201.060608pt;}
._2c{width:258.149120pt;}
.fse{font-size:34.560000pt;}
.fsb{font-size:38.005428pt;}
.fs10{font-size:38.135586pt;}
.fs7{font-size:38.796839pt;}
.fs9{font-size:38.859795pt;}
.fs5{font-size:42.240000pt;}
.fs0{font-size:47.360000pt;}
.fs1{font-size:52.480000pt;}
.fsf{font-size:54.423020pt;}
.fs2{font-size:57.600000pt;}
.fs4{font-size:64.000000pt;}
.fsc{font-size:65.208183pt;}
.fsa{font-size:66.599625pt;}
.fs8{font-size:66.604726pt;}
.fs6{font-size:74.240000pt;}
.fs3{font-size:96.000000pt;}
.fsd{font-size:97.879422pt;}
.fs11{font-size:97.985972pt;}
.yba{bottom:-4.480000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:2.133676pt;}
.ya4{bottom:2.846901pt;}
.yb0{bottom:2.880000pt;}
.y7e{bottom:2.943908pt;}
.y7a{bottom:3.177953pt;}
.yb3{bottom:3.200000pt;}
.yc5{bottom:3.520000pt;}
.y8d{bottom:4.033947pt;}
.yb2{bottom:4.160000pt;}
.y88{bottom:6.200928pt;}
.y8e{bottom:6.767652pt;}
.y7f{bottom:7.130761pt;}
.y7b{bottom:7.348816pt;}
.ya1{bottom:9.037299pt;}
.y128{bottom:10.240000pt;}
.yc3{bottom:10.560000pt;}
.yb7{bottom:10.880000pt;}
.yc6{bottom:11.200000pt;}
.y6{bottom:11.520000pt;}
.ya2{bottom:11.586294pt;}
.yc9{bottom:11.840000pt;}
.ya6{bottom:12.347593pt;}
.y8c{bottom:15.836043pt;}
.y1{bottom:16.000000pt;}
.ya0{bottom:16.783498pt;}
.ya3{bottom:17.279562pt;}
.ybe{bottom:18.240000pt;}
.yb6{bottom:18.560000pt;}
.yc4{bottom:18.880000pt;}
.yc8{bottom:19.520000pt;}
.ya7{bottom:22.908288pt;}
.y87{bottom:25.936355pt;}
.ya5{bottom:26.019356pt;}
.ya8{bottom:26.548758pt;}
.ya9{bottom:26.780788pt;}
.y126{bottom:27.840000pt;}
.y89{bottom:30.037718pt;}
.ydc{bottom:33.600000pt;}
.y153{bottom:33.920000pt;}
.y155{bottom:49.280000pt;}
.y5b{bottom:51.626693pt;}
.y39{bottom:52.266693pt;}
.y5a{bottom:74.666693pt;}
.y20{bottom:74.667947pt;}
.y38{bottom:76.906693pt;}
.y4{bottom:76.907947pt;}
.y1f{bottom:97.706667pt;}
.y59{bottom:97.706680pt;}
.y157{bottom:98.560000pt;}
.y3{bottom:99.946667pt;}
.y37{bottom:99.946680pt;}
.y21{bottom:100.586667pt;}
.y5c{bottom:100.586693pt;}
.y5{bottom:102.826667pt;}
.y3a{bottom:102.826693pt;}
.ye9{bottom:119.466667pt;}
.yf8{bottom:122.666667pt;}
.yae{bottom:134.186667pt;}
.y174{bottom:135.466667pt;}
.y13d{bottom:136.426667pt;}
.y58{bottom:138.666667pt;}
.y188{bottom:139.626667pt;}
.y11d{bottom:140.266667pt;}
.y19c{bottom:140.906667pt;}
.y9f{bottom:141.546667pt;}
.yaa{bottom:142.826667pt;}
.y1e{bottom:146.602667pt;}
.ye8{bottom:146.986667pt;}
.y9e{bottom:149.546667pt;}
.yf7{bottom:150.186667pt;}
.y102{bottom:158.186667pt;}
.yad{bottom:159.146667pt;}
.y173{bottom:160.106667pt;}
.y13c{bottom:161.066667pt;}
.y57{bottom:166.186667pt;}
.y11c{bottom:167.786667pt;}
.y158{bottom:171.626667pt;}
.y1d{bottom:171.889067pt;}
.ye7{bottom:174.826667pt;}
.y187{bottom:175.146667pt;}
.y15b{bottom:176.000000pt;}
.y19b{bottom:176.426667pt;}
.yf6{bottom:177.706667pt;}
.y9d{bottom:178.346667pt;}
.y172{bottom:184.746667pt;}
.y13b{bottom:185.706667pt;}
.y101{bottom:186.026667pt;}
.yac{bottom:186.986667pt;}
.y56{bottom:194.026667pt;}
.y11b{bottom:195.626667pt;}
.y1c{bottom:197.175467pt;}
.ye6{bottom:202.346667pt;}
.yf5{bottom:205.546667pt;}
.yd0{bottom:208.426667pt;}
.y171{bottom:209.386667pt;}
.y13a{bottom:210.346667pt;}
.y186{bottom:210.986667pt;}
.y156{bottom:211.626667pt;}
.y19a{bottom:211.946667pt;}
.y100{bottom:213.546667pt;}
.yab{bottom:214.506667pt;}
.y78{bottom:215.466667pt;}
.y55{bottom:221.546667pt;}
.y1b{bottom:222.461867pt;}
.y9c{bottom:229.546667pt;}
.ye5{bottom:229.866667pt;}
.y11a{bottom:232.106667pt;}
.yf4{bottom:233.066667pt;}
.y139{bottom:234.986667pt;}
.ycf{bottom:235.946667pt;}
.y77{bottom:242.026667pt;}
.y185{bottom:246.506667pt;}
.y199{bottom:247.786667pt;}
.y54{bottom:249.066667pt;}
.y170{bottom:249.386667pt;}
.yff{bottom:250.346667pt;}
.yf3{bottom:251.306667pt;}
.y1a{bottom:255.740267pt;}
.y9b{bottom:257.066667pt;}
.ye4{bottom:257.386667pt;}
.y119{bottom:259.946667pt;}
.yce{bottom:263.786667pt;}
.y154{bottom:266.986667pt;}
.y76{bottom:269.546667pt;}
.y16f{bottom:274.026667pt;}
.y138{bottom:274.986667pt;}
.y53{bottom:276.586667pt;}
.yfe{bottom:277.866667pt;}
.y19{bottom:281.026667pt;}
.y184{bottom:282.026667pt;}
.y198{bottom:283.306667pt;}
.y9a{bottom:284.586667pt;}
.ye3{bottom:285.226667pt;}
.yf2{bottom:290.026667pt;}
.ycd{bottom:291.306667pt;}
.y118{bottom:296.426667pt;}
.y75{bottom:297.386667pt;}
.y16e{bottom:298.986667pt;}
.y137{bottom:299.626667pt;}
.y52{bottom:304.426667pt;}
.yfd{bottom:305.386667pt;}
.y18{bottom:306.629867pt;}
.y99{bottom:312.426667pt;}
.ye2{bottom:312.746667pt;}
.y183{bottom:317.546667pt;}
.ycc{bottom:318.826667pt;}
.yf1{bottom:320.426667pt;}
.y36{bottom:323.615467pt;}
.y16d{bottom:323.626667pt;}
.y117{bottom:324.266667pt;}
.y74{bottom:324.906667pt;}
.y17{bottom:331.916267pt;}
.y51{bottom:331.946667pt;}
.yfc{bottom:333.226667pt;}
.y152{bottom:337.706667pt;}
.y98{bottom:339.946667pt;}
.ye1{bottom:340.266667pt;}
.ycb{bottom:346.346667pt;}
.y16c{bottom:348.266667pt;}
.y135{bottom:348.906667pt;}
.yf0{bottom:350.826667pt;}
.y116{bottom:352.106667pt;}
.y73{bottom:352.426667pt;}
.y182{bottom:353.386667pt;}
.y197{bottom:354.346667pt;}
.y16{bottom:357.202667pt;}
.y50{bottom:359.466667pt;}
.y97{bottom:367.466667pt;}
.ye0{bottom:367.786667pt;}
.y16b{bottom:372.906667pt;}
.y136{bottom:373.546667pt;}
.y35{bottom:374.173867pt;}
.y72{bottom:379.946667pt;}
.yfb{bottom:380.266667pt;}
.yef{bottom:381.226667pt;}
.yca{bottom:385.066667pt;}
.y4f{bottom:386.986667pt;}
.y115{bottom:388.586667pt;}
.y181{bottom:388.906667pt;}
.y196{bottom:390.186667pt;}
.y15{bottom:390.481067pt;}
.y151{bottom:393.066667pt;}
.y96{bottom:394.986667pt;}
.ydf{bottom:395.626667pt;}
.y16a{bottom:397.546667pt;}
.y134{bottom:398.506667pt;}
.y34{bottom:399.460267pt;}
.y71{bottom:407.786667pt;}
.yfa{bottom:408.746667pt;}
.yee{bottom:411.306667pt;}
.y4e{bottom:414.506667pt;}
.yc7{bottom:415.466667pt;}
.y14{bottom:415.767467pt;}
.y114{bottom:416.426667pt;}
.y150{bottom:417.706667pt;}
.y169{bottom:422.186667pt;}
.y95{bottom:422.826667pt;}
.yde{bottom:423.146667pt;}
.y180{bottom:424.426667pt;}
.y195{bottom:425.706667pt;}
.y70{bottom:435.306667pt;}
.y13{bottom:441.053867pt;}
.yed{bottom:441.706667pt;}
.y4d{bottom:442.346667pt;}
.y168{bottom:446.826667pt;}
.y133{bottom:447.786667pt;}
.y94{bottom:450.346667pt;}
.ydd{bottom:450.666667pt;}
.y113{bottom:452.906667pt;}
.y14f{bottom:457.706667pt;}
.y17f{bottom:459.946667pt;}
.y194{bottom:461.226667pt;}
.y6f{bottom:462.826667pt;}
.y12{bottom:466.340267pt;}
.y4c{bottom:469.866667pt;}
.y167{bottom:471.466667pt;}
.yec{bottom:472.106667pt;}
.y132{bottom:472.426667pt;}
.y93{bottom:477.866667pt;}
.y112{bottom:480.746667pt;}
.y33{bottom:482.346667pt;}
.ydb{bottom:489.386667pt;}
.y6e{bottom:490.346667pt;}
.y11{bottom:491.626667pt;}
.y17e{bottom:495.786667pt;}
.y166{bottom:496.106667pt;}
.y193{bottom:496.746667pt;}
.y131{bottom:497.066667pt;}
.y4b{bottom:497.386667pt;}
.yeb{bottom:502.506667pt;}
.y92{bottom:505.386667pt;}
.y14e{bottom:506.986667pt;}
.y32{bottom:507.626667pt;}
.yc2{bottom:509.546667pt;}
.y111{bottom:517.226667pt;}
.y6d{bottom:518.186667pt;}
.yda{bottom:519.786667pt;}
.yea{bottom:520.746667pt;}
.y130{bottom:521.706667pt;}
.y4a{bottom:524.906667pt;}
.y17d{bottom:531.306667pt;}
.y14d{bottom:531.626667pt;}
.y192{bottom:532.586667pt;}
.y31{bottom:532.906667pt;}
.y91{bottom:533.226667pt;}
.y10{bottom:536.746667pt;}
.y110{bottom:545.066667pt;}
.y165{bottom:545.386667pt;}
.y6c{bottom:545.706667pt;}
.y12f{bottom:546.346667pt;}
.yd9{bottom:550.186667pt;}
.y49{bottom:552.746667pt;}
.yc1{bottom:554.986667pt;}
.y14c{bottom:556.266667pt;}
.y30{bottom:558.186667pt;}
.y90{bottom:560.746667pt;}
.y17c{bottom:566.826667pt;}
.y191{bottom:568.106667pt;}
.y164{bottom:570.026667pt;}
.y12e{bottom:570.986667pt;}
.y6b{bottom:573.226667pt;}
.y48{bottom:580.266667pt;}
.y14b{bottom:580.906667pt;}
.y10f{bottom:581.546667pt;}
.y2f{bottom:583.466667pt;}
.yc0{bottom:585.386667pt;}
.y163{bottom:595.306667pt;}
.y12d{bottom:595.626667pt;}
.yf9{bottom:598.506667pt;}
.y6a{bottom:600.746667pt;}
.y17b{bottom:602.346667pt;}
.y190{bottom:603.626667pt;}
.y8f{bottom:604.906667pt;}
.y47{bottom:607.786667pt;}
.y2e{bottom:608.746667pt;}
.y10e{bottom:609.066667pt;}
.yd8{bottom:610.666667pt;}
.ybf{bottom:615.786667pt;}
.y12c{bottom:620.266667pt;}
.y14a{bottom:620.906667pt;}
.y162{bottom:622.826667pt;}
.y69{bottom:628.586667pt;}
.y2d{bottom:634.026667pt;}
.y46{bottom:635.306667pt;}
.y10d{bottom:636.906667pt;}
.y17a{bottom:638.186667pt;}
.y18f{bottom:639.146667pt;}
.yd7{bottom:641.066667pt;}
.y8b{bottom:642.986667pt;}
.y12b{bottom:644.906667pt;}
.y149{bottom:645.546667pt;}
.ybd{bottom:646.186667pt;}
.y68{bottom:656.106667pt;}
.y15a{bottom:658.666667pt;}
.y2c{bottom:659.306667pt;}
.y45{bottom:663.146667pt;}
.y8a{bottom:666.986667pt;}
.y12a{bottom:669.546667pt;}
.y148{bottom:670.186667pt;}
.yd6{bottom:671.466667pt;}
.yf{bottom:673.066667pt;}
.y10c{bottom:673.386667pt;}
.y179{bottom:673.706667pt;}
.y18e{bottom:674.986667pt;}
.y85{bottom:682.986800pt;}
.y161{bottom:683.306667pt;}
.y67{bottom:683.626667pt;}
.y2b{bottom:684.586667pt;}
.y44{bottom:690.666667pt;}
.ybc{bottom:691.626667pt;}
.y129{bottom:694.506667pt;}
.y147{bottom:694.826667pt;}
.ye{bottom:698.986667pt;}
.y10b{bottom:701.226667pt;}
.yd5{bottom:701.866667pt;}
.y160{bottom:707.946667pt;}
.y178{bottom:709.226667pt;}
.y2a{bottom:709.866667pt;}
.y18d{bottom:710.506667pt;}
.y66{bottom:711.146667pt;}
.yd{bottom:717.226667pt;}
.y43{bottom:718.186667pt;}
.y127{bottom:719.146667pt;}
.y146{bottom:720.106667pt;}
.y84{bottom:724.906667pt;}
.yc{bottom:728.426667pt;}
.yd4{bottom:731.946667pt;}
.y15f{bottom:732.586667pt;}
.y29{bottom:735.146667pt;}
.ybb{bottom:737.386667pt;}
.y10a{bottom:737.706667pt;}
.y65{bottom:738.986667pt;}
.y177{bottom:744.746667pt;}
.y42{bottom:745.706667pt;}
.y18c{bottom:746.026667pt;}
.yb{bottom:746.666667pt;}
.y145{bottom:747.626667pt;}
.y125{bottom:750.826667pt;}
.y83{bottom:752.426667pt;}
.y15e{bottom:757.226667pt;}
.y28{bottom:760.746667pt;}
.yd3{bottom:762.346667pt;}
.ya{bottom:765.226667pt;}
.y109{bottom:765.546667pt;}
.y64{bottom:766.506667pt;}
.yb9{bottom:767.786667pt;}
.y176{bottom:772.266667pt;}
.y41{bottom:773.546667pt;}
.y124{bottom:775.466667pt;}
.y82{bottom:780.266667pt;}
.yd2{bottom:780.586667pt;}
.y18b{bottom:781.546667pt;}
.y15d{bottom:781.866667pt;}
.y9{bottom:783.466667pt;}
.y27{bottom:786.026667pt;}
.y63{bottom:794.026667pt;}
.yb8{bottom:798.186667pt;}
.y123{bottom:800.106667pt;}
.y40{bottom:801.066667pt;}
.y108{bottom:802.026667pt;}
.yd1{bottom:803.626667pt;}
.y15c{bottom:806.826667pt;}
.y81{bottom:807.786667pt;}
.y144{bottom:810.986667pt;}
.y26{bottom:811.306667pt;}
.y8{bottom:817.066667pt;}
.y62{bottom:821.546667pt;}
.y122{bottom:824.746667pt;}
.yb5{bottom:828.266667pt;}
.y3f{bottom:828.586667pt;}
.y107{bottom:829.866667pt;}
.y159{bottom:831.466667pt;}
.y80{bottom:835.306667pt;}
.y175{bottom:835.626667pt;}
.y25{bottom:836.586667pt;}
.y143{bottom:846.826667pt;}
.y61{bottom:849.066667pt;}
.y121{bottom:849.386667pt;}
.y18a{bottom:852.906667pt;}
.y3e{bottom:856.106667pt;}
.y106{bottom:857.706667pt;}
.y7{bottom:858.346667pt;}
.y7c{bottom:867.306667pt;}
.y142{bottom:871.466667pt;}
.yb4{bottom:874.026667pt;}
.y7d{bottom:875.306667pt;}
.y60{bottom:876.906667pt;}
.y24{bottom:881.386667pt;}
.y3d{bottom:883.946667pt;}
.y189{bottom:888.426667pt;}
.y105{bottom:894.186667pt;}
.y11e{bottom:895.146667pt;}
.y141{bottom:896.106667pt;}
.y120{bottom:898.666667pt;}
.y79{bottom:903.466667pt;}
.y5f{bottom:904.426667pt;}
.y3c{bottom:911.466667pt;}
.y140{bottom:920.746667pt;}
.y11f{bottom:923.946667pt;}
.y104{bottom:930.986667pt;}
.y5e{bottom:931.946667pt;}
.yb1{bottom:934.826667pt;}
.y23{bottom:935.140267pt;}
.y13f{bottom:945.386667pt;}
.y3b{bottom:957.226667pt;}
.y103{bottom:958.506667pt;}
.y5d{bottom:959.466667pt;}
.y22{bottom:960.426667pt;}
.yaf{bottom:967.146667pt;}
.y13e{bottom:970.026667pt;}
.y2{bottom:1019.946667pt;}
.h30{height:15.040000pt;}
.h24{height:15.040040pt;}
.h29{height:15.359987pt;}
.h2d{height:15.360000pt;}
.h26{height:15.360027pt;}
.h25{height:17.280027pt;}
.h2f{height:22.399987pt;}
.h19{height:23.034375pt;}
.he{height:24.000000pt;}
.h4{height:25.280000pt;}
.hf{height:25.858245pt;}
.h12{height:25.900205pt;}
.h15{height:26.388535pt;}
.h1f{height:26.478908pt;}
.h11{height:26.559973pt;}
.h20{height:27.062208pt;}
.h8{height:29.328750pt;}
.h28{height:30.399987pt;}
.h27{height:30.719973pt;}
.h31{height:30.719987pt;}
.h32{height:30.720013pt;}
.h2a{height:31.680013pt;}
.h2b{height:32.319987pt;}
.h2{height:32.883750pt;}
.h22{height:34.978125pt;}
.h1b{height:36.778056pt;}
.h21{height:37.787858pt;}
.h38{height:39.999987pt;}
.h2e{height:40.000000pt;}
.h1a{height:41.280013pt;}
.h1d{height:42.066231pt;}
.h13{height:44.388910pt;}
.h10{height:44.392310pt;}
.h9{height:44.437500pt;}
.h16{height:45.276385pt;}
.h17{height:45.439987pt;}
.h14{height:45.440027pt;}
.h2c{height:45.760013pt;}
.h3{height:46.048125pt;}
.h35{height:46.080000pt;}
.h33{height:46.080013pt;}
.h23{height:46.611875pt;}
.h5{height:50.540625pt;}
.hb{height:51.159375pt;}
.hd{height:56.156250pt;}
.hc{height:56.843750pt;}
.h34{height:61.440000pt;}
.ha{height:65.938750pt;}
.h7{height:66.503125pt;}
.h18{height:72.836054pt;}
.h1c{height:73.051027pt;}
.h1e{height:75.738180pt;}
.h6{height:85.265625pt;}
.h36{height:110.720000pt;}
.h37{height:188.160000pt;}
.h1{height:1090.666667pt;}
.h0{height:1122.666667pt;}
.w6{width:29.439987pt;}
.w5{width:29.440000pt;}
.wc{width:32.640000pt;}
.w3{width:54.719973pt;}
.w2{width:54.720000pt;}
.w4{width:54.720013pt;}
.w15{width:56.640000pt;}
.w17{width:56.640013pt;}
.w16{width:56.960000pt;}
.wf{width:58.880000pt;}
.we{width:60.480027pt;}
.w13{width:62.080000pt;}
.w18{width:62.080040pt;}
.w7{width:65.279987pt;}
.w10{width:71.679987pt;}
.w11{width:71.680013pt;}
.w8{width:92.160000pt;}
.w9{width:110.720013pt;}
.w1b{width:112.640000pt;}
.w14{width:118.399987pt;}
.w2c{width:124.480000pt;}
.w31{width:124.799987pt;}
.w2e{width:124.800013pt;}
.w24{width:131.519973pt;}
.w12{width:131.520013pt;}
.w23{width:135.680000pt;}
.w28{width:136.000000pt;}
.w26{width:141.120000pt;}
.w20{width:147.520000pt;}
.w1c{width:147.840000pt;}
.w1d{width:148.160000pt;}
.w25{width:150.720000pt;}
.w30{width:154.240000pt;}
.w2b{width:154.560000pt;}
.w2d{width:155.840000pt;}
.w1a{width:164.480000pt;}
.wb{width:239.680000pt;}
.wd{width:244.160000pt;}
.w1f{width:277.760000pt;}
.w2f{width:281.280000pt;}
.w27{width:292.480000pt;}
.w29{width:292.800000pt;}
.w21{width:296.320000pt;}
.w1e{width:296.640000pt;}
.w22{width:561.280000pt;}
.w2a{width:561.600000pt;}
.w19{width:574.720000pt;}
.wa{width:579.840000pt;}
.w1{width:761.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x22{left:2.317235pt;}
.x41{left:4.480000pt;}
.x32{left:6.400067pt;}
.x23{left:9.434560pt;}
.x19{left:13.295951pt;}
.x1{left:16.000000pt;}
.x2d{left:19.653843pt;}
.x18{left:24.495735pt;}
.x2a{left:29.480764pt;}
.x2c{left:35.025458pt;}
.x25{left:42.505525pt;}
.x1f{left:45.549602pt;}
.x6{left:47.266667pt;}
.x2b{left:52.621104pt;}
.x34{left:53.986667pt;}
.x1e{left:56.870994pt;}
.x26{left:69.815742pt;}
.x10{left:78.400133pt;}
.x24{left:80.639815pt;}
.x30{left:88.000000pt;}
.x4e{left:90.560000pt;}
.x48{left:102.400053pt;}
.x29{left:105.507018pt;}
.x2{left:116.480133pt;}
.x14{left:125.666667pt;}
.x49{left:128.320000pt;}
.x47{left:140.480133pt;}
.x35{left:142.225867pt;}
.x3f{left:148.317733pt;}
.x7{left:153.280533pt;}
.xf{left:163.746800pt;}
.x8{left:170.248533pt;}
.x31{left:178.153600pt;}
.x11{left:195.429067pt;}
.x57{left:198.736000pt;}
.x40{left:203.200000pt;}
.x4a{left:210.399333pt;}
.x36{left:211.861333pt;}
.x39{left:217.600000pt;}
.x38{left:221.778667pt;}
.x51{left:227.200000pt;}
.x3{left:233.509067pt;}
.x5a{left:245.440000pt;}
.x4f{left:255.680000pt;}
.x54{left:264.960000pt;}
.x12{left:272.915787pt;}
.x17{left:278.080000pt;}
.x58{left:283.520000pt;}
.x1a{left:291.395467pt;}
.x4b{left:293.440000pt;}
.x4{left:310.995787pt;}
.x2f{left:315.824800pt;}
.x42{left:322.560000pt;}
.x33{left:328.640000pt;}
.x3a{left:350.080000pt;}
.xa{left:352.737333pt;}
.x21{left:355.520000pt;}
.x52{left:359.360000pt;}
.x16{left:361.833333pt;}
.x1d{left:368.640000pt;}
.x5b{left:370.880000pt;}
.x43{left:380.160000pt;}
.xb{left:383.377867pt;}
.x15{left:387.913333pt;}
.x55{left:397.120000pt;}
.x4c{left:406.720000pt;}
.xd{left:408.752933pt;}
.x3b{left:409.920000pt;}
.xc{left:414.081067pt;}
.x20{left:418.133067pt;}
.x37{left:423.546533pt;}
.x27{left:431.466533pt;}
.x9{left:434.885733pt;}
.x44{left:438.080000pt;}
.x28{left:476.160000pt;}
.x3c{left:482.560000pt;}
.x45{left:496.000000pt;}
.x53{left:510.720000pt;}
.x50{left:517.120000pt;}
.x1b{left:523.200000pt;}
.x5c{left:527.360000pt;}
.x1c{left:536.675733pt;}
.xe{left:537.606400pt;}
.x3d{left:542.400000pt;}
.x56{left:548.480000pt;}
.x4d{left:555.200000pt;}
.x59{left:565.120000pt;}
.x2e{left:570.926800pt;}
.x3e{left:599.360000pt;}
.x13{left:606.720000pt;}
.x46{left:637.120000pt;}
.x5{left:644.480000pt;}
}




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