
    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_aece5b9ebaf4851db25b3a8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_b0d75ca7e899495ff6e50245.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8f014bd44922223280c8fa9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_06efb8f092b2547283978f52.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e7488563a214cfc4ea3478f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.683105;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_a010a1886109b026bca36454.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940430;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_7932be1bf38ca991a5724df4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d08842f6f4a8f9fff9407246.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.820000;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_d1d536df7eb22db95573d1d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4dcecf7e38274ff8ee23e45f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.685000;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_4a426079b4a907144e35a463.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.528000;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_857fd51fdf519c140897aaad.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.702000;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_4c885feaa19285d100841178.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.688000;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_6eeda946699d4c08b0f5e6eb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.665000;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_f6be4dda03da087c8d115816.woff2')format("woff");}.fff{font-family:fff;line-height:0.887450;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_5328b09dd2348cb742f95c8b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_179db18df8c98a9f3ffd83ba.woff2')format("woff");}.ff11{font-family:ff11;line-height:3.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-29.616000px;}
.v4{vertical-align:-23.004000px;}
.v3{vertical-align:-16.878000px;}
.v2{vertical-align:-10.758000px;}
.vb{vertical-align:-8.436000px;}
.v8{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:24.732000px;}
.v1{vertical-align:26.028000px;}
.v7{vertical-align:28.242000px;}
.ve{vertical-align:29.616000px;}
.v5{vertical-align:49.206000px;}
.va{vertical-align:52.974000px;}
.vc{vertical-align:78.822000px;}
.v6{vertical-align:97.734000px;}
.vf{vertical-align:105.210000px;}
.v11{vertical-align:150.936000px;}
.v10{vertical-align:154.410000px;}
.ls0{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000520px;}
.ls2{letter-spacing:0.000764px;}
.ls4a{letter-spacing:0.002712px;}
.ls21{letter-spacing:0.002759px;}
.ls3a{letter-spacing:0.003056px;}
.ls4e{letter-spacing:0.003657px;}
.ls60{letter-spacing:0.004381px;}
.ls5b{letter-spacing:0.004404px;}
.ls25{letter-spacing:0.005429px;}
.ls11{letter-spacing:0.047021px;}
.lsf{letter-spacing:0.053021px;}
.ls10{letter-spacing:0.409114px;}
.ls8{letter-spacing:0.415114px;}
.ls12{letter-spacing:0.586737px;}
.ls37{letter-spacing:2.401300px;}
.ls38{letter-spacing:2.407300px;}
.ls17{letter-spacing:2.986059px;}
.lsb{letter-spacing:2.992059px;}
.ls36{letter-spacing:7.487566px;}
.ls50{letter-spacing:7.492752px;}
.ls14{letter-spacing:7.493566px;}
.ls3c{letter-spacing:9.756440px;}
.ls35{letter-spacing:9.762440px;}
.ls4f{letter-spacing:10.093473px;}
.ls40{letter-spacing:10.099473px;}
.ls29{letter-spacing:10.164248px;}
.ls4{letter-spacing:11.953114px;}
.ls4c{letter-spacing:11.954759px;}
.ls22{letter-spacing:13.964759px;}
.ls48{letter-spacing:14.809139px;}
.ls5c{letter-spacing:14.966759px;}
.ls4d{letter-spacing:15.935518px;}
.ls3f{letter-spacing:15.937473px;}
.ls55{letter-spacing:15.940404px;}
.ls54{letter-spacing:15.943473px;}
.ls5d{letter-spacing:16.004759px;}
.ls20{letter-spacing:16.364700px;}
.ls2f{letter-spacing:16.994700px;}
.ls49{letter-spacing:17.806059px;}
.ls34{letter-spacing:17.931848px;}
.lsd{letter-spacing:17.932404px;}
.ls9{letter-spacing:17.935114px;}
.ls4b{letter-spacing:18.388059px;}
.ls2c{letter-spacing:18.560759px;}
.ls3b{letter-spacing:18.880059px;}
.ls41{letter-spacing:19.123139px;}
.ls1f{letter-spacing:19.348059px;}
.ls5e{letter-spacing:19.564404px;}
.ls5f{letter-spacing:19.567473px;}
.ls58{letter-spacing:19.919518px;}
.ls3e{letter-spacing:19.921473px;}
.ls47{letter-spacing:19.925518px;}
.ls2e{letter-spacing:19.984059px;}
.ls33{letter-spacing:20.335300px;}
.ls6{letter-spacing:20.359114px;}
.ls46{letter-spacing:20.512737px;}
.ls7{letter-spacing:20.920059px;}
.ls2a{letter-spacing:21.328800px;}
.ls2b{letter-spacing:21.550059px;}
.ls3d{letter-spacing:22.912059px;}
.ls57{letter-spacing:22.918059px;}
.ls5{letter-spacing:23.350059px;}
.ls32{letter-spacing:24.301139px;}
.ls1{letter-spacing:25.031464px;}
.ls3{letter-spacing:25.322809px;}
.ls45{letter-spacing:26.224404px;}
.ls1d{letter-spacing:27.320809px;}
.ls53{letter-spacing:28.663139px;}
.ls1c{letter-spacing:30.310059px;}
.lse{letter-spacing:30.486600px;}
.ls30{letter-spacing:31.720737px;}
.ls26{letter-spacing:32.592248px;}
.ls5a{letter-spacing:32.645518px;}
.ls59{letter-spacing:32.650404px;}
.ls44{letter-spacing:33.724752px;}
.ls31{letter-spacing:35.872080px;}
.ls52{letter-spacing:36.154752px;}
.lsc{letter-spacing:38.855700px;}
.ls27{letter-spacing:39.669592px;}
.ls23{letter-spacing:39.677464px;}
.ls1a{letter-spacing:39.851518px;}
.ls13{letter-spacing:40.438737px;}
.ls43{letter-spacing:42.106752px;}
.lsa{letter-spacing:42.838059px;}
.ls18{letter-spacing:47.023114px;}
.ls39{letter-spacing:53.791114px;}
.ls28{letter-spacing:54.479518px;}
.ls24{letter-spacing:55.763518px;}
.ls2d{letter-spacing:66.422759px;}
.ls19{letter-spacing:94.025518px;}
.ls15{letter-spacing:106.203848px;}
.ls16{letter-spacing:110.579518px;}
.ls1b{letter-spacing:649.987114px;}
.ls51{letter-spacing:705.423657px;}
.ls56{letter-spacing:906.945657px;}
.ls42{letter-spacing:1089.544752px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-47.820600px;}
.wsba{word-spacing:-47.324343px;}
.wsdb{word-spacing:-40.456397px;}
.ws22{word-spacing:-35.865600px;}
.ws3d{word-spacing:-35.865360px;}
.ws2{word-spacing:-33.892992px;}
.ws1{word-spacing:-33.785395px;}
.ws5b{word-spacing:-28.333824px;}
.ws5d{word-spacing:-28.262093px;}
.wsa{word-spacing:-28.046899px;}
.wse1{word-spacing:-27.831706px;}
.wsef{word-spacing:-27.544781px;}
.ws6a{word-spacing:-27.473050px;}
.wsc4{word-spacing:-27.257856px;}
.wsad{word-spacing:-27.114394px;}
.ws14{word-spacing:-26.970818px;}
.ws6b{word-spacing:-26.540544px;}
.ws6c{word-spacing:-26.468813px;}
.ws0{word-spacing:-26.361153px;}
.wse8{word-spacing:-26.325350px;}
.ws59{word-spacing:-26.181888px;}
.wsa0{word-spacing:-25.679770px;}
.ws9f{word-spacing:-25.608038px;}
.wsd0{word-spacing:-25.536307px;}
.wscf{word-spacing:-25.512413px;}
.wsa9{word-spacing:-25.464576px;}
.ws21{word-spacing:-25.321114px;}
.ws33{word-spacing:-25.177651px;}
.wsac{word-spacing:-25.138330px;}
.wsaa{word-spacing:-25.105920px;}
.ws9b{word-spacing:-25.034189px;}
.ws7f{word-spacing:-24.962458px;}
.wsc5{word-spacing:-24.890726px;}
.ws58{word-spacing:-24.818995px;}
.ws8f{word-spacing:-24.603802px;}
.wse0{word-spacing:-24.532070px;}
.ws5a{word-spacing:-24.460339px;}
.ws7c{word-spacing:-24.245146px;}
.ws69{word-spacing:-24.005941px;}
.wsec{word-spacing:-23.958221px;}
.ws37{word-spacing:-23.910300px;}
.wsf0{word-spacing:-23.814758px;}
.ws7d{word-spacing:-23.743027px;}
.ws56{word-spacing:-23.671296px;}
.ws28{word-spacing:-23.599565px;}
.ws1e{word-spacing:-23.527834px;}
.wsdf{word-spacing:-23.384371px;}
.ws2b{word-spacing:-23.240909px;}
.ws80{word-spacing:-23.169178px;}
.ws60{word-spacing:-23.097446px;}
.wsce{word-spacing:-22.882253px;}
.wsd{word-spacing:-22.810522px;}
.wse7{word-spacing:-22.667059px;}
.ws8d{word-spacing:-22.595328px;}
.ws4c{word-spacing:-22.593686px;}
.ws45{word-spacing:-22.570070px;}
.ws75{word-spacing:-22.557734px;}
.ws72{word-spacing:-22.557245px;}
.wsc7{word-spacing:-22.547702px;}
.ws71{word-spacing:-22.545792px;}
.wsbd{word-spacing:-22.544323px;}
.ws81{word-spacing:-22.536250px;}
.ws10{word-spacing:-22.523597px;}
.ws87{word-spacing:-22.451866px;}
.ws23{word-spacing:-22.380134px;}
.ws9d{word-spacing:-22.308403px;}
.ws9{word-spacing:-22.093210px;}
.ws9c{word-spacing:-22.021478px;}
.ws3e{word-spacing:-21.949747px;}
.ws70{word-spacing:-21.878016px;}
.wsf5{word-spacing:-21.734554px;}
.wsd9{word-spacing:-21.662822px;}
.ws27{word-spacing:-21.591091px;}
.ws2a{word-spacing:-21.375898px;}
.wse3{word-spacing:-21.304166px;}
.wsb{word-spacing:-21.232435px;}
.wsf2{word-spacing:-21.160704px;}
.ws29{word-spacing:-21.088973px;}
.ws3{word-spacing:-21.005236px;}
.wse5{word-spacing:-20.730317px;}
.ws1f{word-spacing:-20.586854px;}
.ws7b{word-spacing:-20.570897px;}
.ws68{word-spacing:-20.564837px;}
.ws67{word-spacing:-20.552744px;}
.ws52{word-spacing:-20.299930px;}
.ws3f{word-spacing:-20.156467px;}
.ws44{word-spacing:-20.121110px;}
.ws42{word-spacing:-20.084736px;}
.wsf{word-spacing:-20.013005px;}
.ws79{word-spacing:-19.963653px;}
.ws1d{word-spacing:-19.941274px;}
.ws7a{word-spacing:-19.922837px;}
.ws78{word-spacing:-19.898198px;}
.wse6{word-spacing:-19.797811px;}
.ws20{word-spacing:-19.726080px;}
.wsca{word-spacing:-19.654349px;}
.ws8b{word-spacing:-19.582618px;}
.ws9e{word-spacing:-19.510886px;}
.wsed{word-spacing:-19.439155px;}
.ws62{word-spacing:-19.374562px;}
.wseb{word-spacing:-19.361693px;}
.ws5f{word-spacing:-19.223962px;}
.ws7e{word-spacing:-19.187990px;}
.ws89{word-spacing:-19.080499px;}
.ws86{word-spacing:-19.008768px;}
.ws12{word-spacing:-18.937037px;}
.ws4b{word-spacing:-18.769538px;}
.wsae{word-spacing:-18.721843px;}
.wsb4{word-spacing:-18.595718px;}
.ws7{word-spacing:-18.578381px;}
.wsd6{word-spacing:-18.506650px;}
.wsd4{word-spacing:-18.434918px;}
.ws32{word-spacing:-18.363187px;}
.ws2e{word-spacing:-18.291456px;}
.ws6{word-spacing:-18.219725px;}
.ws4{word-spacing:-18.147994px;}
.ws4f{word-spacing:-18.076262px;}
.ws6d{word-spacing:-18.036250px;}
.ws6e{word-spacing:-18.004531px;}
.wscd{word-spacing:-18.002486px;}
.ws54{word-spacing:-17.932800px;}
.ws8a{word-spacing:-17.789338px;}
.ws24{word-spacing:-17.717606px;}
.ws26{word-spacing:-17.714486px;}
.ws36{word-spacing:-17.645875px;}
.ws5{word-spacing:-17.502413px;}
.wsee{word-spacing:-17.430682px;}
.wsf4{word-spacing:-17.143757px;}
.ws2c{word-spacing:-17.072026px;}
.wsd1{word-spacing:-17.000294px;}
.ws39{word-spacing:-16.856832px;}
.ws31{word-spacing:-16.785101px;}
.wsf3{word-spacing:-16.569907px;}
.ws35{word-spacing:-16.498176px;}
.ws82{word-spacing:-16.472074px;}
.wsbc{word-spacing:-16.429105px;}
.wse4{word-spacing:-16.354714px;}
.ws83{word-spacing:-16.282982px;}
.ws8c{word-spacing:-16.139520px;}
.ws93{word-spacing:-15.925718px;}
.ws96{word-spacing:-15.924326px;}
.ws2d{word-spacing:-15.852595px;}
.ws53{word-spacing:-15.709133px;}
.wse{word-spacing:-15.637402px;}
.ws61{word-spacing:-15.185467px;}
.ws13{word-spacing:-15.015668px;}
.wsea{word-spacing:-14.920090px;}
.wsdc{word-spacing:-14.776627px;}
.ws74{word-spacing:-14.704896px;}
.ws30{word-spacing:-14.633165px;}
.ws85{word-spacing:-14.417971px;}
.ws97{word-spacing:-14.274509px;}
.ws98{word-spacing:-14.258755px;}
.ws99{word-spacing:-14.238250px;}
.ws9a{word-spacing:-14.202778px;}
.wsf1{word-spacing:-13.987584px;}
.ws18{word-spacing:-13.747027px;}
.ws1a{word-spacing:-13.700659px;}
.ws8{word-spacing:-13.557197px;}
.wse9{word-spacing:-13.485466px;}
.ws17{word-spacing:-13.342003px;}
.wscb{word-spacing:-12.983347px;}
.ws2f{word-spacing:-12.911616px;}
.ws34{word-spacing:-12.839885px;}
.wsb2{word-spacing:-12.036025px;}
.ws4a{word-spacing:-11.775793px;}
.ws66{word-spacing:-11.520010px;}
.wsde{word-spacing:-11.405261px;}
.wsc{word-spacing:-11.333530px;}
.wse2{word-spacing:-10.974874px;}
.wsa4{word-spacing:-10.341827px;}
.ws25{word-spacing:-10.203763px;}
.ws1c{word-spacing:-10.114099px;}
.ws38{word-spacing:-9.468518px;}
.ws84{word-spacing:-9.325056px;}
.ws1b{word-spacing:-9.082435px;}
.ws88{word-spacing:-8.320819px;}
.wsb8{word-spacing:-8.052025px;}
.wsb1{word-spacing:-8.046025px;}
.wsa3{word-spacing:-6.152732px;}
.wsaf{word-spacing:-6.054025px;}
.ws19{word-spacing:-5.970163px;}
.wsc3{word-spacing:-5.311184px;}
.wsc2{word-spacing:-5.247809px;}
.wsa2{word-spacing:-5.245169px;}
.ws11{word-spacing:-4.794835px;}
.wsbe{word-spacing:-4.068025px;}
.wsab{word-spacing:-4.062025px;}
.ws40{word-spacing:-0.071731px;}
.ws63{word-spacing:-0.065455px;}
.ws3a{word-spacing:-0.059776px;}
.ws46{word-spacing:-0.047821px;}
.wsd7{word-spacing:-0.035866px;}
.ws15{word-spacing:0.000000px;}
.ws3c{word-spacing:0.001920px;}
.wsa1{word-spacing:0.003840px;}
.ws3b{word-spacing:0.007200px;}
.wsd8{word-spacing:5.940570px;}
.wsc1{word-spacing:8.669975px;}
.ws73{word-spacing:10.128570px;}
.ws47{word-spacing:11.835648px;}
.ws5e{word-spacing:12.103432px;}
.wsb3{word-spacing:12.826191px;}
.ws92{word-spacing:12.832191px;}
.wsb9{word-spacing:14.898736px;}
.ws5c{word-spacing:15.120736px;}
.ws48{word-spacing:15.852595px;}
.wsbb{word-spacing:15.865432px;}
.ws90{word-spacing:15.875587px;}
.wsb0{word-spacing:15.900134px;}
.wsb7{word-spacing:15.906134px;}
.wsc6{word-spacing:17.177787px;}
.wsc8{word-spacing:17.855787px;}
.wsbf{word-spacing:17.916649px;}
.wsa8{word-spacing:18.065470px;}
.wsda{word-spacing:18.767787px;}
.ws57{word-spacing:19.716736px;}
.ws4e{word-spacing:19.797811px;}
.wsc9{word-spacing:20.711787px;}
.ws65{word-spacing:20.749108px;}
.wsa7{word-spacing:21.120736px;}
.wsb6{word-spacing:21.793432px;}
.wsd5{word-spacing:21.941787px;}
.wscc{word-spacing:22.379787px;}
.ws4d{word-spacing:22.866736px;}
.ws41{word-spacing:23.304736px;}
.ws77{word-spacing:23.760736px;}
.ws64{word-spacing:23.778736px;}
.ws6f{word-spacing:24.264736px;}
.ws95{word-spacing:24.469432px;}
.wsd3{word-spacing:24.961924px;}
.wsdd{word-spacing:25.631787px;}
.wsd2{word-spacing:26.418736px;}
.ws43{word-spacing:28.266736px;}
.wsb5{word-spacing:28.549018px;}
.wsc0{word-spacing:32.565965px;}
.ws94{word-spacing:34.502707px;}
.ws50{word-spacing:39.739085px;}
.wsa6{word-spacing:40.843670px;}
.wsa5{word-spacing:43.890736px;}
.ws55{word-spacing:50.785690px;}
.ws51{word-spacing:793.499975px;}
.ws8e{word-spacing:925.002207px;}
.ws91{word-spacing:987.198207px;}
.ws76{word-spacing:1029.702736px;}
.ws49{word-spacing:1034.004736px;}
._17{margin-left:-7.173120px;}
._b{margin-left:-4.805990px;}
._2{margin-left:-3.765888px;}
._3{margin-left:-2.510592px;}
._6{margin-left:-1.219430px;}
._23{width:1.971621px;}
._1a{width:2.976128px;}
._22{width:4.063968px;}
._28{width:5.600450px;}
._20{width:7.165649px;}
._25{width:8.177076px;}
._24{width:9.744670px;}
._a{width:13.628928px;}
._1c{width:16.713370px;}
._15{width:19.146250px;}
._13{width:20.873779px;}
._9{width:22.093210px;}
._7{width:23.563699px;}
._8{width:25.321114px;}
._e{width:26.468813px;}
._d{width:28.118630px;}
._10{width:29.338061px;}
._1b{width:30.747182px;}
._14{width:32.422502px;}
._21{width:33.713664px;}
._16{width:35.076557px;}
._4{width:36.941568px;}
._27{width:37.945805px;}
._5{width:39.093504px;}
._1d{width:40.384666px;}
._19{width:42.034483px;}
._1e{width:43.208899px;}
._f{width:44.688538px;}
._1f{width:47.163260px;}
._11{width:50.591501px;}
._18{width:53.439744px;}
._c{width:57.384960px;}
._26{width:58.676122px;}
._12{width:61.043251px;}
._1{width:647.403140px;}
._0{width:916.958164px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs7{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs6{font-size:77.709000px;}
.fs0{font-size:83.686200px;}
.fs4{font-size:95.641200px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y37{bottom:54.294000px;}
.y52{bottom:80.968500px;}
.y17{bottom:92.851500px;}
.y1b{bottom:92.874000px;}
.y104{bottom:99.874500px;}
.y8d{bottom:104.817000px;}
.y51{bottom:105.810000px;}
.y36{bottom:107.391000px;}
.y6c{bottom:108.409500px;}
.y16{bottom:109.348500px;}
.y1a{bottom:109.372500px;}
.ya5{bottom:121.722000px;}
.yec{bottom:123.195000px;}
.y15{bottom:125.847000px;}
.y19{bottom:125.871000px;}
.y103{bottom:132.378000px;}
.yda{bottom:134.640000px;}
.y35{bottom:139.893000px;}
.y6b{bottom:140.911500px;}
.y18{bottom:142.368000px;}
.y8c{bottom:146.469000px;}
.yca{bottom:148.431000px;}
.yeb{bottom:148.974000px;}
.ya4{bottom:154.225500px;}
.ybc{bottom:154.677000px;}
.y102{bottom:164.881500px;}
.yd9{bottom:167.143500px;}
.y50{bottom:169.122000px;}
.y34{bottom:172.396500px;}
.y6a{bottom:173.415000px;}
.yea{bottom:174.753000px;}
.y8b{bottom:178.972500px;}
.ybb{bottom:180.454500px;}
.yc9{bottom:191.059500px;}
.y101{bottom:197.383500px;}
.ye9{bottom:200.530500px;}
.y69{bottom:205.918500px;}
.yba{bottom:206.233500px;}
.ya3{bottom:208.981500px;}
.y8a{bottom:211.476000px;}
.ya2{bottom:221.283000px;}
.y33{bottom:224.884500px;}
.ye8{bottom:226.309500px;}
.yc8{bottom:228.046500px;}
.y4f{bottom:228.523500px;}
.yb9{bottom:232.011000px;}
.y68{bottom:238.422000px;}
.yd8{bottom:240.120000px;}
.y7b{bottom:242.035500px;}
.y89{bottom:243.979500px;}
.y100{bottom:249.871500px;}
.y32{bottom:257.388000px;}
.yb8{bottom:257.790000px;}
.y14{bottom:259.377000px;}
.y4e{bottom:261.027000px;}
.yd7{bottom:265.899000px;}
.y118{bottom:270.270000px;}
.y88{bottom:276.481500px;}
.ye7{bottom:277.866000px;}
.yff{bottom:282.375000px;}
.yc7{bottom:283.026000px;}
.yb7{bottom:283.569000px;}
.y13{bottom:284.296500px;}
.y31{bottom:289.890000px;}
.y67{bottom:290.908500px;}
.yd6{bottom:291.676500px;}
.y4d{bottom:293.530500px;}
.y117{bottom:295.189500px;}
.ya1{bottom:306.273000px;}
.yb6{bottom:309.346500px;}
.yfe{bottom:314.878500px;}
.yc6{bottom:315.529500px;}
.yd5{bottom:317.455500px;}
.y116{bottom:320.107500px;}
.y30{bottom:322.393500px;}
.y66{bottom:323.412000px;}
.y12{bottom:324.522000px;}
.y4c{bottom:326.034000px;}
.y7a{bottom:327.027000px;}
.y87{bottom:328.969500px;}
.ye6{bottom:329.422500px;}
.ya0{bottom:338.776500px;}
.yd4{bottom:343.233000px;}
.yfd{bottom:347.380500px;}
.y11{bottom:349.441500px;}
.yb5{bottom:354.996000px;}
.ye5{bottom:355.200000px;}
.y65{bottom:355.915500px;}
.y79{bottom:359.529000px;}
.y115{bottom:360.334500px;}
.yd3{bottom:369.012000px;}
.y10{bottom:374.361000px;}
.y2f{bottom:374.881500px;}
.yfc{bottom:379.884000px;}
.ye4{bottom:380.979000px;}
.yc5{bottom:382.615500px;}
.y114{bottom:385.252500px;}
.y9f{bottom:391.264500px;}
.y78{bottom:392.032500px;}
.yd2{bottom:394.789500px;}
.yc4{bottom:394.915500px;}
.y4b{bottom:399.010500px;}
.yf{bottom:399.279000px;}
.ye3{bottom:406.756500px;}
.y2e{bottom:407.383500px;}
.yb4{bottom:407.482500px;}
.y113{bottom:410.172000px;}
.y64{bottom:410.671500px;}
.yfb{bottom:412.387500px;}
.y62{bottom:413.128500px;}
.y86{bottom:421.308000px;}
.y61{bottom:422.973000px;}
.y9e{bottom:423.766500px;}
.ye{bottom:424.198500px;}
.y4a{bottom:424.789500px;}
.y112{bottom:435.090000px;}
.y63{bottom:435.105000px;}
.y77{bottom:438.336000px;}
.y2d{bottom:439.887000px;}
.yb3{bottom:439.986000px;}
.yd1{bottom:440.439000px;}
.y76{bottom:444.520500px;}
.y85{bottom:447.087000px;}
.yd{bottom:449.116500px;}
.y49{bottom:450.567000px;}
.ye2{bottom:452.406000px;}
.yc3{bottom:454.318500px;}
.y9d{bottom:456.270000px;}
.yfa{bottom:464.874000px;}
.y2c{bottom:472.390500px;}
.yb2{bottom:472.489500px;}
.y84{bottom:472.864500px;}
.yd0{bottom:472.942500px;}
.yc{bottom:474.036000px;}
.y111{bottom:475.317000px;}
.y48{bottom:476.346000px;}
.y75{bottom:477.024000px;}
.ye1{bottom:484.909500px;}
.yc2{bottom:486.822000px;}
.y9c{bottom:488.773500px;}
.yf9{bottom:497.377500px;}
.y83{bottom:498.643500px;}
.yb{bottom:498.955500px;}
.y110{bottom:500.235000px;}
.y47{bottom:502.123500px;}
.y74{bottom:503.343000px;}
.y2b{bottom:504.894000px;}
.y60{bottom:507.963000px;}
.y73{bottom:509.526000px;}
.ya{bottom:523.873500px;}
.y82{bottom:524.421000px;}
.yb1{bottom:524.976000px;}
.y10f{bottom:525.154500px;}
.y46{bottom:527.902500px;}
.yf8{bottom:529.881000px;}
.y2a{bottom:537.396000px;}
.yc1{bottom:539.308500px;}
.y5f{bottom:540.466500px;}
.y72{bottom:542.029500px;}
.ycf{bottom:544.857000px;}
.y9{bottom:548.793000px;}
.y10e{bottom:550.074000px;}
.y81{bottom:550.200000px;}
.y45{bottom:553.680000px;}
.yb0{bottom:557.479500px;}
.y9b{bottom:560.688000px;}
.yf7{bottom:562.384500px;}
.yce{bottom:569.775000px;}
.y29{bottom:569.899500px;}
.yc0{bottom:571.812000px;}
.y8{bottom:573.711000px;}
.y71{bottom:574.533000px;}
.y80{bottom:575.979000px;}
.y44{bottom:579.459000px;}
.y9a{bottom:585.606000px;}
.yaf{bottom:589.983000px;}
.y10d{bottom:590.299500px;}
.yf6{bottom:594.886500px;}
.y7{bottom:598.630500px;}
.y7f{bottom:601.756500px;}
.ye0{bottom:602.403000px;}
.ybf{bottom:604.315500px;}
.y5e{bottom:607.524000px;}
.ycd{bottom:609.637500px;}
.y10c{bottom:615.219000px;}
.y28{bottom:622.387500px;}
.yae{bottom:622.486500px;}
.y6{bottom:623.550000px;}
.y43{bottom:625.107000px;}
.y99{bottom:625.470000px;}
.y70{bottom:627.019500px;}
.yf5{bottom:627.390000px;}
.y7e{bottom:627.535500px;}
.ydf{bottom:634.906500px;}
.ybe{bottom:636.819000px;}
.ycc{bottom:649.501500px;}
.y98{bottom:650.388000px;}
.y27{bottom:654.889500px;}
.yad{bottom:654.988500px;}
.y10b{bottom:655.444500px;}
.y42{bottom:657.610500px;}
.yde{bottom:667.408500px;}
.y7d{bottom:673.183500px;}
.y5{bottom:676.531500px;}
.yf4{bottom:679.878000px;}
.y10a{bottom:680.364000px;}
.y26{bottom:687.393000px;}
.yac{bottom:687.492000px;}
.ybd{bottom:689.305500px;}
.y41{bottom:690.114000px;}
.y97{bottom:690.252000px;}
.y5d{bottom:692.514000px;}
.y6f{bottom:693.507000px;}
.y109{bottom:705.282000px;}
.ycb{bottom:713.832000px;}
.y96{bottom:715.170000px;}
.y25{bottom:719.896500px;}
.y5c{bottom:725.017500px;}
.y7c{bottom:727.101000px;}
.y108{bottom:730.201500px;}
.yab{bottom:739.980000px;}
.y40{bottom:742.600500px;}
.y6e{bottom:747.426000px;}
.y24{bottom:752.400000px;}
.y95{bottom:755.032500px;}
.y5b{bottom:757.521000px;}
.y6d{bottom:767.749500px;}
.yf3{bottom:772.216500px;}
.yaa{bottom:772.482000px;}
.y107{bottom:775.104000px;}
.y4{bottom:778.821000px;}
.y94{bottom:779.952000px;}
.ydd{bottom:784.902000px;}
.yf2{bottom:797.994000px;}
.y23{bottom:804.886500px;}
.ya9{bottom:804.985500px;}
.y3f{bottom:809.089500px;}
.ydc{bottom:817.405500px;}
.yf1{bottom:823.773000px;}
.y3{bottom:830.187000px;}
.y5a{bottom:830.497500px;}
.y22{bottom:837.390000px;}
.y3e{bottom:841.591500px;}
.y93{bottom:844.282500px;}
.yf0{bottom:849.552000px;}
.ydb{bottom:849.909000px;}
.y59{bottom:856.276500px;}
.ya8{bottom:859.743000px;}
.y92{bottom:865.951500px;}
.y21{bottom:869.893500px;}
.y2{bottom:870.535500px;}
.ya7{bottom:872.043000px;}
.y3d{bottom:874.095000px;}
.y58{bottom:882.054000px;}
.yef{bottom:901.108500px;}
.y20{bottom:902.395500px;}
.y3c{bottom:906.598500px;}
.y57{bottom:907.833000px;}
.y91{bottom:927.031500px;}
.y56{bottom:933.610500px;}
.y1f{bottom:934.899000px;}
.y3b{bottom:939.102000px;}
.y90{bottom:951.949500px;}
.yee{bottom:952.665000px;}
.ya6{bottom:957.034500px;}
.y55{bottom:959.389500px;}
.y1e{bottom:967.402500px;}
.y106{bottom:971.604000px;}
.yed{bottom:978.442500px;}
.y54{bottom:985.167000px;}
.y3a{bottom:991.588500px;}
.y8f{bottom:991.813500px;}
.y1d{bottom:999.906000px;}
.y105{bottom:1004.107500px;}
.y53{bottom:1010.946000px;}
.y8e{bottom:1016.731500px;}
.y39{bottom:1024.092000px;}
.y1c{bottom:1052.392500px;}
.y38{bottom:1056.595500px;}
.y1{bottom:1119.420000px;}
.h6{height:33.226911px;}
.hc{height:35.865450px;}
.ha{height:39.840671px;}
.h1a{height:40.541166px;}
.hb{height:41.533535px;}
.he{height:45.479441px;}
.h13{height:45.485441px;}
.h1f{height:49.805550px;}
.h5{height:49.840575px;}
.h8{height:53.798400px;}
.h14{height:53.804400px;}
.h4{height:56.717014px;}
.h3{height:58.106336px;}
.h1{height:58.147199px;}
.h9{height:59.254911px;}
.hf{height:60.042699px;}
.h1e{height:61.899450px;}
.h7{height:64.819329px;}
.h17{height:65.481450px;}
.h11{height:74.572575px;}
.h2{height:74.760863px;}
.h12{height:78.536400px;}
.h10{height:84.774699px;}
.h18{height:102.326400px;}
.h19{height:102.998400px;}
.h15{height:110.421450px;}
.h16{height:114.687450px;}
.h1b{height:145.020550px;}
.hd{height:151.532400px;}
.h1c{height:194.220550px;}
.h1d{height:200.776575px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:90.607500px;}
.x1{left:106.299000px;}
.xa{left:119.053500px;}
.x25{left:124.231500px;}
.x23{left:129.679500px;}
.x2{left:135.967500px;}
.xb{left:136.987500px;}
.x1a{left:151.131000px;}
.xc{left:154.920000px;}
.x10{left:289.705500px;}
.x20{left:303.565500px;}
.x18{left:312.012000px;}
.xf{left:331.581000px;}
.x11{left:336.801000px;}
.x22{left:339.772500px;}
.x1b{left:357.724500px;}
.x3{left:364.242000px;}
.x12{left:371.574000px;}
.x1d{left:373.273500px;}
.x19{left:383.899500px;}
.xd{left:384.975000px;}
.x13{left:386.370000px;}
.x1e{left:397.722000px;}
.x4{left:404.086500px;}
.x14{left:444.675000px;}
.x24{left:450.033000px;}
.x9{left:454.516500px;}
.x1f{left:465.792000px;}
.x1c{left:501.453000px;}
.x5{left:520.761000px;}
.x15{left:522.403500px;}
.x17{left:543.177000px;}
.x21{left:548.119500px;}
.x8{left:559.830000px;}
.x16{left:566.440500px;}
.x6{left:631.987500px;}
.x7{left:655.069500px;}
@media print{
.vd{vertical-align:-26.325333pt;}
.v4{vertical-align:-20.448000pt;}
.v3{vertical-align:-15.002667pt;}
.v2{vertical-align:-9.562667pt;}
.vb{vertical-align:-7.498667pt;}
.v8{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:21.984000pt;}
.v1{vertical-align:23.136000pt;}
.v7{vertical-align:25.104000pt;}
.ve{vertical-align:26.325333pt;}
.v5{vertical-align:43.738667pt;}
.va{vertical-align:47.088000pt;}
.vc{vertical-align:70.064000pt;}
.v6{vertical-align:86.874667pt;}
.vf{vertical-align:93.520000pt;}
.v11{vertical-align:134.165333pt;}
.v10{vertical-align:137.253333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000462pt;}
.ls2{letter-spacing:0.000679pt;}
.ls4a{letter-spacing:0.002411pt;}
.ls21{letter-spacing:0.002452pt;}
.ls3a{letter-spacing:0.002717pt;}
.ls4e{letter-spacing:0.003251pt;}
.ls60{letter-spacing:0.003895pt;}
.ls5b{letter-spacing:0.003915pt;}
.ls25{letter-spacing:0.004825pt;}
.ls11{letter-spacing:0.041796pt;}
.lsf{letter-spacing:0.047130pt;}
.ls10{letter-spacing:0.363657pt;}
.ls8{letter-spacing:0.368990pt;}
.ls12{letter-spacing:0.521544pt;}
.ls37{letter-spacing:2.134489pt;}
.ls38{letter-spacing:2.139822pt;}
.ls17{letter-spacing:2.654275pt;}
.lsb{letter-spacing:2.659608pt;}
.ls36{letter-spacing:6.655614pt;}
.ls50{letter-spacing:6.660224pt;}
.ls14{letter-spacing:6.660948pt;}
.ls3c{letter-spacing:8.672391pt;}
.ls35{letter-spacing:8.677724pt;}
.ls4f{letter-spacing:8.971976pt;}
.ls40{letter-spacing:8.977309pt;}
.ls29{letter-spacing:9.034887pt;}
.ls4{letter-spacing:10.624990pt;}
.ls4c{letter-spacing:10.626452pt;}
.ls22{letter-spacing:12.413119pt;}
.ls48{letter-spacing:13.163679pt;}
.ls5c{letter-spacing:13.303786pt;}
.ls4d{letter-spacing:14.164905pt;}
.ls3f{letter-spacing:14.166642pt;}
.ls55{letter-spacing:14.169248pt;}
.ls54{letter-spacing:14.171976pt;}
.ls5d{letter-spacing:14.226452pt;}
.ls20{letter-spacing:14.546400pt;}
.ls2f{letter-spacing:15.106400pt;}
.ls49{letter-spacing:15.827608pt;}
.ls34{letter-spacing:15.939420pt;}
.lsd{letter-spacing:15.939915pt;}
.ls9{letter-spacing:15.942323pt;}
.ls4b{letter-spacing:16.344941pt;}
.ls2c{letter-spacing:16.498452pt;}
.ls3b{letter-spacing:16.782275pt;}
.ls41{letter-spacing:16.998345pt;}
.ls1f{letter-spacing:17.198275pt;}
.ls5e{letter-spacing:17.390582pt;}
.ls5f{letter-spacing:17.393309pt;}
.ls58{letter-spacing:17.706238pt;}
.ls3e{letter-spacing:17.707976pt;}
.ls47{letter-spacing:17.711572pt;}
.ls2e{letter-spacing:17.763608pt;}
.ls33{letter-spacing:18.075822pt;}
.ls6{letter-spacing:18.096990pt;}
.ls46{letter-spacing:18.233544pt;}
.ls7{letter-spacing:18.595608pt;}
.ls2a{letter-spacing:18.958933pt;}
.ls2b{letter-spacing:19.155608pt;}
.ls3d{letter-spacing:20.366275pt;}
.ls57{letter-spacing:20.371608pt;}
.ls5{letter-spacing:20.755608pt;}
.ls32{letter-spacing:21.601012pt;}
.ls1{letter-spacing:22.250191pt;}
.ls3{letter-spacing:22.509164pt;}
.ls45{letter-spacing:23.310582pt;}
.ls1d{letter-spacing:24.285164pt;}
.ls53{letter-spacing:25.478345pt;}
.ls1c{letter-spacing:26.942275pt;}
.lse{letter-spacing:27.099200pt;}
.ls30{letter-spacing:28.196210pt;}
.ls26{letter-spacing:28.970887pt;}
.ls5a{letter-spacing:29.018238pt;}
.ls59{letter-spacing:29.022582pt;}
.ls44{letter-spacing:29.977557pt;}
.ls31{letter-spacing:31.886293pt;}
.ls52{letter-spacing:32.137557pt;}
.lsc{letter-spacing:34.538400pt;}
.ls27{letter-spacing:35.261860pt;}
.ls23{letter-spacing:35.268857pt;}
.ls1a{letter-spacing:35.423572pt;}
.ls13{letter-spacing:35.945544pt;}
.ls43{letter-spacing:37.428224pt;}
.lsa{letter-spacing:38.078275pt;}
.ls18{letter-spacing:41.798323pt;}
.ls39{letter-spacing:47.814323pt;}
.ls28{letter-spacing:48.426238pt;}
.ls24{letter-spacing:49.567572pt;}
.ls2d{letter-spacing:59.042452pt;}
.ls19{letter-spacing:83.578238pt;}
.ls15{letter-spacing:94.403420pt;}
.ls16{letter-spacing:98.292905pt;}
.ls1b{letter-spacing:577.766323pt;}
.ls51{letter-spacing:627.043251pt;}
.ls56{letter-spacing:806.173918pt;}
.ls42{letter-spacing:968.484224pt;}
.ws16{word-spacing:-42.507200pt;}
.wsba{word-spacing:-42.066082pt;}
.wsdb{word-spacing:-35.961242pt;}
.ws22{word-spacing:-31.880533pt;}
.ws3d{word-spacing:-31.880320pt;}
.ws2{word-spacing:-30.127104pt;}
.ws1{word-spacing:-30.031462pt;}
.ws5b{word-spacing:-25.185621pt;}
.ws5d{word-spacing:-25.121860pt;}
.wsa{word-spacing:-24.930577pt;}
.wse1{word-spacing:-24.739294pt;}
.wsef{word-spacing:-24.484250pt;}
.ws6a{word-spacing:-24.420489pt;}
.wsc4{word-spacing:-24.229205pt;}
.wsad{word-spacing:-24.101683pt;}
.ws14{word-spacing:-23.974061pt;}
.ws6b{word-spacing:-23.591595pt;}
.ws6c{word-spacing:-23.527834pt;}
.ws0{word-spacing:-23.432136pt;}
.wse8{word-spacing:-23.400311pt;}
.ws59{word-spacing:-23.272789pt;}
.wsa0{word-spacing:-22.826462pt;}
.ws9f{word-spacing:-22.762701pt;}
.wsd0{word-spacing:-22.698940pt;}
.wscf{word-spacing:-22.677700pt;}
.wsa9{word-spacing:-22.635179pt;}
.ws21{word-spacing:-22.507657pt;}
.ws33{word-spacing:-22.380134pt;}
.wsac{word-spacing:-22.345182pt;}
.wsaa{word-spacing:-22.316373pt;}
.ws9b{word-spacing:-22.252612pt;}
.ws7f{word-spacing:-22.188851pt;}
.wsc5{word-spacing:-22.125090pt;}
.ws58{word-spacing:-22.061329pt;}
.ws8f{word-spacing:-21.870046pt;}
.wse0{word-spacing:-21.806285pt;}
.ws5a{word-spacing:-21.742524pt;}
.ws7c{word-spacing:-21.551241pt;}
.ws69{word-spacing:-21.338614pt;}
.wsec{word-spacing:-21.296196pt;}
.ws37{word-spacing:-21.253600pt;}
.wsf0{word-spacing:-21.168674pt;}
.ws7d{word-spacing:-21.104913pt;}
.ws56{word-spacing:-21.041152pt;}
.ws28{word-spacing:-20.977391pt;}
.ws1e{word-spacing:-20.913630pt;}
.wsdf{word-spacing:-20.786108pt;}
.ws2b{word-spacing:-20.658586pt;}
.ws80{word-spacing:-20.594825pt;}
.ws60{word-spacing:-20.531063pt;}
.wsce{word-spacing:-20.339780pt;}
.wsd{word-spacing:-20.276019pt;}
.wse7{word-spacing:-20.148497pt;}
.ws8d{word-spacing:-20.084736pt;}
.ws4c{word-spacing:-20.083277pt;}
.ws45{word-spacing:-20.062285pt;}
.ws75{word-spacing:-20.051319pt;}
.ws72{word-spacing:-20.050884pt;}
.wsc7{word-spacing:-20.042402pt;}
.ws71{word-spacing:-20.040704pt;}
.wsbd{word-spacing:-20.039398pt;}
.ws81{word-spacing:-20.032222pt;}
.ws10{word-spacing:-20.020975pt;}
.ws87{word-spacing:-19.957214pt;}
.ws23{word-spacing:-19.893453pt;}
.ws9d{word-spacing:-19.829692pt;}
.ws9{word-spacing:-19.638409pt;}
.ws9c{word-spacing:-19.574647pt;}
.ws3e{word-spacing:-19.510886pt;}
.ws70{word-spacing:-19.447125pt;}
.wsf5{word-spacing:-19.319603pt;}
.wsd9{word-spacing:-19.255842pt;}
.ws27{word-spacing:-19.192081pt;}
.ws2a{word-spacing:-19.000798pt;}
.wse3{word-spacing:-18.937037pt;}
.wsb{word-spacing:-18.873276pt;}
.wsf2{word-spacing:-18.809515pt;}
.ws29{word-spacing:-18.745754pt;}
.ws3{word-spacing:-18.671321pt;}
.wse5{word-spacing:-18.426948pt;}
.ws1f{word-spacing:-18.299426pt;}
.ws7b{word-spacing:-18.285242pt;}
.ws68{word-spacing:-18.279855pt;}
.ws67{word-spacing:-18.269106pt;}
.ws52{word-spacing:-18.044382pt;}
.ws3f{word-spacing:-17.916860pt;}
.ws44{word-spacing:-17.885431pt;}
.ws42{word-spacing:-17.853099pt;}
.wsf{word-spacing:-17.789338pt;}
.ws79{word-spacing:-17.745469pt;}
.ws1d{word-spacing:-17.725577pt;}
.ws7a{word-spacing:-17.709188pt;}
.ws78{word-spacing:-17.687287pt;}
.wse6{word-spacing:-17.598054pt;}
.ws20{word-spacing:-17.534293pt;}
.wsca{word-spacing:-17.470532pt;}
.ws8b{word-spacing:-17.406771pt;}
.ws9e{word-spacing:-17.343010pt;}
.wsed{word-spacing:-17.279249pt;}
.ws62{word-spacing:-17.221833pt;}
.wseb{word-spacing:-17.210394pt;}
.ws5f{word-spacing:-17.087966pt;}
.ws7e{word-spacing:-17.055991pt;}
.ws89{word-spacing:-16.960444pt;}
.ws86{word-spacing:-16.896683pt;}
.ws12{word-spacing:-16.832922pt;}
.ws4b{word-spacing:-16.684034pt;}
.wsae{word-spacing:-16.641638pt;}
.wsb4{word-spacing:-16.529527pt;}
.ws7{word-spacing:-16.514116pt;}
.wsd6{word-spacing:-16.450355pt;}
.wsd4{word-spacing:-16.386594pt;}
.ws32{word-spacing:-16.322833pt;}
.ws2e{word-spacing:-16.259072pt;}
.ws6{word-spacing:-16.195311pt;}
.ws4{word-spacing:-16.131550pt;}
.ws4f{word-spacing:-16.067789pt;}
.ws6d{word-spacing:-16.032222pt;}
.ws6e{word-spacing:-16.004028pt;}
.wscd{word-spacing:-16.002210pt;}
.ws54{word-spacing:-15.940267pt;}
.ws8a{word-spacing:-15.812745pt;}
.ws24{word-spacing:-15.748983pt;}
.ws26{word-spacing:-15.746210pt;}
.ws36{word-spacing:-15.685222pt;}
.ws5{word-spacing:-15.557700pt;}
.wsee{word-spacing:-15.493939pt;}
.wsf4{word-spacing:-15.238895pt;}
.ws2c{word-spacing:-15.175134pt;}
.wsd1{word-spacing:-15.111373pt;}
.ws39{word-spacing:-14.983851pt;}
.ws31{word-spacing:-14.920090pt;}
.wsf3{word-spacing:-14.728806pt;}
.ws35{word-spacing:-14.665045pt;}
.ws82{word-spacing:-14.641843pt;}
.wsbc{word-spacing:-14.603649pt;}
.wse4{word-spacing:-14.537523pt;}
.ws83{word-spacing:-14.473762pt;}
.ws8c{word-spacing:-14.346240pt;}
.ws93{word-spacing:-14.156194pt;}
.ws96{word-spacing:-14.154957pt;}
.ws2d{word-spacing:-14.091196pt;}
.ws53{word-spacing:-13.963674pt;}
.wse{word-spacing:-13.899913pt;}
.ws61{word-spacing:-13.498193pt;}
.ws13{word-spacing:-13.347261pt;}
.wsea{word-spacing:-13.262302pt;}
.wsdc{word-spacing:-13.134780pt;}
.ws74{word-spacing:-13.071019pt;}
.ws30{word-spacing:-13.007258pt;}
.ws85{word-spacing:-12.815974pt;}
.ws97{word-spacing:-12.688452pt;}
.ws98{word-spacing:-12.674449pt;}
.ws99{word-spacing:-12.656222pt;}
.ws9a{word-spacing:-12.624691pt;}
.wsf1{word-spacing:-12.433408pt;}
.ws18{word-spacing:-12.219580pt;}
.ws1a{word-spacing:-12.178364pt;}
.ws8{word-spacing:-12.050842pt;}
.wse9{word-spacing:-11.987081pt;}
.ws17{word-spacing:-11.859558pt;}
.wscb{word-spacing:-11.540753pt;}
.ws2f{word-spacing:-11.476992pt;}
.ws34{word-spacing:-11.413231pt;}
.wsb2{word-spacing:-10.698689pt;}
.ws4a{word-spacing:-10.467372pt;}
.ws66{word-spacing:-10.240009pt;}
.wsde{word-spacing:-10.138010pt;}
.wsc{word-spacing:-10.074249pt;}
.wse2{word-spacing:-9.755443pt;}
.wsa4{word-spacing:-9.192735pt;}
.ws25{word-spacing:-9.070012pt;}
.ws1c{word-spacing:-8.990310pt;}
.ws38{word-spacing:-8.416461pt;}
.ws84{word-spacing:-8.288939pt;}
.ws1b{word-spacing:-8.073276pt;}
.ws88{word-spacing:-7.396284pt;}
.wsb8{word-spacing:-7.157355pt;}
.wsb1{word-spacing:-7.152022pt;}
.wsa3{word-spacing:-5.469095pt;}
.wsaf{word-spacing:-5.381355pt;}
.ws19{word-spacing:-5.306812pt;}
.wsc3{word-spacing:-4.721053pt;}
.wsc2{word-spacing:-4.664719pt;}
.wsa2{word-spacing:-4.662372pt;}
.ws11{word-spacing:-4.262076pt;}
.wsbe{word-spacing:-3.616022pt;}
.wsab{word-spacing:-3.610689pt;}
.ws40{word-spacing:-0.063761pt;}
.ws63{word-spacing:-0.058182pt;}
.ws3a{word-spacing:-0.053134pt;}
.ws46{word-spacing:-0.042507pt;}
.wsd7{word-spacing:-0.031881pt;}
.ws15{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.001707pt;}
.wsa1{word-spacing:0.003413pt;}
.ws3b{word-spacing:0.006400pt;}
.wsd8{word-spacing:5.280507pt;}
.wsc1{word-spacing:7.706645pt;}
.ws73{word-spacing:9.003174pt;}
.ws47{word-spacing:10.520576pt;}
.ws5e{word-spacing:10.758607pt;}
.wsb3{word-spacing:11.401059pt;}
.ws92{word-spacing:11.406392pt;}
.wsb9{word-spacing:13.243320pt;}
.ws5c{word-spacing:13.440654pt;}
.ws48{word-spacing:14.091196pt;}
.wsbb{word-spacing:14.102607pt;}
.ws90{word-spacing:14.111633pt;}
.wsb0{word-spacing:14.133453pt;}
.wsb7{word-spacing:14.138786pt;}
.wsc6{word-spacing:15.269144pt;}
.wsc8{word-spacing:15.871811pt;}
.wsbf{word-spacing:15.925910pt;}
.wsa8{word-spacing:16.058195pt;}
.wsda{word-spacing:16.682477pt;}
.ws57{word-spacing:17.525987pt;}
.ws4e{word-spacing:17.598054pt;}
.wsc9{word-spacing:18.410477pt;}
.ws65{word-spacing:18.443652pt;}
.wsa7{word-spacing:18.773987pt;}
.wsb6{word-spacing:19.371940pt;}
.wsd5{word-spacing:19.503811pt;}
.wscc{word-spacing:19.893144pt;}
.ws4d{word-spacing:20.325987pt;}
.ws41{word-spacing:20.715320pt;}
.ws77{word-spacing:21.120654pt;}
.ws64{word-spacing:21.136654pt;}
.ws6f{word-spacing:21.568654pt;}
.ws95{word-spacing:21.750607pt;}
.wsd3{word-spacing:22.188377pt;}
.wsdd{word-spacing:22.783811pt;}
.wsd2{word-spacing:23.483320pt;}
.ws43{word-spacing:25.125987pt;}
.wsb5{word-spacing:25.376905pt;}
.wsc0{word-spacing:28.947524pt;}
.ws94{word-spacing:30.669073pt;}
.ws50{word-spacing:35.323631pt;}
.wsa6{word-spacing:36.305485pt;}
.wsa5{word-spacing:39.013987pt;}
.ws55{word-spacing:45.142835pt;}
.ws51{word-spacing:705.333311pt;}
.ws8e{word-spacing:822.224184pt;}
.ws91{word-spacing:877.509518pt;}
.ws76{word-spacing:915.291320pt;}
.ws49{word-spacing:919.115320pt;}
._17{margin-left:-6.376107pt;}
._b{margin-left:-4.271991pt;}
._2{margin-left:-3.347456pt;}
._3{margin-left:-2.231637pt;}
._6{margin-left:-1.083938pt;}
._23{width:1.752552pt;}
._1a{width:2.645447pt;}
._22{width:3.612416pt;}
._28{width:4.978178pt;}
._20{width:6.369466pt;}
._25{width:7.268512pt;}
._24{width:8.661929pt;}
._a{width:12.114603pt;}
._1c{width:14.856329pt;}
._15{width:17.018889pt;}
._13{width:18.554470pt;}
._9{width:19.638409pt;}
._7{width:20.945510pt;}
._8{width:22.507657pt;}
._e{width:23.527834pt;}
._d{width:24.994338pt;}
._10{width:26.078276pt;}
._1b{width:27.330829pt;}
._14{width:28.820002pt;}
._21{width:29.967701pt;}
._16{width:31.179162pt;}
._4{width:32.836949pt;}
._27{width:33.729604pt;}
._5{width:34.749781pt;}
._1d{width:35.897481pt;}
._19{width:37.363985pt;}
._1e{width:38.407910pt;}
._f{width:39.723145pt;}
._1f{width:41.922898pt;}
._11{width:44.970223pt;}
._18{width:47.501995pt;}
._c{width:51.008853pt;}
._26{width:52.156553pt;}
._12{width:54.260668pt;}
._1{width:575.469458pt;}
._0{width:815.073923pt;}
.fs8{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs7{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs6{font-size:69.074667pt;}
.fs0{font-size:74.387733pt;}
.fs4{font-size:85.014400pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:48.261333pt;}
.y52{bottom:71.972000pt;}
.y17{bottom:82.534667pt;}
.y1b{bottom:82.554667pt;}
.y104{bottom:88.777333pt;}
.y8d{bottom:93.170667pt;}
.y51{bottom:94.053333pt;}
.y36{bottom:95.458667pt;}
.y6c{bottom:96.364000pt;}
.y16{bottom:97.198667pt;}
.y1a{bottom:97.220000pt;}
.ya5{bottom:108.197333pt;}
.yec{bottom:109.506667pt;}
.y15{bottom:111.864000pt;}
.y19{bottom:111.885333pt;}
.y103{bottom:117.669333pt;}
.yda{bottom:119.680000pt;}
.y35{bottom:124.349333pt;}
.y6b{bottom:125.254667pt;}
.y18{bottom:126.549333pt;}
.y8c{bottom:130.194667pt;}
.yca{bottom:131.938667pt;}
.yeb{bottom:132.421333pt;}
.ya4{bottom:137.089333pt;}
.ybc{bottom:137.490667pt;}
.y102{bottom:146.561333pt;}
.yd9{bottom:148.572000pt;}
.y50{bottom:150.330667pt;}
.y34{bottom:153.241333pt;}
.y6a{bottom:154.146667pt;}
.yea{bottom:155.336000pt;}
.y8b{bottom:159.086667pt;}
.ybb{bottom:160.404000pt;}
.yc9{bottom:169.830667pt;}
.y101{bottom:175.452000pt;}
.ye9{bottom:178.249333pt;}
.y69{bottom:183.038667pt;}
.yba{bottom:183.318667pt;}
.ya3{bottom:185.761333pt;}
.y8a{bottom:187.978667pt;}
.ya2{bottom:196.696000pt;}
.y33{bottom:199.897333pt;}
.ye8{bottom:201.164000pt;}
.yc8{bottom:202.708000pt;}
.y4f{bottom:203.132000pt;}
.yb9{bottom:206.232000pt;}
.y68{bottom:211.930667pt;}
.yd8{bottom:213.440000pt;}
.y7b{bottom:215.142667pt;}
.y89{bottom:216.870667pt;}
.y100{bottom:222.108000pt;}
.y32{bottom:228.789333pt;}
.yb8{bottom:229.146667pt;}
.y14{bottom:230.557333pt;}
.y4e{bottom:232.024000pt;}
.yd7{bottom:236.354667pt;}
.y118{bottom:240.240000pt;}
.y88{bottom:245.761333pt;}
.ye7{bottom:246.992000pt;}
.yff{bottom:251.000000pt;}
.yc7{bottom:251.578667pt;}
.yb7{bottom:252.061333pt;}
.y13{bottom:252.708000pt;}
.y31{bottom:257.680000pt;}
.y67{bottom:258.585333pt;}
.yd6{bottom:259.268000pt;}
.y4d{bottom:260.916000pt;}
.y117{bottom:262.390667pt;}
.ya1{bottom:272.242667pt;}
.yb6{bottom:274.974667pt;}
.yfe{bottom:279.892000pt;}
.yc6{bottom:280.470667pt;}
.yd5{bottom:282.182667pt;}
.y116{bottom:284.540000pt;}
.y30{bottom:286.572000pt;}
.y66{bottom:287.477333pt;}
.y12{bottom:288.464000pt;}
.y4c{bottom:289.808000pt;}
.y7a{bottom:290.690667pt;}
.y87{bottom:292.417333pt;}
.ye6{bottom:292.820000pt;}
.ya0{bottom:301.134667pt;}
.yd4{bottom:305.096000pt;}
.yfd{bottom:308.782667pt;}
.y11{bottom:310.614667pt;}
.yb5{bottom:315.552000pt;}
.ye5{bottom:315.733333pt;}
.y65{bottom:316.369333pt;}
.y79{bottom:319.581333pt;}
.y115{bottom:320.297333pt;}
.yd3{bottom:328.010667pt;}
.y10{bottom:332.765333pt;}
.y2f{bottom:333.228000pt;}
.yfc{bottom:337.674667pt;}
.ye4{bottom:338.648000pt;}
.yc5{bottom:340.102667pt;}
.y114{bottom:342.446667pt;}
.y9f{bottom:347.790667pt;}
.y78{bottom:348.473333pt;}
.yd2{bottom:350.924000pt;}
.yc4{bottom:351.036000pt;}
.y4b{bottom:354.676000pt;}
.yf{bottom:354.914667pt;}
.ye3{bottom:361.561333pt;}
.y2e{bottom:362.118667pt;}
.yb4{bottom:362.206667pt;}
.y113{bottom:364.597333pt;}
.y64{bottom:365.041333pt;}
.yfb{bottom:366.566667pt;}
.y62{bottom:367.225333pt;}
.y86{bottom:374.496000pt;}
.y61{bottom:375.976000pt;}
.y9e{bottom:376.681333pt;}
.ye{bottom:377.065333pt;}
.y4a{bottom:377.590667pt;}
.y112{bottom:386.746667pt;}
.y63{bottom:386.760000pt;}
.y77{bottom:389.632000pt;}
.y2d{bottom:391.010667pt;}
.yb3{bottom:391.098667pt;}
.yd1{bottom:391.501333pt;}
.y76{bottom:395.129333pt;}
.y85{bottom:397.410667pt;}
.yd{bottom:399.214667pt;}
.y49{bottom:400.504000pt;}
.ye2{bottom:402.138667pt;}
.yc3{bottom:403.838667pt;}
.y9d{bottom:405.573333pt;}
.yfa{bottom:413.221333pt;}
.y2c{bottom:419.902667pt;}
.yb2{bottom:419.990667pt;}
.y84{bottom:420.324000pt;}
.yd0{bottom:420.393333pt;}
.yc{bottom:421.365333pt;}
.y111{bottom:422.504000pt;}
.y48{bottom:423.418667pt;}
.y75{bottom:424.021333pt;}
.ye1{bottom:431.030667pt;}
.yc2{bottom:432.730667pt;}
.y9c{bottom:434.465333pt;}
.yf9{bottom:442.113333pt;}
.y83{bottom:443.238667pt;}
.yb{bottom:443.516000pt;}
.y110{bottom:444.653333pt;}
.y47{bottom:446.332000pt;}
.y74{bottom:447.416000pt;}
.y2b{bottom:448.794667pt;}
.y60{bottom:451.522667pt;}
.y73{bottom:452.912000pt;}
.ya{bottom:465.665333pt;}
.y82{bottom:466.152000pt;}
.yb1{bottom:466.645333pt;}
.y10f{bottom:466.804000pt;}
.y46{bottom:469.246667pt;}
.yf8{bottom:471.005333pt;}
.y2a{bottom:477.685333pt;}
.yc1{bottom:479.385333pt;}
.y5f{bottom:480.414667pt;}
.y72{bottom:481.804000pt;}
.ycf{bottom:484.317333pt;}
.y9{bottom:487.816000pt;}
.y10e{bottom:488.954667pt;}
.y81{bottom:489.066667pt;}
.y45{bottom:492.160000pt;}
.yb0{bottom:495.537333pt;}
.y9b{bottom:498.389333pt;}
.yf7{bottom:499.897333pt;}
.yce{bottom:506.466667pt;}
.y29{bottom:506.577333pt;}
.yc0{bottom:508.277333pt;}
.y8{bottom:509.965333pt;}
.y71{bottom:510.696000pt;}
.y80{bottom:511.981333pt;}
.y44{bottom:515.074667pt;}
.y9a{bottom:520.538667pt;}
.yaf{bottom:524.429333pt;}
.y10d{bottom:524.710667pt;}
.yf6{bottom:528.788000pt;}
.y7{bottom:532.116000pt;}
.y7f{bottom:534.894667pt;}
.ye0{bottom:535.469333pt;}
.ybf{bottom:537.169333pt;}
.y5e{bottom:540.021333pt;}
.ycd{bottom:541.900000pt;}
.y10c{bottom:546.861333pt;}
.y28{bottom:553.233333pt;}
.yae{bottom:553.321333pt;}
.y6{bottom:554.266667pt;}
.y43{bottom:555.650667pt;}
.y99{bottom:555.973333pt;}
.y70{bottom:557.350667pt;}
.yf5{bottom:557.680000pt;}
.y7e{bottom:557.809333pt;}
.ydf{bottom:564.361333pt;}
.ybe{bottom:566.061333pt;}
.ycc{bottom:577.334667pt;}
.y98{bottom:578.122667pt;}
.y27{bottom:582.124000pt;}
.yad{bottom:582.212000pt;}
.y10b{bottom:582.617333pt;}
.y42{bottom:584.542667pt;}
.yde{bottom:593.252000pt;}
.y7d{bottom:598.385333pt;}
.y5{bottom:601.361333pt;}
.yf4{bottom:604.336000pt;}
.y10a{bottom:604.768000pt;}
.y26{bottom:611.016000pt;}
.yac{bottom:611.104000pt;}
.ybd{bottom:612.716000pt;}
.y41{bottom:613.434667pt;}
.y97{bottom:613.557333pt;}
.y5d{bottom:615.568000pt;}
.y6f{bottom:616.450667pt;}
.y109{bottom:626.917333pt;}
.ycb{bottom:634.517333pt;}
.y96{bottom:635.706667pt;}
.y25{bottom:639.908000pt;}
.y5c{bottom:644.460000pt;}
.y7c{bottom:646.312000pt;}
.y108{bottom:649.068000pt;}
.yab{bottom:657.760000pt;}
.y40{bottom:660.089333pt;}
.y6e{bottom:664.378667pt;}
.y24{bottom:668.800000pt;}
.y95{bottom:671.140000pt;}
.y5b{bottom:673.352000pt;}
.y6d{bottom:682.444000pt;}
.yf3{bottom:686.414667pt;}
.yaa{bottom:686.650667pt;}
.y107{bottom:688.981333pt;}
.y4{bottom:692.285333pt;}
.y94{bottom:693.290667pt;}
.ydd{bottom:697.690667pt;}
.yf2{bottom:709.328000pt;}
.y23{bottom:715.454667pt;}
.ya9{bottom:715.542667pt;}
.y3f{bottom:719.190667pt;}
.ydc{bottom:726.582667pt;}
.yf1{bottom:732.242667pt;}
.y3{bottom:737.944000pt;}
.y5a{bottom:738.220000pt;}
.y22{bottom:744.346667pt;}
.y3e{bottom:748.081333pt;}
.y93{bottom:750.473333pt;}
.yf0{bottom:755.157333pt;}
.ydb{bottom:755.474667pt;}
.y59{bottom:761.134667pt;}
.ya8{bottom:764.216000pt;}
.y92{bottom:769.734667pt;}
.y21{bottom:773.238667pt;}
.y2{bottom:773.809333pt;}
.ya7{bottom:775.149333pt;}
.y3d{bottom:776.973333pt;}
.y58{bottom:784.048000pt;}
.yef{bottom:800.985333pt;}
.y20{bottom:802.129333pt;}
.y3c{bottom:805.865333pt;}
.y57{bottom:806.962667pt;}
.y91{bottom:824.028000pt;}
.y56{bottom:829.876000pt;}
.y1f{bottom:831.021333pt;}
.y3b{bottom:834.757333pt;}
.y90{bottom:846.177333pt;}
.yee{bottom:846.813333pt;}
.ya6{bottom:850.697333pt;}
.y55{bottom:852.790667pt;}
.y1e{bottom:859.913333pt;}
.y106{bottom:863.648000pt;}
.yed{bottom:869.726667pt;}
.y54{bottom:875.704000pt;}
.y3a{bottom:881.412000pt;}
.y8f{bottom:881.612000pt;}
.y1d{bottom:888.805333pt;}
.y105{bottom:892.540000pt;}
.y53{bottom:898.618667pt;}
.y8e{bottom:903.761333pt;}
.y39{bottom:910.304000pt;}
.y1c{bottom:935.460000pt;}
.y38{bottom:939.196000pt;}
.y1{bottom:995.040000pt;}
.h6{height:29.535032pt;}
.hc{height:31.880400pt;}
.ha{height:35.413930pt;}
.h1a{height:36.036592pt;}
.hb{height:36.918697pt;}
.he{height:40.426170pt;}
.h13{height:40.431503pt;}
.h1f{height:44.271600pt;}
.h5{height:44.302733pt;}
.h8{height:47.820800pt;}
.h14{height:47.826133pt;}
.h4{height:50.415124pt;}
.h3{height:51.650077pt;}
.h1{height:51.686399pt;}
.h9{height:52.671032pt;}
.hf{height:53.371288pt;}
.h1e{height:55.021733pt;}
.h7{height:57.617181pt;}
.h17{height:58.205733pt;}
.h11{height:66.286733pt;}
.h2{height:66.454100pt;}
.h12{height:69.810133pt;}
.h10{height:75.355288pt;}
.h18{height:90.956800pt;}
.h19{height:91.554133pt;}
.h15{height:98.152400pt;}
.h16{height:101.944400pt;}
.h1b{height:128.907155pt;}
.hd{height:134.695467pt;}
.h1c{height:172.640489pt;}
.h1d{height:178.468067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:80.540000pt;}
.x1{left:94.488000pt;}
.xa{left:105.825333pt;}
.x25{left:110.428000pt;}
.x23{left:115.270667pt;}
.x2{left:120.860000pt;}
.xb{left:121.766667pt;}
.x1a{left:134.338667pt;}
.xc{left:137.706667pt;}
.x10{left:257.516000pt;}
.x20{left:269.836000pt;}
.x18{left:277.344000pt;}
.xf{left:294.738667pt;}
.x11{left:299.378667pt;}
.x22{left:302.020000pt;}
.x1b{left:317.977333pt;}
.x3{left:323.770667pt;}
.x12{left:330.288000pt;}
.x1d{left:331.798667pt;}
.x19{left:341.244000pt;}
.xd{left:342.200000pt;}
.x13{left:343.440000pt;}
.x1e{left:353.530667pt;}
.x4{left:359.188000pt;}
.x14{left:395.266667pt;}
.x24{left:400.029333pt;}
.x9{left:404.014667pt;}
.x1f{left:414.037333pt;}
.x1c{left:445.736000pt;}
.x5{left:462.898667pt;}
.x15{left:464.358667pt;}
.x17{left:482.824000pt;}
.x21{left:487.217333pt;}
.x8{left:497.626667pt;}
.x16{left:503.502667pt;}
.x6{left:561.766667pt;}
.x7{left:582.284000pt;}
}




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