
    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_96b484acead56e4839396c91.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_e90270cea25f4beaf1f0fb9a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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_4c62b01474c1394460242022.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_df425ae86a54e71ba2e67d2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.057617;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_08cff65c1f4c787400c5241e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b84d4b8b93cbf433377d35a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.225586;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_829395b7d6130c7d1d8f942d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.225586;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_df1eaabe5f43a32ee3fba2b1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_c38ba8b9e0ad9c2f0f718169.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014160;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_b609d6dc3f7410805ba537c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_0f8f7b698457a8b4ed894f22.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.962402;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_a990f5baaeed6dffb48fb4ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.055176;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_788d9f868c8bd5f0967bddc5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.903809;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_509ae10899efce0754f14657.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.000000,-0.249906,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249906,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249906,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.238175,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.238175,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.238175,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.213659,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.213659,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.213659,0.250000,0.000000,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);}
.m6{transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.262412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262412,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.292522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292522,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:-29.814480px;}
.v5{vertical-align:-15.120000px;}
.v2{vertical-align:-12.240000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls9{letter-spacing:-0.684000px;}
.ls2b{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.413400px;}
.ls16{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.351858px;}
.lsa{letter-spacing:-0.324000px;}
.ls21{letter-spacing:-0.296076px;}
.ls1d{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.237000px;}
.ls2d{letter-spacing:-0.226200px;}
.ls28{letter-spacing:-0.220974px;}
.lsb{letter-spacing:-0.220200px;}
.ls18{letter-spacing:-0.138000px;}
.ls2f{letter-spacing:-0.112200px;}
.ls6{letter-spacing:-0.102000px;}
.ls3a{letter-spacing:-0.086400px;}
.ls1f{letter-spacing:-0.035280px;}
.ls5{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.006325px;}
.ls26{letter-spacing:0.007105px;}
.ls22{letter-spacing:0.008882px;}
.ls37{letter-spacing:0.019440px;}
.ls0{letter-spacing:0.022320px;}
.ls12{letter-spacing:0.053280px;}
.ls32{letter-spacing:0.066240px;}
.ls1e{letter-spacing:0.087000px;}
.ls2e{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.110400px;}
.ls35{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.144000px;}
.ls34{letter-spacing:0.146160px;}
.ls2c{letter-spacing:0.146880px;}
.ls1c{letter-spacing:0.175200px;}
.ls7{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.190080px;}
.ls8{letter-spacing:0.190200px;}
.ls20{letter-spacing:0.194463px;}
.ls3d{letter-spacing:0.206640px;}
.ls33{letter-spacing:0.221040px;}
.ls25{letter-spacing:0.227678px;}
.ls3b{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls24{letter-spacing:0.298675px;}
.ls39{letter-spacing:0.298800px;}
.ls36{letter-spacing:0.306000px;}
.ls3c{letter-spacing:0.306600px;}
.ls31{letter-spacing:0.316800px;}
.ls13{letter-spacing:0.346800px;}
.ls3{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.460200px;}
.ls17{letter-spacing:0.490800px;}
.ls30{letter-spacing:0.493800px;}
.ls38{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.lse{letter-spacing:0.773280px;}
.ls19{letter-spacing:1.068000px;}
.lsf{letter-spacing:9.540000px;}
.lsd{letter-spacing:10.260000px;}
.ls10{letter-spacing:12.420000px;}
.ls29{letter-spacing:79.146720px;}
.ls2{letter-spacing:154.206720px;}
.ls23{letter-spacing:1105.577475px;}
.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;}
}
.ws28{word-spacing:-60.253800px;}
.ws25{word-spacing:-59.850000px;}
.ws26{word-spacing:-59.760000px;}
.ws27{word-spacing:-59.647800px;}
.ws24{word-spacing:-59.533800px;}
.ws1a{word-spacing:-29.171053px;}
.ws20{word-spacing:-21.325832px;}
.ws1f{word-spacing:-21.098154px;}
.ws19{word-spacing:-18.214741px;}
.ws1b{word-spacing:-18.020278px;}
.ws10{word-spacing:-16.008000px;}
.wse{word-spacing:-15.430800px;}
.ws21{word-spacing:-15.429357px;}
.wsc{word-spacing:-15.400200px;}
.ws8{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.286800px;}
.ws2a{word-spacing:-15.238800px;}
.ws2b{word-spacing:-15.199800px;}
.ws13{word-spacing:-15.115200px;}
.ws2d{word-spacing:-15.050400px;}
.ws12{word-spacing:-15.027000px;}
.ws2c{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.904720px;}
.ws15{word-spacing:-14.803616px;}
.wsd{word-spacing:-14.703000px;}
.ws11{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.176000px;}
.ws6{word-spacing:-12.816000px;}
.ws9{word-spacing:-11.160000px;}
.ws0{word-spacing:-10.902240px;}
.ws1{word-spacing:-9.000000px;}
.ws5{word-spacing:-8.280000px;}
.ws3{word-spacing:-7.560000px;}
.ws29{word-spacing:-0.070560px;}
.wsa{word-spacing:0.000000px;}
.ws22{word-spacing:89.629252px;}
.ws23{word-spacing:108.115023px;}
.ws1c{word-spacing:215.487225px;}
.ws1e{word-spacing:235.302732px;}
.ws1d{word-spacing:242.566574px;}
.ws16{word-spacing:293.587177px;}
.ws18{word-spacing:311.312304px;}
.ws17{word-spacing:317.498666px;}
._12{margin-left:-3.814080px;}
._a{margin-left:-2.524320px;}
._0{margin-left:-1.059840px;}
._1{width:1.423680px;}
._6{width:3.076320px;}
._5{width:4.183200px;}
._e{width:5.886000px;}
._7{width:7.452000px;}
._b{width:9.450000px;}
._c{width:10.458000px;}
._d{width:12.420000px;}
._11{width:13.934640px;}
._9{width:15.223680px;}
._8{width:16.254000px;}
._13{width:17.402160px;}
._18{width:18.451920px;}
._10{width:19.566000px;}
._f{width:20.568000px;}
._15{width:22.187280px;}
._14{width:23.225040px;}
._23{width:24.800400px;}
._22{width:25.935840px;}
._24{width:28.102560px;}
._1b{width:29.233200px;}
._1c{width:30.904320px;}
._33{width:32.475600px;}
._16{width:34.551840px;}
._17{width:35.606400px;}
._2b{width:36.861840px;}
._19{width:39.691200px;}
._1a{width:40.789920px;}
._31{width:56.735520px;}
._30{width:57.967200px;}
._28{width:59.340720px;}
._27{width:61.313760px;}
._3{width:68.148000px;}
._4{width:69.228000px;}
._25{width:73.803600px;}
._26{width:75.970800px;}
._2a{width:80.877360px;}
._29{width:82.050480px;}
._2f{width:83.456880px;}
._2e{width:84.652320px;}
._2d{width:91.558080px;}
._2c{width:93.040560px;}
._20{width:114.643252px;}
._1d{width:125.820000px;}
._1f{width:270.346964px;}
._1e{width:340.545399px;}
._32{width:520.042080px;}
._21{width:686.776560px;}
._2{width:710.196720px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs7{font-size:33.120000px;}
.fs4{font-size:36.000000px;}
.fs19{font-size:36.173661px;}
.fs1c{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs14{font-size:44.247476px;}
.fs11{font-size:46.955256px;}
.fs1{font-size:48.240000px;}
.fsa{font-size:53.250416px;}
.fs6{font-size:54.000000px;}
.fs16{font-size:55.501285px;}
.fs3{font-size:59.760000px;}
.fs10{font-size:62.346939px;}
.fsc{font-size:64.821143px;}
.fs0{font-size:66.240000px;}
.fs18{font-size:67.559676px;}
.fs17{font-size:67.585113px;}
.fsb{font-size:68.039349px;}
.fs9{font-size:72.000000px;}
.fs15{font-size:72.280566px;}
.fs12{font-size:75.892639px;}
.fs13{font-size:88.801214px;}
.fsf{font-size:102.618349px;}
.fsd{font-size:104.931846px;}
.fs1b{font-size:106.948808px;}
.fs2{font-size:108.000000px;}
.fs1a{font-size:111.009547px;}
.fse{font-size:111.761108px;}
.y41{bottom:-20.160000px;}
.y0{bottom:0.000000px;}
.yec{bottom:7.350297px;}
.y153{bottom:7.640335px;}
.y124{bottom:11.970412px;}
.y40{bottom:15.150000px;}
.yb1{bottom:24.345000px;}
.yae{bottom:24.480000px;}
.yc2{bottom:24.525000px;}
.yac{bottom:24.660000px;}
.y173{bottom:24.690000px;}
.y3f{bottom:37.110000px;}
.y109{bottom:42.030088px;}
.yda{bottom:42.374494px;}
.y143{bottom:44.051941px;}
.y4{bottom:57.420000px;}
.y3e{bottom:58.890000px;}
.y144{bottom:62.546569px;}
.yab{bottom:65.160000px;}
.y11c{bottom:75.241616px;}
.y10a{bottom:75.692063px;}
.ydb{bottom:80.494249px;}
.y3d{bottom:80.670000px;}
.y3{bottom:88.380000px;}
.y145{bottom:94.122486px;}
.y10b{bottom:101.227298px;}
.y3c{bottom:102.630000px;}
.y113{bottom:103.709005px;}
.y2{bottom:104.220000px;}
.yea{bottom:111.838840px;}
.y122{bottom:116.134538px;}
.y151{bottom:116.248704px;}
.y112{bottom:118.616245px;}
.ydc{bottom:121.129027px;}
.y3b{bottom:124.410000px;}
.y146{bottom:125.910246px;}
.y2e{bottom:126.000000px;}
.y10c{bottom:126.758284px;}
.y1cf{bottom:128.340000px;}
.y184{bottom:129.600000px;}
.y165{bottom:132.480000px;}
.y111{bottom:133.531984px;}
.ya8{bottom:135.900000px;}
.y1bd{bottom:139.500000px;}
.y6b{bottom:143.280000px;}
.y3a{bottom:146.190000px;}
.y110{bottom:148.439224px;}
.y2d{bottom:149.220000px;}
.y1ce{bottom:151.560000px;}
.y10d{bottom:152.505994px;}
.y183{bottom:152.820000px;}
.y2f{bottom:153.000000px;}
.yee{bottom:155.380347px;}
.y164{bottom:155.700000px;}
.y147{bottom:157.486163px;}
.ye5{bottom:160.796697px;}
.ydd{bottom:161.763806px;}
.y1bc{bottom:162.930000px;}
.y10f{bottom:163.359212px;}
.y11a{bottom:166.066143px;}
.y6a{bottom:166.530000px;}
.yed{bottom:167.566459px;}
.y39{bottom:168.150000px;}
.ya7{bottom:171.210000px;}
.y2c{bottom:172.470000px;}
.y125{bottom:173.294539px;}
.y1cd{bottom:174.810000px;}
.y182{bottom:176.250000px;}
.y10e{bottom:178.036979px;}
.y163{bottom:179.130000px;}
.yeb{bottom:180.146977px;}
.y134{bottom:181.110000px;}
.yd5{bottom:182.081195px;}
.ycb{bottom:185.070000px;}
.y19e{bottom:186.870000px;}
.y152{bottom:187.250068px;}
.y13f{bottom:189.262574px;}
.y69{bottom:189.750000px;}
.y38{bottom:189.930000px;}
.y2b{bottom:195.870000px;}
.y1bb{bottom:198.210000px;}
.y181{bottom:199.470000px;}
.y11d{bottom:200.861035px;}
.y123{bottom:201.536705px;}
.y162{bottom:202.350000px;}
.y104{bottom:203.797438px;}
.ya6{bottom:206.490000px;}
.yca{bottom:208.470000px;}
.y19d{bottom:210.090000px;}
.yd6{bottom:212.455976px;}
.y68{bottom:212.970000px;}
.y133{bottom:216.390000px;}
.y37{bottom:217.830000px;}
.y2a{bottom:219.090000px;}
.y140{bottom:220.838491px;}
.y1ba{bottom:221.430000px;}
.y105{bottom:229.328423px;}
.yc9{bottom:231.690000px;}
.y19c{bottom:233.490000px;}
.ye4{bottom:233.748578px;}
.y15f{bottom:234.390000px;}
.y67{bottom:236.370000px;}
.y132{bottom:239.790000px;}
.ya5{bottom:241.770000px;}
.y29{bottom:242.310000px;}
.y150{bottom:242.960926px;}
.yd7{bottom:243.033363px;}
.y180{bottom:243.750000px;}
.y119{bottom:244.244162px;}
.y1b9{bottom:244.650000px;}
.y89{bottom:246.810000px;}
.y141{bottom:252.614902px;}
.y106{bottom:254.863659px;}
.yc8{bottom:254.910000px;}
.y19b{bottom:256.710000px;}
.y15e{bottom:257.610000px;}
.y36{bottom:259.275000px;}
.y66{bottom:259.590000px;}
.y131{bottom:263.010000px;}
.y28{bottom:265.710000px;}
.y17f{bottom:266.970000px;}
.y88{bottom:270.210000px;}
.yd8{bottom:273.413546px;}
.ya4{bottom:277.050000px;}
.y35{bottom:277.275000px;}
.yc7{bottom:278.130000px;}
.y1b8{bottom:279.930000px;}
.yf8{bottom:280.470000px;}
.y107{bottom:280.619867px;}
.y15d{bottom:280.830000px;}
.ye9{bottom:281.344919px;}
.y161{bottom:281.910000px;}
.ye2{bottom:282.698331px;}
.y65{bottom:282.810000px;}
.y142{bottom:284.190819px;}
.y130{bottom:286.230000px;}
.ye6{bottom:287.728377px;}
.y27{bottom:288.930000px;}
.y17e{bottom:290.370000px;}
.y19a{bottom:291.990000px;}
.y87{bottom:293.430000px;}
.y118{bottom:294.180016px;}
.y34{bottom:295.275000px;}
.yc6{bottom:301.530000px;}
.y1b7{bottom:303.150000px;}
.y121{bottom:303.443923px;}
.yd9{bottom:303.982829px;}
.y15c{bottom:304.230000px;}
.y160{bottom:305.310000px;}
.y108{bottom:306.150853px;}
.y64{bottom:306.210000px;}
.y12f{bottom:309.450000px;}
.y26{bottom:312.150000px;}
.ya3{bottom:312.330000px;}
.y33{bottom:313.275000px;}
.y17d{bottom:313.590000px;}
.y199{bottom:315.210000px;}
.yf7{bottom:315.750000px;}
.y13b{bottom:315.974796px;}
.y86{bottom:316.650000px;}
.yd2{bottom:324.300218px;}
.yc5{bottom:324.750000px;}
.y1b6{bottom:326.550000px;}
.y15b{bottom:327.450000px;}
.y63{bottom:329.430000px;}
.y11e{bottom:330.330498px;}
.yff{bottom:331.911312px;}
.y12e{bottom:332.850000px;}
.y25{bottom:335.370000px;}
.y17c{bottom:336.810000px;}
.y198{bottom:338.430000px;}
.yf6{bottom:338.970000px;}
.y32{bottom:340.275000px;}
.y13c{bottom:347.550713px;}
.ya2{bottom:347.610000px;}
.yc4{bottom:347.970000px;}
.y1b5{bottom:349.770000px;}
.y15a{bottom:350.670000px;}
.y85{bottom:352.110000px;}
.y62{bottom:352.650000px;}
.ye1{bottom:355.650212px;}
.y12d{bottom:356.070000px;}
.y100{bottom:357.442297px;}
.y24{bottom:358.770000px;}
.y17b{bottom:360.030000px;}
.y197{bottom:361.830000px;}
.yf5{bottom:362.370000px;}
.yd3{bottom:364.934997px;}
.y31{bottom:367.815000px;}
.y14f{bottom:369.665582px;}
.y117{bottom:372.349537px;}
.y159{bottom:374.070000px;}
.y61{bottom:376.050000px;}
.y12c{bottom:379.290000px;}
.y13d{bottom:379.327124px;}
.y23{bottom:381.990000px;}
.ya1{bottom:382.890000px;}
.y101{bottom:382.973283px;}
.yc3{bottom:383.250000px;}
.y17a{bottom:383.430000px;}
.y1b4{bottom:385.050000px;}
.yf4{bottom:385.590000px;}
.y30{bottom:385.815000px;}
.y84{bottom:387.210000px;}
.y196{bottom:397.110000px;}
.y158{bottom:397.290000px;}
.y60{bottom:399.270000px;}
.yc1{bottom:399.810000px;}
.y12b{bottom:402.690000px;}
.y22{bottom:405.255000px;}
.yd4{bottom:405.569775px;}
.ye8{bottom:405.956078px;}
.ya0{bottom:406.155000px;}
.y179{bottom:406.695000px;}
.y1b3{bottom:408.315000px;}
.y102{bottom:408.733741px;}
.yf3{bottom:408.855000px;}
.y83{bottom:410.475000px;}
.y13e{bottom:410.903042px;}
.ye3{bottom:411.372428px;}
.y195{bottom:420.375000px;}
.y114{bottom:422.285391px;}
.y5f{bottom:422.535000px;}
.y12a{bottom:425.955000px;}
.y21{bottom:428.655000px;}
.y9f{bottom:429.375000px;}
.y1b2{bottom:431.715000px;}
.y120{bottom:432.008243px;}
.yf2{bottom:432.075000px;}
.y157{bottom:432.795000px;}
.y82{bottom:433.875000px;}
.y103{bottom:434.264727px;}
.ycd{bottom:438.081380px;}
.yc0{bottom:440.355000px;}
.y136{bottom:442.679453px;}
.y194{bottom:443.595000px;}
.y5e{bottom:445.755000px;}
.y178{bottom:450.975000px;}
.y20{bottom:451.875000px;}
.y9e{bottom:452.775000px;}
.y1b1{bottom:454.935000px;}
.yf1{bottom:455.475000px;}
.y81{bottom:457.095000px;}
.y126{bottom:458.214899px;}
.yfa{bottom:460.025185px;}
.y129{bottom:461.235000px;}
.yce{bottom:462.459005px;}
.y193{bottom:466.995000px;}
.y177{bottom:467.535000px;}
.y156{bottom:467.895000px;}
.y5d{bottom:469.155000px;}
.y137{bottom:474.255370px;}
.y1f{bottom:475.095000px;}
.y9d{bottom:475.995000px;}
.yde{bottom:477.554547px;}
.y1cc{bottom:478.875000px;}
.y80{bottom:480.315000px;}
.ybf{bottom:481.575000px;}
.y128{bottom:484.635000px;}
.yfb{bottom:485.556171px;}
.ycf{bottom:486.839332px;}
.y1b0{bottom:490.215000px;}
.yf0{bottom:490.755000px;}
.y155{bottom:491.295000px;}
.y5c{bottom:492.375000px;}
.y148{bottom:496.381587px;}
.y1e{bottom:498.315000px;}
.y9c{bottom:499.215000px;}
.y116{bottom:500.463411px;}
.y1cb{bottom:502.275000px;}
.y192{bottom:502.455000px;}
.y7f{bottom:503.715000px;}
.y138{bottom:506.031781px;}
.y176{bottom:508.035000px;}
.yfc{bottom:511.078657px;}
.yd0{bottom:511.225062px;}
.y1af{bottom:513.435000px;}
.yef{bottom:514.155000px;}
.yf9{bottom:515.415000px;}
.y5b{bottom:515.595000px;}
.y14e{bottom:516.094311px;}
.ye7{bottom:518.767430px;}
.y1d{bottom:521.715000px;}
.y154{bottom:522.075000px;}
.y135{bottom:522.090000px;}
.y9b{bottom:522.615000px;}
.y1ca{bottom:525.495000px;}
.y7e{bottom:526.935000px;}
.y14d{bottom:527.151745px;}
.ye0{bottom:531.542451px;}
.yd1{bottom:535.602687px;}
.y1ae{bottom:536.655000px;}
.yfd{bottom:536.834866px;}
.y191{bottom:537.375000px;}
.y139{bottom:537.615264px;}
.y14c{bottom:538.220529px;}
.y5a{bottom:538.995000px;}
.ybe{bottom:542.415000px;}
.y1c{bottom:544.935000px;}
.ycc{bottom:544.965000px;}
.y9a{bottom:545.835000px;}
.y175{bottom:548.535000px;}
.y1c9{bottom:548.715000px;}
.y14b{bottom:549.277963px;}
.y7d{bottom:550.155000px;}
.y11f{bottom:557.627661px;}
.y1ad{bottom:560.055000px;}
.y14a{bottom:560.335398px;}
.y127{bottom:560.789288px;}
.y190{bottom:560.955000px;}
.y11b{bottom:561.690182px;}
.y59{bottom:562.215000px;}
.yfe{bottom:562.370102px;}
.ydf{bottom:569.073296px;}
.y13a{bottom:569.391675px;}
.y7c{bottom:573.375000px;}
.ybd{bottom:577.515000px;}
.y1b{bottom:580.395000px;}
.y99{bottom:581.115000px;}
.y1c8{bottom:583.995000px;}
.y58{bottom:585.435000px;}
.y174{bottom:589.035000px;}
.y149{bottom:591.517892px;}
.y1ac{bottom:595.335000px;}
.y18f{bottom:596.235000px;}
.y7b{bottom:596.775000px;}
.y115{bottom:600.109896px;}
.ybc{bottom:600.915000px;}
.y98{bottom:604.335000px;}
.y1c7{bottom:607.215000px;}
.y57{bottom:608.655000px;}
.y1a{bottom:614.775000px;}
.y1ab{bottom:618.555000px;}
.y7a{bottom:619.995000px;}
.ybb{bottom:624.135000px;}
.y97{bottom:627.555000px;}
.y172{bottom:630.255000px;}
.y1c6{bottom:630.615000px;}
.y18e{bottom:631.515000px;}
.y56{bottom:632.055000px;}
.y19{bottom:635.655000px;}
.y1aa{bottom:641.775000px;}
.y79{bottom:643.215000px;}
.yba{bottom:647.355000px;}
.y96{bottom:650.985000px;}
.y1c5{bottom:653.865000px;}
.y1d0{bottom:654.045000px;}
.y55{bottom:655.305000px;}
.y18d{bottom:666.645000px;}
.y18{bottom:668.625000px;}
.yb9{bottom:670.605000px;}
.y1a9{bottom:677.085000px;}
.y54{bottom:678.525000px;}
.y78{bottom:678.705000px;}
.y95{bottom:686.445000px;}
.y1c4{bottom:689.145000px;}
.y17{bottom:689.685000px;}
.y18c{bottom:690.045000px;}
.y171{bottom:691.125000px;}
.yb8{bottom:694.005000px;}
.y1a8{bottom:700.485000px;}
.y53{bottom:701.925000px;}
.y16{bottom:710.565000px;}
.y1c3{bottom:712.365000px;}
.y18b{bottom:713.265000px;}
.y77{bottom:713.805000px;}
.y170{bottom:714.165000px;}
.yb7{bottom:717.225000px;}
.y94{bottom:721.725000px;}
.y1a7{bottom:723.705000px;}
.y52{bottom:725.145000px;}
.y16f{bottom:730.725000px;}
.y15{bottom:731.625000px;}
.y1c2{bottom:735.585000px;}
.y18a{bottom:736.665000px;}
.y76{bottom:737.205000px;}
.yb6{bottom:740.445000px;}
.y51{bottom:748.365000px;}
.y14{bottom:752.505000px;}
.y93{bottom:757.005000px;}
.y1a6{bottom:758.985000px;}
.y75{bottom:760.425000px;}
.yb5{bottom:763.845000px;}
.y16e{bottom:771.225000px;}
.y50{bottom:771.585000px;}
.y13{bottom:773.385000px;}
.y1a5{bottom:782.205000px;}
.y74{bottom:783.645000px;}
.y92{bottom:792.285000px;}
.y1c1{bottom:794.265000px;}
.y12{bottom:794.445000px;}
.y4f{bottom:794.985000px;}
.yb4{bottom:799.305000px;}
.y1a4{bottom:805.425000px;}
.y73{bottom:806.865000px;}
.y16d{bottom:811.725000px;}
.y11{bottom:815.325000px;}
.y1c0{bottom:817.485000px;}
.y4e{bottom:818.205000px;}
.y91{bottom:827.565000px;}
.y72{bottom:830.265000px;}
.yb3{bottom:834.585000px;}
.y10{bottom:836.205000px;}
.y1a3{bottom:840.705000px;}
.y4d{bottom:841.425000px;}
.y16c{bottom:852.945000px;}
.y71{bottom:853.485000px;}
.yf{bottom:857.265000px;}
.y90{bottom:862.845000px;}
.y1a2{bottom:864.105000px;}
.y4c{bottom:864.825000px;}
.yb2{bottom:869.505000px;}
.y1bf{bottom:875.985000px;}
.y70{bottom:876.705000px;}
.yb0{bottom:886.245000px;}
.y1a1{bottom:887.325000px;}
.y4b{bottom:888.045000px;}
.ye{bottom:889.485000px;}
.y8f{bottom:897.990000px;}
.y1be{bottom:899.430000px;}
.y6f{bottom:900.150000px;}
.y16b{bottom:901.770000px;}
.yd{bottom:908.790000px;}
.y4a{bottom:911.310000px;}
.yc{bottom:921.930000px;}
.y1a0{bottom:922.650000px;}
.y6e{bottom:923.370000px;}
.y16a{bottom:924.810000px;}
.yaf{bottom:926.610000px;}
.y8e{bottom:933.270000px;}
.y49{bottom:934.710000px;}
.yb{bottom:941.190000px;}
.y19f{bottom:945.870000px;}
.y6d{bottom:946.590000px;}
.y169{bottom:948.210000px;}
.ya{bottom:957.390000px;}
.y48{bottom:957.930000px;}
.yad{bottom:967.110000px;}
.y8d{bottom:968.550000px;}
.y6c{bottom:969.810000px;}
.y168{bottom:971.430000px;}
.y9{bottom:973.590000px;}
.y189{bottom:981.150000px;}
.y8{bottom:990.690000px;}
.y47{bottom:993.210000px;}
.y8c{bottom:1003.830000px;}
.y188{bottom:1004.370000px;}
.y167{bottom:1006.710000px;}
.yaa{bottom:1008.330000px;}
.y7{bottom:1013.910000px;}
.y46{bottom:1016.430000px;}
.y187{bottom:1027.770000px;}
.y8b{bottom:1039.110000px;}
.y45{bottom:1039.650000px;}
.y166{bottom:1041.990000px;}
.y186{bottom:1050.990000px;}
.y6{bottom:1054.950000px;}
.y44{bottom:1063.050000px;}
.y185{bottom:1074.210000px;}
.y8a{bottom:1074.390000px;}
.y43{bottom:1086.270000px;}
.y5{bottom:1096.710000px;}
.y42{bottom:1109.490000px;}
.ya9{bottom:1109.670000px;}
.y1{bottom:1129.830000px;}
.h24{height:26.353077px;}
.h6{height:32.820117px;}
.h1b{height:34.207638px;}
.h13{height:38.793760px;}
.hc{height:39.007266px;}
.h10{height:40.356000px;}
.h21{height:40.433553px;}
.hf{height:40.500000px;}
.h11{height:40.536000px;}
.h5{height:43.623633px;}
.h7{height:45.060117px;}
.h1a{height:45.420719px;}
.h15{height:47.223216px;}
.h3{height:47.980898px;}
.h23{height:49.218280px;}
.h22{height:49.236811px;}
.h14{height:49.567729px;}
.h8{height:50.440430px;}
.h1f{height:54.351597px;}
.h1c{height:55.288974px;}
.ha{height:55.820742px;}
.hd{height:61.873594px;}
.h9{height:62.211094px;}
.h1d{height:64.693072px;}
.h2{height:65.884219px;}
.h1e{height:66.774350px;}
.h16{height:76.444489px;}
.h18{height:77.164188px;}
.h26{height:80.420490px;}
.he{height:81.000000px;}
.h25{height:83.473976px;}
.h4{height:83.794922px;}
.h17{height:84.039114px;}
.hb{height:400.215000px;}
.h12{height:580.494905px;}
.h20{height:603.381086px;}
.h19{height:610.045223px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:83.340000px;}
.w9{width:99.936000px;}
.w8{width:100.800000px;}
.wf{width:117.000000px;}
.w7{width:117.180000px;}
.we{width:117.360000px;}
.w5{width:117.396000px;}
.w6{width:117.540000px;}
.wd{width:117.576000px;}
.w3{width:227.730000px;}
.wb{width:475.729313px;}
.wc{width:482.691338px;}
.wa{width:485.997378px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.560000px;}
.x4{left:10.800000px;}
.x1a{left:21.665227px;}
.x3{left:31.860000px;}
.x2f{left:37.210185px;}
.x3b{left:39.420000px;}
.x12{left:40.500000px;}
.x30{left:41.835772px;}
.xe{left:45.540000px;}
.x24{left:48.098503px;}
.x13{left:49.320000px;}
.x1{left:53.999987px;}
.x14{left:62.776020px;}
.x20{left:63.958633px;}
.x31{left:66.169016px;}
.x21{left:70.034777px;}
.x19{left:76.142756px;}
.x22{left:81.933480px;}
.x5{left:92.556000px;}
.x28{left:98.849228px;}
.x35{left:191.468195px;}
.x1b{left:192.782694px;}
.x25{left:197.952043px;}
.x29{left:215.399827px;}
.x2b{left:228.884691px;}
.x33{left:263.268295px;}
.x16{left:265.071950px;}
.x2{left:270.029987px;}
.x37{left:271.649987px;}
.x2d{left:274.889987px;}
.x1e{left:284.789987px;}
.x8{left:285.915000px;}
.x6{left:312.914987px;}
.x2a{left:361.291939px;}
.x27{left:364.727795px;}
.xa{left:369.255000px;}
.x26{left:376.094462px;}
.x3a{left:382.574987px;}
.x11{left:386.715000px;}
.x18{left:392.041760px;}
.x17{left:395.685429px;}
.x1c{left:401.759156px;}
.x23{left:403.581310px;}
.x34{left:427.186565px;}
.x10{left:431.894987px;}
.x7{left:451.334987px;}
.x2e{left:462.674987px;}
.x32{left:485.101957px;}
.xb{left:486.645000px;}
.x15{left:488.427436px;}
.x38{left:502.484987px;}
.x39{left:521.384987px;}
.x1f{left:522.644987px;}
.xf{left:554.504987px;}
.xc{left:604.185000px;}
.xd{left:721.590000px;}
.x2c{left:745.889987px;}
.x1d{left:756.149987px;}
.x36{left:795.929987px;}
@media print{
.v3{vertical-align:-26.501760pt;}
.v5{vertical-align:-13.440000pt;}
.v2{vertical-align:-10.880000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls9{letter-spacing:-0.608000pt;}
.ls2b{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.367467pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.312763pt;}
.lsa{letter-spacing:-0.288000pt;}
.ls21{letter-spacing:-0.263178pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.210667pt;}
.ls2d{letter-spacing:-0.201067pt;}
.ls28{letter-spacing:-0.196421pt;}
.lsb{letter-spacing:-0.195733pt;}
.ls18{letter-spacing:-0.122667pt;}
.ls2f{letter-spacing:-0.099733pt;}
.ls6{letter-spacing:-0.090667pt;}
.ls3a{letter-spacing:-0.076800pt;}
.ls1f{letter-spacing:-0.031360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.005622pt;}
.ls26{letter-spacing:0.006316pt;}
.ls22{letter-spacing:0.007895pt;}
.ls37{letter-spacing:0.017280pt;}
.ls0{letter-spacing:0.019840pt;}
.ls12{letter-spacing:0.047360pt;}
.ls32{letter-spacing:0.058880pt;}
.ls1e{letter-spacing:0.077333pt;}
.ls2e{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.098133pt;}
.ls35{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.128000pt;}
.ls34{letter-spacing:0.129920pt;}
.ls2c{letter-spacing:0.130560pt;}
.ls1c{letter-spacing:0.155733pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.168960pt;}
.ls8{letter-spacing:0.169067pt;}
.ls20{letter-spacing:0.172856pt;}
.ls3d{letter-spacing:0.183680pt;}
.ls33{letter-spacing:0.196480pt;}
.ls25{letter-spacing:0.202380pt;}
.ls3b{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls24{letter-spacing:0.265489pt;}
.ls39{letter-spacing:0.265600pt;}
.ls36{letter-spacing:0.272000pt;}
.ls3c{letter-spacing:0.272533pt;}
.ls31{letter-spacing:0.281600pt;}
.ls13{letter-spacing:0.308267pt;}
.ls3{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.409067pt;}
.ls17{letter-spacing:0.436267pt;}
.ls30{letter-spacing:0.438933pt;}
.ls38{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.687360pt;}
.ls19{letter-spacing:0.949333pt;}
.lsf{letter-spacing:8.480000pt;}
.lsd{letter-spacing:9.120000pt;}
.ls10{letter-spacing:11.040000pt;}
.ls29{letter-spacing:70.352640pt;}
.ls2{letter-spacing:137.072640pt;}
.ls23{letter-spacing:982.735533pt;}
.ws28{word-spacing:-53.558933pt;}
.ws25{word-spacing:-53.200000pt;}
.ws26{word-spacing:-53.120000pt;}
.ws27{word-spacing:-53.020267pt;}
.ws24{word-spacing:-52.918933pt;}
.ws1a{word-spacing:-25.929825pt;}
.ws20{word-spacing:-18.956295pt;}
.ws1f{word-spacing:-18.753914pt;}
.ws19{word-spacing:-16.190881pt;}
.ws1b{word-spacing:-16.018025pt;}
.ws10{word-spacing:-14.229333pt;}
.wse{word-spacing:-13.716267pt;}
.ws21{word-spacing:-13.714984pt;}
.wsc{word-spacing:-13.689067pt;}
.ws8{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.588267pt;}
.ws2a{word-spacing:-13.545600pt;}
.ws2b{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.435733pt;}
.ws2d{word-spacing:-13.378133pt;}
.ws12{word-spacing:-13.357333pt;}
.ws2c{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.248640pt;}
.ws15{word-spacing:-13.158769pt;}
.wsd{word-spacing:-13.069333pt;}
.ws11{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.712000pt;}
.ws6{word-spacing:-11.392000pt;}
.ws9{word-spacing:-9.920000pt;}
.ws0{word-spacing:-9.690880pt;}
.ws1{word-spacing:-8.000000pt;}
.ws5{word-spacing:-7.360000pt;}
.ws3{word-spacing:-6.720000pt;}
.ws29{word-spacing:-0.062720pt;}
.wsa{word-spacing:0.000000pt;}
.ws22{word-spacing:79.670446pt;}
.ws23{word-spacing:96.102243pt;}
.ws1c{word-spacing:191.544200pt;}
.ws1e{word-spacing:209.157984pt;}
.ws1d{word-spacing:215.614733pt;}
.ws16{word-spacing:260.966379pt;}
.ws18{word-spacing:276.722048pt;}
.ws17{word-spacing:282.221037pt;}
._12{margin-left:-3.390293pt;}
._a{margin-left:-2.243840pt;}
._0{margin-left:-0.942080pt;}
._1{width:1.265493pt;}
._6{width:2.734507pt;}
._5{width:3.718400pt;}
._e{width:5.232000pt;}
._7{width:6.624000pt;}
._b{width:8.400000pt;}
._c{width:9.296000pt;}
._d{width:11.040000pt;}
._11{width:12.386347pt;}
._9{width:13.532160pt;}
._8{width:14.448000pt;}
._13{width:15.468587pt;}
._18{width:16.401707pt;}
._10{width:17.392000pt;}
._f{width:18.282667pt;}
._15{width:19.722027pt;}
._14{width:20.644480pt;}
._23{width:22.044800pt;}
._22{width:23.054080pt;}
._24{width:24.980053pt;}
._1b{width:25.985067pt;}
._1c{width:27.470507pt;}
._33{width:28.867200pt;}
._16{width:30.712747pt;}
._17{width:31.650133pt;}
._2b{width:32.766080pt;}
._19{width:35.281067pt;}
._1a{width:36.257707pt;}
._31{width:50.431573pt;}
._30{width:51.526400pt;}
._28{width:52.747307pt;}
._27{width:54.501120pt;}
._3{width:60.576000pt;}
._4{width:61.536000pt;}
._25{width:65.603200pt;}
._26{width:67.529600pt;}
._2a{width:71.890987pt;}
._29{width:72.933760pt;}
._2f{width:74.183893pt;}
._2e{width:75.246507pt;}
._2d{width:81.384960pt;}
._2c{width:82.702720pt;}
._20{width:101.905113pt;}
._1d{width:111.840000pt;}
._1f{width:240.308412pt;}
._1e{width:302.707021pt;}
._32{width:462.259627pt;}
._21{width:610.468053pt;}
._2{width:631.285973pt;}
.fs5{font-size:26.880000pt;}
.fs7{font-size:29.440000pt;}
.fs4{font-size:32.000000pt;}
.fs19{font-size:32.154365pt;}
.fs1c{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs14{font-size:39.331090pt;}
.fs11{font-size:41.738005pt;}
.fs1{font-size:42.880000pt;}
.fsa{font-size:47.333703pt;}
.fs6{font-size:48.000000pt;}
.fs16{font-size:49.334475pt;}
.fs3{font-size:53.120000pt;}
.fs10{font-size:55.419501pt;}
.fsc{font-size:57.618794pt;}
.fs0{font-size:58.880000pt;}
.fs18{font-size:60.053046pt;}
.fs17{font-size:60.075656pt;}
.fsb{font-size:60.479422pt;}
.fs9{font-size:64.000000pt;}
.fs15{font-size:64.249392pt;}
.fs12{font-size:67.460124pt;}
.fs13{font-size:78.934412pt;}
.fsf{font-size:91.216310pt;}
.fsd{font-size:93.272752pt;}
.fs1b{font-size:95.065607pt;}
.fs2{font-size:96.000000pt;}
.fs1a{font-size:98.675153pt;}
.fse{font-size:99.343207pt;}
.y41{bottom:-17.920000pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:6.533597pt;}
.y153{bottom:6.791409pt;}
.y124{bottom:10.640366pt;}
.y40{bottom:13.466667pt;}
.yb1{bottom:21.640000pt;}
.yae{bottom:21.760000pt;}
.yc2{bottom:21.800000pt;}
.yac{bottom:21.920000pt;}
.y173{bottom:21.946667pt;}
.y3f{bottom:32.986667pt;}
.y109{bottom:37.360078pt;}
.yda{bottom:37.666217pt;}
.y143{bottom:39.157281pt;}
.y4{bottom:51.040000pt;}
.y3e{bottom:52.346667pt;}
.y144{bottom:55.596950pt;}
.yab{bottom:57.920000pt;}
.y11c{bottom:66.881437pt;}
.y10a{bottom:67.281834pt;}
.ydb{bottom:71.550444pt;}
.y3d{bottom:71.706667pt;}
.y3{bottom:78.560000pt;}
.y145{bottom:83.664432pt;}
.y10b{bottom:89.979821pt;}
.y3c{bottom:91.226667pt;}
.y113{bottom:92.185782pt;}
.y2{bottom:92.640000pt;}
.yea{bottom:99.412302pt;}
.y122{bottom:103.230701pt;}
.y151{bottom:103.332181pt;}
.y112{bottom:105.436662pt;}
.ydc{bottom:107.670247pt;}
.y3b{bottom:110.586667pt;}
.y146{bottom:111.920219pt;}
.y2e{bottom:112.000000pt;}
.y10c{bottom:112.674030pt;}
.y1cf{bottom:114.080000pt;}
.y184{bottom:115.200000pt;}
.y165{bottom:117.760000pt;}
.y111{bottom:118.695097pt;}
.ya8{bottom:120.800000pt;}
.y1bd{bottom:124.000000pt;}
.y6b{bottom:127.360000pt;}
.y3a{bottom:129.946667pt;}
.y110{bottom:131.945977pt;}
.y2d{bottom:132.640000pt;}
.y1ce{bottom:134.720000pt;}
.y10d{bottom:135.560883pt;}
.y183{bottom:135.840000pt;}
.y2f{bottom:136.000000pt;}
.yee{bottom:138.115864pt;}
.y164{bottom:138.400000pt;}
.y147{bottom:139.987701pt;}
.ye5{bottom:142.930397pt;}
.ydd{bottom:143.790050pt;}
.y1bc{bottom:144.826667pt;}
.y10f{bottom:145.208189pt;}
.y11a{bottom:147.614349pt;}
.y6a{bottom:148.026667pt;}
.yed{bottom:148.947963pt;}
.y39{bottom:149.466667pt;}
.ya7{bottom:152.186667pt;}
.y2c{bottom:153.306667pt;}
.y125{bottom:154.039590pt;}
.y1cd{bottom:155.386667pt;}
.y182{bottom:156.666667pt;}
.y10e{bottom:158.255093pt;}
.y163{bottom:159.226667pt;}
.yeb{bottom:160.130647pt;}
.y134{bottom:160.986667pt;}
.yd5{bottom:161.849951pt;}
.ycb{bottom:164.506667pt;}
.y19e{bottom:166.106667pt;}
.y152{bottom:166.444505pt;}
.y13f{bottom:168.233399pt;}
.y69{bottom:168.666667pt;}
.y38{bottom:168.826667pt;}
.y2b{bottom:174.106667pt;}
.y1bb{bottom:176.186667pt;}
.y181{bottom:177.306667pt;}
.y11d{bottom:178.543142pt;}
.y123{bottom:179.143738pt;}
.y162{bottom:179.866667pt;}
.y104{bottom:181.153278pt;}
.ya6{bottom:183.546667pt;}
.yca{bottom:185.306667pt;}
.y19d{bottom:186.746667pt;}
.yd6{bottom:188.849756pt;}
.y68{bottom:189.306667pt;}
.y133{bottom:192.346667pt;}
.y37{bottom:193.626667pt;}
.y2a{bottom:194.746667pt;}
.y140{bottom:196.300881pt;}
.y1ba{bottom:196.826667pt;}
.y105{bottom:203.847487pt;}
.yc9{bottom:205.946667pt;}
.y19c{bottom:207.546667pt;}
.ye4{bottom:207.776514pt;}
.y15f{bottom:208.346667pt;}
.y67{bottom:210.106667pt;}
.y132{bottom:213.146667pt;}
.ya5{bottom:214.906667pt;}
.y29{bottom:215.386667pt;}
.y150{bottom:215.965268pt;}
.yd7{bottom:216.029656pt;}
.y180{bottom:216.666667pt;}
.y119{bottom:217.105922pt;}
.y1b9{bottom:217.466667pt;}
.y89{bottom:219.386667pt;}
.y141{bottom:224.546580pt;}
.y106{bottom:226.545474pt;}
.yc8{bottom:226.586667pt;}
.y19b{bottom:228.186667pt;}
.y15e{bottom:228.986667pt;}
.y36{bottom:230.466667pt;}
.y66{bottom:230.746667pt;}
.y131{bottom:233.786667pt;}
.y28{bottom:236.186667pt;}
.y17f{bottom:237.306667pt;}
.y88{bottom:240.186667pt;}
.yd8{bottom:243.034263pt;}
.ya4{bottom:246.266667pt;}
.y35{bottom:246.466667pt;}
.yc7{bottom:247.226667pt;}
.y1b8{bottom:248.826667pt;}
.yf8{bottom:249.306667pt;}
.y107{bottom:249.439882pt;}
.y15d{bottom:249.626667pt;}
.ye9{bottom:250.084372pt;}
.y161{bottom:250.586667pt;}
.ye2{bottom:251.287405pt;}
.y65{bottom:251.386667pt;}
.y142{bottom:252.614062pt;}
.y130{bottom:254.426667pt;}
.ye6{bottom:255.758558pt;}
.y27{bottom:256.826667pt;}
.y17e{bottom:258.106667pt;}
.y19a{bottom:259.546667pt;}
.y87{bottom:260.826667pt;}
.y118{bottom:261.493348pt;}
.y34{bottom:262.466667pt;}
.yc6{bottom:268.026667pt;}
.y1b7{bottom:269.466667pt;}
.y121{bottom:269.727931pt;}
.yd9{bottom:270.206959pt;}
.y15c{bottom:270.426667pt;}
.y160{bottom:271.386667pt;}
.y108{bottom:272.134092pt;}
.y64{bottom:272.186667pt;}
.y12f{bottom:275.066667pt;}
.y26{bottom:277.466667pt;}
.ya3{bottom:277.626667pt;}
.y33{bottom:278.466667pt;}
.y17d{bottom:278.746667pt;}
.y199{bottom:280.186667pt;}
.yf7{bottom:280.666667pt;}
.y13b{bottom:280.866486pt;}
.y86{bottom:281.466667pt;}
.yd2{bottom:288.266861pt;}
.yc5{bottom:288.666667pt;}
.y1b6{bottom:290.266667pt;}
.y15b{bottom:291.066667pt;}
.y63{bottom:292.826667pt;}
.y11e{bottom:293.627110pt;}
.yff{bottom:295.032277pt;}
.y12e{bottom:295.866667pt;}
.y25{bottom:298.106667pt;}
.y17c{bottom:299.386667pt;}
.y198{bottom:300.826667pt;}
.yf6{bottom:301.306667pt;}
.y32{bottom:302.466667pt;}
.y13c{bottom:308.933967pt;}
.ya2{bottom:308.986667pt;}
.yc4{bottom:309.306667pt;}
.y1b5{bottom:310.906667pt;}
.y15a{bottom:311.706667pt;}
.y85{bottom:312.986667pt;}
.y62{bottom:313.466667pt;}
.ye1{bottom:316.133522pt;}
.y12d{bottom:316.506667pt;}
.y100{bottom:317.726486pt;}
.y24{bottom:318.906667pt;}
.y17b{bottom:320.026667pt;}
.y197{bottom:321.626667pt;}
.yf5{bottom:322.106667pt;}
.yd3{bottom:324.386664pt;}
.y31{bottom:326.946667pt;}
.y14f{bottom:328.591629pt;}
.y117{bottom:330.977366pt;}
.y159{bottom:332.506667pt;}
.y61{bottom:334.266667pt;}
.y12c{bottom:337.146667pt;}
.y13d{bottom:337.179666pt;}
.y23{bottom:339.546667pt;}
.ya1{bottom:340.346667pt;}
.y101{bottom:340.420696pt;}
.yc3{bottom:340.666667pt;}
.y17a{bottom:340.826667pt;}
.y1b4{bottom:342.266667pt;}
.yf4{bottom:342.746667pt;}
.y30{bottom:342.946667pt;}
.y84{bottom:344.186667pt;}
.y196{bottom:352.986667pt;}
.y158{bottom:353.146667pt;}
.y60{bottom:354.906667pt;}
.yc1{bottom:355.386667pt;}
.y12b{bottom:357.946667pt;}
.y22{bottom:360.226667pt;}
.yd4{bottom:360.506467pt;}
.ye8{bottom:360.849847pt;}
.ya0{bottom:361.026667pt;}
.y179{bottom:361.506667pt;}
.y1b3{bottom:362.946667pt;}
.y102{bottom:363.318881pt;}
.yf3{bottom:363.426667pt;}
.y83{bottom:364.866667pt;}
.y13e{bottom:365.247148pt;}
.ye3{bottom:365.664380pt;}
.y195{bottom:373.666667pt;}
.y114{bottom:375.364792pt;}
.y5f{bottom:375.586667pt;}
.y12a{bottom:378.626667pt;}
.y21{bottom:381.026667pt;}
.y9f{bottom:381.666667pt;}
.y1b2{bottom:383.746667pt;}
.y120{bottom:384.007327pt;}
.yf2{bottom:384.066667pt;}
.y157{bottom:384.706667pt;}
.y82{bottom:385.666667pt;}
.y103{bottom:386.013090pt;}
.ycd{bottom:389.405671pt;}
.yc0{bottom:391.426667pt;}
.y136{bottom:393.492847pt;}
.y194{bottom:394.306667pt;}
.y5e{bottom:396.226667pt;}
.y178{bottom:400.866667pt;}
.y20{bottom:401.666667pt;}
.y9e{bottom:402.466667pt;}
.y1b1{bottom:404.386667pt;}
.yf1{bottom:404.866667pt;}
.y81{bottom:406.306667pt;}
.y126{bottom:407.302132pt;}
.yfa{bottom:408.911276pt;}
.y129{bottom:409.986667pt;}
.yce{bottom:411.074671pt;}
.y193{bottom:415.106667pt;}
.y177{bottom:415.586667pt;}
.y156{bottom:415.906667pt;}
.y5d{bottom:417.026667pt;}
.y137{bottom:421.560329pt;}
.y1f{bottom:422.306667pt;}
.y9d{bottom:423.106667pt;}
.yde{bottom:424.492931pt;}
.y1cc{bottom:425.666667pt;}
.y80{bottom:426.946667pt;}
.ybf{bottom:428.066667pt;}
.y128{bottom:430.786667pt;}
.yfb{bottom:431.605485pt;}
.ycf{bottom:432.746073pt;}
.y1b0{bottom:435.746667pt;}
.yf0{bottom:436.226667pt;}
.y155{bottom:436.706667pt;}
.y5c{bottom:437.666667pt;}
.y148{bottom:441.228078pt;}
.y1e{bottom:442.946667pt;}
.y9c{bottom:443.746667pt;}
.y116{bottom:444.856365pt;}
.y1cb{bottom:446.466667pt;}
.y192{bottom:446.626667pt;}
.y7f{bottom:447.746667pt;}
.y138{bottom:449.806027pt;}
.y176{bottom:451.586667pt;}
.yfc{bottom:454.292140pt;}
.yd0{bottom:454.422277pt;}
.y1af{bottom:456.386667pt;}
.yef{bottom:457.026667pt;}
.yf9{bottom:458.146667pt;}
.y5b{bottom:458.306667pt;}
.y14e{bottom:458.750499pt;}
.ye7{bottom:461.126604pt;}
.y1d{bottom:463.746667pt;}
.y154{bottom:464.066667pt;}
.y135{bottom:464.080000pt;}
.y9b{bottom:464.546667pt;}
.y1ca{bottom:467.106667pt;}
.y7e{bottom:468.386667pt;}
.y14d{bottom:468.579329pt;}
.ye0{bottom:472.482179pt;}
.yd1{bottom:476.091277pt;}
.y1ae{bottom:477.026667pt;}
.yfd{bottom:477.186548pt;}
.y191{bottom:477.666667pt;}
.y139{bottom:477.880234pt;}
.y14c{bottom:478.418248pt;}
.y5a{bottom:479.106667pt;}
.ybe{bottom:482.146667pt;}
.y1c{bottom:484.386667pt;}
.ycc{bottom:484.413333pt;}
.y9a{bottom:485.186667pt;}
.y175{bottom:487.586667pt;}
.y1c9{bottom:487.746667pt;}
.y14b{bottom:488.247078pt;}
.y7d{bottom:489.026667pt;}
.y11f{bottom:495.669032pt;}
.y1ad{bottom:497.826667pt;}
.y14a{bottom:498.075909pt;}
.y127{bottom:498.479367pt;}
.y190{bottom:498.626667pt;}
.y11b{bottom:499.280162pt;}
.y59{bottom:499.746667pt;}
.yfe{bottom:499.884535pt;}
.ydf{bottom:505.842930pt;}
.y13a{bottom:506.125933pt;}
.y7c{bottom:509.666667pt;}
.ybd{bottom:513.346667pt;}
.y1b{bottom:515.906667pt;}
.y99{bottom:516.546667pt;}
.y1c8{bottom:519.106667pt;}
.y58{bottom:520.386667pt;}
.y174{bottom:523.586667pt;}
.y149{bottom:525.793682pt;}
.y1ac{bottom:529.186667pt;}
.y18f{bottom:529.986667pt;}
.y7b{bottom:530.466667pt;}
.y115{bottom:533.431018pt;}
.ybc{bottom:534.146667pt;}
.y98{bottom:537.186667pt;}
.y1c7{bottom:539.746667pt;}
.y57{bottom:541.026667pt;}
.y1a{bottom:546.466667pt;}
.y1ab{bottom:549.826667pt;}
.y7a{bottom:551.106667pt;}
.ybb{bottom:554.786667pt;}
.y97{bottom:557.826667pt;}
.y172{bottom:560.226667pt;}
.y1c6{bottom:560.546667pt;}
.y18e{bottom:561.346667pt;}
.y56{bottom:561.826667pt;}
.y19{bottom:565.026667pt;}
.y1aa{bottom:570.466667pt;}
.y79{bottom:571.746667pt;}
.yba{bottom:575.426667pt;}
.y96{bottom:578.653333pt;}
.y1c5{bottom:581.213333pt;}
.y1d0{bottom:581.373333pt;}
.y55{bottom:582.493333pt;}
.y18d{bottom:592.573333pt;}
.y18{bottom:594.333333pt;}
.yb9{bottom:596.093333pt;}
.y1a9{bottom:601.853333pt;}
.y54{bottom:603.133333pt;}
.y78{bottom:603.293333pt;}
.y95{bottom:610.173333pt;}
.y1c4{bottom:612.573333pt;}
.y17{bottom:613.053333pt;}
.y18c{bottom:613.373333pt;}
.y171{bottom:614.333333pt;}
.yb8{bottom:616.893333pt;}
.y1a8{bottom:622.653333pt;}
.y53{bottom:623.933333pt;}
.y16{bottom:631.613333pt;}
.y1c3{bottom:633.213333pt;}
.y18b{bottom:634.013333pt;}
.y77{bottom:634.493333pt;}
.y170{bottom:634.813333pt;}
.yb7{bottom:637.533333pt;}
.y94{bottom:641.533333pt;}
.y1a7{bottom:643.293333pt;}
.y52{bottom:644.573333pt;}
.y16f{bottom:649.533333pt;}
.y15{bottom:650.333333pt;}
.y1c2{bottom:653.853333pt;}
.y18a{bottom:654.813333pt;}
.y76{bottom:655.293333pt;}
.yb6{bottom:658.173333pt;}
.y51{bottom:665.213333pt;}
.y14{bottom:668.893333pt;}
.y93{bottom:672.893333pt;}
.y1a6{bottom:674.653333pt;}
.y75{bottom:675.933333pt;}
.yb5{bottom:678.973333pt;}
.y16e{bottom:685.533333pt;}
.y50{bottom:685.853333pt;}
.y13{bottom:687.453333pt;}
.y1a5{bottom:695.293333pt;}
.y74{bottom:696.573333pt;}
.y92{bottom:704.253333pt;}
.y1c1{bottom:706.013333pt;}
.y12{bottom:706.173333pt;}
.y4f{bottom:706.653333pt;}
.yb4{bottom:710.493333pt;}
.y1a4{bottom:715.933333pt;}
.y73{bottom:717.213333pt;}
.y16d{bottom:721.533333pt;}
.y11{bottom:724.733333pt;}
.y1c0{bottom:726.653333pt;}
.y4e{bottom:727.293333pt;}
.y91{bottom:735.613333pt;}
.y72{bottom:738.013333pt;}
.yb3{bottom:741.853333pt;}
.y10{bottom:743.293333pt;}
.y1a3{bottom:747.293333pt;}
.y4d{bottom:747.933333pt;}
.y16c{bottom:758.173333pt;}
.y71{bottom:758.653333pt;}
.yf{bottom:762.013333pt;}
.y90{bottom:766.973333pt;}
.y1a2{bottom:768.093333pt;}
.y4c{bottom:768.733333pt;}
.yb2{bottom:772.893333pt;}
.y1bf{bottom:778.653333pt;}
.y70{bottom:779.293333pt;}
.yb0{bottom:787.773333pt;}
.y1a1{bottom:788.733333pt;}
.y4b{bottom:789.373333pt;}
.ye{bottom:790.653333pt;}
.y8f{bottom:798.213333pt;}
.y1be{bottom:799.493333pt;}
.y6f{bottom:800.133333pt;}
.y16b{bottom:801.573333pt;}
.yd{bottom:807.813333pt;}
.y4a{bottom:810.053333pt;}
.yc{bottom:819.493333pt;}
.y1a0{bottom:820.133333pt;}
.y6e{bottom:820.773333pt;}
.y16a{bottom:822.053333pt;}
.yaf{bottom:823.653333pt;}
.y8e{bottom:829.573333pt;}
.y49{bottom:830.853333pt;}
.yb{bottom:836.613333pt;}
.y19f{bottom:840.773333pt;}
.y6d{bottom:841.413333pt;}
.y169{bottom:842.853333pt;}
.ya{bottom:851.013333pt;}
.y48{bottom:851.493333pt;}
.yad{bottom:859.653333pt;}
.y8d{bottom:860.933333pt;}
.y6c{bottom:862.053333pt;}
.y168{bottom:863.493333pt;}
.y9{bottom:865.413333pt;}
.y189{bottom:872.133333pt;}
.y8{bottom:880.613333pt;}
.y47{bottom:882.853333pt;}
.y8c{bottom:892.293333pt;}
.y188{bottom:892.773333pt;}
.y167{bottom:894.853333pt;}
.yaa{bottom:896.293333pt;}
.y7{bottom:901.253333pt;}
.y46{bottom:903.493333pt;}
.y187{bottom:913.573333pt;}
.y8b{bottom:923.653333pt;}
.y45{bottom:924.133333pt;}
.y166{bottom:926.213333pt;}
.y186{bottom:934.213333pt;}
.y6{bottom:937.733333pt;}
.y44{bottom:944.933333pt;}
.y185{bottom:954.853333pt;}
.y8a{bottom:955.013333pt;}
.y43{bottom:965.573333pt;}
.y5{bottom:974.853333pt;}
.y42{bottom:986.213333pt;}
.ya9{bottom:986.373333pt;}
.y1{bottom:1004.293333pt;}
.h24{height:23.424958pt;}
.h6{height:29.173438pt;}
.h1b{height:30.406789pt;}
.h13{height:34.483342pt;}
.hc{height:34.673125pt;}
.h10{height:35.872000pt;}
.h21{height:35.940936pt;}
.hf{height:36.000000pt;}
.h11{height:36.032000pt;}
.h5{height:38.776563pt;}
.h7{height:40.053437pt;}
.h1a{height:40.373972pt;}
.h15{height:41.976192pt;}
.h3{height:42.649687pt;}
.h23{height:43.749582pt;}
.h22{height:43.766054pt;}
.h14{height:44.060204pt;}
.h8{height:44.835938pt;}
.h1f{height:48.312531pt;}
.h1c{height:49.145754pt;}
.ha{height:49.618437pt;}
.hd{height:54.998750pt;}
.h9{height:55.298750pt;}
.h1d{height:57.504953pt;}
.h2{height:58.563750pt;}
.h1e{height:59.354978pt;}
.h16{height:67.950657pt;}
.h18{height:68.590389pt;}
.h26{height:71.484880pt;}
.he{height:72.000000pt;}
.h25{height:74.199090pt;}
.h4{height:74.484375pt;}
.h17{height:74.701435pt;}
.hb{height:355.746667pt;}
.h12{height:515.995471pt;}
.h20{height:536.338743pt;}
.h19{height:542.262420pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:74.080000pt;}
.w9{width:88.832000pt;}
.w8{width:89.600000pt;}
.wf{width:104.000000pt;}
.w7{width:104.160000pt;}
.we{width:104.320000pt;}
.w5{width:104.352000pt;}
.w6{width:104.480000pt;}
.wd{width:104.512000pt;}
.w3{width:202.426667pt;}
.wb{width:422.870500pt;}
.wc{width:429.058968pt;}
.wa{width:431.997670pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.720000pt;}
.x4{left:9.600000pt;}
.x1a{left:19.257979pt;}
.x3{left:28.320000pt;}
.x2f{left:33.075720pt;}
.x3b{left:35.040000pt;}
.x12{left:36.000000pt;}
.x30{left:37.187353pt;}
.xe{left:40.480000pt;}
.x24{left:42.754225pt;}
.x13{left:43.840000pt;}
.x1{left:47.999988pt;}
.x14{left:55.800907pt;}
.x20{left:56.852118pt;}
.x31{left:58.816904pt;}
.x21{left:62.253136pt;}
.x19{left:67.682449pt;}
.x22{left:72.829760pt;}
.x5{left:82.272000pt;}
.x28{left:87.865980pt;}
.x35{left:170.193951pt;}
.x1b{left:171.362394pt;}
.x25{left:175.957372pt;}
.x29{left:191.466513pt;}
.x2b{left:203.453059pt;}
.x33{left:234.016262pt;}
.x16{left:235.619511pt;}
.x2{left:240.026655pt;}
.x37{left:241.466655pt;}
.x2d{left:244.346655pt;}
.x1e{left:253.146655pt;}
.x8{left:254.146667pt;}
.x6{left:278.146655pt;}
.x2a{left:321.148390pt;}
.x27{left:324.202485pt;}
.xa{left:328.226667pt;}
.x26{left:334.306188pt;}
.x3a{left:340.066655pt;}
.x11{left:343.746667pt;}
.x18{left:348.481565pt;}
.x17{left:351.720382pt;}
.x1c{left:357.119250pt;}
.x23{left:358.738942pt;}
.x34{left:379.721391pt;}
.x10{left:383.906655pt;}
.x7{left:401.186655pt;}
.x2e{left:411.266655pt;}
.x32{left:431.201739pt;}
.xb{left:432.573333pt;}
.x15{left:434.157721pt;}
.x38{left:446.653322pt;}
.x39{left:463.453322pt;}
.x1f{left:464.573322pt;}
.xf{left:492.893322pt;}
.xc{left:537.053333pt;}
.xd{left:641.413333pt;}
.x2c{left:663.013322pt;}
.x1d{left:672.133322pt;}
.x36{left:707.493322pt;}
}




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