
    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_e78069cbc91a284e02422451.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e22827c2a91598b694d44c77.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5a8f7106dab80294685c6d81.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7c3005f551aae98a7e98747a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_fae4bdf0aa3afbaab69f6b44.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_8a9211535afbb0f5bf4ff52c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_cfd6667ac6b35e36c044af33.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_3939d7493875f4958bd3e3f6.woff2')format("woff");}.ff8{font-family:ff8;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_651e2df7bb9188d4ff782d2d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ca43286e83b5d6205adb056d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.719000;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_b52771c50d958e9ca11ae865.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;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_d8d2e6c49d9489ea6fbf7d2b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.414000;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_7bc20aadf30c55a168feb0d1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.693000;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_3cc487ec12c41968bb772642.woff2')format("woff");}.fff{font-family:fff;line-height:0.462000;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_e5f046c5e53cb732e981f66a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.923000;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);}
.vf{vertical-align:-12.912000px;}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:6.978000px;}
.ve{vertical-align:10.758000px;}
.v8{vertical-align:18.132000px;}
.vc{vertical-align:20.724000px;}
.vb{vertical-align:26.028000px;}
.vd{vertical-align:29.616000px;}
.v9{vertical-align:37.770000px;}
.v12{vertical-align:47.352000px;}
.v4{vertical-align:48.528000px;}
.va{vertical-align:97.734000px;}
.v3{vertical-align:101.142000px;}
.v13{vertical-align:108.726000px;}
.v14{vertical-align:112.710000px;}
.v10{vertical-align:114.108000px;}
.v2{vertical-align:122.658000px;}
.v6{vertical-align:134.286000px;}
.v5{vertical-align:150.348000px;}
.v7{vertical-align:171.864000px;}
.ls4{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.000399px;}
.ls31{letter-spacing:0.000440px;}
.ls0{letter-spacing:0.000512px;}
.ls2d{letter-spacing:0.000538px;}
.ls23{letter-spacing:0.001114px;}
.ls8{letter-spacing:0.001150px;}
.ls27{letter-spacing:0.001200px;}
.ls1c{letter-spacing:0.001300px;}
.ls2f{letter-spacing:0.001866px;}
.ls19{letter-spacing:0.002523px;}
.ls4b{letter-spacing:0.002675px;}
.ls2{letter-spacing:0.002703px;}
.lsc{letter-spacing:0.002759px;}
.ls21{letter-spacing:0.003056px;}
.lsf{letter-spacing:0.003191px;}
.ls24{letter-spacing:0.003206px;}
.ls43{letter-spacing:0.004737px;}
.ls6{letter-spacing:0.004765px;}
.ls41{letter-spacing:0.005831px;}
.ls46{letter-spacing:0.006440px;}
.ls47{letter-spacing:1.946534px;}
.lsd{letter-spacing:2.573487px;}
.lsb{letter-spacing:2.579487px;}
.ls1{letter-spacing:2.982960px;}
.ls13{letter-spacing:2.984915px;}
.ls3c{letter-spacing:2.990915px;}
.ls2a{letter-spacing:2.991226px;}
.ls59{letter-spacing:3.621160px;}
.ls2e{letter-spacing:4.276641px;}
.ls22{letter-spacing:4.394783px;}
.ls1a{letter-spacing:4.400783px;}
.ls1d{letter-spacing:5.344571px;}
.ls54{letter-spacing:5.350571px;}
.ls44{letter-spacing:5.637295px;}
.ls5b{letter-spacing:6.641075px;}
.ls4f{letter-spacing:7.174800px;}
.ls42{letter-spacing:11.953114px;}
.ls51{letter-spacing:11.959114px;}
.lse{letter-spacing:14.942915px;}
.ls3f{letter-spacing:15.935073px;}
.ls11{letter-spacing:15.937473px;}
.ls3a{letter-spacing:15.937695px;}
.ls10{letter-spacing:15.940404px;}
.ls3b{letter-spacing:15.941073px;}
.ls38{letter-spacing:15.943473px;}
.ls30{letter-spacing:16.602538px;}
.ls4c{letter-spacing:17.894534px;}
.ls37{letter-spacing:18.516492px;}
.ls4a{letter-spacing:18.926915px;}
.ls15{letter-spacing:19.919518px;}
.ls25{letter-spacing:19.921473px;}
.ls18{letter-spacing:19.924800px;}
.ls17{letter-spacing:19.925518px;}
.ls40{letter-spacing:19.927114px;}
.lsa{letter-spacing:19.927473px;}
.ls9{letter-spacing:20.512737px;}
.ls4d{letter-spacing:20.518737px;}
.ls16{letter-spacing:22.499487px;}
.ls33{letter-spacing:22.502657px;}
.ls2c{letter-spacing:22.911226px;}
.ls29{letter-spacing:23.287473px;}
.ls3e{letter-spacing:23.413200px;}
.ls28{letter-spacing:23.413473px;}
.ls48{letter-spacing:23.541160px;}
.ls34{letter-spacing:23.547160px;}
.ls55{letter-spacing:25.691464px;}
.ls39{letter-spacing:26.396915px;}
.ls52{letter-spacing:26.402915px;}
.ls32{letter-spacing:27.091473px;}
.ls1b{letter-spacing:27.095518px;}
.ls4e{letter-spacing:27.523473px;}
.ls2b{letter-spacing:27.603226px;}
.ls7{letter-spacing:27.976478px;}
.ls56{letter-spacing:29.681464px;}
.ls5a{letter-spacing:31.286400px;}
.ls26{letter-spacing:34.887600px;}
.ls53{letter-spacing:35.119200px;}
.ls35{letter-spacing:35.137114px;}
.ls57{letter-spacing:35.569300px;}
.ls45{letter-spacing:35.596800px;}
.ls3{letter-spacing:35.865600px;}
.ls5{letter-spacing:39.023831px;}
.ls12{letter-spacing:43.084664px;}
.ls58{letter-spacing:44.431473px;}
.ls50{letter-spacing:52.042800px;}
.ls1f{letter-spacing:70.765473px;}
.ls1e{letter-spacing:93.347123px;}
.ls49{letter-spacing:212.855518px;}
.ls36{letter-spacing:397.625518px;}
.ls3d{letter-spacing:556.436759px;}
.ls14{letter-spacing:824.511191px;}
.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;}
}
.ws47{word-spacing:-71.731200px;}
.ws2f{word-spacing:-56.789591px;}
.ws78{word-spacing:-54.796746px;}
.ws1c{word-spacing:-45.664082px;}
.ws1f{word-spacing:-43.612570px;}
.ws18{word-spacing:-34.000589px;}
.ws13{word-spacing:-32.278875px;}
.ws15{word-spacing:-30.342298px;}
.ws1a{word-spacing:-26.899200px;}
.ws32{word-spacing:-25.794540px;}
.ws60{word-spacing:-22.416000px;}
.ws9{word-spacing:-20.906199px;}
.ws43{word-spacing:-19.510886px;}
.ws19{word-spacing:-19.439155px;}
.ws6e{word-spacing:-19.092327px;}
.ws4c{word-spacing:-14.111859px;}
.ws85{word-spacing:-10.436890px;}
.ws82{word-spacing:-7.531776px;}
.ws63{word-spacing:-6.455775px;}
.wsb9{word-spacing:-4.824730px;}
.ws39{word-spacing:-3.873485px;}
.ws46{word-spacing:-3.579673px;}
.ws57{word-spacing:-3.578077px;}
.ws4d{word-spacing:-3.573673px;}
.ws44{word-spacing:-3.572077px;}
.ws87{word-spacing:-3.543554px;}
.ws8a{word-spacing:-2.654054px;}
.wsa7{word-spacing:-2.474726px;}
.wsa8{word-spacing:-2.151936px;}
.wsb8{word-spacing:-1.938336px;}
.wsba{word-spacing:-1.936742px;}
.ws62{word-spacing:-1.291162px;}
.wsa{word-spacing:-0.890516px;}
.ws41{word-spacing:-0.071731px;}
.ws70{word-spacing:-0.059776px;}
.ws1d{word-spacing:-0.047821px;}
.ws72{word-spacing:-0.041843px;}
.ws17{word-spacing:0.000000px;}
.ws8{word-spacing:0.274909px;}
.ws65{word-spacing:0.358656px;}
.ws2d{word-spacing:0.396117px;}
.ws84{word-spacing:0.410327px;}
.ws9d{word-spacing:0.411923px;}
.ws51{word-spacing:0.430387px;}
.wsb{word-spacing:0.798546px;}
.ws53{word-spacing:0.992400px;}
.ws92{word-spacing:0.993600px;}
.ws4{word-spacing:0.994910px;}
.ws7b{word-spacing:0.999600px;}
.wsc5{word-spacing:1.004237px;}
.wsa4{word-spacing:1.147699px;}
.ws3b{word-spacing:1.344563px;}
.ws3d{word-spacing:1.362893px;}
.ws66{word-spacing:1.506355px;}
.wsbb{word-spacing:1.578086px;}
.ws5a{word-spacing:1.592428px;}
.ws7c{word-spacing:1.649818px;}
.ws4a{word-spacing:2.223667px;}
.ws20{word-spacing:2.259533px;}
.ws6c{word-spacing:2.367130px;}
.ws5c{word-spacing:2.725786px;}
.wsb4{word-spacing:2.869248px;}
.ws2b{word-spacing:3.012710px;}
.ws73{word-spacing:3.299613px;}
.ws94{word-spacing:3.299635px;}
.ws74{word-spacing:3.359389px;}
.ws12{word-spacing:3.613094px;}
.wsc{word-spacing:3.744003px;}
.ws6f{word-spacing:3.801728px;}
.ws2a{word-spacing:3.801754px;}
.ws1b{word-spacing:3.873485px;}
.ws27{word-spacing:3.881265px;}
.ws90{word-spacing:3.890959px;}
.ws30{word-spacing:3.895676px;}
.ws24{word-spacing:3.945216px;}
.ws5b{word-spacing:4.303872px;}
.wsbd{word-spacing:4.375603px;}
.ws14{word-spacing:4.483200px;}
.wsc6{word-spacing:4.519066px;}
.ws55{word-spacing:4.590797px;}
.ws2{word-spacing:4.648169px;}
.wsaa{word-spacing:4.662528px;}
.wsbf{word-spacing:4.877722px;}
.ws68{word-spacing:5.092915px;}
.ws9a{word-spacing:5.164646px;}
.ws75{word-spacing:5.236378px;}
.ws22{word-spacing:5.379825px;}
.ws25{word-spacing:5.451571px;}
.ws40{word-spacing:5.595034px;}
.ws8b{word-spacing:5.666765px;}
.ws64{word-spacing:5.881958px;}
.ws48{word-spacing:6.097152px;}
.wsd{word-spacing:6.126746px;}
.wsf{word-spacing:6.165823px;}
.ws76{word-spacing:6.384077px;}
.ws21{word-spacing:6.455775px;}
.ws3a{word-spacing:6.455808px;}
.ws3e{word-spacing:6.527539px;}
.wsab{word-spacing:6.599270px;}
.ws42{word-spacing:6.671002px;}
.ws11{word-spacing:6.689460px;}
.wse{word-spacing:7.108370px;}
.ws3{word-spacing:7.147642px;}
.ws7f{word-spacing:7.173120px;}
.ws23{word-spacing:7.244851px;}
.ws10{word-spacing:7.409461px;}
.ws8d{word-spacing:7.512013px;}
.ws95{word-spacing:7.531776px;}
.ws98{word-spacing:7.578732px;}
.ws0{word-spacing:7.748438px;}
.ws36{word-spacing:7.962163px;}
.ws2c{word-spacing:8.225871px;}
.wsb3{word-spacing:8.276893px;}
.ws9f{word-spacing:8.320819px;}
.wsa0{word-spacing:8.392550px;}
.wsa5{word-spacing:8.536013px;}
.ws1{word-spacing:8.607720px;}
.wsbc{word-spacing:9.079200px;}
.wsac{word-spacing:9.576115px;}
.ws79{word-spacing:9.755443px;}
.ws2e{word-spacing:10.140370px;}
.wsa9{word-spacing:10.185830px;}
.ws67{word-spacing:10.498986px;}
.ws8c{word-spacing:10.844160px;}
.wsb5{word-spacing:11.190067px;}
.wsc3{word-spacing:11.333530px;}
.ws26{word-spacing:11.548723px;}
.wsb7{word-spacing:11.692186px;}
.ws5d{word-spacing:11.698986px;}
.ws35{word-spacing:11.700632px;}
.ws33{word-spacing:11.704986px;}
.ws77{word-spacing:11.763917px;}
.ws45{word-spacing:12.281971px;}
.ws58{word-spacing:12.287971px;}
.wsbe{word-spacing:12.337766px;}
.ws7{word-spacing:12.449465px;}
.wsc4{word-spacing:12.624691px;}
.ws6a{word-spacing:12.839885px;}
.wsb6{word-spacing:12.983347px;}
.wsa1{word-spacing:13.126810px;}
.ws5{word-spacing:13.359678px;}
.ws59{word-spacing:13.417920px;}
.wsc1{word-spacing:14.059315px;}
.ws6{word-spacing:14.308376px;}
.ws61{word-spacing:14.707920px;}
.ws50{word-spacing:15.350477px;}
.wsc0{word-spacing:16.175386px;}
.ws16{word-spacing:16.354714px;}
.wsad{word-spacing:17.661600px;}
.ws4f{word-spacing:17.681741px;}
.ws54{word-spacing:18.715920px;}
.ws86{word-spacing:18.880865px;}
.ws81{word-spacing:19.454128px;}
.ws9c{word-spacing:20.306500px;}
.wsae{word-spacing:22.845068px;}
.ws49{word-spacing:22.855273px;}
.ws4b{word-spacing:22.856420px;}
.ws8e{word-spacing:22.859850px;}
.ws91{word-spacing:22.860771px;}
.ws56{word-spacing:22.862420px;}
.ws3c{word-spacing:22.864865px;}
.wsa6{word-spacing:22.866020px;}
.ws7d{word-spacing:22.874488px;}
.ws80{word-spacing:22.887556px;}
.ws83{word-spacing:23.438638px;}
.ws97{word-spacing:24.290500px;}
.ws9b{word-spacing:24.296500px;}
.wsb0{word-spacing:24.583065px;}
.ws96{word-spacing:24.598538px;}
.ws7a{word-spacing:24.604538px;}
.ws8f{word-spacing:26.345073px;}
.ws38{word-spacing:26.350865px;}
.wsa2{word-spacing:26.351073px;}
.ws31{word-spacing:26.376370px;}
.ws6b{word-spacing:26.688278px;}
.ws34{word-spacing:28.151871px;}
.ws3f{word-spacing:28.918865px;}
.ws28{word-spacing:31.637871px;}
.ws6d{word-spacing:50.665799px;}
.ws1e{word-spacing:52.005120px;}
.ws37{word-spacing:69.937725px;}
.ws71{word-spacing:76.429082px;}
.ws52{word-spacing:78.780732px;}
.wsc2{word-spacing:83.925075px;}
.ws69{word-spacing:88.157971px;}
.ws5f{word-spacing:96.336732px;}
.ws4e{word-spacing:105.713971px;}
.ws5e{word-spacing:123.275971px;}
.wsb1{word-spacing:219.665971px;}
.ws9e{word-spacing:296.967168px;}
.ws88{word-spacing:409.513421px;}
.wsa3{word-spacing:440.070912px;}
.ws99{word-spacing:463.742208px;}
.wsb2{word-spacing:464.387789px;}
.ws93{word-spacing:611.795405px;}
.ws89{word-spacing:643.930982px;}
.wsaf{word-spacing:867.727065px;}
.ws7e{word-spacing:967.366963px;}
.ws29{word-spacing:1133.369871px;}
._21{margin-left:-69.005414px;}
._3e{margin-left:-45.619347px;}
._12{margin-left:-40.848248px;}
._20{margin-left:-36.974764px;}
._f{margin-left:-35.865600px;}
._19{margin-left:-33.928858px;}
._3f{margin-left:-32.698204px;}
._40{margin-left:-26.881191px;}
._11{margin-left:-13.308808px;}
._2{margin-left:-11.653650px;}
._3a{margin-left:-9.709486px;}
._33{margin-left:-8.091257px;}
._a{margin-left:-6.244564px;}
._3{margin-left:-5.225130px;}
._0{margin-left:-3.843225px;}
._24{margin-left:-2.756039px;}
._4{margin-left:-1.691295px;}
._5{width:1.691295px;}
._c{width:2.710016px;}
._1{width:3.843225px;}
._50{width:4.926634px;}
._35{width:6.079563px;}
._26{width:10.031737px;}
._39{width:11.043423px;}
._52{width:16.009632px;}
._1d{width:19.054195px;}
._3d{width:20.156467px;}
._9{width:21.861836px;}
._15{width:23.384371px;}
._2c{width:24.418862px;}
._2b{width:26.970931px;}
._8{width:28.014569px;}
._37{width:29.328914px;}
._6{width:31.094459px;}
._36{width:32.139515px;}
._3c{width:33.857126px;}
._10{width:35.937331px;}
._4f{width:37.402209px;}
._3b{width:38.466222px;}
._b{width:40.374964px;}
._1e{width:43.858017px;}
._17{width:45.232133px;}
._22{width:48.142853px;}
._53{width:49.532681px;}
._27{width:50.713958px;}
._38{width:52.138249px;}
._34{width:53.870131px;}
._7{width:55.570955px;}
._29{width:56.852588px;}
._41{width:58.642467px;}
._1b{width:61.590797px;}
._d{width:64.988467px;}
._2f{width:68.318356px;}
._28{width:70.772390px;}
._14{width:71.802931px;}
._32{width:96.836850px;}
._4c{width:99.621996px;}
._13{width:107.309875px;}
._2e{width:108.918215px;}
._44{width:110.646603px;}
._31{width:116.203950px;}
._16{width:142.444089px;}
._43{width:152.630926px;}
._45{width:161.854738px;}
._4b{width:280.899821px;}
._4d{width:310.952671px;}
._48{width:340.840471px;}
._4a{width:354.788086px;}
._47{width:361.010726px;}
._42{width:410.180167px;}
._46{width:426.259804px;}
._49{width:456.147604px;}
._2d{width:515.532134px;}
._2a{width:607.276339px;}
._4e{width:636.111345px;}
._1f{width:736.290514px;}
._18{width:863.602171px;}
._51{width:946.039852px;}
._1a{width:949.438113px;}
._25{width:986.825149px;}
._23{width:1255.839596px;}
._e{width:1268.883451px;}
._1c{width:1506.959303px;}
._30{width:2135.581286px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y18{bottom:63.168000px;}
.y17{bottom:108.000000px;}
.y4d{bottom:120.589500px;}
.ydf{bottom:128.734500px;}
.y11d{bottom:133.116000px;}
.y61{bottom:134.890500px;}
.y78{bottom:138.835500px;}
.ycb{bottom:138.882000px;}
.y2d{bottom:142.551000px;}
.y16{bottom:152.449500px;}
.y11c{bottom:160.006500px;}
.y10a{bottom:161.781000px;}
.y4c{bottom:162.423000px;}
.yf3{bottom:164.094000px;}
.yde{bottom:173.184000px;}
.yca{bottom:180.717000px;}
.y2c{bottom:187.002000px;}
.ya0{bottom:190.921500px;}
.yf2{bottom:190.986000px;}
.y8e{bottom:193.009500px;}
.y15{bottom:196.900500px;}
.y60{bottom:197.098500px;}
.y77{bottom:198.229500px;}
.ydd{bottom:200.076000px;}
.y11b{bottom:219.400500px;}
.y4b{bottom:221.817000px;}
.yc9{bottom:222.550500px;}
.y109{bottom:223.990500px;}
.ydc{bottom:226.966500px;}
.y2b{bottom:231.451500px;}
.y14{bottom:241.350000px;}
.y76{bottom:242.679000px;}
.y11a{bottom:246.291000px;}
.yf1{bottom:247.017000px;}
.y8d{bottom:251.128500px;}
.yc8{bottom:264.385500px;}
.y108{bottom:264.790500px;}
.y9f{bottom:266.023500px;}
.y75{bottom:269.569500px;}
.y2a{bottom:275.901000px;}
.y12e{bottom:276.385500px;}
.y4a{bottom:277.849500px;}
.y5f{bottom:281.007000px;}
.ydb{bottom:282.997500px;}
.y119{bottom:288.126000px;}
.y9e{bottom:292.914000px;}
.y12d{bottom:303.277500px;}
.y8c{bottom:305.532000px;}
.y5e{bottom:307.899000px;}
.y118{bottom:315.016500px;}
.yf0{bottom:317.449500px;}
.y8b{bottom:317.833500px;}
.y29{bottom:320.350500px;}
.y13{bottom:321.117000px;}
.yc7{bottom:323.779500px;}
.y74{bottom:325.602000px;}
.yef{bottom:329.751000px;}
.yb3{bottom:342.766500px;}
.y5d{bottom:346.881000px;}
.y107{bottom:348.904500px;}
.y49{bottom:353.883000px;}
.y9d{bottom:355.123500px;}
.yda{bottom:359.032500px;}
.y28{bottom:364.800000px;}
.y12c{bottom:365.485500px;}
.y8a{bottom:370.450500px;}
.y5c{bottom:373.771500px;}
.y117{bottom:374.410500px;}
.y106{bottom:375.795000px;}
.yc6{bottom:379.810500px;}
.yee{bottom:382.368000px;}
.yb2{bottom:387.216000px;}
.y48{bottom:400.200000px;}
.y73{bottom:401.635500px;}
.y105{bottom:402.685500px;}
.y12{bottom:406.123500px;}
.yd9{bottom:408.177000px;}
.y47{bottom:412.501500px;}
.y5b{bottom:412.753500px;}
.yb1{bottom:414.108000px;}
.y27{bottom:426.810000px;}
.y89{bottom:428.569500px;}
.y116{bottom:430.441500px;}
.y11{bottom:431.344500px;}
.yed{bottom:438.463500px;}
.y9c{bottom:439.573500px;}
.y5a{bottom:439.644000px;}
.yb0{bottom:440.998500px;}
.yc5{bottom:450.811500px;}
.y12b{bottom:450.867000px;}
.y88{bottom:455.460000px;}
.y10{bottom:456.567000px;}
.y104{bottom:456.747000px;}
.yc4{bottom:463.113000px;}
.y72{bottom:463.843500px;}
.yaf{bottom:467.889000px;}
.y46{bottom:471.120000px;}
.yd8{bottom:474.882000px;}
.y12a{bottom:477.759000px;}
.yec{bottom:479.197500px;}
.yf{bottom:481.788000px;}
.y9b{bottom:484.023000px;}
.y103{bottom:488.655000px;}
.y26{bottom:488.818500px;}
.y59{bottom:490.479000px;}
.yae{bottom:494.779500px;}
.y87{bottom:496.870500px;}
.y45{bottom:498.010500px;}
.y115{bottom:506.475000px;}
.ye{bottom:507.010500px;}
.y9a{bottom:510.913500px;}
.yc3{bottom:514.933500px;}
.y102{bottom:515.547000px;}
.y129{bottom:519.594000px;}
.yd7{bottom:524.026500px;}
.y44{bottom:524.901000px;}
.yd{bottom:532.231500px;}
.y25{bottom:533.268000px;}
.y114{bottom:533.367000px;}
.yeb{bottom:535.293000px;}
.yc2{bottom:541.824000px;}
.y128{bottom:546.484500px;}
.y58{bottom:546.511500px;}
.y71{bottom:549.226500px;}
.yad{bottom:550.812000px;}
.y101{bottom:554.926500px;}
.y86{bottom:554.989500px;}
.yc{bottom:557.454000px;}
.y113{bottom:560.257500px;}
.y99{bottom:564.892500px;}
.y24{bottom:577.717500px;}
.y43{bottom:580.933500px;}
.yb{bottom:582.675000px;}
.yd6{bottom:583.420500px;}
.yea{bottom:591.324000px;}
.y100{bottom:594.307500px;}
.yc1{bottom:597.856500px;}
.y85{bottom:599.439000px;}
.y98{bottom:604.921500px;}
.y127{bottom:605.878500px;}
.ya{bottom:607.897500px;}
.y70{bottom:608.620500px;}
.yac{bottom:618.325500px;}
.y112{bottom:619.651500px;}
.y57{bottom:621.072000px;}
.y23{bottom:622.168500px;}
.yd5{bottom:625.255500px;}
.yab{bottom:630.625500px;}
.y126{bottom:632.769000px;}
.y9{bottom:633.118500px;}
.yff{bottom:633.688500px;}
.y6f{bottom:635.511000px;}
.y84{bottom:655.470000px;}
.y42{bottom:656.967000px;}
.y37{bottom:657.285000px;}
.y97{bottom:658.900500px;}
.y56{bottom:660.054000px;}
.yfe{bottom:660.579000px;}
.y111{bottom:661.486500px;}
.ye9{bottom:666.790500px;}
.yd4{bottom:667.090500px;}
.yc0{bottom:673.890000px;}
.y6e{bottom:677.346000px;}
.y8{bottom:681.876000px;}
.yaa{bottom:683.244000px;}
.y41{bottom:683.857500px;}
.y22{bottom:684.177000px;}
.y125{bottom:694.977000px;}
.y55{bottom:699.036000px;}
.ybf{bottom:700.780500px;}
.y40{bottom:710.748000px;}
.y96{bottom:713.304000px;}
.ye8{bottom:715.935000px;}
.yfd{bottom:716.610000px;}
.y6d{bottom:719.181000px;}
.y36{bottom:719.295000px;}
.y110{bottom:720.879000px;}
.y95{bottom:725.605500px;}
.yd3{bottom:726.484500px;}
.ybe{bottom:727.671000px;}
.y21{bottom:728.626500px;}
.y83{bottom:731.286000px;}
.y3f{bottom:737.640000px;}
.y54{bottom:738.018000px;}
.ya9{bottom:739.495500px;}
.ye7{bottom:742.825500px;}
.ya8{bottom:751.797000px;}
.ybd{bottom:754.563000px;}
.y7{bottom:757.686000px;}
.y10f{bottom:757.723500px;}
.y82{bottom:758.176500px;}
.y6c{bottom:761.016000px;}
.y35{bottom:763.744500px;}
.y10e{bottom:770.025000px;}
.yd2{bottom:770.934000px;}
.y20{bottom:773.076000px;}
.y94{bottom:778.224000px;}
.y124{bottom:780.360000px;}
.yfc{bottom:785.695500px;}
.y3e{bottom:793.671000px;}
.y53{bottom:794.049000px;}
.yd1{bottom:797.824500px;}
.yfb{bottom:797.997000px;}
.ye6{bottom:798.858000px;}
.ya7{bottom:805.377000px;}
.y123{bottom:807.250500px;}
.y34{bottom:808.194000px;}
.y81{bottom:816.295500px;}
.ybc{bottom:816.771000px;}
.y1f{bottom:817.525500px;}
.y6{bottom:819.694500px;}
.y6b{bottom:820.408500px;}
.y93{bottom:821.749500px;}
.y10d{bottom:825.132000px;}
.y92{bottom:834.051000px;}
.y122{bottom:834.141000px;}
.ya6{bottom:849.826500px;}
.y33{bottom:852.643500px;}
.yd0{bottom:853.855500px;}
.yfa{bottom:855.841500px;}
.y80{bottom:857.704500px;}
.y6a{bottom:859.300500px;}
.y52{bottom:868.609500px;}
.y3d{bottom:869.704500px;}
.y69{bottom:871.602000px;}
.y10c{bottom:874.278000px;}
.ye5{bottom:874.323000px;}
.ya5{bottom:876.717000px;}
.y1e{bottom:879.535500px;}
.yf9{bottom:882.732000px;}
.y91{bottom:883.195500px;}
.y121{bottom:893.535000px;}
.y5{bottom:896.974500px;}
.ye4{bottom:901.215000px;}
.ybb{bottom:905.923500px;}
.y3c{bottom:911.539500px;}
.y51{bottom:913.059000px;}
.y32{bottom:914.653500px;}
.y7f{bottom:915.823500px;}
.y120{bottom:920.425500px;}
.y90{bottom:923.226000px;}
.y68{bottom:923.422500px;}
.yba{bottom:923.857500px;}
.y1d{bottom:923.985000px;}
.yf8{bottom:927.181500px;}
.ye3{bottom:928.105500px;}
.ycf{bottom:929.890500px;}
.y4{bottom:930.355500px;}
.ya4{bottom:932.748000px;}
.yb9{bottom:941.790000px;}
.y10b{bottom:950.314500px;}
.yf7{bottom:954.073500px;}
.y31{bottom:959.103000px;}
.yb8{bottom:959.722500px;}
.y7e{bottom:960.027000px;}
.y11f{bottom:962.260500px;}
.y3{bottom:963.738000px;}
.y67{bottom:967.872000px;}
.yce{bottom:968.835000px;}
.y3b{bottom:970.933500px;}
.y7d{bottom:972.328500px;}
.y50{bottom:975.267000px;}
.y8f{bottom:977.205000px;}
.yb7{bottom:977.655000px;}
.y1c{bottom:985.993500px;}
.y11e{bottom:989.151000px;}
.ye2{bottom:990.313500px;}
.y66{bottom:994.764000px;}
.y3a{bottom:997.824000px;}
.y7c{bottom:1000.897500px;}
.y30{bottom:1003.552500px;}
.yb6{bottom:1004.572500px;}
.ya3{bottom:1008.783000px;}
.y2{bottom:1010.101500px;}
.yf6{bottom:1010.104500px;}
.ycd{bottom:1010.517000px;}
.y65{bottom:1021.654500px;}
.yb5{bottom:1022.505000px;}
.ycc{bottom:1022.818500px;}
.y7b{bottom:1027.789500px;}
.y1b{bottom:1030.443000px;}
.ya2{bottom:1035.673500px;}
.yb4{bottom:1046.463000px;}
.y2f{bottom:1048.002000px;}
.y64{bottom:1048.545000px;}
.y39{bottom:1053.856500px;}
.y1{bottom:1056.465000px;}
.y4f{bottom:1059.175500px;}
.ye1{bottom:1065.876000px;}
.y1a{bottom:1074.892500px;}
.y63{bottom:1075.435500px;}
.y7a{bottom:1075.455000px;}
.ya1{bottom:1077.508500px;}
.ye0{bottom:1078.177500px;}
.yf5{bottom:1080.436500px;}
.yf4{bottom:1084.870500px;}
.y4e{bottom:1086.066000px;}
.y79{bottom:1087.756500px;}
.y2e{bottom:1092.451500px;}
.y38{bottom:1126.275000px;}
.y62{bottom:1131.468000px;}
.y19{bottom:1136.902500px;}
.h14{height:44.831700px;}
.h4{height:49.090950px;}
.h1c{height:49.781453px;}
.h6{height:53.798400px;}
.hd{height:59.406779px;}
.h1a{height:59.412779px;}
.h11{height:62.994779px;}
.h3{height:64.557900px;}
.h7{height:68.144640px;}
.ha{height:71.930400px;}
.h1b{height:72.728400px;}
.h5{height:77.469300px;}
.h17{height:80.730779px;}
.h2{height:92.981250px;}
.h12{height:102.320400px;}
.hb{height:102.326400px;}
.h13{height:102.998400px;}
.h10{height:103.004400px;}
.he{height:107.934779px;}
.h18{height:111.595248px;}
.hf{height:112.200779px;}
.h19{height:115.579248px;}
.h15{height:116.977248px;}
.h8{height:125.527248px;}
.h16{height:151.526400px;}
.hc{height:151.532400px;}
.h9{height:174.733248px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:108.000000px;}
.x3f{left:116.779500px;}
.x22{left:121.920000px;}
.x11{left:129.460500px;}
.x4{left:130.785000px;}
.xc{left:134.338500px;}
.x1{left:137.688000px;}
.x40{left:144.093000px;}
.x2{left:147.552000px;}
.xa{left:151.897500px;}
.x37{left:171.660000px;}
.x9{left:176.443500px;}
.x38{left:190.527000px;}
.x32{left:218.331000px;}
.x21{left:223.461000px;}
.x1f{left:229.317000px;}
.x2c{left:237.693000px;}
.x1b{left:243.976500px;}
.x17{left:245.928000px;}
.x34{left:254.118000px;}
.x5{left:259.351500px;}
.x28{left:267.753000px;}
.x23{left:288.672000px;}
.x2d{left:296.287500px;}
.x33{left:297.297000px;}
.x20{left:315.855000px;}
.x29{left:322.212000px;}
.x1d{left:324.411000px;}
.x6{left:328.815000px;}
.x30{left:331.479000px;}
.x19{left:333.843000px;}
.xf{left:336.562500px;}
.x18{left:338.752500px;}
.x1c{left:341.191500px;}
.x26{left:352.869000px;}
.x39{left:354.982500px;}
.x3{left:363.097500px;}
.x7{left:364.663500px;}
.x13{left:367.210500px;}
.x3a{left:371.395500px;}
.x2f{left:375.693000px;}
.x2b{left:377.163000px;}
.x2a{left:379.572000px;}
.x27{left:381.793500px;}
.x31{left:388.839000px;}
.x1e{left:399.960000px;}
.x1a{left:405.003000px;}
.x2e{left:407.178000px;}
.x8{left:410.455500px;}
.xe{left:411.723000px;}
.x24{left:412.903500px;}
.x35{left:427.408500px;}
.x14{left:438.130500px;}
.xd{left:442.066500px;}
.x36{left:465.772500px;}
.x15{left:491.302500px;}
.x12{left:492.873000px;}
.x10{left:494.265000px;}
.x25{left:579.655500px;}
.x3b{left:718.698000px;}
.x3d{left:733.546500px;}
.x3c{left:758.962500px;}
.x16{left:762.477000px;}
.x3e{left:766.719000px;}
@media print{
.vf{vertical-align:-11.477333pt;}
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:6.202667pt;}
.ve{vertical-align:9.562667pt;}
.v8{vertical-align:16.117333pt;}
.vc{vertical-align:18.421333pt;}
.vb{vertical-align:23.136000pt;}
.vd{vertical-align:26.325333pt;}
.v9{vertical-align:33.573333pt;}
.v12{vertical-align:42.090667pt;}
.v4{vertical-align:43.136000pt;}
.va{vertical-align:86.874667pt;}
.v3{vertical-align:89.904000pt;}
.v13{vertical-align:96.645333pt;}
.v14{vertical-align:100.186667pt;}
.v10{vertical-align:101.429333pt;}
.v2{vertical-align:109.029333pt;}
.v6{vertical-align:119.365333pt;}
.v5{vertical-align:133.642667pt;}
.v7{vertical-align:152.768000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.000355pt;}
.ls31{letter-spacing:0.000391pt;}
.ls0{letter-spacing:0.000455pt;}
.ls2d{letter-spacing:0.000479pt;}
.ls23{letter-spacing:0.000990pt;}
.ls8{letter-spacing:0.001022pt;}
.ls27{letter-spacing:0.001067pt;}
.ls1c{letter-spacing:0.001155pt;}
.ls2f{letter-spacing:0.001659pt;}
.ls19{letter-spacing:0.002243pt;}
.ls4b{letter-spacing:0.002377pt;}
.ls2{letter-spacing:0.002403pt;}
.lsc{letter-spacing:0.002452pt;}
.ls21{letter-spacing:0.002717pt;}
.lsf{letter-spacing:0.002836pt;}
.ls24{letter-spacing:0.002850pt;}
.ls43{letter-spacing:0.004210pt;}
.ls6{letter-spacing:0.004236pt;}
.ls41{letter-spacing:0.005183pt;}
.ls46{letter-spacing:0.005724pt;}
.ls47{letter-spacing:1.730253pt;}
.lsd{letter-spacing:2.287544pt;}
.lsb{letter-spacing:2.292878pt;}
.ls1{letter-spacing:2.651520pt;}
.ls13{letter-spacing:2.653258pt;}
.ls3c{letter-spacing:2.658591pt;}
.ls2a{letter-spacing:2.658868pt;}
.ls59{letter-spacing:3.218809pt;}
.ls2e{letter-spacing:3.801458pt;}
.ls22{letter-spacing:3.906474pt;}
.ls1a{letter-spacing:3.911807pt;}
.ls1d{letter-spacing:4.750730pt;}
.ls54{letter-spacing:4.756063pt;}
.ls44{letter-spacing:5.010929pt;}
.ls5b{letter-spacing:5.903177pt;}
.ls4f{letter-spacing:6.377600pt;}
.ls42{letter-spacing:10.624990pt;}
.ls51{letter-spacing:10.630323pt;}
.lse{letter-spacing:13.282591pt;}
.ls3f{letter-spacing:14.164509pt;}
.ls11{letter-spacing:14.166642pt;}
.ls3a{letter-spacing:14.166840pt;}
.ls10{letter-spacing:14.169248pt;}
.ls3b{letter-spacing:14.169842pt;}
.ls38{letter-spacing:14.171976pt;}
.ls30{letter-spacing:14.757812pt;}
.ls4c{letter-spacing:15.906253pt;}
.ls37{letter-spacing:16.459104pt;}
.ls4a{letter-spacing:16.823925pt;}
.ls15{letter-spacing:17.706238pt;}
.ls25{letter-spacing:17.707976pt;}
.ls18{letter-spacing:17.710933pt;}
.ls17{letter-spacing:17.711572pt;}
.ls40{letter-spacing:17.712990pt;}
.lsa{letter-spacing:17.713309pt;}
.ls9{letter-spacing:18.233544pt;}
.ls4d{letter-spacing:18.238877pt;}
.ls16{letter-spacing:19.999544pt;}
.ls33{letter-spacing:20.002362pt;}
.ls2c{letter-spacing:20.365534pt;}
.ls29{letter-spacing:20.699976pt;}
.ls3e{letter-spacing:20.811733pt;}
.ls28{letter-spacing:20.811976pt;}
.ls48{letter-spacing:20.925476pt;}
.ls34{letter-spacing:20.930809pt;}
.ls55{letter-spacing:22.836857pt;}
.ls39{letter-spacing:23.463925pt;}
.ls52{letter-spacing:23.469258pt;}
.ls32{letter-spacing:24.081309pt;}
.ls1b{letter-spacing:24.084905pt;}
.ls4e{letter-spacing:24.465309pt;}
.ls2b{letter-spacing:24.536201pt;}
.ls7{letter-spacing:24.867980pt;}
.ls56{letter-spacing:26.383524pt;}
.ls5a{letter-spacing:27.810133pt;}
.ls26{letter-spacing:31.011200pt;}
.ls53{letter-spacing:31.217067pt;}
.ls35{letter-spacing:31.232990pt;}
.ls57{letter-spacing:31.617155pt;}
.ls45{letter-spacing:31.641600pt;}
.ls3{letter-spacing:31.880533pt;}
.ls5{letter-spacing:34.687850pt;}
.ls12{letter-spacing:38.297479pt;}
.ls58{letter-spacing:39.494642pt;}
.ls50{letter-spacing:46.260267pt;}
.ls1f{letter-spacing:62.902642pt;}
.ls1e{letter-spacing:82.975220pt;}
.ls49{letter-spacing:189.204905pt;}
.ls36{letter-spacing:353.444905pt;}
.ls3d{letter-spacing:494.610452pt;}
.ls14{letter-spacing:732.898836pt;}
.ws47{word-spacing:-63.761067pt;}
.ws2f{word-spacing:-50.479636pt;}
.ws78{word-spacing:-48.708218pt;}
.ws1c{word-spacing:-40.590295pt;}
.ws1f{word-spacing:-38.766729pt;}
.ws18{word-spacing:-30.222746pt;}
.ws13{word-spacing:-28.692333pt;}
.ws15{word-spacing:-26.970931pt;}
.ws1a{word-spacing:-23.910400pt;}
.ws32{word-spacing:-22.928480pt;}
.ws60{word-spacing:-19.925333pt;}
.ws9{word-spacing:-18.583288pt;}
.ws43{word-spacing:-17.343010pt;}
.ws19{word-spacing:-17.279249pt;}
.ws6e{word-spacing:-16.970957pt;}
.ws4c{word-spacing:-12.543875pt;}
.ws85{word-spacing:-9.277235pt;}
.ws82{word-spacing:-6.694912pt;}
.ws63{word-spacing:-5.738467pt;}
.wsb9{word-spacing:-4.288649pt;}
.ws39{word-spacing:-3.443098pt;}
.ws46{word-spacing:-3.181932pt;}
.ws57{word-spacing:-3.180513pt;}
.ws4d{word-spacing:-3.176598pt;}
.ws44{word-spacing:-3.175180pt;}
.ws87{word-spacing:-3.149826pt;}
.ws8a{word-spacing:-2.359159pt;}
.wsa7{word-spacing:-2.199757pt;}
.wsa8{word-spacing:-1.912832pt;}
.wsb8{word-spacing:-1.722965pt;}
.wsba{word-spacing:-1.721549pt;}
.ws62{word-spacing:-1.147699pt;}
.wsa{word-spacing:-0.791570pt;}
.ws41{word-spacing:-0.063761pt;}
.ws70{word-spacing:-0.053134pt;}
.ws1d{word-spacing:-0.042507pt;}
.ws72{word-spacing:-0.037194pt;}
.ws17{word-spacing:0.000000pt;}
.ws8{word-spacing:0.244364pt;}
.ws65{word-spacing:0.318805pt;}
.ws2d{word-spacing:0.352104pt;}
.ws84{word-spacing:0.364735pt;}
.ws9d{word-spacing:0.366153pt;}
.ws51{word-spacing:0.382566pt;}
.wsb{word-spacing:0.709819pt;}
.ws53{word-spacing:0.882133pt;}
.ws92{word-spacing:0.883200pt;}
.ws4{word-spacing:0.884364pt;}
.ws7b{word-spacing:0.888533pt;}
.wsc5{word-spacing:0.892655pt;}
.wsa4{word-spacing:1.020177pt;}
.ws3b{word-spacing:1.195167pt;}
.ws3d{word-spacing:1.211460pt;}
.ws66{word-spacing:1.338982pt;}
.wsbb{word-spacing:1.402743pt;}
.ws5a{word-spacing:1.415492pt;}
.ws7c{word-spacing:1.466505pt;}
.ws4a{word-spacing:1.976593pt;}
.ws20{word-spacing:2.008474pt;}
.ws6c{word-spacing:2.104115pt;}
.ws5c{word-spacing:2.422921pt;}
.wsb4{word-spacing:2.550443pt;}
.ws2b{word-spacing:2.677965pt;}
.ws73{word-spacing:2.932989pt;}
.ws94{word-spacing:2.933009pt;}
.ws74{word-spacing:2.986123pt;}
.ws12{word-spacing:3.211639pt;}
.wsc{word-spacing:3.328003pt;}
.ws6f{word-spacing:3.379314pt;}
.ws2a{word-spacing:3.379337pt;}
.ws1b{word-spacing:3.443098pt;}
.ws27{word-spacing:3.450013pt;}
.ws90{word-spacing:3.458630pt;}
.ws30{word-spacing:3.462823pt;}
.ws24{word-spacing:3.506859pt;}
.ws5b{word-spacing:3.825664pt;}
.wsbd{word-spacing:3.889425pt;}
.ws14{word-spacing:3.985067pt;}
.wsc6{word-spacing:4.016947pt;}
.ws55{word-spacing:4.080708pt;}
.ws2{word-spacing:4.131706pt;}
.wsaa{word-spacing:4.144469pt;}
.wsbf{word-spacing:4.335753pt;}
.ws68{word-spacing:4.527036pt;}
.ws9a{word-spacing:4.590797pt;}
.ws75{word-spacing:4.654558pt;}
.ws22{word-spacing:4.782067pt;}
.ws25{word-spacing:4.845841pt;}
.ws40{word-spacing:4.973363pt;}
.ws8b{word-spacing:5.037124pt;}
.ws64{word-spacing:5.228407pt;}
.ws48{word-spacing:5.419691pt;}
.wsd{word-spacing:5.445996pt;}
.wsf{word-spacing:5.480732pt;}
.ws76{word-spacing:5.674735pt;}
.ws21{word-spacing:5.738467pt;}
.ws3a{word-spacing:5.738496pt;}
.ws3e{word-spacing:5.802257pt;}
.wsab{word-spacing:5.866018pt;}
.ws42{word-spacing:5.929779pt;}
.ws11{word-spacing:5.946187pt;}
.wse{word-spacing:6.318551pt;}
.ws3{word-spacing:6.353460pt;}
.ws7f{word-spacing:6.376107pt;}
.ws23{word-spacing:6.439868pt;}
.ws10{word-spacing:6.586187pt;}
.ws8d{word-spacing:6.677345pt;}
.ws95{word-spacing:6.694912pt;}
.ws98{word-spacing:6.736650pt;}
.ws0{word-spacing:6.887500pt;}
.ws36{word-spacing:7.077478pt;}
.ws2c{word-spacing:7.311885pt;}
.wsb3{word-spacing:7.357239pt;}
.ws9f{word-spacing:7.396284pt;}
.wsa0{word-spacing:7.460045pt;}
.wsa5{word-spacing:7.587567pt;}
.ws1{word-spacing:7.651307pt;}
.wsbc{word-spacing:8.070400pt;}
.wsac{word-spacing:8.512102pt;}
.ws79{word-spacing:8.671505pt;}
.ws2e{word-spacing:9.013662pt;}
.wsa9{word-spacing:9.054071pt;}
.ws67{word-spacing:9.332432pt;}
.ws8c{word-spacing:9.639253pt;}
.wsb5{word-spacing:9.946726pt;}
.wsc3{word-spacing:10.074249pt;}
.ws26{word-spacing:10.265532pt;}
.wsb7{word-spacing:10.393054pt;}
.ws5d{word-spacing:10.399099pt;}
.ws35{word-spacing:10.400561pt;}
.ws33{word-spacing:10.404432pt;}
.ws77{word-spacing:10.456815pt;}
.ws45{word-spacing:10.917308pt;}
.ws58{word-spacing:10.922641pt;}
.wsbe{word-spacing:10.966903pt;}
.ws7{word-spacing:11.066191pt;}
.wsc4{word-spacing:11.221948pt;}
.ws6a{word-spacing:11.413231pt;}
.wsb6{word-spacing:11.540753pt;}
.wsa1{word-spacing:11.668275pt;}
.ws5{word-spacing:11.875270pt;}
.ws59{word-spacing:11.927040pt;}
.wsc1{word-spacing:12.497169pt;}
.ws6{word-spacing:12.718556pt;}
.ws61{word-spacing:13.073707pt;}
.ws50{word-spacing:13.644868pt;}
.wsc0{word-spacing:14.378121pt;}
.ws16{word-spacing:14.537523pt;}
.wsad{word-spacing:15.699200pt;}
.ws4f{word-spacing:15.717103pt;}
.ws54{word-spacing:16.636373pt;}
.ws86{word-spacing:16.782991pt;}
.ws81{word-spacing:17.292558pt;}
.ws9c{word-spacing:18.050222pt;}
.wsae{word-spacing:20.306727pt;}
.ws49{word-spacing:20.315798pt;}
.ws4b{word-spacing:20.316818pt;}
.ws8e{word-spacing:20.319866pt;}
.ws91{word-spacing:20.320685pt;}
.ws56{word-spacing:20.322151pt;}
.ws3c{word-spacing:20.324324pt;}
.wsa6{word-spacing:20.325351pt;}
.ws7d{word-spacing:20.332878pt;}
.ws80{word-spacing:20.344494pt;}
.ws83{word-spacing:20.834345pt;}
.ws97{word-spacing:21.591555pt;}
.ws9b{word-spacing:21.596889pt;}
.wsb0{word-spacing:21.851613pt;}
.ws96{word-spacing:21.865367pt;}
.ws7a{word-spacing:21.870700pt;}
.ws8f{word-spacing:23.417843pt;}
.ws38{word-spacing:23.422991pt;}
.wsa2{word-spacing:23.423176pt;}
.ws31{word-spacing:23.445662pt;}
.ws6b{word-spacing:23.722914pt;}
.ws34{word-spacing:25.023885pt;}
.ws3f{word-spacing:25.705657pt;}
.ws28{word-spacing:28.122552pt;}
.ws6d{word-spacing:45.036265pt;}
.ws1e{word-spacing:46.226773pt;}
.ws37{word-spacing:62.166867pt;}
.ws71{word-spacing:67.936962pt;}
.ws52{word-spacing:70.027317pt;}
.wsc2{word-spacing:74.600067pt;}
.ws69{word-spacing:78.362641pt;}
.ws5f{word-spacing:85.632650pt;}
.ws4e{word-spacing:93.967975pt;}
.ws5e{word-spacing:109.578641pt;}
.wsb1{word-spacing:195.258641pt;}
.ws9e{word-spacing:263.970816pt;}
.ws88{word-spacing:364.011930pt;}
.wsa3{word-spacing:391.174144pt;}
.ws99{word-spacing:412.215296pt;}
.wsb2{word-spacing:412.789146pt;}
.ws93{word-spacing:543.818138pt;}
.ws89{word-spacing:572.383095pt;}
.wsaf{word-spacing:771.312946pt;}
.ws7e{word-spacing:859.881745pt;}
.ws29{word-spacing:1007.439885pt;}
._21{margin-left:-61.338146pt;}
._3e{margin-left:-40.550531pt;}
._12{margin-left:-36.309554pt;}
._20{margin-left:-32.866457pt;}
._f{margin-left:-31.880533pt;}
._19{margin-left:-30.158985pt;}
._3f{margin-left:-29.065070pt;}
._40{margin-left:-23.894392pt;}
._11{margin-left:-11.830051pt;}
._2{margin-left:-10.358800pt;}
._3a{margin-left:-8.630654pt;}
._33{margin-left:-7.192228pt;}
._a{margin-left:-5.550724pt;}
._3{margin-left:-4.644560pt;}
._0{margin-left:-3.416200pt;}
._24{margin-left:-2.449813pt;}
._4{margin-left:-1.503373pt;}
._5{width:1.503373pt;}
._c{width:2.408903pt;}
._1{width:3.416200pt;}
._50{width:4.379230pt;}
._35{width:5.404056pt;}
._26{width:8.917099pt;}
._39{width:9.816376pt;}
._52{width:14.230784pt;}
._1d{width:16.937062pt;}
._3d{width:17.916860pt;}
._9{width:19.432743pt;}
._15{width:20.786108pt;}
._2c{width:21.705655pt;}
._2b{width:23.974161pt;}
._8{width:24.901839pt;}
._37{width:26.070146pt;}
._6{width:27.639519pt;}
._36{width:28.568458pt;}
._3c{width:30.095223pt;}
._10{width:31.944294pt;}
._4f{width:33.246408pt;}
._3b{width:34.192197pt;}
._b{width:35.888857pt;}
._1e{width:38.984904pt;}
._17{width:40.206341pt;}
._22{width:42.793647pt;}
._53{width:44.029050pt;}
._27{width:45.079074pt;}
._38{width:46.345110pt;}
._34{width:47.884561pt;}
._7{width:49.396405pt;}
._29{width:50.535634pt;}
._41{width:52.126637pt;}
._1b{width:54.747375pt;}
._d{width:57.767526pt;}
._2f{width:60.727428pt;}
._28{width:62.908791pt;}
._14{width:63.824828pt;}
._32{width:86.077200pt;}
._4c{width:88.552886pt;}
._13{width:95.386556pt;}
._2e{width:96.816191pt;}
._44{width:98.352536pt;}
._31{width:103.292400pt;}
._16{width:126.616968pt;}
._43{width:135.671934pt;}
._45{width:143.870878pt;}
._4b{width:249.688730pt;}
._4d{width:276.402374pt;}
._48{width:302.969308pt;}
._4a{width:315.367188pt;}
._47{width:320.898423pt;}
._42{width:364.604593pt;}
._46{width:378.897603pt;}
._49{width:405.464537pt;}
._2d{width:458.250786pt;}
._2a{width:539.801190pt;}
._4e{width:565.432307pt;}
._1f{width:654.480457pt;}
._18{width:767.646374pt;}
._51{width:840.924313pt;}
._1a{width:843.944989pt;}
._25{width:877.177910pt;}
._23{width:1116.301863pt;}
._e{width:1127.896401pt;}
._1c{width:1339.519381pt;}
._30{width:1898.294477pt;}
.fs7{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:56.149333pt;}
.y17{bottom:96.000000pt;}
.y4d{bottom:107.190667pt;}
.ydf{bottom:114.430667pt;}
.y11d{bottom:118.325333pt;}
.y61{bottom:119.902667pt;}
.y78{bottom:123.409333pt;}
.ycb{bottom:123.450667pt;}
.y2d{bottom:126.712000pt;}
.y16{bottom:135.510667pt;}
.y11c{bottom:142.228000pt;}
.y10a{bottom:143.805333pt;}
.y4c{bottom:144.376000pt;}
.yf3{bottom:145.861333pt;}
.yde{bottom:153.941333pt;}
.yca{bottom:160.637333pt;}
.y2c{bottom:166.224000pt;}
.ya0{bottom:169.708000pt;}
.yf2{bottom:169.765333pt;}
.y8e{bottom:171.564000pt;}
.y15{bottom:175.022667pt;}
.y60{bottom:175.198667pt;}
.y77{bottom:176.204000pt;}
.ydd{bottom:177.845333pt;}
.y11b{bottom:195.022667pt;}
.y4b{bottom:197.170667pt;}
.yc9{bottom:197.822667pt;}
.y109{bottom:199.102667pt;}
.ydc{bottom:201.748000pt;}
.y2b{bottom:205.734667pt;}
.y14{bottom:214.533333pt;}
.y76{bottom:215.714667pt;}
.y11a{bottom:218.925333pt;}
.yf1{bottom:219.570667pt;}
.y8d{bottom:223.225333pt;}
.yc8{bottom:235.009333pt;}
.y108{bottom:235.369333pt;}
.y9f{bottom:236.465333pt;}
.y75{bottom:239.617333pt;}
.y2a{bottom:245.245333pt;}
.y12e{bottom:245.676000pt;}
.y4a{bottom:246.977333pt;}
.y5f{bottom:249.784000pt;}
.ydb{bottom:251.553333pt;}
.y119{bottom:256.112000pt;}
.y9e{bottom:260.368000pt;}
.y12d{bottom:269.580000pt;}
.y8c{bottom:271.584000pt;}
.y5e{bottom:273.688000pt;}
.y118{bottom:280.014667pt;}
.yf0{bottom:282.177333pt;}
.y8b{bottom:282.518667pt;}
.y29{bottom:284.756000pt;}
.y13{bottom:285.437333pt;}
.yc7{bottom:287.804000pt;}
.y74{bottom:289.424000pt;}
.yef{bottom:293.112000pt;}
.yb3{bottom:304.681333pt;}
.y5d{bottom:308.338667pt;}
.y107{bottom:310.137333pt;}
.y49{bottom:314.562667pt;}
.y9d{bottom:315.665333pt;}
.yda{bottom:319.140000pt;}
.y28{bottom:324.266667pt;}
.y12c{bottom:324.876000pt;}
.y8a{bottom:329.289333pt;}
.y5c{bottom:332.241333pt;}
.y117{bottom:332.809333pt;}
.y106{bottom:334.040000pt;}
.yc6{bottom:337.609333pt;}
.yee{bottom:339.882667pt;}
.yb2{bottom:344.192000pt;}
.y48{bottom:355.733333pt;}
.y73{bottom:357.009333pt;}
.y105{bottom:357.942667pt;}
.y12{bottom:360.998667pt;}
.yd9{bottom:362.824000pt;}
.y47{bottom:366.668000pt;}
.y5b{bottom:366.892000pt;}
.yb1{bottom:368.096000pt;}
.y27{bottom:379.386667pt;}
.y89{bottom:380.950667pt;}
.y116{bottom:382.614667pt;}
.y11{bottom:383.417333pt;}
.yed{bottom:389.745333pt;}
.y9c{bottom:390.732000pt;}
.y5a{bottom:390.794667pt;}
.yb0{bottom:391.998667pt;}
.yc5{bottom:400.721333pt;}
.y12b{bottom:400.770667pt;}
.y88{bottom:404.853333pt;}
.y10{bottom:405.837333pt;}
.y104{bottom:405.997333pt;}
.yc4{bottom:411.656000pt;}
.y72{bottom:412.305333pt;}
.yaf{bottom:415.901333pt;}
.y46{bottom:418.773333pt;}
.yd8{bottom:422.117333pt;}
.y12a{bottom:424.674667pt;}
.yec{bottom:425.953333pt;}
.yf{bottom:428.256000pt;}
.y9b{bottom:430.242667pt;}
.y103{bottom:434.360000pt;}
.y26{bottom:434.505333pt;}
.y59{bottom:435.981333pt;}
.yae{bottom:439.804000pt;}
.y87{bottom:441.662667pt;}
.y45{bottom:442.676000pt;}
.y115{bottom:450.200000pt;}
.ye{bottom:450.676000pt;}
.y9a{bottom:454.145333pt;}
.yc3{bottom:457.718667pt;}
.y102{bottom:458.264000pt;}
.y129{bottom:461.861333pt;}
.yd7{bottom:465.801333pt;}
.y44{bottom:466.578667pt;}
.yd{bottom:473.094667pt;}
.y25{bottom:474.016000pt;}
.y114{bottom:474.104000pt;}
.yeb{bottom:475.816000pt;}
.yc2{bottom:481.621333pt;}
.y128{bottom:485.764000pt;}
.y58{bottom:485.788000pt;}
.y71{bottom:488.201333pt;}
.yad{bottom:489.610667pt;}
.y101{bottom:493.268000pt;}
.y86{bottom:493.324000pt;}
.yc{bottom:495.514667pt;}
.y113{bottom:498.006667pt;}
.y99{bottom:502.126667pt;}
.y24{bottom:513.526667pt;}
.y43{bottom:516.385333pt;}
.yb{bottom:517.933333pt;}
.yd6{bottom:518.596000pt;}
.yea{bottom:525.621333pt;}
.y100{bottom:528.273333pt;}
.yc1{bottom:531.428000pt;}
.y85{bottom:532.834667pt;}
.y98{bottom:537.708000pt;}
.y127{bottom:538.558667pt;}
.ya{bottom:540.353333pt;}
.y70{bottom:540.996000pt;}
.yac{bottom:549.622667pt;}
.y112{bottom:550.801333pt;}
.y57{bottom:552.064000pt;}
.y23{bottom:553.038667pt;}
.yd5{bottom:555.782667pt;}
.yab{bottom:560.556000pt;}
.y126{bottom:562.461333pt;}
.y9{bottom:562.772000pt;}
.yff{bottom:563.278667pt;}
.y6f{bottom:564.898667pt;}
.y84{bottom:582.640000pt;}
.y42{bottom:583.970667pt;}
.y37{bottom:584.253333pt;}
.y97{bottom:585.689333pt;}
.y56{bottom:586.714667pt;}
.yfe{bottom:587.181333pt;}
.y111{bottom:587.988000pt;}
.ye9{bottom:592.702667pt;}
.yd4{bottom:592.969333pt;}
.yc0{bottom:599.013333pt;}
.y6e{bottom:602.085333pt;}
.y8{bottom:606.112000pt;}
.yaa{bottom:607.328000pt;}
.y41{bottom:607.873333pt;}
.y22{bottom:608.157333pt;}
.y125{bottom:617.757333pt;}
.y55{bottom:621.365333pt;}
.ybf{bottom:622.916000pt;}
.y40{bottom:631.776000pt;}
.y96{bottom:634.048000pt;}
.ye8{bottom:636.386667pt;}
.yfd{bottom:636.986667pt;}
.y6d{bottom:639.272000pt;}
.y36{bottom:639.373333pt;}
.y110{bottom:640.781333pt;}
.y95{bottom:644.982667pt;}
.yd3{bottom:645.764000pt;}
.ybe{bottom:646.818667pt;}
.y21{bottom:647.668000pt;}
.y83{bottom:650.032000pt;}
.y3f{bottom:655.680000pt;}
.y54{bottom:656.016000pt;}
.ya9{bottom:657.329333pt;}
.ye7{bottom:660.289333pt;}
.ya8{bottom:668.264000pt;}
.ybd{bottom:670.722667pt;}
.y7{bottom:673.498667pt;}
.y10f{bottom:673.532000pt;}
.y82{bottom:673.934667pt;}
.y6c{bottom:676.458667pt;}
.y35{bottom:678.884000pt;}
.y10e{bottom:684.466667pt;}
.yd2{bottom:685.274667pt;}
.y20{bottom:687.178667pt;}
.y94{bottom:691.754667pt;}
.y124{bottom:693.653333pt;}
.yfc{bottom:698.396000pt;}
.y3e{bottom:705.485333pt;}
.y53{bottom:705.821333pt;}
.yd1{bottom:709.177333pt;}
.yfb{bottom:709.330667pt;}
.ye6{bottom:710.096000pt;}
.ya7{bottom:715.890667pt;}
.y123{bottom:717.556000pt;}
.y34{bottom:718.394667pt;}
.y81{bottom:725.596000pt;}
.ybc{bottom:726.018667pt;}
.y1f{bottom:726.689333pt;}
.y6{bottom:728.617333pt;}
.y6b{bottom:729.252000pt;}
.y93{bottom:730.444000pt;}
.y10d{bottom:733.450667pt;}
.y92{bottom:741.378667pt;}
.y122{bottom:741.458667pt;}
.ya6{bottom:755.401333pt;}
.y33{bottom:757.905333pt;}
.yd0{bottom:758.982667pt;}
.yfa{bottom:760.748000pt;}
.y80{bottom:762.404000pt;}
.y6a{bottom:763.822667pt;}
.y52{bottom:772.097333pt;}
.y3d{bottom:773.070667pt;}
.y69{bottom:774.757333pt;}
.y10c{bottom:777.136000pt;}
.ye5{bottom:777.176000pt;}
.ya5{bottom:779.304000pt;}
.y1e{bottom:781.809333pt;}
.yf9{bottom:784.650667pt;}
.y91{bottom:785.062667pt;}
.y121{bottom:794.253333pt;}
.y5{bottom:797.310667pt;}
.ye4{bottom:801.080000pt;}
.ybb{bottom:805.265333pt;}
.y3c{bottom:810.257333pt;}
.y51{bottom:811.608000pt;}
.y32{bottom:813.025333pt;}
.y7f{bottom:814.065333pt;}
.y120{bottom:818.156000pt;}
.y90{bottom:820.645333pt;}
.y68{bottom:820.820000pt;}
.yba{bottom:821.206667pt;}
.y1d{bottom:821.320000pt;}
.yf8{bottom:824.161333pt;}
.ye3{bottom:824.982667pt;}
.ycf{bottom:826.569333pt;}
.y4{bottom:826.982667pt;}
.ya4{bottom:829.109333pt;}
.yb9{bottom:837.146667pt;}
.y10b{bottom:844.724000pt;}
.yf7{bottom:848.065333pt;}
.y31{bottom:852.536000pt;}
.yb8{bottom:853.086667pt;}
.y7e{bottom:853.357333pt;}
.y11f{bottom:855.342667pt;}
.y3{bottom:856.656000pt;}
.y67{bottom:860.330667pt;}
.yce{bottom:861.186667pt;}
.y3b{bottom:863.052000pt;}
.y7d{bottom:864.292000pt;}
.y50{bottom:866.904000pt;}
.y8f{bottom:868.626667pt;}
.yb7{bottom:869.026667pt;}
.y1c{bottom:876.438667pt;}
.y11e{bottom:879.245333pt;}
.ye2{bottom:880.278667pt;}
.y66{bottom:884.234667pt;}
.y3a{bottom:886.954667pt;}
.y7c{bottom:889.686667pt;}
.y30{bottom:892.046667pt;}
.yb6{bottom:892.953333pt;}
.ya3{bottom:896.696000pt;}
.y2{bottom:897.868000pt;}
.yf6{bottom:897.870667pt;}
.ycd{bottom:898.237333pt;}
.y65{bottom:908.137333pt;}
.yb5{bottom:908.893333pt;}
.ycc{bottom:909.172000pt;}
.y7b{bottom:913.590667pt;}
.y1b{bottom:915.949333pt;}
.ya2{bottom:920.598667pt;}
.yb4{bottom:930.189333pt;}
.y2f{bottom:931.557333pt;}
.y64{bottom:932.040000pt;}
.y39{bottom:936.761333pt;}
.y1{bottom:939.080000pt;}
.y4f{bottom:941.489333pt;}
.ye1{bottom:947.445333pt;}
.y1a{bottom:955.460000pt;}
.y63{bottom:955.942667pt;}
.y7a{bottom:955.960000pt;}
.ya1{bottom:957.785333pt;}
.ye0{bottom:958.380000pt;}
.yf5{bottom:960.388000pt;}
.yf4{bottom:964.329333pt;}
.y4e{bottom:965.392000pt;}
.y79{bottom:966.894667pt;}
.y2e{bottom:971.068000pt;}
.y38{bottom:1001.133333pt;}
.y62{bottom:1005.749333pt;}
.y19{bottom:1010.580000pt;}
.h14{height:39.850400pt;}
.h4{height:43.636400pt;}
.h1c{height:44.250180pt;}
.h6{height:47.820800pt;}
.hd{height:52.806026pt;}
.h1a{height:52.811359pt;}
.h11{height:55.995359pt;}
.h3{height:57.384800pt;}
.h7{height:60.573013pt;}
.ha{height:63.938133pt;}
.h1b{height:64.647467pt;}
.h5{height:68.861600pt;}
.h17{height:71.760692pt;}
.h2{height:82.650000pt;}
.h12{height:90.951467pt;}
.hb{height:90.956800pt;}
.h13{height:91.554133pt;}
.h10{height:91.559467pt;}
.he{height:95.942026pt;}
.h18{height:99.195776pt;}
.hf{height:99.734026pt;}
.h19{height:102.737109pt;}
.h15{height:103.979776pt;}
.h8{height:111.579776pt;}
.h16{height:134.690133pt;}
.hc{height:134.695467pt;}
.h9{height:155.318443pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:96.000000pt;}
.x3f{left:103.804000pt;}
.x22{left:108.373333pt;}
.x11{left:115.076000pt;}
.x4{left:116.253333pt;}
.xc{left:119.412000pt;}
.x1{left:122.389333pt;}
.x40{left:128.082667pt;}
.x2{left:131.157333pt;}
.xa{left:135.020000pt;}
.x37{left:152.586667pt;}
.x9{left:156.838667pt;}
.x38{left:169.357333pt;}
.x32{left:194.072000pt;}
.x21{left:198.632000pt;}
.x1f{left:203.837333pt;}
.x2c{left:211.282667pt;}
.x1b{left:216.868000pt;}
.x17{left:218.602667pt;}
.x34{left:225.882667pt;}
.x5{left:230.534667pt;}
.x28{left:238.002667pt;}
.x23{left:256.597333pt;}
.x2d{left:263.366667pt;}
.x33{left:264.264000pt;}
.x20{left:280.760000pt;}
.x29{left:286.410667pt;}
.x1d{left:288.365333pt;}
.x6{left:292.280000pt;}
.x30{left:294.648000pt;}
.x19{left:296.749333pt;}
.xf{left:299.166667pt;}
.x18{left:301.113333pt;}
.x1c{left:303.281333pt;}
.x26{left:313.661333pt;}
.x39{left:315.540000pt;}
.x3{left:322.753333pt;}
.x7{left:324.145333pt;}
.x13{left:326.409333pt;}
.x3a{left:330.129333pt;}
.x2f{left:333.949333pt;}
.x2b{left:335.256000pt;}
.x2a{left:337.397333pt;}
.x27{left:339.372000pt;}
.x31{left:345.634667pt;}
.x1e{left:355.520000pt;}
.x1a{left:360.002667pt;}
.x2e{left:361.936000pt;}
.x8{left:364.849333pt;}
.xe{left:365.976000pt;}
.x24{left:367.025333pt;}
.x35{left:379.918667pt;}
.x14{left:389.449333pt;}
.xd{left:392.948000pt;}
.x36{left:414.020000pt;}
.x15{left:436.713333pt;}
.x12{left:438.109333pt;}
.x10{left:439.346667pt;}
.x25{left:515.249333pt;}
.x3b{left:638.842667pt;}
.x3d{left:652.041333pt;}
.x3c{left:674.633333pt;}
.x16{left:677.757333pt;}
.x3e{left:681.528000pt;}
}




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